@splunk/react-ui 4.1.0 → 4.4.1

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 (163) hide show
  1. package/Accordion.js +4 -4
  2. package/Anchor.js +2 -2
  3. package/Animation.js +26 -35
  4. package/AnimationToggle.js +2 -2
  5. package/Box.js +2 -2
  6. package/Button.js +22 -22
  7. package/ButtonGroup.js +2 -2
  8. package/ButtonSimple.js +12 -6
  9. package/CHANGELOG.md +69 -2
  10. package/Calendar.js +23 -23
  11. package/Card.js +15 -15
  12. package/CardLayout.js +2 -2
  13. package/Chip.js +13 -13
  14. package/Clickable.js +4 -4
  15. package/CloseButton.js +8 -8
  16. package/Code.js +1279 -1120
  17. package/CollapsiblePanel.js +11 -11
  18. package/Color.js +111 -172
  19. package/ColumnLayout.js +6 -6
  20. package/ComboBox.js +63 -30
  21. package/Concertina.js +2 -2
  22. package/ControlGroup.js +61 -20
  23. package/Date.js +66 -29
  24. package/DefinitionList.js +2 -2
  25. package/Dropdown.js +6 -6
  26. package/FetchOptions.js +8 -8
  27. package/File.js +87 -72
  28. package/FormRows.js +219 -331
  29. package/Heading.js +2 -2
  30. package/Image.js +15 -15
  31. package/JSONTree.js +63 -20
  32. package/Layer.js +8 -8
  33. package/Link.js +13 -13
  34. package/List.js +2 -2
  35. package/Markdown.js +19 -19
  36. package/Menu.js +315 -230
  37. package/Message.js +19 -19
  38. package/Modal.js +22 -11
  39. package/ModalLayer.js +25 -11
  40. package/Monogram.js +7 -7
  41. package/Multiselect.js +1931 -1057
  42. package/Number.js +40 -27
  43. package/Paginator.js +67 -49
  44. package/Paragraph.js +2 -2
  45. package/Popover.js +62 -35
  46. package/Progress.js +9 -21
  47. package/RadioBar.js +6 -6
  48. package/RadioList.js +2 -2
  49. package/ResultsMenu.js +18 -10
  50. package/ScreenReaderContent.js +2 -2
  51. package/Scroll.js +37 -19
  52. package/ScrollContainerContext.js +2 -2
  53. package/Select.js +1309 -562
  54. package/SidePanel.js +22 -17
  55. package/Slider.js +8 -8
  56. package/SlidingPanels.js +63 -47
  57. package/StaticContent.js +2 -2
  58. package/StepBar.js +8 -8
  59. package/Switch.js +20 -11
  60. package/TabBar.js +54 -40
  61. package/TabLayout.js +4 -4
  62. package/Table.js +148 -85
  63. package/Text.js +474 -356
  64. package/Tooltip.js +6 -6
  65. package/TransitionOpen.js +26 -24
  66. package/WaitSpinner.js +4 -4
  67. package/package.json +8 -7
  68. package/stubs-splunkui.d.ts +1 -0
  69. package/types/src/Accordion/Accordion.d.ts +2 -2
  70. package/types/src/Animation/Animation.d.ts +6 -5
  71. package/types/src/Button/Button.d.ts +2 -2
  72. package/types/src/ButtonSimple/ButtonSimple.d.ts +5 -5
  73. package/types/src/Calendar/DateTable.d.ts +1 -0
  74. package/types/src/Calendar/MonthHeader.d.ts +2 -2
  75. package/types/src/CollapsiblePanel/CollapsiblePanel.d.ts +1 -2
  76. package/types/src/Color/Color.d.ts +5 -4
  77. package/types/src/Color/Swatch.d.ts +4 -15
  78. package/types/src/ComboBox/ComboBox.d.ts +2 -2
  79. package/types/src/ControlGroup/ControlGroup.d.ts +7 -2
  80. package/types/src/ControlGroup/ControlGroupContext.d.ts +15 -0
  81. package/types/src/Date/Date.d.ts +7 -5
  82. package/types/src/Date/Icon.d.ts +1 -0
  83. package/types/src/Dropdown/Dropdown.d.ts +1 -1
  84. package/types/src/File/File.d.ts +2 -2
  85. package/types/src/File/FileContext.d.ts +9 -0
  86. package/types/src/File/Icon.d.ts +1 -0
  87. package/types/src/File/IconCloud.d.ts +1 -0
  88. package/types/src/File/Item.d.ts +5 -10
  89. package/types/src/File/PaperClip.d.ts +1 -0
  90. package/types/src/File/Retry.d.ts +1 -0
  91. package/types/src/File/Trash.d.ts +1 -0
  92. package/types/src/FormRows/FormRows.d.ts +11 -69
  93. package/types/src/FormRows/FormRowsContext.d.ts +9 -0
  94. package/types/src/FormRows/Row.d.ts +7 -20
  95. package/types/src/JSONTree/JSONTree.d.ts +14 -2
  96. package/types/src/JSONTree/TreeNode.d.ts +4 -1
  97. package/types/src/Menu/Divider.d.ts +1 -0
  98. package/types/src/Menu/Heading.d.ts +3 -1
  99. package/types/src/Menu/Item.d.ts +22 -6
  100. package/types/src/Menu/Menu.d.ts +17 -18
  101. package/types/src/Menu/MenuContext.d.ts +6 -0
  102. package/types/src/Menu/index.d.ts +1 -0
  103. package/types/src/Multiselect/Compact.d.ts +7 -26
  104. package/types/src/Multiselect/Multiselect.d.ts +7 -2
  105. package/types/src/Multiselect/Normal.d.ts +8 -2
  106. package/types/src/Multiselect/Option.d.ts +4 -1
  107. package/types/src/Number/IncrementIcon.d.ts +1 -0
  108. package/types/src/Number/Number.d.ts +4 -4
  109. package/types/src/Paginator/PageSeparator.d.ts +3 -0
  110. package/types/src/Popover/Popover.d.ts +5 -5
  111. package/types/src/Popover/PopoverContext.d.ts +6 -0
  112. package/types/src/Popover/index.d.ts +1 -0
  113. package/types/src/RadioBar/RadioBar.d.ts +5 -5
  114. package/types/src/RadioList/RadioListContext.d.ts +1 -0
  115. package/types/src/ResultsMenu/ResultsMenu.d.ts +4 -0
  116. package/types/src/Scroll/Inner.d.ts +4 -3
  117. package/types/src/Scroll/Scroll.d.ts +1 -1
  118. package/types/src/Select/Option.d.ts +2 -5
  119. package/types/src/Select/OptionBase.d.ts +94 -0
  120. package/types/src/Select/Select.d.ts +12 -37
  121. package/types/src/Select/SelectBase.d.ts +221 -0
  122. package/types/src/SidePanel/SidePanel.d.ts +4 -0
  123. package/types/src/Slider/Slider.d.ts +4 -4
  124. package/types/src/SlidingPanels/SlidingPanels.d.ts +0 -1
  125. package/types/src/Switch/CheckIcon.d.ts +1 -0
  126. package/types/src/Switch/Switch.d.ts +3 -7
  127. package/types/src/TabBar/Tab.d.ts +4 -1
  128. package/types/src/TabLayout/TabLayout.d.ts +2 -2
  129. package/types/src/Table/DragHandle.d.ts +1 -0
  130. package/types/src/Table/Head.d.ts +2 -0
  131. package/types/src/Table/HeadCell.d.ts +2 -2
  132. package/types/src/Table/HeadDropdownCell.d.ts +1 -1
  133. package/types/src/Table/HeadExpandRowsIcon.d.ts +1 -0
  134. package/types/src/Table/HeadInner.d.ts +3 -3
  135. package/types/src/Table/Table.d.ts +7 -3
  136. package/types/src/Table/Toggle.d.ts +1 -0
  137. package/types/src/Text/IconOutlinedHide.d.ts +1 -0
  138. package/types/src/Text/IconOutlinedView.d.ts +1 -0
  139. package/types/src/Text/Text.d.ts +28 -12
  140. package/types/src/Tooltip/InfoIcon.d.ts +1 -0
  141. package/types/src/Tooltip/Tooltip.d.ts +3 -3
  142. package/types/src/icons/Alert.d.ts +1 -0
  143. package/types/src/icons/AlertFilled.d.ts +1 -0
  144. package/types/src/icons/CaretDown.d.ts +1 -0
  145. package/types/src/icons/CaretRight.d.ts +1 -0
  146. package/types/src/icons/Check.d.ts +1 -0
  147. package/types/src/icons/ChevronDown.d.ts +1 -0
  148. package/types/src/icons/ChevronLeft.d.ts +1 -0
  149. package/types/src/icons/ChevronRight.d.ts +1 -0
  150. package/types/src/icons/CrossMark.d.ts +1 -0
  151. package/types/src/icons/External.d.ts +1 -0
  152. package/types/src/icons/InfoFilled.d.ts +1 -0
  153. package/types/src/icons/More.d.ts +1 -0
  154. package/types/src/icons/MoreVertical.d.ts +1 -0
  155. package/types/src/icons/Plus.d.ts +1 -0
  156. package/types/src/icons/SVG.d.ts +1 -0
  157. package/types/src/icons/Search.d.ts +1 -0
  158. package/types/src/icons/SortedDown.d.ts +1 -0
  159. package/types/src/icons/SortedUp.d.ts +1 -0
  160. package/types/src/icons/Success.d.ts +1 -0
  161. package/types/src/icons/SuccessFilled.d.ts +1 -0
  162. package/types/src/icons/WarningFilled.d.ts +1 -0
  163. package/types/src/utils/types.d.ts +1 -0
