@splunk/react-ui 4.17.1 → 4.19.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 (122) hide show
  1. package/Accordion.js +6 -6
  2. package/Anchor.js +2 -2
  3. package/Animation.js +2 -2
  4. package/AnimationToggle.js +5 -5
  5. package/Box.js +2 -2
  6. package/Button.js +4 -4
  7. package/ButtonGroup.js +2 -2
  8. package/ButtonSimple.js +2 -2
  9. package/CHANGELOG.md +28 -2
  10. package/Calendar.js +8 -8
  11. package/Card.js +8 -8
  12. package/CardLayout.js +2 -2
  13. package/Chip.js +23 -16
  14. package/Clickable.js +11 -11
  15. package/CloseButton.js +2 -2
  16. package/Code.js +12 -12
  17. package/CollapsiblePanel.js +4 -4
  18. package/Color.js +209 -182
  19. package/ColumnLayout.js +6 -6
  20. package/ComboBox.js +14 -14
  21. package/Concertina.js +10 -10
  22. package/ControlGroup.js +2 -2
  23. package/Date.js +13 -13
  24. package/DefinitionList.js +2 -2
  25. package/Divider.js +2 -2
  26. package/Dropdown.js +13 -13
  27. package/DualListbox.js +9 -6
  28. package/EventListener.js +4 -4
  29. package/File.js +13 -13
  30. package/FormRows.js +264 -103
  31. package/Heading.js +50 -50
  32. package/Image.js +15 -15
  33. package/JSONTree.js +38 -36
  34. package/Layer.js +10 -10
  35. package/Link.js +2 -2
  36. package/List.js +9 -6
  37. package/MIGRATION.mdx +295 -0
  38. package/Markdown.js +24 -19
  39. package/Menu.js +12 -12
  40. package/Message.js +4 -4
  41. package/MessageBar.js +2 -2
  42. package/Modal.js +4 -4
  43. package/ModalLayer.js +4 -4
  44. package/Monogram.js +3 -3
  45. package/Multiselect.js +33 -33
  46. package/Number.js +7 -6
  47. package/Paginator.js +6 -6
  48. package/Paragraph.js +2 -2
  49. package/Popover.js +31 -27
  50. package/Progress.js +4 -4
  51. package/RadioBar.js +4 -4
  52. package/RadioList.js +2 -2
  53. package/Resize.js +6 -6
  54. package/ResultsMenu.js +8 -8
  55. package/ScreenReaderContent.js +2 -2
  56. package/Scroll.js +6 -6
  57. package/ScrollContainerContext.js +2 -2
  58. package/Search.js +14 -14
  59. package/Select.js +12 -12
  60. package/SidePanel.js +2 -2
  61. package/Slider.js +10 -10
  62. package/SlidingPanels.js +8 -8
  63. package/SplitButton.js +4 -4
  64. package/StaticContent.js +2 -2
  65. package/StepBar.js +2 -2
  66. package/Switch.js +2 -2
  67. package/TabBar.js +68 -51
  68. package/TabLayout.js +6 -6
  69. package/Table.js +51 -50
  70. package/Text.js +25 -23
  71. package/TextArea.js +24 -22
  72. package/Tooltip.js +11 -11
  73. package/TransitionOpen.js +2 -2
  74. package/Typography.js +4 -4
  75. package/WaitSpinner.js +2 -2
  76. package/cypress/support/component-index.html +12 -0
  77. package/cypress/support/component.ts +27 -0
  78. package/cypress.config.ts +19 -0
  79. package/package.json +14 -19
  80. package/stubs-dependencies.d.ts +0 -9
  81. package/types/src/Button/Button.d.ts +5 -3
  82. package/types/src/Clickable/Clickable.d.ts +2 -1
  83. package/types/src/Clickable/docs/examples/Basic.d.ts +2 -2
  84. package/types/src/CollapsiblePanel/CollapsiblePanel.d.ts +1 -0
  85. package/types/src/Color/Color.d.ts +6 -6
  86. package/types/src/Color/Palette.d.ts +46 -0
  87. package/types/src/Concertina/Panel.d.ts +1 -0
  88. package/types/src/FormRows/FormRows.d.ts +1 -2
  89. package/types/src/FormRows/Row.d.ts +3 -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 +8 -3
  94. package/types/src/JSONTree/JSONTree.d.ts +2 -1
  95. package/types/src/Layer/Layer.d.ts +2 -0
  96. package/types/src/List/List.d.ts +9 -1
  97. package/types/src/List/docs/examples/CustomizedList.d.ts +2 -0
  98. package/types/src/List/docs/examples/OrderedList.d.ts +2 -0
  99. package/types/src/List/docs/examples/UnorderedList.d.ts +2 -0
  100. package/types/src/Markdown/Markdown.d.ts +1 -0
  101. package/types/src/Markdown/renderers/MarkdownList.d.ts +2 -0
  102. package/types/src/Number/Number.d.ts +9 -4
  103. package/types/src/Popover/Popover.d.ts +2 -0
  104. package/types/src/TabBar/Tab.d.ts +2 -0
  105. package/types/src/Table/Head.d.ts +1 -0
  106. package/types/src/Table/HeadCell.d.ts +1 -0
  107. package/types/src/Table/HeadDropdownCell.d.ts +1 -0
  108. package/types/src/Table/Table.d.ts +3 -1
  109. package/types/src/Text/Text.d.ts +3 -1
  110. package/types/src/TextArea/TextArea.d.ts +2 -0
  111. package/useForceUpdate.js +2 -2
  112. package/useKeyPress.js +2 -2
  113. package/usePrevious.js +2 -2
  114. package/useRovingFocus.js +2 -2
  115. package/MIGRATION.md +0 -49
  116. package/cypress/plugins/index.ts +0 -15
  117. package/cypress/support/index.ts +0 -10
  118. package/cypress.json +0 -13
  119. package/types/src/List/docs/examples/Decimal.d.ts +0 -2
  120. package/types/src/List/docs/examples/Disc.d.ts +0 -2
  121. package/types/src/List/docs/examples/LowerAlpha.d.ts +0 -2
  122. package/types/src/List/docs/examples/UpperAlpha.d.ts +0 -2
