@splunk/react-ui 4.18.0 → 4.20.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 (110) hide show
  1. package/Accordion.js +6 -6
  2. package/Anchor.js +2 -2
  3. package/Animation.js +4 -4
  4. package/AnimationToggle.js +2 -2
  5. package/Box.js +2 -2
  6. package/Breadcrumbs.d.ts +2 -0
  7. package/Breadcrumbs.js +299 -0
  8. package/Button.js +17 -17
  9. package/ButtonGroup.js +2 -2
  10. package/ButtonSimple.js +2 -2
  11. package/CHANGELOG.md +25 -1
  12. package/Calendar.js +17 -17
  13. package/Card.js +10 -10
  14. package/CardLayout.js +2 -2
  15. package/Chip.js +32 -25
  16. package/Clickable.js +16 -14
  17. package/CloseButton.js +8 -8
  18. package/Code.js +40 -15
  19. package/CollapsiblePanel.js +10 -10
  20. package/Color.js +33 -33
  21. package/ColumnLayout.js +8 -8
  22. package/ComboBox.js +28 -28
  23. package/Concertina.js +18 -18
  24. package/ControlGroup.js +13 -13
  25. package/Date.js +29 -29
  26. package/DefinitionList.js +2 -2
  27. package/Divider.js +2 -2
  28. package/Dropdown.js +21 -21
  29. package/DualListbox.js +24 -24
  30. package/EventListener.js +4 -4
  31. package/File.js +23 -23
  32. package/FormRows.js +266 -105
  33. package/Heading.js +45 -49
  34. package/Image.js +23 -23
  35. package/JSONTree.js +20 -20
  36. package/Layer.js +14 -14
  37. package/Link.js +7 -7
  38. package/List.js +2 -2
  39. package/Markdown.js +19 -20
  40. package/Menu.js +252 -232
  41. package/Message.js +43 -43
  42. package/MessageBar.js +39 -39
  43. package/Modal.js +20 -20
  44. package/ModalLayer.js +6 -6
  45. package/Monogram.js +3 -3
  46. package/Multiselect.js +2987 -2493
  47. package/Number.js +8 -8
  48. package/Paginator.js +16 -16
  49. package/Paragraph.js +2 -2
  50. package/Popover.js +113 -50
  51. package/Progress.js +10 -10
  52. package/RadioBar.js +4 -4
  53. package/RadioList.js +2 -2
  54. package/Resize.js +4 -4
  55. package/ResultsMenu.js +43 -22
  56. package/ScreenReaderContent.js +2 -2
  57. package/Scroll.js +8 -8
  58. package/ScrollContainerContext.js +4 -4
  59. package/Search.js +25 -25
  60. package/Select.js +517 -120
  61. package/SidePanel.js +6 -6
  62. package/Slider.js +8 -8
  63. package/SlidingPanels.js +10 -10
  64. package/SplitButton.js +4 -4
  65. package/StaticContent.js +2 -2
  66. package/StepBar.js +8 -8
  67. package/Switch.js +6 -6
  68. package/TabBar.js +6 -6
  69. package/TabLayout.js +6 -6
  70. package/Table.js +145 -111
  71. package/Text.js +40 -38
  72. package/TextArea.js +42 -40
  73. package/Tooltip.js +15 -15
  74. package/TransitionOpen.js +11 -11
  75. package/Typography.js +4 -4
  76. package/WaitSpinner.js +5 -5
  77. package/cypress/support/component-index.html +12 -0
  78. package/cypress/support/component.ts +27 -0
  79. package/cypress.config.ts +19 -0
  80. package/package.json +17 -17
  81. package/types/src/Breadcrumbs/Breadcrumbs.d.ts +25 -0
  82. package/types/src/Breadcrumbs/Item.d.ts +42 -0
  83. package/types/src/Breadcrumbs/docs/examples/Adornments.d.ts +2 -0
  84. package/types/src/Breadcrumbs/docs/examples/Basic.d.ts +2 -0
  85. package/types/src/Breadcrumbs/index.d.ts +2 -0
  86. package/types/src/Clickable/docs/examples/Basic.d.ts +2 -2
  87. package/types/src/Code/Code.d.ts +1 -1
  88. package/types/src/FormRows/FormRows.d.ts +1 -2
  89. package/types/src/FormRows/Row.d.ts +2 -12
  90. package/types/src/FormRows/RowInternal.d.ts +19 -0
  91. package/types/src/FormRows/SortableList.d.ts +8 -2
  92. package/types/src/FormRows/SortableRow.d.ts +20 -0
  93. package/types/src/Heading/Heading.d.ts +1 -1
  94. package/types/src/Link/Link.d.ts +5 -0
  95. package/types/src/Multiselect/Compact.d.ts +4 -0
  96. package/types/src/Multiselect/Multiselect.d.ts +5 -0
  97. package/types/src/Multiselect/docs/examples/CompactSelectAll.d.ts +2 -0
  98. package/types/src/Select/SelectAllOption.d.ts +14 -0
  99. package/types/src/Select/SelectBase.d.ts +11 -3
  100. package/types/src/Table/Table.d.ts +4 -0
  101. package/types/src/Text/Text.d.ts +3 -3
  102. package/types/src/TextArea/TextArea.d.ts +3 -3
  103. package/useForceUpdate.js +2 -2
  104. package/useKeyPress.js +2 -2
  105. package/usePrevious.js +2 -2
  106. package/useRovingFocus.js +4 -4
  107. package/cypress/plugins/index.ts +0 -15
  108. package/cypress/support/index.ts +0 -10
  109. package/cypress.json +0 -13
  110. package/types/src/Typography/docs/examples/Variants.d.ts +0 -2
