Skip to content

Commit 092c343

Browse files
authored
Merge branch 'master' into mkirova/calendar-blazor-tags
2 parents 1861fca + 877b16c commit 092c343

15 files changed

Lines changed: 298 additions & 172 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,20 @@ 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+
## [6.0.1] - 2025-05-28
8+
### Added
9+
- #### Radio group
10+
- Slotted `<label>` elements have default styles based on the current theme [#1694](https://github.com/IgniteUI/igniteui-webcomponents/pull/1694)
11+
812
### Fixed
13+
- #### Chip
14+
- Styling discrepancies [#1486](https://github.com/IgniteUI/igniteui-webcomponents/pull/1486)
915
- #### DateTime Input
1016
- Ensure `igcChange` is emitted in case an incomplete mask value has been filled [#1695](https://github.com/IgniteUI/igniteui-webcomponents/issues/1695)
17+
- #### Input
18+
- Browser default autofill background styles [#1697](https://github.com/IgniteUI/igniteui-webcomponents/pull/1697)
19+
- #### Textarea
20+
- Dynamic prefix/suffix slot content state [#1686](https://github.com/IgniteUI/igniteui-webcomponents/issues/1686)
1121

1222
## [6.0.0] - 2025-04-29
1323
### Changed
@@ -883,6 +893,7 @@ Initial release of Ignite UI Web Components
883893
- Ripple component
884894
- Switch component
885895

896+
[6.0.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.0.0...6.0.1
886897
[6.0.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.4.1...6.0.0
887898
[5.4.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.4.0...5.4.1
888899
[5.4.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.3.0...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

package-lock.json

Lines changed: 57 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@
6060
"@custom-elements-manifest/analyzer": "^0.10.4",
6161
"@igniteui/material-icons-extended": "^3.1.0",
6262
"@open-wc/testing": "^4.0.0",
63-
"@storybook/addon-a11y": "^9.0.0-rc.2",
64-
"@storybook/addon-docs": "^9.0.0-rc.2",
65-
"@storybook/addon-links": "^9.0.0-rc.2",
66-
"@storybook/web-components-vite": "^9.0.0-rc.2",
63+
"@storybook/addon-a11y": "^9.0.0-rc.4",
64+
"@storybook/addon-docs": "^9.0.0-rc.4",
65+
"@storybook/addon-links": "^9.0.0-rc.4",
66+
"@storybook/web-components-vite": "^9.0.0-rc.4",
6767
"@types/mocha": "^10.0.10",
6868
"@web/dev-server-esbuild": "^1.0.4",
69-
"@web/test-runner": "^0.20.1",
69+
"@web/test-runner": "^0.20.2",
7070
"@web/test-runner-playwright": "^0.11.0",
7171
"autoprefixer": "^10.4.21",
7272
"browser-sync": "^3.0.4",
@@ -77,7 +77,7 @@
7777
"globby": "^14.1.0",
7878
"husky": "^9.1.7",
7979
"ig-typedoc-theme": "^6.0.0",
80-
"igniteui-theming": "^18.0.1",
80+
"igniteui-theming": "^18.0.2",
8181
"keep-a-changelog": "^2.6.2",
8282
"lint-staged": "^16.0.0",
8383
"lit-analyzer": "^2.0.3",
@@ -89,7 +89,7 @@
8989
"rimraf": "^6.0.1",
9090
"sass-embedded": "~1.78.0",
9191
"sinon": "^20.0.0",
92-
"storybook": "^9.0.0-rc.2",
92+
"storybook": "^9.0.0-rc.4",
9393
"stylelint": "^16.19.1",
9494
"stylelint-config-standard-scss": "^15.0.1",
9595
"stylelint-prettier": "^5.0.3",

src/components/common/controllers/gestures.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const defaultState: GestureState = Object.freeze({ x: 0, y: 0, time: 0 });
1111

1212
/**
1313
* Configuration object for a {@link GesturesController} instance.
14+
* @ignore
1415
*/
1516
export interface GesturesOptions {
1617
/**

src/components/common/controllers/resize-observer.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ type ResizeObserverControllerCallback = (
88
...args: Parameters<ResizeObserverCallback>
99
) => unknown;
1010

11-
/** Configuration for initializing a resize controller. */
11+
/**
12+
* Configuration for initializing a resize controller.
13+
* @ignore
14+
*/
1215
export interface ResizeObserverControllerConfig {
1316
/** The callback function to run when a resize mutation is triggered. */
1417
callback: ResizeObserverControllerCallback;

src/components/file-input/file-input.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import { styles } from './themes/file-input.base.css.js';
1717
import { all } from './themes/themes.js';
1818
import { fileValidators } from './validators.js';
1919

20+
/* blazorSuppress */
2021
/**
2122
* @element igc-file-input
2223
*
@@ -122,7 +123,7 @@ export default class IgcFileInputComponent extends IgcInputBaseComponent {
122123
@property({ type: Boolean, attribute: false, noAccessor: true })
123124
public override readonly readOnly = false;
124125

125-
/** Returns the selected files when input type is 'file', otherwise returns null. */
126+
/** Returns the selected files, if any; otherwise returns null. */
126127
public get files(): FileList | null {
127128
return this.input?.files ?? null;
128129
}

0 commit comments

Comments
 (0)