@elastic/eui 116.3.1-snapshot.1782222821728 → 116.4.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.
Files changed (38) hide show
  1. package/es/components/date_picker/date_picker.js +1 -1
  2. package/es/components/form/field_password/field_password.styles.js +1 -1
  3. package/es/components/form/field_search/field_search.styles.js +1 -1
  4. package/es/components/form/form.styles.js +1 -1
  5. package/es/components/form/select/select.styles.js +1 -1
  6. package/es/components/form/text_area/text_area.styles.js +1 -1
  7. package/es/components/form/validatable_control/validatable_control.js +55 -8
  8. package/eui.d.ts +48 -54
  9. package/i18ntokens.json +970 -988
  10. package/lib/components/date_picker/date_picker.js +1 -1
  11. package/lib/components/form/field_password/field_password.styles.js +1 -1
  12. package/lib/components/form/field_search/field_search.styles.js +1 -1
  13. package/lib/components/form/form.styles.js +1 -1
  14. package/lib/components/form/select/select.styles.js +1 -1
  15. package/lib/components/form/text_area/text_area.styles.js +1 -1
  16. package/lib/components/form/validatable_control/validatable_control.js +52 -7
  17. package/optimize/es/components/date_picker/date_picker.js +1 -1
  18. package/optimize/es/components/form/field_password/field_password.styles.js +1 -1
  19. package/optimize/es/components/form/field_search/field_search.styles.js +1 -1
  20. package/optimize/es/components/form/form.styles.js +1 -1
  21. package/optimize/es/components/form/select/select.styles.js +1 -1
  22. package/optimize/es/components/form/text_area/text_area.styles.js +1 -1
  23. package/optimize/es/components/form/validatable_control/validatable_control.js +48 -7
  24. package/optimize/lib/components/date_picker/date_picker.js +1 -1
  25. package/optimize/lib/components/form/field_password/field_password.styles.js +1 -1
  26. package/optimize/lib/components/form/field_search/field_search.styles.js +1 -1
  27. package/optimize/lib/components/form/form.styles.js +1 -1
  28. package/optimize/lib/components/form/select/select.styles.js +1 -1
  29. package/optimize/lib/components/form/text_area/text_area.styles.js +1 -1
  30. package/optimize/lib/components/form/validatable_control/validatable_control.js +49 -6
  31. package/package.json +2 -3
  32. package/test-env/components/date_picker/date_picker.js +1 -1
  33. package/test-env/components/form/field_password/field_password.styles.js +1 -1
  34. package/test-env/components/form/field_search/field_search.styles.js +1 -1
  35. package/test-env/components/form/form.styles.js +1 -1
  36. package/test-env/components/form/select/select.styles.js +1 -1
  37. package/test-env/components/form/text_area/text_area.styles.js +1 -1
  38. package/test-env/components/form/validatable_control/validatable_control.js +48 -6
@@ -134,7 +134,7 @@ export var EuiDatePicker = function EuiDatePicker(_ref) {
134
134
  fullDateFormat = "".concat(dateFormat, " ").concat(timeFormat);
135
135
  }
136
136
 
137
- // Set an internal ref on ReactDatePicker's `input` so we can set its `aria-invalid` state via useEuiValidatableControl
137
+ // Set an internal ref on ReactDatePicker's `input` so we can set its :invalid state via useEuiValidatableControl
138
138
  var _useState = useState(null),
139
139
  _useState2 = _slicedToArray(_useState, 2),
140
140
  inputValidityRef = _useState2[0],
