Skip to content

Commit 3b65aa2

Browse files
committed
docs: Updated CHANGELOG
1 parent b227ef4 commit 3b65aa2

File tree

2 files changed

+53
-2
lines changed

2 files changed

+53
-2
lines changed

CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,55 @@ 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+
- #### Tabs
13+
- `igc-tab` **panel** property is removed.
14+
- `igc-tab-panel` component is removed.
15+
The `igc-tab` now encompasses both the tab header and the tab content in a single component.
16+
17+
Slotted content in the default slot of the `igc-tab` element now replaces the `igc-tab-panel` role
18+
while elements slotted inside the **label** slot will end up as content for the `igc-tab` header.
19+
20+
Before:
21+
```html
22+
<igc-tabs>
23+
<igc-tab panel="home">
24+
<igc-icon name="home"></igc-icon>
25+
</igc-tab>
26+
<igc-tab panel="search">
27+
<igc-icon name="search"></igc-icon>
28+
</igc-tab>
29+
<igc-tab panel="favorite">
30+
<igc-icon name="favorite"></igc-icon>
31+
</igc-tab>
32+
<igc-tab-panel id="home">Home tab panel</igc-tab-panel>
33+
<igc-tab-panel id="search">Search tab panel</igc-tab-panel>
34+
<igc-tab-panel id="favorite">Favorite tab panel</igc-tab-panel>
35+
</igc-tabs>
36+
```
37+
38+
After:
39+
```html
40+
<igc-tabs>
41+
<igc-tab>
42+
<igc-icon name="home" slot="label"></igc-icon>
43+
Home tab panel
44+
</igc-tab>
45+
<igc-tab>
46+
<igc-icon name="search" slot="label"></igc-icon>
47+
Search tab panel
48+
</igc-tab>
49+
<igc-tab>
50+
<igc-icon name="favorite" slot="label"></igc-icon>
51+
Favorite tab panel
52+
</igc-tab>
53+
</igc-tabs>
54+
```
55+
756
## [5.4.1] - 2025-04-23
857
### Fixed
958
- Internal library issues
@@ -821,6 +870,7 @@ Initial release of Ignite UI Web Components
821870
- Ripple component
822871
- Switch component
823872

873+
[6.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.4.1...6.0.0
824874
[5.4.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.4.0...5.4.1
825875
[5.4.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.3.0...5.4.0
826876
[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)