@elastic/eui 106.1.0 → 106.2.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 (67) hide show
  1. package/es/components/call_out/call_out.js +2 -1
  2. package/es/components/card/checkable_card/checkable_card.js +30 -5
  3. package/es/components/code/code_block.js +5 -2
  4. package/es/components/code/code_block_virtualized.js +5 -3
  5. package/es/components/markdown_editor/index.js +1 -0
  6. package/es/components/markdown_editor/markdown_editor.js +15 -4
  7. package/es/components/markdown_editor/markdown_editor_drop_zone.js +5 -3
  8. package/es/components/markdown_editor/markdown_editor_footer.js +12 -120
  9. package/es/components/markdown_editor/markdown_editor_footer.styles.js +0 -2
  10. package/es/components/markdown_editor/markdown_editor_help_button.js +144 -0
  11. package/es/components/markdown_editor/markdown_editor_help_button.styles.js +16 -0
  12. package/es/components/markdown_editor/markdown_editor_toolbar.js +28 -23
  13. package/es/components/popover/popover.js +2 -1
  14. package/eui.d.ts +84 -52
  15. package/i18ntokens.json +624 -624
  16. package/lib/components/call_out/call_out.js +3 -2
  17. package/lib/components/card/checkable_card/checkable_card.js +29 -4
  18. package/lib/components/code/code_block.js +5 -2
  19. package/lib/components/code/code_block_virtualized.js +5 -3
  20. package/lib/components/markdown_editor/index.js +7 -0
  21. package/lib/components/markdown_editor/markdown_editor.js +15 -4
  22. package/lib/components/markdown_editor/markdown_editor_drop_zone.js +5 -3
  23. package/lib/components/markdown_editor/markdown_editor_footer.js +10 -117
  24. package/lib/components/markdown_editor/markdown_editor_footer.styles.js +0 -2
  25. package/lib/components/markdown_editor/markdown_editor_help_button.js +151 -0
  26. package/lib/components/markdown_editor/markdown_editor_help_button.styles.js +22 -0
  27. package/lib/components/markdown_editor/markdown_editor_toolbar.js +28 -23
  28. package/lib/components/popover/popover.js +2 -1
  29. package/optimize/es/components/call_out/call_out.js +1 -0
  30. package/optimize/es/components/card/checkable_card/checkable_card.js +25 -5
  31. package/optimize/es/components/code/code_block.js +5 -2
  32. package/optimize/es/components/code/code_block_virtualized.js +5 -3
  33. package/optimize/es/components/markdown_editor/index.js +1 -0
  34. package/optimize/es/components/markdown_editor/markdown_editor.js +7 -3
  35. package/optimize/es/components/markdown_editor/markdown_editor_drop_zone.js +3 -2
  36. package/optimize/es/components/markdown_editor/markdown_editor_footer.js +12 -120
  37. package/optimize/es/components/markdown_editor/markdown_editor_footer.styles.js +0 -2
  38. package/optimize/es/components/markdown_editor/markdown_editor_help_button.js +139 -0
  39. package/optimize/es/components/markdown_editor/markdown_editor_help_button.styles.js +16 -0
  40. package/optimize/es/components/markdown_editor/markdown_editor_toolbar.js +20 -16
  41. package/optimize/es/components/popover/popover.js +2 -1
  42. package/optimize/lib/components/call_out/call_out.js +2 -1
  43. package/optimize/lib/components/card/checkable_card/checkable_card.js +24 -4
  44. package/optimize/lib/components/code/code_block.js +5 -2
  45. package/optimize/lib/components/code/code_block_virtualized.js +5 -3
  46. package/optimize/lib/components/markdown_editor/index.js +7 -0
  47. package/optimize/lib/components/markdown_editor/markdown_editor.js +7 -3
  48. package/optimize/lib/components/markdown_editor/markdown_editor_drop_zone.js +3 -2
  49. package/optimize/lib/components/markdown_editor/markdown_editor_footer.js +9 -118
  50. package/optimize/lib/components/markdown_editor/markdown_editor_footer.styles.js +0 -2
  51. package/optimize/lib/components/markdown_editor/markdown_editor_help_button.js +150 -0
  52. package/optimize/lib/components/markdown_editor/markdown_editor_help_button.styles.js +22 -0
  53. package/optimize/lib/components/markdown_editor/markdown_editor_toolbar.js +20 -16
  54. package/optimize/lib/components/popover/popover.js +2 -1
  55. package/package.json +1 -1
  56. package/test-env/components/call_out/call_out.js +3 -2
  57. package/test-env/components/card/checkable_card/checkable_card.js +24 -4
  58. package/test-env/components/code/code_block_virtualized.js +5 -3
  59. package/test-env/components/markdown_editor/index.js +7 -0
  60. package/test-env/components/markdown_editor/markdown_editor.js +15 -4
  61. package/test-env/components/markdown_editor/markdown_editor_drop_zone.js +5 -3
  62. package/test-env/components/markdown_editor/markdown_editor_footer.js +9 -118
  63. package/test-env/components/markdown_editor/markdown_editor_footer.styles.js +0 -2
  64. package/test-env/components/markdown_editor/markdown_editor_help_button.js +150 -0
  65. package/test-env/components/markdown_editor/markdown_editor_help_button.styles.js +22 -0
  66. package/test-env/components/markdown_editor/markdown_editor_toolbar.js +28 -23
  67. package/test-env/components/popover/popover.js +2 -1
