Skip to content

Commit fda075c

Browse files
authored
Merge branch 'master' into rkaraivanov/combo-navigation-refactor
2 parents dbaae68 + 21cd28d commit fda075c

File tree

72 files changed

+1913
-673
lines changed

Some content is hidden

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

72 files changed

+1913
-673
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ 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]
8+
### Added
9+
- New File Input Component(`igc-file-input`)
10+
11+
### Deprecated
12+
Some event argument types have been renamed for consistency:
13+
- `CheckboxChangeEventArgs` deprecated, use `IgcCheckboxChangeEventArgs` instead.
14+
- `RadioChangeEventArgs` deprecated, use `IgcRadioChangeEventArgs` instead.
15+
- `IgcRangeSliderValue` deprecated, use `IgcRangeSliderValueEventArgs` instead.
16+
- `IgcActiveStepChangingArgs` deprecated, use `IgcActiveStepChangingEventArgs` instead.
17+
- `IgcActiveStepChangedArgs` deprecated, use `IgcActiveStepChangedEventArgs` instead.
18+
19+
### Fixed
20+
- Setting validation properties on a pristine non-dirty form associated element does not apply invalid styles [#1632](https://github.com/IgniteUI/igniteui-webcomponents/issues/1632)
21+
- Exposed `IgcCalendarResourceStrings`, `PopoverPlacement` (Dropdown and Select) and `IgcTreeSelectionEventArgs` from the public API
22+
723
## [5.3.0] - 2025-03-13
824
### Added
925
- Tile manager component [#1402](https://github.com/IgniteUI/igniteui-webcomponents/pull/1402)

README.md

Lines changed: 10 additions & 5 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+
| Tile Manager || [Docs][Tile Manager Docs] | [5.3.0] |
2627
| Carousel || [Docs][Carousel Docs] | [5.1.0] |
2728
| Date picker || [Docs][Date Picker Docs] | [4.10.0] |
2829
| Divider || [Docs][Divider Docs] | [4.10.0] |
@@ -68,11 +69,12 @@ See the [Storybook Here](https://igniteui.github.io/igniteui-webcomponents)
6869

6970
## Components available in [Ignite UI for WebComponents Grids]
7071

71-
| Components | Status | Documentation |
72-
| :--------- | :----: | :---------------------: |
73-
| Pivot Grid || [Docs][Pivot Grid Docs] |
74-
| Data Grid || [Docs][Data Grid Docs] |
75-
| Tree Grid || [Docs][Tree Grid Docs] |
72+
| Components | Status | Documentation |
73+
| :---------------- | :----: | :----------------------------: |
74+
| Pivot Grid || [Docs][Pivot Grid Docs] |
75+
| Data Grid || [Docs][Data Grid Docs] |
76+
| Tree Grid || [Docs][Tree Grid Docs] |
77+
| Hierarchical Grid || [Docs][Hierarchical Grid Docs] |
7678

7779
### The Lightweight Web Components Data Grid and Data Table
7880

@@ -197,6 +199,7 @@ npm run storybook:build
197199
[Pivot Grid Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/pivot-grid/overview
198200
[Data Grid Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/grid/overview
199201
[Tree Grid Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/tree-grid/overview
202+
[Hierarchical Grid Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/grids/hierarchical-grid/overview
200203
[Switch Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/switch
201204
[Ripple Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/ripple
202205
[Radio Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/radio
@@ -237,6 +240,7 @@ npm run storybook:build
237240
[Divider Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/divider
238241
[Date Picker Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/scheduling/date-picker
239242
[Carousel Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/carousel
243+
[Tile Manager Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/tile-manager
240244
[1.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/1.0.0
241245
[2.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/2.0.0
242246
[2.1.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/2.1.0
@@ -248,3 +252,4 @@ npm run storybook:build
248252
[4.5.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/4.5.0
249253
[4.10.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/4.10.0
250254
[5.1.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/5.1.0
255+
[5.3.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/5.3.0

ROADMAP.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
# Current Milestone
44

5-
## Milestone 13 (Due Aug, 2024)
5+
## Milestone 17 (Due May, 2025)
66

7-
1. Carousel component [#170](https://github.com/IgniteUI/igniteui-webcomponents/issues/170)
7+
1. Date range picker [1596](https://github.com/IgniteUI/igniteui-webcomponents/issues/1596)
8+
2. Tooltip component [1615](https://github.com/IgniteUI/igniteui-webcomponents/issues/1615)
89

910
## Going down the road
1011

@@ -13,7 +14,23 @@
1314

1415
# Previous Milestone
1516

16-
## Milestone 12, version [4.10.0](https://github.com/IgniteUI/igniteui-webcomponents/compare/4.9.0...4.10.0) Released Jul 01st, 2024
17+
## Milestone 16, version 5.3.0, Released Mar 13th, 2025
18+
19+
1. **[DONE]** Tile manager component [#1402](https://github.com/IgniteUI/igniteui-webcomponents/pull/1402)
20+
21+
## Milestone 15, version 5.1.0, Released Oct 25th, 2024
22+
23+
1. **[DONE]** Carousel component [#170](https://github.com/IgniteUI/igniteui-webcomponents/issues/170)
24+
25+
## Going down the road
26+
27+
1. **[DONE]** Tile manager component [#1402](https://github.com/IgniteUI/igniteui-webcomponents/pull/1402)
28+
29+
## Milestone 14, version 5.0.0, Released Aug 27th, 2024
30+
31+
1. **[DONE]** Support of custom icon libriries [#1304](https://github.com/IgniteUI/igniteui-webcomponents/issues/1304)
32+
33+
## Milestone 13, version [4.10.0](https://github.com/IgniteUI/igniteui-webcomponents/compare/4.9.0...4.10.0) Released Jul 01st, 2024
1734

1835
1. **[DONE]** Banner component [#1174](https://github.com/IgniteUI/igniteui-webcomponents/issues/1174)
1936
2. **[DONE]** Divider component [#1178](https://github.com/IgniteUI/igniteui-webcomponents/issues/1237)

0 commit comments

Comments
 (0)