Skip to content

Commit 4fa6dcc

Browse files
committed
Merge remote-tracking branch 'origin/master' into rkaraivanov/combo-navigation-refactor
2 parents a9a5d90 + cfda98d commit 4fa6dcc

File tree

171 files changed

+10339
-2449
lines changed

Some content is hidden

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

171 files changed

+10339
-2449
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ body:
1919
- Button group
2020
- Calendar
2121
- Card
22+
- Carousel
2223
- Chip
2324
- Checkbox / Switch
2425
- Combo
@@ -27,6 +28,7 @@ body:
2728
- Dialog
2829
- Dropdown
2930
- Expansion panel
31+
- File input
3032
- Icon(s)
3133
- Icon button
3234
- Input
@@ -42,7 +44,9 @@ body:
4244
- Stepper
4345
- Tabs & Tab group
4446
- Textarea
47+
- Tile Manager
4548
- Toast
49+
- Tooltip
4650
- Tree
4751
- Theming & Styles
4852
- Other/unknown (please specify in the description)

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,7 @@ custom-elements.json
3030

3131
# Localization data
3232
i18nRepo
33+
34+
# Development environment
35+
.envrc
36+
.direnv

CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,50 @@ 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+
## [6.1.0] - 2025-06-11
8+
### Added
9+
- Date Range Picker
10+
11+
### Changed
12+
- #### Tooltip
13+
- **Behavioral change**: Tooltip default `placement` is 'bottom' now.
14+
- **Behavioral change**: Tooltip will not render an arrow indicator by default unless `with-arrow` is set.
15+
- **Breaking change**: Tooltip events will no longer return its `anchor` target in its `detail` property.
16+
17+
You can still access it at `event.target.anchor`.
18+
19+
### Deprecated
20+
- #### Tooltip
21+
- `disableArrow` is deprecated. Use `withArrow | with-arrow` to render an arrow indicator.
22+
23+
### Fixed
24+
- #### Calendar & Date Picker
25+
- Incorrect date rollover for in certain scenarios [#1710](https://github.com/IgniteUI/igniteui-webcomponents/issues/1710)
26+
- #### Combo
27+
- Case insensitive icon styles in themes [#1728](https://github.com/IgniteUI/igniteui-webcomponents/pull/1728)
28+
- #### Textarea
29+
- Label height and component height override [#1715](https://github.com/IgniteUI/igniteui-webcomponents/pull/1715)
30+
31+
## [6.0.1] - 2025-05-28
32+
### Added
33+
- #### Radio group
34+
- Slotted `<label>` elements have default styles based on the current theme [#1694](https://github.com/IgniteUI/igniteui-webcomponents/pull/1694)
35+
36+
### Fixed
37+
- #### Chip
38+
- Styling discrepancies [#1486](https://github.com/IgniteUI/igniteui-webcomponents/pull/1486)
39+
- #### DateTime Input
40+
- Ensure `igcChange` is emitted in case an incomplete mask value has been filled [#1695](https://github.com/IgniteUI/igniteui-webcomponents/issues/1695)
41+
- #### Input
42+
- Browser default autofill background styles [#1697](https://github.com/IgniteUI/igniteui-webcomponents/pull/1697)
43+
- #### Textarea
44+
- Dynamic prefix/suffix slot content state [#1686](https://github.com/IgniteUI/igniteui-webcomponents/issues/1686)
45+
746
## [6.0.0] - 2025-04-29
847
### Changed
948
- Minimum Node version required is now >= 20.
49+
- #### Stepper
50+
- Stepper Step's `titlePosition` now defaults to `auto`, instead of being undefined, which has the same behavior.
1051

1152
### Removed
1253
- #### Library
@@ -876,6 +917,8 @@ Initial release of Ignite UI Web Components
876917
- Ripple component
877918
- Switch component
878919

920+
[6.1.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.0.1...6.1.0
921+
[6.0.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.0.0...6.0.1
879922
[6.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.4.1...6.0.0
880923
[5.4.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.4.0...5.4.1
881924
[5.4.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.3.0...5.4.0

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![npm version](https://badge.fury.io/js/igniteui-webcomponents.svg)](https://badge.fury.io/js/igniteui-webcomponents)
1010
[![Discord](https://img.shields.io/discord/836634487483269200?logo=discord&logoColor=ffffff)](https://discord.gg/39MjrTRqds)
1111

12-
[Ignite UI for Web Components] is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach. All components are based on the [Indigo.Design Design System] and are backed by ready-to-use UI kits for Sketch, Adobe XD and Figma.
12+
[Ignite UI for Web Components] is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach. All components are based on the [Indigo.Design Design System] and are backed by ready-to-use UI kit for Figma.
1313

1414
See the [Storybook Here](https://igniteui.github.io/igniteui-webcomponents)
1515

@@ -23,6 +23,8 @@ See the [Storybook Here](https://igniteui.github.io/igniteui-webcomponents)
2323

2424
| Components | Status | Documentation | Released Version |
2525
| :---------------------- | :----: | :----------------------------: | :--------------: |
26+
| Tooltip || [Docs][Tooltip Docs] | [5.4.0] |
27+
| File Input || [Docs][File Input Docs] | [5.4.0] |
2628
| Tile Manager || [Docs][Tile Manager Docs] | [5.3.0] |
2729
| Carousel || [Docs][Carousel Docs] | [5.1.0] |
2830
| Date picker || [Docs][Date Picker Docs] | [4.10.0] |
@@ -241,6 +243,8 @@ npm run storybook:build
241243
[Date Picker Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/scheduling/date-picker
242244
[Carousel Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/carousel
243245
[Tile Manager Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/layouts/tile-manager
246+
[File Input Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/file-input
247+
[Tooltip Docs]: https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/inputs/tooltip
244248
[1.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/1.0.0
245249
[2.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/2.0.0
246250
[2.1.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/2.1.0
@@ -253,3 +257,4 @@ npm run storybook:build
253257
[4.10.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/4.10.0
254258
[5.1.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/5.1.0
255259
[5.3.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/5.3.0
260+
[5.4.0]: https://github.com/IgniteUI/igniteui-webcomponents/releases/tag/5.4.0

ROADMAP.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Current Milestone
44

5-
## Milestone 17 (Due May, 2025)
5+
## Milestone 17 (Due Jun, 2025)
66

77
1. Date range picker [1596](https://github.com/IgniteUI/igniteui-webcomponents/issues/1596)
88
2. Tooltip component [1615](https://github.com/IgniteUI/igniteui-webcomponents/issues/1615)
@@ -11,6 +11,7 @@
1111

1212
1. Bottom navigation component [#169](https://github.com/IgniteUI/igniteui-webcomponents/issues/169)
1313
2. Splitter component [#184](https://github.com/IgniteUI/igniteui-webcomponents/issues/184)
14+
3. Chat UI component
1415

1516
# Previous Milestone
1617

0 commit comments

Comments
 (0)