carbon-addons-iot-react 2.147.0 → 2.147.3
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 +38 -0
- package/css/carbon-addons-iot-react.css +2 -0
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/Header/HeaderAction/HeaderActionPanel.js +7 -1
- package/es/components/Header/HeaderActionGroup.js +1 -1
- package/es/components/SideNav/SideNav.js +5 -0
- package/es/components/SuiteHeader/SuiteHeader.js +6 -2
- package/es/components/SuiteHeader/SuiteHeaderAppSwitcher/SuiteHeaderAppSwitcher.js +24 -6
- package/es/components/Table/TableToolbar/TableToolbar.js +13 -21
- package/es/components/Table/tableUtilities.js +5 -1
- package/es/hooks/useDynamicOverflowMenuItems.js +2 -1
- package/lib/components/Header/HeaderAction/HeaderActionPanel.js +7 -1
- package/lib/components/Header/HeaderActionGroup.js +1 -1
- package/lib/components/SideNav/SideNav.js +5 -0
- package/lib/components/SuiteHeader/SuiteHeader.js +6 -2
- package/lib/components/SuiteHeader/SuiteHeaderAppSwitcher/SuiteHeaderAppSwitcher.js +24 -6
- package/lib/components/Table/TableToolbar/TableToolbar.js +13 -21
- package/lib/components/Table/tableUtilities.js +5 -1
- package/lib/css/carbon-addons-iot-react.css +2 -0
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/hooks/useDynamicOverflowMenuItems.js +2 -1
- package/lib/scss/components/Table/TableToolbar/_table-toolbar.scss +2 -0
- package/package.json +2 -2
- package/scss/components/Table/TableToolbar/_table-toolbar.scss +2 -0
- package/umd/carbon-addons-iot-react.js +80 -51
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,44 @@
|
|
|
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.147.3](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.2...v2.147.3) (2022-01-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **suite-header:** do not allow tabbing to closed app switcher panel ([7ac17ba](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7ac17ba151eee24a3f71df0679e69cacf5287f58))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [2.147.2](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.1...v2.147.2) (2022-01-26)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **side-nav:** attempted fix to override carbon ([70baffd](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/70baffd1199cfcbe8f6bea015cfaa08036e5f3ca))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## [2.147.1](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.148.0-next.6...v2.147.1) (2022-01-24)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* **table:** adjust toolbar tests for new output ([aec9723](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/aec97237846d50ead5ae4a2b4db76809c13f1a34))
|
|
34
|
+
* **table:** truncate long text in table toolbar actions overflow ([2c90d0e](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/2c90d0e0346876910cc68bbc9ac9803bf94d9fdc))
|
|
35
|
+
* **table:** update vrt snapshot ([ed814cf](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ed814cfa5cffad6bf461fb5c09a549424216192f))
|
|
36
|
+
* **table-toolbar:** adjust text truncation, again ([b5f465a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b5f465ab410cf3589990a59153105762c1f0a35a))
|
|
37
|
+
* adjust tests to handle truncation changes ([40211c5](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/40211c5a80318490bf802e5bb7787e8df7a34bf8))
|
|
38
|
+
* **table-toolbar:** hide overflow actions menu if all actions hidden ([9432504](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/94325048e1fdd6d617aadc1e46803b6396589069))
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
6
44
|
# [2.147.0](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.91...v2.147.0) (2022-01-12)
|
|
7
45
|
|
|
8
46
|
**Note:** Version bump only for package carbon-addons-iot-react
|
|
@@ -35757,12 +35757,14 @@ html[dir=rtl] .iot--table-batch-actions .bx--btn--primary.bx--batch-summary__can
|
|
|
35757
35757
|
display: flex;
|
|
35758
35758
|
align-items: center;
|
|
35759
35759
|
text-align: left;
|
|
35760
|
+
min-width: 0;
|
|
35760
35761
|
}
|
|
35761
35762
|
[dir=rtl] .iot--table-toolbar-aggregations__overflow-menu-content {
|
|
35762
35763
|
text-align: right;
|
|
35763
35764
|
}
|
|
35764
35765
|
.iot--table-toolbar-aggregations__overflow-menu-content svg {
|
|
35765
35766
|
margin-right: 0.5rem;
|
|
35767
|
+
flex-shrink: 0;
|
|
35766
35768
|
}
|
|
35767
35769
|
[dir=rtl] .iot--table-toolbar-aggregations__overflow-menu-content svg {
|
|
35768
35770
|
margin-right: 0;
|