@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.
Files changed (23) hide show
  1. package/dist/eui_theme_dark.css +7 -0
  2. package/dist/eui_theme_dark.min.css +1 -1
  3. package/dist/eui_theme_light.css +7 -0
  4. package/dist/eui_theme_light.min.css +1 -1
  5. package/es/components/combo_box/combo_box_options_list/combo_box_options_list.js +11 -6
  6. package/es/components/text_truncate/text_truncate.js +12 -6
  7. package/es/components/text_truncate/text_truncate.styles.js +10 -10
  8. package/eui.d.ts +3 -3
  9. package/i18ntokens.json +28 -28
  10. package/lib/components/combo_box/combo_box_options_list/combo_box_options_list.js +11 -6
  11. package/lib/components/text_truncate/text_truncate.js +10 -4
  12. package/lib/components/text_truncate/text_truncate.styles.js +10 -10
  13. package/optimize/es/components/combo_box/combo_box_options_list/combo_box_options_list.js +11 -6
  14. package/optimize/es/components/text_truncate/text_truncate.js +12 -6
  15. package/optimize/es/components/text_truncate/text_truncate.styles.js +10 -10
  16. package/optimize/lib/components/combo_box/combo_box_options_list/combo_box_options_list.js +11 -6
  17. package/optimize/lib/components/text_truncate/text_truncate.js +10 -4
  18. package/optimize/lib/components/text_truncate/text_truncate.styles.js +10 -10
  19. package/package.json +1 -1
  20. package/src/components/combo_box/combo_box_options_list/_combo_box_options_list.scss +8 -0
  21. package/test-env/components/combo_box/combo_box_options_list/combo_box_options_list.js +11 -6
  22. package/test-env/components/text_truncate/text_truncate.js +10 -4
  23. package/test-env/components/text_truncate/text_truncate.styles.js +10 -10
@@ -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;