Releases: IgniteUI/igniteui-react
Releases · IgniteUI/igniteui-react
19.6.0
Changed
igniteui-react-dockmanager: updated to use the latestigniteui-dockmanager@2.1.0with newminResizeWidthandminResizeHeightproperties,paneFlyoutToggleevent; additionallayoutChangeevent detail and fixes. See the full changelogigniteui-react: updated to use the latestigniteui-webcomponents@7.1.0including new Splitter and Highlight container components and fixes. See the full changelog.
Added
- AI-Assisted Development - Agent Skills — structured knowledge files that teach AI coding assistants (GitHub Copilot, Cursor, Windsurf, Claude, JetBrains AI, etc.) how to work with Ignite UI for React.
- The skill files are included in the
igniteui-reactpackage and also live in theskills/directory:- components - Identify the right React components (
Igr*) for a UI pattern, then install, import, and use them — JSX patterns, events, refs, forms, etc. - customize-theme - Customize styling using CSS custom properties, Sass, and the theming system in React, including using Ignite UI Theming MCP server
- optimize-bundle-size - Reduce bundle size with granular imports, tree-shaking, and lazy loading
- components - Identify the right React components (
- These skills are automatically discovered when placed in the agent's skills path ( e.g.
.agents/skillsor.claude/skills).
- The skill files are included in the
Full Changelog: 19.5.1...19.6.0
19.5.1
Changed
- fix(build): disable minify to resolve tree-shake issues by @rkaraivanov 3744ac2
19.5.0
Changed
igniteui-react-dockmanager: updated to use the latestigniteui-dockmanager@2.0.0with internal refactor and enhancements. See the full changelog.igniteui-react: updated to use the latestigniteui-webcomponents@7.0.0including AI agent skills, changed global prefixes for CSS custom properties for component themes aligned across Ignite UI, enhancements and fixes. See the full changelog.igniteui-react: updated to use the latestigniteui-webcomponents-grids@7.0.0with updated Localization (i18n), performance enhancements, dropdown menus and dialogs using HTML Popover API and new PDF export option.
Added
-
New Localization (i18n) common integration via the
igniteui-i18n-resourcespackage and newregisterI18n/setCurrentI18nglobal methods to manage localization resources. -
Added
IgrGridLitewrapper around theigc-grid-liteWeb Component (in Developer Preview)Available from the
igniteui-react/grid-liteentry point. The wrapper component adds React-friendly API with similar and React template-based cell and header rendering.npm i igniteui-grid-liteimport { IgrGridLite, IgrGridLiteColumn, IgrHeaderContext } from "igniteui-react/grid-lite"; // ... const headerTemplate = (ctx: IgrHeaderContext<Record>) => { return <kbd>{ctx.column.field} 🔢</kbd>; }; return ( <IgrGridLite data={data}> <IgrGridLiteColumn field="id" dataType="number" headerTemplate={headerTemplate} /> </IgrGridLite> );
Fixed
- fix(templates): don't cache based on ng implicit value #115
- fix: template render on reconnect/DOM move Commit 2693139
19.4.0
Changed
- License Update: 🎉 The
igniteui-reactpackage is now published under the MIT License, providing greater flexibility and openness for the community. This change reflects our commitment to fostering an inclusive and collaborative development environment while maintaining the high-quality standards you expect from Ignite UI for React.
The@infragistics/igniteui-reactis still published in the Infragistics NPM licensed feed both to maintain backwards compatibility and to ease the transition, but is otherwise identical to the npm.org package and its use is discouraged and will be deprecated in the future. - Breaking Change: The
IgrDockManagernow published in its own package(s)igniteui-react-dockmanagerand the respective@infragistics/igniteui-react-dockmanagerin the Infragistics NPM licensed feed.
Added
igniteui-react-dockmanagerupdated to use the latestigniteui-dockmanager@1.18.0with multiple new functionality options exposed in addition to enhancements and fixes. See the full changelog.