@@ -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 = 155);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 143);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -115,7 +115,7 @@ module.exports = require("@splunk/react-ui/Clickable");
115
115
 
116
116
  /***/ }),
117
117
 
118
- /***/ 155:
118
+ /***/ 143:
119
119
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
120
120
 
121
121
  "use strict";
@@ -143,11 +143,11 @@ var i18n_ = __webpack_require__(5);
143
143
  var id_ = __webpack_require__(10);
144
144
 
145
145
  // EXTERNAL MODULE: external "@splunk/react-ui/TransitionOpen"
146
- var TransitionOpen_ = __webpack_require__(44);
146
+ var TransitionOpen_ = __webpack_require__(46);
147
147
  var TransitionOpen_default = /*#__PURE__*/__webpack_require__.n(TransitionOpen_);
148
148
 
149
149
  // EXTERNAL MODULE: ./src/icons/ChevronRight.tsx
150
- var ChevronRight = __webpack_require__(25);
150
+ var ChevronRight = __webpack_require__(27);
151
151
 
152
152
  // EXTERNAL MODULE: external "styled-components"
153
153
  var external_styled_components_ = __webpack_require__(3);
@@ -570,14 +570,14 @@ module.exports = require("react");
570
570
 
571
571
  /***/ }),
572
572
 
