Socket
Book a DemoInstallSign in
Socket

igniteui-webcomponents

Package Overview
Dependencies
Maintainers
1
Versions
106
Alerts
File Explorer

Advanced tools

Socket logo

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.

latest
Source
npmnpm
Version
6.4.0
Version published
Maintainers
1
Created
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 comprehensive library that includes the fastest Data Grid on the market, a high-performing Hierarchical Grid, Pivot Grid, 60+ data Charts, Dock Manager, and more. Plus maps, gauges and other reusable feature-rich components to help you create better web apps and modern-day UX experiences.

See the Storybook Here

Browser Support

chrome_48x48firefox_48x48edge_48x48opera_48x48safari_48x48
Latest ✔️Latest ✔️Latest ✔️Latest ✔️Latest ✔️

Overview

Components
ComponentsStatusDocumentationReleased VersionLicense
ChatDocs6.3.0MIT
Date Range PickerDocs6.1.0MIT
TooltipDocs5.4.0MIT
File InputDocs5.4.0MIT
Tile ManagerDocs5.3.0MIT
CarouselDocs5.1.0MIT
Date pickerDocs4.10.0MIT
DividerDocs4.10.0MIT
BannerDocs4.10.0MIT
Button groupDocs4.5.0MIT
TextareaDocs4.5.0MIT
ComboDocs4.1.0MIT
StepperDocs4.1.0MIT
SelectDocs3.4.0MIT
DialogDocs3.4.0MIT
Date Time InputDocs3.3.0MIT
TabsDocs3.3.0MIT
AccordionDocs3.3.0MIT
Mask InputDocs3.2.0MIT
Expansion PanelDocs3.2.0MIT
TreeDocs3.2.0MIT
Drop DownDocs2.2.0MIT
Linear ProgressDocs2.1.0MIT
Circular ProgressDocs2.1.0MIT
ChipDocs2.1.0MIT
SnackbarDocs2.1.0MIT
ToastDocs2.1.0MIT
RatingDocs2.1.0MIT
SliderDocs2.0.0MIT
Range SliderDocs2.0.0MIT
AvatarDocs1.0.0MIT
BadgeDocs1.0.0MIT
ButtonDocs1.0.0MIT
CalendarDocs1.0.0MIT
CardDocs1.0.0MIT
CheckboxDocs1.0.0MIT
FormDocs1.0.0MIT
IconDocs1.0.0MIT
Icon ButtonDocs1.0.0MIT
InputDocs1.0.0MIT
ListDocs1.0.0MIT
Navigation Bar (Navbar)Docs1.0.0MIT
Navigation DrawerDocs1.0.0MIT
RadioDocs1.0.0MIT
Radio GroupDocs1.0.0MIT
RippleDocs1.0.0MIT
SwitchDocs1.0.0MIT

Components available in Ignite UI for WebComponents Grids & Grid Lite

ComponentsStatusDocumentationLicensePackage
Pivot GridDocsCommercialIgnite UI Web Components Grids
Data GridDocsCommercialIgnite UI Web Components Grids
Tree GridDocsCommercialIgnite UI Web Components Grids
Hierarchical GridDocsCommercialIgnite UI Web Components Grids
Grid LiteDocsMITIgnite UI Web Components Grid Lite

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 Picture

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:

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>

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 pathDescription
igniteui-webcomponents/custom-elements.jsonCustom Elements Manifest
igniteui-webcomponents/web-types.jsonWeb Types for JetBrains based IDEs
igniteui-webcomponents/igniteui-webcomponents.css-data.jsonVSCode CSS custom data
igniteui-webcomponents/igniteui-webcomponents.html-data.jsonVSCode HTML custom data

Contributing

Follow the Contribution Guidelines to setup a development environment.

Linting and Formatting

To scan the project for linting errors, run:

npm run lint

To automatically fix most linting and formatting errors, run:

npm 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:

npm run test

To run the tests in watch mode, run:

npm run test:watch

Demoing with Storybook

To start 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

webcomponents

FAQs

Package last updated on 15 Dec 2025

Did you know?

Socket

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