@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/Text.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 = 188);
|
|
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,14 +149,21 @@ function updateReactRef(ref, current) {
|
|
|
128
149
|
|
|
129
150
|
/***/ }),
|
|
130
151
|
|
|
131
|
-
/***/
|
|
152
|
+
/***/ 16:
|
|
153
|
+
/***/ (function(module, exports) {
|
|
154
|
+
|
|
155
|
+
module.exports = require("@splunk/react-ui/ScreenReaderContent");
|
|
156
|
+
|
|
157
|
+
/***/ }),
|
|
158
|
+
|
|
159
|
+
/***/ 160:
|
|
132
160
|
/***/ (function(module, exports) {
|
|
133
161
|
|
|
134
162
|
module.exports = require("@splunk/react-ui/TextArea");
|
|
135
163
|
|
|
136
164
|
/***/ }),
|
|
137
165
|
|
|
138
|
-
/***/
|
|
166
|
+
/***/ 188:
|
|
139
167
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
140
168
|
|
|
141
169
|
"use strict";
|
|
@@ -153,40 +181,53 @@ var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_)
|
|
|
153
181
|
var external_prop_types_ = __webpack_require__(1);
|
|
154
182
|
var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
|
|
155
183
|
|
|
156
|
-
// EXTERNAL MODULE: external "lodash"
|
|
157
|
-
var
|
|
184
|
+
// EXTERNAL MODULE: external "lodash/has"
|
|
185
|
+
var has_ = __webpack_require__(11);
|
|
186
|
+
var has_default = /*#__PURE__*/__webpack_require__.n(has_);
|
|
187
|
+
|
|
188
|
+
// EXTERNAL MODULE: external "lodash/keys"
|
|
189
|
+
var keys_ = __webpack_require__(10);
|
|
190
|
+
var keys_default = /*#__PURE__*/__webpack_require__.n(keys_);
|
|
191
|
+
|
|
192
|
+
// EXTERNAL MODULE: external "lodash/omit"
|
|
193
|
+
var omit_ = __webpack_require__(5);
|
|
194
|
+
var omit_default = /*#__PURE__*/__webpack_require__.n(omit_);
|
|
195
|
+
|
|
196
|
+
// EXTERNAL MODULE: external "lodash/pickBy"
|
|
197
|
+
var pickBy_ = __webpack_require__(71);
|
|
198
|
+
var pickBy_default = /*#__PURE__*/__webpack_require__.n(pickBy_);
|
|
158
199
|
|
|
159
200
|
// EXTERNAL MODULE: external "@splunk/ui-utils/style"
|
|
160
|
-
var style_ = __webpack_require__(
|
|
201
|
+
var style_ = __webpack_require__(40);
|
|
161
202
|
|
|
162
203
|
// EXTERNAL MODULE: external "@splunk/react-ui/ScreenReaderContent"
|
|
163
|
-
var ScreenReaderContent_ = __webpack_require__(
|
|
204
|
+
var ScreenReaderContent_ = __webpack_require__(16);
|
|
164
205
|
var ScreenReaderContent_default = /*#__PURE__*/__webpack_require__.n(ScreenReaderContent_);
|
|
165
206
|
|
|
166
207
|
// EXTERNAL MODULE: external "@splunk/themes"
|
|
167
208
|
var themes_ = __webpack_require__(0);
|
|
168
209
|
|
|
169
210
|
// EXTERNAL MODULE: external "@splunk/react-ui/ControlGroup"
|
|
170
|
-
var ControlGroup_ = __webpack_require__(
|
|
211
|
+
var ControlGroup_ = __webpack_require__(106);
|
|
171
212
|
|
|
172
213
|
// EXTERNAL MODULE: external "@splunk/react-ui/TextArea"
|
|
173
|
-
var TextArea_ = __webpack_require__(
|
|
214
|
+
var TextArea_ = __webpack_require__(160);
|
|
174
215
|
var TextArea_default = /*#__PURE__*/__webpack_require__.n(TextArea_);
|
|
175
216
|
|
|
176
217
|
// EXTERNAL MODULE: external "@splunk/ui-utils/i18n"
|
|
177
|
-
var i18n_ = __webpack_require__(
|
|
218
|
+
var i18n_ = __webpack_require__(4);
|
|
178
219
|
|
|
179
220
|
// EXTERNAL MODULE: ./src/icons/Search.tsx
|
|
180
|
-
var Search = __webpack_require__(
|
|
221
|
+
var Search = __webpack_require__(39);
|
|
181
222
|
|
|
182
223
|
// EXTERNAL MODULE: ./src/icons/CrossMark.tsx
|
|
183
|
-
var CrossMark = __webpack_require__(
|
|
224
|
+
var CrossMark = __webpack_require__(27);
|
|
184
225
|
|
|
185
226
|
// EXTERNAL MODULE: ./src/utils/updateReactRef.ts
|
|
186
|
-
var updateReactRef = __webpack_require__(
|
|
227
|
+
var updateReactRef = __webpack_require__(12);
|
|
187
228
|
|
|
188
229
|
// EXTERNAL MODULE: external "@splunk/react-icons/SVG"
|
|
189
|
-
var SVG_ = __webpack_require__(
|
|
230
|
+
var SVG_ = __webpack_require__(32);
|
|
190
231
|
var SVG_default = /*#__PURE__*/__webpack_require__.n(SVG_);
|
|
191
232
|
|
|
192
233
|
// CONCATENATED MODULE: ./src/Text/IconOutlinedHide.tsx
|
|
@@ -308,7 +349,7 @@ var Box_ = __webpack_require__(8);
|
|
|
308
349
|
var Box_default = /*#__PURE__*/__webpack_require__.n(Box_);
|
|
309
350
|
|
|
310
351
|
// EXTERNAL MODULE: external "@splunk/react-ui/Button"
|
|
311
|
-
var Button_ = __webpack_require__(
|
|
352
|
+
var Button_ = __webpack_require__(19);
|
|
312
353
|
var Button_default = /*#__PURE__*/__webpack_require__.n(Button_);
|
|
313
354
|
|
|
314
355
|
// CONCATENATED MODULE: ./src/Text/TextStyles.ts
|
|
@@ -666,6 +707,9 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
|
|
|
666
707
|
|
|
667
708
|
|
|
668
709
|
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
|
|
669
713
|
/** @public */
|
|
670
714
|
|
|
671
715
|
var propTypes = {
|
|
@@ -704,6 +748,9 @@ var propTypes = {
|
|
|
704
748
|
onInputClick: external_prop_types_default.a.func,
|
|
705
749
|
placeholder: external_prop_types_default.a.string,
|
|
706
750
|
prepend: external_prop_types_default.a.bool,
|
|
751
|
+
|
|
752
|
+
/** @private. */
|
|
753
|
+
required: external_prop_types_default.a.bool,
|
|
707
754
|
rowsMax: external_prop_types_default.a.number,
|
|
708
755
|
rowsMin: external_prop_types_default.a.number,
|
|
709
756
|
spellCheck: external_prop_types_default.a.bool,
|
|
@@ -988,7 +1035,7 @@ var Text_Text = /*#__PURE__*/function (_Component) {
|
|
|
988
1035
|
return displayValue;
|
|
989
1036
|
});
|
|
990
1037
|
|
|
991
|
-
_this.controlledExternally =
|
|
1038
|
+
_this.controlledExternally = has_default()(props, 'value');
|
|
992
1039
|
_this.state = {
|
|
993
1040
|
value: props.defaultValue || '',
|
|
994
1041
|
hideVisibility: true
|
|
@@ -998,7 +1045,7 @@ var Text_Text = /*#__PURE__*/function (_Component) {
|
|
|
998
1045
|
|
|
999
1046
|
if (false) {}
|
|
1000
1047
|
|
|
1001
|
-
if (
|
|
1048
|
+
if (has_default()(props, 'useSyntheticPlaceholder')) {
|
|
1002
1049
|
// eslint-disable-next-line no-console
|
|
1003
1050
|
console.warn("The 'Text' prop 'useSyntheticPlaceholder' has been marked for deprecation.");
|
|
1004
1051
|
}
|
|
@@ -1082,14 +1129,17 @@ var Text_Text = /*#__PURE__*/function (_Component) {
|
|
|
1082
1129
|
passwordVisibilityToggle = _this$props10.passwordVisibilityToggle,
|
|
1083
1130
|
placeholder = _this$props10.placeholder,
|
|
1084
1131
|
prepend = _this$props10.prepend,
|
|
1132
|
+
required = _this$props10.required,
|
|
1085
1133
|
spellCheck = _this$props10.spellCheck,
|
|
1086
1134
|
tabIndex = _this$props10.tabIndex,
|
|
1087
1135
|
title = _this$props10.title,
|
|
1088
1136
|
type = _this$props10.type,
|
|
1089
1137
|
useSyntheticPlaceholder = _this$props10.useSyntheticPlaceholder,
|
|
1090
|
-
otherProps = _objectWithoutProperties(_this$props10, ["append", "autoCapitalize", "autoComplete", "autoCorrect", "autoFocus", "children", "className", "classNamePrivate", "disabled", "describedBy", "elementRef", "error", "inline", "inputClassName", "inputId", "labelledBy", "multiline", "maxLength", "name", "passwordVisibilityToggle", "placeholder", "prepend", "spellCheck", "tabIndex", "title", "type", "useSyntheticPlaceholder"]);
|
|
1138
|
+
otherProps = _objectWithoutProperties(_this$props10, ["append", "autoCapitalize", "autoComplete", "autoCorrect", "autoFocus", "children", "className", "classNamePrivate", "disabled", "describedBy", "elementRef", "error", "inline", "inputClassName", "inputId", "labelledBy", "multiline", "maxLength", "name", "passwordVisibilityToggle", "placeholder", "prepend", "required", "spellCheck", "tabIndex", "title", "type", "useSyntheticPlaceholder"]);
|
|
1091
1139
|
|
|
1092
|
-
var ariaProps = _objectSpread(_objectSpread({
|
|
1140
|
+
var ariaProps = _objectSpread(_objectSpread({
|
|
1141
|
+
role: 'textbox'
|
|
1142
|
+
}, pickBy_default()(otherProps, function (val, key) {
|
|
1093
1143
|
return key === 'role' || key.indexOf('aria-') === 0;
|
|
1094
1144
|
})), {}, {
|
|
1095
1145
|
'aria-describedby': describedBy,
|
|
@@ -1097,7 +1147,7 @@ var Text_Text = /*#__PURE__*/function (_Component) {
|
|
|
1097
1147
|
'aria-invalid': error || undefined
|
|
1098
1148
|
});
|
|
1099
1149
|
|
|
1100
|
-
var boxProps =
|
|
1150
|
+
var boxProps = omit_default()(otherProps, ['inputRef', 'onBlur', 'onChange', 'onFocus', 'onKeyDown', 'onSelect', 'onInputClick', 'rowsMax', 'rowsMin'].concat(_toConsumableArray(keys_default()(ariaProps))));
|
|
1101
1151
|
var displayValue = this.getDisplayValue();
|
|
1102
1152
|
var displayProps = {
|
|
1103
1153
|
className: Object(style_["toClassName"])(className, inputClassName),
|
|
@@ -1125,7 +1175,7 @@ var Text_Text = /*#__PURE__*/function (_Component) {
|
|
|
1125
1175
|
onFocus: this.handleInputFocus,
|
|
1126
1176
|
onBlur: this.handleInputBlur,
|
|
1127
1177
|
ref: this.handleInputMount,
|
|
1128
|
-
|
|
1178
|
+
required: required,
|
|
1129
1179
|
spellCheck: spellCheck,
|
|
1130
1180
|
style: {
|
|
1131
1181
|
height: this.state.height
|
|
@@ -1211,14 +1261,7 @@ TextWithTheme.componentType = Text_Text.componentType;
|
|
|
1211
1261
|
|
|
1212
1262
|
/***/ }),
|
|
1213
1263
|
|
|
1214
|
-
/***/
|
|
1215
|
-
/***/ (function(module, exports) {
|
|
1216
|
-
|
|
1217
|
-
module.exports = require("@splunk/react-ui/ScreenReaderContent");
|
|
1218
|
-
|
|
1219
|
-
/***/ }),
|
|
1220
|
-
|
|
1221
|
-
/***/ 16:
|
|
1264
|
+
/***/ 19:
|
|
1222
1265
|
/***/ (function(module, exports) {
|
|
1223
1266
|
|
|
1224
1267
|
module.exports = require("@splunk/react-ui/Button");
|
|
@@ -1232,14 +1275,14 @@ module.exports = require("react");
|
|
|
1232
1275
|
|
|
1233
1276
|
/***/ }),
|
|
1234
1277
|
|
|
1235
|
-
/***/
|
|
1278
|
+
/***/ 27:
|
|
1236
1279
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1237
1280
|
|
|
1238
1281
|
"use strict";
|
|
1239
1282
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return CrossMark; });
|
|
1240
1283
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
|
|
1241
1284
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
1242
|
-
/* harmony import */ var _splunk_react_icons_Close__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
1285
|
+
/* harmony import */ var _splunk_react_icons_Close__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(29);
|
|
1243
1286
|
/* harmony import */ var _splunk_react_icons_Close__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_splunk_react_icons_Close__WEBPACK_IMPORTED_MODULE_1__);
|
|
1244
1287
|
/* harmony import */ var _ThemedIcon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7);
|
|
1245
1288
|
/* harmony import */ var _SVG__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(6);
|
|
@@ -1282,28 +1325,35 @@ function CrossMark(props) {
|
|
|
1282
1325
|
|
|
1283
1326
|
/***/ }),
|
|
1284
1327
|
|
|
1285
|
-
/***/
|
|
1328
|
+
/***/ 29:
|
|
1286
1329
|
/***/ (function(module, exports) {
|
|
1287
1330
|
|
|
1288
1331
|
module.exports = require("@splunk/react-icons/Close");
|
|
1289
1332
|
|
|
1290
1333
|
/***/ }),
|
|
1291
1334
|
|
|
1292
|
-
/***/
|
|
1335
|
+
/***/ 3:
|
|
1336
|
+
/***/ (function(module, exports) {
|
|
1337
|
+
|
|
1338
|
+
module.exports = require("styled-components");
|
|
1339
|
+
|
|
1340
|
+
/***/ }),
|
|
1341
|
+
|
|
1342
|
+
/***/ 32:
|
|
1293
1343
|
/***/ (function(module, exports) {
|
|
1294
1344
|
|
|
1295
1345
|
module.exports = require("@splunk/react-icons/SVG");
|
|
1296
1346
|
|
|
1297
1347
|
/***/ }),
|
|
1298
1348
|
|
|
1299
|
-
/***/
|
|
1349
|
+
/***/ 39:
|
|
1300
1350
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1301
1351
|
|
|
1302
1352
|
"use strict";
|
|
1303
1353
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Search; });
|
|
1304
1354
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
|
|
1305
1355
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
1306
|
-
/* harmony import */ var _splunk_react_icons_Search__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
1356
|
+
/* harmony import */ var _splunk_react_icons_Search__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(54);
|
|
1307
1357
|
/* harmony import */ var _splunk_react_icons_Search__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_splunk_react_icons_Search__WEBPACK_IMPORTED_MODULE_1__);
|
|
1308
1358
|
/* harmony import */ var _ThemedIcon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7);
|
|
1309
1359
|
/* harmony import */ var _SVG__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(6);
|
|
@@ -1346,41 +1396,34 @@ function Search(props) {
|
|
|
1346
1396
|
|
|
1347
1397
|
/***/ }),
|
|
1348
1398
|
|
|
1349
|
-
/***/
|
|
1399
|
+
/***/ 4:
|
|
1350
1400
|
/***/ (function(module, exports) {
|
|
1351
1401
|
|
|
1352
|
-
module.exports = require("
|
|
1402
|
+
module.exports = require("@splunk/ui-utils/i18n");
|
|
1353
1403
|
|
|
1354
1404
|
/***/ }),
|
|
1355
1405
|
|
|
1356
|
-
/***/
|
|
1406
|
+
/***/ 40:
|
|
1357
1407
|
/***/ (function(module, exports) {
|
|
1358
1408
|
|
|
1359
1409
|
module.exports = require("@splunk/ui-utils/style");
|
|
1360
1410
|
|
|
1361
1411
|
/***/ }),
|
|
1362
1412
|
|
|
1363
|
-
/***/
|
|
1413
|
+
/***/ 5:
|
|
1364
1414
|
/***/ (function(module, exports) {
|
|
1365
1415
|
|
|
1366
|
-
module.exports = require("lodash");
|
|
1416
|
+
module.exports = require("lodash/omit");
|
|
1367
1417
|
|
|
1368
1418
|
/***/ }),
|
|
1369
1419
|
|
|
1370
|
-
/***/
|
|
1420
|
+
/***/ 54:
|
|
1371
1421
|
/***/ (function(module, exports) {
|
|
1372
1422
|
|
|
1373
1423
|
module.exports = require("@splunk/react-icons/Search");
|
|
1374
1424
|
|
|
1375
1425
|
/***/ }),
|
|
1376
1426
|
|
|
1377
|
-
/***/ 5:
|
|
1378
|
-
/***/ (function(module, exports) {
|
|
1379
|
-
|
|
1380
|
-
module.exports = require("@splunk/ui-utils/i18n");
|
|
1381
|
-
|
|
1382
|
-
/***/ }),
|
|
1383
|
-
|
|
1384
1427
|
/***/ 6:
|
|
1385
1428
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1386
1429
|
|
|
@@ -1524,10 +1567,10 @@ Icon.defaultProps = defaultProps;
|
|
|
1524
1567
|
|
|
1525
1568
|
/***/ }),
|
|
1526
1569
|
|
|
1527
|
-
/***/
|
|
1570
|
+
/***/ 71:
|
|
1528
1571
|
/***/ (function(module, exports) {
|
|
1529
1572
|
|
|
1530
|
-
module.exports = require("
|
|
1573
|
+
module.exports = require("lodash/pickBy");
|
|
1531
1574
|
|
|
1532
1575
|
/***/ }),
|
|
1533
1576
|
|
package/TextArea.d.ts
ADDED