package/ControlGroup.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 = 197);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 200);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -115,7 +115,14 @@ module.exports = require("lodash/isFinite");
115
115
 
116
116
  /***/ }),
117
117
 
118
- /***/ 197:
118
+ /***/ 2:
119
+ /***/ (function(module, exports) {
120
+
121
+ module.exports = require("react");
122
+
123
+ /***/ }),
124
+
125
+ /***/ 200:
119
126
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
120
127
 
121
128
  "use strict";
@@ -135,7 +142,7 @@ var external_prop_types_ = __webpack_require__(1);
135
142
  var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
136
143
 
137
144
  // EXTERNAL MODULE: external "lodash/find"
138
- var find_ = __webpack_require__(52);
145
+ var find_ = __webpack_require__(55);
139
146
  var find_default = /*#__PURE__*/__webpack_require__.n(find_);
140
147
 
141
148
  // EXTERNAL MODULE: external "lodash/isFinite"
@@ -161,7 +168,7 @@ var external_styled_components_ = __webpack_require__(3);
161
168
  var external_styled_components_default = /*#__PURE__*/__webpack_require__.n(external_styled_components_);
162
169
 
163
170
  // EXTERNAL MODULE: external "@splunk/react-ui/Tooltip"
164
- var Tooltip_ = __webpack_require__(42);
171
+ var Tooltip_ = __webpack_require__(45);
165
172
  var Tooltip_default = /*#__PURE__*/__webpack_require__.n(Tooltip_);
166
173
 
167
174
  // CONCATENATED MODULE: ./src/ControlGroup/ControlGroupStyles.ts
@@ -693,13 +700,6 @@ ControlGroupWithTheme.propTypes = ControlGroup_ControlGroup.propTypes;
693
700
 
694
701
 
695
702
 
696
- /***/ }),
697
-
698
- /***/ 2:
699
- /***/ (function(module, exports) {
700
-
701
- module.exports = require("react");
702
-
703
703
  /***/ }),
704
704
 
705
705
  /***/ 3:
@@ -709,14 +709,14 @@ module.exports = require("styled-components");
709
709
 
710
710
  /***/ }),
711
711
 
712
- /***/ 42:
712
+ /***/ 45:
713
713
  /***/ (function(module, exports) {
714
714
 
715
715
  module.exports = require("@splunk/react-ui/Tooltip");
716
716
 
717
717
  /***/ }),
718
718
 
719
- /***/ 52:
719
+ /***/ 55:
720
720
  /***/ (function(module, exports) {
721
721
 
722
722
  module.exports = require("lodash/find");
package/Date.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 = 198);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 201);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -102,13 +102,6 @@ module.exports = require("prop-types");
102
102
  /***/ }),
103
103
 
104
104
  /***/ 10:
105
- /***/ (function(module, exports) {
106
-
107
- module.exports = require("lodash/has");
108
-
109
- /***/ }),
110
-
111
- /***/ 11:
112
105
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
113
106
 
