@splunk/react-ui 4.14.0 → 4.16.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.
Files changed (137) hide show
  1. package/.dockerignore +2 -0
  2. package/Accordion.js +41 -16
  3. package/Anchor.js +9 -9
  4. package/Animation.js +6 -6
  5. package/AnimationToggle.js +2 -2
  6. package/Box.js +9 -9
  7. package/Button.js +54 -51
  8. package/ButtonGroup.js +9 -9
  9. package/ButtonSimple.js +68 -64
  10. package/CHANGELOG.md +46 -0
  11. package/Calendar.js +124 -106
  12. package/Card.js +68 -68
  13. package/CardLayout.js +9 -9
  14. package/Chip.js +22 -22
  15. package/Clickable.js +38 -14
  16. package/CloseButton.js +23 -23
  17. package/Code.js +484 -436
  18. package/CollapsiblePanel.js +59 -34
  19. package/Color.js +297 -187
  20. package/ColumnLayout.js +18 -17
  21. package/ComboBox.js +81 -32
  22. package/Concertina.js +88 -27
  23. package/ControlGroup.js +81 -24
  24. package/Date.js +54 -36
  25. package/DefinitionList.js +14 -8
  26. package/Divider.d.ts +2 -0
  27. package/Divider.js +9 -9
  28. package/Dockerfile.enterprise.storybook +7 -0
  29. package/Dockerfile.prisma.storybook +7 -0
  30. package/Dockerfile.visual +10 -0
  31. package/Dropdown.js +78 -18
  32. package/EventListener.js +17 -17
  33. package/File.js +108 -46
  34. package/FormRows.js +38 -37
  35. package/Heading.js +83 -55
  36. package/Image.js +63 -38
  37. package/JSONTree.js +106 -21
  38. package/Layer.js +59 -34
  39. package/Link.js +17 -17
  40. package/List.js +3 -3
  41. package/MIGRATION.md +21 -0
  42. package/Markdown.js +71 -65
  43. package/Menu.js +155 -121
  44. package/Message.js +129 -129
  45. package/MessageBar.js +136 -136
  46. package/Modal.js +57 -32
  47. package/ModalLayer.js +15 -15
  48. package/Monogram.js +18 -17
  49. package/Multiselect.js +2807 -2310
  50. package/Number.js +74 -37
  51. package/Paginator.js +96 -83
  52. package/Paragraph.js +10 -10
  53. package/Popover.js +191 -54
  54. package/Progress.js +23 -22
  55. package/RadioBar.js +32 -14
  56. package/RadioList.js +17 -11
  57. package/Resize.js +33 -20
  58. package/ResultsMenu.js +36 -23
  59. package/ScreenReaderContent.js +9 -9
  60. package/Scroll.js +51 -26
  61. package/ScrollContainerContext.js +48 -48
  62. package/Search.js +68 -31
  63. package/Select.js +501 -204
  64. package/SidePanel.js +37 -24
  65. package/Slider.js +54 -24
  66. package/SlidingPanels.js +52 -14
  67. package/SplitButton.js +23 -22
  68. package/StaticContent.js +9 -9
  69. package/StepBar.js +22 -22
  70. package/Switch.js +18 -13
  71. package/TabBar.js +22 -22
  72. package/TabLayout.js +46 -18
  73. package/Table.js +424 -166
  74. package/Text.js +91 -49
  75. package/TextArea.d.ts +2 -0
  76. package/TextArea.js +127 -49
  77. package/Tooltip.js +236 -59
  78. package/TransitionOpen.js +39 -26
  79. package/Typography.d.ts +2 -0
  80. package/Typography.js +18 -17
  81. package/WaitSpinner.js +15 -15
  82. package/docker-compose.yml +42 -0
  83. package/package.json +13 -12
  84. package/test-runner-jest.config.js +11 -6
  85. package/types/src/Accordion/AccordionContext.d.ts +1 -0
  86. package/types/src/Button/Button.d.ts +5 -2
  87. package/types/src/Button/docs/examples/Basic.d.ts +2 -2
  88. package/types/src/Button/docs/examples/Selected.d.ts +2 -2
  89. package/types/src/ButtonGroup/ButtonGroupContext.d.ts +1 -0
  90. package/types/src/ButtonSimple/ButtonSimple.d.ts +10 -11
  91. package/types/src/Calendar/Calendar.d.ts +2 -0
  92. package/types/src/CardLayout/CardLayoutContext.d.ts +1 -0
  93. package/types/src/Concertina/ConcertinaContext.d.ts +1 -0
  94. package/types/src/ControlGroup/ControlGroup.d.ts +15 -8
  95. package/types/src/ControlGroup/docs/examples/HelpWithErrorText.d.ts +2 -0
  96. package/types/src/ControlGroup/docs/examples/Required.d.ts +2 -0
  97. package/types/src/File/File.d.ts +4 -2
  98. package/types/src/File/FileContext.d.ts +1 -0
  99. package/types/src/FormRows/FormRowsContext.d.ts +1 -0
  100. package/types/src/Markdown/renderers/MarkdownLink.d.ts +1 -1
  101. package/types/src/Menu/MenuContext.d.ts +1 -0
  102. package/types/src/Modal/ModalContext.d.ts +1 -0
  103. package/types/src/Multiselect/Compact.d.ts +14 -1
  104. package/types/src/Multiselect/Multiselect.d.ts +15 -1
  105. package/types/src/Multiselect/Normal.d.ts +2 -0
  106. package/types/src/Popover/Popover.d.ts +25 -5
  107. package/types/src/Popover/PopoverContext.d.ts +1 -0
  108. package/types/src/RadioBar/RadioBar.d.ts +5 -3
  109. package/types/src/RadioBar/RadioBarContext.d.ts +1 -0
  110. package/types/src/RadioList/RadioList.d.ts +5 -1
  111. package/types/src/RadioList/RadioListContext.d.ts +1 -0
  112. package/types/src/Select/Select.d.ts +3 -1
  113. package/types/src/Select/SelectBase.d.ts +14 -0
  114. package/types/src/Slider/Slider.d.ts +5 -3
  115. package/types/src/StepBar/StepBarContext.d.ts +1 -0
  116. package/types/src/Switch/Switch.d.ts +2 -0
  117. package/types/src/TabBar/TabBarContext.d.ts +1 -0
  118. package/types/src/TabLayout/Panel.d.ts +3 -0
  119. package/types/src/TabLayout/TabLayout.d.ts +2 -0
  120. package/types/src/Table/Body.d.ts +2 -0
  121. package/types/src/Table/Head.d.ts +2 -0
  122. package/types/src/Table/Row.d.ts +11 -3
  123. package/types/src/Table/Table.d.ts +5 -3
  124. package/types/src/Table/TableContext.d.ts +1 -0
  125. package/types/src/Text/Text.d.ts +5 -3
  126. package/types/src/TextArea/TextArea.d.ts +5 -3
  127. package/types/src/Tooltip/Tooltip.d.ts +16 -4
  128. package/types/src/Typography/Typography.d.ts +1 -1
  129. package/types/src/useForceUpdate/useForceUpdate.d.ts +1 -0
  130. package/useForceUpdate.js +9 -9
  131. package/useKeyPress.js +2 -2
  132. package/usePrevious.js +9 -9
  133. package/.storybook-visual/config/snapshotResolver.js +0 -29
  134. package/.storybook-visual/main.js +0 -22
  135. package/.storybook-visual/preview.jsx +0 -31
  136. package/.storybook-visual/scripts/test.sh +0 -108
  137. package/.storybook-visual/test-runner.js +0 -108
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 = 151);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 200);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -102,6 +102,27 @@ module.exports = require("prop-types");
102
102
  /***/ }),
