Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,61 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [6.0.0] - 2025-04-29
### Changed
- Minimum Node version required is now >= 20.

### Removed
- #### Library
- `CheckboxChangeEventArgs` removed, use `IgcCheckboxChangeEventArgs` instead.
- `RadioChangeEventArgs` removed, use `IgcRadioChangeEventArgs` instead.
- `IgcRangeSliderValue` removed, use `IgcRangeSliderValueEventArgs` instead.
- `IgcActiveStepChangingArgs` removed, use `IgcActiveStepChangingEventArgs` instead.
- `IgcActiveStepChangedArgs` removed, use `IgcActiveStepChangedEventArgs` instead.
- #### Tabs
- `igc-tab` **panel** property is removed.
- `igc-tab-panel` component is removed.
The `igc-tab` now encompasses both the tab header and the tab content in a single component.

Slotted content in the default slot of the `igc-tab` element now replaces the `igc-tab-panel` role
while elements slotted inside the **label** slot will end up as content for the `igc-tab` header.

Before:
```html
<igc-tabs>
<igc-tab panel="home">
<igc-icon name="home"></igc-icon>
</igc-tab>
<igc-tab panel="search">
<igc-icon name="search"></igc-icon>
</igc-tab>
<igc-tab panel="favorite">
<igc-icon name="favorite"></igc-icon>
</igc-tab>
<igc-tab-panel id="home">Home tab panel</igc-tab-panel>
<igc-tab-panel id="search">Search tab panel</igc-tab-panel>
<igc-tab-panel id="favorite">Favorite tab panel</igc-tab-panel>
</igc-tabs>
```

After:
```html
<igc-tabs>
<igc-tab>
<igc-icon name="home" slot="label"></igc-icon>
Home tab panel
</igc-tab>
<igc-tab>
<igc-icon name="search" slot="label"></igc-icon>
Search tab panel
</igc-tab>
<igc-tab>
<igc-icon name="favorite" slot="label"></igc-icon>
Favorite tab panel
</igc-tab>
</igc-tabs>
```

## [5.4.1] - 2025-04-23
### Fixed
- Internal library issues
Expand Down Expand Up @@ -821,6 +876,7 @@ Initial release of Ignite UI Web Components
- Ripple component
- Switch component

[6.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.4.1...6.0.0
[5.4.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.4.0...5.4.1
[5.4.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.3.0...5.4.0
[5.3.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.4...5.3.0
Expand Down
5 changes: 3 additions & 2 deletions scripts/_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/IgniteUI/igniteui-webcomponents"
"url": "git+https://github.com/IgniteUI/igniteui-webcomponents.git"
},
"bugs": {
"url": "https://github.com/IgniteUI/igniteui-webcomponents/issues"
},
"engines": {
"node": ">=18"
"node": ">=20"
},
"keywords": [
"webcomponents",
Expand Down Expand Up @@ -67,6 +67,7 @@
"tabs",
"textarea",
"toast",
"tooltip",
"tree"
],
"customElements": "custom-elements.json",
Expand Down