carbon-addons-iot-react 5.10.7 → 5.10.10
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/css/carbon-addons-iot-react.css +9 -0
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/Table/TableToolbar/TableToolbar.js +85 -19
- package/es/hooks/useResponsiveInlineCount.js +249 -0
- package/lib/components/Table/TableToolbar/TableToolbar.js +86 -19
- package/lib/css/carbon-addons-iot-react.css +9 -0
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/hooks/useResponsiveInlineCount.js +255 -0
- package/lib/scss/components/Table/TableToolbar/_table-toolbar.scss +7 -0
- package/lib/scss/components/Table/_table.scss +5 -0
- package/package.json +1 -1
- package/scss/components/Table/TableToolbar/_table-toolbar.scss +7 -0
- package/scss/components/Table/_table.scss +5 -0
- package/umd/carbon-addons-iot-react.js +323 -19
|
@@ -35246,6 +35246,12 @@ div.cds--toolbar-action.cds--toolbar-search-container-expandable > div.cds--sear
|
|
|
35246
35246
|
|
|
35247
35247
|
.iot--table-batch-actions {
|
|
35248
35248
|
z-index: 3;
|
|
35249
|
+
min-width: 0;
|
|
35250
|
+
}
|
|
35251
|
+
.iot--table-batch-actions .cds--action-list {
|
|
35252
|
+
min-width: 0;
|
|
35253
|
+
flex: 1 1 auto;
|
|
35254
|
+
overflow: hidden;
|
|
35249
35255
|
}
|
|
35250
35256
|
.iot--table-batch-actions + .cds--toolbar-action {
|
|
35251
35257
|
padding: 0;
|
|
@@ -38626,6 +38632,9 @@ button.cds--btn.iot--tooltip-svg-wrapper.cds--btn--ghost.iot--table-toolbar__adv
|
|
|
38626
38632
|
.iot--expandable-tablerow td div .cds--btn--ghost:hover {
|
|
38627
38633
|
background: var(--cds-layer-accent-01, #e0e0e0);
|
|
38628
38634
|
}
|
|
38635
|
+
.iot--expandable-tablerow td div .cds--overflow-menu.cds--btn--ghost:hover {
|
|
38636
|
+
background-color: var(--cds-layer);
|
|
38637
|
+
}
|
|
38629
38638
|
|
|
38630
38639
|
.iot--expandable-tablerow--indented td.cds--table-expand {
|
|
38631
38640
|
position: relative;
|