114
107
  "use strict";
@@ -135,14 +128,35 @@ function updateReactRef(ref, current) {
135
128
 
136
129
  /***/ }),
137
130
 
138
- /***/ 128:
131
+ /***/ 11:
132
+ /***/ (function(module, exports) {
133
+
134
+ module.exports = require("lodash/has");
135
+
136
+ /***/ }),
137
+
138
+ /***/ 131:
139
139
  /***/ (function(module, exports) {
140
140
 
141
141
  module.exports = require("@splunk/react-ui/Calendar");
142
142
 
143
143
  /***/ }),
144
144
 
145
- /***/ 198:
145
+ /***/ 2:
146
+ /***/ (function(module, exports) {
147
+
148
+ module.exports = require("react");
149
+
150
+ /***/ }),
151
+
152
+ /***/ 20:
153
+ /***/ (function(module, exports) {
154
+
155
+ module.exports = require("moment");
156
+
157
+ /***/ }),
158
+
159
+ /***/ 201:
146
160
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
147
161
 
148
162
  "use strict";
@@ -162,7 +176,7 @@ var external_prop_types_ = __webpack_require__(1);
162
176
  var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
163
177
 
164
178
  // EXTERNAL MODULE: external "lodash/has"
165
- var has_ = __webpack_require__(10);
179
+ var has_ = __webpack_require__(11);
166
180
  var has_default = /*#__PURE__*/__webpack_require__.n(has_);
167
181
 
168
182
  // EXTERNAL MODULE: external "lodash/omit"
@@ -180,7 +194,7 @@ var id_ = __webpack_require__(8);
180
194
  var keyboard_ = __webpack_require__(7);
181
195
 
182
196
  // EXTERNAL MODULE: external "@splunk/react-ui/Calendar"
183
- var Calendar_ = __webpack_require__(128);
197
+ var Calendar_ = __webpack_require__(131);
184
198
  var Calendar_default = /*#__PURE__*/__webpack_require__.n(Calendar_);
185
199
 
186
200
  // EXTERNAL MODULE: external "@splunk/react-ui/Popover"
@@ -195,7 +209,7 @@ var external_styled_components_ = __webpack_require__(3);
195
209
  var external_styled_components_default = /*#__PURE__*/__webpack_require__.n(external_styled_components_);
196
210
 
197
211
  // EXTERNAL MODULE: external "@splunk/react-ui/Text"
198
- var Text_ = __webpack_require__(30);
212
+ var Text_ = __webpack_require__(32);
199
213
  var Text_default = /*#__PURE__*/__webpack_require__.n(Text_);
200
214
 
201
215
  // CONCATENATED MODULE: ./src/Date/DateStyles.ts
@@ -250,7 +264,7 @@ function CalendarIcon(props) {
250
264
  }));
251
265
  }
252
266
  // EXTERNAL MODULE: ./src/utils/updateReactRef.ts
253
- var updateReactRef = __webpack_require__(11);
267
+ var updateReactRef = __webpack_require__(10);
254
268
 
255
269
  // CONCATENATED MODULE: ./src/Date/Date.tsx
256
270
  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); }
@@ -655,20 +669,6 @@ DateWithTheme.momentFormat = _Date.momentFormat;
655
669
 
656
670
 
657
671
 
658
- /***/ }),
659
-
660
- /***/ 2:
661
- /***/ (function(module, exports) {
662
-
663
- module.exports = require("react");
664
-
665
- /***/ }),
666
-
667
- /***/ 20:
668
- /***/ (function(module, exports) {
669
-
670
- module.exports = require("moment");
671
-
672
672
  /***/ }),
673
673
 
674
674
  /***/ 21:
@@ -685,7 +685,7 @@ module.exports = require("styled-components");
685
685
 
686
686
  /***/ }),
687
687
 
688
- /***/ 30:
688
+ /***/ 32:
689
689
  /***/ (function(module, exports) {
690
690
 
691
691
  module.exports = require("@splunk/react-ui/Text");
package/DefinitionList.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 = 179);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 182);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -101,7 +101,7 @@ module.exports = require("prop-types");
101
101
 
102
102
  /***/ }),
103
103
 
104
- /***/ 179:
104
+ /***/ 182:
105
105
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
106
106
 
107
107
  "use strict";
