Skip to content

Commit f116572

Browse files
authored
Merge branch 'master' into bpachilova/date-range-picker
2 parents 0230180 + 8e858b4 commit f116572

37 files changed

+565
-199
lines changed

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

package-lock.json

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

package.json

Lines changed: 6 additions & 6 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",
@@ -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
}

src/components/input/themes/input.base.scss

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,20 @@
3030
outline-style: none;
3131
font-family: var(--ig-font-family);
3232
z-index: 1;
33+
34+
// This is a hack that removes the autofill background and it's essential,
35+
// otherwise the background is on top of the floating label in material theme.
36+
// The !important flag is because themes that defin transition delay on that element are overriding the transition delay hack
37+
&:-webkit-autofill,
38+
&:-webkit-autofill:hover,
39+
&:-webkit-autofill:focus,
40+
&:-webkit-autofill:active,
41+
&:autofill,
42+
&:autofill:hover,
43+
&:autofill:focus,
44+
&:autofill:active{
45+
transition-delay: 99999s !important;
46+
}
3347
}
3448

3549
[part^='container'] {

src/components/radio-group/radio-group.fluent.scss

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/components/radio-group/radio-group.indigo.scss

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/components/radio-group/radio-group.material.scss

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)