@@ -91,7 +91,8 @@ export var EuiMarkdownEditorToolbar = /*#__PURE__*/forwardRef(function (_ref2, r
91
91
  viewMode = _ref2.viewMode,
92
92
  onClickPreview = _ref2.onClickPreview,
93
93
  uiPlugins = _ref2.uiPlugins,
94
- selectedNode = _ref2.selectedNode;
94
+ selectedNode = _ref2.selectedNode,
95
+ right = _ref2.right;
95
96
  var _useContext = useContext(EuiMarkdownContext),
96
97
  openPluginEditor = _useContext.openPluginEditor,
97
98
  readOnly = _useContext.readOnly;
@@ -178,27 +179,11 @@ export var EuiMarkdownEditorToolbar = /*#__PURE__*/forwardRef(function (_ref2, r
178
179
  label: button.label,
179
180
  icon: button.iconType
180
181
  }));
181
- })) : null), isPreviewing ? ___EmotionJSX(EuiButtonEmpty, {
182
- "data-test-subj": "markdown_editor_edit_button",
183
- iconType: "code",
184
- color: "text",
185
- size: "s",
186
- onClick: onClickPreview,
187
- isDisabled: readOnly
188
- }, ___EmotionJSX(EuiI18n, {
189
- token: "euiMarkdownEditorToolbar.editor",
190
- default: "Editor"
191
- })) : ___EmotionJSX(EuiButtonEmpty, {
192
- "data-test-subj": "markdown_editor_preview_button",
193
- iconType: "eye",
194
- color: "text",
195
- size: "s",
196
- onClick: onClickPreview,
197
- isDisabled: readOnly
198
- }, ___EmotionJSX(EuiI18n, {
199
- token: "euiMarkdownEditorToolbar.previewMarkdown",
200
- default: "Preview"
201
- })));
182
+ })) : null), right !== null && right !== void 0 ? right : ___EmotionJSX(PreviewEditorSwitch, {
183
+ isPreviewing: isPreviewing,
184
+ onClickPreview: onClickPreview,
185
+ readOnly: readOnly
186
+ }));
202
187
  });
203
188
  EuiMarkdownEditorToolbar.propTypes = {
204
189
  className: PropTypes.string,
@@ -231,6 +216,26 @@ EuiMarkdownEditorToolbar.propTypes = {
231
216
  trimFirst: PropTypes.bool
232
217
  }),
233
218
  editor: PropTypes.elementType