package/Divider.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 = 218);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 221);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -108,7 +108,7 @@ module.exports = require("react");
108
108
 
109
109
  /***/ }),
110
110
 
111
- /***/ 218:
111
+ /***/ 221:
112
112
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
113
113
 
114
114
  "use strict";
package/Dropdown.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 = 237);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 240);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -95,13 +95,6 @@ module.exports = require("prop-types");
95
95
  /***/ }),
96
96
 
97
97
  /***/ 10:
98
- /***/ (function(module, exports) {
99
-
100
- module.exports = require("lodash/has");
101
-
102
- /***/ }),
103
-
104
- /***/ 11:
105
98
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
106
99
 
107
100
  "use strict";
@@ -126,6 +119,13 @@ function updateReactRef(ref, current) {
126
119
 
127
120
 
128
121
 
122
+ /***/ }),
123
+
124
+ /***/ 11:
125
+ /***/ (function(module, exports) {
126
+
127
+ module.exports = require("lodash/has");
128
+
129
129
  /***/ }),
130
130
 
131
131
  /***/ 15:
@@ -149,7 +149,7 @@ module.exports = require("@splunk/react-ui/Popover");
149
149
 
150
150
  /***/ }),
151
151
 
152
- /***/ 237:
152
+ /***/ 240:
153
153
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
154
154
 
155
155
  "use strict";
@@ -169,7 +169,7 @@ var external_prop_types_ = __webpack_require__(1);
169
169
  var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
170
170
 
171
171
  // EXTERNAL MODULE: external "lodash/has"
172
- var has_ = __webpack_require__(10);
172
+ var has_ = __webpack_require__(11);
173
173
  var has_default = /*#__PURE__*/__webpack_require__.n(has_);
174
174
 
175
175
  // EXTERNAL MODULE: external "lodash/includes"
@@ -177,10 +177,10 @@ var includes_ = __webpack_require__(15);
177
177
  var includes_default = /*#__PURE__*/__webpack_require__.n(includes_);
178
178
 
179
179
  // EXTERNAL MODULE: external "lodash/isEmpty"
180
- var isEmpty_ = __webpack_require__(87);
180
+ var isEmpty_ = __webpack_require__(90);
181
181
 
182
182
  // EXTERNAL MODULE: external "lodash/isFunction"
183
- var isFunction_ = __webpack_require__(69);
183
+ var isFunction_ = __webpack_require__(71);
184
184
  var isFunction_default = /*#__PURE__*/__webpack_require__.n(isFunction_);
185
185
 
186
186
  // EXTERNAL MODULE: external "lodash/keys"
@@ -202,7 +202,7 @@ var Popover_ = __webpack_require__(21);
202
202
  var Popover_default = /*#__PURE__*/__webpack_require__.n(Popover_);
203
203
 
204
204
  // EXTERNAL MODULE: ./src/utils/updateReactRef.ts
205
- var updateReactRef = __webpack_require__(11);
205
+ var updateReactRef = __webpack_require__(10);
206
206
 
207
207
  // CONCATENATED MODULE: ./src/Dropdown/Dropdown.tsx
208
208
  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); }
@@ -537,17 +537,17 @@ module.exports = require("lodash/omit");
537
537
 
538
538
  /***/ }),
539
539
 
540
- /***/ 69:
540
+ /***/ 7:
541
541
  /***/ (function(module, exports) {
542
542
 
543
- module.exports = require("lodash/isFunction");
543
+ module.exports = require("@splunk/ui-utils/keyboard");
544
544
 
545
545
  /***/ }),
546
546
 
547
- /***/ 7:
547
+ /***/ 71:
548
548
  /***/ (function(module, exports) {
549
549
 
550
- module.exports = require("@splunk/ui-utils/keyboard");
550
+ module.exports = require("lodash/isFunction");
551
551
 
552
552
  /***/ }),
553
553
 
@@ -558,17 +558,17 @@ module.exports = require("@splunk/ui-utils/id");
558
558
 
559
559
  /***/ }),
560
560
 
561
- /***/ 87:
561
+ /***/ 9:
562
562
  /***/ (function(module, exports) {
563
563
 
564
- module.exports = require("lodash/isEmpty");
564
+ module.exports = require("lodash/keys");
565
565
 
566
566
  /***/ }),
567
567
 
