Skip to content

Commit 9d59bad

Browse files
authored
docs: Updated CHANGELOG.md with release notes (#2109)
1 parent 90841d5 commit 9d59bad

1 file changed

Lines changed: 32 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 32 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,32 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## [Unreleased]
7+
## [7.0.0] - 2026-02-25
88
### 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).
933
- #### Chat
1034
- **adoptRootStyles** can now be toggled on/off at runtime. [#2093](https://github.com/IgniteUI/igniteui-webcomponents/pull/2093)
1135

@@ -15,6 +39,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1539
- #### Themes - **Breaking change**
1640
- Changed global prefixes for CSS custom properties for component themes to align with other Ignite UI component libraries.
1741

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+
1848
### Fixed
1949
- #### Carousel
2050
- 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/).
2353
- #### Textarea
2454
- Correct cursor style over non input parts. [#2085](https://github.com/IgniteUI/igniteui-webcomponents/pull/2085)
2555

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-
3256
## [6.5.1] - 2026-02-04
3357
### Fixed
3458
- #### Calendar
@@ -1240,6 +1264,7 @@ Initial release of Ignite UI Web Components
12401264
- Ripple component
12411265
- Switch component
12421266
1267+
[7.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.5.1...7.0.0
12431268
[6.5.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.5.0...6.5.1
12441269
[6.5.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.4.0...6.5.0
12451270
[6.4.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.3.6...6.4.0

0 commit comments

Comments
 (0)