Skip to content

Commit 8edaf15

Browse files
authored
docs: Updated CHANGELOG (#1668)
1 parent 8c21078 commit 8edaf15

File tree

2 files changed

+59
-2
lines changed

2 files changed

+59
-2
lines changed

CHANGELOG.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,61 @@ 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+
## [6.0.0] - 2025-04-29
8+
### Changed
9+
- Minimum Node version required is now >= 20.
10+
11+
### Removed
12+
- #### Library
13+
- `CheckboxChangeEventArgs` removed, use `IgcCheckboxChangeEventArgs` instead.
14+
- `RadioChangeEventArgs` removed, use `IgcRadioChangeEventArgs` instead.
15+
- `IgcRangeSliderValue` removed, use `IgcRangeSliderValueEventArgs` instead.
16+
- `IgcActiveStepChangingArgs` removed, use `IgcActiveStepChangingEventArgs` instead.
17+
- `IgcActiveStepChangedArgs` removed, use `IgcActiveStepChangedEventArgs` instead.
18+
- #### Tabs
19+
- `igc-tab` **panel** property is removed.
20+
- `igc-tab-panel` component is removed.
21+
The `igc-tab` now encompasses both the tab header and the tab content in a single component.
22+
23+
Slotted content in the default slot of the `igc-tab` element now replaces the `igc-tab-panel` role
24+
while elements slotted inside the **label** slot will end up as content for the `igc-tab` header.
25+
26+
Before:
27+
```html
28+
<igc-tabs>
29+
<igc-tab panel="home">
30+
<igc-icon name="home"></igc-icon>
31+
</igc-tab>
32+
<igc-tab panel="search">
33+
<igc-icon name="search"></igc-icon>
34+
</igc-tab>
35+
<igc-tab panel="favorite">
36+
<igc-icon name="favorite"></igc-icon>
37+
</igc-tab>
38+
<igc-tab-panel id="home">Home tab panel</igc-tab-panel>
39+
<igc-tab-panel id="search">Search tab panel</igc-tab-panel>
40+
<igc-tab-panel id="favorite">Favorite tab panel</igc-tab-panel>
41+
</igc-tabs>
42+
```
43+
44+
After:
45+
```html
46+
<igc-tabs>
47+
<igc-tab>
48+
<igc-icon name="home" slot="label"></igc-icon>
49+
Home tab panel
50+
</igc-tab>
51+
<igc-tab>
52+
<igc-icon name="search" slot="label"></igc-icon>
53+
Search tab panel
54+
</igc-tab>
55+
<igc-tab>
56+
<igc-icon name="favorite" slot="label"></igc-icon>
57+
Favorite tab panel
58+
</igc-tab>
59+
</igc-tabs>
60+
```
61+
762
## [5.4.1] - 2025-04-23
863
### Fixed
964
- Internal library issues
@@ -821,6 +876,7 @@ Initial release of Ignite UI Web Components
821876
- Ripple component
822877
- Switch component
823878

879+
[6.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.4.1...6.0.0
824880
[5.4.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.4.0...5.4.1
825881
[5.4.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.3.0...5.4.0
826882
[5.3.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.4...5.3.0

scripts/_package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
"sideEffects": false,
1717
"repository": {
1818
"type": "git",
19-
"url": "git+https://github.com/IgniteUI/igniteui-webcomponents"
19+
"url": "git+https://github.com/IgniteUI/igniteui-webcomponents.git"
2020
},
2121
"bugs": {
2222
"url": "https://github.com/IgniteUI/igniteui-webcomponents/issues"
2323
},
2424
"engines": {
25-
"node": ">=18"
25+
"node": ">=20"
2626
},
2727
"keywords": [
2828
"webcomponents",
@@ -67,6 +67,7 @@
6767
"tabs",
6868
"textarea",
6969
"toast",
70+
"tooltip",
7071
"tree"
7172
],
7273
"customElements": "custom-elements.json",

0 commit comments

Comments
 (0)