103
103
 
104
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
+
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,35 @@ function updateReactRef(ref, current) {
128
149
 
129
150
  /***/ }),
130
151
 
131
- /***/ 15:
152
+ /***/ 161:
153
+ /***/ (function(module, exports) {
154
+
155
+ module.exports = require("lodash/noop");
156
+
157
+ /***/ }),
158
+
159
+ /***/ 17:
132
160
  /***/ (function(module, exports) {
133
161
 
134
162
  module.exports = require("@splunk/react-ui/EventListener");
135
163
 
136
164
  /***/ }),
137
165
 
138
- /***/ 151:
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:
139
181
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
140
182
 
141
183
  "use strict";
@@ -153,30 +195,55 @@ var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_)
153
195
  var external_prop_types_ = __webpack_require__(1);
154
196
  var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
155
197
 
156
- // EXTERNAL MODULE: external "lodash"
157
- var external_lodash_ = __webpack_require__(4);
198
+ // EXTERNAL MODULE: external "lodash/defer"
199
+ var defer_ = __webpack_require__(55);
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_);
158
225
 
159
226
  // EXTERNAL MODULE: external "@splunk/ui-utils/style"
160
- var style_ = __webpack_require__(32);
227
+ var style_ = __webpack_require__(40);
161
228
 
162
229
  // EXTERNAL MODULE: external "@splunk/react-ui/EventListener"