234
- }).isRequired).isRequired
219
+ }).isRequired).isRequired,
220
+ right: PropTypes.node
221
+ };
222
+ var PreviewEditorSwitch = function PreviewEditorSwitch(_ref4) {
223
+ var isPreviewing = _ref4.isPreviewing,
224
+ onClickPreview = _ref4.onClickPreview,
225
+ readOnly = _ref4.readOnly;
226
+ return ___EmotionJSX(EuiButtonEmpty, {
227
+ iconType: isPreviewing ? 'code' : 'eye',
228
+ color: "text",
229
+ size: "s",
230
+ onClick: onClickPreview,
231
+ isDisabled: readOnly,
232
+ "data-test-subj": isPreviewing ? 'markdown_editor_preview_button' : 'markdown_editor_edit_button'
233
+ }, isPreviewing ? ___EmotionJSX(EuiI18n, {
234
+ token: "euiMarkdownEditorToolbar.editor",
235
+ default: "Editor"
236
+ }) : ___EmotionJSX(EuiI18n, {
237
+ token: "euiMarkdownEditorToolbar.previewMarkdown",
238
+ default: "Preview"
239
+ }));
235
240
  };
236
241
  EuiMarkdownEditorToolbar.displayName = 'EuiMarkdownEditorToolbar';
