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.
Installations
npm install igniteui-webcomponents
Developer Guide
Typescript
Yes
Module System
ESM
Min. Node Version
>=18
Node Version
18.20.4
NPM Version
10.7.0
Score
81.6
Supply Chain
99.7
Quality
87.2
Maintenance
100
Vulnerability
87.1
License
Releases
Contributors
Languages
TypeScript (77.04%)
SCSS (21.4%)
JavaScript (0.93%)
HTML (0.63%)
Developer
Download Statistics
Total Downloads
235,734
Last Day
112
Last Week
898
Last Month
6,864
Last Year
104,021
GitHub Statistics
122 Stars
1,671 Commits
4 Forks
35 Watching
18 Branches
37 Contributors
Package Meta Information
Latest Version
5.1.2
Package Id
igniteui-webcomponents@5.1.2
Unpacked Size
7.25 MB
Size
960.99 kB
File Count
2,515
NPM Version
10.7.0
Node Version
18.20.4
Publised On
04 Nov 2024
Total Downloads
Cumulative downloads
Total Downloads
235,734
Last day
-63%
112
Compared to previous day
Last week
-42.4%
898
Compared to previous week
Last month
-53.4%
6,864
Compared to previous month
Last year
36.4%
104,021
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
Dependencies
4
Ignite UI for Web Components - from Infragistics
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. 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.
See the Storybook Here
Browser Support
Latest ✔️ | Latest ✔️ | Latest ✔️ | Latest ✔️ | Latest ✔️ |
Overview
Components | Status | Documentation | Released Version |
---|---|---|---|
Date picker | ✅ | Docs | 4.10.0 |
Divider | ✅ | Docs | 4.10.0 |
Banner | ✅ | Docs | 4.10.0 |
Button group | ✅ | Docs | 4.5.0 |
Textarea | ✅ | Docs | 4.5.0 |
Combo | ✅ | Docs | 4.1.0 |
Stepper | ✅ | Docs | 4.1.0 |
Select | ✅ | Docs | 3.4.0 |
Dialog | ✅ | Docs | 3.4.0 |
Date Time Input | ✅ | Docs | 3.3.0 |
Tabs | ✅ | Docs | 3.3.0 |
Accordion | ✅ | Docs | 3.3.0 |
Mask Input | ✅ | Docs | 3.2.0 |
Expansion Panel | ✅ | Docs | 3.2.0 |
Tree | ✅ | Docs | 3.2.0 |
Drop Down | ✅ | Docs | 2.2.0 |
Linear Progress | ✅ | Docs | 2.1.0 |
Circular Progress | ✅ | Docs | 2.1.0 |
Chip | ✅ | Docs | 2.1.0 |
Snackbar | ✅ | Docs | 2.1.0 |
Toast | ✅ | Docs | 2.1.0 |
Rating | ✅ | Docs | 2.1.0 |
Slider | ✅ | Docs | 2.0.0 |
Range Slider | ✅ | Docs | 2.0.0 |
Avatar | ✅ | Docs | 1.0.0 |
Badge | ✅ | Docs | 1.0.0 |
Button | ✅ | Docs | 1.0.0 |
Calendar | ✅ | Docs | 1.0.0 |
Card | ✅ | Docs | 1.0.0 |
Checkbox | ✅ | Docs | 1.0.0 |
Form | ✅ | Docs | 1.0.0 |
Icon | ✅ | Docs | 1.0.0 |
Icon Button | ✅ | Docs | 1.0.0 |
Input | ✅ | Docs | 1.0.0 |
List | ✅ | Docs | 1.0.0 |
Navigation Bar (Navbar) | ✅ | Docs | 1.0.0 |
Navigation Drawer | ✅ | Docs | 1.0.0 |
Radio | ✅ | Docs | 1.0.0 |
Radio Group | ✅ | Docs | 1.0.0 |
Ripple | ✅ | Docs | 1.0.0 |
Switch | ✅ | Docs | 1.0.0 |
Components available in Ignite UI for WebComponents Grids
Components | Status | Documentation |
---|---|---|
Pivot Grid | ✅ | Docs |
Data Grid | ✅ | Docs |
Tree Grid | ✅ | Docs |
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
Provide a complete windowing experience, splitting complex layouts into smaller, easier-to-manage panes.
Usage
In order to use the Ignite UI Web Components in your application you should install the igniteui-webcomponents
package:
1npm 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:
1import { 2 defineComponents, 3 IgcAvatarComponent, 4 IgcBadgeComponent, 5} from 'igniteui-webcomponents'; 6 7defineComponents(IgcAvatarComponent, IgcBadgeComponent);
You could also import all of the components using the defineAllComponents
function:
1import { defineAllComponents } from 'igniteui-webcomponents'; 2 3defineAllComponents();
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:
1<igc-avatar initials="AZ"></igc-avatar><igc-badge></igc-badge>
Additional tooling
The package comes with its own Custom Elements Manifest, VSCode Custom Data Format for VSCode and Web Types for JetBrains IDEs. Refer to the documentation of your editor of choice to see if you can take advantage of this metadata for linting, intellisense and documentation.
Package path | Description |
---|---|
igniteui-webcomponents/custom-elements.json | Custom Elements Manifest |
igniteui-webcomponents/web-types.json | Web Types for JetBrains based IDEs |
igniteui-webcomponents/igniteui-webcomponents.css-data.json | VSCode CSS custom data |
igniteui-webcomponents/igniteui-webcomponents.html-data.json | VSCode HTML custom data |
Contributing
Follow the Contribution Guidelines to setup a development environment.
Linting and Formatting
To scan the project for linting errors, run:
1npm run lint
To automatically fix most linting and formatting errors, run:
1npm run format
Linting and formatting are also set to run in a pre-commit hook in the project.
Testing with Web Test Runner
To run the suite of Web Test Runner tests, run:
1npm run test
To run the tests in watch mode, run:
1npm run test:watch
Demoing with Storybook
To start a local instance of Storybook for your component, run:
1npm run storybook
To build a production version of Storybook, run:
1npm run storybook:build
No vulnerabilities found.
No security vulnerabilities found.