igniteui-webcomponents 7.0.0-rc.0 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -7
- package/README.md +3 -5
- package/package.json +1 -1
- package/skills/README.md +65 -0
- package/skills/igniteui-wc-choose-components/SKILL.md +358 -0
- package/skills/igniteui-wc-customize-component-theme/SKILL.md +615 -0
- package/skills/igniteui-wc-integrate-with-framework/SKILL.md +112 -0
- package/skills/igniteui-wc-integrate-with-framework/references/angular.md +185 -0
- package/skills/igniteui-wc-integrate-with-framework/references/react.md +116 -0
- package/skills/igniteui-wc-integrate-with-framework/references/vanilla-js.md +118 -0
- package/skills/igniteui-wc-integrate-with-framework/references/vue.md +181 -0
- package/skills/igniteui-wc-optimize-bundle-size/SKILL.md +709 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,32 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
-
## [
|
|
7
|
+
## [7.0.0] - 2026-02-25
|
|
8
8
|
### Added
|
|
9
|
+
- #### AI-Assisted Development - Copilot Skills
|
|
10
|
+
- Four end-user skills are now shipped with the package under the `skills/` directory. They provide step-by-step guidance to GitHub Copilot and other LLM agents for common tasks:
|
|
11
|
+
- **igniteui-wc-choose-components** - Identify the right component for a given UI pattern.
|
|
12
|
+
- **igniteui-wc-integrate-with-framework** - Set up and use components in React, Angular, Vue, or vanilla JS.
|
|
13
|
+
- **igniteui-wc-customize-component-theme** - Apply custom styles via CSS custom properties, parts, and the theming system.
|
|
14
|
+
- **igniteui-wc-optimize-bundle-size** - Reduce production bundle size through selective imports and lazy loading.
|
|
15
|
+
|
|
16
|
+
To enable the skills in your project, copy the skill folders into your repository's `.github/skills/` directory so Copilot can automatically discover them:
|
|
17
|
+
|
|
18
|
+
**Unix/macOS:**
|
|
19
|
+
```sh
|
|
20
|
+
cp -r node_modules/igniteui-webcomponents/skills/* .github/skills/
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
**Windows (PowerShell):**
|
|
24
|
+
```powershell
|
|
25
|
+
Copy-Item -Recurse node_modules\igniteui-webcomponents\skills\* .github\skills\
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
**Windows (Command Prompt):**
|
|
29
|
+
```cmd
|
|
30
|
+
xcopy /E /I node_modules\igniteui-webcomponents\skills .github\skills
|
|
31
|
+
```
|
|
32
|
+
Copilot supports project skills stored in `.github/skills` or `.claude/skills` in your repository, and personal skills stored in `~/.copilot/skills` or `~/.claude/skills` (shared across projects; Copilot coding agent and GitHub Copilot CLI only).
|
|
9
33
|
- #### Chat
|
|
10
34
|
- **adoptRootStyles** can now be toggled on/off at runtime. [#2093](https://github.com/IgniteUI/igniteui-webcomponents/pull/2093)
|
|
11
35
|
|
|
@@ -15,6 +39,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
15
39
|
- #### Themes - **Breaking change**
|
|
16
40
|
- Changed global prefixes for CSS custom properties for component themes to align with other Ignite UI component libraries.
|
|
17
41
|
|
|
42
|
+
### Removed
|
|
43
|
+
- #### Chat
|
|
44
|
+
- Removed the **typingIndicator** template renderer. Users can use the **typing-indicator** slot instead.
|
|
45
|
+
- #### Tooltip
|
|
46
|
+
- Removed the **disableArrow** deprecated property.
|
|
47
|
+
|
|
18
48
|
### Fixed
|
|
19
49
|
- #### Carousel
|
|
20
50
|
- Context instantiation in Blazor. [#2033](https://github.com/IgniteUI/igniteui-webcomponents/pull/2033)
|
|
@@ -23,12 +53,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
23
53
|
- #### Textarea
|
|
24
54
|
- Correct cursor style over non input parts. [#2085](https://github.com/IgniteUI/igniteui-webcomponents/pull/2085)
|
|
25
55
|
|
|
26
|
-
### Removed
|
|
27
|
-
- #### Chat
|
|
28
|
-
- Removed the **typingIndicator** template renderer. Users can use the **typing-indicator** slot instead.
|
|
29
|
-
- #### Tooltip
|
|
30
|
-
- Removed the **disableArrow** deprecated property.
|
|
31
|
-
|
|
32
56
|
## [6.5.1] - 2026-02-04
|
|
33
57
|
### Fixed
|
|
34
58
|
- #### Calendar
|
|
@@ -1240,6 +1264,7 @@ Initial release of Ignite UI Web Components
|
|
|
1240
1264
|
- Ripple component
|
|
1241
1265
|
- Switch component
|
|
1242
1266
|
|
|
1267
|
+
[7.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.5.1...7.0.0
|
|
1243
1268
|
[6.5.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.5.0...6.5.1
|
|
1244
1269
|
[6.5.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.4.0...6.5.0
|
|
1245
1270
|
[6.4.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.3.6...6.4.0
|
package/README.md
CHANGED
|
@@ -62,7 +62,6 @@ See the [Storybook Here](https://igniteui.github.io/igniteui-webcomponents)
|
|
|
62
62
|
| Calendar | ✅ | [Docs][Calendar Docs] | [1.0.0] | [MIT](LICENSE) |
|
|
63
63
|
| Card | ✅ | [Docs][Card Docs] | [1.0.0] | [MIT](LICENSE) |
|
|
64
64
|
| Checkbox | ✅ | [Docs][Checkbox Docs] | [1.0.0] | [MIT](LICENSE) |
|
|
65
|
-
| Form | ✅ | [Docs][Form Docs] | [1.0.0] | [MIT](LICENSE) |
|
|
66
65
|
| Icon | ✅ | [Docs][Icon Docs] | [1.0.0] | [MIT](LICENSE) |
|
|
67
66
|
| Icon Button | ✅ | [Docs][Icon Button Docs] | [1.0.0] | [MIT](LICENSE) |
|
|
68
67
|
| Input | ✅ | [Docs][Input Docs] | [1.0.0] | [MIT](LICENSE) |
|
|
@@ -212,7 +211,7 @@ npm run storybook:build
|
|
|
212
211
|
[safari_48x48]: https://user-images.githubusercontent.com/2188411/168109527-6c58f2cf-7386-4b97-98b1-cfe0ab4e8626.png
|
|
213
212
|
[Contribution Guidelines]: https://github.com/IgniteUI/igniteui-webcomponents/blob/master/.github/CONTRIBUTING.md
|
|
214
213
|
[Data Grid]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/data-grid
|
|
215
|
-
[Hierarchical Grid]: https://www.infragistics.com/
|
|
214
|
+
[Hierarchical Grid]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/hierarchical-grid/overview
|
|
216
215
|
[Charts]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/charts/chart-overview
|
|
217
216
|
[Dock Manager]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/dock-manager
|
|
218
217
|
[Pivot Grid Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/pivot-grid/overview
|
|
@@ -228,7 +227,6 @@ npm run storybook:build
|
|
|
228
227
|
[Input Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/input
|
|
229
228
|
[Icon Button Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/icon-button
|
|
230
229
|
[Icon Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/icon
|
|
231
|
-
[Form Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/form
|
|
232
230
|
[Checkbox Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/checkbox
|
|
233
231
|
[Card Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/card
|
|
234
232
|
[Calendar Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/scheduling/calendar
|
|
@@ -242,7 +240,7 @@ npm run storybook:build
|
|
|
242
240
|
[Chip Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/chip
|
|
243
241
|
[Circular Progress Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/circular-progress
|
|
244
242
|
[Linear Progress Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/linear-progress
|
|
245
|
-
[Dropdown Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/
|
|
243
|
+
[Dropdown Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/dropdown
|
|
246
244
|
[Tree Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/tree
|
|
247
245
|
[Expansion Panel Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/expansion-panel
|
|
248
246
|
[Masked Input Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/input
|
|
@@ -266,7 +264,7 @@ npm run storybook:build
|
|
|
266
264
|
[Chat Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/interactivity/chat
|
|
267
265
|
[Commercial License]: https://www.infragistics.com/legal/license
|
|
268
266
|
[Grid Lite]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grid-lite/overview
|
|
269
|
-
[Ignite UI Web Components Grid Lite]: https://www.npmjs.com/package/igniteui-
|
|
267
|
+
[Ignite UI Web Components Grid Lite]: https://www.npmjs.com/package/igniteui-grid-lite
|
|
270
268
|
[1.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/1.0.0
|
|
271
269
|
[2.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/2.0.0
|
|
272
270
|
[2.1.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/2.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents",
|
|
3
|
-
"version": "7.0.0
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "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.",
|
|
5
5
|
"author": "Infragistics",
|
|
6
6
|
"license": "MIT",
|
package/skills/README.md
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# LLM Agent Skills for End Users
|
|
2
|
+
|
|
3
|
+
This directory contains skills for GitHub Copilot and other LLM agents to help developers use Ignite UI Web Components effectively in their applications.
|
|
4
|
+
|
|
5
|
+
## What are Skills?
|
|
6
|
+
|
|
7
|
+
Skills are structured instructions that help AI agents understand and execute common tasks consistently. Each skill is a self-contained guide that provides step-by-step instructions, code examples, and best practices.
|
|
8
|
+
|
|
9
|
+
## Available Skills
|
|
10
|
+
|
|
11
|
+
| Skill | Description | Use When |
|
|
12
|
+
| ----------------------------------------------------------- | ---------------------------------------------------------------------------------- | ------------------------------------- |
|
|
13
|
+
| [igniteui-wc-choose-components](./igniteui-wc-choose-components/SKILL.md) | Identify the right components for a UI pattern and navigate to official docs/demos | Deciding which components to use |
|
|
14
|
+
| [igniteui-wc-integrate-with-framework](./igniteui-wc-integrate-with-framework/SKILL.md) | Integrate components into React, Angular, Vue, or vanilla JS applications | Setting up components in your project |
|
|
15
|
+
| [igniteui-wc-customize-component-theme](./igniteui-wc-customize-component-theme/SKILL.md) | Customize styling using CSS custom properties, parts, and theming system | Applying custom brand colors/styles |
|
|
16
|
+
| [igniteui-wc-optimize-bundle-size](./igniteui-wc-optimize-bundle-size/SKILL.md) | Reduce bundle size by importing only needed components and lazy loading | Optimizing production performance |
|
|
17
|
+
|
|
18
|
+
## How to Use
|
|
19
|
+
|
|
20
|
+
When working with an AI agent like GitHub Copilot, reference skills by name or ask questions naturally:
|
|
21
|
+
|
|
22
|
+
### Natural Questions
|
|
23
|
+
- "How do I integrate igniteui-webcomponents with React?"
|
|
24
|
+
- "Help me customize the button colors to match my brand"
|
|
25
|
+
- "My bundle size is too large, how can I reduce it?"
|
|
26
|
+
- "Show me how to use these components in Vue"
|
|
27
|
+
|
|
28
|
+
### Direct Skill Reference
|
|
29
|
+
- "Follow the integrate-with-framework skill for my Angular app"
|
|
30
|
+
- "Use the customize-component-theme skill to help me style components"
|
|
31
|
+
- "Apply the optimize-bundle-size skill to reduce my bundle"
|
|
32
|
+
|
|
33
|
+
## Skill Structure
|
|
34
|
+
|
|
35
|
+
Each skill contains:
|
|
36
|
+
|
|
37
|
+
- **Example Usage**: Common questions or scenarios
|
|
38
|
+
- **When to Use**: Situations where the skill applies
|
|
39
|
+
- **Related Skills**: Other relevant skills to explore
|
|
40
|
+
- **Step-by-Step Instructions**: Detailed guidance with code examples
|
|
41
|
+
- **Framework-Specific Examples**: React, Angular, Vue, and vanilla JS patterns
|
|
42
|
+
- **Common Issues & Solutions**: Troubleshooting guidance
|
|
43
|
+
- **Best Practices**: Recommended approaches
|
|
44
|
+
- **Additional Resources**: Further reading and documentation
|
|
45
|
+
|
|
46
|
+
## Contributing
|
|
47
|
+
|
|
48
|
+
If you identify gaps in the skills or have suggestions for improvements:
|
|
49
|
+
|
|
50
|
+
1. [Open an issue](https://github.com/IgniteUI/igniteui-webcomponents/issues) describing the improvement
|
|
51
|
+
2. Submit a pull request with the proposed changes
|
|
52
|
+
3. Follow the skill format and structure of existing skills
|
|
53
|
+
|
|
54
|
+
For skills related to **contributing to the library itself** (creating components, reviewing PRs, etc.), see [`.github/skills/`](../.github/skills/).
|
|
55
|
+
|
|
56
|
+
## Additional Resources
|
|
57
|
+
|
|
58
|
+
- [Component Documentation](https://igniteui.github.io/igniteui-webcomponents)
|
|
59
|
+
- [Project README](../README.md)
|
|
60
|
+
- [Code Examples & Storybook](https://igniteui.github.io/igniteui-webcomponents)
|
|
61
|
+
- [GitHub Repository](https://github.com/IgniteUI/igniteui-webcomponents)
|
|
62
|
+
|
|
63
|
+
## License
|
|
64
|
+
|
|
65
|
+
These skills are provided under the same license as the Ignite UI Web Components library. See [LICENSE](../LICENSE) for details.
|
|
@@ -0,0 +1,358 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: igniteui-wc-choose-components
|
|
3
|
+
description: Identify and select the right Ignite UI Web Components for your app UI, then navigate to official docs, usage examples, and API references
|
|
4
|
+
user-invokable: true
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Choose the Right Ignite UI Components
|
|
8
|
+
|
|
9
|
+
This skill helps AI agents and developers identify the best Ignite UI components for any UI requirement, then provides direct links to official documentation, usage examples, and API references.
|
|
10
|
+
|
|
11
|
+
## Example Usage
|
|
12
|
+
|
|
13
|
+
- "What component should I use to display a list of items with actions?"
|
|
14
|
+
- "I need a date picker for a booking form"
|
|
15
|
+
- "How do I show file upload progress?"
|
|
16
|
+
- "What's the best component for a navigation sidebar?"
|
|
17
|
+
- "I need a searchable dropdown with multi-select"
|
|
18
|
+
- "Build a dashboard layout with cards and a data grid"
|
|
19
|
+
- "I want to display hierarchical/tree data"
|
|
20
|
+
- "Show me components for notifications and alerts"
|
|
21
|
+
|
|
22
|
+
## Related Skills
|
|
23
|
+
|
|
24
|
+
- [igniteui-wc-integrate-with-framework](../igniteui-wc-integrate-with-framework/SKILL.md) — Set up chosen components in React, Angular, Vue, or vanilla JS
|
|
25
|
+
- [igniteui-wc-customize-component-theme](../igniteui-wc-customize-component-theme/SKILL.md) — Style and theme the components you select
|
|
26
|
+
- [igniteui-wc-optimize-bundle-size](../igniteui-wc-optimize-bundle-size/SKILL.md) — Import only the components you actually use
|
|
27
|
+
|
|
28
|
+
## When to Use
|
|
29
|
+
|
|
30
|
+
- Agent or user needs to decide which component fits a UI requirement
|
|
31
|
+
- User describes a UI pattern and needs a matching component name
|
|
32
|
+
- User wants to explore what components are available
|
|
33
|
+
- User needs links to official docs or live examples for a specific component
|
|
34
|
+
- Starting a new feature and mapping requirements to components
|
|
35
|
+
- Reworking existing UI with new or different component requirements
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## Available Packages
|
|
40
|
+
|
|
41
|
+
Ignite UI for Web Components is distributed across several packages depending on your needs:
|
|
42
|
+
|
|
43
|
+
| Package | License | Install | Best For |
|
|
44
|
+
|---|---|---|---|
|
|
45
|
+
| [`igniteui-webcomponents`](https://www.npmjs.com/package/igniteui-webcomponents) | MIT | `npm install igniteui-webcomponents` | General UI components (inputs, layouts, notifications, scheduling) |
|
|
46
|
+
| [`igniteui-webcomponents-grids`](https://www.npmjs.com/package/igniteui-webcomponents-grids) | Commercial | `npm install igniteui-webcomponents-grids` (trial) | Advanced data grids (Data Grid, Tree Grid, Hierarchical Grid, Pivot Grid) with many built-in functionalities |
|
|
47
|
+
| [`igniteui-grid-lite`](https://www.npmjs.com/package/igniteui-grid-lite) | MIT | `npm install igniteui-grid-lite` | Lightweight data grid for simpler tabular data |
|
|
48
|
+
| [`igniteui-dockmanager`](https://www.npmjs.com/package/igniteui-dockmanager) | Commercial | `npm install igniteui-dockmanager` (trial) | Windowing / docking layouts (IDE-style panels) |
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## Component Catalogue by UI Pattern
|
|
53
|
+
|
|
54
|
+
Use the table below to map a UI need to the right component, then follow the documentation link.
|
|
55
|
+
|
|
56
|
+
### Inputs & Forms
|
|
57
|
+
|
|
58
|
+
All inputs are form-associated and integrate natively with `<form>`.
|
|
59
|
+
|
|
60
|
+
| UI Need | Component | Tag | Docs |
|
|
61
|
+
|---|---|---|---|
|
|
62
|
+
| Text field / text input | Input | `<igc-input>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/input) |
|
|
63
|
+
| Multi-line text | Textarea | `<igc-textarea>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/text-area) |
|
|
64
|
+
| Checkbox | Checkbox | `<igc-checkbox>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/checkbox) |
|
|
65
|
+
| On/off toggle | Switch | `<igc-switch>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/switch) |
|
|
66
|
+
| Single choice from a list | Radio / Radio Group | `<igc-radio>` / `<igc-radio-group>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/radio) |
|
|
67
|
+
| Star / score rating | Rating | `<igc-rating>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/rating) |
|
|
68
|
+
| Formatted / masked text input | Mask Input | `<igc-mask-input>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/input) |
|
|
69
|
+
| Date and time input | Date Time Input | `<igc-date-time-input>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/date-time-input) |
|
|
70
|
+
| File upload | File Input | `<igc-file-input>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/file-input) |
|
|
71
|
+
| Simple dropdown / select | Select | `<igc-select>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/select) |
|
|
72
|
+
| Searchable dropdown, single or multi-select | Combo | `<igc-combo>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/combo/overview) |
|
|
73
|
+
| Grouped toggle buttons | Button Group | `<igc-button-group>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/button-group) |
|
|
74
|
+
| Range / numeric slider | Slider | `<igc-slider>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/slider) |
|
|
75
|
+
| Range slider (two handles) | Range Slider | `<igc-range-slider>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/slider) |
|
|
76
|
+
|
|
77
|
+
### Buttons & Actions
|
|
78
|
+
|
|
79
|
+
| UI Need | Component | Tag | Docs |
|
|
80
|
+
|---|---|---|---|
|
|
81
|
+
| Standard clickable button | Button | `<igc-button>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/button) |
|
|
82
|
+
| Icon-only button | Icon Button | `<igc-icon-button>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/icon-button) |
|
|
83
|
+
| Click ripple effect | Ripple | `<igc-ripple>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/ripple) |
|
|
84
|
+
| Removable tag / filter chip | Chip | `<igc-chip>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/chip) |
|
|
85
|
+
|
|
86
|
+
### Scheduling & Date Pickers
|
|
87
|
+
|
|
88
|
+
| UI Need | Component | Tag | Docs |
|
|
89
|
+
|---|---|---|---|
|
|
90
|
+
| Full calendar view | Calendar | `<igc-calendar>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/scheduling/calendar) |
|
|
91
|
+
| Date picker (popup calendar) | Date Picker | `<igc-datepicker>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/scheduling/date-picker) |
|
|
92
|
+
| Date range selection | Date Range Picker | `<igc-date-range-picker>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/scheduling/date-range-picker) |
|
|
93
|
+
|
|
94
|
+
### Notifications & Feedback
|
|
95
|
+
|
|
96
|
+
| UI Need | Component | Tag | Docs |
|
|
97
|
+
|---|---|---|---|
|
|
98
|
+
| Brief auto-dismiss notification | Toast | `<igc-toast>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/notifications/toast) |
|
|
99
|
+
| Actionable dismissible notification bar | Snackbar | `<igc-snackbar>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/notifications/snackbar) |
|
|
100
|
+
| Persistent status banner (e.g. warning, error) | Banner | `<igc-banner>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/notifications/banner) |
|
|
101
|
+
| Modal confirmation or content dialog | Dialog | `<igc-dialog>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/notifications/dialog) |
|
|
102
|
+
| Tooltip on hover | Tooltip | `<igc-tooltip>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/tooltip) |
|
|
103
|
+
| Small count / status indicator | Badge | `<igc-badge>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/badge) |
|
|
104
|
+
|
|
105
|
+
### Progress Indicators
|
|
106
|
+
|
|
107
|
+
| UI Need | Component | Tag | Docs |
|
|
108
|
+
|---|---|---|---|
|
|
109
|
+
| Horizontal progress bar | Linear Progress | `<igc-linear-progress>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/linear-progress) |
|
|
110
|
+
| Circular / spinner progress | Circular Progress | `<igc-circular-progress>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/circular-progress) |
|
|
111
|
+
|
|
112
|
+
### Layouts & Containers
|
|
113
|
+
|
|
114
|
+
| UI Need | Component | Tag | Docs |
|
|
115
|
+
|---|---|---|---|
|
|
116
|
+
| Generic content card | Card | `<igc-card>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/card) |
|
|
117
|
+
| User avatar / profile image | Avatar | `<igc-avatar>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/avatar) |
|
|
118
|
+
| Icon display | Icon | `<igc-icon>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/icon) |
|
|
119
|
+
| Horizontal or vertical divider line | Divider | `<igc-divider>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/divider) |
|
|
120
|
+
| Collapsible section | Expansion Panel | `<igc-expansion-panel>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/expansion-panel) |
|
|
121
|
+
| Multiple collapsible sections (accordion) | Accordion | `<igc-accordion>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/accordion) |
|
|
122
|
+
| Tabbed content panels | Tabs | `<igc-tabs>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/tabs) |
|
|
123
|
+
| Image / content slideshow | Carousel | `<igc-carousel>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/carousel) |
|
|
124
|
+
| Multi-step wizard / onboarding flow | Stepper | `<igc-stepper>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/stepper) |
|
|
125
|
+
| Resizable, draggable dashboard tiles | Tile Manager | `<igc-tile-manager>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/tile-manager) |
|
|
126
|
+
| IDE-style docking / floating panels | Dock Manager | `<igc-dockmanager>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/dock-manager) |
|
|
127
|
+
|
|
128
|
+
### Navigation
|
|
129
|
+
|
|
130
|
+
| UI Need | Component | Tag | Docs |
|
|
131
|
+
|---|---|---|---|
|
|
132
|
+
| Top application bar / toolbar | Navbar | `<igc-navbar>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/menus/navbar) |
|
|
133
|
+
| Side navigation drawer | Navigation Drawer | `<igc-nav-drawer>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/menus/navigation-drawer) |
|
|
134
|
+
| Context menu / actions dropdown | Drop Down | `<igc-dropdown>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/dropdown) |
|
|
135
|
+
|
|
136
|
+
### Lists & Data Display
|
|
137
|
+
|
|
138
|
+
| UI Need | Component | Tag | Docs |
|
|
139
|
+
|---|---|---|---|
|
|
140
|
+
| Simple scrollable list | List | `<igc-list>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/list) |
|
|
141
|
+
| Hierarchical / tree data | Tree | `<igc-tree>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/tree) |
|
|
142
|
+
| Tabular data (MIT, lightweight) | Grid Lite | `<igc-grid>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grid-lite/overview) |
|
|
143
|
+
| Full-featured tabular data grid | Data Grid | `<igc-grid>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/grid/overview) |
|
|
144
|
+
| Nested / master-detail grid | Hierarchical Grid | `<igc-hierarchical-grid>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/hierarchical-grid/overview) |
|
|
145
|
+
| Parent-child relational tree grid | Tree Grid | `<igc-tree-grid>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/tree-grid/overview) |
|
|
146
|
+
| Cross-tabulation / BI pivot table | Pivot Grid | `<igc-pivot-grid>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/web-components/components/grids/pivot-grid/overview) |
|
|
147
|
+
|
|
148
|
+
### Conversational / AI
|
|
149
|
+
|
|
150
|
+
| UI Need | Component | Tag | Docs |
|
|
151
|
+
|---|---|---|---|
|
|
152
|
+
| Chat / AI assistant message thread | Chat | `<igc-chat>` | [Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/interactivity/chat) |
|
|
153
|
+
|
|
154
|
+
---
|
|
155
|
+
|
|
156
|
+
## Step-by-Step: Choosing Components for a UI
|
|
157
|
+
|
|
158
|
+
Follow these steps when an agent or user describes a UI requirement:
|
|
159
|
+
|
|
160
|
+
### Step 1 — Identify UI patterns
|
|
161
|
+
|
|
162
|
+
Break the described UI into atomic patterns. Examples:
|
|
163
|
+
- "A booking form" → date input, text inputs, button, maybe a calendar picker
|
|
164
|
+
- "An admin dashboard" → navbar, nav drawer, cards, data grid, charts
|
|
165
|
+
- "A notification center" → snackbar or toast, badge, list
|
|
166
|
+
- "A settings page" → tabs or accordion, switch, input, select, button
|
|
167
|
+
|
|
168
|
+
### Step 2 — Map patterns to components
|
|
169
|
+
|
|
170
|
+
Use the **Component Catalogue** tables above to find matching components. When in doubt:
|
|
171
|
+
|
|
172
|
+
| If the user needs… | Prefer… | Over… |
|
|
173
|
+
|---|---|---|
|
|
174
|
+
| Simple static list | `<igc-list>` | Data Grid |
|
|
175
|
+
| Basic dropdown | `<igc-select>` | `<igc-combo>` |
|
|
176
|
+
| Searchable or multi-select dropdown | `<igc-combo>` | `<igc-select>` |
|
|
177
|
+
| Tabular data with basic display and functionality | Grid Lite | Data Grid (commercial) |
|
|
178
|
+
| Tabular data, advanced features needed | Data Grid | Grid Lite |
|
|
179
|
+
| Single dismissible message | Toast | Snackbar |
|
|
180
|
+
| Message requiring user action | Snackbar | Toast |
|
|
181
|
+
| Collapsible single section | Expansion Panel | Accordion |
|
|
182
|
+
| Multiple collapsible sections | Accordion | Expansion Panel |
|
|
183
|
+
| Stepped wizard UI | Stepper | Tabs |
|
|
184
|
+
| Content tabs / view switching | Tabs | Stepper |
|
|
185
|
+
|
|
186
|
+
### Step 3 — Check the package
|
|
187
|
+
|
|
188
|
+
Confirm which package provides the component:
|
|
189
|
+
|
|
190
|
+
- **MIT components** (inputs, layout, notifications, scheduling, chat) → `igniteui-webcomponents`
|
|
191
|
+
- **Advanced grids** (Data Grid, Tree Grid, Hierarchical Grid, Pivot Grid) → `igniteui-webcomponents-grids` *(commercial)*
|
|
192
|
+
- **Lightweight grid** (Grid Lite) → `igniteui-grid-lite` *(MIT)*
|
|
193
|
+
- **Docking layout** → `igniteui-dockmanager` *(commercial)*
|
|
194
|
+
|
|
195
|
+
### Step 4 — Link to official resources
|
|
196
|
+
|
|
197
|
+
Always direct the user to the official documentation linked in the tables above. Key entry points:
|
|
198
|
+
|
|
199
|
+
- **Component overview**: [Ignite UI Web Components Docs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/general-getting-started)
|
|
200
|
+
- **Live Storybook demos**: [https://igniteui.github.io/igniteui-webcomponents](https://igniteui.github.io/igniteui-webcomponents)
|
|
201
|
+
- **npm package**: [https://www.npmjs.com/package/igniteui-webcomponents](https://www.npmjs.com/package/igniteui-webcomponents)
|
|
202
|
+
- **GitHub repository**: [https://github.com/IgniteUI/igniteui-webcomponents](https://github.com/IgniteUI/igniteui-webcomponents)
|
|
203
|
+
- **Changelog / releases**: [https://github.com/IgniteUI/igniteui-webcomponents/blob/master/CHANGELOG.md](https://github.com/IgniteUI/igniteui-webcomponents/blob/master/CHANGELOG.md)
|
|
204
|
+
|
|
205
|
+
### Step 5 — Provide a starter code snippet
|
|
206
|
+
|
|
207
|
+
Once components are identified, give the user a minimal working snippet. Example for an admin dashboard shell:
|
|
208
|
+
|
|
209
|
+
```typescript
|
|
210
|
+
import {
|
|
211
|
+
defineComponents,
|
|
212
|
+
IgcNavbarComponent,
|
|
213
|
+
IgcNavDrawerComponent,
|
|
214
|
+
IgcCardComponent,
|
|
215
|
+
IgcIconComponent,
|
|
216
|
+
IgcButtonComponent,
|
|
217
|
+
registerIconFromText,
|
|
218
|
+
} from 'igniteui-webcomponents';
|
|
219
|
+
|
|
220
|
+
defineComponents(
|
|
221
|
+
IgcNavbarComponent,
|
|
222
|
+
IgcNavDrawerComponent,
|
|
223
|
+
IgcCardComponent,
|
|
224
|
+
IgcIconComponent,
|
|
225
|
+
IgcButtonComponent
|
|
226
|
+
);
|
|
227
|
+
|
|
228
|
+
registerIconFromText('menu', '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/></svg>', 'material');
|
|
229
|
+
registerIconFromText('home', '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/></svg>', 'material');
|
|
230
|
+
registerIconFromText('build', '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z"/></svg>', 'material');
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
```html
|
|
234
|
+
<igc-navbar>
|
|
235
|
+
<igc-icon name="menu" collection="material" slot="start"></igc-icon>
|
|
236
|
+
<h1>My Dashboard</h1>
|
|
237
|
+
</igc-navbar>
|
|
238
|
+
|
|
239
|
+
<igc-nav-drawer>
|
|
240
|
+
<igc-nav-drawer-item>
|
|
241
|
+
<igc-icon name="home" collection="material" slot="icon"></igc-icon>
|
|
242
|
+
<span slot="content">Home</span>
|
|
243
|
+
</igc-nav-drawer-item>
|
|
244
|
+
<igc-nav-drawer-item>
|
|
245
|
+
<igc-icon name="build" collection="material" slot="icon"></igc-icon>
|
|
246
|
+
<span slot="content">Settings</span>
|
|
247
|
+
</igc-nav-drawer-item>
|
|
248
|
+
</igc-nav-drawer>
|
|
249
|
+
|
|
250
|
+
<igc-card>
|
|
251
|
+
<igc-card-header>
|
|
252
|
+
<h3 slot="title">Summary</h3>
|
|
253
|
+
</igc-card-header>
|
|
254
|
+
<igc-card-content>Dashboard content here</igc-card-content>
|
|
255
|
+
</igc-card>
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
|
|
260
|
+
## Common UI Scenarios → Recommended Component Sets
|
|
261
|
+
|
|
262
|
+
### Login / Authentication Form
|
|
263
|
+
- `<igc-input>` — email and password fields
|
|
264
|
+
- `<igc-checkbox>` — "Remember me"
|
|
265
|
+
- `<igc-button>` — submit
|
|
266
|
+
- `<igc-snackbar>` — error/success feedback
|
|
267
|
+
- **Docs**: [Input](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/input) · [Button](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/button) · [Snackbar](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/notifications/snackbar)
|
|
268
|
+
|
|
269
|
+
### User Profile / Settings Page
|
|
270
|
+
- `<igc-avatar>` — profile picture
|
|
271
|
+
- `<igc-tabs>` — section navigation (Profile, Security, Notifications)
|
|
272
|
+
- `<igc-input>` / `<igc-textarea>` — editable fields
|
|
273
|
+
- `<igc-switch>` — feature toggles
|
|
274
|
+
- `<igc-select>` — preference dropdowns
|
|
275
|
+
- `<igc-button>` — save/cancel actions
|
|
276
|
+
- **Docs**: [Avatar](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/avatar) · [Tabs](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/tabs) · [Switch](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/switch)
|
|
277
|
+
|
|
278
|
+
### Data Table / Admin List View
|
|
279
|
+
- `<igc-input>` — search bar
|
|
280
|
+
- `<igc-combo>` — filter dropdowns
|
|
281
|
+
- `<igc-grid>` (Grid Lite) or Data Grid — tabular data
|
|
282
|
+
- `<igc-button>` / `<igc-icon-button>` — actions
|
|
283
|
+
- `<igc-dialog>` — confirm delete modal
|
|
284
|
+
- `<igc-badge>` — status indicators
|
|
285
|
+
- **Docs**: [Grid Lite](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grid-lite/overview) · [Data Grid](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/grid/overview) · [Dialog](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/notifications/dialog)
|
|
286
|
+
|
|
287
|
+
### Booking / Reservation Form
|
|
288
|
+
- `<igc-date-range-picker>` — check-in / check-out
|
|
289
|
+
- `<igc-input>` — guest details
|
|
290
|
+
- `<igc-select>` — room type
|
|
291
|
+
- `<igc-stepper>` — multi-step booking flow
|
|
292
|
+
- `<igc-button>` — next / confirm
|
|
293
|
+
- `<igc-toast>` — booking confirmation
|
|
294
|
+
- **Docs**: [Date Range Picker](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/scheduling/date-range-picker) · [Stepper](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/stepper)
|
|
295
|
+
|
|
296
|
+
### Analytics / Reporting Dashboard
|
|
297
|
+
- `<igc-navbar>` — top bar
|
|
298
|
+
- `<igc-nav-drawer>` — side navigation
|
|
299
|
+
- `<igc-card>` — KPI summary cards
|
|
300
|
+
- `<igc-tabs>` or `<igc-tile-manager>` — section layout
|
|
301
|
+
- Data Grid or Pivot Grid — detailed data tables
|
|
302
|
+
- `<igc-linear-progress>` / `<igc-circular-progress>` — loading states
|
|
303
|
+
- **Docs**: [Tile Manager](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/tile-manager) · [Pivot Grid](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/pivot-grid/overview)
|
|
304
|
+
|
|
305
|
+
### Notification / Activity Feed
|
|
306
|
+
- `<igc-list>` — activity items
|
|
307
|
+
- `<igc-avatar>` — user avatars in each item
|
|
308
|
+
- `<igc-badge>` — unread count
|
|
309
|
+
- `<igc-snackbar>` — real-time alerts
|
|
310
|
+
- `<igc-chip>` — filter tags (All, Mentions, Replies)
|
|
311
|
+
- **Docs**: [List](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/list) · [Badge](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/badge) · [Chip](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/chip)
|
|
312
|
+
|
|
313
|
+
### AI / Chatbot Interface
|
|
314
|
+
- `<igc-chat>` — full chat UI with message threading
|
|
315
|
+
- `<igc-input>` or `<igc-textarea>` — message input
|
|
316
|
+
- `<igc-icon-button>` — send button
|
|
317
|
+
- `<igc-avatar>` — bot and user avatars
|
|
318
|
+
- `<igc-circular-progress>` — "thinking" indicator
|
|
319
|
+
- **Docs**: [Chat](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/interactivity/chat) · [Avatar](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/avatar)
|
|
320
|
+
|
|
321
|
+
---
|
|
322
|
+
|
|
323
|
+
## Common Issues & Solutions
|
|
324
|
+
|
|
325
|
+
### "I can't find a component for X"
|
|
326
|
+
|
|
327
|
+
1. Check the [full component list](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/general-getting-started) in the official docs
|
|
328
|
+
2. Consider composing two simpler components (e.g., `<igc-card>` + `<igc-list>` for a list card)
|
|
329
|
+
|
|
330
|
+
### "Which grid should I use?"
|
|
331
|
+
|
|
332
|
+
| Scenario | Component | Package | License |
|
|
333
|
+
|---|---|---|---|
|
|
334
|
+
| Simple table with basic features | Grid Lite | `igniteui-grid-lite` | MIT |
|
|
335
|
+
| Advanced/excel-style filtering, paging, editing | Data Grid | `igniteui-webcomponents-grids` | Commercial |
|
|
336
|
+
| Master-detail / nested rows | Hierarchical Grid | `igniteui-webcomponents-grids` | Commercial |
|
|
337
|
+
| Parent-child with shared columns | Tree Grid | `igniteui-webcomponents-grids` | Commercial |
|
|
338
|
+
| Cross-tabulation / OLAP analysis | Pivot Grid | `igniteui-webcomponents-grids` | Commercial |
|
|
339
|
+
|
|
340
|
+
### "I need React support"
|
|
341
|
+
|
|
342
|
+
Use the [`igniteui-react`](https://www.npmjs.com/package/igniteui-react) package. Components are wrapped with React-friendly event bindings and props. See the [igniteui-wc-integrate-with-framework](../igniteui-wc-integrate-with-framework/SKILL.md) skill for setup.
|
|
343
|
+
|
|
344
|
+
### "How do I get commercial components?"
|
|
345
|
+
|
|
346
|
+
Visit [https://www.infragistics.com/products/ignite-ui-web-components](https://www.infragistics.com/products/ignite-ui-web-components) or contact [Infragistics sales](https://www.infragistics.com/about-us/contact-us) for licensing information.
|
|
347
|
+
|
|
348
|
+
---
|
|
349
|
+
|
|
350
|
+
## Additional Resources
|
|
351
|
+
|
|
352
|
+
| Resource | Link |
|
|
353
|
+
|---|---|
|
|
354
|
+
| Getting started guide | [https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/general-getting-started](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/general-getting-started) |
|
|
355
|
+
| GitHub repository | [https://github.com/IgniteUI/igniteui-webcomponents](https://github.com/IgniteUI/igniteui-webcomponents) |
|
|
356
|
+
| Changelog | [https://github.com/IgniteUI/igniteui-webcomponents/blob/master/CHANGELOG.md](https://github.com/IgniteUI/igniteui-webcomponents/blob/master/CHANGELOG.md) |
|
|
357
|
+
| Discord community | [https://discord.gg/39MjrTRqds](https://discord.gg/39MjrTRqds) |
|
|
358
|
+
| Infragistics contact | [https://www.infragistics.com/about-us/contact-us](https://www.infragistics.com/about-us/contact-us) |
|