573
- /***/ 25:
573
+ /***/ 27:
574
574
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
575
575
 
576
576
  "use strict";
577
577
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return ChevronRight; });
578
578
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
579
579
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
580
- /* harmony import */ var _splunk_react_icons_ChevronRight__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(28);
580
+ /* harmony import */ var _splunk_react_icons_ChevronRight__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(31);
581
581
  /* harmony import */ var _splunk_react_icons_ChevronRight__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_splunk_react_icons_ChevronRight__WEBPACK_IMPORTED_MODULE_1__);
582
582
  /* harmony import */ var _ThemedIcon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7);
583
583
  /* harmony import */ var _SVG__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(6);
@@ -620,17 +620,17 @@ function ChevronRight(props) {
620
620
 
621
621
  /***/ }),
622
622
 
623
- /***/ 28:
623
+ /***/ 3:
624
624
  /***/ (function(module, exports) {
625
625
 
626
- module.exports = require("@splunk/react-icons/ChevronRight");
626
+ module.exports = require("styled-components");
627
627
 
628
628
  /***/ }),
629
629
 
630
- /***/ 3:
630
+ /***/ 31:
631
631
  /***/ (function(module, exports) {
632
632
 
633
- module.exports = require("styled-components");
633
+ module.exports = require("@splunk/react-icons/ChevronRight");
634
634
 
635
635
  /***/ }),
636
636
 
@@ -641,7 +641,7 @@ module.exports = require("lodash");
641
641
 
642
642
  /***/ }),
643
643
 
644
- /***/ 44:
644
+ /***/ 46:
645
645
  /***/ (function(module, exports) {
646
646
 
647
647
  module.exports = require("@splunk/react-ui/TransitionOpen");
package/Color.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 = 120);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 124);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -108,7 +108,7 @@ module.exports = require("@splunk/react-ui/Clickable");
108
108
 
109
109
  /***/ }),
110
110
 
111
- /***/ 120:
111
+ /***/ 124:
112
112
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
113
113
 
114
114
  "use strict";
@@ -132,34 +132,34 @@ var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_pr
132
132
  var external_lodash_ = __webpack_require__(4);
133
133
 
134
134
  // EXTERNAL MODULE: external "@splunk/themes/SplunkThemeProvider"
135
- var SplunkThemeProvider_ = __webpack_require__(72);
135
+ var SplunkThemeProvider_ = __webpack_require__(74);
136
136
  var SplunkThemeProvider_default = /*#__PURE__*/__webpack_require__.n(SplunkThemeProvider_);
137
137
 
138
138
  // EXTERNAL MODULE: external "@splunk/ui-utils/i18n"
139
139
  var i18n_ = __webpack_require__(5);
140
140
 
141
141
  // EXTERNAL MODULE: external "@splunk/ui-utils/color"
142
- var color_ = __webpack_require__(30);
142
+ var color_ = __webpack_require__(33);
143
143
 
144
144
  // EXTERNAL MODULE: external "@splunk/ui-utils/keyboard"
145
145
  var keyboard_ = __webpack_require__(9);
146
146
 
147
147
  // EXTERNAL MODULE: external "@splunk/react-ui/Dropdown"