package/Markdown.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 = 170);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 171);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -101,42 +101,42 @@ module.exports = require("prop-types");
101
101
 
102
102
  /***/ }),
103
103
 
104
- /***/ 109:
104
+ /***/ 108:
105
105
  /***/ (function(module, exports) {
106
106
 
107
107
  module.exports = require("@splunk/react-ui/List");
108
108
 
109
109
  /***/ }),
110
110
 
111
- /***/ 138:
111
+ /***/ 139:
112
112
  /***/ (function(module, exports) {
113
113
 
114
114
  module.exports = require("commonmark-react-renderer");
115
115
 
116
116
  /***/ }),
117
117
 
118
- /***/ 139:
118
+ /***/ 140:
119
119
  /***/ (function(module, exports) {
120
120
 
121
121
  module.exports = require("commonmark");
122
122
 
123
123
  /***/ }),
124
124
 
125
- /***/ 140:
125
+ /***/ 141:
126
126
  /***/ (function(module, exports) {
127
127
 
128
128
  module.exports = require("@splunk/react-ui/Code");
129
129
 
130
130
  /***/ }),
131
131
 
132
- /***/ 141:
132
+ /***/ 142:
133
133
  /***/ (function(module, exports) {
134
134
 
135
135
  module.exports = require("@splunk/react-ui/Paragraph");
136
136
 
137
137
  /***/ }),
138
138
 
139
- /***/ 170:
139
+ /***/ 171:
140
140
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
141
141
 
142
142
  "use strict";
@@ -165,11 +165,11 @@ var external_prop_types_ = __webpack_require__(1);
165
165
  var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
166
166
 
167
167
  // EXTERNAL MODULE: external "commonmark-react-renderer"
168
- var external_commonmark_react_renderer_ = __webpack_require__(138);
168
+ var external_commonmark_react_renderer_ = __webpack_require__(139);
169
169
  var external_commonmark_react_renderer_default = /*#__PURE__*/__webpack_require__.n(external_commonmark_react_renderer_);
170
170
 
171
171
  // EXTERNAL MODULE: external "commonmark"
