@splunk/react-ui 4.13.0 → 4.15.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/.dockerignore +2 -0
- package/Accordion.js +41 -16
- package/Anchor.js +9 -9
- package/Animation.js +6 -6
- package/AnimationToggle.js +2 -2
- package/Box.js +9 -9
- package/Button.js +47 -46
- package/ButtonGroup.js +9 -9
- package/ButtonSimple.js +14 -14
- package/CHANGELOG.md +46 -1
- package/Calendar.js +460 -147
- package/Card.js +85 -83
- package/CardLayout.js +9 -9
- package/Chip.js +23 -23
- package/Clickable.js +39 -15
- package/CloseButton.js +23 -23
- package/Code.js +484 -436
- package/CollapsiblePanel.js +64 -35
- package/Color.js +298 -188
- package/ColumnLayout.js +18 -17
- package/ComboBox.js +81 -32
- package/Concertina.js +89 -28
- package/ControlGroup.js +85 -27
- package/Date.js +134 -58
- package/DefinitionList.js +14 -8
- package/Divider.d.ts +2 -0
- package/Divider.js +194 -0
- package/Dockerfile.enterprise.storybook +7 -0
- package/Dockerfile.prisma.storybook +7 -0
- package/Dockerfile.visual +10 -0
- package/Dropdown.js +79 -19
- package/EventListener.js +17 -17
- package/File.js +96 -43
- package/FormRows.js +40 -39
- package/Heading.js +83 -55
- package/Image.js +67 -42
- package/JSONTree.js +106 -21
- package/Layer.js +130 -28
- package/Link.js +17 -17
- package/List.js +3 -3
- package/Markdown.js +71 -65
- package/Menu.js +155 -121
- package/Message.js +135 -135
- package/MessageBar.js +136 -136
- package/Modal.js +99 -48
- package/ModalLayer.js +15 -15
- package/Monogram.js +18 -17
- package/Multiselect.js +2788 -2310
- package/Number.js +76 -37
- package/Paginator.js +99 -86
- package/Paragraph.js +10 -10
- package/Popover.js +343 -48
- package/Progress.js +23 -22
- package/RadioBar.js +32 -14
- package/RadioList.js +17 -11
- package/Resize.js +34 -21
- package/ResultsMenu.js +44 -31
- package/ScreenReaderContent.js +9 -9
- package/Scroll.js +52 -27
- package/ScrollContainerContext.js +157 -6
- package/Search.js +71 -34
- package/Select.js +347 -69
- package/SidePanel.js +37 -24
- package/Slider.js +50 -20
- package/SlidingPanels.js +56 -18
- package/SplitButton.js +27 -26
- package/StaticContent.js +9 -9
- package/StepBar.js +22 -22
- package/Switch.js +18 -13
- package/TabBar.js +28 -28
- package/TabLayout.js +43 -18
- package/Table.js +549 -158
- package/Text.js +93 -50
- package/TextArea.d.ts +2 -0
- package/TextArea.js +134 -56
- package/Tooltip.js +246 -63
- package/TransitionOpen.js +63 -26
- package/Typography.d.ts +2 -0
- package/Typography.js +17 -16
- package/WaitSpinner.js +15 -81
- package/docker-compose.yml +42 -0
- package/package.json +20 -20
- package/test-runner-jest.config.js +23 -5
- package/types/src/Accordion/AccordionContext.d.ts +1 -0
- package/types/src/Button/docs/examples/Selected.d.ts +2 -2
- package/types/src/ButtonGroup/ButtonGroupContext.d.ts +1 -0
- package/types/src/Calendar/Calendar.d.ts +17 -2
- package/types/src/Calendar/DateTable.d.ts +7 -3
- package/types/src/Calendar/Day.d.ts +14 -5
- package/types/src/CardLayout/CardLayoutContext.d.ts +1 -0
- package/types/src/CollapsiblePanel/CollapsiblePanel.d.ts +7 -3
- package/types/src/Concertina/ConcertinaContext.d.ts +1 -0
- package/types/src/ControlGroup/ControlGroup.d.ts +15 -8
- package/types/src/ControlGroup/docs/examples/HelpWithErrorText.d.ts +2 -0
- package/types/src/ControlGroup/docs/examples/Required.d.ts +2 -0
- package/types/src/Date/Date.d.ts +17 -8
- package/types/src/Date/docs/examples/CustomDate.d.ts +2 -2
- package/types/src/Date/docs/examples/Disabled.d.ts +2 -2
- package/types/src/Date/docs/examples/prisma/WithoutCalendar.d.ts +2 -0
- package/types/src/Divider/Divider.d.ts +20 -0
- package/types/src/Divider/docs/examples/AriaHidden.d.ts +2 -0
- package/types/src/Divider/docs/examples/Basic.d.ts +2 -0
- package/types/src/Divider/docs/examples/CustomStyle.d.ts +2 -0
- package/types/src/Divider/docs/examples/Vertical.d.ts +2 -0
- package/types/src/Divider/index.d.ts +1 -0
- package/types/src/File/File.d.ts +4 -2
- package/types/src/File/FileContext.d.ts +1 -0
- package/types/src/FormRows/FormRowsContext.d.ts +1 -0
- package/types/src/Markdown/renderers/MarkdownLink.d.ts +1 -1
- package/types/src/Menu/MenuContext.d.ts +1 -0
- package/types/src/Modal/Modal.d.ts +7 -3
- package/types/src/Modal/ModalContext.d.ts +2 -0
- package/types/src/Multiselect/Compact.d.ts +10 -1
- package/types/src/Multiselect/Multiselect.d.ts +12 -1
- package/types/src/Multiselect/Normal.d.ts +2 -0
- package/types/src/Number/Number.d.ts +5 -1
- package/types/src/Popover/Popover.d.ts +25 -5
- package/types/src/Popover/PopoverContext.d.ts +1 -0
- package/types/src/RadioBar/RadioBar.d.ts +5 -3
- package/types/src/RadioBar/RadioBarContext.d.ts +1 -0
- package/types/src/RadioList/RadioList.d.ts +5 -1
- package/types/src/RadioList/RadioListContext.d.ts +1 -0
- package/types/src/Select/SelectBase.d.ts +2 -0
- package/types/src/Slider/Slider.d.ts +5 -3
- package/types/src/SplitButton/docs/examples/Disabled.d.ts +1 -1
- package/types/src/SplitButton/docs/examples/prisma/Disabled.d.ts +1 -1
- package/types/src/StepBar/StepBarContext.d.ts +1 -0
- package/types/src/Switch/Switch.d.ts +2 -0
- package/types/src/TabBar/TabBarContext.d.ts +1 -0
- package/types/src/Table/Head.d.ts +2 -0
- package/types/src/Table/TableContext.d.ts +1 -0
- package/types/src/Table/docs/examples/FilterColumnValues.d.ts +14 -0
- package/types/src/Text/Text.d.ts +5 -3
- package/types/src/TextArea/TextArea.d.ts +5 -3
- package/types/src/Tooltip/Tooltip.d.ts +26 -9
- package/types/src/TransitionOpen/TransitionOpen.d.ts +7 -3
- package/types/src/WaitSpinner/WaitSpinner.d.ts +1 -1
- package/types/src/useForceUpdate/useForceUpdate.d.ts +1 -0
- package/types/src/useKeyPress/index.d.ts +37 -0
- package/useForceUpdate.js +9 -9
- package/{useIsSsr.js → useKeyPress.js} +56 -49
- package/usePrevious.js +9 -9
- package/types/src/useIsSsr/index.d.ts +0 -2
- package/types/src/useIsSsr/useIsSsr.d.ts +0 -8
package/TextArea.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 200);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -101,7 +101,28 @@ module.exports = require("prop-types");
|
|
|
101
101
|
|
|
102
102
|
/***/ }),
|
|
103
103
|
|
|
104
|
+
/***/ 10:
|
|
105
|
+
/***/ (function(module, exports) {
|
|
106
|
+
|
|
107
|
+
module.exports = require("lodash/keys");
|
|
108
|
+
|
|
109
|
+
/***/ }),
|
|
110
|
+
|
|
111
|
+
/***/ 106:
|
|
112
|
+
/***/ (function(module, exports) {
|
|
113
|
+
|
|
114
|
+
module.exports = require("@splunk/react-ui/ControlGroup");
|
|
115
|
+
|
|
116
|
+
/***/ }),
|
|
117
|
+
|
|
104
118
|
/***/ 11:
|
|
119
|
+
/***/ (function(module, exports) {
|
|
120
|
+
|
|
121
|
+
module.exports = require("lodash/has");
|
|
122
|
+
|
|
123
|
+
/***/ }),
|
|
124
|
+
|
|
125
|
+
/***/ 12:
|
|
105
126
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
106
127
|
|
|
107
128
|
"use strict";
|
|
@@ -128,7 +149,35 @@ function updateReactRef(ref, current) {
|
|
|
128
149
|
|
|
129
150
|
/***/ }),
|
|
130
151
|
|
|
131
|
-
/***/
|
|
152
|
+
/***/ 161:
|
|
153
|
+
/***/ (function(module, exports) {
|
|
154
|
+
|
|
155
|
+
module.exports = require("lodash/noop");
|
|
156
|
+
|
|
157
|
+
/***/ }),
|
|
158
|
+
|
|
159
|
+
/***/ 17:
|
|
160
|
+
/***/ (function(module, exports) {
|
|
161
|
+
|
|
162
|
+
module.exports = require("@splunk/react-ui/EventListener");
|
|
163
|
+
|
|
164
|
+
/***/ }),
|
|
165
|
+
|
|
166
|
+
/***/ 19:
|
|
167
|
+
/***/ (function(module, exports) {
|
|
168
|
+
|
|
169
|
+
module.exports = require("@splunk/react-ui/Button");
|
|
170
|
+
|
|
171
|
+
/***/ }),
|
|
172
|
+
|
|
173
|
+
/***/ 2:
|
|
174
|
+
/***/ (function(module, exports) {
|
|
175
|
+
|
|
176
|
+
module.exports = require("react");
|
|
177
|
+
|
|
178
|
+
/***/ }),
|
|
179
|
+
|
|
180
|
+
/***/ 200:
|
|
132
181
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
133
182
|
|
|
134
183
|
"use strict";
|
|
@@ -146,30 +195,55 @@ var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_)
|
|
|
146
195
|
var external_prop_types_ = __webpack_require__(1);
|
|
147
196
|
var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
|
|
148
197
|
|
|
149
|
-
// EXTERNAL MODULE: external "lodash"
|
|
150
|
-
var
|
|
198
|
+
// EXTERNAL MODULE: external "lodash/defer"
|
|
199
|
+
var defer_ = __webpack_require__(53);
|
|
200
|
+
var defer_default = /*#__PURE__*/__webpack_require__.n(defer_);
|
|
201
|
+
|
|
202
|
+
// EXTERNAL MODULE: external "lodash/has"
|
|
203
|
+
var has_ = __webpack_require__(11);
|
|
204
|
+
var has_default = /*#__PURE__*/__webpack_require__.n(has_);
|
|
205
|
+
|
|
206
|
+
// EXTERNAL MODULE: external "lodash/keys"
|
|
207
|
+
var keys_ = __webpack_require__(10);
|
|
208
|
+
var keys_default = /*#__PURE__*/__webpack_require__.n(keys_);
|
|
209
|
+
|
|
210
|
+
// EXTERNAL MODULE: external "lodash/noop"
|
|
211
|
+
var noop_ = __webpack_require__(161);
|
|
212
|
+
var noop_default = /*#__PURE__*/__webpack_require__.n(noop_);
|
|
213
|
+
|
|
214
|
+
// EXTERNAL MODULE: external "lodash/omit"
|
|
215
|
+
var omit_ = __webpack_require__(5);
|
|
216
|
+
var omit_default = /*#__PURE__*/__webpack_require__.n(omit_);
|
|
217
|
+
|
|
218
|
+
// EXTERNAL MODULE: external "lodash/pickBy"
|
|
219
|
+
var pickBy_ = __webpack_require__(71);
|
|
220
|
+
var pickBy_default = /*#__PURE__*/__webpack_require__.n(pickBy_);
|
|
221
|
+
|
|
222
|
+
// EXTERNAL MODULE: external "lodash/throttle"
|
|
223
|
+
var throttle_ = __webpack_require__(31);
|
|
224
|
+
var throttle_default = /*#__PURE__*/__webpack_require__.n(throttle_);
|
|
151
225
|
|
|
152
226
|
// EXTERNAL MODULE: external "@splunk/ui-utils/style"
|
|
153
|
-
var style_ = __webpack_require__(
|
|
227
|
+
var style_ = __webpack_require__(40);
|
|
154
228
|
|
|
155
229
|
// EXTERNAL MODULE: external "@splunk/react-ui/EventListener"
|
|
156
|
-
var EventListener_ = __webpack_require__(
|
|
230
|
+
var EventListener_ = __webpack_require__(17);
|
|
157
231
|
var EventListener_default = /*#__PURE__*/__webpack_require__.n(EventListener_);
|
|
158
232
|
|
|
159
233
|
// EXTERNAL MODULE: external "@splunk/themes"
|
|
160
234
|
var themes_ = __webpack_require__(0);
|
|
161
235
|
|
|
162
236
|
// EXTERNAL MODULE: external "@splunk/react-ui/ControlGroup"
|
|
163
|
-
var ControlGroup_ = __webpack_require__(
|
|
237
|
+
var ControlGroup_ = __webpack_require__(106);
|
|
164
238
|
|
|
165
239
|
// EXTERNAL MODULE: external "@splunk/ui-utils/i18n"
|
|
166
|
-
var i18n_ = __webpack_require__(
|
|
240
|
+
var i18n_ = __webpack_require__(4);
|
|
167
241
|
|
|
168
242
|
// EXTERNAL MODULE: ./src/icons/Search.tsx
|
|
169
|
-
var Search = __webpack_require__(
|
|
243
|
+
var Search = __webpack_require__(39);
|
|
170
244
|
|
|
171
245
|
// EXTERNAL MODULE: ./src/icons/CrossMark.tsx
|
|
172
|
-
var CrossMark = __webpack_require__(
|
|
246
|
+
var CrossMark = __webpack_require__(27);
|
|
173
247
|
|
|
174
248
|
// CONCATENATED MODULE: ./src/TextArea/syncHeightWithShadow.ts
|
|
175
249
|
// This file was adapted from [Call-Em-All's material-ui](https://github.com/mui-org/material-ui),
|
|
@@ -246,7 +320,7 @@ function syncHeightWithShadow(_ref) {
|
|
|
246
320
|
return false;
|
|
247
321
|
}
|
|
248
322
|
// EXTERNAL MODULE: ./src/utils/updateReactRef.ts
|
|
249
|
-
var updateReactRef = __webpack_require__(
|
|
323
|
+
var updateReactRef = __webpack_require__(12);
|
|
250
324
|
|
|
251
325
|
// EXTERNAL MODULE: external "styled-components"
|
|
252
326
|
var external_styled_components_ = __webpack_require__(3);
|
|
@@ -257,7 +331,7 @@ var Box_ = __webpack_require__(8);
|
|
|
257
331
|
var Box_default = /*#__PURE__*/__webpack_require__.n(Box_);
|
|
258
332
|
|
|
259
333
|
// EXTERNAL MODULE: external "@splunk/react-ui/Button"
|
|
260
|
-
var Button_ = __webpack_require__(
|
|
334
|
+
var Button_ = __webpack_require__(19);
|
|
261
335
|
var Button_default = /*#__PURE__*/__webpack_require__.n(Button_);
|
|
262
336
|
|
|
263
337
|
// CONCATENATED MODULE: ./src/TextArea/TextAreaStyles.ts
|
|
@@ -604,6 +678,12 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
|
|
|
604
678
|
|
|
605
679
|
|
|
606
680
|
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
|
|
607
687
|
/** @public */
|
|
608
688
|
|
|
609
689
|
var propTypes = {
|
|
@@ -641,6 +721,9 @@ var propTypes = {
|
|
|
641
721
|
onInputClick: external_prop_types_default.a.func,
|
|
642
722
|
placeholder: external_prop_types_default.a.string,
|
|
643
723
|
prepend: external_prop_types_default.a.bool,
|
|
724
|
+
|
|
725
|
+
/** @private. */
|
|
726
|
+
required: external_prop_types_default.a.bool,
|
|
644
727
|
rowsMax: external_prop_types_default.a.number,
|
|
645
728
|
rowsMin: external_prop_types_default.a.number,
|
|
646
729
|
spellCheck: external_prop_types_default.a.bool,
|
|
@@ -910,7 +993,7 @@ var TextArea_TextArea = /*#__PURE__*/function (_Component) {
|
|
|
910
993
|
return displayValue;
|
|
911
994
|
});
|
|
912
995
|
|
|
913
|
-
_this.controlledExternally =
|
|
996
|
+
_this.controlledExternally = has_default()(props, 'value');
|
|
914
997
|
_this.state = {
|
|
915
998
|
value: props.defaultValue || ''
|
|
916
999
|
};
|
|
@@ -920,14 +1003,14 @@ var TextArea_TextArea = /*#__PURE__*/function (_Component) {
|
|
|
920
1003
|
if (false) {}
|
|
921
1004
|
|
|
922
1005
|
TextArea.validateRows(props);
|
|
923
|
-
_this.handleResize =
|
|
1006
|
+
_this.handleResize = throttle_default()(_this.handleResize, 100);
|
|
924
1007
|
return _this;
|
|
925
1008
|
}
|
|
926
1009
|
|
|
927
1010
|
_createClass(TextArea, [{
|
|
928
1011
|
key: "componentDidMount",
|
|
929
1012
|
value: function componentDidMount() {
|
|
930
|
-
|
|
1013
|
+
defer_default()(this.syncHeightWithShadow); // wait for styles to load
|
|
931
1014
|
|
|
932
1015
|
this.getAdornmentWidth();
|
|
933
1016
|
}
|
|
@@ -998,12 +1081,13 @@ var TextArea_TextArea = /*#__PURE__*/function (_Component) {
|
|
|
998
1081
|
name = _this$props10.name,
|
|
999
1082
|
placeholder = _this$props10.placeholder,
|
|
1000
1083
|
prepend = _this$props10.prepend,
|
|
1084
|
+
required = _this$props10.required,
|
|
1001
1085
|
spellCheck = _this$props10.spellCheck,
|
|
1002
1086
|
tabIndex = _this$props10.tabIndex,
|
|
1003
1087
|
title = _this$props10.title,
|
|
1004
|
-
otherProps = _objectWithoutProperties(_this$props10, ["append", "autoCapitalize", "autoComplete", "autoCorrect", "autoFocus", "children", "className", "classNamePrivate", "disabled", "describedBy", "elementRef", "error", "inline", "inputClassName", "inputId", "labelledBy", "maxLength", "name", "placeholder", "prepend", "spellCheck", "tabIndex", "title"]);
|
|
1088
|
+
otherProps = _objectWithoutProperties(_this$props10, ["append", "autoCapitalize", "autoComplete", "autoCorrect", "autoFocus", "children", "className", "classNamePrivate", "disabled", "describedBy", "elementRef", "error", "inline", "inputClassName", "inputId", "labelledBy", "maxLength", "name", "placeholder", "prepend", "required", "spellCheck", "tabIndex", "title"]);
|
|
1005
1089
|
|
|
1006
|
-
var ariaProps = _objectSpread(_objectSpread({},
|
|
1090
|
+
var ariaProps = _objectSpread(_objectSpread({}, pickBy_default()(otherProps, function (val, key) {
|
|
1007
1091
|
return key === 'role' || key.indexOf('aria-') === 0;
|
|
1008
1092
|
})), {}, {
|
|
1009
1093
|
'aria-describedby': describedBy,
|
|
@@ -1012,7 +1096,7 @@ var TextArea_TextArea = /*#__PURE__*/function (_Component) {
|
|
|
1012
1096
|
'aria-multiline': true
|
|
1013
1097
|
});
|
|
1014
1098
|
|
|
1015
|
-
var boxProps =
|
|
1099
|
+
var boxProps = omit_default()(otherProps, ['inputRef', 'onBlur', 'onChange', 'onFocus', 'onKeyDown', 'onSelect', 'onInputClick', 'rowsMax', 'rowsMin'].concat(_toConsumableArray(keys_default()(ariaProps))));
|
|
1016
1100
|
var displayValue = this.getDisplayValue();
|
|
1017
1101
|
var displayProps = {
|
|
1018
1102
|
className: Object(style_["toClassName"])(className, inputClassName),
|
|
@@ -1039,6 +1123,7 @@ var TextArea_TextArea = /*#__PURE__*/function (_Component) {
|
|
|
1039
1123
|
onBlur: this.handleInputBlur,
|
|
1040
1124
|
ref: this.handleInputMount,
|
|
1041
1125
|
role: 'textbox',
|
|
1126
|
+
required: required,
|
|
1042
1127
|
spellCheck: spellCheck,
|
|
1043
1128
|
style: {
|
|
1044
1129
|
height: this.state.height
|
|
@@ -1067,7 +1152,7 @@ var TextArea_TextArea = /*#__PURE__*/function (_Component) {
|
|
|
1067
1152
|
$width: this.state.startAdornmentWidth
|
|
1068
1153
|
}), /*#__PURE__*/external_react_default.a.createElement(StyledTextArea, {
|
|
1069
1154
|
"aria-hidden": "true",
|
|
1070
|
-
onChange:
|
|
1155
|
+
onChange: noop_default.a,
|
|
1071
1156
|
onClick: this.handleInputClick,
|
|
1072
1157
|
style: {
|
|
1073
1158
|
width: '100%',
|
|
@@ -1132,35 +1217,14 @@ TextAreaWithTheme.componentType = TextArea_TextArea.componentType;
|
|
|
1132
1217
|
|
|
1133
1218
|
/***/ }),
|
|
1134
1219
|
|
|
1135
|
-
/***/
|
|
1136
|
-
/***/ (function(module, exports) {
|
|
1137
|
-
|
|
1138
|
-
module.exports = require("@splunk/react-ui/EventListener");
|
|
1139
|
-
|
|
1140
|
-
/***/ }),
|
|
1141
|
-
|
|
1142
|
-
/***/ 16:
|
|
1143
|
-
/***/ (function(module, exports) {
|
|
1144
|
-
|
|
1145
|
-
module.exports = require("@splunk/react-ui/Button");
|
|
1146
|
-
|
|
1147
|
-
/***/ }),
|
|
1148
|
-
|
|
1149
|
-
/***/ 2:
|
|
1150
|
-
/***/ (function(module, exports) {
|
|
1151
|
-
|
|
1152
|
-
module.exports = require("react");
|
|
1153
|
-
|
|
1154
|
-
/***/ }),
|
|
1155
|
-
|
|
1156
|
-
/***/ 20:
|
|
1220
|
+
/***/ 27:
|
|
1157
1221
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1158
1222
|
|
|
1159
1223
|
"use strict";
|
|
1160
1224
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return CrossMark; });
|
|
1161
1225
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
|
|
1162
1226
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
1163
|
-
/* harmony import */ var _splunk_react_icons_Close__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
1227
|
+
/* harmony import */ var _splunk_react_icons_Close__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(29);
|
|
1164
1228
|
/* harmony import */ var _splunk_react_icons_Close__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_splunk_react_icons_Close__WEBPACK_IMPORTED_MODULE_1__);
|
|
1165
1229
|
/* harmony import */ var _ThemedIcon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7);
|
|
1166
1230
|
/* harmony import */ var _SVG__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(6);
|
|
@@ -1203,21 +1267,35 @@ function CrossMark(props) {
|
|
|
1203
1267
|
|
|
1204
1268
|
/***/ }),
|
|
1205
1269
|
|
|
1206
|
-
/***/
|
|
1270
|
+
/***/ 29:
|
|
1207
1271
|
/***/ (function(module, exports) {
|
|
1208
1272
|
|
|
1209
1273
|
module.exports = require("@splunk/react-icons/Close");
|
|
1210
1274
|
|
|
1211
1275
|
/***/ }),
|
|
1212
1276
|
|
|
1213
|
-
/***/
|
|
1277
|
+
/***/ 3:
|
|
1278
|
+
/***/ (function(module, exports) {
|
|
1279
|
+
|
|
1280
|
+
module.exports = require("styled-components");
|
|
1281
|
+
|
|
1282
|
+
/***/ }),
|
|
1283
|
+
|
|
1284
|
+
/***/ 31:
|
|
1285
|
+
/***/ (function(module, exports) {
|
|
1286
|
+
|
|
1287
|
+
module.exports = require("lodash/throttle");
|
|
1288
|
+
|
|
1289
|
+
/***/ }),
|
|
1290
|
+
|
|
1291
|
+
/***/ 39:
|
|
1214
1292
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1215
1293
|
|
|
1216
1294
|
"use strict";
|
|
1217
1295
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Search; });
|
|
1218
1296
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
|
|
1219
1297
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
1220
|
-
/* harmony import */ var _splunk_react_icons_Search__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
1298
|
+
/* harmony import */ var _splunk_react_icons_Search__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
|
|
1221
1299
|
/* harmony import */ var _splunk_react_icons_Search__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_splunk_react_icons_Search__WEBPACK_IMPORTED_MODULE_1__);
|
|
1222
1300
|
/* harmony import */ var _ThemedIcon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7);
|
|
1223
1301
|
/* harmony import */ var _SVG__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(6);
|
|
@@ -1260,38 +1338,38 @@ function Search(props) {
|
|
|
1260
1338
|
|
|
1261
1339
|
/***/ }),
|
|
1262
1340
|
|
|
1263
|
-
/***/
|
|
1341
|
+
/***/ 4:
|
|
1264
1342
|
/***/ (function(module, exports) {
|
|
1265
1343
|
|
|
1266
|
-
module.exports = require("
|
|
1344
|
+
module.exports = require("@splunk/ui-utils/i18n");
|
|
1267
1345
|
|
|
1268
1346
|
/***/ }),
|
|
1269
1347
|
|
|
1270
|
-
/***/
|
|
1348
|
+
/***/ 40:
|
|
1271
1349
|
/***/ (function(module, exports) {
|
|
1272
1350
|
|
|
1273
1351
|
module.exports = require("@splunk/ui-utils/style");
|
|
1274
1352
|
|
|
1275
1353
|
/***/ }),
|
|
1276
1354
|
|
|
1277
|
-
/***/
|
|
1355
|
+
/***/ 5:
|
|
1278
1356
|
/***/ (function(module, exports) {
|
|
1279
1357
|
|
|
1280
|
-
module.exports = require("lodash");
|
|
1358
|
+
module.exports = require("lodash/omit");
|
|
1281
1359
|
|
|
1282
1360
|
/***/ }),
|
|
1283
1361
|
|
|
1284
|
-
/***/
|
|
1362
|
+
/***/ 53:
|
|
1285
1363
|
/***/ (function(module, exports) {
|
|
1286
1364
|
|
|
1287
|
-
module.exports = require("
|
|
1365
|
+
module.exports = require("lodash/defer");
|
|
1288
1366
|
|
|
1289
1367
|
/***/ }),
|
|
1290
1368
|
|
|
1291
|
-
/***/
|
|
1369
|
+
/***/ 54:
|
|
1292
1370
|
/***/ (function(module, exports) {
|
|
1293
1371
|
|
|
1294
|
-
module.exports = require("@splunk/
|
|
1372
|
+
module.exports = require("@splunk/react-icons/Search");
|
|
1295
1373
|
|
|
1296
1374
|
/***/ }),
|
|
1297
1375
|
|
|
@@ -1438,10 +1516,10 @@ Icon.defaultProps = defaultProps;
|
|
|
1438
1516
|
|
|
1439
1517
|
/***/ }),
|
|
1440
1518
|
|
|
1441
|
-
/***/
|
|
1519
|
+
/***/ 71:
|
|
1442
1520
|
/***/ (function(module, exports) {
|
|
1443
1521
|
|
|
1444
|
-
module.exports = require("
|
|
1522
|
+
module.exports = require("lodash/pickBy");
|
|
1445
1523
|
|
|
1446
1524
|
/***/ }),
|
|
1447
1525
|
|