@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/File.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 = 172);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 173);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -108,14 +108,14 @@ module.exports = require("@splunk/react-ui/Clickable");
108
108
 
109
109
  /***/ }),
110
110
 
111
- /***/ 130:
111
+ /***/ 133:
112
112
  /***/ (function(module, exports) {
113
113
 
114
114
  module.exports = require("lodash/toUpper");
115
115
 
116
116
  /***/ }),
117
117
 
118
- /***/ 131:
118
+ /***/ 134:
119
119
  /***/ (function(module, exports) {
120
120
 
121
121
  module.exports = require("@splunk/react-ui/Progress");
@@ -129,7 +129,7 @@ module.exports = require("@splunk/react-ui/EventListener");
129
129
 
130
130
  /***/ }),
131
131
 
132
- /***/ 172:
132
+ /***/ 173:
133
133
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
134
134
 
135
135
  "use strict";
@@ -149,7 +149,7 @@ var external_prop_types_ = __webpack_require__(1);
149
149
  var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
150
150
 
151
151
  // EXTERNAL MODULE: external "lodash/debounce"
152
- var debounce_ = __webpack_require__(66);
152
+ var debounce_ = __webpack_require__(68);
153
153
  var debounce_default = /*#__PURE__*/__webpack_require__.n(debounce_);
154
154
 
155
155
  // EXTERNAL MODULE: external "lodash/omit"
@@ -157,7 +157,7 @@ var omit_ = __webpack_require__(5);
157
157
  var omit_default = /*#__PURE__*/__webpack_require__.n(omit_);
158
158
 
159
159
  // EXTERNAL MODULE: external "lodash/toUpper"
160
- var toUpper_ = __webpack_require__(130);
160
+ var toUpper_ = __webpack_require__(133);
161
161
  var toUpper_default = /*#__PURE__*/__webpack_require__.n(toUpper_);
162
162
 
163
163
  // EXTERNAL MODULE: external "lodash/isString"
@@ -178,23 +178,23 @@ var i18n_ = __webpack_require__(4);
178
178
  var id_ = __webpack_require__(8);
179
179
 
180
180
  // EXTERNAL MODULE: external "lodash/isUndefined"
181
- var isUndefined_ = __webpack_require__(38);
181
+ var isUndefined_ = __webpack_require__(42);
182
182
  var isUndefined_default = /*#__PURE__*/__webpack_require__.n(isUndefined_);
183
183
 
184
184
  // EXTERNAL MODULE: external "@splunk/react-icons/Cross"
185
- var Cross_ = __webpack_require__(25);
185
+ var Cross_ = __webpack_require__(26);
186
186
  var Cross_default = /*#__PURE__*/__webpack_require__.n(Cross_);
187
187
 
188
188
  // EXTERNAL MODULE: external "@splunk/react-icons/enterprise/Close"
189
- var Close_ = __webpack_require__(26);
189
+ var Close_ = __webpack_require__(27);
190
190
  var Close_default = /*#__PURE__*/__webpack_require__.n(Close_);
191
191
 
192
192
  // EXTERNAL MODULE: external "@splunk/react-ui/Progress"
193
- var Progress_ = __webpack_require__(131);
193
+ var Progress_ = __webpack_require__(134);
194
194
  var Progress_default = /*#__PURE__*/__webpack_require__.n(Progress_);
195
195
 
196
196
  // EXTERNAL MODULE: external "@splunk/ui-utils/format"
197
- var format_ = __webpack_require__(28);
197
+ var format_ = __webpack_require__(29);
198
198
 
199
199
  // CONCATENATED MODULE: ./src/File/FileContext.tsx
200
200
 
@@ -204,7 +204,7 @@ var FileContext = /*#__PURE__*/Object(external_react_["createContext"])({
204
204
  FileContext.displayName = 'File';
205
205
  /* harmony default export */ var File_FileContext = (FileContext);
206
206
  // EXTERNAL MODULE: external "@splunk/react-icons/SVGEnterprise"
207
- var SVGEnterprise_ = __webpack_require__(32);
207
+ var SVGEnterprise_ = __webpack_require__(34);
208
208
  var SVGEnterprise_default = /*#__PURE__*/__webpack_require__.n(SVGEnterprise_);
209
209
 
210
210
  // CONCATENATED MODULE: ./src/File/PaperClip.tsx
@@ -278,7 +278,7 @@ var Clickable_ = __webpack_require__(12);
278
278
  var Clickable_default = /*#__PURE__*/__webpack_require__.n(Clickable_);
279
279
 
280
280
  // EXTERNAL MODULE: external "@splunk/themes/mixins"
281
- var mixins_ = __webpack_require__(80);
281
+ var mixins_ = __webpack_require__(83);
282
282
 
283
283
  // CONCATENATED MODULE: ./src/File/ItemStyles.ts
284
284
 
@@ -1099,21 +1099,21 @@ module.exports = require("lodash/isString");
1099
1099
 
1100
1100
  /***/ }),
1101
1101
 
1102
- /***/ 25:
1102
+ /***/ 26:
1103
1103
  /***/ (function(module, exports) {
1104
1104
 
1105
1105
  module.exports = require("@splunk/react-icons/Cross");
1106
1106
 
1107
1107
  /***/ }),
1108
1108
 
1109
- /***/ 26:
1109
+ /***/ 27:
1110
1110
  /***/ (function(module, exports) {
1111
1111
 
1112
1112
  module.exports = require("@splunk/react-icons/enterprise/Close");
1113
1113
 
1114
1114
  /***/ }),
1115
1115
 
1116
- /***/ 28:
1116
+ /***/ 29:
1117
1117
  /***/ (function(module, exports) {
1118
1118
 
1119
1119
  module.exports = require("@splunk/ui-utils/format");
@@ -1127,24 +1127,24 @@ module.exports = require("styled-components");
1127
1127
 
1128
1128
  /***/ }),
1129
1129
 
1130
- /***/ 32:
1130
+ /***/ 34:
1131
1131
  /***/ (function(module, exports) {
1132
1132
 
1133
1133
  module.exports = require("@splunk/react-icons/SVGEnterprise");
1134
1134
 
1135
1135
  /***/ }),
1136
1136
 
1137
- /***/ 38:
1137
+ /***/ 4:
1138
1138
  /***/ (function(module, exports) {
1139
1139
 
1140
- module.exports = require("lodash/isUndefined");
1140
+ module.exports = require("@splunk/ui-utils/i18n");
1141
1141
 
1142
1142
  /***/ }),
1143
1143
 
1144
- /***/ 4:
1144
+ /***/ 42:
1145
1145
  /***/ (function(module, exports) {
1146
1146
 
1147
- module.exports = require("@splunk/ui-utils/i18n");
1147
+ module.exports = require("lodash/isUndefined");
1148
1148
 
1149
1149
  /***/ }),
1150
1150
 
@@ -1162,7 +1162,7 @@ module.exports = require("@splunk/react-ui/Box");
1162
1162
 
1163
1163
  /***/ }),
1164
1164
 
1165
- /***/ 66:
1165
+ /***/ 68:
1166
1166
  /***/ (function(module, exports) {
1167
1167
 
1168
1168
  module.exports = require("lodash/debounce");
@@ -1176,7 +1176,7 @@ module.exports = require("@splunk/ui-utils/id");
1176
1176
 
1177
1177
  /***/ }),
1178
1178
 
1179
- /***/ 80:
1179
+ /***/ 83:
1180
1180
  /***/ (function(module, exports) {
1181
1181
 
1182
1182
  module.exports = require("@splunk/themes/mixins");