@splunk/react-ui 4.13.0 → 4.14.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.
- package/.storybook-visual/config/snapshotResolver.js +29 -0
- package/.storybook-visual/main.js +22 -0
- package/.storybook-visual/preview.jsx +31 -0
- package/.storybook-visual/scripts/test.sh +108 -0
- package/.storybook-visual/test-runner.js +108 -0
- package/Accordion.js +4 -4
- package/Anchor.js +2 -2
- package/Animation.js +6 -6
- package/AnimationToggle.js +2 -2
- package/Box.js +2 -2
- package/Button.js +28 -28
- package/ButtonGroup.js +2 -2
- package/ButtonSimple.js +2 -2
- package/CHANGELOG.md +16 -1
- package/Calendar.js +365 -70
- package/Card.js +30 -28
- package/CardLayout.js +2 -2
- package/Chip.js +10 -10
- package/Clickable.js +9 -9
- package/CloseButton.js +8 -8
- package/Code.js +4 -4
- package/CollapsiblePanel.js +15 -11
- package/Color.js +27 -27
- package/ColumnLayout.js +6 -6
- package/ComboBox.js +19 -19
- package/Concertina.js +6 -6
- package/ControlGroup.js +14 -13
- package/Date.js +118 -55
- package/DefinitionList.js +2 -2
- package/Divider.js +194 -0
- package/Dropdown.js +13 -13
- package/EventListener.js +4 -4
- package/File.js +16 -16
- package/FormRows.js +14 -14
- package/Heading.js +2 -2
- package/Image.js +12 -12
- package/JSONTree.js +2 -2
- package/Layer.js +85 -8
- package/Link.js +9 -9
- package/List.js +2 -2
- package/Markdown.js +18 -18
- package/Menu.js +32 -32
- package/Message.js +32 -32
- package/MessageBar.js +22 -22
- package/Modal.js +63 -37
- package/ModalLayer.js +11 -11
- package/Monogram.js +2 -2
- package/Multiselect.js +61 -61
- package/Number.js +8 -6
- package/Paginator.js +17 -17
- package/Paragraph.js +2 -2
- package/Popover.js +175 -17
- package/Progress.js +8 -8
- package/RadioBar.js +2 -2
- package/RadioList.js +4 -4
- package/Resize.js +4 -4
- package/ResultsMenu.js +20 -20
- package/ScreenReaderContent.js +2 -2
- package/Scroll.js +13 -13
- package/ScrollContainerContext.js +154 -3
- package/Search.js +28 -28
- package/Select.js +41 -41
- package/SidePanel.js +6 -6
- package/Slider.js +14 -14
- package/SlidingPanels.js +11 -11
- package/SplitButton.js +12 -12
- package/StaticContent.js +2 -2
- package/StepBar.js +10 -10
- package/Switch.js +8 -8
- package/TabBar.js +15 -15
- package/TabLayout.js +6 -6
- package/Table.js +249 -67
- package/Text.js +31 -30
- package/TextArea.js +31 -31
- package/Tooltip.js +17 -11
- package/TransitionOpen.js +39 -15
- package/Typography.js +4 -4
- package/WaitSpinner.js +4 -70
- package/package.json +10 -12
- package/test-runner-jest.config.js +18 -5
- package/types/src/Calendar/Calendar.d.ts +15 -2
- package/types/src/Calendar/DateTable.d.ts +7 -3
- package/types/src/Calendar/Day.d.ts +14 -5
- package/types/src/CollapsiblePanel/CollapsiblePanel.d.ts +7 -3
- package/types/src/Date/Date.d.ts +17 -8
- package/types/src/Date/docs/examples/CustomDate.d.ts +2 -2
- package/types/src/Date/docs/examples/Disabled.d.ts +2 -2
- package/types/src/Date/docs/examples/prisma/WithoutCalendar.d.ts +2 -0
- package/types/src/Divider/Divider.d.ts +20 -0
- package/types/src/Divider/docs/examples/AriaHidden.d.ts +2 -0
- package/types/src/Divider/docs/examples/Basic.d.ts +2 -0
- package/types/src/Divider/docs/examples/CustomStyle.d.ts +2 -0
- package/types/src/Divider/docs/examples/Vertical.d.ts +2 -0
- package/types/src/Divider/index.d.ts +1 -0
- package/types/src/Modal/Modal.d.ts +7 -3
- package/types/src/Modal/ModalContext.d.ts +1 -0
- package/types/src/Number/Number.d.ts +5 -1
- package/types/src/SplitButton/docs/examples/Disabled.d.ts +1 -1
- package/types/src/SplitButton/docs/examples/prisma/Disabled.d.ts +1 -1
- package/types/src/Table/docs/examples/FilterColumnValues.d.ts +14 -0
- package/types/src/Tooltip/Tooltip.d.ts +10 -5
- package/types/src/TransitionOpen/TransitionOpen.d.ts +7 -3
- package/types/src/WaitSpinner/WaitSpinner.d.ts +1 -1
- package/types/src/useKeyPress/index.d.ts +37 -0
- package/useForceUpdate.js +2 -2
- package/{useIsSsr.js → useKeyPress.js} +56 -49
- package/usePrevious.js +2 -2
- package/types/src/useIsSsr/index.d.ts +0 -2
- package/types/src/useIsSsr/useIsSsr.d.ts +0 -8
package/Slider.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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 178);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -101,7 +101,7 @@ module.exports = require("prop-types");
|
|
|
101
101
|
|
|
102
102
|
/***/ }),
|
|
103
103
|
|
|
104
|
-
/***/
|
|
104
|
+
/***/ 106:
|
|
105
105
|
/***/ (function(module, exports) {
|
|
106
106
|
|
|
107
107
|
module.exports = require("decimal.js-light");
|
|
@@ -115,14 +115,7 @@ module.exports = require("@splunk/react-ui/EventListener");
|
|
|
115
115
|
|
|
116
116
|
/***/ }),
|
|
117
117
|
|
|
118
|
-
/***/
|
|
119
|
-
/***/ (function(module, exports) {
|
|
120
|
-
|
|
121
|
-
module.exports = require("@splunk/react-ui/Popover");
|
|
122
|
-
|
|
123
|
-
/***/ }),
|
|
124
|
-
|
|
125
|
-
/***/ 174:
|
|
118
|
+
/***/ 178:
|
|
126
119
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
127
120
|
|
|
128
121
|
"use strict";
|
|
@@ -141,7 +134,7 @@ var external_prop_types_ = __webpack_require__(1);
|
|
|
141
134
|
var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
|
|
142
135
|
|
|
143
136
|
// EXTERNAL MODULE: external "decimal.js-light"
|
|
144
|
-
var external_decimal_js_light_ = __webpack_require__(
|
|
137
|
+
var external_decimal_js_light_ = __webpack_require__(106);
|
|
145
138
|
var external_decimal_js_light_default = /*#__PURE__*/__webpack_require__.n(external_decimal_js_light_);
|
|
146
139
|
|
|
147
140
|
// EXTERNAL MODULE: external "lodash"
|
|
@@ -158,7 +151,7 @@ var EventListener_ = __webpack_require__(15);
|
|
|
158
151
|
var EventListener_default = /*#__PURE__*/__webpack_require__.n(EventListener_);
|
|
159
152
|
|
|
160
153
|
// EXTERNAL MODULE: external "@splunk/react-ui/Popover"
|
|
161
|
-
var Popover_ = __webpack_require__(
|
|
154
|
+
var Popover_ = __webpack_require__(18);
|
|
162
155
|
var Popover_default = /*#__PURE__*/__webpack_require__.n(Popover_);
|
|
163
156
|
|
|
164
157
|
// EXTERNAL MODULE: external "styled-components"
|
|
@@ -166,7 +159,7 @@ var external_styled_components_ = __webpack_require__(3);
|
|
|
166
159
|
var external_styled_components_default = /*#__PURE__*/__webpack_require__.n(external_styled_components_);
|
|
167
160
|
|
|
168
161
|
// EXTERNAL MODULE: external "tinycolor2"
|
|
169
|
-
var external_tinycolor2_ = __webpack_require__(
|
|
162
|
+
var external_tinycolor2_ = __webpack_require__(49);
|
|
170
163
|
var external_tinycolor2_default = /*#__PURE__*/__webpack_require__.n(external_tinycolor2_);
|
|
171
164
|
|
|
172
165
|
// EXTERNAL MODULE: external "@splunk/react-ui/Box"
|
|
@@ -766,6 +759,13 @@ SliderWithTheme.propTypes = Slider_Slider.propTypes;
|
|
|
766
759
|
|
|
767
760
|
|
|
768
761
|
|
|
762
|
+
/***/ }),
|
|
763
|
+
|
|
764
|
+
/***/ 18:
|
|
765
|
+
/***/ (function(module, exports) {
|
|
766
|
+
|
|
767
|
+
module.exports = require("@splunk/react-ui/Popover");
|
|
768
|
+
|
|
769
769
|
/***/ }),
|
|
770
770
|
|
|
771
771
|
/***/ 2:
|
|
@@ -789,7 +789,7 @@ module.exports = require("lodash");
|
|
|
789
789
|
|
|
790
790
|
/***/ }),
|
|
791
791
|
|
|
792
|
-
/***/
|
|
792
|
+
/***/ 49:
|
|
793
793
|
/***/ (function(module, exports) {
|
|
794
794
|
|
|
795
795
|
module.exports = require("tinycolor2");
|
package/SlidingPanels.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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 147);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -101,7 +101,7 @@ module.exports = require("prop-types");
|
|
|
101
101
|
|
|
102
102
|
/***/ }),
|
|
103
103
|
|
|
104
|
-
/***/
|
|
104
|
+
/***/ 10:
|
|
105
105
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
106
106
|
|
|
107
107
|
"use strict";
|
|
@@ -128,7 +128,7 @@ function updateReactRef(ref, current) {
|
|
|
128
128
|
|
|
129
129
|
/***/ }),
|
|
130
130
|
|
|
131
|
-
/***/
|
|
131
|
+
/***/ 147:
|
|
132
132
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
133
133
|
|
|
134
134
|
"use strict";
|
|
@@ -151,10 +151,10 @@ var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_pr
|
|
|
151
151
|
var external_lodash_ = __webpack_require__(4);
|
|
152
152
|
|
|
153
153
|
// EXTERNAL MODULE: external "react-spring"
|
|
154
|
-
var external_react_spring_ = __webpack_require__(
|
|
154
|
+
var external_react_spring_ = __webpack_require__(21);
|
|
155
155
|
|
|
156
156
|
// EXTERNAL MODULE: external "@splunk/react-ui/Animation"
|
|
157
|
-
var Animation_ = __webpack_require__(
|
|
157
|
+
var Animation_ = __webpack_require__(34);
|
|
158
158
|
|
|
159
159
|
// EXTERNAL MODULE: external "styled-components"
|
|
160
160
|
var external_styled_components_ = __webpack_require__(3);
|
|
@@ -182,7 +182,7 @@ var Styled = external_styled_components_default()(external_react_spring_["animat
|
|
|
182
182
|
})(["", ";", ";"], themes_["mixins"].reset('block'), themes_["mixins"].clearfix());
|
|
183
183
|
|
|
184
184
|
// EXTERNAL MODULE: ./src/utils/updateReactRef.ts
|
|
185
|
-
var updateReactRef = __webpack_require__(
|
|
185
|
+
var updateReactRef = __webpack_require__(10);
|
|
186
186
|
|
|
187
187
|
// CONCATENATED MODULE: ./src/SlidingPanels/Panel.tsx
|
|
188
188
|
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); }
|
|
@@ -588,17 +588,17 @@ SlidingPanels_defineProperty(SlidingPanels_SlidingPanels, "getDerivedStateFromPr
|
|
|
588
588
|
|
|
589
589
|
/***/ }),
|
|
590
590
|
|
|
591
|
-
/***/
|
|
591
|
+
/***/ 2:
|
|
592
592
|
/***/ (function(module, exports) {
|
|
593
593
|
|
|
594
|
-
module.exports = require("react
|
|
594
|
+
module.exports = require("react");
|
|
595
595
|
|
|
596
596
|
/***/ }),
|
|
597
597
|
|
|
598
|
-
/***/
|
|
598
|
+
/***/ 21:
|
|
599
599
|
/***/ (function(module, exports) {
|
|
600
600
|
|
|
601
|
-
module.exports = require("react");
|
|
601
|
+
module.exports = require("react-spring");
|
|
602
602
|
|
|
603
603
|
/***/ }),
|
|
604
604
|
|
|
@@ -609,7 +609,7 @@ module.exports = require("styled-components");
|
|
|
609
609
|
|
|
610
610
|
/***/ }),
|
|
611
611
|
|
|
612
|
-
/***/
|
|
612
|
+
/***/ 34:
|
|
613
613
|
/***/ (function(module, exports) {
|
|
614
614
|
|
|
615
615
|
module.exports = require("@splunk/react-ui/Animation");
|
package/SplitButton.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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 148);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -108,7 +108,7 @@ module.exports = require("@splunk/react-ui/Menu");
|
|
|
108
108
|
|
|
109
109
|
/***/ }),
|
|
110
110
|
|
|
111
|
-
/***/
|
|
111
|
+
/***/ 148:
|
|
112
112
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
113
113
|
|
|
114
114
|
"use strict";
|
|
@@ -128,11 +128,11 @@ var external_prop_types_ = __webpack_require__(1);
|
|
|
128
128
|
var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
|
|
129
129
|
|
|
130
130
|
// EXTERNAL MODULE: external "@splunk/react-icons/ChevronDown"
|
|
131
|
-
var ChevronDown_ = __webpack_require__(
|
|
131
|
+
var ChevronDown_ = __webpack_require__(51);
|
|
132
132
|
var ChevronDown_default = /*#__PURE__*/__webpack_require__.n(ChevronDown_);
|
|
133
133
|
|
|
134
134
|
// EXTERNAL MODULE: external "@splunk/react-ui/Dropdown"
|
|
135
|
-
var Dropdown_ = __webpack_require__(
|
|
135
|
+
var Dropdown_ = __webpack_require__(20);
|
|
136
136
|
var Dropdown_default = /*#__PURE__*/__webpack_require__.n(Dropdown_);
|
|
137
137
|
|
|
138
138
|
// EXTERNAL MODULE: external "@splunk/react-ui/Menu"
|
|
@@ -459,17 +459,17 @@ module.exports = require("@splunk/react-ui/Button");
|
|
|
459
459
|
|
|
460
460
|
/***/ }),
|
|
461
461
|
|
|
462
|
-
/***/
|
|
462
|
+
/***/ 2:
|
|
463
463
|
/***/ (function(module, exports) {
|
|
464
464
|
|
|
465
|
-
module.exports = require("
|
|
465
|
+
module.exports = require("react");
|
|
466
466
|
|
|
467
467
|
/***/ }),
|
|
468
468
|
|
|
469
|
-
/***/
|
|
469
|
+
/***/ 20:
|
|
470
470
|
/***/ (function(module, exports) {
|
|
471
471
|
|
|
472
|
-
module.exports = require("react");
|
|
472
|
+
module.exports = require("@splunk/react-ui/Dropdown");
|
|
473
473
|
|
|
474
474
|
/***/ }),
|
|
475
475
|
|
|
@@ -487,17 +487,17 @@ module.exports = require("lodash");
|
|
|
487
487
|
|
|
488
488
|
/***/ }),
|
|
489
489
|
|
|
490
|
-
/***/
|
|
490
|
+
/***/ 5:
|
|
491
491
|
/***/ (function(module, exports) {
|
|
492
492
|
|
|
493
|
-
module.exports = require("@splunk/
|
|
493
|
+
module.exports = require("@splunk/ui-utils/i18n");
|
|
494
494
|
|
|
495
495
|
/***/ }),
|
|
496
496
|
|
|
497
|
-
/***/
|
|
497
|
+
/***/ 51:
|
|
498
498
|
/***/ (function(module, exports) {
|
|
499
499
|
|
|
500
|
-
module.exports = require("@splunk/
|
|
500
|
+
module.exports = require("@splunk/react-icons/ChevronDown");
|
|
501
501
|
|
|
502
502
|
/***/ }),
|
|
503
503
|
|
package/StaticContent.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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 179);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -101,7 +101,7 @@ module.exports = require("prop-types");
|
|
|
101
101
|
|
|
102
102
|
/***/ }),
|
|
103
103
|
|
|
104
|
-
/***/
|
|
104
|
+
/***/ 179:
|
|
105
105
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
106
106
|
|
|
107
107
|
"use strict";
|
package/StepBar.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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 123);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -101,14 +101,14 @@ module.exports = require("prop-types");
|
|
|
101
101
|
|
|
102
102
|
/***/ }),
|
|
103
103
|
|
|
104
|
-
/***/
|
|
104
|
+
/***/ 11:
|
|
105
105
|
/***/ (function(module, exports) {
|
|
106
106
|
|
|
107
107
|
module.exports = require("@splunk/ui-utils/id");
|
|
108
108
|
|
|
109
109
|
/***/ }),
|
|
110
110
|
|
|
111
|
-
/***/
|
|
111
|
+
/***/ 123:
|
|
112
112
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
113
113
|
|
|
114
114
|
"use strict";
|
|
@@ -128,10 +128,10 @@ var external_prop_types_ = __webpack_require__(1);
|
|
|
128
128
|
var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
|
|
129
129
|
|
|
130
130
|
// EXTERNAL MODULE: external "@splunk/ui-utils/id"
|
|
131
|
-
var id_ = __webpack_require__(
|
|
131
|
+
var id_ = __webpack_require__(11);
|
|
132
132
|
|
|
133
133
|
// EXTERNAL MODULE: external "@splunk/themes/useSplunkTheme"
|
|
134
|
-
var useSplunkTheme_ = __webpack_require__(
|
|
134
|
+
var useSplunkTheme_ = __webpack_require__(42);
|
|
135
135
|
var useSplunkTheme_default = /*#__PURE__*/__webpack_require__.n(useSplunkTheme_);
|
|
136
136
|
|
|
137
137
|
// EXTERNAL MODULE: external "styled-components"
|
|
@@ -142,7 +142,7 @@ var external_styled_components_default = /*#__PURE__*/__webpack_require__.n(exte
|
|
|
142
142
|
var themes_ = __webpack_require__(0);
|
|
143
143
|
|
|
144
144
|
// EXTERNAL MODULE: external "@splunk/react-icons/Error"
|
|
145
|
-
var Error_ = __webpack_require__(
|
|
145
|
+
var Error_ = __webpack_require__(53);
|
|
146
146
|
var Error_default = /*#__PURE__*/__webpack_require__.n(Error_);
|
|
147
147
|
|
|
148
148
|
// EXTERNAL MODULE: ./src/icons/ThemedIcon.tsx
|
|
@@ -179,7 +179,7 @@ function AlertFilled(props) {
|
|
|
179
179
|
}, props));
|
|
180
180
|
}
|
|
181
181
|
// EXTERNAL MODULE: external "@splunk/react-icons/Success"
|
|
182
|
-
var Success_ = __webpack_require__(
|
|
182
|
+
var Success_ = __webpack_require__(54);
|
|
183
183
|
var Success_default = /*#__PURE__*/__webpack_require__.n(Success_);
|
|
184
184
|
|
|
185
185
|
// CONCATENATED MODULE: ./src/icons/Success.tsx
|
|
@@ -504,21 +504,21 @@ module.exports = require("styled-components");
|
|
|
504
504
|
|
|
505
505
|
/***/ }),
|
|
506
506
|
|
|
507
|
-
/***/
|
|
507
|
+
/***/ 42:
|
|
508
508
|
/***/ (function(module, exports) {
|
|
509
509
|
|
|
510
510
|
module.exports = require("@splunk/themes/useSplunkTheme");
|
|
511
511
|
|
|
512
512
|
/***/ }),
|
|
513
513
|
|
|
514
|
-
/***/
|
|
514
|
+
/***/ 53:
|
|
515
515
|
/***/ (function(module, exports) {
|
|
516
516
|
|
|
517
517
|
module.exports = require("@splunk/react-icons/Error");
|
|
518
518
|
|
|
519
519
|
/***/ }),
|
|
520
520
|
|
|
521
|
-
/***/
|
|
521
|
+
/***/ 54:
|
|
522
522
|
/***/ (function(module, exports) {
|
|
523
523
|
|
|
524
524
|
module.exports = require("@splunk/react-icons/Success");
|
package/Switch.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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 149);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -101,7 +101,7 @@ module.exports = require("prop-types");
|
|
|
101
101
|
|
|
102
102
|
/***/ }),
|
|
103
103
|
|
|
104
|
-
/***/
|
|
104
|
+
/***/ 11:
|
|
105
105
|
/***/ (function(module, exports) {
|
|
106
106
|
|
|
107
107
|
module.exports = require("@splunk/ui-utils/id");
|
|
@@ -122,7 +122,7 @@ module.exports = require("@splunk/react-ui/ScreenReaderContent");
|
|
|
122
122
|
|
|
123
123
|
/***/ }),
|
|
124
124
|
|
|
125
|
-
/***/
|
|
125
|
+
/***/ 149:
|
|
126
126
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
127
127
|
|
|
128
128
|
"use strict";
|
|
@@ -141,7 +141,7 @@ var external_prop_types_ = __webpack_require__(1);
|
|
|
141
141
|
var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
|
|
142
142
|
|
|
143
143
|
// EXTERNAL MODULE: external "@splunk/react-ui/AnimationToggle"
|
|
144
|
-
var AnimationToggle_ = __webpack_require__(
|
|
144
|
+
var AnimationToggle_ = __webpack_require__(38);
|
|
145
145
|
var AnimationToggle_default = /*#__PURE__*/__webpack_require__.n(AnimationToggle_);
|
|
146
146
|
|
|
147
147
|
// EXTERNAL MODULE: external "@splunk/react-ui/ScreenReaderContent"
|
|
@@ -149,10 +149,10 @@ var ScreenReaderContent_ = __webpack_require__(14);
|
|
|
149
149
|
var ScreenReaderContent_default = /*#__PURE__*/__webpack_require__.n(ScreenReaderContent_);
|
|
150
150
|
|
|
151
151
|
// EXTERNAL MODULE: external "@splunk/ui-utils/id"
|
|
152
|
-
var id_ = __webpack_require__(
|
|
152
|
+
var id_ = __webpack_require__(11);
|
|
153
153
|
|
|
154
154
|
// EXTERNAL MODULE: external "@splunk/react-icons/Check"
|
|
155
|
-
var Check_ = __webpack_require__(
|
|
155
|
+
var Check_ = __webpack_require__(50);
|
|
156
156
|
var Check_default = /*#__PURE__*/__webpack_require__.n(Check_);
|
|
157
157
|
|
|
158
158
|
// EXTERNAL MODULE: external "@splunk/themes"
|
|
@@ -740,14 +740,14 @@ module.exports = require("styled-components");
|
|
|
740
740
|
|
|
741
741
|
/***/ }),
|
|
742
742
|
|
|
743
|
-
/***/
|
|
743
|
+
/***/ 38:
|
|
744
744
|
/***/ (function(module, exports) {
|
|
745
745
|
|
|
746
746
|
module.exports = require("@splunk/react-ui/AnimationToggle");
|
|
747
747
|
|
|
748
748
|
/***/ }),
|
|
749
749
|
|
|
750
|
-
/***/
|
|
750
|
+
/***/ 50:
|
|
751
751
|
/***/ (function(module, exports) {
|
|
752
752
|
|
|
753
753
|
module.exports = require("@splunk/react-icons/Check");
|
package/TabBar.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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 132);
|
|
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("@splunk/ui-utils/id");
|
|
108
|
-
|
|
109
|
-
/***/ }),
|
|
110
|
-
|
|
111
|
-
/***/ 11:
|
|
112
105
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
113
106
|
|
|
114
107
|
"use strict";
|
|
@@ -133,6 +126,13 @@ function updateReactRef(ref, current) {
|
|
|
133
126
|
|
|
134
127
|
|
|
135
128
|
|
|
129
|
+
/***/ }),
|
|
130
|
+
|
|
131
|
+
/***/ 11:
|
|
132
|
+
/***/ (function(module, exports) {
|
|
133
|
+
|
|
134
|
+
module.exports = require("@splunk/ui-utils/id");
|
|
135
|
+
|
|
136
136
|
/***/ }),
|
|
137
137
|
|
|
138
138
|
/***/ 12:
|
|
@@ -142,7 +142,7 @@ module.exports = require("@splunk/react-ui/Clickable");
|
|
|
142
142
|
|
|
143
143
|
/***/ }),
|
|
144
144
|
|
|
145
|
-
/***/
|
|
145
|
+
/***/ 132:
|
|
146
146
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
147
147
|
|
|
148
148
|
"use strict";
|
|
@@ -195,10 +195,10 @@ var Styled = external_styled_components_default.a.div.withConfig({
|
|
|
195
195
|
}));
|
|
196
196
|
|
|
197
197
|
// EXTERNAL MODULE: external "@splunk/ui-utils/id"
|
|
198
|
-
var id_ = __webpack_require__(
|
|
198
|
+
var id_ = __webpack_require__(11);
|
|
199
199
|
|
|
200
200
|
// EXTERNAL MODULE: external "@splunk/react-ui/Popover"
|
|
201
|
-
var Popover_ = __webpack_require__(
|
|
201
|
+
var Popover_ = __webpack_require__(18);
|
|
202
202
|
var Popover_default = /*#__PURE__*/__webpack_require__.n(Popover_);
|
|
203
203
|
|
|
204
204
|
// EXTERNAL MODULE: external "@splunk/react-ui/ScreenReaderContent"
|
|
@@ -342,7 +342,7 @@ var StyledTooltipContent = external_styled_components_default.a.div.withConfig({
|
|
|
342
342
|
})(["padding:8px;font-size:", ";"], themes_["variables"].fontSizeSmall);
|
|
343
343
|
|
|
344
344
|
// EXTERNAL MODULE: ./src/utils/updateReactRef.ts
|
|
345
|
-
var updateReactRef = __webpack_require__(
|
|
345
|
+
var updateReactRef = __webpack_require__(10);
|
|
346
346
|
|
|
347
347
|
// CONCATENATED MODULE: ./src/TabBar/TabBarContext.tsx
|
|
348
348
|
|
|
@@ -587,7 +587,7 @@ _defineProperty(Tab_Tab, "contextType", TabBar_TabBarContext);
|
|
|
587
587
|
|
|
588
588
|
/* harmony default export */ var TabBar_Tab = (Tab_Tab);
|
|
589
589
|
// EXTERNAL MODULE: ./src/utils/navigateList.ts
|
|
590
|
-
var navigateList = __webpack_require__(
|
|
590
|
+
var navigateList = __webpack_require__(44);
|
|
591
591
|
|
|
592
592
|
// CONCATENATED MODULE: ./src/TabBar/TabBar.tsx
|
|
593
593
|
function TabBar_extends() { TabBar_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 TabBar_extends.apply(this, arguments); }
|
|
@@ -748,7 +748,7 @@ module.exports = require("@splunk/react-ui/ScreenReaderContent");
|
|
|
748
748
|
|
|
749
749
|
/***/ }),
|
|
750
750
|
|
|
751
|
-
/***/
|
|
751
|
+
/***/ 18:
|
|
752
752
|
/***/ (function(module, exports) {
|
|
753
753
|
|
|
754
754
|
module.exports = require("@splunk/react-ui/Popover");
|
|
@@ -769,7 +769,7 @@ module.exports = require("styled-components");
|
|
|
769
769
|
|
|
770
770
|
/***/ }),
|
|
771
771
|
|
|
772
|
-
/***/
|
|
772
|
+
/***/ 44:
|
|
773
773
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
774
774
|
|
|
775
775
|
"use strict";
|
package/TabLayout.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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 150);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -101,14 +101,14 @@ module.exports = require("prop-types");
|
|
|
101
101
|
|
|
102
102
|
/***/ }),
|
|
103
103
|
|
|
104
|
-
/***/
|
|
104
|
+
/***/ 11:
|
|
105
105
|
/***/ (function(module, exports) {
|
|
106
106
|
|
|
107
107
|
module.exports = require("@splunk/ui-utils/id");
|
|
108
108
|
|
|
109
109
|
/***/ }),
|
|
110
110
|
|
|
111
|
-
/***/
|
|
111
|
+
/***/ 150:
|
|
112
112
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
113
113
|
|
|
114
114
|
"use strict";
|
|
@@ -131,10 +131,10 @@ var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_pr
|
|
|
131
131
|
var external_lodash_ = __webpack_require__(4);
|
|
132
132
|
|
|
133
133
|
// EXTERNAL MODULE: external "@splunk/ui-utils/id"
|
|
134
|
-
var id_ = __webpack_require__(
|
|
134
|
+
var id_ = __webpack_require__(11);
|
|
135
135
|
|
|
136
136
|
// EXTERNAL MODULE: external "@splunk/react-ui/TabBar"
|
|
137
|
-
var TabBar_ = __webpack_require__(
|
|
137
|
+
var TabBar_ = __webpack_require__(85);
|
|
138
138
|
var TabBar_default = /*#__PURE__*/__webpack_require__.n(TabBar_);
|
|
139
139
|
|
|
140
140
|
// EXTERNAL MODULE: external "styled-components"
|
|
@@ -405,7 +405,7 @@ module.exports = require("lodash");
|
|
|
405
405
|
|
|
406
406
|
/***/ }),
|
|
407
407
|
|
|
408
|
-
/***/
|
|
408
|
+
/***/ 85:
|
|
409
409
|
/***/ (function(module, exports) {
|
|
410
410
|
|
|
411
411
|
module.exports = require("@splunk/react-ui/TabBar");
|