148
- var Dropdown_ = __webpack_require__(16);
148
+ var Dropdown_ = __webpack_require__(19);
149
149
  var Dropdown_default = /*#__PURE__*/__webpack_require__.n(Dropdown_);
150
150
 
151
151
  // EXTERNAL MODULE: external "@splunk/react-ui/Text"
152
- var Text_ = __webpack_require__(24);
152
+ var Text_ = __webpack_require__(26);
153
153
  var Text_default = /*#__PURE__*/__webpack_require__.n(Text_);
154
154
 
155
155
  // EXTERNAL MODULE: external "@splunk/themes"
156
156
  var themes_ = __webpack_require__(0);
157
157
 
158
158
  // EXTERNAL MODULE: ./src/icons/Check.tsx
159
- var Check = __webpack_require__(45);
159
+ var Check = __webpack_require__(47);
160
160
 
161
161
  // EXTERNAL MODULE: ./src/icons/ChevronDown.tsx
162
- var ChevronDown = __webpack_require__(54);
162
+ var ChevronDown = __webpack_require__(56);
163
163
 
164
164
  // EXTERNAL MODULE: external "styled-components"
165
165
  var external_styled_components_ = __webpack_require__(3);
@@ -231,37 +231,12 @@ var StyledClickable = external_styled_components_default()(Clickable_default.a).
231
231
  });
232
232
 
233
233
  // CONCATENATED MODULE: ./src/Color/Swatch.tsx
234
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
235
-
236
234
  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); }
237
235
 
238
236
  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; }
239
237
 
240
238
  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; }
241
239
 
242
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
243
-
244
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
245
-
246
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
247
-
248
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
249
-
250
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
251
-
252
- function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
253
-
254
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
255
-
256
- function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
257
-
258
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
259
-
260
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
261
-
262
- 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; }
263
-
264
-
265
240
 
266
241
 
267
242
 
@@ -287,102 +262,51 @@ var propTypes = {
287
262
  /** @private */
288
263
  showSelected: external_prop_types_default.a.bool
289
264
  };
