Socket
Socket
Sign inDemoInstall

igniteui-webcomponents

Package Overview
Dependencies
11
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    igniteui-webcomponents

Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.


Version published
Weekly downloads
1.2K
decreased by-25.93%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

[4.8.2] - 2024-04-15

Fixed

  • Textarea - resize handle position for non-suffixed textarea #1094
  • Tabs - error when dynamically creating and adding a tab group and tabs in a single call stack #1140
  • Checkbox/Switch - participate in form submission when initially checked #1144
  • Dialog - igcClosed fired before the component was actually closed/hidden.

Readme

Source

Logo Ignite UI Web Components)

Ignite UI for Web Components - from Infragistics

Node.js CI Coverage Status npm version Discord

Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach. See the Storybook Here!
All components are based on the Indigo.Design Design System and are backed by ready-to-use UI kits for Sketch, Adobe XD and Figma.

Browser Support

chrome_48x48firefox_48x48edge_48x48opera_48x48safari_48x48
Latest ✔Latest ✔Latest ✔Latest ✔Latest ✔

Overview

ComponentsStatusDocumentationReleased Version
Combo:white_check_mark:Docs4.1.0
Stepper:white_check_mark:Docs4.1.0
Select:white_check_mark:Docs3.4.0
Dialog:white_check_mark:Docs3.4.0
Date Time Input:white_check_mark:Docs3.3.0
Tabs:white_check_mark:Docs3.3.0
Accordion:white_check_mark:Docs3.3.0
Mask Input:white_check_mark:Docs3.2.0
Expansion Panel:white_check_mark:Docs3.2.0
Tree:white_check_mark:Docs3.2.0
Drop Down:white_check_mark:Docs2.2.0
Linear Progress:white_check_mark:Docs2.1.0
Circular Progress:white_check_mark:Docs2.1.0
Chip:white_check_mark:Docs2.1.0
Snackbar:white_check_mark:Docs2.1.0
Toast:white_check_mark:Docs2.1.0
Rating:white_check_mark:Docs2.1.0
Slider:white_check_mark:Docs2.0.0
Range Slider:white_check_mark:Docs2.0.0
Avatar:white_check_mark:Docs1.0.0
Badge:white_check_mark:Docs1.0.0
Button:white_check_mark:Docs1.0.0
Calendar:white_check_mark:Docs1.0.0
Card:white_check_mark:Docs1.0.0
Checkbox:white_check_mark:Docs1.0.0
Form:white_check_mark:Docs1.0.0
Icon:white_check_mark:Docs1.0.0
Icon Button:white_check_mark:Docs1.0.0
Input:white_check_mark:Docs1.0.0
List:white_check_mark:Docs1.0.0
Navigation Bar (Navbar):white_check_mark:Docs1.0.0
Navigation Drawer:white_check_mark:Docs1.0.0
Radio:white_check_mark:Docs1.0.0
Radio Group:white_check_mark:Docs1.0.0
Ripple:white_check_mark:Docs1.0.0
Switch:white_check_mark:Docs1.0.0

Components available in Ignite UI for WebComponents Grids

ComponentsStatusDocumentationReleased Version
Pivot Grid:white_check_mark:Docs
Data Grid:white_check_mark:Docs
Tree Grid:white_check_mark:Docs

Usage

The Lightweight Web Components Data Grid and Data Table

The Ignite UI for Web Components Data Grid and Table are both lightweight and developed to handle high data volumes. The Web Components Grid offers powerful data visualization capabilities and superior performance on any device. With interactive features that users expect. Fast rendering. Unbeatable interactions. And the best possible user experience that you wouldn’t otherwise be able to achieve with so little code on your own.

Dock Manager - EXCLUSIVE FEATURE

Dock Manager

Provide a complete windowing experience, splitting complex layouts into smaller, easier-to-manage panes.

In order to use the Ignite UI Web Components in your application you should install the igniteui-webcomponents package:

npm install igniteui-webcomponents

Next you will need to import the components that you want to use. You could import one or more components using the defineComponents function like this:

import { defineComponents, IgcAvatarComponent, IgcBadgeComponent } from 'igniteui-webcomponents';

defineComponents(IgcAvatarComponent, IgcBadgeComponent);

You could also import all of the components using the defineAllComponents function:

import { defineAllComponents } from 'igniteui-webcomponents';

defineAllComponents();

Please note that importing all of the components will increase the bundle size of your application. That's why we recommend you to import only the components that you are actually using.

After the components are imported you could use them in your html:

<igc-avatar initials="AZ"></igc-avatar>
<igc-badge></igc-badge>

Tooling Support

The package contains its own Custom Elements Manifest as well as Custom Data Format for VSCode. Refer to your IDE/toolchain documentation to see if you can take advantage of this metadata for linting, type hints and documentation.

Here is a how to enable VSCode auto-completion and hover information for HTML entities from the package.

Add the following line to your user or workspace settings:

{
    "html.customData": [
        "./node_modules/igniteui-webcomponents/vscode-html-custom-data.json"
    ]
}

Setup

In order to run the repository locally from the root folder run:

npm install

Linting with ESLint, Prettier, and Types

To scan the project for linting errors, run

npm run lint

You can lint with ESLint and Prettier individually as well

npm run lint:eslint
npm run lint:prettier

To automatically fix many linting errors, run

npm run format

You can format using ESLint and Prettier individually as well

npm run format:eslint
npm run format:prettier

Testing with Web Test Runner

To run the suite of Web Test Runner tests, run

npm run test

To run the tests in watch mode (for <abbr title="test driven development">TDD</abbr>, for example), run

npm run test:watch

Demoing with Storybook

To run a local instance of Storybook for your component, run

npm run storybook

To build a production version of Storybook, run

npm run storybook:build

Keywords

FAQs

Last updated on 15 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc