@elastic/eui 88.4.0 → 88.4.1
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 +7 -0
- package/dist/eui_theme_dark.min.css +1 -1
- package/dist/eui_theme_light.css +7 -0
- package/dist/eui_theme_light.min.css +1 -1
- package/es/components/combo_box/combo_box_options_list/combo_box_options_list.js +11 -6
- package/es/components/text_truncate/text_truncate.js +12 -6
- package/es/components/text_truncate/text_truncate.styles.js +10 -10
- package/eui.d.ts +3 -3
- package/i18ntokens.json +28 -28
- package/lib/components/combo_box/combo_box_options_list/combo_box_options_list.js +11 -6
- package/lib/components/text_truncate/text_truncate.js +10 -4
- package/lib/components/text_truncate/text_truncate.styles.js +10 -10
- package/optimize/es/components/combo_box/combo_box_options_list/combo_box_options_list.js +11 -6
- package/optimize/es/components/text_truncate/text_truncate.js +12 -6
- package/optimize/es/components/text_truncate/text_truncate.styles.js +10 -10
- package/optimize/lib/components/combo_box/combo_box_options_list/combo_box_options_list.js +11 -6
- package/optimize/lib/components/text_truncate/text_truncate.js +10 -4
- package/optimize/lib/components/text_truncate/text_truncate.styles.js +10 -10
- package/package.json +1 -1
- package/src/components/combo_box/combo_box_options_list/_combo_box_options_list.scss +8 -0
- package/test-env/components/combo_box/combo_box_options_list/combo_box_options_list.js +11 -6
- package/test-env/components/text_truncate/text_truncate.js +10 -4
- package/test-env/components/text_truncate/text_truncate.styles.js +10 -10
package/dist/eui_theme_dark.css
CHANGED
|
@@ -1477,10 +1477,17 @@ The following files still use the Sass version:
|
|
|
1477
1477
|
-webkit-transform: none !important;
|
|
1478
1478
|
transform: none !important;
|
|
1479
1479
|
top: 0;
|
|
1480
|
+
/* Kibana FTR affordance - without this, Selenium complains about the overlaid
|
|
1481
|
+
text intercepting the button click. Since `title` is always present, and
|
|
1482
|
+
users can't highlight or copy combobox options anyway, we might as well
|
|
1483
|
+
disable clicks on text */
|
|
1480
1484
|
}
|
|
1481
1485
|
.euiComboBoxOptionsList .euiFilterSelectItem__content {
|
|
1482
1486
|
margin-block: 0 !important;
|
|
1483
1487
|
}
|
|
1488
|
+
.euiComboBoxOptionsList .euiTextTruncate {
|
|
1489
|
+
pointer-events: none;
|
|
1490
|
+
}
|
|
1484
1491
|
|
|
1485
1492
|
.euiComboBoxOptionsList__empty {
|
|
1486
1493
|
overflow-wrap: break-word !important;
|