172
- var external_commonmark_ = __webpack_require__(139);
172
+ var external_commonmark_ = __webpack_require__(140);
173
173
  var external_commonmark_default = /*#__PURE__*/__webpack_require__.n(external_commonmark_);
174
174
 
175
175
  // EXTERNAL MODULE: external "@splunk/react-ui/Box"
@@ -258,7 +258,7 @@ function MarkdownCode(_ref) {
258
258
  MarkdownCode.propTypes = MarkdownCode_propTypes;
259
259
  /* harmony default export */ var renderers_MarkdownCode = (MarkdownCode);
260
260
  // EXTERNAL MODULE: external "@splunk/react-ui/Code"
261
- var Code_ = __webpack_require__(140);
261
+ var Code_ = __webpack_require__(141);
262
262
  var Code_default = /*#__PURE__*/__webpack_require__.n(Code_);
263
263
 
264
264
  // EXTERNAL MODULE: external "@splunk/ui-utils/i18n"
@@ -292,7 +292,7 @@ function MarkdownCodeBlock(_ref) {
292
292
  MarkdownCodeBlock.propTypes = MarkdownCodeBlock_propTypes;
293
293
  /* harmony default export */ var renderers_MarkdownCodeBlock = (MarkdownCodeBlock);
294
294
  // EXTERNAL MODULE: external "@splunk/react-ui/Heading"
295
- var Heading_ = __webpack_require__(76);
295
+ var Heading_ = __webpack_require__(78);
296
296
  var Heading_default = /*#__PURE__*/__webpack_require__.n(Heading_);
297
297
 
298
298
  // CONCATENATED MODULE: ./src/Markdown/renderers/MarkdownHeading.tsx
@@ -314,7 +314,7 @@ function MarkdownHeading(_ref) {
314
314
  MarkdownHeading.propTypes = MarkdownHeading_propTypes;
315
315
  /* harmony default export */ var renderers_MarkdownHeading = (MarkdownHeading);
316
316
  // EXTERNAL MODULE: external "@splunk/react-ui/Anchor"
317
- var Anchor_ = __webpack_require__(85);
317
+ var Anchor_ = __webpack_require__(86);
318
318
  var Anchor_default = /*#__PURE__*/__webpack_require__.n(Anchor_);
319
319
 
320
320
  // CONCATENATED MODULE: ./src/Markdown/renderers/MarkdownAnchorHeading.tsx
@@ -395,7 +395,7 @@ function MarkdownLink(_ref) {
395
395
  MarkdownLink.propTypes = MarkdownLink_propTypes;
396
396
  /* harmony default export */ var renderers_MarkdownLink = (MarkdownLink);
397
397
  // EXTERNAL MODULE: external "@splunk/react-ui/List"
398
- var List_ = __webpack_require__(109);
398
+ var List_ = __webpack_require__(108);
399
399
  var List_default = /*#__PURE__*/__webpack_require__.n(List_);
400
400
 
401
401
  // CONCATENATED MODULE: ./src/Markdown/renderers/MarkdownList.tsx
@@ -410,9 +410,14 @@ var MarkdownList_propTypes = {
410
410
  function MarkdownList(_ref) {
411
411
  var children = _ref.children,
412
412
  type = _ref.type;
413
- return /*#__PURE__*/external_react_default.a.createElement(List_default.a, {
414
- type: type === 'bullet' ? 'disc' : 'decimal'
415
- }, children);
413
+
414
+ if (type === 'ordered') {
415
+ return /*#__PURE__*/external_react_default.a.createElement(List_default.a, {
416
+ ordered: true
417
+ }, children);
418
+ }
419
+
420
+ return /*#__PURE__*/external_react_default.a.createElement(List_default.a, null, children);
416
421
  }
417
422
 
418
423
  MarkdownList.propTypes = MarkdownList_propTypes;
@@ -433,7 +438,7 @@ function MarkdownItem(_ref) {
433
438
  MarkdownItem.propTypes = MarkdownItem_propTypes;
434
439
  /* harmony default export */ var renderers_MarkdownItem = (MarkdownItem);
435
440
  // EXTERNAL MODULE: external "@splunk/react-ui/Paragraph"
436
- var Paragraph_ = __webpack_require__(141);
441
+ var Paragraph_ = __webpack_require__(142);
437
442
  var Paragraph_default = /*#__PURE__*/__webpack_require__.n(Paragraph_);
438
443
 
439
444
  // CONCATENATED MODULE: ./src/Markdown/renderers/MarkdownParagraph.tsx
@@ -596,14 +601,14 @@ module.exports = require("@splunk/react-ui/Box");
596
601
 
597
602
  /***/ }),
598
603
 
599
- /***/ 76:
604
+ /***/ 78:
600
605
  /***/ (function(module, exports) {
601
606
 
602
607
  module.exports = require("@splunk/react-ui/Heading");
603
608
 
604
609
  /***/ }),
605
610
 
606
- /***/ 85:
611
+ /***/ 86:
607
612
  /***/ (function(module, exports) {
608
613
 
609
614
  module.exports = require("@splunk/react-ui/Anchor");
package/Menu.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 = 171);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 172);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -101,7 +101,7 @@ module.exports = require("prop-types");
101
101
 
102
102
  /***/ }),
103
103
 
104
- /***/ 11:
104
+ /***/ 10:
105
105
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
106
106
 
107
107
  "use strict";
@@ -135,14 +135,14 @@ module.exports = require("@splunk/react-ui/Clickable");
135
135
 
136
136
  /***/ }),
