@@ -4,6 +4,61 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
55and 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
0 commit comments