290
- var defaultProps = {
291
- error: false
292
- };
293
-
294
- var Swatch_Swatch = /*#__PURE__*/function (_Component) {
295
- _inherits(Swatch, _Component);
296
-
297
- var _super = _createSuper(Swatch);
298
-
299
- function Swatch() {
300
- var _this;
301
-
302
- _classCallCheck(this, Swatch);
303
-
304
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
305
- args[_key] = arguments[_key];
306
- }
307
-
308
- _this = _super.call.apply(_super, [this].concat(args));
309
-
310
- _defineProperty(_assertThisInitialized(_this), "clickable", null);
311
-
312
- _defineProperty(_assertThisInitialized(_this), "handleMount", function (c) {
313
- _this.clickable = c;
314
- });
315
-
316
- return _this;
265
+ var Swatch = /*#__PURE__*/external_react_default.a.forwardRef(function (_ref, ref) {
266
+ var append = _ref.append,
267
+ _ref$error = _ref.error,
268
+ error = _ref$error === void 0 ? false : _ref$error,
269
+ _onClick = _ref.onClick,
270
+ prepend = _ref.prepend,
271
+ value = _ref.value,
272
+ noBorder = _ref.noBorder,
273
+ showSelected = _ref.showSelected,
274
+ otherProps = _objectWithoutProperties(_ref, ["append", "error", "onClick", "prepend", "value", "noBorder", "showSelected"]);
275
+
276
+ var screenReaderValue = value === null || value === undefined ? Object(i18n_["_"])('No color') : value; // Only valid hexadecimal strings, 'transparent' and `null` are allowed for background colors
277
+ // Invalid values are converted to `undefined`
278
+
279
+ var $value = value;
280
+
281
+ if (!(typeof $value === 'string' && (Object(color_["isValidHexColor"])($value) || $value === 'transparent')) && $value !== null && $value !== undefined) {
282
+ $value = undefined;
317
283
  }
318
284
 
319
- _createClass(Swatch, [{
320
- key: "focus",
321
- value: function focus() {
322
- var _this$clickable;
323
-
324
- (_this$clickable = this.clickable) === null || _this$clickable === void 0 ? void 0 : _this$clickable.focus();
325
- }
326
- }, {
327
- key: "render",
328
- value: function render() {
329
- var _this$props = this.props,
330
- append = _this$props.append,
331
- error = _this$props.error,
332
- onClick = _this$props.onClick,
333
- prepend = _this$props.prepend,
334
- value = _this$props.value,
335
- noBorder = _this$props.noBorder,
336
- showSelected = _this$props.showSelected,
337
- otherProps = _objectWithoutProperties(_this$props, ["append", "error", "onClick", "prepend", "value", "noBorder", "showSelected"]);
338
-
339
- var screenReaderValue = value === null || value === undefined ? Object(i18n_["_"])('No color') : value;
340
-
341
- function handleClick(e) {
342
- onClick === null || onClick === void 0 ? void 0 : onClick(e, {
343
- value: value
344
- });
345
- } // Only valid hexadecimal strings, 'transparent' and `null` are allowed for background colors
346
- // Invalid values are converted to `null`
347
-
348
-
349
- var $value = value;
350
-
351
- if (!(typeof $value === 'string' && (Object(color_["isValidHexColor"])($value) || $value === 'transparent')) && $value !== null && $value !== undefined) {
352
- $value = null;
353
- }
354
-
355
- return /*#__PURE__*/external_react_default.a.createElement(StyledClickable, _extends({
356
- onClick: handleClick,
357
- ref: this.handleMount,
358
- $value: $value,
359
- $append: append,
360
- $prepend: prepend,
361
- $hasError: error,
362
- $noBorder: noBorder,
363
- $showSelected: showSelected,
364
- "data-test": "swatch",
365
- "data-test-value": value
366
- }, otherProps), showSelected && /*#__PURE__*/external_react_default.a.createElement(Check["a" /* default */], {
367
- role: "presentation",
368
- style: {
369
- color: '#d3d3d3'
370
- },
371
- screenReaderText: Object(i18n_["_"])('Selected')
372
- }), /*#__PURE__*/external_react_default.a.createElement(ScreenReaderContent_default.a, null, screenReaderValue));
373
- }
374
- }]);
375
-
376
- return Swatch;
377
- }(external_react_["Component"]);
378
-
379
- _defineProperty(Swatch_Swatch, "propTypes", propTypes);
380
-
381
- _defineProperty(Swatch_Swatch, "defaultProps", defaultProps);
382
-
383
- _defineProperty(Swatch_Swatch, Dropdown_["legacyRefMode"], true);
384
-
385
- /* harmony default export */ var Color_Swatch = (Swatch_Swatch);
285
+ return /*#__PURE__*/external_react_default.a.createElement(StyledClickable, _extends({
286
+ onClick: function onClick(e) {
287
+ return _onClick === null || _onClick === void 0 ? void 0 : _onClick(e, {
288
+ value: value
289
+ });
290
+ },
291
+ ref: ref,
292
+ $value: $value,
293
+ $append: append,
294
+ $prepend: prepend,
295
+ $hasError: error,
296
+ $noBorder: noBorder,
297
+ $showSelected: showSelected,
298
+ "data-test": "swatch",
299
+ "data-test-value": value
300
+ }, otherProps), showSelected && /*#__PURE__*/external_react_default.a.createElement(Check["a" /* default */], {
301
+ role: "presentation",
302
+ style: {
303
+ color: '#d3d3d3'
304
+ },
305
+ screenReaderText: Object(i18n_["_"])('Selected')
306
+ }), /*#__PURE__*/external_react_default.a.createElement(ScreenReaderContent_default.a, null, screenReaderValue));
307
+ });
308
+ Swatch.propTypes = propTypes;
309
+ /* harmony default export */ var Color_Swatch = (Swatch);
386
310
  // CONCATENATED MODULE: ./src/Color/ColorStyles.ts
387
311
 
388
312
 
@@ -470,7 +394,7 @@ var StyledToggleSwatch = external_styled_components_default()(Color_Swatch).with
470
394
  }));
471
395
 
472
396
  // CONCATENATED MODULE: ./src/Color/Color.tsx
473
- function Color_typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { Color_typeof = function _typeof(obj) { return typeof obj; }; } else { Color_typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return Color_typeof(obj); }
397
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
474
398
 
475
399
  function Color_extends() { Color_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 Color_extends.apply(this, arguments); }
476
400
 
@@ -490,27 +414,27 @@ function Color_objectWithoutProperties(source, excluded) { if (source == null) r
490
414
 
491
415
  function Color_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; }
492
416
 
493
- function Color_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
417
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
494
418
 
495
- function Color_defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
419
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
496
420
 
497
- function Color_createClass(Constructor, protoProps, staticProps) { if (protoProps) Color_defineProperties(Constructor.prototype, protoProps); if (staticProps) Color_defineProperties(Constructor, staticProps); return Constructor; }
421
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
498
422
 
499
- function Color_inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) Color_setPrototypeOf(subClass, superClass); }
423
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
500
424
 
501
- function Color_setPrototypeOf(o, p) { Color_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return Color_setPrototypeOf(o, p); }
425
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
502
426
 
503
- function Color_createSuper(Derived) { var hasNativeReflectConstruct = Color_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = Color_getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = Color_getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return Color_possibleConstructorReturn(this, result); }; }
427
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
504
428
 