137
137
 
138
- /***/ 142:
138
+ /***/ 143:
139
139
  /***/ (function(module, exports) {
140
140
 
141
141
  module.exports = require("@splunk/react-icons/CaretSmallRight");
142
142
 
143
143
  /***/ }),
144
144
 
145
- /***/ 171:
145
+ /***/ 172:
146
146
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
147
147
 
148
148
  "use strict";
@@ -254,7 +254,7 @@ Divider.filterLast = true;
254
254
  Divider.as = 'Divider';
255
255
  /* harmony default export */ var Menu_Divider = (Divider);
256
256
  // EXTERNAL MODULE: external "@splunk/react-ui/Heading"
257
- var Heading_ = __webpack_require__(76);
257
+ var Heading_ = __webpack_require__(78);
258
258
  var Heading_default = /*#__PURE__*/__webpack_require__.n(Heading_);
259
259
 
260
260
  // EXTERNAL MODULE: external "@splunk/themes/useSplunkTheme"
@@ -361,11 +361,11 @@ var isString_ = __webpack_require__(23);
361
361
  var isString_default = /*#__PURE__*/__webpack_require__.n(isString_);
362
362
 
363
363
  // EXTERNAL MODULE: external "@splunk/react-icons/CaretSmallRight"
364
- var CaretSmallRight_ = __webpack_require__(142);
364
+ var CaretSmallRight_ = __webpack_require__(143);
365
365
  var CaretSmallRight_default = /*#__PURE__*/__webpack_require__.n(CaretSmallRight_);
366
366
 
367
367
  // EXTERNAL MODULE: external "@splunk/react-icons/Checkmark"
368
- var Checkmark_ = __webpack_require__(86);
368
+ var Checkmark_ = __webpack_require__(76);
369
369
  var Checkmark_default = /*#__PURE__*/__webpack_require__.n(Checkmark_);
370
370
 
371
371
  // EXTERNAL MODULE: external "@splunk/react-icons/enterprise/Check"
@@ -423,7 +423,7 @@ var StyledItemIcon = external_styled_components_default.a.span.withConfig({
423
423
  prisma: 'initial',
424
424
  enterprise: 'middle'
425
425
  }), Object(themes_["pick"])({
426
- prisma: Object(external_styled_components_["css"])(["color:", ";display:inline-flex;align-items:center;min-width:20px;min-height:20px;"], themes_["variables"].contentColorMuted),
426
+ prisma: Object(external_styled_components_["css"])(["color:", ";display:inline-flex;align-items:center;min-width:20px;min-height:20px;& > svg{width:20px;height:20px;}"], themes_["variables"].contentColorMuted),
427
427
  enterprise: Object(external_styled_components_["css"])(["transform:translateY(-1px);"])
428
428
  }));