@@ -20,7 +20,7 @@ var _ref = process.env.NODE_ENV === "production" ? {
20
20
  export var euiFieldPasswordStyles = function euiFieldPasswordStyles(euiThemeContext) {
21
21
  var formStyles = euiFormControlStyles(euiThemeContext);
22
22
  return {
23
- euiFieldPassword: /*#__PURE__*/css(formStyles.shared, " &:is(:invalid, [aria-invalid='true']){", formStyles.invalid, ";}&:focus{", formStyles.focus, ";}&:disabled{", formStyles.disabled, ";}&[readOnly]{", formStyles.readOnly, ";}&:autofill{", formStyles.autoFill, ";};label:euiFieldPassword;"),
23
+ euiFieldPassword: /*#__PURE__*/css(formStyles.shared, " &:invalid{", formStyles.invalid, ";}&:focus{", formStyles.focus, ";}&:disabled{", formStyles.disabled, ";}&[readOnly]{", formStyles.readOnly, ";}&:autofill{", formStyles.autoFill, ";};label:euiFieldPassword;"),
24
24
  // Only remove Edge's internal reveal button if we're providing a custom one
25
25
  // This pseudo-element is still supported in Chromium-based Edge.
26
26
  withToggle: _ref,
@@ -11,7 +11,7 @@ import { euiFormControlStyles } from '../form.styles';
11
11
  export var euiFieldSearchStyles = function euiFieldSearchStyles(euiThemeContext) {
12
12
  var formStyles = euiFormControlStyles(euiThemeContext);
13
13
  return {
14
- euiFieldSearch: /*#__PURE__*/css("-webkit-appearance:textfield;&::-webkit-search-decoration,&::-webkit-search-cancel-button{-webkit-appearance:none;}", formStyles.shared, " &:is(:invalid, [aria-invalid='true']){", formStyles.invalid, ";}&:focus{", formStyles.focus, ";}&:disabled{", formStyles.disabled, ";}&[readOnly]{", formStyles.readOnly, ";}&:autofill{", formStyles.autoFill, ";};label:euiFieldSearch;"),
14
+ euiFieldSearch: /*#__PURE__*/css("-webkit-appearance:textfield;&::-webkit-search-decoration,&::-webkit-search-cancel-button{-webkit-appearance:none;}", formStyles.shared, " &:invalid{", formStyles.invalid, ";}&:focus{", formStyles.focus, ";}&:disabled{", formStyles.disabled, ";}&[readOnly]{", formStyles.readOnly, ";}&:autofill{", formStyles.autoFill, ";};label:euiFieldSearch;"),
15
15
  // Skip the css() on the default height to avoid generating a className
16
16
  uncompressed: formStyles.uncompressed,
17
17
  compressed: /*#__PURE__*/css(formStyles.compressed, ";label:compressed;"),
@@ -208,7 +208,7 @@ export var euiFormControlAutoFillStyles = function euiFormControlAutoFillStyles(
208
208
  var borderShadow = "inset 0 0 0 var(--euiFormControlStateAutofillWidth) var(--euiFormControlStateAutofillColor), ".concat(backgroundShadow);
209
209
 
210
210
  // These styles only apply/override Chrome/webkit browsers - Firefox does not set autofill styles
211
- return "\n &:where(:-webkit-autofill) {\n --euiFormControlStateAutofillWidth: ".concat(euiTheme.border.width.thin, ";\n --euiFormControlStateAutofillColor: ").concat(borderColor, ";\n \n -webkit-text-fill-color: ").concat(textColor, ";\n -webkit-box-shadow: ").concat(borderShadow, ";\n \n\n &:hover {\n --euiFormControlStateAutofillColor: ").concat(borderHovered, ";\n }\n\n &:focus {\n --euiFormControlStateAutofillWidth: ").concat(euiTheme.border.width.thick, ";\n }\n\n &:is(:invalid, [aria-invalid='true']) {\n --euiFormControlStateAutofillColor: ").concat(borderInvalid, ";\n\n &:hover {\n --euiFormControlStateAutofillColor: ").concat(borderInvalidHovered, ";\n }\n }\n }\n ");
211
+ return "\n &:where(:-webkit-autofill) {\n --euiFormControlStateAutofillWidth: ".concat(euiTheme.border.width.thin, ";\n --euiFormControlStateAutofillColor: ").concat(borderColor, ";\n \n -webkit-text-fill-color: ").concat(textColor, ";\n -webkit-box-shadow: ").concat(borderShadow, ";\n \n\n &:hover {\n --euiFormControlStateAutofillColor: ").concat(borderHovered, ";\n }\n\n &:focus {\n --euiFormControlStateAutofillWidth: ").concat(euiTheme.border.width.thick, ";\n }\n\n &:invalid {\n --euiFormControlStateAutofillColor: ").concat(borderInvalid, ";\n\n &:hover {\n --euiFormControlStateAutofillColor: ").concat(borderInvalidHovered, ";\n }\n }\n }\n ");
212
212
  };
213
213
  export var euiFormControlAutofillUnsetStyles = "\n\n";
214
214
  export var euiFormControlShowBackgroundLine = function euiFormControlShowBackgroundLine(euiThemeContext, color) {
@@ -12,7 +12,7 @@ export var euiSelectStyles = function euiSelectStyles(euiThemeContext) {
12
12
  var formStyles = euiFormControlStyles(euiThemeContext);
13
13
  var formVariables = euiFormVariables(euiThemeContext);
14
14
  return {
15
- euiSelect: /*#__PURE__*/css("appearance:none;", formStyles.shared, " &:is(:invalid, [aria-invalid='true']){", formStyles.invalid, ";}&:focus{", formStyles.focus, ";}&:disabled{", formStyles.disabled, ";}&[readOnly]{", formStyles.readOnly, ";}&:autofill{", formStyles.autoFill, ";};label:euiSelect;"),
15
+ euiSelect: /*#__PURE__*/css("appearance:none;", formStyles.shared, " &:invalid{", formStyles.invalid, ";}&:focus{", formStyles.focus, ";}&:disabled{", formStyles.disabled, ";}&[readOnly]{", formStyles.readOnly, ";}&:autofill{", formStyles.autoFill, ";};label:euiSelect;"),
16
16
  // Skip the css() on the default height to avoid generating a className
17
17
  uncompressed: formStyles.uncompressed,
18
18
  compressed: /*#__PURE__*/css(formStyles.compressed, ";label:compressed;"),
@@ -47,7 +47,7 @@ export var euiTextAreaStyles = function euiTextAreaStyles(euiThemeContext) {
47
47
  var formStyles = euiFormControlStyles(euiThemeContext);
48
48
  var formVars = euiFormVariables(euiThemeContext);
49
49
  return {
50
- euiTextArea: /*#__PURE__*/css(formStyles.shared, "line-height:", euiTheme.font.lineHeightMultiplier, ";/* <textarea>s default to 'inline-block', which causes an extra 2-3px of\n * unnecessary height within its parent 'block' form control wrapper.\n * @see https://stackoverflow.com/a/27536461/4294462 */display:block;&:is(:invalid, [aria-invalid='true']){", formStyles.invalid, ";}&:focus{", formStyles.focus, ";}&:disabled{", formStyles.disabled, ";}&[readOnly]{", formStyles.readOnly, ";}&:autofill{", formStyles.autoFill, ";};label:euiTextArea;"),
50
+ euiTextArea: /*#__PURE__*/css(formStyles.shared, "line-height:", euiTheme.font.lineHeightMultiplier, ";/* <textarea>s default to 'inline-block', which causes an extra 2-3px of\n * unnecessary height within its parent 'block' form control wrapper.\n * @see https://stackoverflow.com/a/27536461/4294462 */display:block;&:invalid{", formStyles.invalid, ";}&:focus{", formStyles.focus, ";}&:disabled{", formStyles.disabled, ";}&[readOnly]{", formStyles.readOnly, ";}&:autofill{", formStyles.autoFill, ";};label:euiTextArea;"),
51
51
  resize: {
52
52
  vertical: _ref4,
53
53
  horizontal: _ref3,
@@ -1,3 +1,9 @@
1
+ function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
2
+ function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
3
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
4
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
5
+ function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
6
+ function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
1
7
  /*
2
8
  * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
3
9
  * or more contributor license agreements. Licensed under the Elastic License
@@ -6,24 +12,43 @@
6
12
  * Side Public License, v 1.
7
13
  */
8
14
 
9
- import { Children, cloneElement, useEffect } from 'react';
15
+ import { Children, cloneElement, useState, useEffect, useCallback } from 'react';
16
+ import PropTypes from "prop-types";
17
+ function isMutableRef(ref) {
18
+ return ref != null && ref.hasOwnProperty('current');
19
+ }
10
20
 
11
21
  /**
12
22
  * The `EuiValidatableControl` component should be used in scenarios where
13
23
  * we can render the validated `<input>` as its direct child.
14
- *
15
- * It flags the underlying control as invalid via `aria-invalid`, which EUI form
16
- * controls use to render their invalid styling. Note that it intentionally does
17
- * *not* hook into the native constraint validation API (`setCustomValidity`) -
18
- * `isInvalid` is a presentational prop, and tying it to native validity would
19
- * block native form submission and surface a non-localized native error tooltip.
20
24
  */
21
- import PropTypes from "prop-types";
25
+
22
26
  export var EuiValidatableControl = function EuiValidatableControl(_ref) {
23
27
  var isInvalid = _ref.isInvalid,
24
28
  children = _ref.children;
29
+ // Note that this must be state and not a ref to cause a rerender/set invalid state on initial mount
30
+ var _useState = useState(null),
31
+ _useState2 = _slicedToArray(_useState, 2),
32
+ control = _useState2[0],
33
+ setControl = _useState2[1];
25
34
  var child = Children.only(children);
35
+ var childRef = child.ref;
36
+ var replacedRef = useCallback(function (element) {
37
+ setControl(element);
38
+
39
+ // Call the original ref, if any
40
+ if (typeof childRef === 'function') {
41
+ childRef(element);
42
+ } else if (isMutableRef(childRef)) {
43
+ childRef.current = element;
44
+ }
45
+ }, [childRef]);
46
+ useSetControlValidity({
47
+ controlEl: control,
48
+ isInvalid: isInvalid
49
+ });
26
50
  return /*#__PURE__*/cloneElement(child, {
51
+ ref: replacedRef,
27
52
  'aria-invalid': isInvalid || child.props['aria-invalid']
28
53
  });
29
54
  };
@@ -46,6 +71,10 @@ EuiValidatableControl.propTypes = {
46
71
  export var useEuiValidatableControl = function useEuiValidatableControl(_ref2) {
47
72
  var isInvalid = _ref2.isInvalid,
48
73
  controlEl = _ref2.controlEl;
74
+ useSetControlValidity({
75
+ controlEl: controlEl,
76
+ isInvalid: isInvalid
77
+ });
49
78
  useEffect(function () {
50
79
  if (!controlEl) return;
51
80
  if (typeof isInvalid === 'boolean') {
@@ -54,4 +83,22 @@ export var useEuiValidatableControl = function useEuiValidatableControl(_ref2) {
54
83
  controlEl.removeAttribute('aria-invalid');
55
84
  }
56
85
  }, [isInvalid, controlEl]);
86
+ };
87
+
88
+ /**
89
+ * Internal `setCustomValidity` helper
90
+ */
91
+ var useSetControlValidity = function useSetControlValidity(_ref3) {
92
+ var controlEl = _ref3.controlEl,
93
+ isInvalid = _ref3.isInvalid;
94
+ useEffect(function () {
95
+ if (controlEl == null || typeof controlEl.setCustomValidity !== 'function') {
96
+ return;
97
+ }
98
+ if (isInvalid) {
99
+ controlEl.setCustomValidity('Invalid');
100
+ } else {
101
+ controlEl.setCustomValidity('');
102
+ }
103
+ }, [isInvalid, controlEl]);
57
104
  };
package/eui.d.ts CHANGED
@@ -11709,12 +11709,6 @@ declare module '@elastic/eui/src/components/form/validatable_control/validatable
11709
11709
  /**
11710
11710
  * The `EuiValidatableControl` component should be used in scenarios where
11711
11711
  * we can render the validated `<input>` as its direct child.
11712
- *
11713
- * It flags the underlying control as invalid via `aria-invalid`, which EUI form
11714
- * controls use to render their invalid styling. Note that it intentionally does
11715
- * *not* hook into the native constraint validation API (`setCustomValidity`) -
11716
- * `isInvalid` is a presentational prop, and tying it to native validity would
11717
- * block native form submission and surface a non-localized native error tooltip.
11718
11712
  */
11719
11713
  export interface EuiValidatableControlProps {
11720
11714
  isInvalid?: boolean;
@@ -38137,7 +38131,6 @@ declare module '@elastic/eui/src/services/container_query' {
38137
38131
  declare module '@elastic/eui' {
38138
38132
  export type EuiTokensObject = {
38139
38133
  "euiTreeView.listNavigationInstructions": any;
38140
- "euiIconTip.defaultAriaLabel": any;
38141
38134
  "euiTourStepIndicator.isActive": any;
38142
38135
  "euiTourStepIndicator.isComplete": any;
38143
38136
  "euiTourStepIndicator.isIncomplete": any;
@@ -38145,12 +38138,12 @@ declare module '@elastic/eui' {
38145
38138
  "euiTourFooter.endTour": any;
38146
38139
  "euiTourFooter.skipTour": any;
38147
38140
  "euiTourFooter.closeTour": any;
38141
+ "euiIconTip.defaultAriaLabel": any;
38148
38142
  "euiToast.dismissToast": any;
38149
38143
  "euiToast.newNotification": any;
38150
38144
  "euiGlobalToastList.clearAllToastsButtonAriaLabel": any;
38151
38145
  "euiGlobalToastList.clearAllToastsButtonDisplayText": any;
38152
38146
  "euiStat.loadingText": any;
38153
- "euiTableHeaderCell.titleTextWithDesc": any;
38154
38147
  "euiStepStrings.step": any;
38155
38148
  "euiStepStrings.simpleStep": any;
38156
38149
  "euiStepStrings.complete": any;
@@ -38167,9 +38160,10 @@ declare module '@elastic/eui' {
38167
38160
  "euiStepStrings.simpleLoading": any;
38168
38161
  "euiStepStrings.current": any;
38169
38162
  "euiStepStrings.simpleCurrent": any;
38170
- "euiSideNav.mobileToggleAriaLabel": any;
38163
+ "euiTableHeaderCell.titleTextWithDesc": any;
38171
38164
  "euiSkeletonLoading.loadedAriaText": any;
38172
38165
  "euiSkeletonLoading.loadingAriaText": any;
38166
+ "euiSideNav.mobileToggleAriaLabel": any;
38173
38167
  "euiSelectable.loadingOptions": any;
38174
38168
  "euiSelectable.noMatchingOptions": any;
38175
38169
  "euiSelectable.noAvailableOptions": any;
@@ -38179,10 +38173,10 @@ declare module '@elastic/eui' {
38179
38173
  "euiSearchBox.placeholder": any;
38180
38174
  "euiSearchBox.incrementalAriaLabel": any;
38181
38175
  "euiSearchBox.ariaLabel": any;
38182
- "euiProgress.valueText": any;
38183
38176
  "euiResizablePanel.toggleButtonAriaLabel": any;
38184
38177
  "euiResizableButton.horizontalResizerAriaLabel": any;
38185
38178
  "euiResizableButton.verticalResizerAriaLabel": any;
38179
+ "euiProgress.valueText": any;
38186
38180
  "euiPopover.screenReaderAnnouncement": any;
38187
38181
  "euiPaginationButtonArrow.firstPage": any;
38188
38182
  "euiPaginationButtonArrow.previousPage": any;
@@ -38200,8 +38194,6 @@ declare module '@elastic/eui' {
38200
38194
  "euiPagination.fromEndLabel": any;
38201
38195
  "euiMark.highlightStart": any;
38202
38196
  "euiMark.highlightEnd": any;
38203
- "euiModal.screenReaderModalDialog": any;
38204
- "euiModal.closeModal": any;
38205
38197
  "euiMarkdownEditorToolbar.editor": any;
38206
38198
  "euiMarkdownEditorToolbar.previewMarkdown": any;
38207
38199
  "euiMarkdownEditorHelpButton.mdSyntaxLink": any;
@@ -38218,6 +38210,8 @@ declare module '@elastic/eui' {
38218
38210
  "euiMarkdownEditorFooter.showSyntaxErrors": any;
38219
38211
  "euiMarkdownEditorFooter.errorsTitle": any;
38220
38212
  "euiLoadingStrings.ariaLabel": any;
38213
+ "euiModal.screenReaderModalDialog": any;
38214
+ "euiModal.closeModal": any;
38221
38215
  "euiExternalLinkIcon.newTarget.screenReaderOnlyText": any;
38222
38216
  "euiExternalLinkIcon.externalTarget.screenReaderOnlyText": any;
38223
38217
  "euiInlineEditForm.saveButtonAriaLabel": any;
@@ -38227,8 +38221,6 @@ declare module '@elastic/eui' {
38227
38221
  "euiImageButton.openFullScreen": any;
38228
38222
  "euiImageButton.closeFullScreen": any;
38229
38223
  "euiForm.addressFormErrors": any;
38230
- "euiFilterButton.filterBadgeActiveAriaLabel": any;
38231
- "euiFilterButton.filterBadgeAvailableAriaLabel": any;
38232
38224
  "euiFlyoutMenu.back": any;
38233
38225
  "euiFlyoutMenu.history": any;
38234
38226
  "euiFlyoutMenu.pagination.previous": any;
@@ -38238,13 +38230,14 @@ declare module '@elastic/eui' {
38238
38230
  "euiFlyout.screenReaderNoOverlayMaskDialog": any;
38239
38231
  "euiFlyout.screenReaderFocusTrapShards": any;
38240
38232
  "euiFlyoutCloseButton.ariaLabel": any;
38233
+ "euiFilterButton.filterBadgeActiveAriaLabel": any;
38234
+ "euiFilterButton.filterBadgeAvailableAriaLabel": any;
38241
38235
  "euiErrorBoundary.error": any;
38242
38236
  "euiDataGrid.ariaLabel": any;
38243
38237
  "euiDataGrid.ariaLabelledBy": any;
38244
38238
  "euiDataGrid.screenReaderNotice": any;
38245
38239
  "euiContextMenuPanelTitle.ariaLabel": any;
38246
38240
  "euiCollapsibleNavBeta.ariaLabel": any;
38247
- "euiComboBox.listboxAriaLabel": any;
38248
38241
  "euiSaturation.ariaLabel": any;
38249
38242
  "euiSaturation.roleDescription": any;
38250
38243
  "euiSaturation.screenReaderInstructions": any;
@@ -38261,19 +38254,20 @@ declare module '@elastic/eui' {
38261
38254
  "euiColorPicker.openLabel": any;
38262
38255
  "euiColorPicker.closeLabel": any;
38263
38256
  "euiColorPicker.ariaLabel": any;
38264
- "euiCallOut.dismissAriaLabel": any;
38257
+ "euiComboBox.listboxAriaLabel": any;
38265
38258
  "euiCodeBlockFullScreen.fullscreenCollapse": any;
38266
38259
  "euiCodeBlockFullScreen.fullscreenExpand": any;
38267
38260
  "euiCodeBlockFullScreen.ariaLabel": any;
38268
38261
  "euiCodeBlockCopy.copy": any;
38269
38262
  "euiCodeBlockAnnotations.ariaLabel": any;
38270
38263
  "euiCodeBlock.label": any;
38271
- "euiBreadcrumbs.nav.ariaLabel": any;
38272
- "euiBreadcrumb.collapsedBadge.ariaLabel": any;
38273
- "euiBreadcrumb.popoverAriaLabel": any;
38264
+ "euiCallOut.dismissAriaLabel": any;
38274
38265
  "euiBottomBar.screenReaderHeading": any;
38275
38266
  "euiBottomBar.customScreenReaderAnnouncement": any;
38276
38267
  "euiBottomBar.screenReaderAnnouncement": any;
38268
+ "euiBreadcrumbs.nav.ariaLabel": any;
38269
+ "euiBreadcrumb.collapsedBadge.ariaLabel": any;
38270
+ "euiBreadcrumb.popoverAriaLabel": any;
38277
38271
  "euiBanner.dismissAriaLabel": any;
38278
38272
  "euiCollapsedItemActions.allActionsTooltip": any;
38279
38273
  "euiCollapsedItemActions.allActions": any;
@@ -38308,8 +38302,6 @@ declare module '@elastic/eui' {
38308
38302
  "euiFieldValueSelectionFilter.buttonLabelHint": any;
38309
38303
  "euiPinnableListGroup.pinExtraActionLabel": any;
38310
38304
  "euiPinnableListGroup.pinnedExtraActionLabel": any;
38311
- "euiHeaderLinks.appNavigation": any;
38312
- "euiHeaderLinks.openNavigationMenu": any;
38313
38305
  "euiSuperSelect.screenReaderAnnouncement": any;
38314
38306
  "euiSuperSelect.ariaLabel": any;
38315
38307
  "euiRange.sliderScreenReaderInstructions": any;
@@ -38323,6 +38315,8 @@ declare module '@elastic/eui' {
38323
38315
  "euiFieldSearch.clearSearchButtonLabel": any;
38324
38316
  "euiFieldPassword.showPassword": any;
38325
38317
  "euiFieldPassword.maskPassword": any;
38318
+ "euiHeaderLinks.appNavigation": any;
38319
+ "euiHeaderLinks.openNavigationMenu": any;
38326
38320
  "euiFlyoutManaged.defaultTitle": any;
38327
38321
  "euiTimeWindowButtons.previousDescription": any;
38328
38322
  "euiTimeWindowButtons.nextDescription": any;
@@ -38334,6 +38328,11 @@ declare module '@elastic/eui' {
38334
38328
  "euiTimeWindowButtons.zoomInLabel": any;
38335
38329
  "euiTimeWindowButtons.zoomOutLabel": any;
38336
38330
  "euiTimeWindowButtons.nextLabel": any;
38331
+ "euiSuperUpdateButton.updatingButtonLabel": any;
38332
+ "euiSuperUpdateButton.updateButtonLabel": any;
38333
+ "euiSuperUpdateButton.refreshButtonLabel": any;
38334
+ "euiSuperUpdateButton.cannotUpdateTooltip": any;
38335
+ "euiSuperUpdateButton.clickToApplyTooltip": any;
38337
38336
  "euiTimeOptions.last": any;
38338
38337
  "euiTimeOptions.next": any;
38339
38338
  "euiTimeOptions.seconds": any;
@@ -38372,20 +38371,6 @@ declare module '@elastic/eui' {
38372
38371
  "euiTimeOptions.weekToDate": any;
38373
38372
  "euiTimeOptions.monthToDate": any;
38374
38373
  "euiTimeOptions.yearToDate": any;
38375
- "euiSuperUpdateButton.updatingButtonLabel": any;
38376
- "euiSuperUpdateButton.updateButtonLabel": any;
38377
- "euiSuperUpdateButton.refreshButtonLabel": any;
38378
- "euiSuperUpdateButton.cannotUpdateTooltip": any;
38379
- "euiSuperUpdateButton.clickToApplyTooltip": any;
38380
- "euiPrettyInterval.seconds": any;
38381
- "euiPrettyInterval.minutes": any;
38382
- "euiPrettyInterval.hours": any;
38383
- "euiPrettyInterval.days": any;
38384
- "euiPrettyInterval.secondsShorthand": any;
38385
- "euiPrettyInterval.minutesShorthand": any;
38386
- "euiPrettyInterval.hoursShorthand": any;
38387
- "euiPrettyInterval.daysShorthand": any;
38388
- "euiPrettyInterval.off": any;
38389
38374
  "euiPrettyDuration.lastDurationSeconds": any;
38390
38375
  "euiPrettyDuration.nextDurationSeconds": any;
38391
38376
  "euiPrettyDuration.lastDurationMinutes": any;
@@ -38410,6 +38395,15 @@ declare module '@elastic/eui' {
38410
38395
  "euiPrettyDuration.now": any;
38411
38396
  "euiPrettyDuration.invalid": any;
38412
38397
  "euiPrettyDuration.fallbackDuration": any;
38398
+ "euiPrettyInterval.seconds": any;
38399
+ "euiPrettyInterval.minutes": any;
38400
+ "euiPrettyInterval.hours": any;
38401
+ "euiPrettyInterval.days": any;
38402
+ "euiPrettyInterval.secondsShorthand": any;
38403
+ "euiPrettyInterval.minutesShorthand": any;
38404
+ "euiPrettyInterval.hoursShorthand": any;
38405
+ "euiPrettyInterval.daysShorthand": any;
38406
+ "euiPrettyInterval.off": any;
38413
38407
  "euiRefreshInterval.fullDescriptionOff": any;
38414
38408
  "euiRefreshInterval.fullDescriptionOn": any;
38415
38409
  "euiRefreshInterval.toggleLabel": any;
@@ -38419,6 +38413,8 @@ declare module '@elastic/eui' {
38419
38413
  "euiAutoRefresh.autoRefreshLabel": any;
38420
38414
  "euiAutoRefresh.buttonLabelOff": any;
38421
38415
  "euiAutoRefresh.buttonLabelOn": any;
38416
+ "euiDataGridPagination.detailedPaginationLabel": any;
38417
+ "euiDataGridPagination.paginationLabel": any;
38422
38418
  "euiDataGridSchema.booleanSortTextAsc": any;
38423
38419
  "euiDataGridSchema.booleanSortTextDesc": any;
38424
38420
  "euiDataGridSchema.currencySortTextAsc": any;
@@ -38429,8 +38425,6 @@ declare module '@elastic/eui' {
38429
38425
  "euiDataGridSchema.numberSortTextDesc": any;
38430
38426
  "euiDataGridSchema.jsonSortTextAsc": any;
38431
38427
  "euiDataGridSchema.jsonSortTextDesc": any;
38432
- "euiDataGridPagination.detailedPaginationLabel": any;
38433
- "euiDataGridPagination.paginationLabel": any;
38434
38428
  "euiKeyboardShortcuts.title": any;
38435
38429
  "euiKeyboardShortcuts.upArrowTitle": any;
38436
38430
  "euiKeyboardShortcuts.upArrowDescription": any;
@@ -38504,17 +38498,6 @@ declare module '@elastic/eui' {
38504
38498
  "euiCardSelect.unavailable": any;
38505
38499
  "euiCardSelect.select": any;
38506
38500
  "euiAccordionChildrenLoading.message": any;
38507
- "euiRecentlyUsed.legend": any;
38508
- "euiQuickSelectPopover.buttonLabel": any;
38509
- "euiQuickSelect.quickSelectTitle": any;
38510
- "euiQuickSelect.previousLabel": any;
38511
- "euiQuickSelect.nextLabel": any;
38512
- "euiQuickSelect.tenseLabel": any;
38513
- "euiQuickSelect.valueLabel": any;
38514
- "euiQuickSelect.unitLabel": any;
38515
- "euiQuickSelect.applyButton": any;
38516
- "euiQuickSelect.fullDescription": any;
38517
- "euiCommonlyUsedTimeRanges.legend": any;
38518
38501
  "euiRelativeTab.numberInputLabel": any;
38519
38502
  "euiRelativeTab.numberInputError": any;
38520
38503
  "euiRelativeTab.dateInputError": any;
@@ -38532,6 +38515,23 @@ declare module '@elastic/eui' {
38532
38515
  "euiDatePopoverButton.outdatedTitle": any;
38533
38516
  "euiAbsoluteTab.dateFormatButtonLabel": any;
38534
38517
  "euiAbsoluteTab.dateFormatError": any;
38518
+ "euiRecentlyUsed.legend": any;
38519
+ "euiQuickSelectPopover.buttonLabel": any;
38520
+ "euiQuickSelect.quickSelectTitle": any;
38521
+ "euiQuickSelect.previousLabel": any;
38522
+ "euiQuickSelect.nextLabel": any;
38523
+ "euiQuickSelect.tenseLabel": any;
38524
+ "euiQuickSelect.valueLabel": any;
38525
+ "euiQuickSelect.unitLabel": any;
38526
+ "euiQuickSelect.applyButton": any;
38527
+ "euiQuickSelect.fullDescription": any;
38528
+ "euiCommonlyUsedTimeRanges.legend": any;
38529
+ "euiDataGridCell.focusTrapExitPrompt": any;
38530
+ "euiDataGridCell.focusTrapEnterPrompt": any;
38531
+ "euiDataGridCell.focusTrapEnteredExitPrompt": any;
38532
+ "euiDataGridCellActions.expandButtonTitle": any;
38533
+ "euiDataGridCell.position": any;
38534
+ "euiDataGridCell.expansionEnterPrompt": any;
38535
38535
  "euiDataGridHeaderCell.sortedByAscendingSingle": any;
38536
38536
  "euiDataGridHeaderCell.sortedByDescendingSingle": any;
38537
38537
  "euiDataGridHeaderCell.sortedByAscendingFirst": any;
@@ -38546,12 +38546,6 @@ declare module '@elastic/eui' {
38546
38546
  "euiColumnActions.moveRight": any;
38547
38547
  "euiColumnActions.unsort": any;
38548
38548
  "euiColumnActions.sort": any;
38549
- "euiDataGridCell.focusTrapExitPrompt": any;
38550
- "euiDataGridCell.focusTrapEnterPrompt": any;
38551
- "euiDataGridCell.focusTrapEnteredExitPrompt": any;
38552
- "euiDataGridCellActions.expandButtonTitle": any;
38553
- "euiDataGridCell.position": any;
38554
- "euiDataGridCell.expansionEnterPrompt": any;
38555
38549
  "euiCollapsedNavButton.ariaLabelButtonIcon": any;
38556
38550
  }
38557
38551
  }