@elastic/eui 113.3.0 → 114.0.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/button/split_button/split_button.js +13 -0
- package/es/components/button/split_button/split_button_actions.js +15 -0
- package/es/components/collapsible_nav/collapsible_nav.js +5 -0
- package/es/components/color_picker/color_picker.js +31 -8
- package/es/components/datagrid/utils/scrolling.js +39 -10
- package/es/components/flyout/_flyout_overlay.js +34 -4
- package/es/components/flyout/flyout.component.js +13 -9
- package/es/components/flyout/flyout.js +9 -1
- package/es/components/flyout/flyout.styles.js +2 -2
- package/es/components/flyout/flyout_menu.js +2 -1
- package/es/components/flyout/flyout_resizable.js +5 -0
- package/es/components/flyout/manager/actions.js +5 -2
- package/es/components/flyout/manager/flyout_child.js +1 -0
- package/es/components/flyout/manager/flyout_managed.js +5 -3
- package/es/components/flyout/manager/reducer.js +116 -57
- package/es/components/flyout/manager/store.js +13 -6
- package/es/components/markdown_editor/plugins/markdown_default_plugins/parsing_plugins.js +2 -1
- package/es/components/markdown_editor/plugins/remark/remark_intraword_underscore.js +172 -0
- package/es/components/overlay_mask/overlay_mask.js +10 -3
- package/es/components/tree_view/tree_view_item.styles.js +1 -1
- package/es/services/hooks/index.js +8 -8
- package/es/services/hooks/useIsPointerDown.js +6 -15
- package/es/services/index.js +1 -1
- package/eui.d.ts +83 -51
- package/i18ntokens.json +661 -643
- package/lib/components/button/split_button/split_button.js +13 -0
- package/lib/components/button/split_button/split_button_actions.js +15 -0
- package/lib/components/collapsible_nav/collapsible_nav.js +5 -0
- package/lib/components/color_picker/color_picker.js +30 -7
- package/lib/components/datagrid/utils/scrolling.js +37 -8
- package/lib/components/flyout/_flyout_overlay.js +33 -3
- package/lib/components/flyout/flyout.component.js +13 -9
- package/lib/components/flyout/flyout.js +9 -1
- package/lib/components/flyout/flyout.styles.js +2 -2
- package/lib/components/flyout/flyout_menu.js +2 -1
- package/lib/components/flyout/flyout_resizable.js +5 -0
- package/lib/components/flyout/manager/actions.js +5 -2
- package/lib/components/flyout/manager/flyout_child.js +1 -0
- package/lib/components/flyout/manager/flyout_managed.js +5 -3
- package/lib/components/flyout/manager/reducer.js +116 -57
- package/lib/components/flyout/manager/store.js +13 -6
- package/lib/components/markdown_editor/plugins/markdown_default_plugins/parsing_plugins.js +2 -1
- package/lib/components/markdown_editor/plugins/remark/remark_intraword_underscore.js +179 -0
- package/lib/components/overlay_mask/overlay_mask.js +10 -3
- package/lib/components/tree_view/tree_view_item.styles.js +1 -1
- package/lib/services/hooks/index.js +60 -91
- package/lib/services/hooks/useIsPointerDown.js +7 -14
- package/lib/services/index.js +70 -11
- package/optimize/es/components/color_picker/color_picker.js +31 -8
- package/optimize/es/components/datagrid/utils/scrolling.js +39 -10
- package/optimize/es/components/flyout/_flyout_overlay.js +34 -4
- package/optimize/es/components/flyout/flyout.component.js +13 -9
- package/optimize/es/components/flyout/flyout.js +4 -1
- package/optimize/es/components/flyout/flyout.styles.js +2 -2
- package/optimize/es/components/flyout/flyout_menu.js +2 -1
- package/optimize/es/components/flyout/manager/actions.js +5 -2
- package/optimize/es/components/flyout/manager/flyout_managed.js +4 -3
- package/optimize/es/components/flyout/manager/reducer.js +116 -57
- package/optimize/es/components/flyout/manager/store.js +13 -6
- package/optimize/es/components/markdown_editor/plugins/markdown_default_plugins/parsing_plugins.js +2 -1
- package/optimize/es/components/markdown_editor/plugins/remark/remark_intraword_underscore.js +172 -0
- package/optimize/es/components/overlay_mask/overlay_mask.js +4 -2
- package/optimize/es/components/tree_view/tree_view_item.styles.js +1 -1
- package/optimize/es/services/hooks/index.js +8 -8
- package/optimize/es/services/hooks/useIsPointerDown.js +6 -10
- package/optimize/es/services/index.js +1 -1
- package/optimize/lib/components/color_picker/color_picker.js +30 -7
- package/optimize/lib/components/datagrid/utils/scrolling.js +37 -8
- package/optimize/lib/components/flyout/_flyout_overlay.js +33 -3
- package/optimize/lib/components/flyout/flyout.component.js +13 -9
- package/optimize/lib/components/flyout/flyout.js +4 -1
- package/optimize/lib/components/flyout/flyout.styles.js +2 -2
- package/optimize/lib/components/flyout/flyout_menu.js +2 -1
- package/optimize/lib/components/flyout/manager/actions.js +5 -2
- package/optimize/lib/components/flyout/manager/flyout_managed.js +4 -3
- package/optimize/lib/components/flyout/manager/reducer.js +116 -57
- package/optimize/lib/components/flyout/manager/store.js +13 -6
- package/optimize/lib/components/markdown_editor/plugins/markdown_default_plugins/parsing_plugins.js +2 -1
- package/optimize/lib/components/markdown_editor/plugins/remark/remark_intraword_underscore.js +179 -0
- package/optimize/lib/components/overlay_mask/overlay_mask.js +4 -2
- package/optimize/lib/components/tree_view/tree_view_item.styles.js +1 -1
- package/optimize/lib/services/hooks/index.js +60 -91
- package/optimize/lib/services/hooks/useIsPointerDown.js +5 -10
- package/optimize/lib/services/index.js +70 -11
- package/package.json +4 -4
- package/test-env/components/button/split_button/split_button.js +13 -0
- package/test-env/components/button/split_button/split_button_actions.js +15 -0
- package/test-env/components/collapsible_nav/collapsible_nav.js +5 -0
- package/test-env/components/color_picker/color_picker.js +30 -7
- package/test-env/components/datagrid/utils/scrolling.js +37 -8
- package/test-env/components/flyout/_flyout_overlay.js +33 -3
- package/test-env/components/flyout/flyout.component.js +13 -9
- package/test-env/components/flyout/flyout.styles.js +2 -2
- package/test-env/components/flyout/flyout_menu.js +2 -1
- package/test-env/components/flyout/flyout_resizable.js +5 -0
- package/test-env/components/flyout/manager/actions.js +5 -2
- package/test-env/components/flyout/manager/flyout_child.js +1 -0
- package/test-env/components/flyout/manager/flyout_managed.js +5 -3
- package/test-env/components/flyout/manager/reducer.js +116 -57
- package/test-env/components/flyout/manager/store.js +13 -6
- package/test-env/components/markdown_editor/plugins/markdown_default_plugins/parsing_plugins.js +2 -1
- package/test-env/components/markdown_editor/plugins/remark/remark_intraword_underscore.js +179 -0
- package/test-env/components/overlay_mask/overlay_mask.js +10 -3
- package/test-env/components/tree_view/tree_view_item.styles.js +1 -1
- package/test-env/services/hooks/index.js +60 -91
- package/test-env/services/hooks/useIsPointerDown.js +5 -10
- package/test-env/services/index.js +70 -11
package/es/services/index.js
CHANGED
|
@@ -22,7 +22,7 @@ export * from './emotion';
|
|
|
22
22
|
export * from './findElement';
|
|
23
23
|
export { focusTrapPubSub } from './focus_trap';
|
|
24
24
|
export { dateFormatAliases, formatAuto, formatBoolean, formatDate, formatNumber, formatText } from './format';
|
|
25
|
-
export
|
|
25
|
+
export { useDependentState, useCombinedRefs, setMultipleRefs, useForceRender, useLatest, useDeepEqual, isMouseEvent, useMouseMove, useUpdateEffect, useEuiDisabledElement } from './hooks';
|
|
26
26
|
export { isEvenlyDivisibleBy, isWithinRange } from './number';
|
|
27
27
|
export { Pager } from './paging';
|
|
28
28
|
export { calculatePopoverPosition, findPopoverPosition } from './popover';
|
package/eui.d.ts
CHANGED
|
@@ -404,12 +404,12 @@ declare module '@elastic/eui/src/services/hooks/useMouseMove' {
|
|
|
404
404
|
|
|
405
405
|
}
|
|
406
406
|
declare module '@elastic/eui/src/services/hooks/useIsPointerDown' {
|
|
407
|
-
import { MutableRefObject } from 'react';
|
|
407
|
+
import { type MutableRefObject } from 'react';
|
|
408
408
|
/**
|
|
409
409
|
* A hook that tracks whether the pointer is currently down/pressed.
|
|
410
410
|
* Useful for detecting text selection in progress.
|
|
411
411
|
*/
|
|
412
|
-
export function useIsPointerDown(container?: MutableRefObject<HTMLElement | null>): boolean
|
|
412
|
+
export function useIsPointerDown(container?: MutableRefObject<HTMLElement | null>): MutableRefObject<boolean>;
|
|
413
413
|
|
|
414
414
|
}
|
|
415
415
|
declare module '@elastic/eui/src/services/hooks/useEuiDisabledElement' {
|
|
@@ -479,14 +479,14 @@ declare module '@elastic/eui/src/services/hooks/useEuiDisabledElement' {
|
|
|
479
479
|
|
|
480
480
|
}
|
|
481
481
|
declare module '@elastic/eui/src/services/hooks' {
|
|
482
|
-
export
|
|
483
|
-
export
|
|
484
|
-
export
|
|
485
|
-
export
|
|
486
|
-
export
|
|
487
|
-
export
|
|
488
|
-
export
|
|
489
|
-
export
|
|
482
|
+
export { useDependentState } from '@elastic/eui/src/services/hooks/useDependentState';
|
|
483
|
+
export { useCombinedRefs, setMultipleRefs } from '@elastic/eui/src/services/hooks/useCombinedRefs';
|
|
484
|
+
export { useForceRender } from '@elastic/eui/src/services/hooks/useForceRender';
|
|
485
|
+
export { useLatest } from '@elastic/eui/src/services/hooks/useLatest';
|
|
486
|
+
export { useDeepEqual } from '@elastic/eui/src/services/hooks/useDeepEqual';
|
|
487
|
+
export { isMouseEvent, useMouseMove } from '@elastic/eui/src/services/hooks/useMouseMove';
|
|
488
|
+
export { useIsPointerDown } from '@elastic/eui/src/services/hooks/useIsPointerDown';
|
|
489
|
+
export { useUpdateEffect } from '@elastic/eui/src/services/hooks/useUpdateEffect';
|
|
490
490
|
export { type EuiDisabledProps, useEuiDisabledElement, } from '@elastic/eui/src/services/hooks/useEuiDisabledElement';
|
|
491
491
|
|
|
492
492
|
}
|
|
@@ -12346,6 +12346,8 @@ declare module '@elastic/eui/src/components/flyout/manager/types' {
|
|
|
12346
12346
|
childIconType?: IconType;
|
|
12347
12347
|
/** Stack of child flyouts we navigated away from. */
|
|
12348
12348
|
childHistory: ChildHistoryEntry[];
|
|
12349
|
+
/** Key that scopes this session's history; same Symbol reference = same history group. Always set (from action or Symbol()). */
|
|
12350
|
+
historyKey: symbol;
|
|
12349
12351
|
}
|
|
12350
12352
|
export interface PushPaddingOffsets {
|
|
12351
12353
|
/** Push padding applied to the left side (in pixels) */
|
|
@@ -12376,7 +12378,7 @@ declare module '@elastic/eui/src/components/flyout/manager/types' {
|
|
|
12376
12378
|
export interface FlyoutManagerApi {
|
|
12377
12379
|
state: EuiFlyoutManagerState;
|
|
12378
12380
|
dispatch: (action: Action) => void;
|
|
12379
|
-
addFlyout: (flyoutId: string, title: string, level?: EuiFlyoutLevel, size?: string, iconType?: IconType, minWidth?: number) => void;
|
|
12381
|
+
addFlyout: (flyoutId: string, title: string, level?: EuiFlyoutLevel, size?: string, historyKey?: symbol, iconType?: IconType, minWidth?: number) => void;
|
|
12380
12382
|
closeFlyout: (flyoutId: string) => void;
|
|
12381
12383
|
closeAllFlyouts: () => void;
|
|
12382
12384
|
setActiveFlyout: (flyoutId: string | null) => void;
|
|
@@ -12437,6 +12439,7 @@ declare module '@elastic/eui/src/components/flyout/manager/actions' {
|
|
|
12437
12439
|
title: string;
|
|
12438
12440
|
level: EuiFlyoutLevel;
|
|
12439
12441
|
size?: string;
|
|
12442
|
+
historyKey?: symbol;
|
|
12440
12443
|
iconType?: IconType;
|
|
12441
12444
|
minWidth?: number;
|
|
12442
12445
|
}
|
|
@@ -12513,9 +12516,10 @@ declare module '@elastic/eui/src/components/flyout/manager/actions' {
|
|
|
12513
12516
|
* - `title` is used for the flyout menu.
|
|
12514
12517
|
* - `level` determines whether the flyout is `main` or `child`.
|
|
12515
12518
|
* - Optional `size` is the named EUI size (e.g. `s`, `m`, `l`).
|
|
12519
|
+
* - Optional `historyKey` (Symbol) scopes history; only flyouts with the same reference share Back/history. Omit for a unique group per session.
|
|
12516
12520
|
* - Optional `iconType` is shown next to the session title in the history menu.
|
|
12517
12521
|
*/
|
|
12518
|
-
export const addFlyout: (flyoutId: string, title: string, level?: EuiFlyoutLevel, size?: string, iconType?: IconType, minWidth?: number) => AddFlyoutAction;
|
|
12522
|
+
export const addFlyout: (flyoutId: string, title: string, level?: EuiFlyoutLevel, size?: string, historyKey?: symbol, iconType?: IconType, minWidth?: number) => AddFlyoutAction;
|
|
12519
12523
|
/** Unregister a flyout and update the session accordingly. */
|
|
12520
12524
|
export const closeFlyout: (flyoutId: string) => CloseFlyoutAction;
|
|
12521
12525
|
/** Unregister all flyouts. */
|
|
@@ -12576,7 +12580,7 @@ declare module '@elastic/eui/src/components/flyout/manager/store' {
|
|
|
12576
12580
|
subscribe: (listener: Listener) => () => void;
|
|
12577
12581
|
subscribeToEvents: (listener: EventListener) => () => void;
|
|
12578
12582
|
dispatch: (action: Action) => void;
|
|
12579
|
-
addFlyout: (flyoutId: string, title: string, level?: EuiFlyoutLevel, size?: string, iconType?: IconType, minWidth?: number) => void;
|
|
12583
|
+
addFlyout: (flyoutId: string, title: string, level?: EuiFlyoutLevel, size?: string, historyKey?: symbol, iconType?: IconType, minWidth?: number) => void;
|
|
12580
12584
|
closeFlyout: (flyoutId: string) => void;
|
|
12581
12585
|
closeAllFlyouts: () => void;
|
|
12582
12586
|
setActiveFlyout: (flyoutId: string | null) => void;
|
|
@@ -13095,8 +13099,8 @@ declare module '@elastic/eui/src/components/flyout/flyout.styles' {
|
|
|
13095
13099
|
push: import("@emotion/react").SerializedStyles;
|
|
13096
13100
|
right: import("@emotion/react").SerializedStyles;
|
|
13097
13101
|
left: import("@emotion/react").SerializedStyles;
|
|
13098
|
-
noAnimation: import("@emotion/react").SerializedStyles;
|
|
13099
13102
|
};
|
|
13103
|
+
noAnimation: import("@emotion/react").SerializedStyles;
|
|
13100
13104
|
paddingSizes: {
|
|
13101
13105
|
none: import("@emotion/react").SerializedStyles;
|
|
13102
13106
|
s: import("@emotion/react").SerializedStyles;
|
|
@@ -13373,6 +13377,7 @@ declare module '@elastic/eui/src/components/flyout/manager/flyout_managed' {
|
|
|
13373
13377
|
*/
|
|
13374
13378
|
export interface EuiManagedFlyoutProps extends EuiFlyoutComponentProps {
|
|
13375
13379
|
level: EuiFlyoutLevel;
|
|
13380
|
+
historyKey?: symbol;
|
|
13376
13381
|
flyoutMenuProps?: Omit<EuiFlyoutMenuProps, 'historyItems' | 'showBackButton'>;
|
|
13377
13382
|
onActive?: () => void;
|
|
13378
13383
|
}
|
|
@@ -13499,6 +13504,11 @@ declare module '@elastic/eui/src/components/overlay_mask/overlay_mask' {
|
|
|
13499
13504
|
* React ref to be passed to the wrapping container
|
|
13500
13505
|
*/
|
|
13501
13506
|
maskRef?: Ref<HTMLDivElement> | MutableRefObject<HTMLDivElement>;
|
|
13507
|
+
/**
|
|
13508
|
+
* If enabled, the mask will have a fade in animation.
|
|
13509
|
+
* @default true
|
|
13510
|
+
*/
|
|
13511
|
+
hasAnimation?: boolean;
|
|
13502
13512
|
}
|
|
13503
13513
|
export type EuiOverlayMaskProps = Omit<CommonProps, 'css'> & Omit<Partial<Record<keyof HTMLAttributes<HTMLDivElement>, string>>, keyof EuiOverlayMaskInterface> & EuiOverlayMaskInterface;
|
|
13504
13514
|
export const EuiOverlayMask: FunctionComponent<EuiOverlayMaskProps>;
|
|
@@ -13522,6 +13532,11 @@ declare module '@elastic/eui/src/components/flyout/_flyout_overlay' {
|
|
|
13522
13532
|
* z-index); 'below' to keep them in the flyout stacking level.
|
|
13523
13533
|
*/
|
|
13524
13534
|
headerZindexLocation?: 'above' | 'below';
|
|
13535
|
+
/**
|
|
13536
|
+
* When provided, clips the overlay mask to the container's bounding rect
|
|
13537
|
+
* rather than covering the full viewport.
|
|
13538
|
+
*/
|
|
13539
|
+
containerRect?: DOMRect | null;
|
|
13525
13540
|
}
|
|
13526
13541
|
/**
|
|
13527
13542
|
* Light wrapper for conditionally rendering portals or overlay masks:
|
|
@@ -13531,7 +13546,7 @@ declare module '@elastic/eui/src/components/flyout/_flyout_overlay' {
|
|
|
13531
13546
|
*
|
|
13532
13547
|
* @internal
|
|
13533
13548
|
*/
|
|
13534
|
-
export const EuiFlyoutOverlay: ({ children, isPushed, maskProps, hasOverlayMask, maskZIndex, headerZindexLocation, }: EuiFlyoutOverlayProps) => React.JSX.Element;
|
|
13549
|
+
export const EuiFlyoutOverlay: ({ children, isPushed, maskProps, hasOverlayMask, maskZIndex, headerZindexLocation, containerRect, }: EuiFlyoutOverlayProps) => React.JSX.Element;
|
|
13535
13550
|
|
|
13536
13551
|
}
|
|
13537
13552
|
declare module '@elastic/eui/src/components/resizable_container/types' {
|
|
@@ -14694,10 +14709,16 @@ declare module '@elastic/eui/src/components/flyout/flyout.component' {
|
|
|
14694
14709
|
*/
|
|
14695
14710
|
pushMinBreakpoint?: EuiBreakpointSize;
|
|
14696
14711
|
/**
|
|
14697
|
-
*
|
|
14698
|
-
*
|
|
14712
|
+
* @deprecated - use `hasAnimation` instead
|
|
14713
|
+
* Enables a slide in animation on flyouts
|
|
14714
|
+
* @default true for overlay flyouts, `false` for push flyouts
|
|
14699
14715
|
*/
|
|
14700
14716
|
pushAnimation?: boolean;
|
|
14717
|
+
/**
|
|
14718
|
+
* Enables a slide in animation on flyouts
|
|
14719
|
+
* @default true for overlay flyouts, `false` for push flyouts
|
|
14720
|
+
*/
|
|
14721
|
+
hasAnimation?: boolean;
|
|
14701
14722
|
style?: CSSProperties;
|
|
14702
14723
|
/**
|
|
14703
14724
|
* When the flyout is used as a child in a managed flyout session, setting `true` gives the shaded background style.
|
|
@@ -14809,6 +14830,11 @@ declare module '@elastic/eui/src/components/flyout/flyout' {
|
|
|
14809
14830
|
* @default undefined (auto-inherit when nested, otherwise 'never')
|
|
14810
14831
|
*/
|
|
14811
14832
|
session?: typeof SESSION_START | typeof SESSION_INHERIT | typeof SESSION_NEVER;
|
|
14833
|
+
/**
|
|
14834
|
+
* Optional Symbol to scope flyout history. Only flyouts that receive the same Symbol reference share Back button and history; omit to get a unique group per session.
|
|
14835
|
+
* @default undefined (each session gets a unique key and does not share history)
|
|
14836
|
+
*/
|
|
14837
|
+
historyKey?: symbol;
|
|
14812
14838
|
/**
|
|
14813
14839
|
* Callback fired when the flyout becomes active/visible, which may happen programmatically from history navigation.
|
|
14814
14840
|
*/
|
|
@@ -17043,7 +17069,7 @@ declare module '@elastic/eui/src/services' {
|
|
|
17043
17069
|
export * from '@elastic/eui/src/services/findElement';
|
|
17044
17070
|
export { focusTrapPubSub } from '@elastic/eui/src/services/focus_trap';
|
|
17045
17071
|
export { dateFormatAliases, formatAuto, formatBoolean, formatDate, formatNumber, formatText, } from '@elastic/eui/src/services/format';
|
|
17046
|
-
export
|
|
17072
|
+
export { useDependentState, useCombinedRefs, setMultipleRefs, useForceRender, useLatest, useDeepEqual, isMouseEvent, useMouseMove, useUpdateEffect, useEuiDisabledElement, type EuiDisabledProps, } from '@elastic/eui/src/services/hooks';
|
|
17047
17073
|
export { isEvenlyDivisibleBy, isWithinRange } from '@elastic/eui/src/services/number';
|
|
17048
17074
|
export { Pager } from '@elastic/eui/src/services/paging';
|
|
17049
17075
|
export { calculatePopoverPosition, findPopoverPosition } from '@elastic/eui/src/services/popover';
|
|
@@ -29339,6 +29365,11 @@ declare module '@elastic/eui/src/components/markdown_editor/plugins/remark/remar
|
|
|
29339
29365
|
export const FENCED_CLASS = "remark-prismjs--fenced"; const attacher: Plugin;
|
|
29340
29366
|
export default attacher;
|
|
29341
29367
|
|
|
29368
|
+
}
|
|
29369
|
+
declare module '@elastic/eui/src/components/markdown_editor/plugins/remark/remark_intraword_underscore' {
|
|
29370
|
+
import { Plugin } from 'unified'; const attacher: Plugin;
|
|
29371
|
+
export default attacher;
|
|
29372
|
+
|
|
29342
29373
|
}
|
|
29343
29374
|
declare module '@elastic/eui/src/components/markdown_editor/plugins/markdown_checkbox/types' {
|
|
29344
29375
|
export interface CheckboxNodeDetails {
|
|
@@ -35261,8 +35292,6 @@ declare module '@elastic/eui' {
|
|
|
35261
35292
|
"euiToast.dismissToast": any;
|
|
35262
35293
|
"euiGlobalToastList.clearAllToastsButtonAriaLabel": any;
|
|
35263
35294
|
"euiGlobalToastList.clearAllToastsButtonDisplayText": any;
|
|
35264
|
-
"euiTableHeaderCell.titleTextWithDesc": any;
|
|
35265
|
-
"euiStat.loadingText": any;
|
|
35266
35295
|
"euiStepStrings.step": any;
|
|
35267
35296
|
"euiStepStrings.simpleStep": any;
|
|
35268
35297
|
"euiStepStrings.complete": any;
|
|
@@ -35279,18 +35308,20 @@ declare module '@elastic/eui' {
|
|
|
35279
35308
|
"euiStepStrings.simpleLoading": any;
|
|
35280
35309
|
"euiStepStrings.current": any;
|
|
35281
35310
|
"euiStepStrings.simpleCurrent": any;
|
|
35282
|
-
"
|
|
35283
|
-
"
|
|
35311
|
+
"euiTableHeaderCell.titleTextWithDesc": any;
|
|
35312
|
+
"euiStat.loadingText": any;
|
|
35284
35313
|
"euiSelectable.loadingOptions": any;
|
|
35285
35314
|
"euiSelectable.noMatchingOptions": any;
|
|
35286
35315
|
"euiSelectable.noAvailableOptions": any;
|
|
35287
35316
|
"euiSelectable.screenReaderInstructions": any;
|
|
35288
35317
|
"euiSelectable.placeholderName": any;
|
|
35289
35318
|
"euiSelectable.searchResults": any;
|
|
35290
|
-
"
|
|
35319
|
+
"euiSkeletonLoading.loadedAriaText": any;
|
|
35320
|
+
"euiSkeletonLoading.loadingAriaText": any;
|
|
35291
35321
|
"euiSearchBox.placeholder": any;
|
|
35292
35322
|
"euiSearchBox.incrementalAriaLabel": any;
|
|
35293
35323
|
"euiSearchBox.ariaLabel": any;
|
|
35324
|
+
"euiSideNav.mobileToggleAriaLabel": any;
|
|
35294
35325
|
"euiResizablePanel.toggleButtonAriaLabel": any;
|
|
35295
35326
|
"euiResizableButton.horizontalResizerAriaLabel": any;
|
|
35296
35327
|
"euiResizableButton.verticalResizerAriaLabel": any;
|
|
@@ -35310,10 +35341,10 @@ declare module '@elastic/eui' {
|
|
|
35310
35341
|
"euiPagination.of": any;
|
|
35311
35342
|
"euiPagination.collection": any;
|
|
35312
35343
|
"euiPagination.fromEndLabel": any;
|
|
35313
|
-
"euiMark.highlightStart": any;
|
|
35314
|
-
"euiMark.highlightEnd": any;
|
|
35315
35344
|
"euiModal.screenReaderModalDialog": any;
|
|
35316
35345
|
"euiModal.closeModal": any;
|
|
35346
|
+
"euiMark.highlightStart": any;
|
|
35347
|
+
"euiMark.highlightEnd": any;
|
|
35317
35348
|
"euiMarkdownEditorToolbar.editor": any;
|
|
35318
35349
|
"euiMarkdownEditorToolbar.previewMarkdown": any;
|
|
35319
35350
|
"euiMarkdownEditorHelpButton.mdSyntaxLink": any;
|
|
@@ -35332,31 +35363,32 @@ declare module '@elastic/eui' {
|
|
|
35332
35363
|
"euiLoadingStrings.ariaLabel": any;
|
|
35333
35364
|
"euiExternalLinkIcon.newTarget.screenReaderOnlyText": any;
|
|
35334
35365
|
"euiExternalLinkIcon.externalTarget.screenReaderOnlyText": any;
|
|
35366
|
+
"euiImageButton.openFullScreen": any;
|
|
35367
|
+
"euiImageButton.closeFullScreen": any;
|
|
35335
35368
|
"euiInlineEditForm.saveButtonAriaLabel": any;
|
|
35336
35369
|
"euiInlineEditForm.cancelButtonAriaLabel": any;
|
|
35337
35370
|
"euiInlineEditForm.inputKeyboardInstructions": any;
|
|
35338
35371
|
"euiInlineEditForm.activateEditModeDescription": any;
|
|
35339
|
-
"euiImageButton.openFullScreen": any;
|
|
35340
|
-
"euiImageButton.closeFullScreen": any;
|
|
35341
35372
|
"euiForm.addressFormErrors": any;
|
|
35342
|
-
"euiFilterButton.filterBadgeActiveAriaLabel": any;
|
|
35343
|
-
"euiFilterButton.filterBadgeAvailableAriaLabel": any;
|
|
35344
35373
|
"euiFlyoutMenu.back": any;
|
|
35345
35374
|
"euiFlyoutMenu.history": any;
|
|
35346
35375
|
"euiFlyout.screenReaderModalDialog": any;
|
|
35347
35376
|
"euiFlyout.screenReaderNoOverlayMaskDialog": any;
|
|
35348
35377
|
"euiFlyout.screenReaderFocusTrapShards": any;
|
|
35349
35378
|
"euiFlyoutCloseButton.ariaLabel": any;
|
|
35379
|
+
"euiFilterButton.filterBadgeActiveAriaLabel": any;
|
|
35380
|
+
"euiFilterButton.filterBadgeAvailableAriaLabel": any;
|
|
35350
35381
|
"euiErrorBoundary.error": any;
|
|
35351
35382
|
"euiDataGrid.ariaLabel": any;
|
|
35352
35383
|
"euiDataGrid.ariaLabelledBy": any;
|
|
35353
35384
|
"euiDataGrid.screenReaderNotice": any;
|
|
35354
|
-
"
|
|
35355
|
-
"euiHue.ariaRoleDescription": any;
|
|
35356
|
-
"euiHue.label": any;
|
|
35385
|
+
"euiComboBox.listboxAriaLabel": any;
|
|
35357
35386
|
"euiSaturation.ariaLabel": any;
|
|
35358
35387
|
"euiSaturation.roleDescription": any;
|
|
35359
35388
|
"euiSaturation.screenReaderInstructions": any;
|
|
35389
|
+
"euiHue.ariaValueText": any;
|
|
35390
|
+
"euiHue.ariaRoleDescription": any;
|
|
35391
|
+
"euiHue.label": any;
|
|
35360
35392
|
"euiColorPickerSwatch.ariaLabel": any;
|
|
35361
35393
|
"euiColorPicker.popoverLabel": any;
|
|
35362
35394
|
"euiColorPicker.colorLabel": any;
|
|
@@ -35366,13 +35398,13 @@ declare module '@elastic/eui' {
|
|
|
35366
35398
|
"euiColorPicker.alphaLabel": any;
|
|
35367
35399
|
"euiColorPicker.openLabel": any;
|
|
35368
35400
|
"euiColorPicker.closeLabel": any;
|
|
35401
|
+
"euiColorPicker.ariaLabel": any;
|
|
35369
35402
|
"euiCollapsibleNavBeta.ariaLabel": any;
|
|
35370
|
-
"euiComboBox.listboxAriaLabel": any;
|
|
35371
35403
|
"euiCodeBlockFullScreen.fullscreenCollapse": any;
|
|
35372
35404
|
"euiCodeBlockFullScreen.fullscreenExpand": any;
|
|
35373
35405
|
"euiCodeBlockFullScreen.ariaLabel": any;
|
|
35374
|
-
"euiCodeBlockAnnotations.ariaLabel": any;
|
|
35375
35406
|
"euiCodeBlockCopy.copy": any;
|
|
35407
|
+
"euiCodeBlockAnnotations.ariaLabel": any;
|
|
35376
35408
|
"euiCodeBlock.label": any;
|
|
35377
35409
|
"euiCallOut.dismissAriaLabel": any;
|
|
35378
35410
|
"euiBreadcrumbs.nav.ariaLabel": any;
|
|
@@ -35563,7 +35595,6 @@ declare module '@elastic/eui' {
|
|
|
35563
35595
|
"euiKeyboardShortcuts.escapeDescription": any;
|
|
35564
35596
|
"euiFullscreenSelector.fullscreenButton": any;
|
|
35565
35597
|
"euiFullscreenSelector.fullscreenButtonActive": any;
|
|
35566
|
-
"euiDataGridToolbarControl.badgeAriaLabel": any;
|
|
35567
35598
|
"euiDisplaySelector.densityLabel": any;
|
|
35568
35599
|
"euiDisplaySelector.labelCompact": any;
|
|
35569
35600
|
"euiDisplaySelector.labelNormal": any;
|
|
@@ -35574,6 +35605,13 @@ declare module '@elastic/eui' {
|
|
|
35574
35605
|
"euiDisplaySelector.labelMax": any;
|
|
35575
35606
|
"euiDisplaySelector.buttonText": any;
|
|
35576
35607
|
"euiDisplaySelector.resetButtonText": any;
|
|
35608
|
+
"euiDataGridToolbarControl.badgeAriaLabel": any;
|
|
35609
|
+
"euiColumnSortingDraggable.defaultSortAsc": any;
|
|
35610
|
+
"euiColumnSortingDraggable.defaultSortDesc": any;
|
|
35611
|
+
"euiColumnSortingDraggable.dragHandleAriaLabel": any;
|
|
35612
|
+
"euiColumnSortingDraggable.activeSortLabel": any;
|
|
35613
|
+
"euiColumnSortingDraggable.removeSortLabel": any;
|
|
35614
|
+
"euiColumnSortingDraggable.toggleLegend": any;
|
|
35577
35615
|
"euiColumnSorting.button": any;
|
|
35578
35616
|
"euiColumnSorting.sortFieldAriaLabel": any;
|
|
35579
35617
|
"euiColumnSorting.emptySorting": any;
|
|
@@ -35585,19 +35623,7 @@ declare module '@elastic/eui' {
|
|
|
35585
35623
|
"euiColumnSelector.searchcolumns": any;
|
|
35586
35624
|
"euiColumnSelector.selectAll": any;
|
|
35587
35625
|
"euiColumnSelector.hideAll": any;
|
|
35588
|
-
"
|
|
35589
|
-
"euiColumnSortingDraggable.defaultSortDesc": any;
|
|
35590
|
-
"euiColumnSortingDraggable.dragHandleAriaLabel": any;
|
|
35591
|
-
"euiColumnSortingDraggable.activeSortLabel": any;
|
|
35592
|
-
"euiColumnSortingDraggable.removeSortLabel": any;
|
|
35593
|
-
"euiColumnSortingDraggable.toggleLegend": any;
|
|
35594
|
-
"euiCollapsibleNavButton.ariaLabelExpand": any;
|
|
35595
|
-
"euiCollapsibleNavButton.ariaLabelCollapse": any;
|
|
35596
|
-
"euiCollapsibleNavButton.ariaLabelOpen": any;
|
|
35597
|
-
"euiCollapsibleNavButton.ariaLabelClose": any;
|
|
35598
|
-
"euiCollapsibleNavKibanaSolution.switcherTitle": any;
|
|
35599
|
-
"euiCollapsibleNavKibanaSolution.switcherAriaLabel": any;
|
|
35600
|
-
"euiCollapsibleNavKibanaSolution.groupLabel": any;
|
|
35626
|
+
"euiComboBoxPill.removeSelection": any;
|
|
35601
35627
|
"euiComboBoxOptionsList.loadingOptions": any;
|
|
35602
35628
|
"euiComboBoxOptionsList.delimiterMessage": any;
|
|
35603
35629
|
"euiComboBoxOptionsList.alreadyAdded": any;
|
|
@@ -35605,7 +35631,13 @@ declare module '@elastic/eui' {
|
|
|
35605
35631
|
"euiComboBoxOptionsList.noMatchingOptions": any;
|
|
35606
35632
|
"euiComboBoxOptionsList.noAvailableOptions": any;
|
|
35607
35633
|
"euiComboBoxOptionsList.allOptionsSelected": any;
|
|
35608
|
-
"
|
|
35634
|
+
"euiCollapsibleNavButton.ariaLabelExpand": any;
|
|
35635
|
+
"euiCollapsibleNavButton.ariaLabelCollapse": any;
|
|
35636
|
+
"euiCollapsibleNavButton.ariaLabelOpen": any;
|
|
35637
|
+
"euiCollapsibleNavButton.ariaLabelClose": any;
|
|
35638
|
+
"euiCollapsibleNavKibanaSolution.switcherTitle": any;
|
|
35639
|
+
"euiCollapsibleNavKibanaSolution.switcherAriaLabel": any;
|
|
35640
|
+
"euiCollapsibleNavKibanaSolution.groupLabel": any;
|
|
35609
35641
|
"euiCardSelect.selected": any;
|
|
35610
35642
|
"euiCardSelect.unavailable": any;
|
|
35611
35643
|
"euiCardSelect.select": any;
|
|
@@ -35634,10 +35666,10 @@ declare module '@elastic/eui' {
|
|
|
35634
35666
|
"euiDatePopoverContent.nowTabContent": any;
|
|
35635
35667
|
"euiDatePopoverContent.nowTabButtonStart": any;
|
|
35636
35668
|
"euiDatePopoverContent.nowTabButtonEnd": any;
|
|
35637
|
-
"euiAbsoluteTab.dateFormatButtonLabel": any;
|
|
35638
|
-
"euiAbsoluteTab.dateFormatError": any;
|
|
35639
35669
|
"euiDatePopoverButton.invalidTitle": any;
|
|
35640
35670
|
"euiDatePopoverButton.outdatedTitle": any;
|
|
35671
|
+
"euiAbsoluteTab.dateFormatButtonLabel": any;
|
|
35672
|
+
"euiAbsoluteTab.dateFormatError": any;
|
|
35641
35673
|
"euiDataGridHeaderCell.sortedByAscendingSingle": any;
|
|
35642
35674
|
"euiDataGridHeaderCell.sortedByDescendingSingle": any;
|
|
35643
35675
|
"euiDataGridHeaderCell.sortedByAscendingFirst": any;
|