429
429
  var StyledClickable = external_styled_components_default()(Clickable_default.a).withConfig({
@@ -606,7 +606,7 @@ function External() {
606
606
 
607
607
  /* harmony default export */ var icons_External = (External);
608
608
  // EXTERNAL MODULE: ./src/utils/updateReactRef.ts
609
- var updateReactRef = __webpack_require__(11);
609
+ var updateReactRef = __webpack_require__(10);
610
610
 
611
611
  // EXTERNAL MODULE: ./src/utils/scrollIntoViewIfNeeded.ts
612
612
  var utils_scrollIntoViewIfNeeded = __webpack_require__(89);
@@ -1269,14 +1269,14 @@ module.exports = require("@splunk/ui-utils/keyboard");
1269
1269
  /***/ 76:
1270
1270
  /***/ (function(module, exports) {
1271
1271
 
1272
- module.exports = require("@splunk/react-ui/Heading");
1272
+ module.exports = require("@splunk/react-icons/Checkmark");
1273
1273
 
1274
1274
  /***/ }),
1275
1275
 
1276
- /***/ 86:
1276
+ /***/ 78:
1277
1277
  /***/ (function(module, exports) {
1278
1278
 
1279
- module.exports = require("@splunk/react-icons/Checkmark");
1279
+ module.exports = require("@splunk/react-ui/Heading");
1280
1280
 
1281
1281
  /***/ }),
1282
1282
 
package/Message.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 = 180);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 182);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -122,14 +122,14 @@ module.exports = require("@splunk/react-ui/Clickable");
122
122
 
123
123
  /***/ }),
124
124
 
125
- /***/ 143:
125
+ /***/ 144:
126
126
  /***/ (function(module, exports) {
127
127
 
128
128
  module.exports = require("@splunk/react-ui/MessageBar");
129
129
 
130
130
  /***/ }),
131
131
 
132
- /***/ 180:
132
+ /***/ 182:
133
133
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
134
134
 
135
135
  "use strict";
@@ -189,7 +189,7 @@ var Warning_ = __webpack_require__(101);
189
189
  var Warning_default = /*#__PURE__*/__webpack_require__.n(Warning_);
190
190
 
191
191
  // EXTERNAL MODULE: external "@splunk/react-ui/MessageBar"
192
- var MessageBar_ = __webpack_require__(143);
192
+ var MessageBar_ = __webpack_require__(144);
193
193
  var MessageBar_default = /*#__PURE__*/__webpack_require__.n(MessageBar_);
194
194
 
195
195
  // EXTERNAL MODULE: external "@splunk/themes"
package/MessageBar.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 = 221);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 222);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -136,7 +136,7 @@ module.exports = require("react");
136
136
 
137
137
  /***/ }),
138
138
 
139
- /***/ 221:
139
+ /***/ 222:
140
140
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
141
141
 
142
142
  "use strict";
package/Modal.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 = 173);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 174);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -108,14 +108,14 @@ module.exports = require("@splunk/react-ui/ModalLayer");
108
108
 
109
109
  /***/ }),
110
110
 
111
- /***/ 110:
111
+ /***/ 111:
112
112
  /***/ (function(module, exports) {
113
113
 
114
114
  module.exports = require("@splunk/react-ui/Divider");
115
115
 
116
116
  /***/ }),
117
117
 
118
- /***/ 173:
118
+ /***/ 174:
119
119
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
120
120
 
121
121
  "use strict";
@@ -248,7 +248,7 @@ function Body(_ref) {
248
248
  Body.propTypes = propTypes;
249
249
  /* harmony default export */ var Modal_Body = (Body);
250
250
  // EXTERNAL MODULE: external "@splunk/react-ui/Divider"
251
- var Divider_ = __webpack_require__(110);
251
+ var Divider_ = __webpack_require__(111);
252
252
  var Divider_default = /*#__PURE__*/__webpack_require__.n(Divider_);
253
253
 
254
254
  // CONCATENATED MODULE: ./src/Modal/FooterStyles.ts
package/ModalLayer.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 = 222);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 223);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -108,7 +108,7 @@ module.exports = require("react");
108
108
 
109
109
  /***/ }),
110
110
 
111
- /***/ 222:
111
+ /***/ 223:
112
112
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
113
113
 
114
114
  "use strict";
