Skip to content

Commit 8f89722

Browse files
committed
Merge remote-tracking branch 'origin/master' into mkirkova/feat-1289
2 parents 8db0558 + c86a598 commit 8f89722

File tree

107 files changed

+11457
-2418
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+11457
-2418
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ For detailed information on issue and pull request statuses, process for testing
1616

1717
## Set up
1818

19-
You will need at least [Node >= 18.19.0](https://nodejs.org/en) installed on your machine.
19+
You will need at least [Node >= 20.19.0](https://nodejs.org/en) installed on your machine.
2020

2121
Once you have the minimum Node version installed, you can continue with the rest of the repo setup.
2222

2323
```shell
2424
node -v
25-
v18.19.1
25+
v20.19.0
2626

2727
git clone https://github.com/IgniteUI/igniteui-webcomponents.git
2828
cd igniteui-webcomponents

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [18.x, 20.x]
19+
node-version: [20.x, 22.x]
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
steps:
@@ -32,7 +32,7 @@ jobs:
3232
- run: npm run test
3333
- run: npm run check
3434
- name: Publish to coveralls.io
35-
if: matrix.node-version == '18.x'
35+
if: matrix.node-version == '20.x'
3636
uses: coverallsapp/github-action@v2
3737
with:
3838
github-token: ${{ github.token }}

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-node@v4
1313
with:
14-
node-version: '18'
14+
node-version: '20'
1515
cache: 'npm'
1616
registry-url: 'https://registry.npmjs.org'
1717
- run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV

CHANGELOG.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,30 @@ 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+
## [5.3.0] - 2025-03-13
8+
### Added
9+
- Tile manager component [#1402](https://github.com/IgniteUI/igniteui-webcomponents/pull/1402)
10+
- #### List
11+
- The `igc-list-item` component exposes a new `selected` property. When set on a list item, the item will become visually highlighted [#1590](https://github.com/IgniteUI/igniteui-webcomponents/pull/1590)
812

913
### Changed
14+
- #### Progressbar
15+
- Use theme schemas [#1582](https://github.com/IgniteUI/igniteui-webcomponents/pull/1582)
16+
17+
### Fixed
18+
- #### Calendar
19+
- Days row height for Fluent and Bootstrap themes [#1597](https://github.com/IgniteUI/igniteui-webcomponents/pull/1597)
20+
- Disabled date text color in range preview for Material and Indigo themes [#1595](https://github.com/IgniteUI/igniteui-webcomponents/pull/1595)
21+
- #### Chip
22+
- Improved responsive layout styles [#1588](https://github.com/IgniteUI/igniteui-webcomponents/pull/1588)
23+
- #### Combo
24+
- Improved toggle button visual states [#1580](https://github.com/IgniteUI/igniteui-webcomponents/pull/1580)
1025

26+
## [5.2.4] - 2025-02-24
27+
### Changed
1128
- #### Carousel - **Potential visual breaking change.**
12-
- Removed `[part='base']` wrapping container from slide's internal DOM.
29+
- Removed `[part='base']` wrapping container from slide's internal DOM.
30+
1331
## [5.2.3] - 2025-02-13
1432
### Fixed
1533
- #### Chip
@@ -700,6 +718,8 @@ Initial release of Ignite UI Web Components
700718
- Ripple component
701719
- Switch component
702720

721+
[5.3.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.4...5.3.0
722+
[5.2.4]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.3...5.2.4
703723
[5.2.3]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.2...5.2.3
704724
[5.2.2]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.1...5.2.2
705725
[5.2.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.0...5.2.1

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

0 commit comments

Comments
 (0)