163
- var EventListener_ = __webpack_require__(15);
230
+ var EventListener_ = __webpack_require__(17);
164
231
  var EventListener_default = /*#__PURE__*/__webpack_require__.n(EventListener_);
165
232
 
166
233
  // EXTERNAL MODULE: external "@splunk/themes"
167
234
  var themes_ = __webpack_require__(0);
168
235
 
169
236
  // EXTERNAL MODULE: external "@splunk/react-ui/ControlGroup"
170
- var ControlGroup_ = __webpack_require__(80);
237
+ var ControlGroup_ = __webpack_require__(106);
171
238
 
172
239
  // EXTERNAL MODULE: external "@splunk/ui-utils/i18n"
173
- var i18n_ = __webpack_require__(5);
240
+ var i18n_ = __webpack_require__(4);
174
241
 
175
242
  // EXTERNAL MODULE: ./src/icons/Search.tsx
176
- var Search = __webpack_require__(31);
243
+ var Search = __webpack_require__(39);
177
244
 
178
245
  // EXTERNAL MODULE: ./src/icons/CrossMark.tsx
179
- var CrossMark = __webpack_require__(22);
246
+ var CrossMark = __webpack_require__(27);
180
247
 
181
248
  // CONCATENATED MODULE: ./src/TextArea/syncHeightWithShadow.ts
182
249
  // This file was adapted from [Call-Em-All's material-ui](https://github.com/mui-org/material-ui),
@@ -253,7 +320,7 @@ function syncHeightWithShadow(_ref) {
253
320
  return false;
254
321
  }
255
322
  // EXTERNAL MODULE: ./src/utils/updateReactRef.ts
256
- var updateReactRef = __webpack_require__(10);
323
+ var updateReactRef = __webpack_require__(12);
257
324
 
258
325
  // EXTERNAL MODULE: external "styled-components"
259
326
  var external_styled_components_ = __webpack_require__(3);
@@ -264,7 +331,7 @@ var Box_ = __webpack_require__(8);
264
331
  var Box_default = /*#__PURE__*/__webpack_require__.n(Box_);
265
332
 
266
333
  // EXTERNAL MODULE: external "@splunk/react-ui/Button"
267
- var Button_ = __webpack_require__(16);
334
+ var Button_ = __webpack_require__(19);
268
335
  var Button_default = /*#__PURE__*/__webpack_require__.n(Button_);
269
336
 
270
337
  // CONCATENATED MODULE: ./src/TextArea/TextAreaStyles.ts
@@ -611,6 +678,12 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
611
678
 
612
679
 
613
680
 
681
+
682
+
683
+
684
+
685
+
686
+
614
687
  /** @public */
615
688
 