@@ -130,7 +130,7 @@ var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_pr
130
130
  var Animation_ = __webpack_require__(40);
131
131
 
132
132
  // EXTERNAL MODULE: external "@splunk/react-ui/Layer"
133
- var Layer_ = __webpack_require__(82);
133
+ var Layer_ = __webpack_require__(83);
134
134
  var Layer_default = /*#__PURE__*/__webpack_require__.n(Layer_);
135
135
 
136
136
  // EXTERNAL MODULE: external "styled-components"
@@ -338,7 +338,7 @@ module.exports = require("@splunk/react-ui/Animation");
338
338
 
339
339
  /***/ }),
340
340
 
341
- /***/ 82:
341
+ /***/ 83:
342
342
  /***/ (function(module, exports) {
343
343
 
344
344
  module.exports = require("@splunk/react-ui/Layer");
package/Monogram.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 = 223);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 224);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -115,7 +115,7 @@ module.exports = require("react");
115
115
 
116
116
  /***/ }),
117
117
 
118
- /***/ 223:
118
+ /***/ 224:
119
119
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
120
120
 
121
121
  "use strict";
@@ -204,7 +204,7 @@ var Styled = external_styled_components_default.a.div.withConfig({
204
204
  })),
205
205
  medium: Object(external_styled_components_["css"])(["height:48px;width:48px;font-size:", ";"], themes_["variables"].fontSize),
206
206
  large: Object(external_styled_components_["css"])(["height:80px;width:80px;font-size:", ";"], themes_["variables"].fontSizeXXLarge),
207
- xlarge: "\n width: 144px;\n height: 144px;\n font-size: 36px;\n font-weight: 700;\n "
207
+ xlarge: Object(external_styled_components_["css"])(["width:144px;height:144px;font-size:36px;font-weight:700;"])
208
208
  });
209
209
  }
210
210
 
package/Multiselect.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 = 183);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 185);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -102,27 +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
- /***/ 103:
112
- /***/ (function(module, exports) {
113
-
114
- module.exports = require("lodash/forEachRight");
115
-
116
- /***/ }),
117
-
118
- /***/ 104:
119
- /***/ (function(module, exports) {
120
-
121
- module.exports = require("lodash/uniq");
122
-
123
- /***/ }),
124
-
125
- /***/ 11:
126
105
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
127
106
 
128
107
  "use strict";
@@ -147,6 +126,27 @@ function updateReactRef(ref, current) {
147
126
 
148
127
 
149
128
 
129
+ /***/ }),
130
+
131
+ /***/ 103:
132
+ /***/ (function(module, exports) {
133
+
134
+ module.exports = require("lodash/forEachRight");
135
+
136
+ /***/ }),
137
+
138
+ /***/ 104:
139
+ /***/ (function(module, exports) {
140
+
141
+ module.exports = require("lodash/uniq");
142
+
143
+ /***/ }),
144
+
145
+ /***/ 11:
146
+ /***/ (function(module, exports) {
147
+
148
+ module.exports = require("lodash/has");
149
+
150
150
  /***/ }),
151
151
 
152
152
  /***/ 13:
@@ -163,21 +163,21 @@ module.exports = require("@splunk/react-ui/ScreenReaderContent");
163
163
 
164
164
  /***/ }),
165
165
 
166
- /***/ 144:
166
+ /***/ 145:
167
167
  /***/ (function(module, exports) {
168
168
 
169
169
  module.exports = require("lodash/get");
170
170
 
171
171
  /***/ }),
172
172
 
173
- /***/ 145:
173
+ /***/ 146:
174
174
  /***/ (function(module, exports) {
175
175
 
176
176
  module.exports = require("@splunk/react-ui/Chip");
177
177
 
178
178
  /***/ }),
179
179
 