@@ -162,7 +162,8 @@ export var EuiPopover = /*#__PURE__*/function (_Component) {
162
162
  // transition can take effect.
163
163
  _this.closingTransitionAnimationFrame = window.requestAnimationFrame(function () {
164
164
  _this.setState({
165
- isOpening: true
165
+ isOpening: true,
166
+ isClosing: false
166
167
  });
167
168
  });
168
169
 
package/eui.d.ts CHANGED
@@ -10126,8 +10126,9 @@ declare module '@elastic/eui/src/components/call_out/call_out' {
10126
10126
  export const COLORS: readonly ["primary", "success", "warning", "danger", "accent"];
10127
10127
  export type Color = (typeof COLORS)[number];
10128
10128
  export const HEADINGS: readonly ["h1", "h2", "h3", "h4", "h5", "h6", "p"];
10129
- type Heading = (typeof HEADINGS)[number];
10130
- type Size = 's' | 'm';
10129
+ export type Heading = (typeof HEADINGS)[number];
10130
+ export const SIZES: readonly ["s", "m"];
10131
+ export type Size = (typeof SIZES)[number];
10131
10132
  export type EuiCallOutProps = CommonProps & Omit<HTMLAttributes<HTMLDivElement>, 'title' | 'color'> & {
10132
10133
  title?: ReactNode;
10133
10134
  iconType?: IconType;
@@ -10158,7 +10159,6 @@ declare module '@elastic/eui/src/components/call_out/call_out' {
10158
10159
  */
10159
10160
  onDismiss?: () => void;
10160
10161
  } & React.RefAttributes<HTMLDivElement>>;
10161
- export {};
10162
10162
 
10163
10163
  }
10164
10164
  declare module '@elastic/eui/src/components/call_out' {
@@ -12622,10 +12622,11 @@ declare module '@elastic/eui/src/components/code/code_block_controls' {
12622
12622
 
12623
12623
  }
12624
12624
  declare module '@elastic/eui/src/components/code/code_block_virtualized' {
12625
- import React, { HTMLAttributes } from 'react';
12625
+ import React, { HTMLAttributes, ReactNode } from 'react';
12626
12626
  import { RefractorNode } from 'refractor';
12627
- export const EuiCodeBlockVirtualized: ({ data, rowHeight, overflowHeight, preProps, codeProps, }: {
12627
+ export const EuiCodeBlockVirtualized: ({ data, label, rowHeight, overflowHeight, preProps, codeProps, }: {
12628
12628
  data: RefractorNode[];
12629
+ label: ReactNode;
12629
12630
  rowHeight: number;
12630
12631
  overflowHeight?: number | string;
12631
12632
  preProps: HTMLAttributes<HTMLPreElement>;
@@ -21101,6 +21102,7 @@ declare module '@elastic/eui/src/components/markdown_editor/markdown_editor_tool
21101
21102
  viewMode: MARKDOWN_MODE;
21102
21103
  onClickPreview: MouseEventHandler<HTMLButtonElement>;
21103
21104
  uiPlugins: EuiMarkdownEditorUiPlugin[];
21105
+ right?: React.ReactNode;
21104
21106
  };
21105
21107
  export const EuiMarkdownEditorToolbar: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & CommonProps & {
21106
21108
  selectedNode?: null | any;
@@ -21108,6 +21110,7 @@ declare module '@elastic/eui/src/components/markdown_editor/markdown_editor_tool
21108
21110
  viewMode: MARKDOWN_MODE;
21109
21111
  onClickPreview: MouseEventHandler<HTMLButtonElement>;
21110
21112
  uiPlugins: EuiMarkdownEditorUiPlugin[];
21113
+ right?: React.ReactNode;
21111
21114
  } & React.RefAttributes<HTMLDivElement>>;
21112
21115
 
21113
21116
  }
@@ -21392,6 +21395,16 @@ declare module '@elastic/eui/src/components/markdown_editor/markdown_format' {
21392
21395
  };
21393
21396
  export const EuiMarkdownFormat: FunctionComponent<EuiMarkdownFormatProps>;
21394
21397
 
21398
+ }
21399
+ declare module '@elastic/eui/src/components/markdown_editor/markdown_editor_footer.styles' {
21400
+ import { UseEuiTheme } from '@elastic/eui/src/services';
21401
+ export const euiMarkdownEditorFooterStyles: (euiThemeContext: UseEuiTheme) => {
21402
+ euiMarkdownEditorFooter: import("@emotion/react").SerializedStyles;
21403
+ euiMarkdownEditorFooter__actions: import("@emotion/react").SerializedStyles;
21404
+ euiMarkdownEditorFooter__uploadError: import("@emotion/react").SerializedStyles;
21405
+ euiMarkdownEditorFooter__popover: import("@emotion/react").SerializedStyles;
21406
+ };
21407
+
21395
21408
  }
21396
21409
  declare module '@elastic/eui/src/components/markdown_editor/icons/markdown_logo' {
21397
21410
  import React from 'react';
@@ -21402,16 +21415,24 @@ declare module '@elastic/eui/src/components/markdown_editor/icons/markdown_logo'
21402
21415
  export default MarkdownLogo;
21403
21416
 
21404
21417
  }
21405
- declare module '@elastic/eui/src/components/markdown_editor/markdown_editor_footer.styles' {
21406
- import { UseEuiTheme } from '@elastic/eui/src/services';
21407
- export const euiMarkdownEditorFooterStyles: (euiThemeContext: UseEuiTheme) => {
21408
- euiMarkdownEditorFooter: import("@emotion/react").SerializedStyles;
21409
- euiMarkdownEditorFooter__actions: import("@emotion/react").SerializedStyles;
21410
- euiMarkdownEditorFooter__uploadError: import("@emotion/react").SerializedStyles;
21418
+ declare module '@elastic/eui/src/components/markdown_editor/markdown_editor_help_button.styles' {
21419
+ export const euiMarkdownEditorHelpButtonStyles: () => {
21411
21420
  euiMarkdownEditorFooter__helpButton: import("@emotion/react").SerializedStyles;
21412
- euiMarkdownEditorFooter__popover: import("@emotion/react").SerializedStyles;
21413
21421
  };
21414
21422
 
21423
+ }
21424
+ declare module '@elastic/eui/src/components/markdown_editor/markdown_editor_help_button' {
21425
+ import React from 'react';
21426
+ import { EuiMarkdownEditorUiPlugin } from '@elastic/eui/src/components/markdown_editor/markdown_types';
21427
+ interface EuiMarkdownEditorHelpButtonProps {
21428
+ uiPlugins: EuiMarkdownEditorUiPlugin[];
21429
+ }
21430
+ export const EuiMarkdownEditorHelpButton: {
21431
+ ({ uiPlugins, }: EuiMarkdownEditorHelpButtonProps): React.JSX.Element;
21432
+ displayName: string;
21433
+ };
21434
+ export {};
21435
+
21415
21436
  }
21416
21437
  declare module '@elastic/eui/src/components/markdown_editor/markdown_editor_footer' {
21417
21438
  import React from 'react';
@@ -21451,6 +21472,7 @@ declare module '@elastic/eui/src/components/markdown_editor/markdown_editor_drop
21451
21472
  setHasUnacceptedItems: (hasUnacceptedItems: boolean) => void;
21452
21473
  setEditorFooterHeight: (height: number) => void;
21453
21474
  isEditing: boolean;
21475
+ showFooter?: boolean;
21454
21476
  }
21455
21477
  export const EuiMarkdownEditorDropZone: FunctionComponent<EuiMarkdownEditorDropZoneProps>;
21456
21478
  export {};
@@ -21461,6 +21483,7 @@ declare module '@elastic/eui/src/components/markdown_editor/markdown_editor' {
21461
21483
  import { PluggableList } from 'unified';
21462
21484
  import { VFileMessage } from 'vfile-message';
21463
21485
  import { CommonProps, OneOf } from '@elastic/eui/src/components/common';
21486
+ import { EuiMarkdownEditorToolbarProps } from '@elastic/eui/src/components/markdown_editor/markdown_editor_toolbar';
21464
21487
  import { EuiMarkdownEditorTextAreaProps } from '@elastic/eui/src/components/markdown_editor/markdown_editor_text_area';
21465
21488
  import { EuiMarkdownFormatProps } from '@elastic/eui/src/components/markdown_editor/markdown_format';
21466
21489
  import { MARKDOWN_MODE } from '@elastic/eui/src/components/markdown_editor/markdown_modes';
@@ -21524,9 +21547,17 @@ declare module '@elastic/eui/src/components/markdown_editor/markdown_editor' {
21524
21547
  * Further extend the props applied to EuiMarkdownFormat
21525
21548
  */
21526
21549
  markdownFormatProps?: Omit<EuiMarkdownFormatProps, 'parsingPluginList' | 'processingPluginList' | 'children'>;
21550
+ /**
21551
+ * Props to customize the toolbar. `right` replaces the default preview/editor toggle with custom content.
21552
+ */
21553
+ toolbarProps?: {
21554
+ right?: EuiMarkdownEditorToolbarProps['right'];
21555
+ };
21556
+ /** Controls whether the footer is shown */
21557
+ showFooter?: boolean;
21527
21558
  };
21528
21559
  export type EuiMarkdownEditorProps = OneOf<CommonMarkdownEditorProps, 'aria-label' | 'aria-labelledby'>;
21529
- interface EuiMarkdownEditorRef {
21560
+ export interface EuiMarkdownEditorRef {
21530
21561
  textarea: HTMLTextAreaElement | null;
21531
21562
  replaceNode: ContextShape['replaceNode'];
21532
21563
  }
@@ -21535,8 +21566,9 @@ declare module '@elastic/eui/src/components/markdown_editor/markdown_editor' {
21535
21566
 
21536
21567
  }
21537
21568
  declare module '@elastic/eui/src/components/markdown_editor' {
21538
- export type { EuiMarkdownEditorProps } from '@elastic/eui/src/components/markdown_editor/markdown_editor';
21569
+ export type { EuiMarkdownEditorProps, EuiMarkdownEditorRef, } from '@elastic/eui/src/components/markdown_editor/markdown_editor';
21539
21570
  export { EuiMarkdownEditor } from '@elastic/eui/src/components/markdown_editor/markdown_editor';
21571
+ export { EuiMarkdownEditorHelpButton } from '@elastic/eui/src/components/markdown_editor/markdown_editor_help_button';
21540
21572
  export { getDefaultEuiMarkdownParsingPlugins, getDefaultEuiMarkdownProcessingPlugins, getDefaultEuiMarkdownUiPlugins, getDefaultEuiMarkdownPlugins, } from '@elastic/eui/src/components/markdown_editor/plugins/markdown_default_plugins';
21541
21573
  export { EuiMarkdownContext } from '@elastic/eui/src/components/markdown_editor/markdown_context';
21542
21574
  export type { EuiMarkdownFormatProps } from '@elastic/eui/src/components/markdown_editor/markdown_format';
@@ -33653,12 +33685,13 @@ declare module '@elastic/eui' {
33653
33685
  "euiTourFooter.endTour": any;
33654
33686
  "euiTourFooter.skipTour": any;
33655
33687
  "euiTourFooter.closeTour": any;
33688
+ "euiIconTip.defaultAriaLabel": any;
33656
33689
  "euiToast.newNotification": any;
33657
33690
  "euiToast.notification": any;
33658
33691
  "euiToast.dismissToast": any;
33659
33692
  "euiGlobalToastList.clearAllToastsButtonAriaLabel": any;
33660
33693
  "euiGlobalToastList.clearAllToastsButtonDisplayText": any;
33661
- "euiIconTip.defaultAriaLabel": any;
33694
+ "euiTableHeaderCell.titleTextWithDesc": any;
33662
33695
  "euiStepStrings.step": any;
33663
33696
  "euiStepStrings.simpleStep": any;
33664
33697
  "euiStepStrings.complete": any;
@@ -33675,7 +33708,6 @@ declare module '@elastic/eui' {
33675
33708
  "euiStepStrings.simpleLoading": any;
33676
33709
  "euiStepStrings.current": any;
33677
33710
  "euiStepStrings.simpleCurrent": any;
33678
- "euiTableHeaderCell.titleTextWithDesc": any;
33679
33711
  "euiStat.loadingText": any;
33680
33712
  "euiSkeletonLoading.loadedAriaText": any;
33681
33713
  "euiSkeletonLoading.loadingAriaText": any;
@@ -33709,37 +33741,37 @@ declare module '@elastic/eui' {
33709
33741
  "euiPagination.collection": any;
33710
33742
  "euiPagination.fromEndLabel": any;
33711
33743
  "euiModal.closeModal": any;
33712
- "euiMark.highlightStart": any;
33713
- "euiMark.highlightEnd": any;
33714
- "euiLoadingStrings.ariaLabel": any;
33715
- "euiExternalLinkIcon.newTarget.screenReaderOnlyText": any;
33716
- "euiExternalLinkIcon.externalTarget.screenReaderOnlyText": any;
33717
33744
  "euiMarkdownEditorToolbar.editor": any;
33718
33745
  "euiMarkdownEditorToolbar.previewMarkdown": any;
33746
+ "euiMarkdownEditorHelpButton.mdSyntaxLink": any;
33747
+ "euiMarkdownEditorHelpButton.syntaxTitle": any;
33748
+ "euiMarkdownEditorHelpButton.showMarkdownHelp": any;
33749
+ "euiMarkdownEditorHelpButton.syntaxModalDescriptionPrefix": any;
33750
+ "euiMarkdownEditorHelpButton.syntaxModalDescriptionSuffix": any;
33751
+ "euiMarkdownEditorHelpButton.closeButton": any;
33752
+ "euiMarkdownEditorHelpButton.syntaxPopoverDescription": any;
33719
33753
  "euiMarkdownEditorFooter.uploadingFiles": any;
33720
33754
  "euiMarkdownEditorFooter.openUploadModal": any;
33721
33755
  "euiMarkdownEditorFooter.unsupportedFileType": any;
33722
33756
  "euiMarkdownEditorFooter.supportedFileTypes": any;
33723
33757
  "euiMarkdownEditorFooter.showSyntaxErrors": any;
33724
- "euiMarkdownEditorFooter.showMarkdownHelp": any;
33725
- "euiMarkdownEditorFooter.syntaxTitle": any;
33726
33758
  "euiMarkdownEditorFooter.errorsTitle": any;
33727
- "euiMarkdownEditorFooter.mdSyntaxLink": any;
33728
- "euiMarkdownEditorFooter.syntaxModalDescriptionPrefix": any;
33729
- "euiMarkdownEditorFooter.syntaxModalDescriptionSuffix": any;
33730
- "euiMarkdownEditorFooter.closeButton": any;
33731
- "euiMarkdownEditorFooter.syntaxPopoverDescription": any;
33759
+ "euiMark.highlightStart": any;
33760
+ "euiMark.highlightEnd": any;
33761
+ "euiLoadingStrings.ariaLabel": any;
33762
+ "euiExternalLinkIcon.newTarget.screenReaderOnlyText": any;
33763
+ "euiExternalLinkIcon.externalTarget.screenReaderOnlyText": any;
33764
+ "euiImageButton.openFullScreen": any;
33765
+ "euiImageButton.closeFullScreen": any;
33732
33766
  "euiInlineEditForm.saveButtonAriaLabel": any;
33733
33767
  "euiInlineEditForm.cancelButtonAriaLabel": any;
33734
33768
  "euiInlineEditForm.inputKeyboardInstructions": any;
33735
33769
  "euiInlineEditForm.activateEditModeDescription": any;
33736
- "euiImageButton.openFullScreen": any;
33737
- "euiImageButton.closeFullScreen": any;
33770
+ "euiForm.addressFormErrors": any;
33738
33771
  "euiFlyout.screenReaderModalDialog": any;
33739
33772
  "euiFlyout.screenReaderNonModalDialog": any;
33740
33773
  "euiFlyout.screenReaderFocusTrapShards": any;
33741
33774
  "euiFlyoutCloseButton.ariaLabel": any;
33742
- "euiForm.addressFormErrors": any;
33743
33775
  "euiFilterButton.filterBadgeActiveAriaLabel": any;
33744
33776
  "euiFilterButton.filterBadgeAvailableAriaLabel": any;
33745
33777
  "euiErrorBoundary.error": any;
@@ -33750,10 +33782,10 @@ declare module '@elastic/eui' {
33750
33782
  "euiSaturation.ariaLabel": any;
33751
33783
  "euiSaturation.roleDescription": any;
33752
33784
  "euiSaturation.screenReaderInstructions": any;
33785
+ "euiColorPickerSwatch.ariaLabel": any;
33753
33786
  "euiHue.ariaValueText": any;
33754
33787
  "euiHue.ariaRoleDescription": any;
33755
33788
  "euiHue.label": any;
33756
- "euiColorPickerSwatch.ariaLabel": any;
33757
33789
  "euiColorPicker.popoverLabel": any;
33758
33790
  "euiColorPicker.colorLabel": any;
33759
33791
  "euiColorPicker.selectedColorLabel": any;
@@ -33763,10 +33795,10 @@ declare module '@elastic/eui' {
33763
33795
  "euiColorPicker.openLabel": any;
33764
33796
  "euiColorPicker.closeLabel": any;
33765
33797
  "euiCollapsibleNavBeta.ariaLabel": any;
33798
+ "euiCodeBlockCopy.copy": any;
33766
33799
  "euiCodeBlockFullScreen.fullscreenCollapse": any;
33767
33800
  "euiCodeBlockFullScreen.fullscreenExpand": any;
33768
33801
  "euiCodeBlockFullScreen.ariaLabel": any;
33769
- "euiCodeBlockCopy.copy": any;
33770
33802
  "euiCodeBlockAnnotations.ariaLabel": any;
33771
33803
  "euiCodeBlock.label": any;
33772
33804
  "euiCallOut.dismissAriaLabel": any;
@@ -33788,11 +33820,11 @@ declare module '@elastic/eui' {
33788
33820
  "euiBasicTable.deselectRows": any;
33789
33821
  "euiBasicTable.selectThisRow": any;
33790
33822
  "euiBasicTable.tablePagination": any;
33823
+ "euiTableSortMobile.sorting": any;
33791
33824
  "euiTablePagination.allRows": any;
33792
33825
  "euiTablePagination.rowsPerPage": any;
33793
33826
  "euiTablePagination.rowsPerPageOptionShowAllRows": any;
33794
33827
  "euiTablePagination.rowsPerPageOption": any;
33795
- "euiTableSortMobile.sorting": any;
33796
33828
  "euiSelectableTemplateSitewide.searchPlaceholder": any;
33797
33829
  "euiSelectableTemplateSitewide.loadingResults": any;
33798
33830
  "euiSelectableTemplateSitewide.noResults": any;
@@ -33815,29 +33847,15 @@ declare module '@elastic/eui' {
33815
33847
  "euiSuperSelect.ariaLabel": any;
33816
33848
  "euiRange.sliderScreenReaderInstructions": any;
33817
33849
  "euiDualRange.sliderScreenReaderInstructions": any;
33850
+ "euiFormControlLayoutDelimited.delimiterLabel": any;
33851
+ "euiFormControlLayoutClearButton.label": any;
33818
33852
  "euiFilePicker.promptText": any;
33819
33853
  "euiFilePicker.filesSelected": any;
33820
33854
  "euiFilePicker.removeSelectedAriaLabel": any;
33821
33855
  "euiFilePicker.removeSelected": any;
33822
- "euiFormControlLayoutDelimited.delimiterLabel": any;
33823
- "euiFormControlLayoutClearButton.label": any;
33824
33856
  "euiFieldSearch.clearSearchButtonLabel": any;
33825
33857
  "euiFieldPassword.showPassword": any;
33826
33858
  "euiFieldPassword.maskPassword": any;
33827
- "euiRefreshInterval.fullDescriptionOff": any;
33828
- "euiRefreshInterval.fullDescriptionOn": any;
33829
- "euiRefreshInterval.toggleLabel": any;
33830
- "euiRefreshInterval.toggleAriaLabel": any;
33831
- "euiRefreshInterval.valueAriaLabel": any;
33832
- "euiRefreshInterval.unitsAriaLabel": any;
33833
- "euiAutoRefresh.autoRefreshLabel": any;
33834
- "euiAutoRefresh.buttonLabelOff": any;
33835
- "euiAutoRefresh.buttonLabelOn": any;
33836
- "euiSuperUpdateButton.updatingButtonLabel": any;
33837
- "euiSuperUpdateButton.updateButtonLabel": any;
33838
- "euiSuperUpdateButton.refreshButtonLabel": any;
33839
- "euiSuperUpdateButton.cannotUpdateTooltip": any;
33840
- "euiSuperUpdateButton.clickToApplyTooltip": any;
33841
33859
  "euiTimeOptions.last": any;
33842
33860
  "euiTimeOptions.next": any;
33843
33861
  "euiTimeOptions.seconds": any;
@@ -33876,6 +33894,11 @@ declare module '@elastic/eui' {
33876
33894
  "euiTimeOptions.weekToDate": any;
33877
33895
  "euiTimeOptions.monthToDate": any;
33878
33896
  "euiTimeOptions.yearToDate": any;
33897
+ "euiSuperUpdateButton.updatingButtonLabel": any;
33898
+ "euiSuperUpdateButton.updateButtonLabel": any;
33899
+ "euiSuperUpdateButton.refreshButtonLabel": any;
33900
+ "euiSuperUpdateButton.cannotUpdateTooltip": any;
33901
+ "euiSuperUpdateButton.clickToApplyTooltip": any;
33879
33902
  "euiPrettyInterval.seconds": any;
33880
33903
  "euiPrettyInterval.minutes": any;
33881
33904
  "euiPrettyInterval.hours": any;
@@ -33909,6 +33932,17 @@ declare module '@elastic/eui' {
33909
33932
  "euiPrettyDuration.now": any;
33910
33933
  "euiPrettyDuration.invalid": any;
33911
33934
  "euiPrettyDuration.fallbackDuration": any;
33935
+ "euiRefreshInterval.fullDescriptionOff": any;
33936
+ "euiRefreshInterval.fullDescriptionOn": any;
33937
+ "euiRefreshInterval.toggleLabel": any;
33938
+ "euiRefreshInterval.toggleAriaLabel": any;
33939
+ "euiRefreshInterval.valueAriaLabel": any;
33940
+ "euiRefreshInterval.unitsAriaLabel": any;
33941
+ "euiAutoRefresh.autoRefreshLabel": any;
33942
+ "euiAutoRefresh.buttonLabelOff": any;
33943
+ "euiAutoRefresh.buttonLabelOn": any;
33944
+ "euiDataGridPagination.detailedPaginationLabel": any;
33945
+ "euiDataGridPagination.paginationLabel": any;
33912
33946
  "euiDataGridSchema.booleanSortTextAsc": any;
33913
33947
  "euiDataGridSchema.booleanSortTextDesc": any;
33914
33948
  "euiDataGridSchema.currencySortTextAsc": any;
@@ -33919,8 +33953,6 @@ declare module '@elastic/eui' {
33919
33953
  "euiDataGridSchema.numberSortTextDesc": any;
33920
33954
  "euiDataGridSchema.jsonSortTextAsc": any;
33921
33955
  "euiDataGridSchema.jsonSortTextDesc": any;
33922
- "euiDataGridPagination.detailedPaginationLabel": any;
33923
- "euiDataGridPagination.paginationLabel": any;
33924
33956
  "euiKeyboardShortcuts.title": any;
33925
33957
  "euiKeyboardShortcuts.upArrowTitle": any;
33926
33958
  "euiKeyboardShortcuts.upArrowDescription": any;