568
- /***/ 9:
568
+ /***/ 90:
569
569
  /***/ (function(module, exports) {
570
570
 
571
- module.exports = require("lodash/keys");
571
+ module.exports = require("lodash/isEmpty");
572
572
 
573
573
  /***/ })
574
574
 
package/DualListbox.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 = 169);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 171);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -115,7 +115,7 @@ module.exports = require("@splunk/react-ui/ScreenReaderContent");
115
115
 
116
116
  /***/ }),
117
117
 
118
- /***/ 169:
118
+ /***/ 171:
119
119
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
120
120
 
121
121
  "use strict";
@@ -141,18 +141,18 @@ var i18n_ = __webpack_require__(4);
141
141
  var keyboard_ = __webpack_require__(7);
142
142
 
143
143
  // EXTERNAL MODULE: external "@splunk/react-icons/enterprise/ChevronLeft"
144
- var ChevronLeft_ = __webpack_require__(64);
144
+ var ChevronLeft_ = __webpack_require__(66);
145
145
  var ChevronLeft_default = /*#__PURE__*/__webpack_require__.n(ChevronLeft_);
146
146
 
147
147
  // EXTERNAL MODULE: external "@splunk/react-icons/enterprise/ChevronRight"
148
- var ChevronRight_ = __webpack_require__(35);
148
+ var ChevronRight_ = __webpack_require__(38);
149
149
  var ChevronRight_default = /*#__PURE__*/__webpack_require__.n(ChevronRight_);
150
150
 
151
151
  // EXTERNAL MODULE: external "@splunk/ui-utils/format"
152
- var format_ = __webpack_require__(28);
152
+ var format_ = __webpack_require__(29);
153
153
 
154
154
  // EXTERNAL MODULE: external "@splunk/react-ui/useForceUpdate"
155
- var useForceUpdate_ = __webpack_require__(45);
155
+ var useForceUpdate_ = __webpack_require__(48);
156
156
  var useForceUpdate_default = /*#__PURE__*/__webpack_require__.n(useForceUpdate_);
157
157
 
158
158
  // EXTERNAL MODULE: external "@splunk/react-ui/ScreenReaderContent"
@@ -255,10 +255,10 @@ var findNextValue = function findNextValue(index, originalValues, removedValues)
255
255
 
256
256
 
257
257
  // EXTERNAL MODULE: ./src/utils/scrollIntoViewIfNeeded.ts
258
- var scrollIntoViewIfNeeded = __webpack_require__(88);
258
+ var scrollIntoViewIfNeeded = __webpack_require__(91);
259
259
 
260
260
  // EXTERNAL MODULE: ./src/utils/fuzzyMatch.ts
261
- var fuzzyMatch = __webpack_require__(56);
261
+ var fuzzyMatch = __webpack_require__(59);
262
262
 
263
263
  // CONCATENATED MODULE: ./src/DualListbox/ToolbarContext.tsx
264
264
 
@@ -272,7 +272,7 @@ var fuzzyMatch = __webpack_require__(56);
272
272
  var ToolbarContext = /*#__PURE__*/external_react_default.a.createContext({});
273
273
  /* harmony default export */ var DualListbox_ToolbarContext = (ToolbarContext);
274
274
  // EXTERNAL MODULE: external "@splunk/react-ui/Tooltip"
275
- var Tooltip_ = __webpack_require__(42);
275
+ var Tooltip_ = __webpack_require__(45);
276
276
  var Tooltip_default = /*#__PURE__*/__webpack_require__.n(Tooltip_);
277
277
 
278
278
  // EXTERNAL MODULE: external "styled-components"
@@ -416,7 +416,7 @@ function ToolbarButton(_ref) {
416
416
  ToolbarButton.propsTypes = propTypes;
417
417
  /* harmony default export */ var DualListbox_ToolbarButton = (ToolbarButton);
418
418
  // EXTERNAL MODULE: external "@splunk/react-ui/Switch"
419
- var Switch_ = __webpack_require__(58);
419
+ var Switch_ = __webpack_require__(39);
420
420
  var Switch_default = /*#__PURE__*/__webpack_require__.n(Switch_);
421
421
 
422
422
  // CONCATENATED MODULE: ./src/DualListbox/OptionStyles.ts
@@ -1621,7 +1621,7 @@ module.exports = require("react");
1621
1621
 
1622
1622
  /***/ }),