180
- /***/ 16:
180
+ /***/ 15:
181
181
  /***/ (function(module, exports) {
182
182
 
183
183
  module.exports = require("lodash/includes");
@@ -267,7 +267,7 @@ function getWindow() {
267
267
 
268
268
  /***/ }),
269
269
 
270
- /***/ 183:
270
+ /***/ 185:
271
271
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
272
272
 
273
273
  "use strict";
@@ -289,7 +289,7 @@ var external_prop_types_ = __webpack_require__(1);
289
289
  var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
290
290
 
291
291
  // EXTERNAL MODULE: external "lodash/has"
292
- var has_ = __webpack_require__(10);
292
+ var has_ = __webpack_require__(11);
293
293
  var has_default = /*#__PURE__*/__webpack_require__.n(has_);
294
294
 
295
295
  // EXTERNAL MODULE: external "lodash/omit"
@@ -620,7 +620,7 @@ var extend_ = __webpack_require__(49);
620
620
  var extend_default = /*#__PURE__*/__webpack_require__.n(extend_);
621
621
 
622
622
  // EXTERNAL MODULE: external "lodash/get"
623
- var get_ = __webpack_require__(144);
623
+ var get_ = __webpack_require__(145);
624
624
  var get_default = /*#__PURE__*/__webpack_require__.n(get_);
625
625
 
626
626
  // EXTERNAL MODULE: external "lodash/isString"
@@ -661,7 +661,7 @@ var id_ = __webpack_require__(8);
661
661
  var keyboard_ = __webpack_require__(7);
662
662
 
663
663
  // EXTERNAL MODULE: external "@splunk/react-ui/Chip"
664
- var Chip_ = __webpack_require__(145);
664
+ var Chip_ = __webpack_require__(146);
665
665
  var Chip_default = /*#__PURE__*/__webpack_require__.n(Chip_);
666
666
 
667
667
  // EXTERNAL MODULE: external "@splunk/react-ui/ResultsMenu"
@@ -766,7 +766,7 @@ var StyledOverlay = external_styled_components_default.a.div.withConfig({
766
766
  });
767
767
 
768
768
  // EXTERNAL MODULE: ./src/utils/updateReactRef.ts
769
- var updateReactRef = __webpack_require__(11);
769
+ var updateReactRef = __webpack_require__(10);
770
770
 
771
771
  // CONCATENATED MODULE: ./src/Multiselect/Normal.tsx
772
772
  function Normal_typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { Normal_typeof = function _typeof(obj) { return typeof obj; }; } else { Normal_typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return Normal_typeof(obj); }
@@ -1292,7 +1292,7 @@ var Normal_Normal = /*#__PURE__*/function (_Component) {
1292
1292
  appearance: item.props ? item.props.selectedAppearance : undefined,
1293
1293
  backgroundColor: item.props ? item.props.selectedBackgroundColor : undefined,
1294
1294
  foregroundColor: item.props ? item.props.selectedForegroundColor : undefined
1295
- }, item.props ? item.props.children || item.props.label : item);
1295
+ }, /*#__PURE__*/external_react_default.a.createElement(external_react_default.a.Fragment, null, item.props ? item.props.children || item.props.label : item));
1296
1296
  });
1297
1297
  }
1298
1298
  }, {
@@ -2151,11 +2151,11 @@ var forEachRight_ = __webpack_require__(103);
2151
2151
  var forEachRight_default = /*#__PURE__*/__webpack_require__.n(forEachRight_);
2152
2152
 
2153
2153
  // EXTERNAL MODULE: external "lodash/has"
2154
- var has_ = __webpack_require__(10);
2154
+ var has_ = __webpack_require__(11);
2155
2155
  var has_default = /*#__PURE__*/__webpack_require__.n(has_);
2156
2156
 
2157
2157
  // EXTERNAL MODULE: external "lodash/includes"
2158
- var includes_ = __webpack_require__(16);
2158
+ var includes_ = __webpack_require__(15);
2159
2159
  var includes_default = /*#__PURE__*/__webpack_require__.n(includes_);
2160
2160
 
2161
2161
  // EXTERNAL MODULE: external "lodash/isUndefined"
package/Number.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 = 202);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 203);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -101,7 +101,7 @@ module.exports = require("prop-types");
101
101
 
102
102
  /***/ }),
103
103
 
104
- /***/ 10:
104
+ /***/ 11:
105
105
  /***/ (function(module, exports) {
106
106
 
107
107
  module.exports = require("lodash/has");
@@ -136,7 +136,7 @@ module.exports = require("react");
136
136
 
137
137
  /***/ }),
138
138
 
