@carbon/ibm-products 1.44.0 → 1.45.0
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/index-full-carbon.css +2 -2
- package/css/index-full-carbon.min.css +1 -1
- package/css/index-full-carbon.min.css.map +1 -1
- package/css/index-without-carbon.css +2 -2
- package/css/index-without-carbon.min.css +1 -1
- package/css/index-without-carbon.min.css.map +1 -1
- package/css/index.css +2 -2
- package/css/index.min.css +1 -1
- package/css/index.min.css.map +1 -1
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +43 -11
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +47 -15
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/index.js +9 -1
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +34 -0
- package/es/components/Datagrid/utils/DatagridActions.js +4 -36
- package/es/components/Tearsheet/Tearsheet.js +4 -0
- package/es/components/Tearsheet/TearsheetNarrow.js +4 -0
- package/es/components/Tearsheet/TearsheetShell.js +1 -1
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +36 -4
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +40 -14
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/index.js +8 -1
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +41 -0
- package/lib/components/Datagrid/utils/DatagridActions.js +4 -36
- package/lib/components/Tearsheet/Tearsheet.js +4 -0
- package/lib/components/Tearsheet/TearsheetNarrow.js +4 -0
- package/lib/components/Tearsheet/TearsheetShell.js +1 -1
- package/package.json +2 -2
- package/scss/components/Datagrid/styles/_datagrid.scss +1 -1
- package/scss/components/Datagrid/styles/addons/_RowSizeDropdown.scss +1 -1
@@ -21374,7 +21374,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
21374
21374
|
padding-bottom: var(--cds-spacing-05, 1rem);
|
21375
21375
|
}
|
21376
21376
|
.c4p--datagrid__dense-header .c4p--datagrid__table-toolbar {
|
21377
|
-
flex:
|
21377
|
+
flex: 1 0 auto;
|
21378
21378
|
}
|
21379
21379
|
.c4p--datagrid__dense-header .bx--table-toolbar {
|
21380
21380
|
background: transparent;
|
@@ -21825,7 +21825,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
21825
21825
|
box-shadow: 1px 4px 8px -3px var(--cds-overlay-01, rgba(22, 22, 22, 0.5)), -1px 6px 8px -5px var(--cds-overlay-01, rgba(22, 22, 22, 0.5));
|
21826
21826
|
}
|
21827
21827
|
|
21828
|
-
.c4p--datagrid__row-size-button--open {
|
21828
|
+
.bx--btn--ghost.c4p--datagrid__row-size-button--open {
|
21829
21829
|
background-color: var(--cds-ui-background, #ffffff);
|
21830
21830
|
box-shadow: 1px 4px 8px -3px var(--cds-overlay-01, rgba(22, 22, 22, 0.5)), -1px 6px 8px -5px var(--cds-overlay-01, rgba(22, 22, 22, 0.5));
|
21831
21831
|
}
|