@elastic/eui 106.4.0 → 106.6.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.
- package/es/components/avatar/avatar.js +2 -0
- package/es/components/badge/badge.js +5 -7
- package/es/components/badge/badge.styles.js +10 -4
- package/es/components/basic_table/basic_table.js +6 -0
- package/es/components/basic_table/in_memory_table.js +6 -0
- package/es/components/color_picker/color_picker_swatch.js +4 -0
- package/es/components/datagrid/data_grid.styles.js +1 -1
- package/es/components/date_picker/super_date_picker/quick_select_popover/quick_select.js +4 -4
- package/es/components/date_picker/super_date_picker/super_date_picker.styles.js +1 -1
- package/es/components/modal/modal.js +16 -5
- package/es/components/table/table_header_cell.js +4 -0
- package/es/components/tool_tip/icon_tip.js +4 -0
- package/es/components/tool_tip/tool_tip.js +8 -2
- package/es/services/color/contrast.js +11 -0
- package/eui.d.ts +129 -121
- package/i18ntokens.json +2305 -2287
- package/lib/components/avatar/avatar.js +2 -0
- package/lib/components/badge/badge.js +3 -5
- package/lib/components/badge/badge.styles.js +10 -4
- package/lib/components/basic_table/basic_table.js +6 -0
- package/lib/components/basic_table/in_memory_table.js +6 -0
- package/lib/components/color_picker/color_picker_swatch.js +4 -0
- package/lib/components/datagrid/data_grid.styles.js +1 -1
- package/lib/components/date_picker/super_date_picker/quick_select_popover/quick_select.js +4 -4
- package/lib/components/date_picker/super_date_picker/super_date_picker.styles.js +1 -1
- package/lib/components/modal/modal.js +15 -4
- package/lib/components/table/table_header_cell.js +4 -0
- package/lib/components/tool_tip/icon_tip.js +4 -0
- package/lib/components/tool_tip/tool_tip.js +9 -3
- package/lib/services/color/contrast.js +12 -1
- package/optimize/es/components/avatar/avatar.js +2 -0
- package/optimize/es/components/badge/badge.js +5 -7
- package/optimize/es/components/badge/badge.styles.js +10 -4
- package/optimize/es/components/datagrid/data_grid.styles.js +1 -1
- package/optimize/es/components/date_picker/super_date_picker/quick_select_popover/quick_select.js +4 -4
- package/optimize/es/components/date_picker/super_date_picker/super_date_picker.styles.js +1 -1
- package/optimize/es/components/modal/modal.js +16 -5
- package/optimize/es/components/tool_tip/tool_tip.js +4 -2
- package/optimize/es/services/color/contrast.js +11 -0
- package/optimize/lib/components/avatar/avatar.js +2 -0
- package/optimize/lib/components/badge/badge.js +3 -5
- package/optimize/lib/components/badge/badge.styles.js +10 -4
- package/optimize/lib/components/datagrid/data_grid.styles.js +1 -1
- package/optimize/lib/components/date_picker/super_date_picker/quick_select_popover/quick_select.js +4 -4
- package/optimize/lib/components/date_picker/super_date_picker/super_date_picker.styles.js +1 -1
- package/optimize/lib/components/modal/modal.js +15 -4
- package/optimize/lib/components/tool_tip/tool_tip.js +5 -3
- package/optimize/lib/services/color/contrast.js +12 -1
- package/package.json +3 -3
- package/test-env/components/avatar/avatar.js +2 -0
- package/test-env/components/badge/badge.js +3 -5
- package/test-env/components/badge/badge.styles.js +10 -4
- package/test-env/components/basic_table/basic_table.js +6 -0
- package/test-env/components/basic_table/in_memory_table.js +6 -0
- package/test-env/components/color_picker/color_picker_swatch.js +4 -0
- package/test-env/components/datagrid/data_grid.styles.js +1 -1
- package/test-env/components/date_picker/super_date_picker/quick_select_popover/quick_select.js +4 -4
- package/test-env/components/date_picker/super_date_picker/super_date_picker.styles.js +1 -1
- package/test-env/components/modal/modal.js +15 -4
- package/test-env/components/table/table_header_cell.js +4 -0
- package/test-env/components/tool_tip/icon_tip.js +4 -0
- package/test-env/components/tool_tip/tool_tip.js +9 -3
- package/test-env/services/color/contrast.js +12 -1
package/eui.d.ts
CHANGED
|
@@ -3439,6 +3439,7 @@ declare module '@elastic/eui/src/components/tool_tip/tool_tip' {
|
|
|
3439
3439
|
import { ToolTipPositions } from '@elastic/eui/src/components/tool_tip/tool_tip_popover';
|
|
3440
3440
|
export const POSITIONS: readonly ["top", "right", "bottom", "left"]; const DISPLAYS: readonly ["inlineBlock", "block"];
|
|
3441
3441
|
export type ToolTipDelay = 'regular' | 'long';
|
|
3442
|
+
export const DEFAULT_TOOLTIP_OFFSET = 16;
|
|
3442
3443
|
interface ToolTipStyles {
|
|
3443
3444
|
top: number;
|
|
3444
3445
|
left: number | 'auto';
|
|
@@ -3508,6 +3509,10 @@ declare module '@elastic/eui/src/components/tool_tip/tool_tip' {
|
|
|
3508
3509
|
* hidden.
|
|
3509
3510
|
*/
|
|
3510
3511
|
onMouseOut?: (event: ReactMouseEvent<HTMLSpanElement, MouseEvent>) => void;
|
|
3512
|
+
/**
|
|
3513
|
+
* Offset in pixels from the anchor. Defaults to 16.
|
|
3514
|
+
*/
|
|
3515
|
+
offset?: number;
|
|
3511
3516
|
}
|
|
3512
3517
|
interface State {
|
|
3513
3518
|
visible: boolean;
|
|
@@ -8284,6 +8289,7 @@ declare module '@elastic/eui/src/services/color/manipulation' {
|
|
|
8284
8289
|
|
|
8285
8290
|
}
|
|
8286
8291
|
declare module '@elastic/eui/src/services/color/contrast' {
|
|
8292
|
+
export const getColorContrast: (textColor: string, backgroundColor: string) => number;
|
|
8287
8293
|
export const wcagContrastMin = 4.5;
|
|
8288
8294
|
/**
|
|
8289
8295
|
* Creates a new color that meets or exceeds WCAG level AA
|
|
@@ -8312,6 +8318,7 @@ declare module '@elastic/eui/src/services/color/contrast' {
|
|
|
8312
8318
|
};
|
|
8313
8319
|
[key: string]: any;
|
|
8314
8320
|
}) => string;
|
|
8321
|
+
export const warnIfContrastBelowMin: (textColor: string, backgroundColor: string, min?: number) => void;
|
|
8315
8322
|
|
|
8316
8323
|
}
|
|
8317
8324
|
declare module '@elastic/eui/src/services/color' {
|
|
@@ -33774,7 +33781,6 @@ declare module '@elastic/eui' {
|
|
|
33774
33781
|
"euiToast.dismissToast": any;
|
|
33775
33782
|
"euiGlobalToastList.clearAllToastsButtonAriaLabel": any;
|
|
33776
33783
|
"euiGlobalToastList.clearAllToastsButtonDisplayText": any;
|
|
33777
|
-
"euiTableHeaderCell.titleTextWithDesc": any;
|
|
33778
33784
|
"euiStepStrings.step": any;
|
|
33779
33785
|
"euiStepStrings.simpleStep": any;
|
|
33780
33786
|
"euiStepStrings.complete": any;
|
|
@@ -33792,6 +33798,7 @@ declare module '@elastic/eui' {
|
|
|
33792
33798
|
"euiStepStrings.current": any;
|
|
33793
33799
|
"euiStepStrings.simpleCurrent": any;
|
|
33794
33800
|
"euiStat.loadingText": any;
|
|
33801
|
+
"euiTableHeaderCell.titleTextWithDesc": any;
|
|
33795
33802
|
"euiSkeletonLoading.loadedAriaText": any;
|
|
33796
33803
|
"euiSkeletonLoading.loadingAriaText": any;
|
|
33797
33804
|
"euiSideNav.mobileToggleAriaLabel": any;
|
|
@@ -33823,9 +33830,14 @@ declare module '@elastic/eui' {
|
|
|
33823
33830
|
"euiPagination.of": any;
|
|
33824
33831
|
"euiPagination.collection": any;
|
|
33825
33832
|
"euiPagination.fromEndLabel": any;
|
|
33826
|
-
"euiModal.closeModal": any;
|
|
33827
33833
|
"euiMarkdownEditorToolbar.editor": any;
|
|
33828
33834
|
"euiMarkdownEditorToolbar.previewMarkdown": any;
|
|
33835
|
+
"euiMarkdownEditorFooter.uploadingFiles": any;
|
|
33836
|
+
"euiMarkdownEditorFooter.openUploadModal": any;
|
|
33837
|
+
"euiMarkdownEditorFooter.unsupportedFileType": any;
|
|
33838
|
+
"euiMarkdownEditorFooter.supportedFileTypes": any;
|
|
33839
|
+
"euiMarkdownEditorFooter.showSyntaxErrors": any;
|
|
33840
|
+
"euiMarkdownEditorFooter.errorsTitle": any;
|
|
33829
33841
|
"euiMarkdownEditorHelpButton.mdSyntaxLink": any;
|
|
33830
33842
|
"euiMarkdownEditorHelpButton.syntaxTitle": any;
|
|
33831
33843
|
"euiMarkdownEditorHelpButton.showMarkdownHelp": any;
|
|
@@ -33833,36 +33845,32 @@ declare module '@elastic/eui' {
|
|
|
33833
33845
|
"euiMarkdownEditorHelpButton.syntaxModalDescriptionSuffix": any;
|
|
33834
33846
|
"euiMarkdownEditorHelpButton.closeButton": any;
|
|
33835
33847
|
"euiMarkdownEditorHelpButton.syntaxPopoverDescription": any;
|
|
33836
|
-
"euiMarkdownEditorFooter.uploadingFiles": any;
|
|
33837
|
-
"euiMarkdownEditorFooter.openUploadModal": any;
|
|
33838
|
-
"euiMarkdownEditorFooter.unsupportedFileType": any;
|
|
33839
|
-
"euiMarkdownEditorFooter.supportedFileTypes": any;
|
|
33840
|
-
"euiMarkdownEditorFooter.showSyntaxErrors": any;
|
|
33841
|
-
"euiMarkdownEditorFooter.errorsTitle": any;
|
|
33842
33848
|
"euiMark.highlightStart": any;
|
|
33843
33849
|
"euiMark.highlightEnd": any;
|
|
33850
|
+
"euiModal.screenReaderModalDialog": any;
|
|
33851
|
+
"euiModal.closeModal": any;
|
|
33844
33852
|
"euiLoadingStrings.ariaLabel": any;
|
|
33845
33853
|
"euiExternalLinkIcon.newTarget.screenReaderOnlyText": any;
|
|
33846
33854
|
"euiExternalLinkIcon.externalTarget.screenReaderOnlyText": any;
|
|
33847
|
-
"euiImageButton.openFullScreen": any;
|
|
33848
|
-
"euiImageButton.closeFullScreen": any;
|
|
33849
33855
|
"euiInlineEditForm.saveButtonAriaLabel": any;
|
|
33850
33856
|
"euiInlineEditForm.cancelButtonAriaLabel": any;
|
|
33851
33857
|
"euiInlineEditForm.inputKeyboardInstructions": any;
|
|
33852
33858
|
"euiInlineEditForm.activateEditModeDescription": any;
|
|
33853
|
-
"
|
|
33854
|
-
"
|
|
33859
|
+
"euiImageButton.openFullScreen": any;
|
|
33860
|
+
"euiImageButton.closeFullScreen": any;
|
|
33861
|
+
"euiForm.addressFormErrors": any;
|
|
33855
33862
|
"euiFlyout.screenReaderModalDialog": any;
|
|
33856
33863
|
"euiFlyout.screenReaderNonModalDialog": any;
|
|
33857
33864
|
"euiFlyout.screenReaderFocusTrapShards": any;
|
|
33858
33865
|
"euiFlyoutCloseButton.ariaLabel": any;
|
|
33859
|
-
"
|
|
33866
|
+
"euiFilterButton.filterBadgeActiveAriaLabel": any;
|
|
33867
|
+
"euiFilterButton.filterBadgeAvailableAriaLabel": any;
|
|
33860
33868
|
"euiErrorBoundary.error": any;
|
|
33861
33869
|
"euiDataGrid.ariaLabel": any;
|
|
33862
33870
|
"euiDataGrid.ariaLabelledBy": any;
|
|
33863
33871
|
"euiDataGrid.screenReaderNotice": any;
|
|
33864
|
-
"euiComboBox.listboxAriaLabel": any;
|
|
33865
33872
|
"euiCollapsibleNavBeta.ariaLabel": any;
|
|
33873
|
+
"euiComboBox.listboxAriaLabel": any;
|
|
33866
33874
|
"euiSaturation.ariaLabel": any;
|
|
33867
33875
|
"euiSaturation.roleDescription": any;
|
|
33868
33876
|
"euiSaturation.screenReaderInstructions": any;
|
|
@@ -33878,19 +33886,19 @@ declare module '@elastic/eui' {
|
|
|
33878
33886
|
"euiColorPicker.alphaLabel": any;
|
|
33879
33887
|
"euiColorPicker.openLabel": any;
|
|
33880
33888
|
"euiColorPicker.closeLabel": any;
|
|
33889
|
+
"euiCallOut.dismissAriaLabel": any;
|
|
33881
33890
|
"euiCodeBlockFullScreen.fullscreenCollapse": any;
|
|
33882
33891
|
"euiCodeBlockFullScreen.fullscreenExpand": any;
|
|
33883
33892
|
"euiCodeBlockFullScreen.ariaLabel": any;
|
|
33884
33893
|
"euiCodeBlockCopy.copy": any;
|
|
33885
33894
|
"euiCodeBlockAnnotations.ariaLabel": any;
|
|
33886
33895
|
"euiCodeBlock.label": any;
|
|
33887
|
-
"euiCallOut.dismissAriaLabel": any;
|
|
33888
|
-
"euiBreadcrumbs.nav.ariaLabel": any;
|
|
33889
|
-
"euiBreadcrumb.collapsedBadge.ariaLabel": any;
|
|
33890
|
-
"euiBreadcrumb.popoverAriaLabel": any;
|
|
33891
33896
|
"euiBottomBar.screenReaderHeading": any;
|
|
33892
33897
|
"euiBottomBar.customScreenReaderAnnouncement": any;
|
|
33893
33898
|
"euiBottomBar.screenReaderAnnouncement": any;
|
|
33899
|
+
"euiBreadcrumbs.nav.ariaLabel": any;
|
|
33900
|
+
"euiBreadcrumb.collapsedBadge.ariaLabel": any;
|
|
33901
|
+
"euiBreadcrumb.popoverAriaLabel": any;
|
|
33894
33902
|
"euiCollapsedItemActions.allActionsTooltip": any;
|
|
33895
33903
|
"euiCollapsedItemActions.allActions": any;
|
|
33896
33904
|
"euiCollapsedItemActions.allActionsDisabled": any;
|
|
@@ -33936,75 +33944,9 @@ declare module '@elastic/eui' {
|
|
|
33936
33944
|
"euiFilePicker.filesSelected": any;
|
|
33937
33945
|
"euiFilePicker.removeSelectedAriaLabel": any;
|
|
33938
33946
|
"euiFilePicker.removeSelected": any;
|
|
33939
|
-
"euiFieldSearch.clearSearchButtonLabel": any;
|
|
33940
33947
|
"euiFieldPassword.showPassword": any;
|
|
33941
33948
|
"euiFieldPassword.maskPassword": any;
|
|
33942
|
-
"
|
|
33943
|
-
"euiDataGridPagination.paginationLabel": any;
|
|
33944
|
-
"euiDataGridSchema.booleanSortTextAsc": any;
|
|
33945
|
-
"euiDataGridSchema.booleanSortTextDesc": any;
|
|
33946
|
-
"euiDataGridSchema.currencySortTextAsc": any;
|
|
33947
|
-
"euiDataGridSchema.currencySortTextDesc": any;
|
|
33948
|
-
"euiDataGridSchema.dateSortTextAsc": any;
|
|
33949
|
-
"euiDataGridSchema.dateSortTextDesc": any;
|
|
33950
|
-
"euiDataGridSchema.numberSortTextAsc": any;
|
|
33951
|
-
"euiDataGridSchema.numberSortTextDesc": any;
|
|
33952
|
-
"euiDataGridSchema.jsonSortTextAsc": any;
|
|
33953
|
-
"euiDataGridSchema.jsonSortTextDesc": any;
|
|
33954
|
-
"euiKeyboardShortcuts.title": any;
|
|
33955
|
-
"euiKeyboardShortcuts.upArrowTitle": any;
|
|
33956
|
-
"euiKeyboardShortcuts.upArrowDescription": any;
|
|
33957
|
-
"euiKeyboardShortcuts.downArrowTitle": any;
|
|
33958
|
-
"euiKeyboardShortcuts.downArrowDescription": any;
|
|
33959
|
-
"euiKeyboardShortcuts.rightArrowTitle": any;
|
|
33960
|
-
"euiKeyboardShortcuts.rightArrowDescription": any;
|
|
33961
|
-
"euiKeyboardShortcuts.leftArrowTitle": any;
|
|
33962
|
-
"euiKeyboardShortcuts.leftArrowDescription": any;
|
|
33963
|
-
"euiKeyboardShortcuts.homeTitle": any;
|
|
33964
|
-
"euiKeyboardShortcuts.homeDescription": any;
|
|
33965
|
-
"euiKeyboardShortcuts.endTitle": any;
|
|
33966
|
-
"euiKeyboardShortcuts.endDescription": any;
|
|
33967
|
-
"euiKeyboardShortcuts.ctrl": any;
|
|
33968
|
-
"euiKeyboardShortcuts.ctrlHomeDescription": any;
|
|
33969
|
-
"euiKeyboardShortcuts.ctrlEndDescription": any;
|
|
33970
|
-
"euiKeyboardShortcuts.pageUpTitle": any;
|
|
33971
|
-
"euiKeyboardShortcuts.pageUpDescription": any;
|
|
33972
|
-
"euiKeyboardShortcuts.pageDownTitle": any;
|
|
33973
|
-
"euiKeyboardShortcuts.pageDownDescription": any;
|
|
33974
|
-
"euiKeyboardShortcuts.enterTitle": any;
|
|
33975
|
-
"euiKeyboardShortcuts.enterDescription": any;
|
|
33976
|
-
"euiKeyboardShortcuts.escapeTitle": any;
|
|
33977
|
-
"euiKeyboardShortcuts.escapeDescription": any;
|
|
33978
|
-
"euiFullscreenSelector.fullscreenButton": any;
|
|
33979
|
-
"euiFullscreenSelector.fullscreenButtonActive": any;
|
|
33980
|
-
"euiDataGridToolbarControl.badgeAriaLabel": any;
|
|
33981
|
-
"euiDisplaySelector.densityLabel": any;
|
|
33982
|
-
"euiDisplaySelector.labelCompact": any;
|
|
33983
|
-
"euiDisplaySelector.labelNormal": any;
|
|
33984
|
-
"euiDisplaySelector.labelExpanded": any;
|
|
33985
|
-
"euiDisplaySelector.rowHeightLabel": any;
|
|
33986
|
-
"euiDisplaySelector.labelAuto": any;
|
|
33987
|
-
"euiDisplaySelector.labelStatic": any;
|
|
33988
|
-
"euiDisplaySelector.labelMax": any;
|
|
33989
|
-
"euiDisplaySelector.buttonText": any;
|
|
33990
|
-
"euiDisplaySelector.resetButtonText": any;
|
|
33991
|
-
"euiColumnSorting.button": any;
|
|
33992
|
-
"euiColumnSorting.sortFieldAriaLabel": any;
|
|
33993
|
-
"euiColumnSorting.emptySorting": any;
|
|
33994
|
-
"euiColumnSorting.pickFields": any;
|
|
33995
|
-
"euiColumnSorting.clearAll": any;
|
|
33996
|
-
"euiColumnSortingDraggable.defaultSortAsc": any;
|
|
33997
|
-
"euiColumnSortingDraggable.defaultSortDesc": any;
|
|
33998
|
-
"euiColumnSortingDraggable.dragHandleAriaLabel": any;
|
|
33999
|
-
"euiColumnSortingDraggable.activeSortLabel": any;
|
|
34000
|
-
"euiColumnSortingDraggable.removeSortLabel": any;
|
|
34001
|
-
"euiColumnSortingDraggable.toggleLegend": any;
|
|
34002
|
-
"euiColumnSelector.dragHandleAriaLabel": any;
|
|
34003
|
-
"euiColumnSelector.button": any;
|
|
34004
|
-
"euiColumnSelector.search": any;
|
|
34005
|
-
"euiColumnSelector.searchcolumns": any;
|
|
34006
|
-
"euiColumnSelector.selectAll": any;
|
|
34007
|
-
"euiColumnSelector.hideAll": any;
|
|
33949
|
+
"euiFieldSearch.clearSearchButtonLabel": any;
|
|
34008
33950
|
"euiTimeOptions.last": any;
|
|
34009
33951
|
"euiTimeOptions.next": any;
|
|
34010
33952
|
"euiTimeOptions.seconds": any;
|
|
@@ -34090,6 +34032,79 @@ declare module '@elastic/eui' {
|
|
|
34090
34032
|
"euiAutoRefresh.autoRefreshLabel": any;
|
|
34091
34033
|
"euiAutoRefresh.buttonLabelOff": any;
|
|
34092
34034
|
"euiAutoRefresh.buttonLabelOn": any;
|
|
34035
|
+
"euiDataGridSchema.booleanSortTextAsc": any;
|
|
34036
|
+
"euiDataGridSchema.booleanSortTextDesc": any;
|
|
34037
|
+
"euiDataGridSchema.currencySortTextAsc": any;
|
|
34038
|
+
"euiDataGridSchema.currencySortTextDesc": any;
|
|
34039
|
+
"euiDataGridSchema.dateSortTextAsc": any;
|
|
34040
|
+
"euiDataGridSchema.dateSortTextDesc": any;
|
|
34041
|
+
"euiDataGridSchema.numberSortTextAsc": any;
|
|
34042
|
+
"euiDataGridSchema.numberSortTextDesc": any;
|
|
34043
|
+
"euiDataGridSchema.jsonSortTextAsc": any;
|
|
34044
|
+
"euiDataGridSchema.jsonSortTextDesc": any;
|
|
34045
|
+
"euiDataGridPagination.detailedPaginationLabel": any;
|
|
34046
|
+
"euiDataGridPagination.paginationLabel": any;
|
|
34047
|
+
"euiKeyboardShortcuts.title": any;
|
|
34048
|
+
"euiKeyboardShortcuts.upArrowTitle": any;
|
|
34049
|
+
"euiKeyboardShortcuts.upArrowDescription": any;
|
|
34050
|
+
"euiKeyboardShortcuts.downArrowTitle": any;
|
|
34051
|
+
"euiKeyboardShortcuts.downArrowDescription": any;
|
|
34052
|
+
"euiKeyboardShortcuts.rightArrowTitle": any;
|
|
34053
|
+
"euiKeyboardShortcuts.rightArrowDescription": any;
|
|
34054
|
+
"euiKeyboardShortcuts.leftArrowTitle": any;
|
|
34055
|
+
"euiKeyboardShortcuts.leftArrowDescription": any;
|
|
34056
|
+
"euiKeyboardShortcuts.homeTitle": any;
|
|
34057
|
+
"euiKeyboardShortcuts.homeDescription": any;
|
|
34058
|
+
"euiKeyboardShortcuts.endTitle": any;
|
|
34059
|
+
"euiKeyboardShortcuts.endDescription": any;
|
|
34060
|
+
"euiKeyboardShortcuts.ctrl": any;
|
|
34061
|
+
"euiKeyboardShortcuts.ctrlHomeDescription": any;
|
|
34062
|
+
"euiKeyboardShortcuts.ctrlEndDescription": any;
|
|
34063
|
+
"euiKeyboardShortcuts.pageUpTitle": any;
|
|
34064
|
+
"euiKeyboardShortcuts.pageUpDescription": any;
|
|
34065
|
+
"euiKeyboardShortcuts.pageDownTitle": any;
|
|
34066
|
+
"euiKeyboardShortcuts.pageDownDescription": any;
|
|
34067
|
+
"euiKeyboardShortcuts.enterTitle": any;
|
|
34068
|
+
"euiKeyboardShortcuts.enterDescription": any;
|
|
34069
|
+
"euiKeyboardShortcuts.escapeTitle": any;
|
|
34070
|
+
"euiKeyboardShortcuts.escapeDescription": any;
|
|
34071
|
+
"euiFullscreenSelector.fullscreenButton": any;
|
|
34072
|
+
"euiFullscreenSelector.fullscreenButtonActive": any;
|
|
34073
|
+
"euiDisplaySelector.densityLabel": any;
|
|
34074
|
+
"euiDisplaySelector.labelCompact": any;
|
|
34075
|
+
"euiDisplaySelector.labelNormal": any;
|
|
34076
|
+
"euiDisplaySelector.labelExpanded": any;
|
|
34077
|
+
"euiDisplaySelector.rowHeightLabel": any;
|
|
34078
|
+
"euiDisplaySelector.labelAuto": any;
|
|
34079
|
+
"euiDisplaySelector.labelStatic": any;
|
|
34080
|
+
"euiDisplaySelector.labelMax": any;
|
|
34081
|
+
"euiDisplaySelector.buttonText": any;
|
|
34082
|
+
"euiDisplaySelector.resetButtonText": any;
|
|
34083
|
+
"euiDataGridToolbarControl.badgeAriaLabel": any;
|
|
34084
|
+
"euiColumnSortingDraggable.defaultSortAsc": any;
|
|
34085
|
+
"euiColumnSortingDraggable.defaultSortDesc": any;
|
|
34086
|
+
"euiColumnSortingDraggable.dragHandleAriaLabel": any;
|
|
34087
|
+
"euiColumnSortingDraggable.activeSortLabel": any;
|
|
34088
|
+
"euiColumnSortingDraggable.removeSortLabel": any;
|
|
34089
|
+
"euiColumnSortingDraggable.toggleLegend": any;
|
|
34090
|
+
"euiColumnSorting.button": any;
|
|
34091
|
+
"euiColumnSorting.sortFieldAriaLabel": any;
|
|
34092
|
+
"euiColumnSorting.emptySorting": any;
|
|
34093
|
+
"euiColumnSorting.pickFields": any;
|
|
34094
|
+
"euiColumnSorting.clearAll": any;
|
|
34095
|
+
"euiColumnSelector.dragHandleAriaLabel": any;
|
|
34096
|
+
"euiColumnSelector.button": any;
|
|
34097
|
+
"euiColumnSelector.search": any;
|
|
34098
|
+
"euiColumnSelector.searchcolumns": any;
|
|
34099
|
+
"euiColumnSelector.selectAll": any;
|
|
34100
|
+
"euiColumnSelector.hideAll": any;
|
|
34101
|
+
"euiCollapsibleNavButton.ariaLabelExpand": any;
|
|
34102
|
+
"euiCollapsibleNavButton.ariaLabelCollapse": any;
|
|
34103
|
+
"euiCollapsibleNavButton.ariaLabelOpen": any;
|
|
34104
|
+
"euiCollapsibleNavButton.ariaLabelClose": any;
|
|
34105
|
+
"euiCollapsibleNavKibanaSolution.switcherTitle": any;
|
|
34106
|
+
"euiCollapsibleNavKibanaSolution.switcherAriaLabel": any;
|
|
34107
|
+
"euiCollapsibleNavKibanaSolution.groupLabel": any;
|
|
34093
34108
|
"euiComboBoxOptionsList.loadingOptions": any;
|
|
34094
34109
|
"euiComboBoxOptionsList.delimiterMessage": any;
|
|
34095
34110
|
"euiComboBoxOptionsList.alreadyAdded": any;
|
|
@@ -34098,17 +34113,38 @@ declare module '@elastic/eui' {
|
|
|
34098
34113
|
"euiComboBoxOptionsList.noAvailableOptions": any;
|
|
34099
34114
|
"euiComboBoxOptionsList.allOptionsSelected": any;
|
|
34100
34115
|
"euiComboBoxPill.removeSelection": any;
|
|
34101
|
-
"euiCollapsibleNavButton.ariaLabelExpand": any;
|
|
34102
|
-
"euiCollapsibleNavButton.ariaLabelCollapse": any;
|
|
34103
|
-
"euiCollapsibleNavButton.ariaLabelOpen": any;
|
|
34104
|
-
"euiCollapsibleNavButton.ariaLabelClose": any;
|
|
34105
|
-
"euiCollapsibleNavKibanaSolution.switcherTitle": any;
|
|
34106
|
-
"euiCollapsibleNavKibanaSolution.switcherAriaLabel": any;
|
|
34107
|
-
"euiCollapsibleNavKibanaSolution.groupLabel": any;
|
|
34108
34116
|
"euiCardSelect.selected": any;
|
|
34109
34117
|
"euiCardSelect.unavailable": any;
|
|
34110
34118
|
"euiCardSelect.select": any;
|
|
34111
34119
|
"euiAccordionChildrenLoading.message": any;
|
|
34120
|
+
"euiRelativeTab.numberInputLabel": any;
|
|
34121
|
+
"euiRelativeTab.numberInputError": any;
|
|
34122
|
+
"euiRelativeTab.dateInputError": any;
|
|
34123
|
+
"euiRelativeTab.unitInputLabel": any;
|
|
34124
|
+
"euiRelativeTab.fullDescription": any;
|
|
34125
|
+
"euiDatePopoverContent.startDateLabel": any;
|
|
34126
|
+
"euiDatePopoverContent.endDateLabel": any;
|
|
34127
|
+
"euiDatePopoverContent.absoluteTabLabel": any;
|
|
34128
|
+
"euiDatePopoverContent.relativeTabLabel": any;
|
|
34129
|
+
"euiDatePopoverContent.nowTabLabel": any;
|
|
34130
|
+
"euiDatePopoverContent.nowTabContent": any;
|
|
34131
|
+
"euiDatePopoverContent.nowTabButtonStart": any;
|
|
34132
|
+
"euiDatePopoverContent.nowTabButtonEnd": any;
|
|
34133
|
+
"euiDatePopoverButton.invalidTitle": any;
|
|
34134
|
+
"euiDatePopoverButton.outdatedTitle": any;
|
|
34135
|
+
"euiAbsoluteTab.dateFormatButtonLabel": any;
|
|
34136
|
+
"euiAbsoluteTab.dateFormatError": any;
|
|
34137
|
+
"euiRecentlyUsed.legend": any;
|
|
34138
|
+
"euiQuickSelectPopover.buttonLabel": any;
|
|
34139
|
+
"euiQuickSelect.quickSelectTitle": any;
|
|
34140
|
+
"euiQuickSelect.previousLabel": any;
|
|
34141
|
+
"euiQuickSelect.nextLabel": any;
|
|
34142
|
+
"euiQuickSelect.tenseLabel": any;
|
|
34143
|
+
"euiQuickSelect.valueLabel": any;
|
|
34144
|
+
"euiQuickSelect.unitLabel": any;
|
|
34145
|
+
"euiQuickSelect.applyButton": any;
|
|
34146
|
+
"euiQuickSelect.fullDescription": any;
|
|
34147
|
+
"euiCommonlyUsedTimeRanges.legend": any;
|
|
34112
34148
|
"euiDataGridHeaderCell.sortedByAscendingSingle": any;
|
|
34113
34149
|
"euiDataGridHeaderCell.sortedByDescendingSingle": any;
|
|
34114
34150
|
"euiDataGridHeaderCell.sortedByAscendingFirst": any;
|
|
@@ -34126,37 +34162,9 @@ declare module '@elastic/eui' {
|
|
|
34126
34162
|
"euiDataGridCell.focusTrapExitPrompt": any;
|
|
34127
34163
|
"euiDataGridCell.focusTrapEnterPrompt": any;
|
|
34128
34164
|
"euiDataGridCell.focusTrapEnteredExitPrompt": any;
|
|
34165
|
+
"euiDataGridCellActions.expandButtonTitle": any;
|
|
34129
34166
|
"euiDataGridCell.position": any;
|
|
34130
34167
|
"euiDataGridCell.expansionEnterPrompt": any;
|
|
34131
|
-
"euiRecentlyUsed.legend": any;
|
|
34132
|
-
"euiDataGridCellActions.expandButtonTitle": any;
|
|
34133
|
-
"euiQuickSelectPopover.buttonLabel": any;
|
|
34134
|
-
"euiQuickSelect.quickSelectTitle": any;
|
|
34135
|
-
"euiQuickSelect.previousLabel": any;
|
|
34136
|
-
"euiQuickSelect.nextLabel": any;
|
|
34137
|
-
"euiQuickSelect.tenseLabel": any;
|
|
34138
|
-
"euiQuickSelect.valueLabel": any;
|
|
34139
|
-
"euiQuickSelect.unitLabel": any;
|
|
34140
|
-
"euiQuickSelect.applyButton": any;
|
|
34141
|
-
"euiQuickSelect.fullDescription": any;
|
|
34142
|
-
"euiCommonlyUsedTimeRanges.legend": any;
|
|
34143
|
-
"euiRelativeTab.numberInputLabel": any;
|
|
34144
|
-
"euiRelativeTab.numberInputError": any;
|
|
34145
|
-
"euiRelativeTab.dateInputError": any;
|
|
34146
|
-
"euiRelativeTab.unitInputLabel": any;
|
|
34147
|
-
"euiRelativeTab.fullDescription": any;
|
|
34148
|
-
"euiDatePopoverContent.startDateLabel": any;
|
|
34149
|
-
"euiDatePopoverContent.endDateLabel": any;
|
|
34150
|
-
"euiDatePopoverContent.absoluteTabLabel": any;
|
|
34151
|
-
"euiDatePopoverContent.relativeTabLabel": any;
|
|
34152
|
-
"euiDatePopoverContent.nowTabLabel": any;
|
|
34153
|
-
"euiDatePopoverContent.nowTabContent": any;
|
|
34154
|
-
"euiDatePopoverContent.nowTabButtonStart": any;
|
|
34155
|
-
"euiDatePopoverContent.nowTabButtonEnd": any;
|
|
34156
|
-
"euiDatePopoverButton.invalidTitle": any;
|
|
34157
|
-
"euiDatePopoverButton.outdatedTitle": any;
|
|
34158
|
-
"euiAbsoluteTab.dateFormatButtonLabel": any;
|
|
34159
|
-
"euiAbsoluteTab.dateFormatError": any;
|
|
34160
34168
|
"euiCollapsedNavButton.ariaLabelButtonIcon": any;
|
|
34161
34169
|
}
|
|
34162
34170
|
}
|