139
- /***/ 202:
139
+ /***/ 203:
140
140
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
141
141
 
142
142
  "use strict";
@@ -155,7 +155,7 @@ var external_prop_types_ = __webpack_require__(1);
155
155
  var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
156
156
 
157
157
  // EXTERNAL MODULE: external "lodash/has"
158
- var has_ = __webpack_require__(10);
158
+ var has_ = __webpack_require__(11);
159
159
  var has_default = /*#__PURE__*/__webpack_require__.n(has_);
160
160
 
161
161
  // EXTERNAL MODULE: external "lodash/isFinite"
@@ -355,6 +355,7 @@ var propTypes = {
355
355
  describedBy: external_prop_types_default.a.string,
356
356
  disabled: external_prop_types_default.a.bool,
357
357
  elementRef: external_prop_types_default.a.oneOfType([external_prop_types_default.a.func, external_prop_types_default.a.object]),
358
+ inputRef: external_prop_types_default.a.oneOfType([external_prop_types_default.a.func, external_prop_types_default.a.object]),
358
359
  error: external_prop_types_default.a.bool,
359
360
  hideStepButtons: external_prop_types_default.a.bool,
360
361
  inline: external_prop_types_default.a.bool,
@@ -645,9 +646,9 @@ var Number_Number = /*#__PURE__*/function (_Component) {
645
646
  /**
646
647
  * Place focus on the input.
647
648
  */
648
- value: function focus() {
649
+ value: function focus(options) {
649
650
  if (this.text) {
650
- this.text.focus();
651
+ this.text.focus(options);
651
652
  }
652
653
  }
653
654
  }, {
package/Paginator.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 = 181);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 183);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -101,14 +101,14 @@ module.exports = require("prop-types");
101
101
 
102
102
  /***/ }),
103
103
 
104
- /***/ 146:
104
+ /***/ 147:
105
105
  /***/ (function(module, exports) {
106
106
 
107
107
  module.exports = require("@splunk/react-icons/DotsThreeHorizontal");
108
108
 
109
109
  /***/ }),
110
110
 
111
- /***/ 181:
111
+ /***/ 183:
112
112
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
113
113
 
114
114
  "use strict";
@@ -140,7 +140,7 @@ var format_ = __webpack_require__(28);
140
140
  var i18n_ = __webpack_require__(4);
141
141
 
142
142
  // EXTERNAL MODULE: external "@splunk/react-icons/DotsThreeHorizontal"
143
- var DotsThreeHorizontal_ = __webpack_require__(146);
143
+ var DotsThreeHorizontal_ = __webpack_require__(147);
144
144
  var DotsThreeHorizontal_default = /*#__PURE__*/__webpack_require__.n(DotsThreeHorizontal_);
145
145
 
146
146
  // EXTERNAL MODULE: external "styled-components"
@@ -323,7 +323,7 @@ var ChevronLeft_ = __webpack_require__(64);
323
323
  var ChevronLeft_default = /*#__PURE__*/__webpack_require__.n(ChevronLeft_);
324
324
 
325
325
  // EXTERNAL MODULE: external "@splunk/react-icons/ChevronLeft"
326
- var react_icons_ChevronLeft_ = __webpack_require__(83);
326
+ var react_icons_ChevronLeft_ = __webpack_require__(84);
327
327
  var react_icons_ChevronLeft_default = /*#__PURE__*/__webpack_require__.n(react_icons_ChevronLeft_);
328
328
 
329
329
  // EXTERNAL MODULE: external "@splunk/react-icons/enterprise/ChevronRight"
@@ -605,7 +605,7 @@ module.exports = require("@splunk/react-icons/enterprise/ChevronLeft");
605
605
 
606
606
  /***/ }),
607
607
 
608
- /***/ 83:
608
+ /***/ 84:
609
609
  /***/ (function(module, exports) {
610
610
 
611
611
  module.exports = require("@splunk/react-icons/ChevronLeft");
package/Paragraph.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 = 224);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 225);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -108,7 +108,7 @@ module.exports = require("react");
108
108
 
109
109
  /***/ }),
110
110
 
111
- /***/ 224:
111
+ /***/ 225:
112
112
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
113
113
 
114
114
  "use strict";