carbon-addons-iot-react 2.149.0-next.8 → 2.149.0-next.9
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 +19 -0
- package/css/carbon-addons-iot-react.css +6 -0
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/Card/Card.js +22 -7
- package/es/components/Table/Table.js +9 -2
- package/es/components/Table/TableViewDropdown/TableViewDropdown.js +25 -9
- package/es/components/Table/tableReducer.js +10 -2
- package/es/constants/CardPropTypes.js +5 -2
- package/lib/components/Card/Card.js +22 -7
- package/lib/components/Table/Table.js +9 -2
- package/lib/components/Table/TableViewDropdown/TableViewDropdown.js +25 -9
- package/lib/components/Table/tableReducer.js +10 -2
- package/lib/constants/CardPropTypes.js +5 -2
- package/lib/css/carbon-addons-iot-react.css +6 -0
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/scss/components/Card/_card.scss +6 -0
- package/package.json +2 -2
- package/scss/components/Card/_card.scss +6 -0
- package/umd/carbon-addons-iot-react.js +71 -22
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.9](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.0-next.8...v2.149.0-next.9) (2022-02-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **stateful-table:** fix multi-sort and advanced filters cooperatively ([c6c01ef](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c6c01ef1619dfc7acdf3c1e80c7ee8f4a302c2e1))
|
|
12
|
+
* **table:** maintain correct filtering when toggling multisort direction ([8b149aa](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/8b149aa739de2606fd7b7032c19c998d89d0407c))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **card:** add padding knob to custom card story ([0220544](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0220544f3034f2473789bd038a9162baa4af9370))
|
|
18
|
+
* **card:** add padding prop to card ([214c082](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/214c0827115d3f5c4fe6c0405fdd558205b56ca9))
|
|
19
|
+
* **tableviewdropdown:** add prop isHidingStandardActions ([b4e5990](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b4e59903317eea177908fd37806a00a5f0cd0484))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [2.149.0-next.8](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.0-next.7...v2.149.0-next.8) (2022-02-21)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package carbon-addons-iot-react
|
|
@@ -29879,6 +29879,12 @@ html[dir=rtl] .iot--card--header {
|
|
|
29879
29879
|
background-color: inherit;
|
|
29880
29880
|
}
|
|
29881
29881
|
|
|
29882
|
+
.iot--card__content--no-padding {
|
|
29883
|
+
padding-left: 0;
|
|
29884
|
+
padding-right: 0;
|
|
29885
|
+
padding-bottom: 0;
|
|
29886
|
+
}
|
|
29887
|
+
|
|
29882
29888
|
.iot--card--content--expanded {
|
|
29883
29889
|
overflow-y: auto;
|
|
29884
29890
|
}
|