@elastic/eui 12.3.1 → 12.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -1
- package/dist/eui.js +1168 -210
- package/dist/eui.js.map +1 -1
- package/dist/eui.min.js +5 -5
- package/es/components/accordion/accordion.js +79 -56
- package/es/components/accordion/accordion.test.js +88 -0
- package/es/components/badge/badge.js +22 -1
- package/es/components/badge/beta_badge/beta_badge.js +22 -1
- package/es/components/combo_box/combo_box.js +2 -1
- package/es/components/combo_box/combo_box_options_list/combo_box_options_list.js +47 -5
- package/es/components/delay_hide/delay_hide.test.js +5 -1
- package/es/components/filter_group/filter_button.js +17 -2
- package/es/components/form/form_control_layout/form_control_layout_custom_icon.js +22 -1
- package/es/components/form/form_control_layout/form_control_layout_icons.js +44 -2
- package/es/components/form/range/dual_range.js +1 -1
- package/es/components/form/range/range.js +1 -1
- package/es/components/form/range/range_highlight.js +1 -1
- package/es/components/form/range/range_label.js +27 -8
- package/es/components/form/range/range_levels.js +13 -8
- package/es/components/form/range/range_levels.test.js +55 -0
- package/es/components/form/range/range_slider.js +12 -8
- package/es/components/form/range/range_thumb.js +35 -3
- package/es/components/form/range/range_ticks.js +43 -22
- package/es/components/form/range/range_tooltip.js +20 -4
- package/es/components/form/range/range_track.js +33 -14
- package/es/components/form/range/range_track.test.js +100 -0
- package/es/components/form/range/range_wrapper.js +9 -2
- package/es/components/header/header_logo.js +22 -1
- package/es/components/icon/assets/cloudDrizzle.js +21 -0
- package/es/components/icon/assets/cloudStormy.js +21 -0
- package/es/components/icon/assets/cloudSunny.js +21 -0
- package/es/components/icon/assets/documentEdit.js +21 -0
- package/es/components/icon/assets/documents.js +21 -0
- package/es/components/icon/assets/popout.js +1 -1
- package/es/components/icon/assets/training.js +21 -0
- package/es/components/icon/assets/videoPlayer.js +21 -0
- package/es/components/icon/icon.js +29 -1
- package/es/components/index.js +1 -0
- package/es/components/inner_text/index.js +1 -0
- package/es/components/inner_text/inner_text.js +66 -0
- package/es/components/inner_text/inner_text.test.js +240 -0
- package/es/components/list_group/list_group_item.js +21 -2
- package/es/components/popover/popover.js +7 -3
- package/es/components/search_bar/query/ast_to_es_query_dsl.js +2 -2
- package/es/components/toast/global_toast_list.js +22 -1
- package/es/components/toast/toast.js +22 -1
- package/es/components/token/token.js +22 -1
- package/es/components/tool_tip/icon_tip.js +22 -1
- package/eui.d.ts +435 -187
- package/lib/components/accordion/accordion.js +79 -55
- package/lib/components/accordion/accordion.test.js +96 -0
- package/lib/components/badge/badge.js +22 -1
- package/lib/components/badge/beta_badge/beta_badge.js +22 -1
- package/lib/components/combo_box/combo_box.js +2 -1
- package/lib/components/combo_box/combo_box_options_list/combo_box_options_list.js +47 -5
- package/lib/components/delay_hide/delay_hide.test.js +5 -1
- package/lib/components/filter_group/filter_button.js +18 -2
- package/lib/components/form/form_control_layout/form_control_layout_custom_icon.js +22 -1
- package/lib/components/form/form_control_layout/form_control_layout_icons.js +44 -2
- package/lib/components/form/range/dual_range.js +1 -1
- package/lib/components/form/range/range.js +1 -1
- package/lib/components/form/range/range_label.js +26 -7
- package/lib/components/form/range/range_levels.js +12 -7
- package/lib/components/form/range/range_levels.test.js +63 -0
- package/lib/components/form/range/range_slider.js +13 -8
- package/lib/components/form/range/range_thumb.js +34 -2
- package/lib/components/form/range/range_ticks.js +43 -21
- package/lib/components/form/range/range_tooltip.js +19 -3
- package/lib/components/form/range/range_track.js +32 -13
- package/lib/components/form/range/range_track.test.js +108 -0
- package/lib/components/form/range/range_wrapper.js +9 -4
- package/lib/components/header/header_logo.js +22 -1
- package/lib/components/icon/assets/cloudDrizzle.js +31 -0
- package/lib/components/icon/assets/cloudDrizzle.svg +3 -0
- package/lib/components/icon/assets/cloudStormy.js +31 -0
- package/lib/components/icon/assets/cloudStormy.svg +3 -0
- package/lib/components/icon/assets/cloudSunny.js +31 -0
- package/lib/components/icon/assets/cloudSunny.svg +3 -0
- package/lib/components/icon/assets/documentEdit.js +31 -0
- package/lib/components/icon/assets/documentEdit.svg +3 -0
- package/lib/components/icon/assets/documents.js +31 -0
- package/lib/components/icon/assets/documents.svg +3 -0
- package/lib/components/icon/assets/popout.js +1 -1
- package/lib/components/icon/assets/popout.svg +1 -1
- package/lib/components/icon/assets/training.js +31 -0
- package/lib/components/icon/assets/training.svg +3 -0
- package/lib/components/icon/assets/videoPlayer.js +31 -0
- package/lib/components/icon/assets/videoPlayer.svg +3 -0
- package/lib/components/icon/icon.js +29 -1
- package/lib/components/index.js +14 -0
- package/lib/components/inner_text/index.js +19 -0
- package/lib/components/inner_text/inner_text.js +80 -0
- package/lib/components/inner_text/inner_text.test.js +250 -0
- package/lib/components/list_group/list_group_item.js +22 -3
- package/lib/components/popover/popover.js +7 -3
- package/lib/components/search_bar/query/ast_to_es_query_dsl.js +2 -2
- package/lib/components/toast/global_toast_list.js +22 -1
- package/lib/components/toast/toast.js +22 -1
- package/lib/components/token/token.js +22 -1
- package/lib/components/tool_tip/icon_tip.js +22 -1
- package/package.json +7 -4
- package/postcss.config.js +6 -0
package/dist/eui.js
CHANGED
|
@@ -128437,10 +128437,10 @@ EuiScreenReaderOnly.propTypes = {
|
|
|
128437
128437
|
|
|
128438
128438
|
/***/ }),
|
|
128439
128439
|
|
|
128440
|
-
/***/ "./components/accordion/accordion.
|
|
128441
|
-
|
|
128442
|
-
!*** ./components/accordion/accordion.
|
|
128443
|
-
|
|
128440
|
+
/***/ "./components/accordion/accordion.tsx":
|
|
128441
|
+
/*!********************************************!*\
|
|
128442
|
+
!*** ./components/accordion/accordion.tsx ***!
|
|
128443
|
+
\********************************************/
|
|
128444
128444
|
/*! no static exports found */
|
|
128445
128445
|
/***/ (function(module, exports, __webpack_require__) {
|
|
128446
128446
|
|
|
@@ -128458,20 +128458,22 @@ __webpack_require__(/*! core-js/modules/es6.symbol */ "../node_modules/core-js/m
|
|
|
128458
128458
|
|
|
128459
128459
|
__webpack_require__(/*! core-js/modules/es6.object.assign */ "../node_modules/core-js/modules/es6.object.assign.js");
|
|
128460
128460
|
|
|
128461
|
-
__webpack_require__(/*! core-js/modules/es6.object.set-prototype-of */ "../node_modules/core-js/modules/es6.object.set-prototype-of.js");
|
|
128462
|
-
|
|
128463
128461
|
__webpack_require__(/*! core-js/modules/web.dom.iterable */ "../node_modules/core-js/modules/web.dom.iterable.js");
|
|
128464
128462
|
|
|
128465
128463
|
__webpack_require__(/*! core-js/modules/es6.array.iterator */ "../node_modules/core-js/modules/es6.array.iterator.js");
|
|
128466
128464
|
|
|
128467
128465
|
__webpack_require__(/*! core-js/modules/es6.object.keys */ "../node_modules/core-js/modules/es6.object.keys.js");
|
|
128468
128466
|
|
|
128467
|
+
__webpack_require__(/*! core-js/modules/es6.object.set-prototype-of */ "../node_modules/core-js/modules/es6.object.set-prototype-of.js");
|
|
128468
|
+
|
|
128469
128469
|
var _react = _interopRequireWildcard(__webpack_require__(/*! react */ "react"));
|
|
128470
128470
|
|
|
128471
128471
|
var _propTypes = _interopRequireDefault(__webpack_require__(/*! prop-types */ "prop-types"));
|
|
128472
128472
|
|
|
128473
128473
|
var _classnames = _interopRequireDefault(__webpack_require__(/*! classnames */ "../node_modules/classnames/index.js"));
|
|
128474
128474
|
|
|
128475
|
+
var _common = __webpack_require__(/*! ../common */ "./components/common.ts");
|
|
128476
|
+
|
|
128475
128477
|
var _icon = __webpack_require__(/*! ../icon */ "./components/icon/index.ts");
|
|
128476
128478
|
|
|
128477
128479
|
var _flex = __webpack_require__(/*! ../flex */ "./components/flex/index.ts");
|
|
@@ -128516,7 +128518,7 @@ var paddingSizeToClassNameMap = {
|
|
|
128516
128518
|
l: 'euiAccordion__padding--l',
|
|
128517
128519
|
xl: 'euiAccordion__padding--xl'
|
|
128518
128520
|
};
|
|
128519
|
-
var PADDING_SIZES =
|
|
128521
|
+
var PADDING_SIZES = (0, _common.keysOf)(paddingSizeToClassNameMap);
|
|
128520
128522
|
exports.PADDING_SIZES = PADDING_SIZES;
|
|
128521
128523
|
|
|
128522
128524
|
var EuiAccordion =
|
|
@@ -128524,12 +128526,26 @@ var EuiAccordion =
|
|
|
128524
128526
|
function (_Component) {
|
|
128525
128527
|
_inherits(EuiAccordion, _Component);
|
|
128526
128528
|
|
|
128527
|
-
function EuiAccordion(
|
|
128529
|
+
function EuiAccordion() {
|
|
128530
|
+
var _getPrototypeOf2;
|
|
128531
|
+
|
|
128528
128532
|
var _this;
|
|
128529
128533
|
|
|
128530
128534
|
_classCallCheck(this, EuiAccordion);
|
|
128531
128535
|
|
|
128532
|
-
|
|
128536
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
128537
|
+
args[_key] = arguments[_key];
|
|
128538
|
+
}
|
|
128539
|
+
|
|
128540
|
+
_this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(EuiAccordion)).call.apply(_getPrototypeOf2, [this].concat(args)));
|
|
128541
|
+
|
|
128542
|
+
_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "childContent", null);
|
|
128543
|
+
|
|
128544
|
+
_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "childWrapper", null);
|
|
128545
|
+
|
|
128546
|
+
_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "state", {
|
|
128547
|
+
isOpen: _this.props.initialIsOpen
|
|
128548
|
+
});
|
|
128533
128549
|
|
|
128534
128550
|
_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "setChildContentHeight", function () {
|
|
128535
128551
|
requestAnimationFrame(function () {
|
|
@@ -128538,14 +128554,20 @@ function (_Component) {
|
|
|
128538
128554
|
});
|
|
128539
128555
|
});
|
|
128540
128556
|
|
|
128557
|
+
_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "onToggle", function () {
|
|
128558
|
+
_this.setState(function (prevState) {
|
|
128559
|
+
return {
|
|
128560
|
+
isOpen: !prevState.isOpen
|
|
128561
|
+
};
|
|
128562
|
+
}, function () {
|
|
128563
|
+
_this.props.onToggle && _this.props.onToggle(_this.state.isOpen);
|
|
128564
|
+
});
|
|
128565
|
+
});
|
|
128566
|
+
|
|
128541
128567
|
_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "setChildContentRef", function (node) {
|
|
128542
128568
|
_this.childContent = node;
|
|
128543
128569
|
});
|
|
128544
128570
|
|
|
128545
|
-
_this.state = {
|
|
128546
|
-
isOpen: props.initialIsOpen
|
|
128547
|
-
};
|
|
128548
|
-
_this.onToggle = _this.onToggle.bind(_assertThisInitialized(_assertThisInitialized(_this)));
|
|
128549
128571
|
return _this;
|
|
128550
128572
|
}
|
|
128551
128573
|
|
|
@@ -128559,23 +128581,10 @@ function (_Component) {
|
|
|
128559
128581
|
value: function componentDidUpdate() {
|
|
128560
128582
|
this.setChildContentHeight();
|
|
128561
128583
|
}
|
|
128562
|
-
}, {
|
|
128563
|
-
key: "onToggle",
|
|
128564
|
-
value: function onToggle() {
|
|
128565
|
-
var _this2 = this;
|
|
128566
|
-
|
|
128567
|
-
this.setState(function (prevState) {
|
|
128568
|
-
return {
|
|
128569
|
-
isOpen: !prevState.isOpen
|
|
128570
|
-
};
|
|
128571
|
-
}, function () {
|
|
128572
|
-
_this2.props.onToggle && _this2.props.onToggle(_this2.state.isOpen);
|
|
128573
|
-
});
|
|
128574
|
-
}
|
|
128575
128584
|
}, {
|
|
128576
128585
|
key: "render",
|
|
128577
128586
|
value: function render() {
|
|
128578
|
-
var
|
|
128587
|
+
var _this2 = this;
|
|
128579
128588
|
|
|
128580
128589
|
var _this$props = this.props,
|
|
128581
128590
|
children = _this$props.children,
|
|
@@ -128632,7 +128641,7 @@ function (_Component) {
|
|
|
128632
128641
|
}, buttonContent)))), optionalAction), _react.default.createElement("div", {
|
|
128633
128642
|
className: "euiAccordion__childWrapper",
|
|
128634
128643
|
ref: function ref(node) {
|
|
128635
|
-
|
|
128644
|
+
_this2.childWrapper = node;
|
|
128636
128645
|
},
|
|
128637
128646
|
id: id
|
|
128638
128647
|
}, _react.default.createElement(_mutation_observer.EuiMutationObserver, {
|
|
@@ -128644,7 +128653,7 @@ function (_Component) {
|
|
|
128644
128653
|
}, function (mutationRef) {
|
|
128645
128654
|
return _react.default.createElement("div", {
|
|
128646
128655
|
ref: function ref(_ref) {
|
|
128647
|
-
|
|
128656
|
+
_this2.setChildContentRef(_ref);
|
|
128648
128657
|
|
|
128649
128658
|
mutationRef(_ref);
|
|
128650
128659
|
}
|
|
@@ -128659,51 +128668,52 @@ function (_Component) {
|
|
|
128659
128668
|
}(_react.Component);
|
|
128660
128669
|
|
|
128661
128670
|
exports.EuiAccordion = EuiAccordion;
|
|
128671
|
+
|
|
128672
|
+
_defineProperty(EuiAccordion, "defaultProps", {
|
|
128673
|
+
initialIsOpen: false,
|
|
128674
|
+
paddingSize: 'none'
|
|
128675
|
+
});
|
|
128676
|
+
|
|
128662
128677
|
EuiAccordion.propTypes = {
|
|
128663
|
-
|
|
128664
|
-
|
|
128665
|
-
|
|
128666
|
-
children: _propTypes.default.node,
|
|
128678
|
+
className: _propTypes.default.string,
|
|
128679
|
+
"aria-label": _propTypes.default.string,
|
|
128680
|
+
"data-test-subj": _propTypes.default.string,
|
|
128667
128681
|
id: _propTypes.default.string.isRequired,
|
|
128668
128682
|
|
|
128669
128683
|
/**
|
|
128670
|
-
|
|
128671
|
-
|
|
128672
|
-
|
|
128684
|
+
* Class that will apply to the trigger for the accordion.
|
|
128685
|
+
*/
|
|
128686
|
+
buttonClassName: _propTypes.default.string,
|
|
128673
128687
|
|
|
128674
128688
|
/**
|
|
128675
|
-
|
|
128676
|
-
|
|
128689
|
+
* Class that will apply to the trigger content for the accordion.
|
|
128690
|
+
*/
|
|
128677
128691
|
buttonContentClassName: _propTypes.default.string,
|
|
128678
128692
|
|
|
128679
128693
|
/**
|
|
128680
|
-
|
|
128681
|
-
|
|
128694
|
+
* The content of the clickable trigger
|
|
128695
|
+
*/
|
|
128682
128696
|
buttonContent: _propTypes.default.node,
|
|
128683
128697
|
|
|
128684
128698
|
/**
|
|
128685
|
-
|
|
128686
|
-
|
|
128699
|
+
* Will appear right aligned against the button. Useful for separate actions like deletions.
|
|
128700
|
+
*/
|
|
128687
128701
|
extraAction: _propTypes.default.node,
|
|
128688
128702
|
|
|
128689
128703
|
/**
|
|
128690
|
-
|
|
128691
|
-
|
|
128692
|
-
initialIsOpen: _propTypes.default.bool,
|
|
128704
|
+
* The accordion will start in the open state.
|
|
128705
|
+
*/
|
|
128706
|
+
initialIsOpen: _propTypes.default.bool.isRequired,
|
|
128693
128707
|
|
|
128694
128708
|
/**
|
|
128695
|
-
|
|
128696
|
-
|
|
128697
|
-
|
|
128709
|
+
* Optional callback method called on open and close with a single `isOpen` parameter
|
|
128710
|
+
*/
|
|
128711
|
+
onToggle: _propTypes.default.func,
|
|
128698
128712
|
|
|
128699
128713
|
/**
|
|
128700
|
-
|
|
128701
|
-
|
|
128702
|
-
|
|
128703
|
-
};
|
|
128704
|
-
EuiAccordion.defaultProps = {
|
|
128705
|
-
initialIsOpen: false,
|
|
128706
|
-
paddingSize: 'none'
|
|
128714
|
+
* The padding around the exposed accordion content.
|
|
128715
|
+
*/
|
|
128716
|
+
paddingSize: _propTypes.default.oneOf(["none", "xs", "s", "m", "l", "xl"]).isRequired
|
|
128707
128717
|
};
|
|
128708
128718
|
EuiAccordion.__docgenInfo = {
|
|
128709
128719
|
"description": "",
|
|
@@ -128772,12 +128782,26 @@ EuiAccordion.__docgenInfo = {
|
|
|
128772
128782
|
"required": false,
|
|
128773
128783
|
"description": "The padding around the exposed accordion content."
|
|
128774
128784
|
},
|
|
128775
|
-
"
|
|
128785
|
+
"className": {
|
|
128776
128786
|
"type": {
|
|
128777
|
-
"name": "
|
|
128787
|
+
"name": "string"
|
|
128788
|
+
},
|
|
128789
|
+
"required": false,
|
|
128790
|
+
"description": ""
|
|
128791
|
+
},
|
|
128792
|
+
"aria-label": {
|
|
128793
|
+
"type": {
|
|
128794
|
+
"name": "string"
|
|
128795
|
+
},
|
|
128796
|
+
"required": false,
|
|
128797
|
+
"description": ""
|
|
128798
|
+
},
|
|
128799
|
+
"data-test-subj": {
|
|
128800
|
+
"type": {
|
|
128801
|
+
"name": "string"
|
|
128778
128802
|
},
|
|
128779
128803
|
"required": false,
|
|
128780
|
-
"description": "
|
|
128804
|
+
"description": ""
|
|
128781
128805
|
},
|
|
128782
128806
|
"id": {
|
|
128783
128807
|
"type": {
|
|
@@ -128786,19 +128810,19 @@ EuiAccordion.__docgenInfo = {
|
|
|
128786
128810
|
"required": true,
|
|
128787
128811
|
"description": ""
|
|
128788
128812
|
},
|
|
128789
|
-
"
|
|
128813
|
+
"buttonClassName": {
|
|
128790
128814
|
"type": {
|
|
128791
128815
|
"name": "string"
|
|
128792
128816
|
},
|
|
128793
128817
|
"required": false,
|
|
128794
|
-
"description": "Class that will apply to the
|
|
128818
|
+
"description": "Class that will apply to the trigger for the accordion."
|
|
128795
128819
|
},
|
|
128796
128820
|
"buttonContentClassName": {
|
|
128797
128821
|
"type": {
|
|
128798
128822
|
"name": "string"
|
|
128799
128823
|
},
|
|
128800
128824
|
"required": false,
|
|
128801
|
-
"description": "Class that will apply to the trigger for the accordion."
|
|
128825
|
+
"description": "Class that will apply to the trigger content for the accordion."
|
|
128802
128826
|
},
|
|
128803
128827
|
"buttonContent": {
|
|
128804
128828
|
"type": {
|
|
@@ -128826,9 +128850,9 @@ EuiAccordion.__docgenInfo = {
|
|
|
128826
128850
|
|
|
128827
128851
|
/***/ }),
|
|
128828
128852
|
|
|
128829
|
-
/***/ "./components/accordion/index.
|
|
128853
|
+
/***/ "./components/accordion/index.ts":
|
|
128830
128854
|
/*!***************************************!*\
|
|
128831
|
-
!*** ./components/accordion/index.
|
|
128855
|
+
!*** ./components/accordion/index.ts ***!
|
|
128832
128856
|
\***************************************/
|
|
128833
128857
|
/*! no static exports found */
|
|
128834
128858
|
/***/ (function(module, exports, __webpack_require__) {
|
|
@@ -128846,7 +128870,7 @@ Object.defineProperty(exports, "EuiAccordion", {
|
|
|
128846
128870
|
}
|
|
128847
128871
|
});
|
|
128848
128872
|
|
|
128849
|
-
var _accordion = __webpack_require__(/*! ./accordion */ "./components/accordion/accordion.
|
|
128873
|
+
var _accordion = __webpack_require__(/*! ./accordion */ "./components/accordion/accordion.tsx");
|
|
128850
128874
|
|
|
128851
128875
|
/***/ }),
|
|
128852
128876
|
|
|
@@ -129356,7 +129380,7 @@ EuiBadge.propTypes = {
|
|
|
129356
129380
|
/**
|
|
129357
129381
|
* Accepts any string from our icon library
|
|
129358
129382
|
*/
|
|
129359
|
-
iconType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]),
|
|
129383
|
+
iconType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "documentEdit", "documents", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "training", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "videoPlayer", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]),
|
|
129360
129384
|
|
|
129361
129385
|
/**
|
|
129362
129386
|
* The side of the badge the icon should sit
|
|
@@ -129564,6 +129588,15 @@ EuiBadge.__docgenInfo = {
|
|
|
129564
129588
|
}, {
|
|
129565
129589
|
"value": "\"clock\"",
|
|
129566
129590
|
"computed": false
|
|
129591
|
+
}, {
|
|
129592
|
+
"value": "\"cloudDrizzle\"",
|
|
129593
|
+
"computed": false
|
|
129594
|
+
}, {
|
|
129595
|
+
"value": "\"cloudStormy\"",
|
|
129596
|
+
"computed": false
|
|
129597
|
+
}, {
|
|
129598
|
+
"value": "\"cloudSunny\"",
|
|
129599
|
+
"computed": false
|
|
129567
129600
|
}, {
|
|
129568
129601
|
"value": "\"compute\"",
|
|
129569
129602
|
"computed": false
|
|
@@ -129630,6 +129663,12 @@ EuiBadge.__docgenInfo = {
|
|
|
129630
129663
|
}, {
|
|
129631
129664
|
"value": "\"document\"",
|
|
129632
129665
|
"computed": false
|
|
129666
|
+
}, {
|
|
129667
|
+
"value": "\"documentEdit\"",
|
|
129668
|
+
"computed": false
|
|
129669
|
+
}, {
|
|
129670
|
+
"value": "\"documents\"",
|
|
129671
|
+
"computed": false
|
|
129633
129672
|
}, {
|
|
129634
129673
|
"value": "\"dot\"",
|
|
129635
129674
|
"computed": false
|
|
@@ -130281,6 +130320,9 @@ EuiBadge.__docgenInfo = {
|
|
|
130281
130320
|
}, {
|
|
130282
130321
|
"value": "\"timelionApp\"",
|
|
130283
130322
|
"computed": false
|
|
130323
|
+
}, {
|
|
130324
|
+
"value": "\"training\"",
|
|
130325
|
+
"computed": false
|
|
130284
130326
|
}, {
|
|
130285
130327
|
"value": "\"trash\"",
|
|
130286
130328
|
"computed": false
|
|
@@ -130299,6 +130341,9 @@ EuiBadge.__docgenInfo = {
|
|
|
130299
130341
|
}, {
|
|
130300
130342
|
"value": "\"vector\"",
|
|
130301
130343
|
"computed": false
|
|
130344
|
+
}, {
|
|
130345
|
+
"value": "\"videoPlayer\"",
|
|
130346
|
+
"computed": false
|
|
130302
130347
|
}, {
|
|
130303
130348
|
"value": "\"visArea\"",
|
|
130304
130349
|
"computed": false
|
|
@@ -130625,7 +130670,7 @@ EuiBetaBadge.propTypes = {
|
|
|
130625
130670
|
/**
|
|
130626
130671
|
* Supply an icon type if the badge should just be an icon
|
|
130627
130672
|
*/
|
|
130628
|
-
iconType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]),
|
|
130673
|
+
iconType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "documentEdit", "documents", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "training", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "videoPlayer", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]),
|
|
130629
130674
|
|
|
130630
130675
|
/**
|
|
130631
130676
|
* One word label like "Beta" or "Lab"
|
|
@@ -130791,6 +130836,15 @@ EuiBetaBadge.__docgenInfo = {
|
|
|
130791
130836
|
}, {
|
|
130792
130837
|
"value": "\"clock\"",
|
|
130793
130838
|
"computed": false
|
|
130839
|
+
}, {
|
|
130840
|
+
"value": "\"cloudDrizzle\"",
|
|
130841
|
+
"computed": false
|
|
130842
|
+
}, {
|
|
130843
|
+
"value": "\"cloudStormy\"",
|
|
130844
|
+
"computed": false
|
|
130845
|
+
}, {
|
|
130846
|
+
"value": "\"cloudSunny\"",
|
|
130847
|
+
"computed": false
|
|
130794
130848
|
}, {
|
|
130795
130849
|
"value": "\"compute\"",
|
|
130796
130850
|
"computed": false
|
|
@@ -130857,6 +130911,12 @@ EuiBetaBadge.__docgenInfo = {
|
|
|
130857
130911
|
}, {
|
|
130858
130912
|
"value": "\"document\"",
|
|
130859
130913
|
"computed": false
|
|
130914
|
+
}, {
|
|
130915
|
+
"value": "\"documentEdit\"",
|
|
130916
|
+
"computed": false
|
|
130917
|
+
}, {
|
|
130918
|
+
"value": "\"documents\"",
|
|
130919
|
+
"computed": false
|
|
130860
130920
|
}, {
|
|
130861
130921
|
"value": "\"dot\"",
|
|
130862
130922
|
"computed": false
|
|
@@ -131508,6 +131568,9 @@ EuiBetaBadge.__docgenInfo = {
|
|
|
131508
131568
|
}, {
|
|
131509
131569
|
"value": "\"timelionApp\"",
|
|
131510
131570
|
"computed": false
|
|
131571
|
+
}, {
|
|
131572
|
+
"value": "\"training\"",
|
|
131573
|
+
"computed": false
|
|
131511
131574
|
}, {
|
|
131512
131575
|
"value": "\"trash\"",
|
|
131513
131576
|
"computed": false
|
|
@@ -131526,6 +131589,9 @@ EuiBetaBadge.__docgenInfo = {
|
|
|
131526
131589
|
}, {
|
|
131527
131590
|
"value": "\"vector\"",
|
|
131528
131591
|
"computed": false
|
|
131592
|
+
}, {
|
|
131593
|
+
"value": "\"videoPlayer\"",
|
|
131594
|
+
"computed": false
|
|
131529
131595
|
}, {
|
|
131530
131596
|
"value": "\"visArea\"",
|
|
131531
131597
|
"computed": false
|
|
@@ -141666,7 +141732,8 @@ function (_Component) {
|
|
|
141666
141732
|
rowHeight: rowHeight,
|
|
141667
141733
|
"data-test-subj": optionsListDataTestSubj,
|
|
141668
141734
|
fullWidth: fullWidth,
|
|
141669
|
-
rootId: this.rootId
|
|
141735
|
+
rootId: this.rootId,
|
|
141736
|
+
onCloseList: this.closeList
|
|
141670
141737
|
}));
|
|
141671
141738
|
}
|
|
141672
141739
|
|
|
@@ -143153,6 +143220,14 @@ function (_Component) {
|
|
|
143153
143220
|
});
|
|
143154
143221
|
});
|
|
143155
143222
|
|
|
143223
|
+
_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "closeListOnScroll", function (e) {
|
|
143224
|
+
// close the list when a scroll event happens, but not if the scroll happened in the options list
|
|
143225
|
+
// this mirrors Firefox's approach of auto-closing `select` elements onscroll
|
|
143226
|
+
if (_this.list && _this.list.contains(e.target) === false) {
|
|
143227
|
+
_this.props.onCloseList();
|
|
143228
|
+
}
|
|
143229
|
+
});
|
|
143230
|
+
|
|
143156
143231
|
_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "listRef", function (node) {
|
|
143157
143232
|
_this.props.listRef(node);
|
|
143158
143233
|
|
|
@@ -143165,13 +143240,25 @@ function (_Component) {
|
|
|
143165
143240
|
_createClass(EuiComboBoxOptionsList, [{
|
|
143166
143241
|
key: "componentDidMount",
|
|
143167
143242
|
value: function componentDidMount() {
|
|
143243
|
+
var _this2 = this;
|
|
143244
|
+
|
|
143168
143245
|
// Wait a frame, otherwise moving focus from one combo box to another will result in the class
|
|
143169
143246
|
// being removed from the body.
|
|
143170
143247
|
requestAnimationFrame(function () {
|
|
143171
143248
|
document.body.classList.add('euiBody-hasPortalContent');
|
|
143172
143249
|
});
|
|
143173
143250
|
this.updatePosition();
|
|
143174
|
-
window.addEventListener('resize', this.updatePosition);
|
|
143251
|
+
window.addEventListener('resize', this.updatePosition); // Firefox will trigger a scroll event in many common situations when the options list div is appended
|
|
143252
|
+
// to the DOM; in testing it was always within 100ms, but setting a timeout here for 500ms to be safe
|
|
143253
|
+
|
|
143254
|
+
setTimeout(function () {
|
|
143255
|
+
window.addEventListener('scroll', _this2.closeListOnScroll, {
|
|
143256
|
+
passive: true,
|
|
143257
|
+
// for better performance as we won't call preventDefault
|
|
143258
|
+
capture: true // scroll events don't bubble, they must be captured instead
|
|
143259
|
+
|
|
143260
|
+
});
|
|
143261
|
+
}, 500);
|
|
143175
143262
|
}
|
|
143176
143263
|
}, {
|
|
143177
143264
|
key: "componentDidUpdate",
|
|
@@ -143189,11 +143276,15 @@ function (_Component) {
|
|
|
143189
143276
|
value: function componentWillUnmount() {
|
|
143190
143277
|
document.body.classList.remove('euiBody-hasPortalContent');
|
|
143191
143278
|
window.removeEventListener('resize', this.updatePosition);
|
|
143279
|
+
window.removeEventListener('scroll', this.closeListOnScroll, {
|
|
143280
|
+
passive: true,
|
|
143281
|
+
capture: true
|
|
143282
|
+
});
|
|
143192
143283
|
}
|
|
143193
143284
|
}, {
|
|
143194
143285
|
key: "render",
|
|
143195
143286
|
value: function render() {
|
|
143196
|
-
var
|
|
143287
|
+
var _this3 = this;
|
|
143197
143288
|
|
|
143198
143289
|
var _this$props = this.props,
|
|
143199
143290
|
options = _this$props.options,
|
|
@@ -143219,7 +143310,8 @@ function (_Component) {
|
|
|
143219
143310
|
dataTestSubj = _this$props['data-test-subj'],
|
|
143220
143311
|
activeOptionIndex = _this$props.activeOptionIndex,
|
|
143221
143312
|
rootId = _this$props.rootId,
|
|
143222
|
-
|
|
143313
|
+
onCloseList = _this$props.onCloseList,
|
|
143314
|
+
rest = _objectWithoutProperties(_this$props, ["options", "isLoading", "selectedOptions", "onCreateOption", "searchValue", "matchingOptions", "optionRef", "onOptionClick", "onOptionEnterKey", "areAllOptionsSelected", "getSelectedOptionForSearchValue", "position", "renderOption", "listRef", "updatePosition", "width", "scrollToIndex", "onScroll", "rowHeight", "fullWidth", "data-test-subj", "activeOptionIndex", "rootId", "onCloseList"]);
|
|
143223
143315
|
|
|
143224
143316
|
var emptyStateContent;
|
|
143225
143317
|
|
|
@@ -143322,7 +143414,7 @@ function (_Component) {
|
|
|
143322
143414
|
return onOptionClick(option);
|
|
143323
143415
|
} // onEnterKey={onOptionEnterKey}
|
|
143324
143416
|
,
|
|
143325
|
-
ref: optionRef.bind(
|
|
143417
|
+
ref: optionRef.bind(_this3, index),
|
|
143326
143418
|
isFocused: activeOptionIndex === index,
|
|
143327
143419
|
id: rootId("_option-".concat(index)),
|
|
143328
143420
|
title: label,
|
|
@@ -143375,7 +143467,8 @@ _defineProperty(EuiComboBoxOptionsList, "propTypes", {
|
|
|
143375
143467
|
rowHeight: _propTypes.default.number,
|
|
143376
143468
|
fullWidth: _propTypes.default.bool,
|
|
143377
143469
|
activeOptionIndex: _propTypes.default.number,
|
|
143378
|
-
rootId: _propTypes.default.func.isRequired
|
|
143470
|
+
rootId: _propTypes.default.func.isRequired,
|
|
143471
|
+
onCloseList: _propTypes.default.func.isRequired
|
|
143379
143472
|
});
|
|
143380
143473
|
|
|
143381
143474
|
_defineProperty(EuiComboBoxOptionsList, "defaultProps", {
|
|
@@ -143392,6 +143485,15 @@ EuiComboBoxOptionsList.__docgenInfo = {
|
|
|
143392
143485
|
"modifiers": [],
|
|
143393
143486
|
"params": [],
|
|
143394
143487
|
"returns": null
|
|
143488
|
+
}, {
|
|
143489
|
+
"name": "closeListOnScroll",
|
|
143490
|
+
"docblock": null,
|
|
143491
|
+
"modifiers": [],
|
|
143492
|
+
"params": [{
|
|
143493
|
+
"name": "e",
|
|
143494
|
+
"type": null
|
|
143495
|
+
}],
|
|
143496
|
+
"returns": null
|
|
143395
143497
|
}, {
|
|
143396
143498
|
"name": "listRef",
|
|
143397
143499
|
"docblock": null,
|
|
@@ -143575,6 +143677,13 @@ EuiComboBoxOptionsList.__docgenInfo = {
|
|
|
143575
143677
|
},
|
|
143576
143678
|
"required": true,
|
|
143577
143679
|
"description": ""
|
|
143680
|
+
},
|
|
143681
|
+
"onCloseList": {
|
|
143682
|
+
"type": {
|
|
143683
|
+
"name": "func"
|
|
143684
|
+
},
|
|
143685
|
+
"required": true,
|
|
143686
|
+
"description": ""
|
|
143578
143687
|
}
|
|
143579
143688
|
}
|
|
143580
143689
|
};
|
|
@@ -153398,6 +153507,10 @@ exports.EuiFilterButton = void 0;
|
|
|
153398
153507
|
|
|
153399
153508
|
__webpack_require__(/*! core-js/modules/es6.object.assign */ "../node_modules/core-js/modules/es6.object.assign.js");
|
|
153400
153509
|
|
|
153510
|
+
__webpack_require__(/*! core-js/modules/es7.symbol.async-iterator */ "../node_modules/core-js/modules/es7.symbol.async-iterator.js");
|
|
153511
|
+
|
|
153512
|
+
__webpack_require__(/*! core-js/modules/es6.symbol */ "../node_modules/core-js/modules/es6.symbol.js");
|
|
153513
|
+
|
|
153401
153514
|
__webpack_require__(/*! core-js/modules/web.dom.iterable */ "../node_modules/core-js/modules/web.dom.iterable.js");
|
|
153402
153515
|
|
|
153403
153516
|
__webpack_require__(/*! core-js/modules/es6.array.iterator */ "../node_modules/core-js/modules/es6.array.iterator.js");
|
|
@@ -153418,6 +153531,8 @@ var _button_empty = __webpack_require__(/*! ../button/button_empty */ "./compone
|
|
|
153418
153531
|
|
|
153419
153532
|
var _icon = __webpack_require__(/*! ../icon */ "./components/icon/index.ts");
|
|
153420
153533
|
|
|
153534
|
+
var _inner_text = __webpack_require__(/*! ../inner_text */ "./components/inner_text/index.ts");
|
|
153535
|
+
|
|
153421
153536
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
153422
153537
|
|
|
153423
153538
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
|
|
@@ -153428,6 +153543,14 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
|
|
|
153428
153543
|
|
|
153429
153544
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
153430
153545
|
|
|
153546
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); }
|
|
153547
|
+
|
|
153548
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); }
|
|
153549
|
+
|
|
153550
|
+
function _iterableToArrayLimit(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
153551
|
+
|
|
153552
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
153553
|
+
|
|
153431
153554
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
153432
153555
|
|
|
153433
153556
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
@@ -153470,10 +153593,16 @@ var EuiFilterButton = function EuiFilterButton(_ref) {
|
|
|
153470
153593
|
dataText = children;
|
|
153471
153594
|
}
|
|
153472
153595
|
|
|
153596
|
+
var _useInnerText = (0, _inner_text.useInnerText)(),
|
|
153597
|
+
_useInnerText2 = _slicedToArray(_useInnerText, 2),
|
|
153598
|
+
ref = _useInnerText2[0],
|
|
153599
|
+
innerText = _useInnerText2[1];
|
|
153600
|
+
|
|
153473
153601
|
var buttonContents = _react.default.createElement(_react.Fragment, null, _react.default.createElement("span", {
|
|
153602
|
+
ref: ref,
|
|
153474
153603
|
className: "euiFilterButton__textShift",
|
|
153475
|
-
"data-text": dataText,
|
|
153476
|
-
title: dataText
|
|
153604
|
+
"data-text": dataText || innerText,
|
|
153605
|
+
title: dataText || innerText
|
|
153477
153606
|
}, children), numFiltersDefined && _react.default.createElement(_i18n.EuiI18n, {
|
|
153478
153607
|
token: "euiFilterButton.filterBadge",
|
|
153479
153608
|
values: {
|
|
@@ -158846,7 +158975,7 @@ EuiFormControlLayoutCustomIcon.propTypes = {
|
|
|
158846
158975
|
className: _propTypes.default.string,
|
|
158847
158976
|
"aria-label": _propTypes.default.string,
|
|
158848
158977
|
"data-test-subj": _propTypes.default.string,
|
|
158849
|
-
type: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]).isRequired,
|
|
158978
|
+
type: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "documentEdit", "documents", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "training", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "videoPlayer", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]).isRequired,
|
|
158850
158979
|
iconRef: _propTypes.default.oneOfType([_propTypes.default.string.isRequired, _propTypes.default.func.isRequired])
|
|
158851
158980
|
};
|
|
158852
158981
|
EuiFormControlLayoutCustomIcon.__docgenInfo = {
|
|
@@ -158964,6 +159093,15 @@ EuiFormControlLayoutCustomIcon.__docgenInfo = {
|
|
|
158964
159093
|
}, {
|
|
158965
159094
|
"value": "\"clock\"",
|
|
158966
159095
|
"computed": false
|
|
159096
|
+
}, {
|
|
159097
|
+
"value": "\"cloudDrizzle\"",
|
|
159098
|
+
"computed": false
|
|
159099
|
+
}, {
|
|
159100
|
+
"value": "\"cloudStormy\"",
|
|
159101
|
+
"computed": false
|
|
159102
|
+
}, {
|
|
159103
|
+
"value": "\"cloudSunny\"",
|
|
159104
|
+
"computed": false
|
|
158967
159105
|
}, {
|
|
158968
159106
|
"value": "\"compute\"",
|
|
158969
159107
|
"computed": false
|
|
@@ -159030,6 +159168,12 @@ EuiFormControlLayoutCustomIcon.__docgenInfo = {
|
|
|
159030
159168
|
}, {
|
|
159031
159169
|
"value": "\"document\"",
|
|
159032
159170
|
"computed": false
|
|
159171
|
+
}, {
|
|
159172
|
+
"value": "\"documentEdit\"",
|
|
159173
|
+
"computed": false
|
|
159174
|
+
}, {
|
|
159175
|
+
"value": "\"documents\"",
|
|
159176
|
+
"computed": false
|
|
159033
159177
|
}, {
|
|
159034
159178
|
"value": "\"dot\"",
|
|
159035
159179
|
"computed": false
|
|
@@ -159681,6 +159825,9 @@ EuiFormControlLayoutCustomIcon.__docgenInfo = {
|
|
|
159681
159825
|
}, {
|
|
159682
159826
|
"value": "\"timelionApp\"",
|
|
159683
159827
|
"computed": false
|
|
159828
|
+
}, {
|
|
159829
|
+
"value": "\"training\"",
|
|
159830
|
+
"computed": false
|
|
159684
159831
|
}, {
|
|
159685
159832
|
"value": "\"trash\"",
|
|
159686
159833
|
"computed": false
|
|
@@ -159699,6 +159846,9 @@ EuiFormControlLayoutCustomIcon.__docgenInfo = {
|
|
|
159699
159846
|
}, {
|
|
159700
159847
|
"value": "\"vector\"",
|
|
159701
159848
|
"computed": false
|
|
159849
|
+
}, {
|
|
159850
|
+
"value": "\"videoPlayer\"",
|
|
159851
|
+
"computed": false
|
|
159702
159852
|
}, {
|
|
159703
159853
|
"value": "\"visArea\"",
|
|
159704
159854
|
"computed": false
|
|
@@ -160043,8 +160193,8 @@ function (_Component) {
|
|
|
160043
160193
|
|
|
160044
160194
|
exports.EuiFormControlLayoutIcons = EuiFormControlLayoutIcons;
|
|
160045
160195
|
EuiFormControlLayoutIcons.propTypes = {
|
|
160046
|
-
icon: _propTypes.default.oneOfType([_propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]).isRequired, _propTypes.default.shape({
|
|
160047
|
-
type: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]).isRequired,
|
|
160196
|
+
icon: _propTypes.default.oneOfType([_propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "documentEdit", "documents", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "training", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "videoPlayer", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]).isRequired, _propTypes.default.shape({
|
|
160197
|
+
type: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "documentEdit", "documents", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "training", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "videoPlayer", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]).isRequired,
|
|
160048
160198
|
side: _propTypes.default.any,
|
|
160049
160199
|
ref: _propTypes.default.any
|
|
160050
160200
|
}).isRequired]),
|
|
@@ -160169,6 +160319,15 @@ EuiFormControlLayoutIcons.__docgenInfo = {
|
|
|
160169
160319
|
}, {
|
|
160170
160320
|
"value": "\"clock\"",
|
|
160171
160321
|
"computed": false
|
|
160322
|
+
}, {
|
|
160323
|
+
"value": "\"cloudDrizzle\"",
|
|
160324
|
+
"computed": false
|
|
160325
|
+
}, {
|
|
160326
|
+
"value": "\"cloudStormy\"",
|
|
160327
|
+
"computed": false
|
|
160328
|
+
}, {
|
|
160329
|
+
"value": "\"cloudSunny\"",
|
|
160330
|
+
"computed": false
|
|
160172
160331
|
}, {
|
|
160173
160332
|
"value": "\"compute\"",
|
|
160174
160333
|
"computed": false
|
|
@@ -160235,6 +160394,12 @@ EuiFormControlLayoutIcons.__docgenInfo = {
|
|
|
160235
160394
|
}, {
|
|
160236
160395
|
"value": "\"document\"",
|
|
160237
160396
|
"computed": false
|
|
160397
|
+
}, {
|
|
160398
|
+
"value": "\"documentEdit\"",
|
|
160399
|
+
"computed": false
|
|
160400
|
+
}, {
|
|
160401
|
+
"value": "\"documents\"",
|
|
160402
|
+
"computed": false
|
|
160238
160403
|
}, {
|
|
160239
160404
|
"value": "\"dot\"",
|
|
160240
160405
|
"computed": false
|
|
@@ -160886,6 +161051,9 @@ EuiFormControlLayoutIcons.__docgenInfo = {
|
|
|
160886
161051
|
}, {
|
|
160887
161052
|
"value": "\"timelionApp\"",
|
|
160888
161053
|
"computed": false
|
|
161054
|
+
}, {
|
|
161055
|
+
"value": "\"training\"",
|
|
161056
|
+
"computed": false
|
|
160889
161057
|
}, {
|
|
160890
161058
|
"value": "\"trash\"",
|
|
160891
161059
|
"computed": false
|
|
@@ -160904,6 +161072,9 @@ EuiFormControlLayoutIcons.__docgenInfo = {
|
|
|
160904
161072
|
}, {
|
|
160905
161073
|
"value": "\"vector\"",
|
|
160906
161074
|
"computed": false
|
|
161075
|
+
}, {
|
|
161076
|
+
"value": "\"videoPlayer\"",
|
|
161077
|
+
"computed": false
|
|
160907
161078
|
}, {
|
|
160908
161079
|
"value": "\"visArea\"",
|
|
160909
161080
|
"computed": false
|
|
@@ -161154,6 +161325,15 @@ EuiFormControlLayoutIcons.__docgenInfo = {
|
|
|
161154
161325
|
}, {
|
|
161155
161326
|
"value": "\"clock\"",
|
|
161156
161327
|
"computed": false
|
|
161328
|
+
}, {
|
|
161329
|
+
"value": "\"cloudDrizzle\"",
|
|
161330
|
+
"computed": false
|
|
161331
|
+
}, {
|
|
161332
|
+
"value": "\"cloudStormy\"",
|
|
161333
|
+
"computed": false
|
|
161334
|
+
}, {
|
|
161335
|
+
"value": "\"cloudSunny\"",
|
|
161336
|
+
"computed": false
|
|
161157
161337
|
}, {
|
|
161158
161338
|
"value": "\"compute\"",
|
|
161159
161339
|
"computed": false
|
|
@@ -161220,6 +161400,12 @@ EuiFormControlLayoutIcons.__docgenInfo = {
|
|
|
161220
161400
|
}, {
|
|
161221
161401
|
"value": "\"document\"",
|
|
161222
161402
|
"computed": false
|
|
161403
|
+
}, {
|
|
161404
|
+
"value": "\"documentEdit\"",
|
|
161405
|
+
"computed": false
|
|
161406
|
+
}, {
|
|
161407
|
+
"value": "\"documents\"",
|
|
161408
|
+
"computed": false
|
|
161223
161409
|
}, {
|
|
161224
161410
|
"value": "\"dot\"",
|
|
161225
161411
|
"computed": false
|
|
@@ -161871,6 +162057,9 @@ EuiFormControlLayoutIcons.__docgenInfo = {
|
|
|
161871
162057
|
}, {
|
|
161872
162058
|
"value": "\"timelionApp\"",
|
|
161873
162059
|
"computed": false
|
|
162060
|
+
}, {
|
|
162061
|
+
"value": "\"training\"",
|
|
162062
|
+
"computed": false
|
|
161874
162063
|
}, {
|
|
161875
162064
|
"value": "\"trash\"",
|
|
161876
162065
|
"computed": false
|
|
@@ -161889,6 +162078,9 @@ EuiFormControlLayoutIcons.__docgenInfo = {
|
|
|
161889
162078
|
}, {
|
|
161890
162079
|
"value": "\"vector\"",
|
|
161891
162080
|
"computed": false
|
|
162081
|
+
}, {
|
|
162082
|
+
"value": "\"videoPlayer\"",
|
|
162083
|
+
"computed": false
|
|
161892
162084
|
}, {
|
|
161893
162085
|
"value": "\"visArea\"",
|
|
161894
162086
|
"computed": false
|
|
@@ -163714,19 +163906,19 @@ var _services = __webpack_require__(/*! ../../../services */ "./services/index.t
|
|
|
163714
163906
|
|
|
163715
163907
|
var _number = __webpack_require__(/*! ../../../services/number */ "./services/number/index.ts");
|
|
163716
163908
|
|
|
163717
|
-
var _range_highlight = __webpack_require__(/*! ./range_highlight */ "./components/form/range/range_highlight.
|
|
163909
|
+
var _range_highlight = __webpack_require__(/*! ./range_highlight */ "./components/form/range/range_highlight.tsx");
|
|
163718
163910
|
|
|
163719
163911
|
var _range_input = __webpack_require__(/*! ./range_input */ "./components/form/range/range_input.js");
|
|
163720
163912
|
|
|
163721
|
-
var _range_label = __webpack_require__(/*! ./range_label */ "./components/form/range/range_label.
|
|
163913
|
+
var _range_label = __webpack_require__(/*! ./range_label */ "./components/form/range/range_label.tsx");
|
|
163722
163914
|
|
|
163723
|
-
var _range_slider = __webpack_require__(/*! ./range_slider */ "./components/form/range/range_slider.
|
|
163915
|
+
var _range_slider = __webpack_require__(/*! ./range_slider */ "./components/form/range/range_slider.tsx");
|
|
163724
163916
|
|
|
163725
|
-
var _range_thumb = __webpack_require__(/*! ./range_thumb */ "./components/form/range/range_thumb.
|
|
163917
|
+
var _range_thumb = __webpack_require__(/*! ./range_thumb */ "./components/form/range/range_thumb.tsx");
|
|
163726
163918
|
|
|
163727
|
-
var _range_track = __webpack_require__(/*! ./range_track */ "./components/form/range/range_track.
|
|
163919
|
+
var _range_track = __webpack_require__(/*! ./range_track */ "./components/form/range/range_track.tsx");
|
|
163728
163920
|
|
|
163729
|
-
var _range_wrapper = __webpack_require__(/*! ./range_wrapper */ "./components/form/range/range_wrapper.
|
|
163921
|
+
var _range_wrapper = __webpack_require__(/*! ./range_wrapper */ "./components/form/range/range_wrapper.tsx");
|
|
163730
163922
|
|
|
163731
163923
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
163732
163924
|
|
|
@@ -164052,7 +164244,7 @@ function (_Component) {
|
|
|
164052
164244
|
showTicks: showTicks,
|
|
164053
164245
|
hasFocus: this.state.hasFocus,
|
|
164054
164246
|
"aria-hidden": true,
|
|
164055
|
-
tabIndex:
|
|
164247
|
+
tabIndex: -1,
|
|
164056
164248
|
showRange: showRange
|
|
164057
164249
|
}, rest)), this.state.rangeSliderRefAvailable && _react.default.createElement(_react.default.Fragment, null, _react.default.createElement(_range_thumb.EuiRangeThumb, {
|
|
164058
164250
|
min: min,
|
|
@@ -164704,19 +164896,19 @@ var _classnames = _interopRequireDefault(__webpack_require__(/*! classnames */ "
|
|
|
164704
164896
|
|
|
164705
164897
|
var _number = __webpack_require__(/*! ../../../services/number */ "./services/number/index.ts");
|
|
164706
164898
|
|
|
164707
|
-
var _range_highlight = __webpack_require__(/*! ./range_highlight */ "./components/form/range/range_highlight.
|
|
164899
|
+
var _range_highlight = __webpack_require__(/*! ./range_highlight */ "./components/form/range/range_highlight.tsx");
|
|
164708
164900
|
|
|
164709
164901
|
var _range_input = __webpack_require__(/*! ./range_input */ "./components/form/range/range_input.js");
|
|
164710
164902
|
|
|
164711
|
-
var _range_label = __webpack_require__(/*! ./range_label */ "./components/form/range/range_label.
|
|
164903
|
+
var _range_label = __webpack_require__(/*! ./range_label */ "./components/form/range/range_label.tsx");
|
|
164712
164904
|
|
|
164713
|
-
var _range_slider = __webpack_require__(/*! ./range_slider */ "./components/form/range/range_slider.
|
|
164905
|
+
var _range_slider = __webpack_require__(/*! ./range_slider */ "./components/form/range/range_slider.tsx");
|
|
164714
164906
|
|
|
164715
|
-
var _range_tooltip = __webpack_require__(/*! ./range_tooltip */ "./components/form/range/range_tooltip.
|
|
164907
|
+
var _range_tooltip = __webpack_require__(/*! ./range_tooltip */ "./components/form/range/range_tooltip.tsx");
|
|
164716
164908
|
|
|
164717
|
-
var _range_track = __webpack_require__(/*! ./range_track */ "./components/form/range/range_track.
|
|
164909
|
+
var _range_track = __webpack_require__(/*! ./range_track */ "./components/form/range/range_track.tsx");
|
|
164718
164910
|
|
|
164719
|
-
var _range_wrapper = __webpack_require__(/*! ./range_wrapper */ "./components/form/range/range_wrapper.
|
|
164911
|
+
var _range_wrapper = __webpack_require__(/*! ./range_wrapper */ "./components/form/range/range_wrapper.tsx");
|
|
164720
164912
|
|
|
164721
164913
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
164722
164914
|
|
|
@@ -164835,7 +165027,7 @@ function (_Component) {
|
|
|
164835
165027
|
style: style,
|
|
164836
165028
|
showTicks: showTicks,
|
|
164837
165029
|
showRange: showRange,
|
|
164838
|
-
tabIndex: showInput ?
|
|
165030
|
+
tabIndex: showInput ? -1 : tabIndex || null
|
|
164839
165031
|
}, rest)), showValue && !!String(value).length && _react.default.createElement(_range_tooltip.EuiRangeTooltip, {
|
|
164840
165032
|
value: value,
|
|
164841
165033
|
max: max,
|
|
@@ -165208,10 +165400,10 @@ EuiRange.__docgenInfo = {
|
|
|
165208
165400
|
|
|
165209
165401
|
/***/ }),
|
|
165210
165402
|
|
|
165211
|
-
/***/ "./components/form/range/range_highlight.
|
|
165212
|
-
|
|
165213
|
-
!*** ./components/form/range/range_highlight.
|
|
165214
|
-
|
|
165403
|
+
/***/ "./components/form/range/range_highlight.tsx":
|
|
165404
|
+
/*!***************************************************!*\
|
|
165405
|
+
!*** ./components/form/range/range_highlight.tsx ***!
|
|
165406
|
+
\***************************************************/
|
|
165215
165407
|
/*! no static exports found */
|
|
165216
165408
|
/***/ (function(module, exports, __webpack_require__) {
|
|
165217
165409
|
|
|
@@ -165499,10 +165691,10 @@ EuiRangeInput.__docgenInfo = {
|
|
|
165499
165691
|
|
|
165500
165692
|
/***/ }),
|
|
165501
165693
|
|
|
165502
|
-
/***/ "./components/form/range/range_label.
|
|
165503
|
-
|
|
165504
|
-
!*** ./components/form/range/range_label.
|
|
165505
|
-
|
|
165694
|
+
/***/ "./components/form/range/range_label.tsx":
|
|
165695
|
+
/*!***********************************************!*\
|
|
165696
|
+
!*** ./components/form/range/range_label.tsx ***!
|
|
165697
|
+
\***********************************************/
|
|
165506
165698
|
/*! no static exports found */
|
|
165507
165699
|
/***/ (function(module, exports, __webpack_require__) {
|
|
165508
165700
|
|
|
@@ -165525,7 +165717,8 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
|
|
|
165525
165717
|
var EuiRangeLabel = function EuiRangeLabel(_ref) {
|
|
165526
165718
|
var children = _ref.children,
|
|
165527
165719
|
disabled = _ref.disabled,
|
|
165528
|
-
side = _ref.side
|
|
165720
|
+
_ref$side = _ref.side,
|
|
165721
|
+
side = _ref$side === void 0 ? 'max' : _ref$side;
|
|
165529
165722
|
var classes = (0, _classnames.default)('euiRangeLabel', "euiRangeLabel--".concat(side), {
|
|
165530
165723
|
'euiRangeLabel--isDisabled': disabled
|
|
165531
165724
|
});
|
|
@@ -165536,10 +165729,9 @@ var EuiRangeLabel = function EuiRangeLabel(_ref) {
|
|
|
165536
165729
|
|
|
165537
165730
|
exports.EuiRangeLabel = EuiRangeLabel;
|
|
165538
165731
|
EuiRangeLabel.propTypes = {
|
|
165539
|
-
|
|
165540
|
-
|
|
165541
|
-
|
|
165542
|
-
side: 'max'
|
|
165732
|
+
children: _propTypes.default.oneOfType([_propTypes.default.string.isRequired, _propTypes.default.number.isRequired]).isRequired,
|
|
165733
|
+
disabled: _propTypes.default.bool,
|
|
165734
|
+
side: _propTypes.default.oneOf(["min", "max"])
|
|
165543
165735
|
};
|
|
165544
165736
|
EuiRangeLabel.__docgenInfo = {
|
|
165545
165737
|
"description": "",
|
|
@@ -165554,25 +165746,44 @@ EuiRangeLabel.__docgenInfo = {
|
|
|
165554
165746
|
"type": {
|
|
165555
165747
|
"name": "enum",
|
|
165556
165748
|
"value": [{
|
|
165557
|
-
"value": "
|
|
165749
|
+
"value": "\"min\"",
|
|
165558
165750
|
"computed": false
|
|
165559
165751
|
}, {
|
|
165560
|
-
"value": "
|
|
165752
|
+
"value": "\"max\"",
|
|
165561
165753
|
"computed": false
|
|
165562
165754
|
}]
|
|
165563
165755
|
},
|
|
165564
165756
|
"required": false,
|
|
165565
165757
|
"description": ""
|
|
165758
|
+
},
|
|
165759
|
+
"children": {
|
|
165760
|
+
"type": {
|
|
165761
|
+
"name": "union",
|
|
165762
|
+
"value": [{
|
|
165763
|
+
"name": "string"
|
|
165764
|
+
}, {
|
|
165765
|
+
"name": "number"
|
|
165766
|
+
}]
|
|
165767
|
+
},
|
|
165768
|
+
"required": true,
|
|
165769
|
+
"description": ""
|
|
165770
|
+
},
|
|
165771
|
+
"disabled": {
|
|
165772
|
+
"type": {
|
|
165773
|
+
"name": "bool"
|
|
165774
|
+
},
|
|
165775
|
+
"required": false,
|
|
165776
|
+
"description": ""
|
|
165566
165777
|
}
|
|
165567
165778
|
}
|
|
165568
165779
|
};
|
|
165569
165780
|
|
|
165570
165781
|
/***/ }),
|
|
165571
165782
|
|
|
165572
|
-
/***/ "./components/form/range/range_levels.
|
|
165573
|
-
|
|
165574
|
-
!*** ./components/form/range/range_levels.
|
|
165575
|
-
|
|
165783
|
+
/***/ "./components/form/range/range_levels.tsx":
|
|
165784
|
+
/*!************************************************!*\
|
|
165785
|
+
!*** ./components/form/range/range_levels.tsx ***!
|
|
165786
|
+
\************************************************/
|
|
165576
165787
|
/*! no static exports found */
|
|
165577
165788
|
/***/ (function(module, exports, __webpack_require__) {
|
|
165578
165789
|
|
|
@@ -165596,7 +165807,8 @@ var LEVEL_COLORS = ['primary', 'success', 'warning', 'danger'];
|
|
|
165596
165807
|
exports.LEVEL_COLORS = LEVEL_COLORS;
|
|
165597
165808
|
|
|
165598
165809
|
var EuiRangeLevels = function EuiRangeLevels(_ref) {
|
|
165599
|
-
var levels = _ref.levels,
|
|
165810
|
+
var _ref$levels = _ref.levels,
|
|
165811
|
+
levels = _ref$levels === void 0 ? [] : _ref$levels,
|
|
165600
165812
|
max = _ref.max,
|
|
165601
165813
|
min = _ref.min,
|
|
165602
165814
|
showTicks = _ref.showTicks;
|
|
@@ -165635,8 +165847,8 @@ EuiRangeLevels.propTypes = {
|
|
|
165635
165847
|
levels: _propTypes.default.arrayOf(_propTypes.default.shape({
|
|
165636
165848
|
min: _propTypes.default.number.isRequired,
|
|
165637
165849
|
max: _propTypes.default.number.isRequired,
|
|
165638
|
-
color: _propTypes.default.oneOf(
|
|
165639
|
-
})),
|
|
165850
|
+
color: _propTypes.default.oneOf(["primary", "success", "warning", "danger"]).isRequired
|
|
165851
|
+
}).isRequired),
|
|
165640
165852
|
max: _propTypes.default.number.isRequired,
|
|
165641
165853
|
min: _propTypes.default.number.isRequired,
|
|
165642
165854
|
showTicks: _propTypes.default.bool
|
|
@@ -165647,6 +165859,10 @@ EuiRangeLevels.__docgenInfo = {
|
|
|
165647
165859
|
"displayName": "EuiRangeLevels",
|
|
165648
165860
|
"props": {
|
|
165649
165861
|
"levels": {
|
|
165862
|
+
"defaultValue": {
|
|
165863
|
+
"value": "[]",
|
|
165864
|
+
"computed": false
|
|
165865
|
+
},
|
|
165650
165866
|
"type": {
|
|
165651
165867
|
"name": "arrayOf",
|
|
165652
165868
|
"value": {
|
|
@@ -165663,16 +165879,16 @@ EuiRangeLevels.__docgenInfo = {
|
|
|
165663
165879
|
"color": {
|
|
165664
165880
|
"name": "enum",
|
|
165665
165881
|
"value": [{
|
|
165666
|
-
"value": "
|
|
165882
|
+
"value": "\"primary\"",
|
|
165667
165883
|
"computed": false
|
|
165668
165884
|
}, {
|
|
165669
|
-
"value": "
|
|
165885
|
+
"value": "\"success\"",
|
|
165670
165886
|
"computed": false
|
|
165671
165887
|
}, {
|
|
165672
|
-
"value": "
|
|
165888
|
+
"value": "\"warning\"",
|
|
165673
165889
|
"computed": false
|
|
165674
165890
|
}, {
|
|
165675
|
-
"value": "
|
|
165891
|
+
"value": "\"danger\"",
|
|
165676
165892
|
"computed": false
|
|
165677
165893
|
}],
|
|
165678
165894
|
"required": true
|
|
@@ -165709,10 +165925,10 @@ EuiRangeLevels.__docgenInfo = {
|
|
|
165709
165925
|
|
|
165710
165926
|
/***/ }),
|
|
165711
165927
|
|
|
165712
|
-
/***/ "./components/form/range/range_slider.
|
|
165713
|
-
|
|
165714
|
-
!*** ./components/form/range/range_slider.
|
|
165715
|
-
|
|
165928
|
+
/***/ "./components/form/range/range_slider.tsx":
|
|
165929
|
+
/*!************************************************!*\
|
|
165930
|
+
!*** ./components/form/range/range_slider.tsx ***!
|
|
165931
|
+
\************************************************/
|
|
165716
165932
|
/*! no static exports found */
|
|
165717
165933
|
/***/ (function(module, exports, __webpack_require__) {
|
|
165718
165934
|
|
|
@@ -165734,7 +165950,7 @@ __webpack_require__(/*! core-js/modules/es6.object.keys */ "../node_modules/core
|
|
|
165734
165950
|
|
|
165735
165951
|
__webpack_require__(/*! core-js/modules/es6.function.name */ "../node_modules/core-js/modules/es6.function.name.js");
|
|
165736
165952
|
|
|
165737
|
-
var _react =
|
|
165953
|
+
var _react = _interopRequireWildcard(__webpack_require__(/*! react */ "react"));
|
|
165738
165954
|
|
|
165739
165955
|
var _propTypes = _interopRequireDefault(__webpack_require__(/*! prop-types */ "prop-types"));
|
|
165740
165956
|
|
|
@@ -165742,13 +165958,15 @@ var _classnames = _interopRequireDefault(__webpack_require__(/*! classnames */ "
|
|
|
165742
165958
|
|
|
165743
165959
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
165744
165960
|
|
|
165961
|
+
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
|
|
165962
|
+
|
|
165745
165963
|
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
165746
165964
|
|
|
165747
165965
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
165748
165966
|
|
|
165749
165967
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
165750
165968
|
|
|
165751
|
-
var EuiRangeSlider = _react.
|
|
165969
|
+
var EuiRangeSlider = (0, _react.forwardRef)(function (_ref, ref) {
|
|
165752
165970
|
var className = _ref.className,
|
|
165753
165971
|
disabled = _ref.disabled,
|
|
165754
165972
|
id = _ref.id,
|
|
@@ -165786,27 +166004,30 @@ var EuiRangeSlider = _react.default.forwardRef(function (_ref, ref) {
|
|
|
165786
166004
|
tabIndex: tabIndex
|
|
165787
166005
|
}, rest));
|
|
165788
166006
|
});
|
|
165789
|
-
|
|
165790
166007
|
exports.EuiRangeSlider = EuiRangeSlider;
|
|
165791
166008
|
EuiRangeSlider.propTypes = {
|
|
166009
|
+
className: _propTypes.default.string,
|
|
166010
|
+
"aria-label": _propTypes.default.string,
|
|
166011
|
+
"data-test-subj": _propTypes.default.string,
|
|
165792
166012
|
id: _propTypes.default.string,
|
|
166013
|
+
name: _propTypes.default.string,
|
|
165793
166014
|
min: _propTypes.default.number.isRequired,
|
|
165794
166015
|
max: _propTypes.default.number.isRequired,
|
|
165795
|
-
name: _propTypes.default.string,
|
|
165796
166016
|
step: _propTypes.default.number,
|
|
165797
|
-
onChange: _propTypes.default.func,
|
|
165798
|
-
tabIndex: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.number]),
|
|
165799
|
-
value: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string, _propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]))]),
|
|
165800
166017
|
hasFocus: _propTypes.default.bool,
|
|
165801
|
-
showRange: _propTypes.default.bool
|
|
166018
|
+
showRange: _propTypes.default.bool,
|
|
166019
|
+
showTicks: _propTypes.default.bool,
|
|
166020
|
+
disabled: _propTypes.default.bool,
|
|
166021
|
+
tabIndex: _propTypes.default.number,
|
|
166022
|
+
onChange: _propTypes.default.any
|
|
165802
166023
|
};
|
|
165803
166024
|
|
|
165804
166025
|
/***/ }),
|
|
165805
166026
|
|
|
165806
|
-
/***/ "./components/form/range/range_thumb.
|
|
165807
|
-
|
|
165808
|
-
!*** ./components/form/range/range_thumb.
|
|
165809
|
-
|
|
166027
|
+
/***/ "./components/form/range/range_thumb.tsx":
|
|
166028
|
+
/*!***********************************************!*\
|
|
166029
|
+
!*** ./components/form/range/range_thumb.tsx ***!
|
|
166030
|
+
\***********************************************/
|
|
165810
166031
|
/*! no static exports found */
|
|
165811
166032
|
/***/ (function(module, exports, __webpack_require__) {
|
|
165812
166033
|
|
|
@@ -165861,15 +166082,19 @@ var EuiRangeThumb = function EuiRangeThumb(_ref) {
|
|
|
165861
166082
|
"aria-valuemax": max,
|
|
165862
166083
|
"aria-valuenow": Number(value),
|
|
165863
166084
|
"aria-disabled": !!disabled,
|
|
165864
|
-
tabIndex: showInput || !!disabled ?
|
|
166085
|
+
tabIndex: showInput || !!disabled ? -1 : 0
|
|
165865
166086
|
}, rest));
|
|
165866
166087
|
};
|
|
165867
166088
|
|
|
165868
166089
|
exports.EuiRangeThumb = EuiRangeThumb;
|
|
165869
166090
|
EuiRangeThumb.propTypes = {
|
|
166091
|
+
className: _propTypes.default.string,
|
|
166092
|
+
"aria-label": _propTypes.default.string,
|
|
166093
|
+
"data-test-subj": _propTypes.default.string,
|
|
165870
166094
|
min: _propTypes.default.number.isRequired,
|
|
165871
166095
|
max: _propTypes.default.number.isRequired,
|
|
165872
|
-
value: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]),
|
|
166096
|
+
value: _propTypes.default.oneOfType([_propTypes.default.number.isRequired, _propTypes.default.string.isRequired]),
|
|
166097
|
+
disabled: _propTypes.default.bool,
|
|
165873
166098
|
showInput: _propTypes.default.bool,
|
|
165874
166099
|
showTicks: _propTypes.default.bool
|
|
165875
166100
|
};
|
|
@@ -165878,6 +166103,27 @@ EuiRangeThumb.__docgenInfo = {
|
|
|
165878
166103
|
"methods": [],
|
|
165879
166104
|
"displayName": "EuiRangeThumb",
|
|
165880
166105
|
"props": {
|
|
166106
|
+
"className": {
|
|
166107
|
+
"type": {
|
|
166108
|
+
"name": "string"
|
|
166109
|
+
},
|
|
166110
|
+
"required": false,
|
|
166111
|
+
"description": ""
|
|
166112
|
+
},
|
|
166113
|
+
"aria-label": {
|
|
166114
|
+
"type": {
|
|
166115
|
+
"name": "string"
|
|
166116
|
+
},
|
|
166117
|
+
"required": false,
|
|
166118
|
+
"description": ""
|
|
166119
|
+
},
|
|
166120
|
+
"data-test-subj": {
|
|
166121
|
+
"type": {
|
|
166122
|
+
"name": "string"
|
|
166123
|
+
},
|
|
166124
|
+
"required": false,
|
|
166125
|
+
"description": ""
|
|
166126
|
+
},
|
|
165881
166127
|
"min": {
|
|
165882
166128
|
"type": {
|
|
165883
166129
|
"name": "number"
|
|
@@ -165904,6 +166150,13 @@ EuiRangeThumb.__docgenInfo = {
|
|
|
165904
166150
|
"required": false,
|
|
165905
166151
|
"description": ""
|
|
165906
166152
|
},
|
|
166153
|
+
"disabled": {
|
|
166154
|
+
"type": {
|
|
166155
|
+
"name": "bool"
|
|
166156
|
+
},
|
|
166157
|
+
"required": false,
|
|
166158
|
+
"description": ""
|
|
166159
|
+
},
|
|
165907
166160
|
"showInput": {
|
|
165908
166161
|
"type": {
|
|
165909
166162
|
"name": "bool"
|
|
@@ -165923,10 +166176,10 @@ EuiRangeThumb.__docgenInfo = {
|
|
|
165923
166176
|
|
|
165924
166177
|
/***/ }),
|
|
165925
166178
|
|
|
165926
|
-
/***/ "./components/form/range/range_ticks.
|
|
165927
|
-
|
|
165928
|
-
!*** ./components/form/range/range_ticks.
|
|
165929
|
-
|
|
166179
|
+
/***/ "./components/form/range/range_ticks.tsx":
|
|
166180
|
+
/*!***********************************************!*\
|
|
166181
|
+
!*** ./components/form/range/range_ticks.tsx ***!
|
|
166182
|
+
\***********************************************/
|
|
165930
166183
|
/*! no static exports found */
|
|
165931
166184
|
/***/ (function(module, exports, __webpack_require__) {
|
|
165932
166185
|
|
|
@@ -165938,6 +166191,12 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
165938
166191
|
});
|
|
165939
166192
|
exports.EuiRangeTicks = void 0;
|
|
165940
166193
|
|
|
166194
|
+
__webpack_require__(/*! core-js/modules/es7.symbol.async-iterator */ "../node_modules/core-js/modules/es7.symbol.async-iterator.js");
|
|
166195
|
+
|
|
166196
|
+
__webpack_require__(/*! core-js/modules/es6.symbol */ "../node_modules/core-js/modules/es6.symbol.js");
|
|
166197
|
+
|
|
166198
|
+
__webpack_require__(/*! core-js/modules/web.dom.iterable */ "../node_modules/core-js/modules/web.dom.iterable.js");
|
|
166199
|
+
|
|
165941
166200
|
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
|
|
165942
166201
|
|
|
165943
166202
|
var _propTypes = _interopRequireDefault(__webpack_require__(/*! prop-types */ "prop-types"));
|
|
@@ -165946,8 +166205,18 @@ var _classnames = _interopRequireDefault(__webpack_require__(/*! classnames */ "
|
|
|
165946
166205
|
|
|
165947
166206
|
var _find = _interopRequireDefault(__webpack_require__(/*! lodash/find */ "../node_modules/lodash/find.js"));
|
|
165948
166207
|
|
|
166208
|
+
var _inner_text = __webpack_require__(/*! ../../inner_text */ "./components/inner_text/index.ts");
|
|
166209
|
+
|
|
165949
166210
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
165950
166211
|
|
|
166212
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); }
|
|
166213
|
+
|
|
166214
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); }
|
|
166215
|
+
|
|
166216
|
+
function _iterableToArrayLimit(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
166217
|
+
|
|
166218
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
166219
|
+
|
|
165951
166220
|
var EuiRangeTicks = function EuiRangeTicks(_ref) {
|
|
165952
166221
|
var disabled = _ref.disabled,
|
|
165953
166222
|
onChange = _ref.onChange,
|
|
@@ -165956,7 +166225,8 @@ var EuiRangeTicks = function EuiRangeTicks(_ref) {
|
|
|
165956
166225
|
value = _ref.value,
|
|
165957
166226
|
max = _ref.max,
|
|
165958
166227
|
min = _ref.min,
|
|
165959
|
-
interval = _ref.interval
|
|
166228
|
+
_ref$interval = _ref.interval,
|
|
166229
|
+
interval = _ref$interval === void 0 ? 1 : _ref$interval;
|
|
165960
166230
|
// Calculate the width of each tick mark
|
|
165961
166231
|
var percentageWidth = interval / (max - min + interval) * 100; // Align with item labels across the range by adding
|
|
165962
166232
|
// left and right negative margins that is half of the tick marks
|
|
@@ -165990,6 +166260,12 @@ var EuiRangeTicks = function EuiRangeTicks(_ref) {
|
|
|
165990
166260
|
'euiRangeTick--isCustom': customTick
|
|
165991
166261
|
});
|
|
165992
166262
|
var label = customTick ? customTick.label : tickValue;
|
|
166263
|
+
|
|
166264
|
+
var _useInnerText = (0, _inner_text.useInnerText)(),
|
|
166265
|
+
_useInnerText2 = _slicedToArray(_useInnerText, 2),
|
|
166266
|
+
ref = _useInnerText2[0],
|
|
166267
|
+
innerText = _useInnerText2[1];
|
|
166268
|
+
|
|
165993
166269
|
return _react.default.createElement("button", {
|
|
165994
166270
|
type: "button",
|
|
165995
166271
|
className: tickClasses,
|
|
@@ -165998,41 +166274,39 @@ var EuiRangeTicks = function EuiRangeTicks(_ref) {
|
|
|
165998
166274
|
disabled: disabled,
|
|
165999
166275
|
onClick: onChange,
|
|
166000
166276
|
style: tickStyle,
|
|
166001
|
-
tabIndex:
|
|
166002
|
-
|
|
166277
|
+
tabIndex: -1,
|
|
166278
|
+
ref: ref,
|
|
166279
|
+
title: typeof label === 'string' ? label : innerText
|
|
166003
166280
|
}, label);
|
|
166004
166281
|
}));
|
|
166005
166282
|
};
|
|
166006
166283
|
|
|
166007
166284
|
exports.EuiRangeTicks = EuiRangeTicks;
|
|
166008
166285
|
EuiRangeTicks.propTypes = {
|
|
166009
|
-
disabled: _propTypes.default.bool,
|
|
166010
|
-
onChange: _propTypes.default.func,
|
|
166011
166286
|
ticks: _propTypes.default.arrayOf(_propTypes.default.shape({
|
|
166012
166287
|
value: _propTypes.default.number.isRequired,
|
|
166013
166288
|
label: _propTypes.default.node.isRequired
|
|
166014
|
-
})),
|
|
166015
|
-
tickSequence: _propTypes.default.arrayOf(_propTypes.default.number).isRequired,
|
|
166016
|
-
value: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string, _propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.
|
|
166289
|
+
}).isRequired),
|
|
166290
|
+
tickSequence: _propTypes.default.arrayOf(_propTypes.default.number.isRequired).isRequired,
|
|
166291
|
+
value: _propTypes.default.oneOfType([_propTypes.default.number.isRequired, _propTypes.default.string.isRequired, _propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.string.isRequired, _propTypes.default.number.isRequired]).isRequired).isRequired]),
|
|
166017
166292
|
min: _propTypes.default.number.isRequired,
|
|
166018
166293
|
max: _propTypes.default.number.isRequired,
|
|
166019
|
-
interval: _propTypes.default.number
|
|
166294
|
+
interval: _propTypes.default.number,
|
|
166295
|
+
disabled: _propTypes.default.bool,
|
|
166296
|
+
onChange: _propTypes.default.func
|
|
166020
166297
|
};
|
|
166021
166298
|
EuiRangeTicks.__docgenInfo = {
|
|
166022
166299
|
"description": "",
|
|
166023
166300
|
"methods": [],
|
|
166024
166301
|
"displayName": "EuiRangeTicks",
|
|
166025
166302
|
"props": {
|
|
166026
|
-
"
|
|
166027
|
-
"
|
|
166028
|
-
"
|
|
166303
|
+
"interval": {
|
|
166304
|
+
"defaultValue": {
|
|
166305
|
+
"value": "1",
|
|
166306
|
+
"computed": false
|
|
166029
166307
|
},
|
|
166030
|
-
"required": false,
|
|
166031
|
-
"description": ""
|
|
166032
|
-
},
|
|
166033
|
-
"onChange": {
|
|
166034
166308
|
"type": {
|
|
166035
|
-
"name": "
|
|
166309
|
+
"name": "number"
|
|
166036
166310
|
},
|
|
166037
166311
|
"required": false,
|
|
166038
166312
|
"description": ""
|
|
@@ -166079,9 +166353,9 @@ EuiRangeTicks.__docgenInfo = {
|
|
|
166079
166353
|
"value": {
|
|
166080
166354
|
"name": "union",
|
|
166081
166355
|
"value": [{
|
|
166082
|
-
"name": "number"
|
|
166083
|
-
}, {
|
|
166084
166356
|
"name": "string"
|
|
166357
|
+
}, {
|
|
166358
|
+
"name": "number"
|
|
166085
166359
|
}]
|
|
166086
166360
|
}
|
|
166087
166361
|
}]
|
|
@@ -166103,9 +166377,16 @@ EuiRangeTicks.__docgenInfo = {
|
|
|
166103
166377
|
"required": true,
|
|
166104
166378
|
"description": ""
|
|
166105
166379
|
},
|
|
166106
|
-
"
|
|
166380
|
+
"disabled": {
|
|
166107
166381
|
"type": {
|
|
166108
|
-
"name": "
|
|
166382
|
+
"name": "bool"
|
|
166383
|
+
},
|
|
166384
|
+
"required": false,
|
|
166385
|
+
"description": ""
|
|
166386
|
+
},
|
|
166387
|
+
"onChange": {
|
|
166388
|
+
"type": {
|
|
166389
|
+
"name": "func"
|
|
166109
166390
|
},
|
|
166110
166391
|
"required": false,
|
|
166111
166392
|
"description": ""
|
|
@@ -166115,10 +166396,10 @@ EuiRangeTicks.__docgenInfo = {
|
|
|
166115
166396
|
|
|
166116
166397
|
/***/ }),
|
|
166117
166398
|
|
|
166118
|
-
/***/ "./components/form/range/range_tooltip.
|
|
166119
|
-
|
|
166120
|
-
!*** ./components/form/range/range_tooltip.
|
|
166121
|
-
|
|
166399
|
+
/***/ "./components/form/range/range_tooltip.tsx":
|
|
166400
|
+
/*!*************************************************!*\
|
|
166401
|
+
!*** ./components/form/range/range_tooltip.tsx ***!
|
|
166402
|
+
\*************************************************/
|
|
166122
166403
|
/*! no static exports found */
|
|
166123
166404
|
/***/ (function(module, exports, __webpack_require__) {
|
|
166124
166405
|
|
|
@@ -166149,7 +166430,15 @@ var EuiRangeTooltip = function EuiRangeTooltip(_ref) {
|
|
|
166149
166430
|
name = _ref.name,
|
|
166150
166431
|
showTicks = _ref.showTicks;
|
|
166151
166432
|
// Calculate the left position based on value
|
|
166152
|
-
var
|
|
166433
|
+
var val = 0;
|
|
166434
|
+
|
|
166435
|
+
if (typeof value === 'number') {
|
|
166436
|
+
val = value;
|
|
166437
|
+
} else if (typeof value === 'string') {
|
|
166438
|
+
val = parseFloat(value);
|
|
166439
|
+
}
|
|
166440
|
+
|
|
166441
|
+
var decimal = (val - min) / (max - min); // Must be between 0-100%
|
|
166153
166442
|
|
|
166154
166443
|
var valuePosition = decimal <= 1 ? decimal : 1;
|
|
166155
166444
|
valuePosition = valuePosition >= 0 ? valuePosition : 0;
|
|
@@ -166183,12 +166472,13 @@ var EuiRangeTooltip = function EuiRangeTooltip(_ref) {
|
|
|
166183
166472
|
|
|
166184
166473
|
exports.EuiRangeTooltip = EuiRangeTooltip;
|
|
166185
166474
|
EuiRangeTooltip.propTypes = {
|
|
166186
|
-
value: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]),
|
|
166475
|
+
value: _propTypes.default.oneOfType([_propTypes.default.number.isRequired, _propTypes.default.string.isRequired]),
|
|
166187
166476
|
valueAppend: _propTypes.default.node,
|
|
166188
166477
|
valuePrepend: _propTypes.default.node,
|
|
166189
166478
|
max: _propTypes.default.number.isRequired,
|
|
166190
166479
|
min: _propTypes.default.number.isRequired,
|
|
166191
|
-
name: _propTypes.default.string
|
|
166480
|
+
name: _propTypes.default.string,
|
|
166481
|
+
showTicks: _propTypes.default.bool
|
|
166192
166482
|
};
|
|
166193
166483
|
EuiRangeTooltip.__docgenInfo = {
|
|
166194
166484
|
"description": "",
|
|
@@ -166241,16 +166531,23 @@ EuiRangeTooltip.__docgenInfo = {
|
|
|
166241
166531
|
},
|
|
166242
166532
|
"required": false,
|
|
166243
166533
|
"description": ""
|
|
166534
|
+
},
|
|
166535
|
+
"showTicks": {
|
|
166536
|
+
"type": {
|
|
166537
|
+
"name": "bool"
|
|
166538
|
+
},
|
|
166539
|
+
"required": false,
|
|
166540
|
+
"description": ""
|
|
166244
166541
|
}
|
|
166245
166542
|
}
|
|
166246
166543
|
};
|
|
166247
166544
|
|
|
166248
166545
|
/***/ }),
|
|
166249
166546
|
|
|
166250
|
-
/***/ "./components/form/range/range_track.
|
|
166251
|
-
|
|
166252
|
-
!*** ./components/form/range/range_track.
|
|
166253
|
-
|
|
166547
|
+
/***/ "./components/form/range/range_track.tsx":
|
|
166548
|
+
/*!***********************************************!*\
|
|
166549
|
+
!*** ./components/form/range/range_track.tsx ***!
|
|
166550
|
+
\***********************************************/
|
|
166254
166551
|
/*! no static exports found */
|
|
166255
166552
|
/***/ (function(module, exports, __webpack_require__) {
|
|
166256
166553
|
|
|
@@ -166284,9 +166581,9 @@ var _range = _interopRequireDefault(__webpack_require__(/*! lodash/range */ "../
|
|
|
166284
166581
|
|
|
166285
166582
|
var _services = __webpack_require__(/*! ../../../services */ "./services/index.ts");
|
|
166286
166583
|
|
|
166287
|
-
var _range_levels = __webpack_require__(/*! ./range_levels */ "./components/form/range/range_levels.
|
|
166584
|
+
var _range_levels = __webpack_require__(/*! ./range_levels */ "./components/form/range/range_levels.tsx");
|
|
166288
166585
|
|
|
166289
|
-
var _range_ticks = __webpack_require__(/*! ./range_ticks */ "./components/form/range/range_ticks.
|
|
166586
|
+
var _range_ticks = __webpack_require__(/*! ./range_ticks */ "./components/form/range/range_ticks.tsx");
|
|
166290
166587
|
|
|
166291
166588
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
166292
166589
|
|
|
@@ -166456,19 +166753,20 @@ EuiRangeTrack.propTypes = {
|
|
|
166456
166753
|
min: _propTypes.default.number.isRequired,
|
|
166457
166754
|
max: _propTypes.default.number.isRequired,
|
|
166458
166755
|
step: _propTypes.default.number,
|
|
166459
|
-
value: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string, _propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.
|
|
166756
|
+
value: _propTypes.default.oneOfType([_propTypes.default.number.isRequired, _propTypes.default.string.isRequired, _propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.string.isRequired, _propTypes.default.number.isRequired]).isRequired).isRequired]),
|
|
166757
|
+
disabled: _propTypes.default.bool,
|
|
166460
166758
|
showTicks: _propTypes.default.bool,
|
|
166461
166759
|
tickInterval: _propTypes.default.number,
|
|
166462
166760
|
ticks: _propTypes.default.arrayOf(_propTypes.default.shape({
|
|
166463
166761
|
value: _propTypes.default.number.isRequired,
|
|
166464
166762
|
label: _propTypes.default.node.isRequired
|
|
166465
|
-
})),
|
|
166763
|
+
}).isRequired),
|
|
166466
166764
|
onChange: _propTypes.default.func,
|
|
166467
166765
|
levels: _propTypes.default.arrayOf(_propTypes.default.shape({
|
|
166468
|
-
min: _propTypes.default.number,
|
|
166469
|
-
max: _propTypes.default.number,
|
|
166470
|
-
color: _propTypes.default.oneOf(
|
|
166471
|
-
}))
|
|
166766
|
+
min: _propTypes.default.number.isRequired,
|
|
166767
|
+
max: _propTypes.default.number.isRequired,
|
|
166768
|
+
color: _propTypes.default.oneOf(["primary", "success", "warning", "danger"]).isRequired
|
|
166769
|
+
}).isRequired)
|
|
166472
166770
|
};
|
|
166473
166771
|
EuiRangeTrack.__docgenInfo = {
|
|
166474
166772
|
"description": "",
|
|
@@ -166553,9 +166851,9 @@ EuiRangeTrack.__docgenInfo = {
|
|
|
166553
166851
|
"value": {
|
|
166554
166852
|
"name": "union",
|
|
166555
166853
|
"value": [{
|
|
166556
|
-
"name": "number"
|
|
166557
|
-
}, {
|
|
166558
166854
|
"name": "string"
|
|
166855
|
+
}, {
|
|
166856
|
+
"name": "number"
|
|
166559
166857
|
}]
|
|
166560
166858
|
}
|
|
166561
166859
|
}]
|
|
@@ -166563,6 +166861,13 @@ EuiRangeTrack.__docgenInfo = {
|
|
|
166563
166861
|
"required": false,
|
|
166564
166862
|
"description": ""
|
|
166565
166863
|
},
|
|
166864
|
+
"disabled": {
|
|
166865
|
+
"type": {
|
|
166866
|
+
"name": "bool"
|
|
166867
|
+
},
|
|
166868
|
+
"required": false,
|
|
166869
|
+
"description": ""
|
|
166870
|
+
},
|
|
166566
166871
|
"showTicks": {
|
|
166567
166872
|
"type": {
|
|
166568
166873
|
"name": "bool"
|
|
@@ -166612,17 +166917,28 @@ EuiRangeTrack.__docgenInfo = {
|
|
|
166612
166917
|
"value": {
|
|
166613
166918
|
"min": {
|
|
166614
166919
|
"name": "number",
|
|
166615
|
-
"required":
|
|
166920
|
+
"required": true
|
|
166616
166921
|
},
|
|
166617
166922
|
"max": {
|
|
166618
166923
|
"name": "number",
|
|
166619
|
-
"required":
|
|
166924
|
+
"required": true
|
|
166620
166925
|
},
|
|
166621
166926
|
"color": {
|
|
166622
166927
|
"name": "enum",
|
|
166623
|
-
"
|
|
166624
|
-
|
|
166625
|
-
|
|
166928
|
+
"value": [{
|
|
166929
|
+
"value": "\"primary\"",
|
|
166930
|
+
"computed": false
|
|
166931
|
+
}, {
|
|
166932
|
+
"value": "\"success\"",
|
|
166933
|
+
"computed": false
|
|
166934
|
+
}, {
|
|
166935
|
+
"value": "\"warning\"",
|
|
166936
|
+
"computed": false
|
|
166937
|
+
}, {
|
|
166938
|
+
"value": "\"danger\"",
|
|
166939
|
+
"computed": false
|
|
166940
|
+
}],
|
|
166941
|
+
"required": true
|
|
166626
166942
|
}
|
|
166627
166943
|
}
|
|
166628
166944
|
}
|
|
@@ -166635,10 +166951,10 @@ EuiRangeTrack.__docgenInfo = {
|
|
|
166635
166951
|
|
|
166636
166952
|
/***/ }),
|
|
166637
166953
|
|
|
166638
|
-
/***/ "./components/form/range/range_wrapper.
|
|
166639
|
-
|
|
166640
|
-
!*** ./components/form/range/range_wrapper.
|
|
166641
|
-
|
|
166954
|
+
/***/ "./components/form/range/range_wrapper.tsx":
|
|
166955
|
+
/*!*************************************************!*\
|
|
166956
|
+
!*** ./components/form/range/range_wrapper.tsx ***!
|
|
166957
|
+
\*************************************************/
|
|
166642
166958
|
/*! no static exports found */
|
|
166643
166959
|
/***/ (function(module, exports, __webpack_require__) {
|
|
166644
166960
|
|
|
@@ -166648,7 +166964,7 @@ EuiRangeTrack.__docgenInfo = {
|
|
|
166648
166964
|
Object.defineProperty(exports, "__esModule", {
|
|
166649
166965
|
value: true
|
|
166650
166966
|
});
|
|
166651
|
-
exports.EuiRangeWrapper =
|
|
166967
|
+
exports.EuiRangeWrapper = void 0;
|
|
166652
166968
|
|
|
166653
166969
|
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
|
|
166654
166970
|
|
|
@@ -166658,9 +166974,6 @@ var _classnames = _interopRequireDefault(__webpack_require__(/*! classnames */ "
|
|
|
166658
166974
|
|
|
166659
166975
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
166660
166976
|
|
|
166661
|
-
var LEVEL_COLORS = ['primary', 'success', 'warning', 'danger'];
|
|
166662
|
-
exports.LEVEL_COLORS = LEVEL_COLORS;
|
|
166663
|
-
|
|
166664
166977
|
var EuiRangeWrapper = function EuiRangeWrapper(_ref) {
|
|
166665
166978
|
var children = _ref.children,
|
|
166666
166979
|
className = _ref.className,
|
|
@@ -166675,6 +166988,7 @@ var EuiRangeWrapper = function EuiRangeWrapper(_ref) {
|
|
|
166675
166988
|
|
|
166676
166989
|
exports.EuiRangeWrapper = EuiRangeWrapper;
|
|
166677
166990
|
EuiRangeWrapper.propTypes = {
|
|
166991
|
+
className: _propTypes.default.string,
|
|
166678
166992
|
fullWidth: _propTypes.default.bool
|
|
166679
166993
|
};
|
|
166680
166994
|
EuiRangeWrapper.__docgenInfo = {
|
|
@@ -166682,6 +166996,13 @@ EuiRangeWrapper.__docgenInfo = {
|
|
|
166682
166996
|
"methods": [],
|
|
166683
166997
|
"displayName": "EuiRangeWrapper",
|
|
166684
166998
|
"props": {
|
|
166999
|
+
"className": {
|
|
167000
|
+
"type": {
|
|
167001
|
+
"name": "string"
|
|
167002
|
+
},
|
|
167003
|
+
"required": false,
|
|
167004
|
+
"description": ""
|
|
167005
|
+
},
|
|
166685
167006
|
"fullWidth": {
|
|
166686
167007
|
"type": {
|
|
166687
167008
|
"name": "bool"
|
|
@@ -169270,7 +169591,7 @@ EuiHeaderLogo.propTypes = {
|
|
|
169270
169591
|
"aria-label": _propTypes.default.string,
|
|
169271
169592
|
"data-test-subj": _propTypes.default.string,
|
|
169272
169593
|
href: _propTypes.default.string,
|
|
169273
|
-
iconType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]),
|
|
169594
|
+
iconType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "documentEdit", "documents", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "training", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "videoPlayer", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]),
|
|
169274
169595
|
iconTitle: _propTypes.default.string,
|
|
169275
169596
|
children: _propTypes.default.node
|
|
169276
169597
|
};
|
|
@@ -169372,6 +169693,15 @@ EuiHeaderLogo.__docgenInfo = {
|
|
|
169372
169693
|
}, {
|
|
169373
169694
|
"value": "\"clock\"",
|
|
169374
169695
|
"computed": false
|
|
169696
|
+
}, {
|
|
169697
|
+
"value": "\"cloudDrizzle\"",
|
|
169698
|
+
"computed": false
|
|
169699
|
+
}, {
|
|
169700
|
+
"value": "\"cloudStormy\"",
|
|
169701
|
+
"computed": false
|
|
169702
|
+
}, {
|
|
169703
|
+
"value": "\"cloudSunny\"",
|
|
169704
|
+
"computed": false
|
|
169375
169705
|
}, {
|
|
169376
169706
|
"value": "\"compute\"",
|
|
169377
169707
|
"computed": false
|
|
@@ -169438,6 +169768,12 @@ EuiHeaderLogo.__docgenInfo = {
|
|
|
169438
169768
|
}, {
|
|
169439
169769
|
"value": "\"document\"",
|
|
169440
169770
|
"computed": false
|
|
169771
|
+
}, {
|
|
169772
|
+
"value": "\"documentEdit\"",
|
|
169773
|
+
"computed": false
|
|
169774
|
+
}, {
|
|
169775
|
+
"value": "\"documents\"",
|
|
169776
|
+
"computed": false
|
|
169441
169777
|
}, {
|
|
169442
169778
|
"value": "\"dot\"",
|
|
169443
169779
|
"computed": false
|
|
@@ -170089,6 +170425,9 @@ EuiHeaderLogo.__docgenInfo = {
|
|
|
170089
170425
|
}, {
|
|
170090
170426
|
"value": "\"timelionApp\"",
|
|
170091
170427
|
"computed": false
|
|
170428
|
+
}, {
|
|
170429
|
+
"value": "\"training\"",
|
|
170430
|
+
"computed": false
|
|
170092
170431
|
}, {
|
|
170093
170432
|
"value": "\"trash\"",
|
|
170094
170433
|
"computed": false
|
|
@@ -170107,6 +170446,9 @@ EuiHeaderLogo.__docgenInfo = {
|
|
|
170107
170446
|
}, {
|
|
170108
170447
|
"value": "\"vector\"",
|
|
170109
170448
|
"computed": false
|
|
170449
|
+
}, {
|
|
170450
|
+
"value": "\"videoPlayer\"",
|
|
170451
|
+
"computed": false
|
|
170110
170452
|
}, {
|
|
170111
170453
|
"value": "\"visArea\"",
|
|
170112
170454
|
"computed": false
|
|
@@ -171798,6 +172140,18 @@ var map = {
|
|
|
171798
172140
|
"./components/icon/assets/clock.js",
|
|
171799
172141
|
"guide"
|
|
171800
172142
|
],
|
|
172143
|
+
"./cloudDrizzle.js": [
|
|
172144
|
+
"./components/icon/assets/cloudDrizzle.js",
|
|
172145
|
+
"guide"
|
|
172146
|
+
],
|
|
172147
|
+
"./cloudStormy.js": [
|
|
172148
|
+
"./components/icon/assets/cloudStormy.js",
|
|
172149
|
+
"guide"
|
|
172150
|
+
],
|
|
172151
|
+
"./cloudSunny.js": [
|
|
172152
|
+
"./components/icon/assets/cloudSunny.js",
|
|
172153
|
+
"guide"
|
|
172154
|
+
],
|
|
171801
172155
|
"./compute.js": [
|
|
171802
172156
|
"./components/icon/assets/compute.js",
|
|
171803
172157
|
"guide"
|
|
@@ -171846,6 +172200,14 @@ var map = {
|
|
|
171846
172200
|
"./components/icon/assets/document.js",
|
|
171847
172201
|
"guide"
|
|
171848
172202
|
],
|
|
172203
|
+
"./documentEdit.js": [
|
|
172204
|
+
"./components/icon/assets/documentEdit.js",
|
|
172205
|
+
"guide"
|
|
172206
|
+
],
|
|
172207
|
+
"./documents.js": [
|
|
172208
|
+
"./components/icon/assets/documents.js",
|
|
172209
|
+
"guide"
|
|
172210
|
+
],
|
|
171849
172211
|
"./dot.js": [
|
|
171850
172212
|
"./components/icon/assets/dot.js",
|
|
171851
172213
|
"guide"
|
|
@@ -172757,6 +173119,10 @@ var map = {
|
|
|
172757
173119
|
"./components/icon/assets/tokens/tokenVariable.js",
|
|
172758
173120
|
"guide"
|
|
172759
173121
|
],
|
|
173122
|
+
"./training.js": [
|
|
173123
|
+
"./components/icon/assets/training.js",
|
|
173124
|
+
"guide"
|
|
173125
|
+
],
|
|
172760
173126
|
"./trash.js": [
|
|
172761
173127
|
"./components/icon/assets/trash.js",
|
|
172762
173128
|
"guide"
|
|
@@ -172769,6 +173135,10 @@ var map = {
|
|
|
172769
173135
|
"./components/icon/assets/vector.js",
|
|
172770
173136
|
"guide"
|
|
172771
173137
|
],
|
|
173138
|
+
"./videoPlayer.js": [
|
|
173139
|
+
"./components/icon/assets/videoPlayer.js",
|
|
173140
|
+
"guide"
|
|
173141
|
+
],
|
|
172772
173142
|
"./vis_area.js": [
|
|
172773
173143
|
"./components/icon/assets/vis_area.js",
|
|
172774
173144
|
"guide"
|
|
@@ -175897,6 +176267,138 @@ EuiIconClock.__docgenInfo = {
|
|
|
175897
176267
|
|
|
175898
176268
|
/***/ }),
|
|
175899
176269
|
|
|
176270
|
+
/***/ "./components/icon/assets/cloudDrizzle.js":
|
|
176271
|
+
/*!************************************************!*\
|
|
176272
|
+
!*** ./components/icon/assets/cloudDrizzle.js ***!
|
|
176273
|
+
\************************************************/
|
|
176274
|
+
/*! no static exports found */
|
|
176275
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
176276
|
+
|
|
176277
|
+
"use strict";
|
|
176278
|
+
|
|
176279
|
+
|
|
176280
|
+
Object.defineProperty(exports, "__esModule", {
|
|
176281
|
+
value: true
|
|
176282
|
+
});
|
|
176283
|
+
exports.icon = void 0;
|
|
176284
|
+
|
|
176285
|
+
__webpack_require__(/*! core-js/modules/es6.object.assign */ "../node_modules/core-js/modules/es6.object.assign.js");
|
|
176286
|
+
|
|
176287
|
+
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
|
|
176288
|
+
|
|
176289
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
176290
|
+
|
|
176291
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
176292
|
+
|
|
176293
|
+
var EuiIconCloudDrizzle = function EuiIconCloudDrizzle(props) {
|
|
176294
|
+
return _react.default.createElement("svg", _extends({
|
|
176295
|
+
width: 16,
|
|
176296
|
+
height: 16,
|
|
176297
|
+
viewBox: "0 0 16 16",
|
|
176298
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
176299
|
+
}, props), _react.default.createElement("path", {
|
|
176300
|
+
d: "M6.348 3.761A3.995 3.995 0 0 1 8 7a.5.5 0 0 1-1 0 3 3 0 1 0-4.878 2.34.5.5 0 0 1-.627.779 4 4 0 0 1 3.973-6.84 5.502 5.502 0 0 1 10.096 4.37.5.5 0 1 1-.92-.39 4.5 4.5 0 0 0-8.296-3.497zm-1.61 4.935a.5.5 0 1 1 .775.633l-1.466 1.792a.5.5 0 1 1-.774-.633l1.466-1.792zm-3.12 3.647a.5.5 0 0 1 .774.634l-1.505 1.84a.5.5 0 0 1-.774-.634l1.505-1.84zm7.62-3.647a.5.5 0 0 1 .775.633l-1.466 1.792a.5.5 0 1 1-.774-.633l1.466-1.792zm-3.12 3.647a.5.5 0 0 1 .774.634l-1.505 1.84a.5.5 0 0 1-.774-.634l1.505-1.84zm7.62-3.647a.5.5 0 1 1 .775.633l-1.466 1.792a.5.5 0 1 1-.774-.633l1.466-1.792zm-3.12 3.647a.5.5 0 0 1 .774.634l-1.505 1.84a.5.5 0 0 1-.774-.634l1.505-1.84z"
|
|
176301
|
+
}));
|
|
176302
|
+
};
|
|
176303
|
+
|
|
176304
|
+
var icon = EuiIconCloudDrizzle;
|
|
176305
|
+
exports.icon = icon;
|
|
176306
|
+
EuiIconCloudDrizzle.__docgenInfo = {
|
|
176307
|
+
"description": "",
|
|
176308
|
+
"methods": [],
|
|
176309
|
+
"displayName": "EuiIconCloudDrizzle"
|
|
176310
|
+
};
|
|
176311
|
+
|
|
176312
|
+
/***/ }),
|
|
176313
|
+
|
|
176314
|
+
/***/ "./components/icon/assets/cloudStormy.js":
|
|
176315
|
+
/*!***********************************************!*\
|
|
176316
|
+
!*** ./components/icon/assets/cloudStormy.js ***!
|
|
176317
|
+
\***********************************************/
|
|
176318
|
+
/*! no static exports found */
|
|
176319
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
176320
|
+
|
|
176321
|
+
"use strict";
|
|
176322
|
+
|
|
176323
|
+
|
|
176324
|
+
Object.defineProperty(exports, "__esModule", {
|
|
176325
|
+
value: true
|
|
176326
|
+
});
|
|
176327
|
+
exports.icon = void 0;
|
|
176328
|
+
|
|
176329
|
+
__webpack_require__(/*! core-js/modules/es6.object.assign */ "../node_modules/core-js/modules/es6.object.assign.js");
|
|
176330
|
+
|
|
176331
|
+
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
|
|
176332
|
+
|
|
176333
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
176334
|
+
|
|
176335
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
176336
|
+
|
|
176337
|
+
var EuiIconCloudStormy = function EuiIconCloudStormy(props) {
|
|
176338
|
+
return _react.default.createElement("svg", _extends({
|
|
176339
|
+
width: 16,
|
|
176340
|
+
height: 16,
|
|
176341
|
+
viewBox: "0 0 16 16",
|
|
176342
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
176343
|
+
}, props), _react.default.createElement("path", {
|
|
176344
|
+
d: "M7.421 4.93a.5.5 0 0 1-.87.49 3 3 0 1 0-4.43 3.918.5.5 0 0 1-.626.78 4 4 0 0 1 3.973-6.84l.032.018V3.28a5.5 5.5 0 1 1 7.003 7.357.5.5 0 1 1-.36-.934 4.5 4.5 0 1 0-5.77-5.923c.42.31.778.701 1.05 1.15h-.002zM9.6 11c.669.002.794.67.36 1.003l-4.68 3.882c-.457.378-1.053-.26-.643-.689l3.08-3.193A5411.7 5411.7 0 0 1 5.113 12c-.668-.001-.793-.669-.36-1.003l4.68-3.881c.458-.379 1.053.26.643.688l-3.08 3.193L9.6 11z"
|
|
176345
|
+
}));
|
|
176346
|
+
};
|
|
176347
|
+
|
|
176348
|
+
var icon = EuiIconCloudStormy;
|
|
176349
|
+
exports.icon = icon;
|
|
176350
|
+
EuiIconCloudStormy.__docgenInfo = {
|
|
176351
|
+
"description": "",
|
|
176352
|
+
"methods": [],
|
|
176353
|
+
"displayName": "EuiIconCloudStormy"
|
|
176354
|
+
};
|
|
176355
|
+
|
|
176356
|
+
/***/ }),
|
|
176357
|
+
|
|
176358
|
+
/***/ "./components/icon/assets/cloudSunny.js":
|
|
176359
|
+
/*!**********************************************!*\
|
|
176360
|
+
!*** ./components/icon/assets/cloudSunny.js ***!
|
|
176361
|
+
\**********************************************/
|
|
176362
|
+
/*! no static exports found */
|
|
176363
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
176364
|
+
|
|
176365
|
+
"use strict";
|
|
176366
|
+
|
|
176367
|
+
|
|
176368
|
+
Object.defineProperty(exports, "__esModule", {
|
|
176369
|
+
value: true
|
|
176370
|
+
});
|
|
176371
|
+
exports.icon = void 0;
|
|
176372
|
+
|
|
176373
|
+
__webpack_require__(/*! core-js/modules/es6.object.assign */ "../node_modules/core-js/modules/es6.object.assign.js");
|
|
176374
|
+
|
|
176375
|
+
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
|
|
176376
|
+
|
|
176377
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
176378
|
+
|
|
176379
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
176380
|
+
|
|
176381
|
+
var EuiIconCloudSunny = function EuiIconCloudSunny(props) {
|
|
176382
|
+
return _react.default.createElement("svg", _extends({
|
|
176383
|
+
width: 16,
|
|
176384
|
+
height: 16,
|
|
176385
|
+
viewBox: "0 0 16 16",
|
|
176386
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
176387
|
+
}, props), _react.default.createElement("path", {
|
|
176388
|
+
d: "M10.746 5.005A5.5 5.5 0 0 1 10.5 16H4a4 4 0 0 1-1.61-7.663A4.473 4.473 0 0 1 2.029 7H.5a.5.5 0 0 1 0-1h1.527a4.479 4.479 0 0 1 .957-2.309L1.646 2.354a.5.5 0 1 1 .708-.708L3.69 2.984A4.479 4.479 0 0 1 6 2.027V.5a.5.5 0 0 1 1 0v1.528a4.493 4.493 0 0 1 2.309.956l1.337-1.338a.5.5 0 0 1 .708.708L10.016 3.69c.311.388.56.831.73 1.314zM4 15h6.5a4.5 4.5 0 1 0-4.152-6.239A3.995 3.995 0 0 1 8 12a.5.5 0 1 1-1 0 3 3 0 1 0-3 3zm5.691-9.94a3.5 3.5 0 1 0-6.33 2.991 4.029 4.029 0 0 1 2.106.227 5.505 5.505 0 0 1 4.224-3.219z"
|
|
176389
|
+
}));
|
|
176390
|
+
};
|
|
176391
|
+
|
|
176392
|
+
var icon = EuiIconCloudSunny;
|
|
176393
|
+
exports.icon = icon;
|
|
176394
|
+
EuiIconCloudSunny.__docgenInfo = {
|
|
176395
|
+
"description": "",
|
|
176396
|
+
"methods": [],
|
|
176397
|
+
"displayName": "EuiIconCloudSunny"
|
|
176398
|
+
};
|
|
176399
|
+
|
|
176400
|
+
/***/ }),
|
|
176401
|
+
|
|
175900
176402
|
/***/ "./components/icon/assets/compute.js":
|
|
175901
176403
|
/*!*******************************************!*\
|
|
175902
176404
|
!*** ./components/icon/assets/compute.js ***!
|
|
@@ -176447,6 +176949,94 @@ EuiIconDocument.__docgenInfo = {
|
|
|
176447
176949
|
|
|
176448
176950
|
/***/ }),
|
|
176449
176951
|
|
|
176952
|
+
/***/ "./components/icon/assets/documentEdit.js":
|
|
176953
|
+
/*!************************************************!*\
|
|
176954
|
+
!*** ./components/icon/assets/documentEdit.js ***!
|
|
176955
|
+
\************************************************/
|
|
176956
|
+
/*! no static exports found */
|
|
176957
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
176958
|
+
|
|
176959
|
+
"use strict";
|
|
176960
|
+
|
|
176961
|
+
|
|
176962
|
+
Object.defineProperty(exports, "__esModule", {
|
|
176963
|
+
value: true
|
|
176964
|
+
});
|
|
176965
|
+
exports.icon = void 0;
|
|
176966
|
+
|
|
176967
|
+
__webpack_require__(/*! core-js/modules/es6.object.assign */ "../node_modules/core-js/modules/es6.object.assign.js");
|
|
176968
|
+
|
|
176969
|
+
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
|
|
176970
|
+
|
|
176971
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
176972
|
+
|
|
176973
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
176974
|
+
|
|
176975
|
+
var EuiIconDocumentEdit = function EuiIconDocumentEdit(props) {
|
|
176976
|
+
return _react.default.createElement("svg", _extends({
|
|
176977
|
+
width: 16,
|
|
176978
|
+
height: 16,
|
|
176979
|
+
viewBox: "0 0 16 16",
|
|
176980
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
176981
|
+
}, props), _react.default.createElement("path", {
|
|
176982
|
+
d: "M8.505 8.995l6.453-6.44-1.5-1.5-6.453 6.44 1.5 1.5zM12.968.19c.258-.238.657-.26.91 0l1.928 1.929a.642.642 0 0 1 0 .909l-6.78 6.784A.641.641 0 0 1 8.57 10H6.643A.643.643 0 0 1 6 9.357V7.43c0-.17.067-.335.188-.455L12.968.19zM4.5 13a.5.5 0 1 1 0-1h7a.5.5 0 1 1 0 1h-7zm4-12a.5.5 0 0 1 0 1H2v13h12V7.5a.5.5 0 1 1 1 0V15a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h6.5z"
|
|
176983
|
+
}));
|
|
176984
|
+
};
|
|
176985
|
+
|
|
176986
|
+
var icon = EuiIconDocumentEdit;
|
|
176987
|
+
exports.icon = icon;
|
|
176988
|
+
EuiIconDocumentEdit.__docgenInfo = {
|
|
176989
|
+
"description": "",
|
|
176990
|
+
"methods": [],
|
|
176991
|
+
"displayName": "EuiIconDocumentEdit"
|
|
176992
|
+
};
|
|
176993
|
+
|
|
176994
|
+
/***/ }),
|
|
176995
|
+
|
|
176996
|
+
/***/ "./components/icon/assets/documents.js":
|
|
176997
|
+
/*!*********************************************!*\
|
|
176998
|
+
!*** ./components/icon/assets/documents.js ***!
|
|
176999
|
+
\*********************************************/
|
|
177000
|
+
/*! no static exports found */
|
|
177001
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
177002
|
+
|
|
177003
|
+
"use strict";
|
|
177004
|
+
|
|
177005
|
+
|
|
177006
|
+
Object.defineProperty(exports, "__esModule", {
|
|
177007
|
+
value: true
|
|
177008
|
+
});
|
|
177009
|
+
exports.icon = void 0;
|
|
177010
|
+
|
|
177011
|
+
__webpack_require__(/*! core-js/modules/es6.object.assign */ "../node_modules/core-js/modules/es6.object.assign.js");
|
|
177012
|
+
|
|
177013
|
+
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
|
|
177014
|
+
|
|
177015
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
177016
|
+
|
|
177017
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
177018
|
+
|
|
177019
|
+
var EuiIconDocuments = function EuiIconDocuments(props) {
|
|
177020
|
+
return _react.default.createElement("svg", _extends({
|
|
177021
|
+
width: 16,
|
|
177022
|
+
height: 16,
|
|
177023
|
+
viewBox: "0 0 16 16",
|
|
177024
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
177025
|
+
}, props), _react.default.createElement("path", {
|
|
177026
|
+
d: "M8.8 0c.274 0 .537.113.726.312l3.2 3.428c.176.186.274.433.274.689V13a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h6.8zM12 5H8.5a.5.5 0 0 1-.5-.5V1H2v12h10V5zm-7.5 6a.5.5 0 1 1 0-1h5a.5.5 0 1 1 0 1h-5zm0-3a.5.5 0 0 1 0-1h5a.5.5 0 1 1 0 1h-5zm1 8a.5.5 0 1 1 0-1H14V6.5a.5.5 0 1 1 1 0V15a1 1 0 0 1-1 1H5.5z"
|
|
177027
|
+
}));
|
|
177028
|
+
};
|
|
177029
|
+
|
|
177030
|
+
var icon = EuiIconDocuments;
|
|
177031
|
+
exports.icon = icon;
|
|
177032
|
+
EuiIconDocuments.__docgenInfo = {
|
|
177033
|
+
"description": "",
|
|
177034
|
+
"methods": [],
|
|
177035
|
+
"displayName": "EuiIconDocuments"
|
|
177036
|
+
};
|
|
177037
|
+
|
|
177038
|
+
/***/ }),
|
|
177039
|
+
|
|
176450
177040
|
/***/ "./components/icon/assets/dot.js":
|
|
176451
177041
|
/*!***************************************!*\
|
|
176452
177042
|
!*** ./components/icon/assets/dot.js ***!
|
|
@@ -184607,7 +185197,7 @@ var EuiIconPopout = function EuiIconPopout(props) {
|
|
|
184607
185197
|
viewBox: "0 0 16 16",
|
|
184608
185198
|
xmlns: "http://www.w3.org/2000/svg"
|
|
184609
185199
|
}, props), _react.default.createElement("path", {
|
|
184610
|
-
d: "
|
|
185200
|
+
d: "M13 8.5a.5.5 0 1 1 1 0V12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h3.5a.5.5 0 0 1 0 1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V8.5zm-5.12.339a.5.5 0 1 1-.706-.707L13.305 2H10.5a.5.5 0 1 1 0-1H14a1 1 0 0 1 1 1v3.5a.5.5 0 1 1-1 0V2.72L7.88 8.838z"
|
|
184611
185201
|
}));
|
|
184612
185202
|
};
|
|
184613
185203
|
|
|
@@ -187517,6 +188107,50 @@ EuiIconTokenVariable.__docgenInfo = {
|
|
|
187517
188107
|
|
|
187518
188108
|
/***/ }),
|
|
187519
188109
|
|
|
188110
|
+
/***/ "./components/icon/assets/training.js":
|
|
188111
|
+
/*!********************************************!*\
|
|
188112
|
+
!*** ./components/icon/assets/training.js ***!
|
|
188113
|
+
\********************************************/
|
|
188114
|
+
/*! no static exports found */
|
|
188115
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
188116
|
+
|
|
188117
|
+
"use strict";
|
|
188118
|
+
|
|
188119
|
+
|
|
188120
|
+
Object.defineProperty(exports, "__esModule", {
|
|
188121
|
+
value: true
|
|
188122
|
+
});
|
|
188123
|
+
exports.icon = void 0;
|
|
188124
|
+
|
|
188125
|
+
__webpack_require__(/*! core-js/modules/es6.object.assign */ "../node_modules/core-js/modules/es6.object.assign.js");
|
|
188126
|
+
|
|
188127
|
+
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
|
|
188128
|
+
|
|
188129
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
188130
|
+
|
|
188131
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
188132
|
+
|
|
188133
|
+
var EuiIconTraining = function EuiIconTraining(props) {
|
|
188134
|
+
return _react.default.createElement("svg", _extends({
|
|
188135
|
+
width: 16,
|
|
188136
|
+
height: 16,
|
|
188137
|
+
viewBox: "0 0 16 16",
|
|
188138
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
188139
|
+
}, props), _react.default.createElement("path", {
|
|
188140
|
+
d: "M10.386 9.836a2.5 2.5 0 1 1 3.611.667C15.212 11.173 16 12.46 16 14v1.5a.5.5 0 1 1-1 0V14c0-1.724-1.276-3-3-3-.91 0-1.298-.02-1.805-.122-1.25-.254-2.333-1-3.585-2.566a.5.5 0 1 1 .78-.624c.9 1.124 1.653 1.74 2.434 2.043.155.052.345.083.562.105zm1.785.128c.083.01.167.021.251.034L12.5 10a1.5 1.5 0 1 0-.33-.036zM9.78 11.97a.5.5 0 0 1 .5.5c0 .076-.047.226-.05.231-.179.38-.23.774-.23 1.302v1.5a.5.5 0 1 1-1 0v-1.5c0-.657.072-1.186.307-1.696a.5.5 0 0 1 .473-.337zM5.958 5.772a.5.5 0 0 1-.78.625L3.11 3.812a.5.5 0 1 1 .78-.624l2.068 2.584zM1 11h5.5a.5.5 0 1 1 0 1h-6a.5.5 0 0 1-.5-.5V.5A.5.5 0 0 1 .5 0h12a.5.5 0 0 1 .5.5v3a.5.5 0 1 1-1 0V1H1v10z"
|
|
188141
|
+
}));
|
|
188142
|
+
};
|
|
188143
|
+
|
|
188144
|
+
var icon = EuiIconTraining;
|
|
188145
|
+
exports.icon = icon;
|
|
188146
|
+
EuiIconTraining.__docgenInfo = {
|
|
188147
|
+
"description": "",
|
|
188148
|
+
"methods": [],
|
|
188149
|
+
"displayName": "EuiIconTraining"
|
|
188150
|
+
};
|
|
188151
|
+
|
|
188152
|
+
/***/ }),
|
|
188153
|
+
|
|
187520
188154
|
/***/ "./components/icon/assets/trash.js":
|
|
187521
188155
|
/*!*****************************************!*\
|
|
187522
188156
|
!*** ./components/icon/assets/trash.js ***!
|
|
@@ -187656,6 +188290,50 @@ EuiIconVector.__docgenInfo = {
|
|
|
187656
188290
|
|
|
187657
188291
|
/***/ }),
|
|
187658
188292
|
|
|
188293
|
+
/***/ "./components/icon/assets/videoPlayer.js":
|
|
188294
|
+
/*!***********************************************!*\
|
|
188295
|
+
!*** ./components/icon/assets/videoPlayer.js ***!
|
|
188296
|
+
\***********************************************/
|
|
188297
|
+
/*! no static exports found */
|
|
188298
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
188299
|
+
|
|
188300
|
+
"use strict";
|
|
188301
|
+
|
|
188302
|
+
|
|
188303
|
+
Object.defineProperty(exports, "__esModule", {
|
|
188304
|
+
value: true
|
|
188305
|
+
});
|
|
188306
|
+
exports.icon = void 0;
|
|
188307
|
+
|
|
188308
|
+
__webpack_require__(/*! core-js/modules/es6.object.assign */ "../node_modules/core-js/modules/es6.object.assign.js");
|
|
188309
|
+
|
|
188310
|
+
var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react"));
|
|
188311
|
+
|
|
188312
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
188313
|
+
|
|
188314
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
188315
|
+
|
|
188316
|
+
var EuiIconVideoPlayer = function EuiIconVideoPlayer(props) {
|
|
188317
|
+
return _react.default.createElement("svg", _extends({
|
|
188318
|
+
width: 16,
|
|
188319
|
+
height: 16,
|
|
188320
|
+
viewBox: "0 0 16 16",
|
|
188321
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
188322
|
+
}, props), _react.default.createElement("path", {
|
|
188323
|
+
d: "M0 1.994C0 .893.895 0 1.994 0h12.012C15.107 0 16 .895 16 1.994v12.012A1.995 1.995 0 0 1 14.006 16H1.994A1.995 1.995 0 0 1 0 14.006V1.994zm1 0v12.012c0 .548.446.994.994.994h12.012a.995.995 0 0 0 .994-.994V1.994A.995.995 0 0 0 14.006 1H1.994A.995.995 0 0 0 1 1.994zM1 4h14v1H1V4zm1.5-1a.5.5 0 0 1 0-1h1a.5.5 0 0 1 0 1h-1zm3 0a.5.5 0 0 1 0-1h1a.5.5 0 0 1 0 1h-1zm4.947 6.106a1 1 0 0 1 0 1.788l-3 2A1 1 0 0 1 6 12V8a1 1 0 0 1 1.447-.894l3 2zM10 10L7 8v4l3-2z"
|
|
188324
|
+
}));
|
|
188325
|
+
};
|
|
188326
|
+
|
|
188327
|
+
var icon = EuiIconVideoPlayer;
|
|
188328
|
+
exports.icon = icon;
|
|
188329
|
+
EuiIconVideoPlayer.__docgenInfo = {
|
|
188330
|
+
"description": "",
|
|
188331
|
+
"methods": [],
|
|
188332
|
+
"displayName": "EuiIconVideoPlayer"
|
|
188333
|
+
};
|
|
188334
|
+
|
|
188335
|
+
/***/ }),
|
|
188336
|
+
|
|
187659
188337
|
/***/ "./components/icon/assets/vis_area.js":
|
|
187660
188338
|
/*!********************************************!*\
|
|
187661
188339
|
!*** ./components/icon/assets/vis_area.js ***!
|
|
@@ -188594,6 +189272,9 @@ var typeToPathMap = {
|
|
|
188594
189272
|
check: 'check',
|
|
188595
189273
|
checkInCircleFilled: 'checkInCircleFilled',
|
|
188596
189274
|
clock: 'clock',
|
|
189275
|
+
cloudDrizzle: 'cloudDrizzle',
|
|
189276
|
+
cloudStormy: 'cloudStormy',
|
|
189277
|
+
cloudSunny: 'cloudSunny',
|
|
188597
189278
|
compute: 'compute',
|
|
188598
189279
|
console: 'console',
|
|
188599
189280
|
consoleApp: 'app_console',
|
|
@@ -188616,6 +189297,8 @@ var typeToPathMap = {
|
|
|
188616
189297
|
devToolsApp: 'app_devtools',
|
|
188617
189298
|
discoverApp: 'app_discover',
|
|
188618
189299
|
document: 'document',
|
|
189300
|
+
documentEdit: 'documentEdit',
|
|
189301
|
+
documents: 'documents',
|
|
188619
189302
|
dot: 'dot',
|
|
188620
189303
|
editorAlignCenter: 'editor_align_center',
|
|
188621
189304
|
editorAlignLeft: 'editor_align_left',
|
|
@@ -188834,12 +189517,14 @@ var typeToPathMap = {
|
|
|
188834
189517
|
tear: 'tear',
|
|
188835
189518
|
temperature: 'temperature',
|
|
188836
189519
|
timelionApp: 'app_timelion',
|
|
189520
|
+
training: 'training',
|
|
188837
189521
|
trash: 'trash',
|
|
188838
189522
|
upgradeAssistantApp: 'app_upgrade_assistant',
|
|
188839
189523
|
uptimeApp: 'app_uptime',
|
|
188840
189524
|
user: 'user',
|
|
188841
189525
|
usersRolesApp: 'app_users_roles',
|
|
188842
189526
|
vector: 'vector',
|
|
189527
|
+
videoPlayer: 'videoPlayer',
|
|
188843
189528
|
visArea: 'vis_area',
|
|
188844
189529
|
visBarHorizontal: 'vis_bar_horizontal',
|
|
188845
189530
|
visBarVertical: 'vis_bar_vertical',
|
|
@@ -189090,7 +189775,7 @@ EuiIcon.propTypes = {
|
|
|
189090
189775
|
/**
|
|
189091
189776
|
* `Enum` is any of the named icons listed in the docs, `Element` is any React SVG element, and `string` is usually a URL to an SVG file
|
|
189092
189777
|
*/
|
|
189093
|
-
type: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]).isRequired,
|
|
189778
|
+
type: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "documentEdit", "documents", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "training", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "videoPlayer", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]).isRequired,
|
|
189094
189779
|
|
|
189095
189780
|
/**
|
|
189096
189781
|
* One of EUI's color palette or a valid CSS color value https://developer.mozilla.org/en-US/docs/Web/CSS/color_value.
|
|
@@ -189227,6 +189912,15 @@ EuiIcon.__docgenInfo = {
|
|
|
189227
189912
|
}, {
|
|
189228
189913
|
"value": "\"clock\"",
|
|
189229
189914
|
"computed": false
|
|
189915
|
+
}, {
|
|
189916
|
+
"value": "\"cloudDrizzle\"",
|
|
189917
|
+
"computed": false
|
|
189918
|
+
}, {
|
|
189919
|
+
"value": "\"cloudStormy\"",
|
|
189920
|
+
"computed": false
|
|
189921
|
+
}, {
|
|
189922
|
+
"value": "\"cloudSunny\"",
|
|
189923
|
+
"computed": false
|
|
189230
189924
|
}, {
|
|
189231
189925
|
"value": "\"compute\"",
|
|
189232
189926
|
"computed": false
|
|
@@ -189293,6 +189987,12 @@ EuiIcon.__docgenInfo = {
|
|
|
189293
189987
|
}, {
|
|
189294
189988
|
"value": "\"document\"",
|
|
189295
189989
|
"computed": false
|
|
189990
|
+
}, {
|
|
189991
|
+
"value": "\"documentEdit\"",
|
|
189992
|
+
"computed": false
|
|
189993
|
+
}, {
|
|
189994
|
+
"value": "\"documents\"",
|
|
189995
|
+
"computed": false
|
|
189296
189996
|
}, {
|
|
189297
189997
|
"value": "\"dot\"",
|
|
189298
189998
|
"computed": false
|
|
@@ -189944,6 +190644,9 @@ EuiIcon.__docgenInfo = {
|
|
|
189944
190644
|
}, {
|
|
189945
190645
|
"value": "\"timelionApp\"",
|
|
189946
190646
|
"computed": false
|
|
190647
|
+
}, {
|
|
190648
|
+
"value": "\"training\"",
|
|
190649
|
+
"computed": false
|
|
189947
190650
|
}, {
|
|
189948
190651
|
"value": "\"trash\"",
|
|
189949
190652
|
"computed": false
|
|
@@ -189962,6 +190665,9 @@ EuiIcon.__docgenInfo = {
|
|
|
189962
190665
|
}, {
|
|
189963
190666
|
"value": "\"vector\"",
|
|
189964
190667
|
"computed": false
|
|
190668
|
+
}, {
|
|
190669
|
+
"value": "\"videoPlayer\"",
|
|
190670
|
+
"computed": false
|
|
189965
190671
|
}, {
|
|
189966
190672
|
"value": "\"visArea\"",
|
|
189967
190673
|
"computed": false
|
|
@@ -191152,6 +191858,18 @@ Object.defineProperty(exports, "EuiImage", {
|
|
|
191152
191858
|
return _image.EuiImage;
|
|
191153
191859
|
}
|
|
191154
191860
|
});
|
|
191861
|
+
Object.defineProperty(exports, "useInnerText", {
|
|
191862
|
+
enumerable: true,
|
|
191863
|
+
get: function get() {
|
|
191864
|
+
return _inner_text.useInnerText;
|
|
191865
|
+
}
|
|
191866
|
+
});
|
|
191867
|
+
Object.defineProperty(exports, "EuiInnerText", {
|
|
191868
|
+
enumerable: true,
|
|
191869
|
+
get: function get() {
|
|
191870
|
+
return _inner_text.EuiInnerText;
|
|
191871
|
+
}
|
|
191872
|
+
});
|
|
191155
191873
|
Object.defineProperty(exports, "EuiI18n", {
|
|
191156
191874
|
enumerable: true,
|
|
191157
191875
|
get: function get() {
|
|
@@ -191711,7 +192429,7 @@ Object.defineProperty(exports, "EuiShowFor", {
|
|
|
191711
192429
|
}
|
|
191712
192430
|
});
|
|
191713
192431
|
|
|
191714
|
-
var _accordion = __webpack_require__(/*! ./accordion */ "./components/accordion/index.
|
|
192432
|
+
var _accordion = __webpack_require__(/*! ./accordion */ "./components/accordion/index.ts");
|
|
191715
192433
|
|
|
191716
192434
|
var _avatar = __webpack_require__(/*! ./avatar */ "./components/avatar/index.ts");
|
|
191717
192435
|
|
|
@@ -191783,6 +192501,8 @@ var _icon = __webpack_require__(/*! ./icon */ "./components/icon/index.ts");
|
|
|
191783
192501
|
|
|
191784
192502
|
var _image = __webpack_require__(/*! ./image */ "./components/image/index.js");
|
|
191785
192503
|
|
|
192504
|
+
var _inner_text = __webpack_require__(/*! ./inner_text */ "./components/inner_text/index.ts");
|
|
192505
|
+
|
|
191786
192506
|
var _i18n = __webpack_require__(/*! ./i18n */ "./components/i18n/index.ts");
|
|
191787
192507
|
|
|
191788
192508
|
var _loading = __webpack_require__(/*! ./loading */ "./components/loading/index.ts");
|
|
@@ -191851,6 +192571,133 @@ var _responsive = __webpack_require__(/*! ./responsive */ "./components/responsi
|
|
|
191851
192571
|
|
|
191852
192572
|
/***/ }),
|
|
191853
192573
|
|
|
192574
|
+
/***/ "./components/inner_text/index.ts":
|
|
192575
|
+
/*!****************************************!*\
|
|
192576
|
+
!*** ./components/inner_text/index.ts ***!
|
|
192577
|
+
\****************************************/
|
|
192578
|
+
/*! no static exports found */
|
|
192579
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
192580
|
+
|
|
192581
|
+
"use strict";
|
|
192582
|
+
|
|
192583
|
+
|
|
192584
|
+
Object.defineProperty(exports, "__esModule", {
|
|
192585
|
+
value: true
|
|
192586
|
+
});
|
|
192587
|
+
Object.defineProperty(exports, "useInnerText", {
|
|
192588
|
+
enumerable: true,
|
|
192589
|
+
get: function get() {
|
|
192590
|
+
return _inner_text.useInnerText;
|
|
192591
|
+
}
|
|
192592
|
+
});
|
|
192593
|
+
Object.defineProperty(exports, "EuiInnerText", {
|
|
192594
|
+
enumerable: true,
|
|
192595
|
+
get: function get() {
|
|
192596
|
+
return _inner_text.EuiInnerText;
|
|
192597
|
+
}
|
|
192598
|
+
});
|
|
192599
|
+
|
|
192600
|
+
var _inner_text = __webpack_require__(/*! ./inner_text */ "./components/inner_text/inner_text.tsx");
|
|
192601
|
+
|
|
192602
|
+
/***/ }),
|
|
192603
|
+
|
|
192604
|
+
/***/ "./components/inner_text/inner_text.tsx":
|
|
192605
|
+
/*!**********************************************!*\
|
|
192606
|
+
!*** ./components/inner_text/inner_text.tsx ***!
|
|
192607
|
+
\**********************************************/
|
|
192608
|
+
/*! no static exports found */
|
|
192609
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
192610
|
+
|
|
192611
|
+
"use strict";
|
|
192612
|
+
|
|
192613
|
+
|
|
192614
|
+
Object.defineProperty(exports, "__esModule", {
|
|
192615
|
+
value: true
|
|
192616
|
+
});
|
|
192617
|
+
exports.useInnerText = useInnerText;
|
|
192618
|
+
exports.EuiInnerText = void 0;
|
|
192619
|
+
|
|
192620
|
+
__webpack_require__(/*! core-js/modules/es7.symbol.async-iterator */ "../node_modules/core-js/modules/es7.symbol.async-iterator.js");
|
|
192621
|
+
|
|
192622
|
+
__webpack_require__(/*! core-js/modules/es6.symbol */ "../node_modules/core-js/modules/es6.symbol.js");
|
|
192623
|
+
|
|
192624
|
+
__webpack_require__(/*! core-js/modules/web.dom.iterable */ "../node_modules/core-js/modules/web.dom.iterable.js");
|
|
192625
|
+
|
|
192626
|
+
var _propTypes = _interopRequireDefault(__webpack_require__(/*! prop-types */ "prop-types"));
|
|
192627
|
+
|
|
192628
|
+
var _react = __webpack_require__(/*! react */ "react");
|
|
192629
|
+
|
|
192630
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
192631
|
+
|
|
192632
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); }
|
|
192633
|
+
|
|
192634
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); }
|
|
192635
|
+
|
|
192636
|
+
function _iterableToArrayLimit(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
192637
|
+
|
|
192638
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
192639
|
+
|
|
192640
|
+
function useInnerText(innerTextFallback) {
|
|
192641
|
+
var _useState = (0, _react.useState)(null),
|
|
192642
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
192643
|
+
ref = _useState2[0],
|
|
192644
|
+
setRef = _useState2[1];
|
|
192645
|
+
|
|
192646
|
+
var _useState3 = (0, _react.useState)(innerTextFallback),
|
|
192647
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
192648
|
+
innerText = _useState4[0],
|
|
192649
|
+
setInnerText = _useState4[1];
|
|
192650
|
+
|
|
192651
|
+
var updateInnerText = function updateInnerText(node) {
|
|
192652
|
+
if (!node) return;
|
|
192653
|
+
setInnerText( // Check for `innerText` implementation rather than a simple OR check
|
|
192654
|
+
// because in real cases the result of `innerText` could correctly be `null`
|
|
192655
|
+
// while the result of `textContent` could correctly be non-`null` due to
|
|
192656
|
+
// differing reliance on browser layout calculations.
|
|
192657
|
+
// We prefer the result of `innerText`, if available.
|
|
192658
|
+
'innerText' in node ? node.innerText : node.textContent || undefined);
|
|
192659
|
+
};
|
|
192660
|
+
|
|
192661
|
+
var observer = new MutationObserver(function (mutationsList) {
|
|
192662
|
+
if (mutationsList.length) updateInnerText(ref);
|
|
192663
|
+
});
|
|
192664
|
+
(0, _react.useEffect)(function () {
|
|
192665
|
+
if (ref) {
|
|
192666
|
+
observer.disconnect();
|
|
192667
|
+
updateInnerText(ref);
|
|
192668
|
+
observer.observe(ref, {
|
|
192669
|
+
characterData: true,
|
|
192670
|
+
subtree: true
|
|
192671
|
+
});
|
|
192672
|
+
}
|
|
192673
|
+
|
|
192674
|
+
return function () {
|
|
192675
|
+
observer.disconnect();
|
|
192676
|
+
};
|
|
192677
|
+
}, [ref]);
|
|
192678
|
+
return [setRef, innerText];
|
|
192679
|
+
}
|
|
192680
|
+
|
|
192681
|
+
var EuiInnerText = function EuiInnerText(_ref) {
|
|
192682
|
+
var children = _ref.children,
|
|
192683
|
+
fallback = _ref.fallback;
|
|
192684
|
+
|
|
192685
|
+
var _useInnerText = useInnerText(fallback),
|
|
192686
|
+
_useInnerText2 = _slicedToArray(_useInnerText, 2),
|
|
192687
|
+
ref = _useInnerText2[0],
|
|
192688
|
+
innerText = _useInnerText2[1];
|
|
192689
|
+
|
|
192690
|
+
return children(ref, innerText);
|
|
192691
|
+
};
|
|
192692
|
+
|
|
192693
|
+
exports.EuiInnerText = EuiInnerText;
|
|
192694
|
+
EuiInnerText.propTypes = {
|
|
192695
|
+
children: _propTypes.default.func.isRequired,
|
|
192696
|
+
fallback: _propTypes.default.string
|
|
192697
|
+
};
|
|
192698
|
+
|
|
192699
|
+
/***/ }),
|
|
192700
|
+
|
|
191854
192701
|
/***/ "./components/key_pad_menu/index.js":
|
|
191855
192702
|
/*!******************************************!*\
|
|
191856
192703
|
!*** ./components/key_pad_menu/index.js ***!
|
|
@@ -192712,6 +193559,10 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
192712
193559
|
});
|
|
192713
193560
|
exports.EuiListGroupItem = exports.SIZES = void 0;
|
|
192714
193561
|
|
|
193562
|
+
__webpack_require__(/*! core-js/modules/es7.symbol.async-iterator */ "../node_modules/core-js/modules/es7.symbol.async-iterator.js");
|
|
193563
|
+
|
|
193564
|
+
__webpack_require__(/*! core-js/modules/es6.symbol */ "../node_modules/core-js/modules/es6.symbol.js");
|
|
193565
|
+
|
|
192715
193566
|
__webpack_require__(/*! core-js/modules/es6.object.assign */ "../node_modules/core-js/modules/es6.object.assign.js");
|
|
192716
193567
|
|
|
192717
193568
|
__webpack_require__(/*! core-js/modules/web.dom.iterable */ "../node_modules/core-js/modules/web.dom.iterable.js");
|
|
@@ -192732,10 +193583,20 @@ var _icon = __webpack_require__(/*! ../icon */ "./components/icon/index.ts");
|
|
|
192732
193583
|
|
|
192733
193584
|
var _tool_tip = __webpack_require__(/*! ../tool_tip */ "./components/tool_tip/index.ts");
|
|
192734
193585
|
|
|
193586
|
+
var _inner_text = __webpack_require__(/*! ../inner_text */ "./components/inner_text/index.ts");
|
|
193587
|
+
|
|
192735
193588
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
192736
193589
|
|
|
192737
193590
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
|
|
192738
193591
|
|
|
193592
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); }
|
|
193593
|
+
|
|
193594
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); }
|
|
193595
|
+
|
|
193596
|
+
function _iterableToArrayLimit(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
193597
|
+
|
|
193598
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
193599
|
+
|
|
192739
193600
|
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
192740
193601
|
|
|
192741
193602
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
@@ -192807,14 +193668,23 @@ var EuiListGroupItem = function EuiListGroupItem(_ref) {
|
|
|
192807
193668
|
disabled: isDisabled
|
|
192808
193669
|
}));
|
|
192809
193670
|
} // Only add the label as the title attribute if it's possibly truncated
|
|
193671
|
+
// Also ensure the value of the title attribute is a string
|
|
192810
193672
|
|
|
192811
193673
|
|
|
192812
|
-
var
|
|
193674
|
+
var _useInnerText = (0, _inner_text.useInnerText)(),
|
|
193675
|
+
_useInnerText2 = _slicedToArray(_useInnerText, 2),
|
|
193676
|
+
ref = _useInnerText2[0],
|
|
193677
|
+
innerText = _useInnerText2[1];
|
|
193678
|
+
|
|
193679
|
+
var shouldRenderTitle = !wrapText && !showToolTip;
|
|
193680
|
+
var labelContent = shouldRenderTitle ? _react.default.createElement("span", {
|
|
193681
|
+
ref: ref,
|
|
192813
193682
|
className: "euiListGroupItem__label",
|
|
192814
|
-
title:
|
|
193683
|
+
title: typeof label === 'string' ? label : innerText
|
|
193684
|
+
}, label) : _react.default.createElement("span", {
|
|
193685
|
+
className: "euiListGroupItem__label"
|
|
192815
193686
|
}, label); // Handle the variety of interaction behavior
|
|
192816
193687
|
|
|
192817
|
-
|
|
192818
193688
|
var itemContent;
|
|
192819
193689
|
|
|
192820
193690
|
if (href && !isDisabled) {
|
|
@@ -198612,7 +199482,11 @@ function (_Component) {
|
|
|
198612
199482
|
setTimeout(function () {
|
|
198613
199483
|
_this3.setState({
|
|
198614
199484
|
isOpenStable: true
|
|
198615
|
-
},
|
|
199485
|
+
}, function () {
|
|
199486
|
+
_this3.positionPopoverFixed();
|
|
199487
|
+
|
|
199488
|
+
_this3.updateFocus();
|
|
199489
|
+
});
|
|
198616
199490
|
}, durationMatch + delayMatch);
|
|
198617
199491
|
} // update scroll listener
|
|
198618
199492
|
|
|
@@ -198635,8 +199509,6 @@ function (_Component) {
|
|
|
198635
199509
|
});
|
|
198636
199510
|
}, 250);
|
|
198637
199511
|
}
|
|
198638
|
-
|
|
198639
|
-
this.updateFocus();
|
|
198640
199512
|
}
|
|
198641
199513
|
}, {
|
|
198642
199514
|
key: "componentWillUnmount",
|
|
@@ -198718,6 +199590,8 @@ function (_Component) {
|
|
|
198718
199590
|
panel = _react.default.createElement(_portal.EuiPortal, {
|
|
198719
199591
|
insert: insert
|
|
198720
199592
|
}, _react.default.createElement(_focus_trap.EuiFocusTrap, {
|
|
199593
|
+
returnFocus: !this.state.isOpening // Ignore temporary state of indecisive focus
|
|
199594
|
+
,
|
|
198721
199595
|
clickOutsideDisables: true,
|
|
198722
199596
|
initialFocus: _initialFocus,
|
|
198723
199597
|
disabled: !ownFocus
|
|
@@ -202838,11 +203712,11 @@ var astToEsQueryDsl = function astToEsQueryDsl(ast, options) {
|
|
|
202838
203712
|
}, []);
|
|
202839
203713
|
must.push({
|
|
202840
203714
|
bool: {
|
|
202841
|
-
should:
|
|
203715
|
+
should: clauses.map(function (clause) {
|
|
202842
203716
|
return {
|
|
202843
203717
|
bool: clause
|
|
202844
203718
|
};
|
|
202845
|
-
})
|
|
203719
|
+
})
|
|
202846
203720
|
}
|
|
202847
203721
|
});
|
|
202848
203722
|
return must;
|
|
@@ -223443,7 +224317,7 @@ EuiGlobalToastList.propTypes = {
|
|
|
223443
224317
|
toastLifeTimeMs: _propTypes.default.number,
|
|
223444
224318
|
title: _propTypes.default.node,
|
|
223445
224319
|
color: _propTypes.default.oneOf(["primary", "success", "warning", "danger"]),
|
|
223446
|
-
iconType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]),
|
|
224320
|
+
iconType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "documentEdit", "documents", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "training", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "videoPlayer", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]),
|
|
223447
224321
|
onClose: _propTypes.default.func,
|
|
223448
224322
|
className: _propTypes.default.string,
|
|
223449
224323
|
"aria-label": _propTypes.default.string,
|
|
@@ -223639,6 +224513,15 @@ EuiGlobalToastList.__docgenInfo = {
|
|
|
223639
224513
|
}, {
|
|
223640
224514
|
"value": "\"clock\"",
|
|
223641
224515
|
"computed": false
|
|
224516
|
+
}, {
|
|
224517
|
+
"value": "\"cloudDrizzle\"",
|
|
224518
|
+
"computed": false
|
|
224519
|
+
}, {
|
|
224520
|
+
"value": "\"cloudStormy\"",
|
|
224521
|
+
"computed": false
|
|
224522
|
+
}, {
|
|
224523
|
+
"value": "\"cloudSunny\"",
|
|
224524
|
+
"computed": false
|
|
223642
224525
|
}, {
|
|
223643
224526
|
"value": "\"compute\"",
|
|
223644
224527
|
"computed": false
|
|
@@ -223705,6 +224588,12 @@ EuiGlobalToastList.__docgenInfo = {
|
|
|
223705
224588
|
}, {
|
|
223706
224589
|
"value": "\"document\"",
|
|
223707
224590
|
"computed": false
|
|
224591
|
+
}, {
|
|
224592
|
+
"value": "\"documentEdit\"",
|
|
224593
|
+
"computed": false
|
|
224594
|
+
}, {
|
|
224595
|
+
"value": "\"documents\"",
|
|
224596
|
+
"computed": false
|
|
223708
224597
|
}, {
|
|
223709
224598
|
"value": "\"dot\"",
|
|
223710
224599
|
"computed": false
|
|
@@ -224356,6 +225245,9 @@ EuiGlobalToastList.__docgenInfo = {
|
|
|
224356
225245
|
}, {
|
|
224357
225246
|
"value": "\"timelionApp\"",
|
|
224358
225247
|
"computed": false
|
|
225248
|
+
}, {
|
|
225249
|
+
"value": "\"training\"",
|
|
225250
|
+
"computed": false
|
|
224359
225251
|
}, {
|
|
224360
225252
|
"value": "\"trash\"",
|
|
224361
225253
|
"computed": false
|
|
@@ -224374,6 +225266,9 @@ EuiGlobalToastList.__docgenInfo = {
|
|
|
224374
225266
|
}, {
|
|
224375
225267
|
"value": "\"vector\"",
|
|
224376
225268
|
"computed": false
|
|
225269
|
+
}, {
|
|
225270
|
+
"value": "\"videoPlayer\"",
|
|
225271
|
+
"computed": false
|
|
224377
225272
|
}, {
|
|
224378
225273
|
"value": "\"visArea\"",
|
|
224379
225274
|
"computed": false
|
|
@@ -224830,7 +225725,7 @@ exports.EuiToast = EuiToast;
|
|
|
224830
225725
|
EuiToast.propTypes = {
|
|
224831
225726
|
title: _propTypes.default.node,
|
|
224832
225727
|
color: _propTypes.default.oneOf(["primary", "success", "warning", "danger"]),
|
|
224833
|
-
iconType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]),
|
|
225728
|
+
iconType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "documentEdit", "documents", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "training", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "videoPlayer", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]),
|
|
224834
225729
|
onClose: _propTypes.default.func,
|
|
224835
225730
|
className: _propTypes.default.string,
|
|
224836
225731
|
"aria-label": _propTypes.default.string,
|
|
@@ -224957,6 +225852,15 @@ EuiToast.__docgenInfo = {
|
|
|
224957
225852
|
}, {
|
|
224958
225853
|
"value": "\"clock\"",
|
|
224959
225854
|
"computed": false
|
|
225855
|
+
}, {
|
|
225856
|
+
"value": "\"cloudDrizzle\"",
|
|
225857
|
+
"computed": false
|
|
225858
|
+
}, {
|
|
225859
|
+
"value": "\"cloudStormy\"",
|
|
225860
|
+
"computed": false
|
|
225861
|
+
}, {
|
|
225862
|
+
"value": "\"cloudSunny\"",
|
|
225863
|
+
"computed": false
|
|
224960
225864
|
}, {
|
|
224961
225865
|
"value": "\"compute\"",
|
|
224962
225866
|
"computed": false
|
|
@@ -225023,6 +225927,12 @@ EuiToast.__docgenInfo = {
|
|
|
225023
225927
|
}, {
|
|
225024
225928
|
"value": "\"document\"",
|
|
225025
225929
|
"computed": false
|
|
225930
|
+
}, {
|
|
225931
|
+
"value": "\"documentEdit\"",
|
|
225932
|
+
"computed": false
|
|
225933
|
+
}, {
|
|
225934
|
+
"value": "\"documents\"",
|
|
225935
|
+
"computed": false
|
|
225026
225936
|
}, {
|
|
225027
225937
|
"value": "\"dot\"",
|
|
225028
225938
|
"computed": false
|
|
@@ -225674,6 +226584,9 @@ EuiToast.__docgenInfo = {
|
|
|
225674
226584
|
}, {
|
|
225675
226585
|
"value": "\"timelionApp\"",
|
|
225676
226586
|
"computed": false
|
|
226587
|
+
}, {
|
|
226588
|
+
"value": "\"training\"",
|
|
226589
|
+
"computed": false
|
|
225677
226590
|
}, {
|
|
225678
226591
|
"value": "\"trash\"",
|
|
225679
226592
|
"computed": false
|
|
@@ -225692,6 +226605,9 @@ EuiToast.__docgenInfo = {
|
|
|
225692
226605
|
}, {
|
|
225693
226606
|
"value": "\"vector\"",
|
|
225694
226607
|
"computed": false
|
|
226608
|
+
}, {
|
|
226609
|
+
"value": "\"videoPlayer\"",
|
|
226610
|
+
"computed": false
|
|
225695
226611
|
}, {
|
|
225696
226612
|
"value": "\"visArea\"",
|
|
225697
226613
|
"computed": false
|
|
@@ -226317,7 +227233,7 @@ EuiToken.propTypes = {
|
|
|
226317
227233
|
/**
|
|
226318
227234
|
* An EUI icon type
|
|
226319
227235
|
*/
|
|
226320
|
-
iconType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]).isRequired,
|
|
227236
|
+
iconType: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "documentEdit", "documents", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "training", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "videoPlayer", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]).isRequired,
|
|
226321
227237
|
|
|
226322
227238
|
/**
|
|
226323
227239
|
* Size of the token
|
|
@@ -226550,6 +227466,15 @@ EuiToken.__docgenInfo = {
|
|
|
226550
227466
|
}, {
|
|
226551
227467
|
"value": "\"clock\"",
|
|
226552
227468
|
"computed": false
|
|
227469
|
+
}, {
|
|
227470
|
+
"value": "\"cloudDrizzle\"",
|
|
227471
|
+
"computed": false
|
|
227472
|
+
}, {
|
|
227473
|
+
"value": "\"cloudStormy\"",
|
|
227474
|
+
"computed": false
|
|
227475
|
+
}, {
|
|
227476
|
+
"value": "\"cloudSunny\"",
|
|
227477
|
+
"computed": false
|
|
226553
227478
|
}, {
|
|
226554
227479
|
"value": "\"compute\"",
|
|
226555
227480
|
"computed": false
|
|
@@ -226616,6 +227541,12 @@ EuiToken.__docgenInfo = {
|
|
|
226616
227541
|
}, {
|
|
226617
227542
|
"value": "\"document\"",
|
|
226618
227543
|
"computed": false
|
|
227544
|
+
}, {
|
|
227545
|
+
"value": "\"documentEdit\"",
|
|
227546
|
+
"computed": false
|
|
227547
|
+
}, {
|
|
227548
|
+
"value": "\"documents\"",
|
|
227549
|
+
"computed": false
|
|
226619
227550
|
}, {
|
|
226620
227551
|
"value": "\"dot\"",
|
|
226621
227552
|
"computed": false
|
|
@@ -227267,6 +228198,9 @@ EuiToken.__docgenInfo = {
|
|
|
227267
228198
|
}, {
|
|
227268
228199
|
"value": "\"timelionApp\"",
|
|
227269
228200
|
"computed": false
|
|
228201
|
+
}, {
|
|
228202
|
+
"value": "\"training\"",
|
|
228203
|
+
"computed": false
|
|
227270
228204
|
}, {
|
|
227271
228205
|
"value": "\"trash\"",
|
|
227272
228206
|
"computed": false
|
|
@@ -227285,6 +228219,9 @@ EuiToken.__docgenInfo = {
|
|
|
227285
228219
|
}, {
|
|
227286
228220
|
"value": "\"vector\"",
|
|
227287
228221
|
"computed": false
|
|
228222
|
+
}, {
|
|
228223
|
+
"value": "\"videoPlayer\"",
|
|
228224
|
+
"computed": false
|
|
227288
228225
|
}, {
|
|
227289
228226
|
"value": "\"visArea\"",
|
|
227290
228227
|
"computed": false
|
|
@@ -227677,7 +228614,7 @@ EuiIconTip.propTypes = {
|
|
|
227677
228614
|
/**
|
|
227678
228615
|
* The icon type.
|
|
227679
228616
|
*/
|
|
227680
|
-
type: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]),
|
|
228617
|
+
type: _propTypes.default.oneOfType([_propTypes.default.oneOf(["addDataApp", "advancedSettingsApp", "alert", "apmApp", "apmTrace", "apps", "arrowDown", "arrowLeft", "arrowRight", "arrowUp", "asterisk", "auditbeatApp", "beaker", "bell", "bolt", "boxesHorizontal", "boxesVertical", "branch", "broom", "brush", "bug", "bullseye", "calendar", "canvasApp", "codeApp", "check", "checkInCircleFilled", "clock", "cloudDrizzle", "cloudStormy", "cloudSunny", "compute", "console", "consoleApp", "controlsHorizontal", "controlsVertical", "copy", "copyClipboard", "createAdvancedJob", "createMultiMetricJob", "createPopulationJob", "createSingleMetricJob", "cross", "crossClusterReplicationApp", "crosshairs", "crossInACircleFilled", "cut", "dashboardApp", "database", "dataVisualizer", "devToolsApp", "discoverApp", "document", "documentEdit", "documents", "dot", "editorAlignCenter", "editorAlignLeft", "editorAlignRight", "editorBold", "editorCodeBlock", "editorComment", "editorDistributeHorizontal", "editorDistributeVertical", "editorHeading", "editorItalic", "editorItemAlignLeft", "editorItemAlignBottom", "editorItemAlignCenter", "editorItemAlignMiddle", "editorItemAlignRight", "editorItemAlignTop", "editorLink", "editorOrderedList", "editorPositionBottomLeft", "editorPositionBottomRight", "editorPositionTopLeft", "editorPositionTopRight", "editorRedo", "editorStrike", "editorTable", "editorUnderline", "editorUndo", "editorUnorderedList", "email", "empty", "emsApp", "exit", "expand", "exportAction", "eye", "eyeClosed", "faceHappy", "faceNeutral", "faceSad", "filebeatApp", "filter", "flag", "folderClosed", "folderOpen", "fullScreen", "gear", "gisApp", "glasses", "globe", "grab", "grabHorizontal", "graphApp", "grid", "grokApp", "heart", "heartbeatApp", "heatmap", "help", "iInCircle", "importAction", "indexClose", "indexEdit", "indexFlush", "indexManagementApp", "indexMapping", "indexOpen", "indexPatternApp", "indexRollupApp", "indexSettings", "infraApp", "inputOutput", "inspect", "invert", "kqlField", "kqlFunction", "kqlOperand", "kqlSelector", "kqlValue", "link", "list", "listAdd", "lock", "lockOpen", "loggingApp", "logoAerospike", "logoApache", "logoAPM", "logoAppSearch", "logoAWS", "logoAWSMono", "logoAzure", "logoAzureMono", "logoBeats", "logoBusinessAnalytics", "logoCeph", "logoCloud", "logoCloudEnterprise", "logoCode", "logoCodesandbox", "logoCouchbase", "logoDocker", "logoDropwizard", "logoElastic", "logoElasticsearch", "logoElasticStack", "logoEnterpriseSearch", "logoEtcd", "logoGCP", "logoGCPMono", "logoGithub", "logoGmail", "logoGolang", "logoHAproxy", "logoIBM", "logoIBMMono", "logoKafka", "logoKibana", "logoKubernetes", "logoLogging", "logoLogstash", "logoMaps", "logoMemcached", "logoMetrics", "logoMongodb", "logoMySQL", "logoNginx", "logoOsquery", "logoPhp", "logoPostgres", "logoPrometheus", "logoRabbitmq", "logoRedis", "logoSecurity", "logoSiteSearch", "logoSketch", "logoSlack", "logoUptime", "logoWebhook", "logoWindows", "logstashFilter", "logstashIf", "logstashInput", "logstashOutput", "logstashQueue", "machineLearningApp", "magnet", "magnifyWithMinus", "magnifyWithPlus", "managementApp", "mapMarker", "memory", "menuLeft", "menuRight", "merge", "metricbeatApp", "minusInCircle", "minusInCircleFilled", "monitoringApp", "moon", "node", "notebookApp", "number", "offline", "online", "packetbeatApp", "pause", "pencil", "pin", "pinFilled", "pipelineApp", "play", "plusInCircle", "plusInCircleFilled", "popout", "questionInCircle", "refresh", "reportingApp", "save", "savedObjectsApp", "scale", "search", "searchProfilerApp", "securityAnalyticsApp", "securityApp", "shard", "share", "snowflake", "sortable", "sortDown", "sortLeft", "sortRight", "sortUp", "spacesApp", "sqlApp", "starEmpty", "starEmptySpace", "starFilled", "starFilledSpace", "starMinusEmpty", "starMinusFilled", "starPlusEmpty", "starPlusFilled", "stats", "stop", "stopFilled", "stopSlash", "storage", "string", "submodule", "swatchInput", "symlink", "tableOfContents", "tag", "tear", "temperature", "timelionApp", "training", "trash", "upgradeAssistantApp", "uptimeApp", "user", "usersRolesApp", "vector", "videoPlayer", "visArea", "visBarHorizontal", "visBarVertical", "visControls", "visGauge", "visGoal", "visHeatmap", "visLine", "visMapCoordinate", "visMapRegion", "visMetric", "visPie", "visTable", "visTagCloud", "visText", "visTimelion", "visualizeApp", "visVega", "visVisualBuilder", "watchesApp", "wrench", "tokenClass", "tokenProperty", "tokenEnum", "tokenVariable", "tokenMethod", "tokenAnnotation", "tokenException", "tokenInterface", "tokenParameter", "tokenField", "tokenElement", "tokenFunction", "tokenBoolean", "tokenString", "tokenArray", "tokenNumber", "tokenConstant", "tokenObject", "tokenEvent", "tokenKey", "tokenNull", "tokenStruct", "tokenPackage", "tokenOperator", "tokenEnumMember", "tokenRepo", "tokenSymbol", "tokenFile", "tokenModule", "tokenNamespace"]).isRequired, _propTypes.default.string.isRequired, _propTypes.default.element.isRequired]),
|
|
227681
228618
|
|
|
227682
228619
|
/**
|
|
227683
228620
|
* The icon size.
|
|
@@ -227801,6 +228738,15 @@ EuiIconTip.__docgenInfo = {
|
|
|
227801
228738
|
}, {
|
|
227802
228739
|
"value": "\"clock\"",
|
|
227803
228740
|
"computed": false
|
|
228741
|
+
}, {
|
|
228742
|
+
"value": "\"cloudDrizzle\"",
|
|
228743
|
+
"computed": false
|
|
228744
|
+
}, {
|
|
228745
|
+
"value": "\"cloudStormy\"",
|
|
228746
|
+
"computed": false
|
|
228747
|
+
}, {
|
|
228748
|
+
"value": "\"cloudSunny\"",
|
|
228749
|
+
"computed": false
|
|
227804
228750
|
}, {
|
|
227805
228751
|
"value": "\"compute\"",
|
|
227806
228752
|
"computed": false
|
|
@@ -227867,6 +228813,12 @@ EuiIconTip.__docgenInfo = {
|
|
|
227867
228813
|
}, {
|
|
227868
228814
|
"value": "\"document\"",
|
|
227869
228815
|
"computed": false
|
|
228816
|
+
}, {
|
|
228817
|
+
"value": "\"documentEdit\"",
|
|
228818
|
+
"computed": false
|
|
228819
|
+
}, {
|
|
228820
|
+
"value": "\"documents\"",
|
|
228821
|
+
"computed": false
|
|
227870
228822
|
}, {
|
|
227871
228823
|
"value": "\"dot\"",
|
|
227872
228824
|
"computed": false
|
|
@@ -228518,6 +229470,9 @@ EuiIconTip.__docgenInfo = {
|
|
|
228518
229470
|
}, {
|
|
228519
229471
|
"value": "\"timelionApp\"",
|
|
228520
229472
|
"computed": false
|
|
229473
|
+
}, {
|
|
229474
|
+
"value": "\"training\"",
|
|
229475
|
+
"computed": false
|
|
228521
229476
|
}, {
|
|
228522
229477
|
"value": "\"trash\"",
|
|
228523
229478
|
"computed": false
|
|
@@ -228536,6 +229491,9 @@ EuiIconTip.__docgenInfo = {
|
|
|
228536
229491
|
}, {
|
|
228537
229492
|
"value": "\"vector\"",
|
|
228538
229493
|
"computed": false
|
|
229494
|
+
}, {
|
|
229495
|
+
"value": "\"videoPlayer\"",
|
|
229496
|
+
"computed": false
|
|
228539
229497
|
}, {
|
|
228540
229498
|
"value": "\"visArea\"",
|
|
228541
229499
|
"computed": false
|