@elastic/eui 113.2.0 → 113.3.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/basic_table/collapsed_item_actions.js +2 -0
- package/es/components/context_menu/context_menu_item.js +9 -3
- package/es/components/context_menu/context_menu_item.styles.js +6 -2
- package/es/components/date_picker/super_date_picker/time_window_buttons.js +17 -3
- package/es/components/flyout/const.js +10 -0
- package/es/components/flyout/flyout.component.js +47 -59
- package/es/components/flyout/flyout.js +1 -1
- package/es/components/flyout/flyout_menu.js +17 -4
- package/es/components/flyout/manager/actions.js +9 -5
- package/es/components/flyout/manager/flyout_child.js +8 -2
- package/es/components/flyout/manager/flyout_managed.js +24 -13
- package/es/components/flyout/manager/reducer.js +182 -44
- package/es/components/flyout/manager/store.js +67 -12
- package/es/components/flyout/use_flyout_menu.js +70 -0
- package/es/components/form/file_picker/file_picker.js +46 -18
- package/es/components/table/table_row_cell.js +2 -2
- package/eui.d.ts +397 -15
- package/lib/components/basic_table/collapsed_item_actions.js +2 -0
- package/lib/components/context_menu/context_menu_item.js +9 -3
- package/lib/components/context_menu/context_menu_item.styles.js +5 -1
- package/lib/components/date_picker/super_date_picker/time_window_buttons.js +17 -3
- package/lib/components/flyout/const.js +11 -1
- package/lib/components/flyout/flyout.component.js +46 -58
- package/lib/components/flyout/flyout.js +6 -0
- package/lib/components/flyout/flyout_menu.js +17 -4
- package/lib/components/flyout/manager/actions.js +9 -5
- package/lib/components/flyout/manager/flyout_child.js +8 -2
- package/lib/components/flyout/manager/flyout_managed.js +16 -11
- package/lib/components/flyout/manager/reducer.js +181 -43
- package/lib/components/flyout/manager/store.js +67 -14
- package/lib/components/flyout/use_flyout_menu.js +75 -0
- package/lib/components/form/file_picker/file_picker.js +46 -18
- package/lib/components/table/table_row_cell.js +2 -2
- package/optimize/es/components/basic_table/collapsed_item_actions.js +2 -0
- package/optimize/es/components/context_menu/context_menu_item.js +3 -2
- package/optimize/es/components/context_menu/context_menu_item.styles.js +6 -2
- package/optimize/es/components/date_picker/super_date_picker/time_window_buttons.js +17 -3
- package/optimize/es/components/flyout/const.js +10 -0
- package/optimize/es/components/flyout/flyout.component.js +47 -59
- package/optimize/es/components/flyout/flyout.js +1 -1
- package/optimize/es/components/flyout/flyout_menu.js +5 -2
- package/optimize/es/components/flyout/manager/actions.js +9 -5
- package/optimize/es/components/flyout/manager/flyout_managed.js +16 -11
- package/optimize/es/components/flyout/manager/reducer.js +182 -44
- package/optimize/es/components/flyout/manager/store.js +62 -12
- package/optimize/es/components/flyout/use_flyout_menu.js +69 -0
- package/optimize/es/components/form/file_picker/file_picker.js +35 -18
- package/optimize/es/components/table/table_row_cell.js +2 -2
- package/optimize/lib/components/basic_table/collapsed_item_actions.js +2 -0
- package/optimize/lib/components/context_menu/context_menu_item.js +3 -2
- package/optimize/lib/components/context_menu/context_menu_item.styles.js +5 -1
- package/optimize/lib/components/date_picker/super_date_picker/time_window_buttons.js +17 -3
- package/optimize/lib/components/flyout/const.js +11 -1
- package/optimize/lib/components/flyout/flyout.component.js +46 -58
- package/optimize/lib/components/flyout/flyout.js +6 -0
- package/optimize/lib/components/flyout/flyout_menu.js +5 -2
- package/optimize/lib/components/flyout/manager/actions.js +9 -5
- package/optimize/lib/components/flyout/manager/flyout_managed.js +16 -11
- package/optimize/lib/components/flyout/manager/reducer.js +181 -43
- package/optimize/lib/components/flyout/manager/store.js +63 -12
- package/optimize/lib/components/flyout/use_flyout_menu.js +74 -0
- package/optimize/lib/components/form/file_picker/file_picker.js +35 -18
- package/optimize/lib/components/table/table_row_cell.js +2 -2
- package/package.json +3 -3
- package/test-env/components/basic_table/collapsed_item_actions.js +2 -0
- package/test-env/components/context_menu/context_menu_item.js +9 -3
- package/test-env/components/context_menu/context_menu_item.styles.js +5 -1
- package/test-env/components/date_picker/super_date_picker/time_window_buttons.js +17 -3
- package/test-env/components/flyout/const.js +11 -1
- package/test-env/components/flyout/flyout.component.js +46 -58
- package/test-env/components/flyout/flyout_menu.js +17 -4
- package/test-env/components/flyout/manager/actions.js +9 -5
- package/test-env/components/flyout/manager/flyout_child.js +8 -2
- package/test-env/components/flyout/manager/flyout_managed.js +16 -11
- package/test-env/components/flyout/manager/reducer.js +181 -43
- package/test-env/components/flyout/manager/store.js +63 -12
- package/test-env/components/flyout/use_flyout_menu.js +74 -0
- package/test-env/components/form/file_picker/file_picker.js +46 -18
- package/test-env/components/table/table_row_cell.js +2 -2
|
@@ -64,6 +64,7 @@ export var CollapsedItemActions = function CollapsedItemActions(_ref) {
|
|
|
64
64
|
var toolTipContent = callWithItemIfFunction(item)(action.description);
|
|
65
65
|
var href = callWithItemIfFunction(item)(action.href);
|
|
66
66
|
var dataTestSubj = callWithItemIfFunction(item)(action['data-test-subj']);
|
|
67
|
+
var color = action.color ? callWithItemIfFunction(item)(action.color) : undefined;
|
|
67
68
|
var _onClick = action.onClick,
|
|
68
69
|
target = action.target;
|
|
69
70
|
controls.push(___EmotionJSX(EuiContextMenuItem, {
|
|
@@ -73,6 +74,7 @@ export var CollapsedItemActions = function CollapsedItemActions(_ref) {
|
|
|
73
74
|
href: href,
|
|
74
75
|
target: target,
|
|
75
76
|
icon: icon,
|
|
77
|
+
color: color,
|
|
76
78
|
"data-test-subj": dataTestSubj,
|
|
77
79
|
onClick: function onClick(event) {
|
|
78
80
|
event.persist();
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var _excluded = ["children", "className", "hasPanel", "icon", "buttonRef", "disabled", "layoutAlign", "toolTipContent", "toolTipProps", "href", "target", "rel", "size"];
|
|
1
|
+
var _excluded = ["children", "className", "hasPanel", "icon", "buttonRef", "disabled", "layoutAlign", "toolTipContent", "toolTipProps", "href", "target", "rel", "size", "color"];
|
|
2
2
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
3
3
|
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], t.indexOf(o) >= 0 || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|
4
4
|
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.indexOf(n) >= 0) continue; t[n] = r[n]; } return t; }
|
|
@@ -43,12 +43,13 @@ export var EuiContextMenuItem = function EuiContextMenuItem(_ref) {
|
|
|
43
43
|
rel = _ref.rel,
|
|
44
44
|
_ref$size = _ref.size,
|
|
45
45
|
size = _ref$size === void 0 ? 'm' : _ref$size,
|
|
46
|
+
color = _ref.color,
|
|
46
47
|
rest = _objectWithoutProperties(_ref, _excluded);
|
|
47
48
|
var isHrefValid = !href || validateHref(href);
|
|
48
49
|
var disabled = _disabled || !isHrefValid;
|
|
49
50
|
var classes = classNames('euiContextMenuItem', className);
|
|
50
51
|
var styles = useEuiMemoizedStyles(euiContextMenuItemStyles);
|
|
51
|
-
var cssStyles = [styles.euiContextMenuItem, styles.sizes[size], styles.layoutAlign[layoutAlign], disabled && styles.disabled];
|
|
52
|
+
var cssStyles = [styles.euiContextMenuItem, styles.sizes[size], styles.layoutAlign[layoutAlign], disabled && styles.disabled, !disabled && color && styles.colors[color]];
|
|
52
53
|
var iconInstance = icon && (typeof icon === 'string' ? ___EmotionJSX(EuiIcon, {
|
|
53
54
|
type: icon,
|
|
54
55
|
size: "m",
|
|
@@ -144,5 +145,10 @@ EuiContextMenuItem.propTypes = {
|
|
|
144
145
|
/**
|
|
145
146
|
* Reduce the size to `s` when in need of a more compressed menu
|
|
146
147
|
*/
|
|
147
|
-
size: PropTypes.any
|
|
148
|
+
size: PropTypes.any,
|
|
149
|
+
/**
|
|
150
|
+
* Applies a color to the text and icon of the item.
|
|
151
|
+
* Accepts the same color values as `EuiButtonEmpty`.
|
|
152
|
+
*/
|
|
153
|
+
color: PropTypes.any
|
|
148
154
|
};
|
|
@@ -8,7 +8,7 @@ function _EMOTION_STRINGIFIED_CSS_ERROR__() { return "You have tried to stringif
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
import { css } from '@emotion/react';
|
|
11
|
-
import { logicalCSS, logicalTextAlignCSS, euiFontSize } from '../../global_styling';
|
|
11
|
+
import { logicalCSS, logicalTextAlignCSS, euiFontSize, EXTENDED_BUTTON_COLORS, euiButtonEmptyColor } from '../../global_styling';
|
|
12
12
|
var _ref = process.env.NODE_ENV === "production" ? {
|
|
13
13
|
name: "4ak4s8-euiContextMenuItem__arrow",
|
|
14
14
|
styles: "align-self:flex-end;label:euiContextMenuItem__arrow;"
|
|
@@ -77,6 +77,10 @@ export var euiContextMenuItemStyles = function euiContextMenuItemStyles(euiTheme
|
|
|
77
77
|
euiContextMenuItem__text: _ref2,
|
|
78
78
|
s: /*#__PURE__*/css(euiFontSize(euiThemeContext, 's'), ";;label:s;")
|
|
79
79
|
},
|
|
80
|
-
euiContextMenuItem__arrow: _ref
|
|
80
|
+
euiContextMenuItem__arrow: _ref,
|
|
81
|
+
// Colors - maps button color names to text color overrides
|
|
82
|
+
colors: Object.fromEntries(EXTENDED_BUTTON_COLORS.map(function (color) {
|
|
83
|
+
return [color, /*#__PURE__*/css("color:", euiButtonEmptyColor(euiThemeContext, color).color, ";;label:colors;")];
|
|
84
|
+
}))
|
|
81
85
|
};
|
|
82
86
|
};
|
|
@@ -152,11 +152,20 @@ export var EuiTimeWindowButtons = function EuiTimeWindowButtons(_ref) {
|
|
|
152
152
|
export function useEuiTimeWindow(start, end, apply, options) {
|
|
153
153
|
var _options$zoomFactor;
|
|
154
154
|
var min = dateMath.parse(start);
|
|
155
|
+
|
|
156
|
+
/* `roundUp: true` will result in an "inclusive" time (e.g. 23:59:59.999 for 'now/d').
|
|
157
|
+
It only changes the value for relative expressions (e.g. 'now/d') but not absolute ISO strings. */
|
|
155
158
|
var max = dateMath.parse(end, {
|
|
156
159
|
roundUp: true
|
|
157
160
|
});
|
|
158
161
|
var isInvalid = !min || !min.isValid() || !max || !max.isValid();
|
|
159
|
-
|
|
162
|
+
/* An end at .999ms is always considered an inclusive boundary (either as result of `roundUp: true`
|
|
163
|
+
or entered manually).
|
|
164
|
+
To avoid a 1ms drift on every time window or zoom step, windowDuration has to be increased by 1ms.
|
|
165
|
+
This ensures the window is always at a clean boundary (e.g. 00:00:00.000 - 23:59:59.999). */
|
|
166
|
+
var isInclusiveBoundary = !isInvalid && max.milliseconds() === 999;
|
|
167
|
+
var endBoundary = !isInvalid ? isInclusiveBoundary ? moment(max).add(1, 'ms') : moment(max) : null;
|
|
168
|
+
var windowDuration = isInvalid || !endBoundary ? -1 : endBoundary.diff(min);
|
|
160
169
|
var isWindowDurationZero = windowDuration === 0;
|
|
161
170
|
var zoomFactor = getPercentageMultiplier((_options$zoomFactor = options === null || options === void 0 ? void 0 : options.zoomFactor) !== null && _options$zoomFactor !== void 0 ? _options$zoomFactor : ZOOM_FACTOR_DEFAULT);
|
|
162
171
|
var zoomDelta = windowDuration * (zoomFactor / 2); // Gets added to each end, that's why it's split in half
|
|
@@ -177,7 +186,10 @@ export function useEuiTimeWindow(start, end, apply, options) {
|
|
|
177
186
|
function stepForward() {
|
|
178
187
|
if (isInvalid || isWindowDurationZero) return;
|
|
179
188
|
apply({
|
|
180
|
-
|
|
189
|
+
/* Prevent 1ms drifts for inclusive boundaries by using the exclusive max (+ 1ms)
|
|
190
|
+
as the start of the next window (e.g. 00:00:00.000 instead of 23:59:59.999) */
|
|
191
|
+
start: (isInclusiveBoundary ? endBoundary // `!` is safe here because we early return on `isInvalid`
|
|
192
|
+
: moment(max)).toISOString(),
|
|
181
193
|
end: moment(max).add(windowDuration, 'ms').toISOString()
|
|
182
194
|
});
|
|
183
195
|
}
|
|
@@ -185,7 +197,9 @@ export function useEuiTimeWindow(start, end, apply, options) {
|
|
|
185
197
|
if (isInvalid || isWindowDurationZero) return;
|
|
186
198
|
apply({
|
|
187
199
|
start: moment(min).subtract(windowDuration, 'ms').toISOString(),
|
|
188
|
-
|
|
200
|
+
/* Prevent 1ms drifts for inclusive boundaries by using the exclusive min (- 1ms)
|
|
201
|
+
as the end of the previous window (e.g. 23:59:59.999 instead of 00:00:00.000) */
|
|
202
|
+
end: (isInclusiveBoundary ? moment(min).subtract(1, 'ms') : moment(min)).toISOString()
|
|
189
203
|
});
|
|
190
204
|
}
|
|
191
205
|
function expandWindow() {
|
|
@@ -18,6 +18,14 @@ export var FLYOUT_SIDES = ['left', 'right'];
|
|
|
18
18
|
export var FLYOUT_SIZES = ['s', 'm', 'l', 'fill'];
|
|
19
19
|
/** Type representing a supported named flyout size. */
|
|
20
20
|
|
|
21
|
+
/** Menu display mode: always render menu when flyoutMenuProps is provided. */
|
|
22
|
+
export var MENU_DISPLAY_ALWAYS = 'always';
|
|
23
|
+
/** Menu display mode: only render menu when it has content (back button, history, title, or custom actions). */
|
|
24
|
+
export var MENU_DISPLAY_AUTO = 'auto';
|
|
25
|
+
/** Allowed flyout menu display modes. */
|
|
26
|
+
export var FLYOUT_MENU_DISPLAY_MODES = [MENU_DISPLAY_ALWAYS, MENU_DISPLAY_AUTO];
|
|
27
|
+
/** Type representing a supported flyout menu display mode. */
|
|
28
|
+
|
|
21
29
|
/** Allowed padding sizes for flyout content. */
|
|
22
30
|
export var FLYOUT_PADDING_SIZES = ['none', 's', 'm', 'l'];
|
|
23
31
|
/** Type representing a supported flyout padding size. */
|
|
@@ -32,6 +40,8 @@ export var DEFAULT_SIDE = 'right';
|
|
|
32
40
|
export var DEFAULT_SIZE = 'm';
|
|
33
41
|
/** Default padding size inside flyouts. */
|
|
34
42
|
export var DEFAULT_PADDING_SIZE = 'l';
|
|
43
|
+
/** Default flyout menu display mode. */
|
|
44
|
+
export var DEFAULT_MENU_DISPLAY_MODE = MENU_DISPLAY_AUTO;
|
|
35
45
|
|
|
36
46
|
/**
|
|
37
47
|
* Custom type checker for named flyout sizes since the prop
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
-
var _excluded = ["className", "children", "as", "hideCloseButton", "flyoutMenuProps", "closeButtonProps", "closeButtonPosition", "onClose", "ownFocus", "side", "size", "paddingSize", "maxWidth", "style", "hasChildBackground", "maskProps", "type", "outsideClickCloses", "pushMinBreakpoint", "pushAnimation", "focusTrapProps", "includeFixedHeadersInFocusTrap", "includeSelectorInFocusTrap", "aria-describedby", "aria-labelledby", "id", "resizable", "minWidth", "onResize", "onAnimationEnd", "container"]
|
|
3
|
-
_excluded2 = ["titleId"];
|
|
2
|
+
var _excluded = ["className", "children", "as", "hideCloseButton", "flyoutMenuProps", "flyoutMenuDisplayMode", "closeButtonProps", "closeButtonPosition", "onClose", "ownFocus", "side", "size", "paddingSize", "maxWidth", "style", "hasChildBackground", "maskProps", "type", "outsideClickCloses", "pushMinBreakpoint", "pushAnimation", "focusTrapProps", "includeFixedHeadersInFocusTrap", "includeSelectorInFocusTrap", "aria-describedby", "aria-labelledby", "id", "resizable", "minWidth", "onResize", "onAnimationEnd", "container"];
|
|
4
3
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
5
4
|
function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }
|
|
6
5
|
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
@@ -41,7 +40,7 @@ import { EuiScreenReaderOnly } from '../accessibility';
|
|
|
41
40
|
import { EuiFlyoutCloseButton } from './_flyout_close_button';
|
|
42
41
|
import { euiFlyoutStyles, composeFlyoutInlineStyles } from './flyout.styles';
|
|
43
42
|
import { usePropsWithComponentDefaults } from '../provider/component_defaults';
|
|
44
|
-
import { DEFAULT_PADDING_SIZE, DEFAULT_PUSH_MIN_BREAKPOINT, DEFAULT_SIDE, DEFAULT_SIZE, DEFAULT_TYPE, isEuiFlyoutSizeNamed } from './const';
|
|
43
|
+
import { DEFAULT_MENU_DISPLAY_MODE, DEFAULT_PADDING_SIZE, DEFAULT_PUSH_MIN_BREAKPOINT, DEFAULT_SIDE, DEFAULT_SIZE, DEFAULT_TYPE, isEuiFlyoutSizeNamed } from './const';
|
|
45
44
|
import { useIsPushed } from './hooks';
|
|
46
45
|
import { EuiFlyoutMenu } from './flyout_menu';
|
|
47
46
|
import { EuiFlyoutOverlay } from './_flyout_overlay';
|
|
@@ -49,6 +48,7 @@ import { EuiFlyoutResizeButton } from './_flyout_resize_button';
|
|
|
49
48
|
import { useEuiFlyoutResizable } from './use_flyout_resizable';
|
|
50
49
|
import { useEuiFlyoutZIndex } from './use_flyout_z_index';
|
|
51
50
|
import { EuiFlyoutParentProvider } from './flyout_parent_context';
|
|
51
|
+
import { useEuiFlyoutMenu } from './use_flyout_menu';
|
|
52
52
|
import { jsx as ___EmotionJSX } from "@emotion/react";
|
|
53
53
|
/**
|
|
54
54
|
* Resolves the container prop (element, getter, or selector string) to an
|
|
@@ -75,40 +75,42 @@ export var EuiFlyoutComponent = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
75
75
|
_usePropsWithComponen2 = _usePropsWithComponen.hideCloseButton,
|
|
76
76
|
hideCloseButton = _usePropsWithComponen2 === void 0 ? false : _usePropsWithComponen2,
|
|
77
77
|
_flyoutMenuProps = _usePropsWithComponen.flyoutMenuProps,
|
|
78
|
+
_usePropsWithComponen3 = _usePropsWithComponen.flyoutMenuDisplayMode,
|
|
79
|
+
flyoutMenuDisplayMode = _usePropsWithComponen3 === void 0 ? DEFAULT_MENU_DISPLAY_MODE : _usePropsWithComponen3,
|
|
78
80
|
closeButtonProps = _usePropsWithComponen.closeButtonProps,
|
|
79
|
-
|
|
80
|
-
closeButtonPosition =
|
|
81
|
+
_usePropsWithComponen4 = _usePropsWithComponen.closeButtonPosition,
|
|
82
|
+
closeButtonPosition = _usePropsWithComponen4 === void 0 ? 'inside' : _usePropsWithComponen4,
|
|
81
83
|
onClose = _usePropsWithComponen.onClose,
|
|
82
|
-
|
|
83
|
-
ownFocus =
|
|
84
|
-
|
|
85
|
-
side =
|
|
86
|
-
|
|
87
|
-
_size =
|
|
88
|
-
|
|
89
|
-
paddingSize =
|
|
90
|
-
|
|
91
|
-
maxWidth =
|
|
84
|
+
_usePropsWithComponen5 = _usePropsWithComponen.ownFocus,
|
|
85
|
+
ownFocus = _usePropsWithComponen5 === void 0 ? true : _usePropsWithComponen5,
|
|
86
|
+
_usePropsWithComponen6 = _usePropsWithComponen.side,
|
|
87
|
+
side = _usePropsWithComponen6 === void 0 ? DEFAULT_SIDE : _usePropsWithComponen6,
|
|
88
|
+
_usePropsWithComponen7 = _usePropsWithComponen.size,
|
|
89
|
+
_size = _usePropsWithComponen7 === void 0 ? DEFAULT_SIZE : _usePropsWithComponen7,
|
|
90
|
+
_usePropsWithComponen8 = _usePropsWithComponen.paddingSize,
|
|
91
|
+
paddingSize = _usePropsWithComponen8 === void 0 ? DEFAULT_PADDING_SIZE : _usePropsWithComponen8,
|
|
92
|
+
_usePropsWithComponen9 = _usePropsWithComponen.maxWidth,
|
|
93
|
+
maxWidth = _usePropsWithComponen9 === void 0 ? false : _usePropsWithComponen9,
|
|
92
94
|
style = _usePropsWithComponen.style,
|
|
93
|
-
|
|
94
|
-
hasChildBackground =
|
|
95
|
+
_usePropsWithComponen10 = _usePropsWithComponen.hasChildBackground,
|
|
96
|
+
hasChildBackground = _usePropsWithComponen10 === void 0 ? false : _usePropsWithComponen10,
|
|
95
97
|
maskProps = _usePropsWithComponen.maskProps,
|
|
96
|
-
|
|
97
|
-
type =
|
|
98
|
+
_usePropsWithComponen11 = _usePropsWithComponen.type,
|
|
99
|
+
type = _usePropsWithComponen11 === void 0 ? DEFAULT_TYPE : _usePropsWithComponen11,
|
|
98
100
|
outsideClickCloses = _usePropsWithComponen.outsideClickCloses,
|
|
99
|
-
|
|
100
|
-
pushMinBreakpoint =
|
|
101
|
-
|
|
102
|
-
pushAnimation =
|
|
101
|
+
_usePropsWithComponen12 = _usePropsWithComponen.pushMinBreakpoint,
|
|
102
|
+
pushMinBreakpoint = _usePropsWithComponen12 === void 0 ? DEFAULT_PUSH_MIN_BREAKPOINT : _usePropsWithComponen12,
|
|
103
|
+
_usePropsWithComponen13 = _usePropsWithComponen.pushAnimation,
|
|
104
|
+
pushAnimation = _usePropsWithComponen13 === void 0 ? false : _usePropsWithComponen13,
|
|
103
105
|
_focusTrapProps = _usePropsWithComponen.focusTrapProps,
|
|
104
|
-
|
|
105
|
-
includeFixedHeadersInFocusTrap =
|
|
106
|
+
_usePropsWithComponen14 = _usePropsWithComponen.includeFixedHeadersInFocusTrap,
|
|
107
|
+
includeFixedHeadersInFocusTrap = _usePropsWithComponen14 === void 0 ? true : _usePropsWithComponen14,
|
|
106
108
|
includeSelectorInFocusTrap = _usePropsWithComponen.includeSelectorInFocusTrap,
|
|
107
109
|
_ariaDescribedBy = _usePropsWithComponen['aria-describedby'],
|
|
108
110
|
_ariaLabelledBy = _usePropsWithComponen['aria-labelledby'],
|
|
109
111
|
id = _usePropsWithComponen.id,
|
|
110
|
-
|
|
111
|
-
resizable =
|
|
112
|
+
_usePropsWithComponen15 = _usePropsWithComponen.resizable,
|
|
113
|
+
resizable = _usePropsWithComponen15 === void 0 ? false : _usePropsWithComponen15,
|
|
112
114
|
minWidth = _usePropsWithComponen.minWidth,
|
|
113
115
|
onResize = _usePropsWithComponen.onResize,
|
|
114
116
|
onAnimationEnd = _usePropsWithComponen.onAnimationEnd,
|
|
@@ -166,6 +168,21 @@ export var EuiFlyoutComponent = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
166
168
|
var layoutMode = (_managerState$layoutM = managerState === null || managerState === void 0 ? void 0 : managerState.layoutMode) !== null && _managerState$layoutM !== void 0 ? _managerState$layoutM : LAYOUT_MODE_SIDE_BY_SIDE;
|
|
167
169
|
var isActiveManagedFlyout = (currentSession === null || currentSession === void 0 ? void 0 : currentSession.mainFlyoutId) === flyoutId || (currentSession === null || currentSession === void 0 ? void 0 : currentSession.childFlyoutId) === flyoutId;
|
|
168
170
|
var currentZIndexRef = useRef((_managerState$current = managerState === null || managerState === void 0 ? void 0 : managerState.currentZIndex) !== null && _managerState$current !== void 0 ? _managerState$current : 0);
|
|
171
|
+
var _useEuiFlyoutMenu = useEuiFlyoutMenu({
|
|
172
|
+
flyoutMenuProps: _flyoutMenuProps,
|
|
173
|
+
flyoutMenuDisplayMode: flyoutMenuDisplayMode,
|
|
174
|
+
ariaLabelledBy: _ariaLabelledBy
|
|
175
|
+
}),
|
|
176
|
+
flyoutMenuId = _useEuiFlyoutMenu.flyoutMenuId,
|
|
177
|
+
flyoutMenuProps = _useEuiFlyoutMenu.flyoutMenuProps,
|
|
178
|
+
shouldRenderMenu = _useEuiFlyoutMenu.shouldRenderMenu,
|
|
179
|
+
ariaLabelledBy = _useEuiFlyoutMenu.ariaLabelledBy;
|
|
180
|
+
useEffect(function () {
|
|
181
|
+
if (process.env.NODE_ENV === 'development' && _flyoutMenuProps && 'hideTitle' in _flyoutMenuProps) {
|
|
182
|
+
console.warn('EuiFlyout: `flyoutMenuProps.hideTitle` is deprecated. Use `EuiFlyoutHeader` for visible titles instead.');
|
|
183
|
+
}
|
|
184
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
185
|
+
}, []);
|
|
169
186
|
|
|
170
187
|
// Use a ref to access the latest flyoutManager without triggering effect re-runs
|
|
171
188
|
var flyoutManagerRef = useRef(flyoutManager);
|
|
@@ -614,34 +631,6 @@ export var EuiFlyoutComponent = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
614
631
|
})));
|
|
615
632
|
}, [hasOverlayMask, descriptionId, focusTrapShards.length]);
|
|
616
633
|
|
|
617
|
-
/*
|
|
618
|
-
* If the flyout menu is to be rendered, ensure the flyout has aria-labelledby referencing the menu's titleId
|
|
619
|
-
*/
|
|
620
|
-
var generatedMenuId = useGeneratedHtmlId();
|
|
621
|
-
var _ref = _flyoutMenuProps || {},
|
|
622
|
-
_titleId = _ref.titleId,
|
|
623
|
-
flyoutMenuProps = _objectWithoutProperties(_ref, _excluded2);
|
|
624
|
-
var hasMenu = !!_flyoutMenuProps;
|
|
625
|
-
var flyoutMenuId = useMemo(function () {
|
|
626
|
-
if (!hasMenu) return undefined;
|
|
627
|
-
return _titleId || generatedMenuId;
|
|
628
|
-
}, [hasMenu, _titleId, generatedMenuId]);
|
|
629
|
-
|
|
630
|
-
// If the flyout level is LEVEL_MAIN, the title should be hidden by default
|
|
631
|
-
var flyoutMenuHideTitle = useMemo(function () {
|
|
632
|
-
if (!hasMenu) return undefined;
|
|
633
|
-
if ((_flyoutMenuProps === null || _flyoutMenuProps === void 0 ? void 0 : _flyoutMenuProps.hideTitle) !== undefined) {
|
|
634
|
-
return _flyoutMenuProps.hideTitle;
|
|
635
|
-
}
|
|
636
|
-
return (currentSession === null || currentSession === void 0 ? void 0 : currentSession.mainFlyoutId) === flyoutId;
|
|
637
|
-
}, [hasMenu, _flyoutMenuProps, currentSession, flyoutId]);
|
|
638
|
-
var ariaLabelledBy = useMemo(function () {
|
|
639
|
-
if (flyoutMenuId) {
|
|
640
|
-
return classnames(flyoutMenuId, _ariaLabelledBy);
|
|
641
|
-
}
|
|
642
|
-
return _ariaLabelledBy;
|
|
643
|
-
}, [flyoutMenuId, _ariaLabelledBy]);
|
|
644
|
-
|
|
645
634
|
/*
|
|
646
635
|
* Trap focus even when `ownFocus={false}`, otherwise closing
|
|
647
636
|
* the flyout won't return focus to the originating button.
|
|
@@ -709,13 +698,12 @@ export var EuiFlyoutComponent = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
709
698
|
"aria-labelledby": ariaLabelledBy,
|
|
710
699
|
"data-autofocus": !isPushed || undefined,
|
|
711
700
|
onAnimationEnd: onAnimationEnd
|
|
712
|
-
}), !isPushed && screenReaderDescription,
|
|
701
|
+
}), !isPushed && screenReaderDescription, shouldRenderMenu ? ___EmotionJSX(EuiFlyoutMenu, _extends({}, flyoutMenuProps, {
|
|
702
|
+
titleId: flyoutMenuId
|
|
703
|
+
})) : !hideCloseButton && ___EmotionJSX(EuiFlyoutCloseButton, _extends({}, closeButtonProps, {
|
|
713
704
|
onClose: handleClose,
|
|
714
705
|
closeButtonPosition: closeButtonPosition,
|
|
715
706
|
side: side
|
|
716
|
-
})), _flyoutMenuProps && ___EmotionJSX(EuiFlyoutMenu, _extends({}, flyoutMenuProps, {
|
|
717
|
-
hideTitle: flyoutMenuHideTitle,
|
|
718
|
-
titleId: flyoutMenuId
|
|
719
707
|
})), resizable && ___EmotionJSX(EuiFlyoutResizeButton, {
|
|
720
708
|
type: type,
|
|
721
709
|
side: side,
|
|
@@ -19,7 +19,7 @@ import { EuiFlyoutMenuContext } from './flyout_menu_context';
|
|
|
19
19
|
import { useIsInsideParentFlyout } from './flyout_parent_context';
|
|
20
20
|
import { SESSION_INHERIT, SESSION_NEVER, SESSION_START } from './manager/const';
|
|
21
21
|
import { jsx as ___EmotionJSX } from "@emotion/react";
|
|
22
|
-
export { FLYOUT_SIDES, FLYOUT_PADDING_SIZES, FLYOUT_SIZES, FLYOUT_TYPES } from './const';
|
|
22
|
+
export { FLYOUT_SIDES, FLYOUT_PADDING_SIZES, FLYOUT_SIZES, FLYOUT_TYPES, FLYOUT_MENU_DISPLAY_MODES } from './const';
|
|
23
23
|
export var EuiFlyout = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
24
24
|
var _usePropsWithComponen = usePropsWithComponentDefaults('EuiFlyout', props),
|
|
25
25
|
as = _usePropsWithComponen.as,
|
|
@@ -82,6 +82,7 @@ var HistoryPopover = function HistoryPopover(_ref) {
|
|
|
82
82
|
return ___EmotionJSX(EuiListGroupItem, {
|
|
83
83
|
key: "history-item-".concat(index),
|
|
84
84
|
label: item.title,
|
|
85
|
+
iconType: item.iconType,
|
|
85
86
|
size: "s",
|
|
86
87
|
onClick: function onClick() {
|
|
87
88
|
item.onClick();
|
|
@@ -105,7 +106,8 @@ export var EuiFlyoutMenu = function EuiFlyoutMenu(_ref2) {
|
|
|
105
106
|
var className = _ref2.className,
|
|
106
107
|
title = _ref2.title,
|
|
107
108
|
titleId = _ref2.titleId,
|
|
108
|
-
hideTitle = _ref2.hideTitle,
|
|
109
|
+
_ref2$hideTitle = _ref2.hideTitle,
|
|
110
|
+
hideTitle = _ref2$hideTitle === void 0 ? true : _ref2$hideTitle,
|
|
109
111
|
hideCloseButton = _ref2.hideCloseButton,
|
|
110
112
|
_ref2$historyItems = _ref2.historyItems,
|
|
111
113
|
historyItems = _ref2$historyItems === void 0 ? [] : _ref2$historyItems,
|
|
@@ -136,7 +138,8 @@ export var EuiFlyoutMenu = function EuiFlyoutMenu(_ref2) {
|
|
|
136
138
|
});
|
|
137
139
|
return ___EmotionJSX("div", _extends({
|
|
138
140
|
className: classes,
|
|
139
|
-
css: styles.euiFlyoutMenu__container
|
|
141
|
+
css: styles.euiFlyoutMenu__container,
|
|
142
|
+
"data-test-subj": "euiFlyoutMenu"
|
|
140
143
|
}, rest), ___EmotionJSX(EuiFlexGroup, {
|
|
141
144
|
alignItems: "center",
|
|
142
145
|
justifyContent: "spaceBetween",
|
|
@@ -193,8 +196,14 @@ EuiFlyoutMenu.propTypes = {
|
|
|
193
196
|
*/
|
|
194
197
|
title: PropTypes.node,
|
|
195
198
|
/**
|
|
196
|
-
*
|
|
197
|
-
|
|
199
|
+
* An optional icon to display next to the session title in the history menu
|
|
200
|
+
*/
|
|
201
|
+
iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "alignBottom", "alignBottomLeft", "alignBottomRight", "alignCenterHorizontal", "alignCenterVertical", "alignLeft", "alignRight", "alignTop", "alignTopLeft", "alignTopRight", "alert", "analyzeEvent", "annotation", "anomalyChart", "chartAnomaly", "anomalySwimLane", "apmApp", "apmTrace", "chartWaterfall", "appSearchApp", "apps", "arrowDown", "chevronSingleDown", "arrowLeft", "chevronSingleLeft", "arrowRight", "chevronSingleRight", "arrowUp", "chevronSingleUp", "arrowStart", "chevronLimitLeft", "arrowEnd", "chevronLimitRight", "article", "asterisk", "at", "archive", "axisX", "axisYLeft", "axisYRight", "auditbeatApp", "backgroundTask", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "briefcase", "branchUser", "broom", "brush", "bug", "bulb", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "chartChangePoint", "chartArea", "chartAreaStack", "chartBarHorizontal", "chartBarHorizontalStack", "chartBarVertical", "chartBarVerticalStack", "chartGauge", "chartHeatmap", "chartLine", "chartPie", "chartTagCloud", "chartThreshold", "check", "checkCircle", "checkInCircleFilled", "checkCircleFill", "cheer", "popper", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "clockControl", "cloud", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "code", "codeApp", "color", "paintBucket", "commandLine", "comment", "compare", "compute", "processor", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "contrast", "contrastHigh", "contrastFill", "controls", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "crossProjectSearch", "createAdvancedJob", "createGenericJob", "createGeoJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crossCircle", "crosshair", "crosshairs", "currency", "money", "cut", "scissors", "dashboardApp", "dashedCircle", "dataVisualizer", "database", "desktop", "display", "devToolsApp", "diff", "discoverApp", "distributeHorizontal", "distributeVertical", "download", "drag", "dragHorizontal", "dragVertical", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "chevronDoubleLeft", "doubleArrowRight", "chevronDoubleRight", "ellipsis", "editorAlignCenter", "textAlignCenter", "editorAlignLeft", "textAlignLeft", "editorAlignRight", "textAlignRight", "editorBold", "textBold", "editorChecklist", "listCheck", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "textHeading", "editorItalic", "textItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "listNumber", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "redo", "editorStrike", "textStrike", "editorTable", "table", "editorUnderline", "textUnderline", "editorUndo", "undo", "editorUnorderedList", "listBullet", "email", "mail", "empty", "emsApp", "endpoint", "eql", "query", "eraser", "error", "errorFilled", "errorFill", "esqlVis", "exit", "logOut", "expand", "maximize", "expandMini", "export", "exportAction", "upload", "external", "eye", "eyeClosed", "eyeSlash", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "tableInfo", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flask", "flag", "fleetApp", "fold", "folder", "folderClosed", "folderClose", "folderCheck", "folderExclamation", "folderOpen", "folderOpened", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "hourglass", "if", "info", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "mapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "tableTime", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "queryField", "kqlFunction", "kqlOperand", "queryOperand", "kqlSelector", "querySelector", "kqlValue", "queryValue", "kubernetesNode", "kubernetesPod", "launch", "rocket", "layers", "lensApp", "lettering", "text", "lineBreak", "lineBreakSlash", "lineDash", "lineDashed", "lineDot", "lineDotted", "lineSolid", "link", "linkSlash", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "pattern", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "queue", "machineLearningApp", "magnet", "magnify", "magnifyExclamation", "magnifyMinus", "magnifyPlus", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "map", "mapMarker", "waypoint", "megaphone", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusCircle", "minusInCircle", "minusInCircleFilled", "minusInSquare", "minusSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "vectorTriangle", "notebookApp", "number", "offline", "wifiSlash", "online", "wifi", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFill", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plugs", "plus", "plusCircle", "plusInCircle", "plusInCircleFilled", "plusInSquare", "plusSquare", "popout", "presentation", "productRobot", "productAgent", "productCloudInfra", "productDashboard", "productDiscover", "productML", "productStreamsClassic", "productStreamsWired", "push", "send", "question", "quote", "radar", "readOnly", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "return", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "section", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "server", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "star", "starEmpty", "starEmptySpace", "starFill", "starFilled", "starFillSpace", "starFilledSpace", "starMinusEmpty", "starMinusFill", "starMinusFilled", "starPlusEmpty", "starPlusFill", "starPlusFilled", "stats", "stop", "stopFill", "stopFilled", "stopSlash", "storage", "streamsClassic", "streamsWired", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityHigh", "tableDensityExpanded", "tableDensityLow", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "thermometer", "thumbDown", "thumbUp", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "refreshTime", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "unarchive", "vector", "vectorSquare", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "chartMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "warningFill", "watchesApp", "web", "wordWrap", "wordWrapDisabled", "workflowsApp", "workflow", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]),
|
|
202
|
+
/**
|
|
203
|
+
* Hides the title in the `EuiFlyoutMenu`.
|
|
204
|
+
* @default true
|
|
205
|
+
* @deprecated Use `EuiFlyoutHeader` for visible titles instead.
|
|
206
|
+
* `hideTitle` is still honored but may be removed in a future major version.
|
|
198
207
|
*/
|
|
199
208
|
hideTitle: PropTypes.bool,
|
|
200
209
|
/**
|
|
@@ -219,6 +228,10 @@ EuiFlyoutMenu.propTypes = {
|
|
|
219
228
|
* Title for the history item
|
|
220
229
|
*/
|
|
221
230
|
title: PropTypes.string.isRequired,
|
|
231
|
+
/**
|
|
232
|
+
* An optional icon to display next to the session title in the history menu
|
|
233
|
+
*/
|
|
234
|
+
iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "alignBottom", "alignBottomLeft", "alignBottomRight", "alignCenterHorizontal", "alignCenterVertical", "alignLeft", "alignRight", "alignTop", "alignTopLeft", "alignTopRight", "alert", "analyzeEvent", "annotation", "anomalyChart", "chartAnomaly", "anomalySwimLane", "apmApp", "apmTrace", "chartWaterfall", "appSearchApp", "apps", "arrowDown", "chevronSingleDown", "arrowLeft", "chevronSingleLeft", "arrowRight", "chevronSingleRight", "arrowUp", "chevronSingleUp", "arrowStart", "chevronLimitLeft", "arrowEnd", "chevronLimitRight", "article", "asterisk", "at", "archive", "axisX", "axisYLeft", "axisYRight", "auditbeatApp", "backgroundTask", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "briefcase", "branchUser", "broom", "brush", "bug", "bulb", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "chartChangePoint", "chartArea", "chartAreaStack", "chartBarHorizontal", "chartBarHorizontalStack", "chartBarVertical", "chartBarVerticalStack", "chartGauge", "chartHeatmap", "chartLine", "chartPie", "chartTagCloud", "chartThreshold", "check", "checkCircle", "checkInCircleFilled", "checkCircleFill", "cheer", "popper", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "clockControl", "cloud", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "code", "codeApp", "color", "paintBucket", "commandLine", "comment", "compare", "compute", "processor", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "contrast", "contrastHigh", "contrastFill", "controls", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "crossProjectSearch", "createAdvancedJob", "createGenericJob", "createGeoJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crossCircle", "crosshair", "crosshairs", "currency", "money", "cut", "scissors", "dashboardApp", "dashedCircle", "dataVisualizer", "database", "desktop", "display", "devToolsApp", "diff", "discoverApp", "distributeHorizontal", "distributeVertical", "download", "drag", "dragHorizontal", "dragVertical", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "chevronDoubleLeft", "doubleArrowRight", "chevronDoubleRight", "ellipsis", "editorAlignCenter", "textAlignCenter", "editorAlignLeft", "textAlignLeft", "editorAlignRight", "textAlignRight", "editorBold", "textBold", "editorChecklist", "listCheck", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "textHeading", "editorItalic", "textItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "listNumber", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "redo", "editorStrike", "textStrike", "editorTable", "table", "editorUnderline", "textUnderline", "editorUndo", "undo", "editorUnorderedList", "listBullet", "email", "mail", "empty", "emsApp", "endpoint", "eql", "query", "eraser", "error", "errorFilled", "errorFill", "esqlVis", "exit", "logOut", "expand", "maximize", "expandMini", "export", "exportAction", "upload", "external", "eye", "eyeClosed", "eyeSlash", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "tableInfo", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flask", "flag", "fleetApp", "fold", "folder", "folderClosed", "folderClose", "folderCheck", "folderExclamation", "folderOpen", "folderOpened", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "hourglass", "if", "info", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "mapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "tableTime", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "queryField", "kqlFunction", "kqlOperand", "queryOperand", "kqlSelector", "querySelector", "kqlValue", "queryValue", "kubernetesNode", "kubernetesPod", "launch", "rocket", "layers", "lensApp", "lettering", "text", "lineBreak", "lineBreakSlash", "lineDash", "lineDashed", "lineDot", "lineDotted", "lineSolid", "link", "linkSlash", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "pattern", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "queue", "machineLearningApp", "magnet", "magnify", "magnifyExclamation", "magnifyMinus", "magnifyPlus", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "map", "mapMarker", "waypoint", "megaphone", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusCircle", "minusInCircle", "minusInCircleFilled", "minusInSquare", "minusSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "vectorTriangle", "notebookApp", "number", "offline", "wifiSlash", "online", "wifi", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFill", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plugs", "plus", "plusCircle", "plusInCircle", "plusInCircleFilled", "plusInSquare", "plusSquare", "popout", "presentation", "productRobot", "productAgent", "productCloudInfra", "productDashboard", "productDiscover", "productML", "productStreamsClassic", "productStreamsWired", "push", "send", "question", "quote", "radar", "readOnly", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "return", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "section", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "server", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "star", "starEmpty", "starEmptySpace", "starFill", "starFilled", "starFillSpace", "starFilledSpace", "starMinusEmpty", "starMinusFill", "starMinusFilled", "starPlusEmpty", "starPlusFill", "starPlusFilled", "stats", "stop", "stopFill", "stopFilled", "stopSlash", "storage", "streamsClassic", "streamsWired", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityHigh", "tableDensityExpanded", "tableDensityLow", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "thermometer", "thumbDown", "thumbUp", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "refreshTime", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "unarchive", "vector", "vectorSquare", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "chartMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "warningFill", "watchesApp", "web", "wordWrap", "wordWrapDisabled", "workflowsApp", "workflow", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]),
|
|
222
235
|
/**
|
|
223
236
|
* onClick handler for the history item
|
|
224
237
|
*/
|
|
@@ -54,7 +54,7 @@ export var ACTION_CLOSE_UNMANAGED_FLYOUT = "".concat(PREFIX, "/closeUnmanagedFly
|
|
|
54
54
|
|
|
55
55
|
/** Go back one session (remove current session from stack). */
|
|
56
56
|
|
|
57
|
-
/** Navigate to a specific flyout (remove all sessions after it). */
|
|
57
|
+
/** Navigate to a specific flyout (remove all sessions after it, or pop to child in history). */
|
|
58
58
|
|
|
59
59
|
/** Set push padding offset for a specific side. */
|
|
60
60
|
|
|
@@ -69,17 +69,20 @@ export var ACTION_CLOSE_UNMANAGED_FLYOUT = "".concat(PREFIX, "/closeUnmanagedFly
|
|
|
69
69
|
* - `title` is used for the flyout menu.
|
|
70
70
|
* - `level` determines whether the flyout is `main` or `child`.
|
|
71
71
|
* - Optional `size` is the named EUI size (e.g. `s`, `m`, `l`).
|
|
72
|
+
* - Optional `iconType` is shown next to the session title in the history menu.
|
|
72
73
|
*/
|
|
73
74
|
export var addFlyout = function addFlyout(flyoutId, title) {
|
|
74
75
|
var level = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : LEVEL_MAIN;
|
|
75
76
|
var size = arguments.length > 3 ? arguments[3] : undefined;
|
|
76
|
-
var
|
|
77
|
+
var iconType = arguments.length > 4 ? arguments[4] : undefined;
|
|
78
|
+
var minWidth = arguments.length > 5 ? arguments[5] : undefined;
|
|
77
79
|
return {
|
|
78
80
|
type: ACTION_ADD,
|
|
79
81
|
flyoutId: flyoutId,
|
|
80
82
|
title: title,
|
|
81
83
|
level: level,
|
|
82
84
|
size: size,
|
|
85
|
+
iconType: iconType,
|
|
83
86
|
minWidth: minWidth
|
|
84
87
|
};
|
|
85
88
|
};
|
|
@@ -140,11 +143,12 @@ export var goBack = function goBack() {
|
|
|
140
143
|
};
|
|
141
144
|
};
|
|
142
145
|
|
|
143
|
-
/** Navigate to a specific flyout (remove all sessions after it). */
|
|
144
|
-
export var goToFlyout = function goToFlyout(flyoutId) {
|
|
146
|
+
/** Navigate to a specific flyout (remove all sessions after it, or pop to child in history when level === 'child'). */
|
|
147
|
+
export var goToFlyout = function goToFlyout(flyoutId, level) {
|
|
145
148
|
return {
|
|
146
149
|
type: ACTION_GO_TO_FLYOUT,
|
|
147
|
-
flyoutId: flyoutId
|
|
150
|
+
flyoutId: flyoutId,
|
|
151
|
+
level: level
|
|
148
152
|
};
|
|
149
153
|
};
|
|
150
154
|
|
|
@@ -112,8 +112,14 @@ EuiFlyoutChild.propTypes = {
|
|
|
112
112
|
*/
|
|
113
113
|
title: PropTypes.node,
|
|
114
114
|
/**
|
|
115
|
-
*
|
|
116
|
-
|
|
115
|
+
* An optional icon to display next to the session title in the history menu
|
|
116
|
+
*/
|
|
117
|
+
iconType: PropTypes.oneOfType([PropTypes.oneOf(["accessibility", "addDataApp", "advancedSettingsApp", "agentApp", "aggregate", "alignBottom", "alignBottomLeft", "alignBottomRight", "alignCenterHorizontal", "alignCenterVertical", "alignLeft", "alignRight", "alignTop", "alignTopLeft", "alignTopRight", "alert", "analyzeEvent", "annotation", "anomalyChart", "chartAnomaly", "anomalySwimLane", "apmApp", "apmTrace", "chartWaterfall", "appSearchApp", "apps", "arrowDown", "chevronSingleDown", "arrowLeft", "chevronSingleLeft", "arrowRight", "chevronSingleRight", "arrowUp", "chevronSingleUp", "arrowStart", "chevronLimitLeft", "arrowEnd", "chevronLimitRight", "article", "asterisk", "at", "archive", "axisX", "axisYLeft", "axisYRight", "auditbeatApp", "backgroundTask", "beaker", "bell", "bellSlash", "beta", "bolt", "boxesHorizontal", "boxesVertical", "branch", "briefcase", "branchUser", "broom", "brush", "bug", "bulb", "bullseye", "calendar", "canvasApp", "casesApp", "changePointDetection", "chartChangePoint", "chartArea", "chartAreaStack", "chartBarHorizontal", "chartBarHorizontalStack", "chartBarVertical", "chartBarVerticalStack", "chartGauge", "chartHeatmap", "chartLine", "chartPie", "chartTagCloud", "chartThreshold", "check", "checkCircle", "checkInCircleFilled", "checkCircleFill", "cheer", "popper", "classificationJob", "clickLeft", "clickRight", "clock", "clockCounter", "clockControl", "cloud", "cloudDrizzle", "cloudStormy", "cloudSunny", "cluster", "code", "codeApp", "color", "paintBucket", "commandLine", "comment", "compare", "compute", "processor", "console", "consoleApp", "container", "continuityAbove", "continuityAboveBelow", "continuityBelow", "continuityWithin", "contrast", "contrastHigh", "contrastFill", "controls", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "crossProjectSearch", "createAdvancedJob", "createGenericJob", "createGeoJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crossInCircle", "crossCircle", "crosshair", "crosshairs", "currency", "money", "cut", "scissors", "dashboardApp", "dashedCircle", "dataVisualizer", "database", "desktop", "display", "devToolsApp", "diff", "discoverApp", "distributeHorizontal", "distributeVertical", "download", "drag", "dragHorizontal", "dragVertical", "discuss", "document", "documentEdit", "documentation", "documents", "dot", "dotInCircle", "doubleArrowLeft", "chevronDoubleLeft", "doubleArrowRight", "chevronDoubleRight", "ellipsis", "editorAlignCenter", "textAlignCenter", "editorAlignLeft", "textAlignLeft", "editorAlignRight", "textAlignRight", "editorBold", "textBold", "editorChecklist", "listCheck", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "textHeading", "editorItalic", "textItalic", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignLeft", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "listNumber", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "redo", "editorStrike", "textStrike", "editorTable", "table", "editorUnderline", "textUnderline", "editorUndo", "undo", "editorUnorderedList", "listBullet", "email", "mail", "empty", "emsApp", "endpoint", "eql", "query", "eraser", "error", "errorFilled", "errorFill", "esqlVis", "exit", "logOut", "expand", "maximize", "expandMini", "export", "exportAction", "upload", "external", "eye", "eyeClosed", "eyeSlash", "faceHappy", "faceNeutral", "faceSad", "fieldStatistics", "tableInfo", "filebeatApp", "filter", "filterExclude", "filterIgnore", "filterInclude", "filterInCircle", "flask", "flag", "fleetApp", "fold", "folder", "folderClosed", "folderClose", "folderCheck", "folderExclamation", "folderOpen", "folderOpened", "frameNext", "framePrevious", "fullScreen", "fullScreenExit", "function", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "grabOmnidirectional", "gradient", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "home", "hourglass", "if", "info", "image", "importAction", "index", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "mapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexRuntime", "indexSettings", "indexTemporary", "tableTime", "infinity", "inputOutput", "inspect", "invert", "ip", "key", "keyboard", "kqlField", "queryField", "kqlFunction", "kqlOperand", "queryOperand", "kqlSelector", "querySelector", "kqlValue", "queryValue", "kubernetesNode", "kubernetesPod", "launch", "rocket", "layers", "lensApp", "lettering", "text", "lineBreak", "lineBreakSlash", "lineDash", "lineDashed", "lineDot", "lineDotted", "lineSolid", "link", "linkSlash", "list", "listAdd", "lock", "lockOpen", "logPatternAnalysis", "pattern", "logRateAnalysis", "logoAWS", "logoAWSMono", "logoAerospike", "logoApache", "logoAppSearch", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticStack", "logoElasticsearch", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoGoogleG", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoObservability", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoVulnerabilityManagement", "logoWebhook", "logoWindows", "logoWorkplaceSearch", "logsApp", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "queue", "machineLearningApp", "magnet", "magnify", "magnifyExclamation", "magnifyMinus", "magnifyPlus", "magnifyWithExclamation", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "map", "mapMarker", "waypoint", "megaphone", "memory", "menu", "menuDown", "menuLeft", "menuRight", "menuUp", "merge", "metricbeatApp", "metricsApp", "minimize", "minus", "minusCircle", "minusInCircle", "minusInCircleFilled", "minusInSquare", "minusSquare", "mobile", "monitoringApp", "moon", "move", "namespace", "nested", "newChat", "node", "vectorTriangle", "notebookApp", "number", "offline", "wifiSlash", "online", "wifi", "outlierDetectionJob", "package", "packetbeatApp", "pageSelect", "pagesSelect", "palette", "paperClip", "partial", "pause", "payment", "pencil", "percent", "pin", "pinFill", "pinFilled", "pipeBreaks", "pipelineApp", "pipeNoBreaks", "pivot", "play", "playFilled", "plugs", "plus", "plusCircle", "plusInCircle", "plusInCircleFilled", "plusInSquare", "plusSquare", "popout", "presentation", "productRobot", "productAgent", "productCloudInfra", "productDashboard", "productDiscover", "productML", "productStreamsClassic", "productStreamsWired", "push", "send", "question", "quote", "radar", "readOnly", "recentlyViewedApp", "refresh", "regressionJob", "reporter", "reportingApp", "return", "returnKey", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "section", "securityAnalyticsApp", "securityApp", "securitySignal", "securitySignalDetected", "securitySignalResolved", "server", "sessionViewer", "shard", "share", "singleMetricViewer", "snowflake", "sortAscending", "sortDescending", "sortDown", "sortLeft", "sortRight", "sortUp", "sortable", "spaces", "spacesApp", "sparkles", "sqlApp", "star", "starEmpty", "starEmptySpace", "starFill", "starFilled", "starFillSpace", "starFilledSpace", "starMinusEmpty", "starMinusFill", "starMinusFilled", "starPlusEmpty", "starPlusFill", "starPlusFilled", "stats", "stop", "stopFill", "stopFilled", "stopSlash", "storage", "streamsClassic", "streamsWired", "string", "submodule", "sun", "swatchInput", "symlink", "tableDensityCompact", "tableDensityHigh", "tableDensityExpanded", "tableDensityLow", "tableDensityNormal", "tableOfContents", "tag", "tear", "temperature", "thermometer", "thumbDown", "thumbUp", "timeline", "timelineWithArrow", "timelionApp", "timeRefresh", "refreshTime", "timeslider", "training", "transitionLeftIn", "transitionLeftOut", "transitionTopIn", "transitionTopOut", "trash", "unfold", "unlink", "upgradeAssistantApp", "uptimeApp", "user", "userAvatar", "users", "usersRolesApp", "unarchive", "vector", "vectorSquare", "videoPlayer", "visArea", "visAreaStacked", "visBarHorizontal", "visBarHorizontalStacked", "visBarVertical", "visBarVerticalStacked", "visGauge", "visGoal", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "chartMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visVega", "visVisualBuilder", "visualizeApp", "vulnerabilityManagementApp", "warning", "warningFilled", "warningFill", "watchesApp", "web", "wordWrap", "wordWrapDisabled", "workflowsApp", "workflow", "workplaceSearchApp", "wrench", "tokenAlias", "tokenAnnotation", "tokenArray", "tokenBinary", "tokenBoolean", "tokenClass", "tokenCompletionSuggester", "tokenConstant", "tokenDate", "tokenDimension", "tokenElement", "tokenEnum", "tokenEnumMember", "tokenEvent", "tokenException", "tokenField", "tokenFile", "tokenFlattened", "tokenFunction", "tokenGeo", "tokenHistogram", "tokenInterface", "tokenIP", "tokenJoin", "tokenKey", "tokenKeyword", "tokenMethod", "tokenMetricCounter", "tokenMetricGauge", "tokenModule", "tokenNamespace", "tokenNested", "tokenNull", "tokenNumber", "tokenObject", "tokenOperator", "tokenPackage", "tokenParameter", "tokenPercolator", "tokenProperty", "tokenRange", "tokenRankFeature", "tokenRankFeatures", "tokenRepo", "tokenSearchType", "tokenSemanticText", "tokenShape", "tokenString", "tokenStruct", "tokenSymbol", "tokenTag", "tokenText", "tokenTokenCount", "tokenVariable", "tokenVectorDense", "tokenDenseVector", "tokenVectorSparse"]).isRequired, PropTypes.string.isRequired, PropTypes.elementType.isRequired]),
|
|
118
|
+
/**
|
|
119
|
+
* Hides the title in the `EuiFlyoutMenu`.
|
|
120
|
+
* @default true
|
|
121
|
+
* @deprecated Use `EuiFlyoutHeader` for visible titles instead.
|
|
122
|
+
* `hideTitle` is still honored but may be removed in a future major version.
|
|
117
123
|
*/
|
|
118
124
|
hideTitle: PropTypes.bool,
|
|
119
125
|
/**
|