1623
1623
 
1624
- /***/ 28:
1624
+ /***/ 29:
1625
1625
  /***/ (function(module, exports) {
1626
1626
 
1627
1627
  module.exports = require("@splunk/ui-utils/format");
@@ -1635,13 +1635,20 @@ module.exports = require("styled-components");
1635
1635
 
1636
1636
  /***/ }),
1637
1637
 
1638
- /***/ 35:
1638
+ /***/ 38:
1639
1639
  /***/ (function(module, exports) {
1640
1640
 
1641
1641
  module.exports = require("@splunk/react-icons/enterprise/ChevronRight");
1642
1642
 
1643
1643
  /***/ }),
1644
1644
 
1645
+ /***/ 39:
1646
+ /***/ (function(module, exports) {
1647
+
1648
+ module.exports = require("@splunk/react-ui/Switch");
1649
+
1650
+ /***/ }),
1651
+
1645
1652
  /***/ 4:
1646
1653
  /***/ (function(module, exports) {
1647
1654
 
@@ -1649,21 +1656,21 @@ module.exports = require("@splunk/ui-utils/i18n");
1649
1656
 
1650
1657
  /***/ }),
1651
1658
 
1652
- /***/ 42:
1659
+ /***/ 45:
1653
1660
  /***/ (function(module, exports) {
1654
1661
 
1655
1662
  module.exports = require("@splunk/react-ui/Tooltip");
1656
1663
 
1657
1664
  /***/ }),
1658
1665
 
1659
- /***/ 45:
1666
+ /***/ 48:
1660
1667
  /***/ (function(module, exports) {
1661
1668
 
1662
1669
  module.exports = require("@splunk/react-ui/useForceUpdate");
1663
1670
 
1664
1671
  /***/ }),
1665
1672
 
1666
- /***/ 56:
1673
+ /***/ 59:
1667
1674
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
1668
1675
 
1669
1676
  "use strict";
@@ -1714,13 +1721,6 @@ var fuzzyMatch = function fuzzyMatch(options, matchChar) {
1714
1721
 
1715
1722
 
1716
1723
 
1717
- /***/ }),
1718
-
1719
- /***/ 58:
1720
- /***/ (function(module, exports) {
1721
-
1722
- module.exports = require("@splunk/react-ui/Switch");
1723
-
1724
1724
  /***/ }),
1725
1725
 
1726
1726
  /***/ 6:
@@ -1730,7 +1730,7 @@ module.exports = require("@splunk/react-ui/Box");
1730
1730
 
1731
1731
  /***/ }),
1732
1732
 
1733
- /***/ 64:
1733
+ /***/ 66:
1734
1734
  /***/ (function(module, exports) {
1735
1735
 
1736
1736
  module.exports = require("@splunk/react-icons/enterprise/ChevronLeft");
@@ -1751,7 +1751,7 @@ module.exports = require("@splunk/ui-utils/id");
1751
1751
 
1752
1752
  /***/ }),
1753
1753
 
1754
- /***/ 88:
1754
+ /***/ 91:
1755
1755
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
1756
1756
 
1757
1757
  "use strict";
package/EventListener.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 = 238);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 241);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -94,7 +94,7 @@ module.exports = require("prop-types");
94
94
 
95
95
  /***/ }),
96
96
 
97
- /***/ 129:
97
+ /***/ 132:
98
98
  /***/ (function(module, exports) {
99
99
 
100
100
  module.exports = require("use-typed-event-listener");
@@ -108,7 +108,7 @@ module.exports = require("react");
108
108
 
109
109
  /***/ }),
110
110
 
111
- /***/ 238:
111
+ /***/ 241:
112
112
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
113
113
 
114
114
  "use strict";
@@ -127,7 +127,7 @@ var external_prop_types_ = __webpack_require__(1);
127
127
  var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
128
128
 
129
129
  // EXTERNAL MODULE: external "use-typed-event-listener"
130
- var external_use_typed_event_listener_ = __webpack_require__(129);
130
+ var external_use_typed_event_listener_ = __webpack_require__(132);
131
131
  var external_use_typed_event_listener_default = /*#__PURE__*/__webpack_require__.n(external_use_typed_event_listener_);
132
132
 
133
133
  // CONCATENATED MODULE: ./src/EventListener/EventListener.tsx