Skip to content

Commit bcf6365

Browse files
authored
Merge branch 'master' into mtsvyatkova/feat-1379-tile-manager
2 parents aedc728 + 5fdfcfa commit bcf6365

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +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+
## [5.2.2] - 2025-02-12
88
### Fixed
9+
- #### Combo
10+
- Incorrect defaultValue with async data-binding [#1555](https://github.com/IgniteUI/igniteui-webcomponents/pull/1555)
11+
- #### Circular progressbar
12+
- Value label correctly scales with the diameter of the component [#1543](https://github.com/IgniteUI/igniteui-webcomponents/pull/1543)
13+
- #### Date picker
14+
- Date picker styles for the helper-text slot based on its size [#1559](https://github.com/IgniteUI/igniteui-webcomponents/pull/1559)
15+
- #### Icon button
16+
- Outlined border sinks behind parent element background [#1566](https://github.com/IgniteUI/igniteui-webcomponents/pull/1566)
17+
- #### Input
18+
- helper-text slot padding styles [#1547](https://github.com/IgniteUI/igniteui-webcomponents/pull/1547)
19+
- ### Navbar
20+
- Apply correct sizes for slotted elements from the library [#1570](https://github.com/IgniteUI/igniteui-webcomponents/pull/1570)
921
- #### Rating
1022
- Inaccurate value rounding calculation when step is not 1 [#1560](https://github.com/IgniteUI/igniteui-webcomponents/issues/1560)
1123

@@ -677,6 +689,7 @@ Initial release of Ignite UI Web Components
677689
- Ripple component
678690
- Switch component
679691

692+
[5.2.2]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.1...5.2.2
680693
[5.2.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.2.0...5.2.1
681694
[5.2.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.1.2...5.2.0
682695
[5.1.2]: https://github.com/IgniteUI/igniteui-webcomponents/compare/5.1.1...5.1.2

src/components/chip/themes/shared/chip.bootstrap.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ $theme: $bootstrap;
1313
}
1414
}
1515

16-
:host([variant='primary']) button,
16+
:host([variant='primary']) button:not([disabled]),
1717
:host([variant='primary']) button:focus,
1818
:host([variant='primary']) button:hover,
1919
:host([selected][variant='primary']) button:not([disabled]) {
@@ -24,7 +24,7 @@ $theme: $bootstrap;
2424
outline: rem(2px) solid color(primary, 200);
2525
}
2626

27-
:host([variant='info']) button,
27+
:host([variant='info']) button:not([disabled]),
2828
:host([variant='info']) button:focus,
2929
:host([variant='info']) button:hover,
3030
:host([selected][variant='info']) button:not([disabled]) {
@@ -35,7 +35,7 @@ $theme: $bootstrap;
3535
outline: rem(2px) solid color(info, 200);
3636
}
3737

38-
:host([variant='success']) button,
38+
:host([variant='success']) button:not([disabled]),
3939
:host([variant='success']) button:focus,
4040
:host([variant='success']) button:hover,
4141
:host([selected][variant='success']) button:not([disabled]) {
@@ -46,7 +46,7 @@ $theme: $bootstrap;
4646
outline: rem(2px) solid color(success, 200);
4747
}
4848

49-
:host([variant='warning']) button,
49+
:host([variant='warning']) button:not([disabled]),
5050
:host([variant='warning']) button:focus,
5151
:host([variant='warning']) button:hover,
5252
:host([selected][variant='warning']) button:not([disabled]) {
@@ -57,7 +57,7 @@ $theme: $bootstrap;
5757
outline: rem(2px) solid color(warn, 200);
5858
}
5959

60-
:host([variant='danger']) button,
60+
:host([variant='danger']) button:not([disabled]),
6161
:host([variant='danger']) button:focus,
6262
:host([variant='danger']) button:hover,
6363
:host([selected][variant='danger']) button:not([disabled]) {

0 commit comments

Comments
 (0)