Skip to content

Commit 05cf354

Browse files
authored
Merge branch 'master' into rkaraivanov/combo-navigation-refactor
2 parents 08ce86f + 31172b5 commit 05cf354

40 files changed

+2883
-2595
lines changed

CHANGELOG.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,35 @@ 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+
## [Unreleased]
8+
### Added
9+
- #### List
10+
- The `igc-list-item` component exposes a new `selected` property. When set on a list item, the item will become visually highlighted.
11+
12+
## [5.2.4] - 2025-02-24
13+
### Changed
14+
- #### Carousel - **Potential visual breaking change.**
15+
- Removed `[part='base']` wrapping container from slide's internal DOM.
16+
17+
## [5.2.3] - 2025-02-13
818
### Fixed
19+
- #### Chip
20+
- Disabled state in Bootstrap [#1573](https://github.com/IgniteUI/igniteui-webcomponents/pull/1573)
21+
22+
## [5.2.2] - 2025-02-12
23+
### Fixed
24+
- #### Combo
25+
- Incorrect defaultValue with async data-binding [#1555](https://github.com/IgniteUI/igniteui-webcomponents/pull/1555)
26+
- #### Circular progressbar
27+
- Value label correctly scales with the diameter of the component [#1543](https://github.com/IgniteUI/igniteui-webcomponents/pull/1543)
28+
- #### Date picker
29+
- Date picker styles for the helper-text slot based on its size [#1559](https://github.com/IgniteUI/igniteui-webcomponents/pull/1559)
30+
- #### Icon button
31+
- Outlined border sinks behind parent element background [#1566](https://github.com/IgniteUI/igniteui-webcomponents/pull/1566)
32+
- #### Input
33+
- helper-text slot padding styles [#1547](https://github.com/IgniteUI/igniteui-webcomponents/pull/1547)
34+
- ### Navbar
35+
- Apply correct sizes for slotted elements from the library [#1570](https://github.com/IgniteUI/igniteui-webcomponents/pull/1570)
936
- #### Rating
1037
- Inaccurate value rounding calculation when step is not 1 [#1560](https://github.com/IgniteUI/igniteui-webcomponents/issues/1560)
1138

@@ -677,6 +704,9 @@ Initial release of Ignite UI Web Components
677704
- Ripple component
678705
- Switch component
679706

707+
[5.2.4]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.3...5.2.4
708+
[5.2.3]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.2...5.2.3
709+
[5.2.2]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.1...5.2.2
680710
[5.2.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.0...5.2.1
681711
[5.2.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.1.2...5.2.0
682712
[5.1.2]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.1.1...5.1.2

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ See the [Storybook Here](https://igniteui.github.io/igniteui-webcomponents)
2323

2424
| Components | Status | Documentation | Released Version |
2525
| :---------------------- | :----: | :----------------------------: | :--------------: |
26+
| Carousel || [Docs][Carousel Docs] | [5.1.0] |
2627
| Date picker || [Docs][Date Picker Docs] | [4.10.0] |
2728
| Divider || [Docs][Divider Docs] | [4.10.0] |
2829
| Banner || [Docs][Banner Docs] | [4.10.0] |
@@ -235,6 +236,7 @@ npm run storybook:build
235236
[Banner Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/notifications/banner
236237
[Divider Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/divider
237238
[Date Picker Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/scheduling/date-picker
239+
[Carousel Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/carousel
238240
[1.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/1.0.0
239241
[2.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/2.0.0
240242
[2.1.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/2.1.0
@@ -245,3 +247,4 @@ npm run storybook:build
245247
[4.1.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/4.1.0
246248
[4.5.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/4.5.0
247249
[4.10.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/4.10.0
250+
[5.1.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/5.1.0

biome.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@
2929
"noStaticOnlyClass": "off"
3030
},
3131
"correctness": {
32+
"noUnusedVariables": "error",
33+
"noUnusedFunctionParameters": "error",
34+
"noUnusedImports": "error",
35+
"noUnusedPrivateClassMembers": "error",
3236
"useImportExtensions": {
3337
"options": {
3438
"suggestedExtensions": {

0 commit comments

Comments
 (0)