carbon-addons-iot-react 2.146.3 → 2.146.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/css/carbon-addons-iot-react.css +11 -1
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/css/carbon-addons-iot-react.css +11 -1
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/scss/components/ValueCard/_attribute.scss +5 -0
- package/lib/scss/components/ValueCard/_value-renderer.scss +6 -1
- package/package.json +2 -2
- package/scss/components/ValueCard/_attribute.scss +5 -0
- package/scss/components/ValueCard/_value-renderer.scss +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.146.4](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.3...v2.146.4) (2021-10-04)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **page-title-bar:** cypress test ([68ff44a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/68ff44a047598217d7d148418c424bc5e156ae38))
|
|
12
|
+
* **value-card:** fix button overflow in narrow cards ([b8ade34](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b8ade34e93f4a353cabb243736b59cb294a0bcbd))
|
|
13
|
+
* **value-card:** fix unit position in certain situations ([f71446b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f71446b8455381a75ac6f8baa24e57cd2d8e1a43))
|
|
14
|
+
* **value-card:** fix unit positioning better ([125b4d1](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/125b4d1bdfca0977d0fcd56199bc183348765f53))
|
|
15
|
+
* **value-card:** rtl rendering of units/buttons ([757a943](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/757a94399eaf6ab2fd7dcdf64c8a84f4fa1be743))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
6
21
|
## [2.146.3](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.2...v2.146.3) (2021-10-01)
|
|
7
22
|
|
|
8
23
|
|
|
@@ -33402,6 +33402,11 @@ html[dir=rtl] .iot--time-picker__wrapper .iot--time-picker__controls {
|
|
|
33402
33402
|
color: var(--secondary-value-color);
|
|
33403
33403
|
}
|
|
33404
33404
|
|
|
33405
|
+
html[dir=rtl] .iot--value-card__attribute {
|
|
33406
|
+
padding-right: 0;
|
|
33407
|
+
padding-left: 1rem;
|
|
33408
|
+
}
|
|
33409
|
+
|
|
33405
33410
|
.iot--value-card__attribute-unit {
|
|
33406
33411
|
font-size: 1.25rem;
|
|
33407
33412
|
font-weight: 400;
|
|
@@ -33417,7 +33422,8 @@ html[dir=rtl] .iot--time-picker__wrapper .iot--time-picker__controls {
|
|
|
33417
33422
|
display: flex;
|
|
33418
33423
|
}
|
|
33419
33424
|
.iot--value-card__attribute-wrapper--horizontal .iot--value-card__value-renderer--wrapper {
|
|
33420
|
-
width:
|
|
33425
|
+
width: auto;
|
|
33426
|
+
max-width: 100%;
|
|
33421
33427
|
}
|
|
33422
33428
|
.iot--value-card__content-wrapper--vertical .iot--value-card__value-renderer--wrapper {
|
|
33423
33429
|
overflow: hidden;
|
|
@@ -33454,6 +33460,10 @@ html[dir=rtl] .iot--time-picker__wrapper .iot--time-picker__controls {
|
|
|
33454
33460
|
text-transform: capitalize;
|
|
33455
33461
|
}
|
|
33456
33462
|
|
|
33463
|
+
html[dir=rtl] .iot--value-card__value-renderer--value.iot--btn {
|
|
33464
|
+
padding: 0.125rem;
|
|
33465
|
+
}
|
|
33466
|
+
|
|
33457
33467
|
.iot--wizard-inline__header {
|
|
33458
33468
|
font-size: 1.25rem;
|
|
33459
33469
|
font-weight: 400;
|