616
689
  var propTypes = {
@@ -648,6 +721,9 @@ var propTypes = {
648
721
  onInputClick: external_prop_types_default.a.func,
649
722
  placeholder: external_prop_types_default.a.string,
650
723
  prepend: external_prop_types_default.a.bool,
724
+
725
+ /** @private. */
726
+ required: external_prop_types_default.a.bool,
651
727
  rowsMax: external_prop_types_default.a.number,
652
728
  rowsMin: external_prop_types_default.a.number,
653
729
  spellCheck: external_prop_types_default.a.bool,
@@ -917,7 +993,7 @@ var TextArea_TextArea = /*#__PURE__*/function (_Component) {
917
993
  return displayValue;
918
994
  });
919
995
 
920
- _this.controlledExternally = Object(external_lodash_["has"])(props, 'value');
996
+ _this.controlledExternally = has_default()(props, 'value');
921
997
  _this.state = {
922
998
  value: props.defaultValue || ''
923
999
  };
@@ -927,14 +1003,14 @@ var TextArea_TextArea = /*#__PURE__*/function (_Component) {
927
1003
  if (false) {}
928
1004
 
929
1005
  TextArea.validateRows(props);
930
- _this.handleResize = Object(external_lodash_["throttle"])(_this.handleResize, 100);
1006
+ _this.handleResize = throttle_default()(_this.handleResize, 100);
931
1007
  return _this;
932
1008
  }
933
1009
 
934
1010
  _createClass(TextArea, [{
935
1011
  key: "componentDidMount",
936
1012
  value: function componentDidMount() {
937
- Object(external_lodash_["defer"])(this.syncHeightWithShadow); // wait for styles to load
1013
+ defer_default()(this.syncHeightWithShadow); // wait for styles to load
938
1014
 
939
1015
  this.getAdornmentWidth();
940
1016
  }
@@ -1005,12 +1081,13 @@ var TextArea_TextArea = /*#__PURE__*/function (_Component) {
1005
1081
  name = _this$props10.name,
1006
1082
  placeholder = _this$props10.placeholder,
1007
1083
  prepend = _this$props10.prepend,
1084
+ required = _this$props10.required,
1008
1085
  spellCheck = _this$props10.spellCheck,
1009
1086
  tabIndex = _this$props10.tabIndex,
1010
1087
  title = _this$props10.title,
1011
- 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"]);
1012
1089
 
1013
- var ariaProps = _objectSpread(_objectSpread({}, Object(external_lodash_["pickBy"])(otherProps, function (val, key) {
1090
+ var ariaProps = _objectSpread(_objectSpread({}, pickBy_default()(otherProps, function (val, key) {
1014
1091
  return key === 'role' || key.indexOf('aria-') === 0;
1015
1092
  })), {}, {
1016
1093
  'aria-describedby': describedBy,
@@ -1019,7 +1096,7 @@ var TextArea_TextArea = /*#__PURE__*/function (_Component) {
1019
1096
  'aria-multiline': true
1020
1097
  });
1021
1098
 
1022
- var boxProps = Object(external_lodash_["omit"])(otherProps, ['inputRef', 'onBlur', 'onChange', 'onFocus', 'onKeyDown', 'onSelect', 'onInputClick', 'rowsMax', 'rowsMin'].concat(_toConsumableArray(Object(external_lodash_["keys"])(ariaProps))));
1099
+ var boxProps = omit_default()(otherProps, ['inputRef', 'onBlur', 'onChange', 'onFocus', 'onKeyDown', 'onSelect', 'onInputClick', 'rowsMax', 'rowsMin'].concat(_toConsumableArray(keys_default()(ariaProps))));
1023
1100
  var displayValue = this.getDisplayValue();
1024
1101
  var displayProps = {
1025
1102
  className: Object(style_["toClassName"])(className, inputClassName),
@@ -1046,6 +1123,7 @@ var TextArea_TextArea = /*#__PURE__*/function (_Component) {
1046
1123
  onBlur: this.handleInputBlur,
1047
1124
  ref: this.handleInputMount,
1048
1125
  role: 'textbox',
1126
+ required: required,
1049
1127
  spellCheck: spellCheck,
1050
1128
  style: {
1051
1129
  height: this.state.height
@@ -1074,7 +1152,7 @@ var TextArea_TextArea = /*#__PURE__*/function (_Component) {
1074
1152
  $width: this.state.startAdornmentWidth
1075
1153
  }), /*#__PURE__*/external_react_default.a.createElement(StyledTextArea, {
1076
1154
  "aria-hidden": "true",
1077
- onChange: external_lodash_["noop"],
1155
+ onChange: noop_default.a,
1078
1156
  onClick: this.handleInputClick,
1079
1157
  style: {
1080
1158
  width: '100%',
@@ -1139,28 +1217,14 @@ TextAreaWithTheme.componentType = TextArea_TextArea.componentType;
1139
1217
 
1140
1218
  /***/ }),
1141
1219
 
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
- /***/ 22:
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__(23);
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,7 +1267,7 @@ function CrossMark(props) {
1203
1267
 
1204
1268
  /***/ }),
1205
1269
 
1206
- /***/ 23:
1270
+ /***/ 29:
1207
1271
  /***/ (function(module, exports) {
1208
1272
 
1209
1273
  module.exports = require("@splunk/react-icons/Close");
@@ -1218,13 +1282,20 @@ module.exports = require("styled-components");
1218
1282
  /***/ }),
1219
1283
 
1220
1284
  /***/ 31:
1285
+ /***/ (function(module, exports) {
1286
+
1287
+ module.exports = require("lodash/throttle");
1288
+
1289
+ /***/ }),
1290
+
1291
+ /***/ 39:
1221
1292
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
1222
1293
 
1223
1294
  "use strict";
1224
1295
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Search; });
1225
1296
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
1226
1297
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
1227
- /* harmony import */ var _splunk_react_icons_Search__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(43);
1298
+ /* harmony import */ var _splunk_react_icons_Search__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(56);
1228
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__);
1229
1300
  /* harmony import */ var _ThemedIcon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7);
1230
1301
  /* harmony import */ var _SVG__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(6);
@@ -1267,31 +1338,38 @@ function Search(props) {
1267
1338
 
1268
1339
  /***/ }),
1269
1340
 
1270
- /***/ 32:
1341
+ /***/ 4:
1342
+ /***/ (function(module, exports) {
1343
+
1344
+ module.exports = require("@splunk/ui-utils/i18n");
1345
+
1346
+ /***/ }),
1347
+
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
- /***/ 4:
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
- /***/ 43:
1362
+ /***/ 55:
1285
1363
  /***/ (function(module, exports) {
1286
1364
 
1287
- module.exports = require("@splunk/react-icons/Search");
1365
+ module.exports = require("lodash/defer");
1288
1366
 
1289
1367
  /***/ }),
1290
1368
 
1291
- /***/ 5:
1369
+ /***/ 56:
1292
1370
  /***/ (function(module, exports) {
1293
1371
 
1294
- module.exports = require("@splunk/ui-utils/i18n");
1372
+ module.exports = require("@splunk/react-icons/Search");
1295
1373
 
1296
1374
  /***/ }),
1297
1375
 
@@ -1438,17 +1516,17 @@ Icon.defaultProps = defaultProps;
1438
1516
 
1439
1517
  /***/ }),
1440
1518
 
1441
- /***/ 8:
1519
+ /***/ 71:
1442
1520
  /***/ (function(module, exports) {
1443
1521
 
1444
- module.exports = require("@splunk/react-ui/Box");
1522
+ module.exports = require("lodash/pickBy");
1445
1523
 
1446
1524
  /***/ }),
1447
1525
 
1448
- /***/ 80:
1526
+ /***/ 8:
1449
1527
  /***/ (function(module, exports) {
1450
1528
 
1451
- module.exports = require("@splunk/react-ui/ControlGroup");
1529
+ module.exports = require("@splunk/react-ui/Box");
1452
1530
 
1453
1531
  /***/ })
1454
1532