carbon-addons-iot-react 2.149.0-next.2 → 2.149.0-next.6
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 +43 -0
- package/css/carbon-addons-iot-react.css +9 -0
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/Card/Card.js +3 -2
- package/es/components/List/HierarchyList/HierarchyList.js +7 -4
- package/es/components/List/List.js +21 -4
- package/es/components/List/ListContent/ListContent.js +49 -3
- package/es/components/List/ListItem/ListItem.js +1 -1
- package/es/components/ProgressBar/ProgressBar.js +20 -5
- package/es/hooks/useHasTextOverflow.js +11 -2
- package/lib/components/Card/Card.js +3 -2
- package/lib/components/List/HierarchyList/HierarchyList.js +7 -4
- package/lib/components/List/List.js +21 -4
- package/lib/components/List/ListContent/ListContent.js +49 -3
- package/lib/components/List/ListItem/ListItem.js +1 -1
- package/lib/components/ProgressBar/ProgressBar.js +20 -5
- package/lib/css/carbon-addons-iot-react.css +9 -0
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/hooks/useHasTextOverflow.js +11 -2
- package/lib/scss/components/List/ListItem/_list-item.scss +11 -0
- package/package.json +2 -2
- package/scss/components/List/ListItem/_list-item.scss +11 -0
- package/umd/carbon-addons-iot-react.js +109 -21
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,49 @@
|
|
|
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.149.0-next.6](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.0-next.5...v2.149.0-next.6) (2022-02-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **card:** fix overflow tooltip for card ([68611c4](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/68611c412345ccfe29861fef1dfa17eeb9e32aed))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **hierarchy-list:** call onExpandedChange after rows are expanded ([f6811a8](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f6811a89909d0de4df663883924429e6f4242b38))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [2.149.0-next.5](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.0-next.4...v2.149.0-next.5) (2022-02-16)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# [2.149.0-next.4](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.0-next.3...v2.149.0-next.4) (2022-02-16)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Features
|
|
34
|
+
|
|
35
|
+
* **status-bar:** add className prop ([7e4aaf6](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7e4aaf6b18f92d587db0f5ef2339c5a3c6113c8a))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
# [2.149.0-next.3](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.0-next.2...v2.149.0-next.3) (2022-02-16)
|
|
42
|
+
|
|
43
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
6
49
|
# [2.149.0-next.2](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.0-next.1...v2.149.0-next.2) (2022-02-15)
|
|
7
50
|
|
|
8
51
|
|
|
@@ -32820,6 +32820,12 @@ html[dir=rtl] .iot--list-builder__reset-button .bx--btn__icon {
|
|
|
32820
32820
|
position: absolute;
|
|
32821
32821
|
align-items: stretch;
|
|
32822
32822
|
}
|
|
32823
|
+
.iot--list-item-editable--drop-targets.iot--list-item__large {
|
|
32824
|
+
margin-left: -1rem;
|
|
32825
|
+
}
|
|
32826
|
+
[dir=rtl] .iot--list-item-editable--drop-targets.iot--list-item__large {
|
|
32827
|
+
margin-right: -1rem;
|
|
32828
|
+
}
|
|
32823
32829
|
.iot--list-item-editable--drop-target-above {
|
|
32824
32830
|
position: relative;
|
|
32825
32831
|
width: 100%;
|
|
@@ -32827,6 +32833,9 @@ html[dir=rtl] .iot--list-builder__reset-button .bx--btn__icon {
|
|
|
32827
32833
|
}
|
|
32828
32834
|
.iot--list-item-editable--drop-target-above__over {
|
|
32829
32835
|
border-top: solid 2px #0f62fe;
|
|
32836
|
+
position: absolute;
|
|
32837
|
+
width: calc(100% + 2rem);
|
|
32838
|
+
top: 0;
|
|
32830
32839
|
}
|
|
32831
32840
|
.iot--list-item-editable--drop-target-nested {
|
|
32832
32841
|
position: absolute;
|