@elastic/eui 77.1.3 → 77.1.5
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/dist/eui_theme_dark.css +14 -13
- package/dist/eui_theme_dark.min.css +1 -1
- package/dist/eui_theme_light.css +14 -13
- package/dist/eui_theme_light.min.css +1 -1
- package/es/components/code/code_block_annotations.js +13 -4
- package/es/components/code/code_block_copy.js +14 -2
- package/es/components/code/code_block_line.styles.js +1 -1
- package/es/components/code/utils.js +29 -17
- package/es/components/datagrid/body/data_grid_cell.js +7 -2
- package/eui.d.ts +19 -3
- package/i18ntokens.json +12 -12
- package/lib/components/code/code_block_annotations.js +13 -4
- package/lib/components/code/code_block_copy.js +14 -2
- package/lib/components/code/code_block_line.styles.js +1 -1
- package/lib/components/code/utils.js +32 -18
- package/lib/components/datagrid/body/data_grid_cell.js +7 -2
- package/optimize/es/components/code/code_block_annotations.js +8 -4
- package/optimize/es/components/code/code_block_copy.js +14 -2
- package/optimize/es/components/code/code_block_line.styles.js +1 -1
- package/optimize/es/components/code/utils.js +29 -17
- package/optimize/es/components/datagrid/body/data_grid_cell.js +6 -2
- package/optimize/lib/components/code/code_block_annotations.js +8 -12
- package/optimize/lib/components/code/code_block_copy.js +14 -2
- package/optimize/lib/components/code/code_block_line.styles.js +1 -1
- package/optimize/lib/components/code/utils.js +32 -18
- package/optimize/lib/components/datagrid/body/data_grid_cell.js +6 -2
- package/package.json +1 -1
- package/src/components/table/_table.scss +7 -9
- package/test-env/components/code/code_block_annotations.js +12 -12
- package/test-env/components/code/code_block_copy.js +14 -2
- package/test-env/components/code/code_block_line.styles.js +1 -1
- package/test-env/components/code/utils.js +32 -18
- package/test-env/components/datagrid/body/data_grid_cell.js +7 -2
package/dist/eui_theme_dark.css
CHANGED
|
@@ -9799,32 +9799,33 @@ button.euiSuggestItem:hover .euiSuggestItem__label, button.euiSuggestItem:focus
|
|
|
9799
9799
|
}
|
|
9800
9800
|
|
|
9801
9801
|
.euiTableRow-isExpandedRow .euiTableCellContent {
|
|
9802
|
-
|
|
9803
|
-
|
|
9804
|
-
animation: 250ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal forwards growExpandedRow;
|
|
9802
|
+
-webkit-animation: 150ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal none growExpandedRow;
|
|
9803
|
+
animation: 150ms cubic-bezier(0.694, 0.0482, 0.335, 1) 1 normal none growExpandedRow;
|
|
9805
9804
|
}
|
|
9806
9805
|
|
|
9807
9806
|
@-webkit-keyframes growExpandedRow {
|
|
9808
9807
|
0% {
|
|
9809
|
-
|
|
9810
|
-
|
|
9811
|
-
|
|
9812
|
-
max-height: 100vh;
|
|
9808
|
+
opacity: 0;
|
|
9809
|
+
-webkit-transform: translateY(-12px);
|
|
9810
|
+
transform: translateY(-12px);
|
|
9813
9811
|
}
|
|
9814
9812
|
100% {
|
|
9815
|
-
|
|
9813
|
+
opacity: 1;
|
|
9814
|
+
-webkit-transform: translateY(0);
|
|
9815
|
+
transform: translateY(0);
|
|
9816
9816
|
}
|
|
9817
9817
|
}
|
|
9818
9818
|
|
|
9819
9819
|
@keyframes growExpandedRow {
|
|
9820
9820
|
0% {
|
|
9821
|
-
|
|
9822
|
-
|
|
9823
|
-
|
|
9824
|
-
max-height: 100vh;
|
|
9821
|
+
opacity: 0;
|
|
9822
|
+
-webkit-transform: translateY(-12px);
|
|
9823
|
+
transform: translateY(-12px);
|
|
9825
9824
|
}
|
|
9826
9825
|
100% {
|
|
9827
|
-
|
|
9826
|
+
opacity: 1;
|
|
9827
|
+
-webkit-transform: translateY(0);
|
|
9828
|
+
transform: translateY(0);
|
|
9828
9829
|
}
|
|
9829
9830
|
}
|
|
9830
9831
|
.euiTableRowCell__mobileHeader {
|