505
- function Color_possibleConstructorReturn(self, call) { if (call && (Color_typeof(call) === "object" || typeof call === "function")) { return call; } return Color_assertThisInitialized(self); }
429
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
506
430
 
507
- function Color_assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
431
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
508
432
 
509
- function Color_isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
433
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
510
434
 
511
- function Color_getPrototypeOf(o) { Color_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return Color_getPrototypeOf(o); }
435
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
512
436
 
513
- function Color_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; }
437
+ 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; }
514
438
 
515
439
 
516
440
 
@@ -548,7 +472,7 @@ var Color_propTypes = {
548
472
  splunkTheme: external_prop_types_default.a.object,
549
473
  value: external_prop_types_default.a.string
550
474
  };
551
- var Color_defaultProps = {
475
+ var defaultProps = {
552
476
  append: false,
553
477
  disabled: false,
554
478
  error: false,
@@ -571,11 +495,11 @@ var Color_isValidHEX = function isValidHEX(value) {
571
495
 
572
496
 
573
497
  var Color_Color = /*#__PURE__*/function (_Component) {
574
- Color_inherits(Color, _Component);
498
+ _inherits(Color, _Component);
575
499
 
576
- var _super = Color_createSuper(Color);
500
+ var _super = _createSuper(Color);
577
501
 
578
- Color_createClass(Color, null, [{
502
+ _createClass(Color, null, [{
579
503
  key: "hasNull",
580
504
  // @docs-props-type ColorPropsBase
581
505
  value: function hasNull(palette) {
@@ -595,19 +519,19 @@ var Color_Color = /*#__PURE__*/function (_Component) {
595
519
  function Color(props) {
596
520
  var _this;
597
521
 
598
- Color_classCallCheck(this, Color);
522
+ _classCallCheck(this, Color);
599
523
 
600
524
  _this = _super.call(this, props);
601
525
 
602
- Color_defineProperty(Color_assertThisInitialized(_this), "focusSwatch", void 0);
526
+ _defineProperty(_assertThisInitialized(_this), "focusSwatch", void 0);
603
527
 
604
- Color_defineProperty(Color_assertThisInitialized(_this), "focusExpandButton", void 0);
528
+ _defineProperty(_assertThisInitialized(_this), "focusExpandButton", void 0);
605
529
 
606
- Color_defineProperty(Color_assertThisInitialized(_this), "controlledExternally", void 0);
530
+ _defineProperty(_assertThisInitialized(_this), "controlledExternally", void 0);
607
531
 
608
- Color_defineProperty(Color_assertThisInitialized(_this), "dropdown", null);
532
+ _defineProperty(_assertThisInitialized(_this), "dropdown", null);
609
533
 
610
- Color_defineProperty(Color_assertThisInitialized(_this), "handleSwatchClick", function (e, _ref) {
534
+ _defineProperty(_assertThisInitialized(_this), "handleSwatchClick", function (e, _ref) {
611
535
  var value = _ref.value;
612
536
  e.preventDefault();
613
537
  var _this$props = _this.props,
@@ -640,7 +564,7 @@ var Color_Color = /*#__PURE__*/function (_Component) {
640
564
  _this.focus();
641
565
  });
642
566
 
643
- Color_defineProperty(Color_assertThisInitialized(_this), "handlePaletteExpand", function () {
567
+ _defineProperty(_assertThisInitialized(_this), "handlePaletteExpand", function () {
644
568
  _this.setState(function (state) {
645
569
  return {
646
570
  expanded: !state.expanded
@@ -648,7 +572,7 @@ var Color_Color = /*#__PURE__*/function (_Component) {
648
572
  });
649
573
  });
650
574
 
651
- Color_defineProperty(Color_assertThisInitialized(_this), "handleTextChange", function (e, _ref2) {
575
+ _defineProperty(_assertThisInitialized(_this), "handleTextChange", function (e, _ref2) {
652
576
  var value = _ref2.value;
653
577
 
654
578
  _this.setState({
@@ -656,7 +580,7 @@ var Color_Color = /*#__PURE__*/function (_Component) {
656
580
  });
657
581
  });
658
582
 
659
- Color_defineProperty(Color_assertThisInitialized(_this), "handleTextKeyDown", function (e) {
583
+ _defineProperty(_assertThisInitialized(_this), "handleTextKeyDown", function (e) {
660
584
  if (Object(keyboard_["keycode"])(e.nativeEvent) === 'enter') {
661
585
  e.preventDefault();
662
586
 
@@ -668,7 +592,7 @@ var Color_Color = /*#__PURE__*/function (_Component) {
668
592
  }
669
593
  });
670
594
 
671
- Color_defineProperty(Color_assertThisInitialized(_this), "handleButtonClick", function (e) {
595
+ _defineProperty(_assertThisInitialized(_this), "handleButtonClick", function (e) {
672
596
  e.preventDefault();
673
597
 
674
598
  _this.handleRequestClose({
@@ -678,7 +602,7 @@ var Color_Color = /*#__PURE__*/function (_Component) {
678
602
  _this.focus();
679
603
  });
680
604
 
681
- Color_defineProperty(Color_assertThisInitialized(_this), "handleRequestClose", function (_ref3) {
605
+ _defineProperty(_assertThisInitialized(_this), "handleRequestClose", function (_ref3) {
682
606
  var reason = _ref3.reason;
683
607
  var displayValue = _this.state.displayValue;
684
608
  var value = _this.state.value;
@@ -725,7 +649,7 @@ var Color_Color = /*#__PURE__*/function (_Component) {
725
649
  }
726
650
  });
727
651
 
728
- Color_defineProperty(Color_assertThisInitialized(_this), "handleRequestOpen", function () {
652
+ _defineProperty(_assertThisInitialized(_this), "handleRequestOpen", function () {
729
653
  var _this$props2 = _this.props,
730
654
  splunkTheme = _this$props2.splunkTheme,
731
655
  palette = _this$props2.palette;
@@ -759,7 +683,7 @@ var Color_Color = /*#__PURE__*/function (_Component) {
759
683
  }
760
684
  });
761
685
 
762
- Color_defineProperty(Color_assertThisInitialized(_this), "handleSystemColorPickerChange", Object(external_lodash_["debounce"])(function (value) {
686
+ _defineProperty(_assertThisInitialized(_this), "handleSystemColorPickerChange", Object(external_lodash_["debounce"])(function (value) {
763
687
  var prevValue = _this.getValue();
764
688
 
765
689
  var hasColorChanged = value !== prevValue;
@@ -813,13 +737,19 @@ var Color_Color = /*#__PURE__*/function (_Component) {
813
737
  return _this;
814
738
  }
815
739
 
816
- Color_createClass(Color, [{
740
+ _createClass(Color, [{
817
741
  key: "componentDidUpdate",
818
742
  value: function componentDidUpdate(prevProps) {
819
743
  if (false) {}
820
744
 
821
745
  if (false) {}
822
746
  }
747
+ }, {
748
+ key: "showNull",
749
+ value: function showNull() {
750
+ var isPrisma = this.props.splunkTheme.family === 'prisma';
751
+ return Color.hasNull(this.props.palette) || isPrisma;
752
+ }
823
753
  /**
824
754
  * Standardizes the current value of the Color:
825
755
  * returns based on the input being controlled or uncontrolled
@@ -834,7 +764,16 @@ var Color_Color = /*#__PURE__*/function (_Component) {
834
764
  };
835
765
 
836
766
  var sixDigitHex = Object(color_["expandShortHandHex"])(this.props.value);
837
- return this.isControlled() ? formatValueForProp(sixDigitHex) : this.state.value;
767
+
768
+ if (this.props.value === null && !this.showNull()) {
769
+ return undefined;
770
+ }
771
+
772
+ if (this.isControlled()) {
773
+ return formatValueForProp(sixDigitHex);
774
+ }
775
+
776
+ return this.state.value;
838
777
  }
839
778
  }, {
840
779
  key: "submitValue",
@@ -895,7 +834,7 @@ var Color_Color = /*#__PURE__*/function (_Component) {
895
834
  var displayValue = this.state.displayValue;
896
835
  var isPrisma = (splunkTheme === null || splunkTheme === void 0 ? void 0 : splunkTheme.family) === 'prisma';
897
836
  var showTransparent = Color.hasTransparent(this.props.palette) && Object(external_lodash_["toLower"])(displayValue) === 'transparent';
898
- var showNull = (Color.hasNull(this.props.palette) || isPrisma) && Object(external_lodash_["toLower"])(displayValue) === 'n/a';
837
+ var showNullSwatch = this.showNull() && Object(external_lodash_["toLower"])(displayValue) === 'n/a';
899
838
  var inputSwatchValue = displayValue;
900
839
 
901
840
  if (!Object(external_lodash_["startsWith"])(displayValue, '#')) {
@@ -903,7 +842,7 @@ var Color_Color = /*#__PURE__*/function (_Component) {
903
842
  }
904
843
 
905
844
  inputSwatchValue = showTransparent ? 'transparent' : inputSwatchValue;
906
- inputSwatchValue = showNull ? null : inputSwatchValue;
845
+ inputSwatchValue = showNullSwatch ? null : inputSwatchValue;
907
846
  return /*#__PURE__*/external_react_default.a.createElement(StyledInput, {
908
847
  $inDropdown: inDropdown
909
848
  }, /*#__PURE__*/external_react_default.a.createElement(Text_default.a, {
@@ -1105,9 +1044,9 @@ var Color_Color = /*#__PURE__*/function (_Component) {
1105
1044
  return Color;
1106
1045
  }(external_react_["Component"]);
1107
1046
 
1108
- Color_defineProperty(Color_Color, "propTypes", Color_propTypes);
1047
+ _defineProperty(Color_Color, "propTypes", Color_propTypes);
1109
1048
 
1110
- Color_defineProperty(Color_Color, "defaultProps", Color_defaultProps);
1049
+ _defineProperty(Color_Color, "defaultProps", defaultProps);
1111
1050
 
1112
1051
  var ColorWithTheme = Object(themes_["withSplunkTheme"])(Color_Color);
1113
1052
  ColorWithTheme.propTypes = Color_Color.propTypes;
@@ -1127,7 +1066,7 @@ module.exports = require("@splunk/react-ui/ScreenReaderContent");
1127
1066
 
1128
1067
  /***/ }),
1129
1068
 
1130
- /***/ 16:
1069
+ /***/ 19:
1131
1070
  /***/ (function(module, exports) {
1132
1071
 
1133
1072
  module.exports = require("@splunk/react-ui/Dropdown");
@@ -1141,7 +1080,7 @@ module.exports = require("react");
1141
1080
 
1142
1081
  /***/ }),
1143
1082
 
1144
- /***/ 24:
1083
+ /***/ 26:
1145
1084
  /***/ (function(module, exports) {
1146
1085
 
1147
1086
  module.exports = require("@splunk/react-ui/Text");
@@ -1155,7 +1094,7 @@ module.exports = require("styled-components");
1155
1094
 
1156
1095
  /***/ }),
1157
1096
 
1158
- /***/ 30:
1097
+ /***/ 33:
1159
1098
  /***/ (function(module, exports) {
1160
1099
 
1161
1100
  module.exports = require("@splunk/ui-utils/color");
@@ -1169,21 +1108,21 @@ module.exports = require("lodash");
1169
1108
 
1170
1109
  /***/ }),
1171
1110
 
1172
- /***/ 42:
1111
+ /***/ 44:
1173
1112
  /***/ (function(module, exports) {
1174
1113
 
1175
1114
  module.exports = require("@splunk/react-icons/Check");
1176
1115
 
1177
1116
  /***/ }),
1178
1117
 
1179
- /***/ 45:
1118
+ /***/ 47:
1180
1119
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
1181
1120
 
1182
1121
  "use strict";
1183
1122
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return Check; });
1184
1123
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
1185
1124
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
1186
- /* harmony import */ var _splunk_react_icons_Check__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(42);
1125
+ /* harmony import */ var _splunk_react_icons_Check__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(44);
1187
1126
  /* harmony import */ var _splunk_react_icons_Check__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_splunk_react_icons_Check__WEBPACK_IMPORTED_MODULE_1__);
1188
1127
  /* harmony import */ var _ThemedIcon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7);
1189
1128
  /* harmony import */ var _SVG__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(6);
@@ -1233,14 +1172,14 @@ module.exports = require("@splunk/ui-utils/i18n");
1233
1172
 
1234
1173
  /***/ }),
1235
1174
 
1236
- /***/ 54:
1175
+ /***/ 56:
1237
1176
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
1238
1177
 
1239
1178
  "use strict";
1240
1179
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return ChevronDown; });
1241
1180
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
1242
1181
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
1243
- /* harmony import */ var _splunk_react_icons_ChevronDown__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(55);
1182
+ /* harmony import */ var _splunk_react_icons_ChevronDown__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(57);
1244
1183
  /* harmony import */ var _splunk_react_icons_ChevronDown__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_splunk_react_icons_ChevronDown__WEBPACK_IMPORTED_MODULE_1__);
1245
1184
  /* harmony import */ var _ThemedIcon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7);
1246
1185
  /* harmony import */ var _SVG__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(6);
@@ -1283,7 +1222,7 @@ function ChevronDown(props) {
1283
1222
 
1284
1223
  /***/ }),
1285
1224
 
1286
- /***/ 55:
1225
+ /***/ 57:
1287
1226
  /***/ (function(module, exports) {
1288
1227
 
1289
1228
  module.exports = require("@splunk/react-icons/ChevronDown");
@@ -1433,7 +1372,7 @@ Icon.defaultProps = defaultProps;
1433
1372
 
1434
1373
  /***/ }),
1435
1374
 
1436
- /***/ 72:
1375
+ /***/ 74:
1437
1376
  /***/ (function(module, exports) {
1438
1377
 
1439
1378
  module.exports = require("@splunk/themes/SplunkThemeProvider");