@splunk/react-ui 4.9.0 → 4.12.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/Accordion.js +4 -4
- package/Anchor.js +2 -2
- package/Animation.js +4 -4
- package/AnimationToggle.js +2 -2
- package/Box.js +2 -2
- package/Button.js +24 -48
- package/ButtonGroup.js +6 -27
- package/ButtonSimple.js +4 -4
- package/CHANGELOG.md +63 -6
- package/Calendar.js +39 -39
- package/Card.js +54 -68
- package/CardLayout.js +14 -35
- package/Chip.js +19 -19
- package/Clickable.js +28 -13
- package/CloseButton.js +15 -15
- package/Code.js +8 -5
- package/CollapsiblePanel.js +6 -6
- package/Color.js +21 -21
- package/ColumnLayout.js +7 -7
- package/ComboBox.js +19 -14
- package/Concertina.js +13 -13
- package/ControlGroup.js +28 -18
- package/Date.js +10 -10
- package/DefinitionList.js +2 -2
- package/Dropdown.js +6 -6
- package/EventListener.js +4 -4
- package/File.js +31 -31
- package/FormRows.js +11 -11
- package/Heading.js +2 -2
- package/Image.js +21 -21
- package/JSONTree.js +40 -22
- package/Layer.js +72 -22
- package/Link.js +9 -9
- package/List.js +2 -2
- package/Markdown.js +26 -29
- package/Menu.js +53 -53
- package/Message.js +33 -33
- package/MessageBar.js +46 -39
- package/Modal.js +8 -8
- package/ModalLayer.js +16 -7
- package/Monogram.js +27 -15
- package/Multiselect.js +101 -97
- package/Number.js +6 -6
- package/Paginator.js +46 -49
- package/Paragraph.js +2 -2
- package/Popover.js +18 -13
- package/Progress.js +8 -8
- package/RadioBar.js +145 -41
- package/RadioList.js +2 -2
- package/Resize.js +4 -4
- package/ResultsMenu.js +62 -41
- package/ScreenReaderContent.js +2 -2
- package/Scroll.js +6 -6
- package/ScrollContainerContext.js +2 -2
- package/Search.js +19 -18
- package/Select.js +81 -79
- package/SidePanel.js +4 -4
- package/Slider.js +8 -8
- package/SlidingPanels.js +16 -7
- package/StaticContent.js +2 -2
- package/StepBar.js +8 -8
- package/Switch.js +8 -8
- package/TabBar.js +15 -15
- package/TabLayout.js +4 -4
- package/Table.js +119 -92
- package/Text.js +121 -241
- package/TextArea.js +1444 -0
- package/Tooltip.js +17 -6
- package/TransitionOpen.js +20 -10
- package/Typography.js +225 -0
- package/WaitSpinner.js +4 -4
- package/cypress.json +1 -0
- package/package.json +21 -8
- package/stubs-splunkui.d.ts +13 -0
- package/test-runner-jest.config.js +38 -0
- package/types/src/Accordion/AccordionContext.d.ts +0 -1
- package/types/src/Button/Button.d.ts +0 -2
- package/types/src/ButtonGroup/ButtonGroupContext.d.ts +0 -1
- package/types/src/Card/Body.d.ts +6 -1
- package/types/src/Card/Card.d.ts +0 -2
- package/types/src/CardLayout/CardLayoutContext.d.ts +0 -1
- package/types/src/Clickable/Clickable.d.ts +5 -0
- package/types/src/ComboBox/ComboBox.d.ts +15 -5
- package/types/src/Concertina/ConcertinaContext.d.ts +0 -1
- package/types/src/ControlGroup/ControlGroup.d.ts +9 -2
- package/types/src/Date/Date.d.ts +3 -3
- package/types/src/File/FileContext.d.ts +0 -1
- package/types/src/FormRows/FormRows.d.ts +1 -1
- package/types/src/FormRows/FormRowsContext.d.ts +0 -1
- package/types/src/FormRows/Row.d.ts +1 -1
- package/types/src/JSONTree/JSONTree.d.ts +2 -2
- package/types/src/JSONTree/TreeNode.d.ts +1 -1
- package/types/src/JSONTree/docs/examples/WithShiftModifier.d.ts +1 -0
- package/types/src/Layer/LayerStack.d.ts +8 -2
- package/types/src/Markdown/Markdown.d.ts +2 -3
- package/types/src/Menu/MenuContext.d.ts +0 -1
- package/types/src/Modal/ModalContext.d.ts +0 -1
- package/types/src/ModalLayer/ModalLayer.d.ts +2 -0
- package/types/src/Monogram/Monogram.d.ts +2 -2
- package/types/src/Multiselect/Compact.d.ts +11 -4
- package/types/src/Multiselect/Multiselect.d.ts +14 -5
- package/types/src/Multiselect/Normal.d.ts +11 -4
- package/types/src/Number/Number.d.ts +3 -3
- package/types/src/Popover/Popover.d.ts +1 -0
- package/types/src/Popover/PopoverContext.d.ts +0 -1
- package/types/src/RadioBar/Option.d.ts +10 -2
- package/types/src/RadioBar/RadioBar.d.ts +4 -1
- package/types/src/RadioBar/RadioBarContext.d.ts +4 -2
- package/types/src/RadioList/RadioListContext.d.ts +0 -1
- package/types/src/ResultsMenu/ResultsMenu.d.ts +8 -2
- package/types/src/Search/Search.d.ts +4 -0
- package/types/src/Select/Select.d.ts +13 -4
- package/types/src/Select/SelectBase.d.ts +12 -4
- package/types/src/SidePanel/SidePanel.d.ts +2 -1
- package/types/src/Slider/Slider.d.ts +3 -3
- package/types/src/SlidingPanels/SlidingPanels.d.ts +2 -0
- package/types/src/StepBar/StepBarContext.d.ts +0 -1
- package/types/src/TabBar/TabBarContext.d.ts +0 -1
- package/types/src/Table/HeadCell.d.ts +7 -3
- package/types/src/Table/Table.d.ts +2 -3
- package/types/src/Table/TableContext.d.ts +5 -0
- package/types/src/Text/Text.d.ts +22 -12
- package/types/src/TextArea/TextArea.d.ts +190 -0
- package/types/src/TextArea/docs/examples/Basic.d.ts +2 -0
- package/types/src/TextArea/docs/examples/Disabled.d.ts +2 -0
- package/types/src/TextArea/docs/examples/Error.d.ts +2 -0
- package/types/src/TextArea/docs/examples/Inline.d.ts +2 -0
- package/types/src/TextArea/docs/examples/Uncontrolled.d.ts +2 -0
- package/types/src/TextArea/index.d.ts +2 -0
- package/types/src/{Text → TextArea}/syncHeightWithShadow.d.ts +1 -2
- package/types/src/Tooltip/Tooltip.d.ts +8 -5
- package/types/src/TransitionOpen/TransitionOpen.d.ts +3 -0
- package/types/src/TransitionOpen/index.d.ts +1 -0
- package/types/src/Typography/Typography.d.ts +78 -0
- package/types/src/Typography/docs/examples/Basic.d.ts +2 -0
- package/types/src/Typography/docs/examples/Variants.d.ts +2 -0
- package/types/src/Typography/index.d.ts +2 -0
- package/types/src/Typography/test/Typography.unit.d.ts +1 -0
- package/types/src/fixtures/FetchOptions.d.ts +82 -2
- package/usePrevious.js +2 -2
- package/FetchOptions.js +0 -359
- package/types/src/FetchOptions/FetchOptions.d.ts +0 -82
- package/types/src/FetchOptions/index.d.ts +0 -2
package/Concertina.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 = 120);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -102,13 +102,6 @@ module.exports = require("prop-types");
|
|
|
102
102
|
/***/ }),
|
|
103
103
|
|
|
104
104
|
/***/ 11:
|
|
105
|
-
/***/ (function(module, exports) {
|
|
106
|
-
|
|
107
|
-
module.exports = require("@splunk/react-ui/Clickable");
|
|
108
|
-
|
|
109
|
-
/***/ }),
|
|
110
|
-
|
|
111
|
-
/***/ 12:
|
|
112
105
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
113
106
|
|
|
114
107
|
"use strict";
|
|
@@ -135,7 +128,14 @@ function updateReactRef(ref, current) {
|
|
|
135
128
|
|
|
136
129
|
/***/ }),
|
|
137
130
|
|
|
138
|
-
/***/
|
|
131
|
+
/***/ 12:
|
|
132
|
+
/***/ (function(module, exports) {
|
|
133
|
+
|
|
134
|
+
module.exports = require("@splunk/react-ui/Clickable");
|
|
135
|
+
|
|
136
|
+
/***/ }),
|
|
137
|
+
|
|
138
|
+
/***/ 120:
|
|
139
139
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
140
140
|
|
|
141
141
|
"use strict";
|
|
@@ -166,7 +166,7 @@ var external_styled_components_ = __webpack_require__(3);
|
|
|
166
166
|
var external_styled_components_default = /*#__PURE__*/__webpack_require__.n(external_styled_components_);
|
|
167
167
|
|
|
168
168
|
// EXTERNAL MODULE: external "@splunk/react-ui/Clickable"
|
|
169
|
-
var Clickable_ = __webpack_require__(
|
|
169
|
+
var Clickable_ = __webpack_require__(12);
|
|
170
170
|
var Clickable_default = /*#__PURE__*/__webpack_require__.n(Clickable_);
|
|
171
171
|
|
|
172
172
|
// EXTERNAL MODULE: external "@splunk/themes"
|
|
@@ -338,7 +338,7 @@ var Box_ = __webpack_require__(8);
|
|
|
338
338
|
var Box_default = /*#__PURE__*/__webpack_require__.n(Box_);
|
|
339
339
|
|
|
340
340
|
// EXTERNAL MODULE: external "@splunk/react-ui/Scroll"
|
|
341
|
-
var Scroll_ = __webpack_require__(
|
|
341
|
+
var Scroll_ = __webpack_require__(66);
|
|
342
342
|
var Scroll_default = /*#__PURE__*/__webpack_require__.n(Scroll_);
|
|
343
343
|
|
|
344
344
|
// CONCATENATED MODULE: ./src/Concertina/ConcertinaStyles.ts
|
|
@@ -378,7 +378,7 @@ var StyledPanelBody = external_styled_components_default.a.div.withConfig({
|
|
|
378
378
|
}));
|
|
379
379
|
|
|
380
380
|
// EXTERNAL MODULE: ./src/utils/updateReactRef.ts
|
|
381
|
-
var updateReactRef = __webpack_require__(
|
|
381
|
+
var updateReactRef = __webpack_require__(11);
|
|
382
382
|
|
|
383
383
|
// CONCATENATED MODULE: ./src/Concertina/ConcertinaContext.tsx
|
|
384
384
|
|
|
@@ -897,7 +897,7 @@ module.exports = require("lodash");
|
|
|
897
897
|
|
|
898
898
|
/***/ }),
|
|
899
899
|
|
|
900
|
-
/***/
|
|
900
|
+
/***/ 66:
|
|
901
901
|
/***/ (function(module, exports) {
|
|
902
902
|
|
|
903
903
|
module.exports = require("@splunk/react-ui/Scroll");
|
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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 137);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -108,14 +108,7 @@ module.exports = require("@splunk/ui-utils/id");
|
|
|
108
108
|
|
|
109
109
|
/***/ }),
|
|
110
110
|
|
|
111
|
-
/***/
|
|
112
|
-
/***/ (function(module, exports) {
|
|
113
|
-
|
|
114
|
-
module.exports = require("@splunk/react-ui/ScreenReaderContent");
|
|
115
|
-
|
|
116
|
-
/***/ }),
|
|
117
|
-
|
|
118
|
-
/***/ 141:
|
|
111
|
+
/***/ 137:
|
|
119
112
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
120
113
|
|
|
121
114
|
"use strict";
|
|
@@ -152,7 +145,7 @@ var ScreenReaderContent_ = __webpack_require__(14);
|
|
|
152
145
|
var ScreenReaderContent_default = /*#__PURE__*/__webpack_require__.n(ScreenReaderContent_);
|
|
153
146
|
|
|
154
147
|
// EXTERNAL MODULE: external "@splunk/react-ui/Tooltip"
|
|
155
|
-
var Tooltip_ = __webpack_require__(
|
|
148
|
+
var Tooltip_ = __webpack_require__(49);
|
|
156
149
|
var Tooltip_default = /*#__PURE__*/__webpack_require__.n(Tooltip_);
|
|
157
150
|
|
|
158
151
|
// EXTERNAL MODULE: external "styled-components"
|
|
@@ -197,10 +190,16 @@ var StyledControlsStackBox = external_styled_components_default()(Box_default.a)
|
|
|
197
190
|
var StyledLabelWrapper = external_styled_components_default.a.div.withConfig({
|
|
198
191
|
displayName: "ControlGroupStyles__StyledLabelWrapper",
|
|
199
192
|
componentId: "wjnyif-2"
|
|
200
|
-
})(["display:inline-flex;align-items:center;", ""], Object(themes_["pick"])({
|
|
201
|
-
enterprise: Object(external_styled_components_["css"])(["justify-content:flex-end;"])
|
|
202
|
-
|
|
203
|
-
|
|
193
|
+
})(["display:inline-flex;align-items:center;", " ", ""], Object(themes_["pick"])({
|
|
194
|
+
enterprise: Object(external_styled_components_["css"])(["justify-content:flex-end;"])
|
|
195
|
+
}), function (_ref2) {
|
|
196
|
+
var $labelPosition = _ref2.$labelPosition;
|
|
197
|
+
return $labelPosition === 'top' ? Object(external_styled_components_["css"])(["", ""], Object(themes_["pick"])({
|
|
198
|
+
prisma: Object(external_styled_components_["css"])(["padding-bottom:", ";"], themes_["variables"].spacingXSmall)
|
|
199
|
+
})) : Object(external_styled_components_["css"])(["", ""], Object(themes_["pick"])({
|
|
200
|
+
prisma: Object(external_styled_components_["css"])(["min-height:", ";"], themes_["variables"].inputHeight)
|
|
201
|
+
}));
|
|
202
|
+
});
|
|
204
203
|
var StyledLabelWrapperLeft = external_styled_components_default()(StyledLabelWrapper).withConfig({
|
|
205
204
|
displayName: "ControlGroupStyles__StyledLabelWrapperLeft",
|
|
206
205
|
componentId: "wjnyif-3"
|
|
@@ -309,7 +308,8 @@ var propTypes = {
|
|
|
309
308
|
|
|
310
309
|
/** @private */
|
|
311
310
|
splunkTheme: external_prop_types_default.a.object,
|
|
312
|
-
tooltip: external_prop_types_default.a.node
|
|
311
|
+
tooltip: external_prop_types_default.a.node,
|
|
312
|
+
tooltipDefaultPlacement: external_prop_types_default.a.oneOf(['above', 'below', 'left', 'right', 'theme'])
|
|
313
313
|
};
|
|
314
314
|
var defaultProps = {
|
|
315
315
|
controlsLayout: 'fill',
|
|
@@ -485,7 +485,8 @@ var ControlGroup_ControlGroup = /*#__PURE__*/function (_Component) {
|
|
|
485
485
|
size = _this$props.size,
|
|
486
486
|
splunkTheme = _this$props.splunkTheme,
|
|
487
487
|
tooltip = _this$props.tooltip,
|
|
488
|
-
|
|
488
|
+
tooltipDefaultPlacement = _this$props.tooltipDefaultPlacement,
|
|
489
|
+
otherProps = _objectWithoutProperties(_this$props, ["children", "controlsLayout", "error", "help", "hideLabel", "label", "labelFor", "labelPosition", "labelWidth", "size", "splunkTheme", "tooltip", "tooltipDefaultPlacement"]);
|
|
489
490
|
|
|
490
491
|
var isPrisma = splunkTheme.isPrisma,
|
|
491
492
|
isCompact = splunkTheme.isCompact;
|
|
@@ -579,7 +580,8 @@ var ControlGroup_ControlGroup = /*#__PURE__*/function (_Component) {
|
|
|
579
580
|
var StyledControlsComponent = controlsLayout === 'stack' ? StyledControlsStackBox : Box_default.a;
|
|
580
581
|
var StyledLabelWrapperComponent = labelPosition === 'left' ? StyledLabelWrapperLeft : StyledLabelWrapper;
|
|
581
582
|
var styledLabel = /*#__PURE__*/external_react_default.a.createElement(StyledLabelWrapperComponent, {
|
|
582
|
-
style: labelWidthStyle
|
|
583
|
+
style: labelWidthStyle,
|
|
584
|
+
$labelPosition: labelPosition
|
|
583
585
|
}, /*#__PURE__*/external_react_default.a.createElement(StyledLabel, {
|
|
584
586
|
"data-size": size,
|
|
585
587
|
"data-test": "label",
|
|
@@ -588,6 +590,7 @@ var ControlGroup_ControlGroup = /*#__PURE__*/function (_Component) {
|
|
|
588
590
|
$tooltip: !!tooltip
|
|
589
591
|
}, label, !isPrisma && !hideLabel && tooltip && /*#__PURE__*/external_react_default.a.createElement("span", null, "\xA0"), !hideLabel && tooltip && /*#__PURE__*/external_react_default.a.createElement(ScreenReaderContent_default.a, null, tooltip)), !hideLabel && tooltip && /*#__PURE__*/external_react_default.a.createElement(Tooltip_default.a, {
|
|
590
592
|
content: tooltip,
|
|
593
|
+
defaultPlacement: tooltipDefaultPlacement,
|
|
591
594
|
"aria-hidden": "true"
|
|
592
595
|
}));
|
|
593
596
|
return /*#__PURE__*/external_react_default.a.createElement(StyledBox, _extends({
|
|
@@ -622,6 +625,13 @@ ControlGroupWithTheme.propTypes = ControlGroup_ControlGroup.propTypes;
|
|
|
622
625
|
|
|
623
626
|
|
|
624
627
|
|
|
628
|
+
/***/ }),
|
|
629
|
+
|
|
630
|
+
/***/ 14:
|
|
631
|
+
/***/ (function(module, exports) {
|
|
632
|
+
|
|
633
|
+
module.exports = require("@splunk/react-ui/ScreenReaderContent");
|
|
634
|
+
|
|
625
635
|
/***/ }),
|
|
626
636
|
|
|
627
637
|
/***/ 2:
|
|
@@ -645,7 +655,7 @@ module.exports = require("lodash");
|
|
|
645
655
|
|
|
646
656
|
/***/ }),
|
|
647
657
|
|
|
648
|
-
/***/
|
|
658
|
+
/***/ 49:
|
|
649
659
|
/***/ (function(module, exports) {
|
|
650
660
|
|
|
651
661
|
module.exports = require("@splunk/react-ui/Tooltip");
|
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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 138);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -108,7 +108,7 @@ module.exports = require("@splunk/ui-utils/id");
|
|
|
108
108
|
|
|
109
109
|
/***/ }),
|
|
110
110
|
|
|
111
|
-
/***/
|
|
111
|
+
/***/ 11:
|
|
112
112
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
113
113
|
|
|
114
114
|
"use strict";
|
|
@@ -135,7 +135,7 @@ function updateReactRef(ref, current) {
|
|
|
135
135
|
|
|
136
136
|
/***/ }),
|
|
137
137
|
|
|
138
|
-
/***/
|
|
138
|
+
/***/ 138:
|
|
139
139
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
140
140
|
|
|
141
141
|
"use strict";
|
|
@@ -158,7 +158,7 @@ var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_pr
|
|
|
158
158
|
var external_lodash_ = __webpack_require__(4);
|
|
159
159
|
|
|
160
160
|
// EXTERNAL MODULE: external "moment"
|
|
161
|
-
var external_moment_ = __webpack_require__(
|
|
161
|
+
var external_moment_ = __webpack_require__(22);
|
|
162
162
|
var external_moment_default = /*#__PURE__*/__webpack_require__.n(external_moment_);
|
|
163
163
|
|
|
164
164
|
// EXTERNAL MODULE: external "@splunk/ui-utils/id"
|
|
@@ -168,11 +168,11 @@ var id_ = __webpack_require__(10);
|
|
|
168
168
|
var keyboard_ = __webpack_require__(9);
|
|
169
169
|
|
|
170
170
|
// EXTERNAL MODULE: external "@splunk/react-ui/Calendar"
|
|
171
|
-
var Calendar_ = __webpack_require__(
|
|
171
|
+
var Calendar_ = __webpack_require__(85);
|
|
172
172
|
var Calendar_default = /*#__PURE__*/__webpack_require__.n(Calendar_);
|
|
173
173
|
|
|
174
174
|
// EXTERNAL MODULE: external "@splunk/react-ui/Popover"
|
|
175
|
-
var Popover_ = __webpack_require__(
|
|
175
|
+
var Popover_ = __webpack_require__(17);
|
|
176
176
|
var Popover_default = /*#__PURE__*/__webpack_require__.n(Popover_);
|
|
177
177
|
|
|
178
178
|
// EXTERNAL MODULE: external "@splunk/themes"
|
|
@@ -235,7 +235,7 @@ function CalendarIcon(props) {
|
|
|
235
235
|
}));
|
|
236
236
|
}
|
|
237
237
|
// EXTERNAL MODULE: ./src/utils/updateReactRef.ts
|
|
238
|
-
var updateReactRef = __webpack_require__(
|
|
238
|
+
var updateReactRef = __webpack_require__(11);
|
|
239
239
|
|
|
240
240
|
// CONCATENATED MODULE: ./src/Date/Date.tsx
|
|
241
241
|
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); }
|
|
@@ -576,7 +576,7 @@ DateWithTheme.momentFormat = _Date.momentFormat;
|
|
|
576
576
|
|
|
577
577
|
/***/ }),
|
|
578
578
|
|
|
579
|
-
/***/
|
|
579
|
+
/***/ 17:
|
|
580
580
|
/***/ (function(module, exports) {
|
|
581
581
|
|
|
582
582
|
module.exports = require("@splunk/react-ui/Popover");
|
|
@@ -590,7 +590,7 @@ module.exports = require("react");
|
|
|
590
590
|
|
|
591
591
|
/***/ }),
|
|
592
592
|
|
|
593
|
-
/***/
|
|
593
|
+
/***/ 22:
|
|
594
594
|
/***/ (function(module, exports) {
|
|
595
595
|
|
|
596
596
|
module.exports = require("moment");
|
|
@@ -618,7 +618,7 @@ module.exports = require("lodash");
|
|
|
618
618
|
|
|
619
619
|
/***/ }),
|
|
620
620
|
|
|
621
|
-
/***/
|
|
621
|
+
/***/ 85:
|
|
622
622
|
/***/ (function(module, exports) {
|
|
623
623
|
|
|
624
624
|
module.exports = require("@splunk/react-ui/Calendar");
|
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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 121);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -101,7 +101,7 @@ module.exports = require("prop-types");
|
|
|
101
101
|
|
|
102
102
|
/***/ }),
|
|
103
103
|
|
|
104
|
-
/***/
|
|
104
|
+
/***/ 121:
|
|
105
105
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
106
106
|
|
|
107
107
|
"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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 176);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -101,7 +101,7 @@ module.exports = require("@splunk/ui-utils/id");
|
|
|
101
101
|
|
|
102
102
|
/***/ }),
|
|
103
103
|
|
|
104
|
-
/***/
|
|
104
|
+
/***/ 11:
|
|
105
105
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
106
106
|
|
|
107
107
|
"use strict";
|
|
@@ -128,14 +128,14 @@ function updateReactRef(ref, current) {
|
|
|
128
128
|
|
|
129
129
|
/***/ }),
|
|
130
130
|
|
|
131
|
-
/***/
|
|
131
|
+
/***/ 17:
|
|
132
132
|
/***/ (function(module, exports) {
|
|
133
133
|
|
|
134
134
|
module.exports = require("@splunk/react-ui/Popover");
|
|
135
135
|
|
|
136
136
|
/***/ }),
|
|
137
137
|
|
|
138
|
-
/***/
|
|
138
|
+
/***/ 176:
|
|
139
139
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
140
140
|
|
|
141
141
|
"use strict";
|
|
@@ -161,11 +161,11 @@ var external_lodash_ = __webpack_require__(4);
|
|
|
161
161
|
var id_ = __webpack_require__(10);
|
|
162
162
|
|
|
163
163
|
// EXTERNAL MODULE: external "@splunk/react-ui/Popover"
|
|
164
|
-
var Popover_ = __webpack_require__(
|
|
164
|
+
var Popover_ = __webpack_require__(17);
|
|
165
165
|
var Popover_default = /*#__PURE__*/__webpack_require__.n(Popover_);
|
|
166
166
|
|
|
167
167
|
// EXTERNAL MODULE: ./src/utils/updateReactRef.ts
|
|
168
|
-
var updateReactRef = __webpack_require__(
|
|
168
|
+
var updateReactRef = __webpack_require__(11);
|
|
169
169
|
|
|
170
170
|
// CONCATENATED MODULE: ./src/Dropdown/Dropdown.tsx
|
|
171
171
|
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); }
|
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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 177);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -94,7 +94,7 @@ module.exports = require("prop-types");
|
|
|
94
94
|
|
|
95
95
|
/***/ }),
|
|
96
96
|
|
|
97
|
-
/***/
|
|
97
|
+
/***/ 177:
|
|
98
98
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
99
99
|
|
|
100
100
|
"use strict";
|
|
@@ -113,7 +113,7 @@ var external_prop_types_ = __webpack_require__(1);
|
|
|
113
113
|
var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
|
|
114
114
|
|
|
115
115
|
// EXTERNAL MODULE: external "use-typed-event-listener"
|
|
116
|
-
var external_use_typed_event_listener_ = __webpack_require__(
|
|
116
|
+
var external_use_typed_event_listener_ = __webpack_require__(86);
|
|
117
117
|
var external_use_typed_event_listener_default = /*#__PURE__*/__webpack_require__.n(external_use_typed_event_listener_);
|
|
118
118
|
|
|
119
119
|
// CONCATENATED MODULE: ./src/EventListener/EventListener.tsx
|
|
@@ -158,7 +158,7 @@ module.exports = require("react");
|
|
|
158
158
|
|
|
159
159
|
/***/ }),
|
|
160
160
|
|
|
161
|
-
/***/
|
|
161
|
+
/***/ 86:
|
|
162
162
|
/***/ (function(module, exports) {
|
|
163
163
|
|
|
164
164
|
module.exports = require("use-typed-event-listener");
|
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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 113);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -108,14 +108,7 @@ module.exports = require("@splunk/ui-utils/id");
|
|
|
108
108
|
|
|
109
109
|
/***/ }),
|
|
110
110
|
|
|
111
|
-
/***/
|
|
112
|
-
/***/ (function(module, exports) {
|
|
113
|
-
|
|
114
|
-
module.exports = require("@splunk/react-ui/Clickable");
|
|
115
|
-
|
|
116
|
-
/***/ }),
|
|
117
|
-
|
|
118
|
-
/***/ 117:
|
|
111
|
+
/***/ 113:
|
|
119
112
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
120
113
|
|
|
121
114
|
"use strict";
|
|
@@ -151,14 +144,14 @@ var i18n_ = __webpack_require__(5);
|
|
|
151
144
|
var id_ = __webpack_require__(10);
|
|
152
145
|
|
|
153
146
|
// EXTERNAL MODULE: external "@splunk/ui-utils/format"
|
|
154
|
-
var format_ = __webpack_require__(
|
|
147
|
+
var format_ = __webpack_require__(43);
|
|
155
148
|
|
|
156
149
|
// EXTERNAL MODULE: external "@splunk/react-ui/Progress"
|
|
157
|
-
var Progress_ = __webpack_require__(
|
|
150
|
+
var Progress_ = __webpack_require__(87);
|
|
158
151
|
var Progress_default = /*#__PURE__*/__webpack_require__.n(Progress_);
|
|
159
152
|
|
|
160
153
|
// EXTERNAL MODULE: ./src/icons/CrossMark.tsx
|
|
161
|
-
var CrossMark = __webpack_require__(
|
|
154
|
+
var CrossMark = __webpack_require__(19);
|
|
162
155
|
|
|
163
156
|
// EXTERNAL MODULE: external "@splunk/react-icons/SVG"
|
|
164
157
|
var SVG_ = __webpack_require__(24);
|
|
@@ -238,11 +231,11 @@ var Box_ = __webpack_require__(8);
|
|
|
238
231
|
var Box_default = /*#__PURE__*/__webpack_require__.n(Box_);
|
|
239
232
|
|
|
240
233
|
// EXTERNAL MODULE: external "@splunk/react-ui/Clickable"
|
|
241
|
-
var Clickable_ = __webpack_require__(
|
|
234
|
+
var Clickable_ = __webpack_require__(12);
|
|
242
235
|
var Clickable_default = /*#__PURE__*/__webpack_require__.n(Clickable_);
|
|
243
236
|
|
|
244
237
|
// EXTERNAL MODULE: external "@splunk/themes/mixins"
|
|
245
|
-
var mixins_ = __webpack_require__(
|
|
238
|
+
var mixins_ = __webpack_require__(56);
|
|
246
239
|
|
|
247
240
|
// CONCATENATED MODULE: ./src/File/ItemStyles.ts
|
|
248
241
|
|
|
@@ -972,7 +965,7 @@ var File_File = /*#__PURE__*/function (_Component) {
|
|
|
972
965
|
onChange: this.handleInputChange,
|
|
973
966
|
onFocus: this.handleInputFocus,
|
|
974
967
|
type: "file"
|
|
975
|
-
}), !disabled && Object(i18n_["_"])('upload file'))), supportsMessage), !disabled && help && /*#__PURE__*/external_react_default.a.createElement(StyledHelp, {
|
|
968
|
+
}), !disabled && Object(i18n_["_"])('upload file…'))), supportsMessage), !disabled && help && /*#__PURE__*/external_react_default.a.createElement(StyledHelp, {
|
|
976
969
|
"data-test": "help"
|
|
977
970
|
}, help), dragOverNotDisabled && this.state.dragOver && /*#__PURE__*/external_react_default.a.createElement(StyledWindowDrop, {
|
|
978
971
|
"data-test": "file-window-drop",
|
|
@@ -1016,28 +1009,28 @@ HoistedFileWithTheme.Item = File_Item;
|
|
|
1016
1009
|
|
|
1017
1010
|
/***/ }),
|
|
1018
1011
|
|
|
1019
|
-
/***/
|
|
1012
|
+
/***/ 12:
|
|
1020
1013
|
/***/ (function(module, exports) {
|
|
1021
1014
|
|
|
1022
|
-
module.exports = require("@splunk/react-ui/
|
|
1015
|
+
module.exports = require("@splunk/react-ui/Clickable");
|
|
1023
1016
|
|
|
1024
1017
|
/***/ }),
|
|
1025
1018
|
|
|
1026
|
-
/***/
|
|
1019
|
+
/***/ 15:
|
|
1027
1020
|
/***/ (function(module, exports) {
|
|
1028
1021
|
|
|
1029
|
-
module.exports = require("react");
|
|
1022
|
+
module.exports = require("@splunk/react-ui/EventListener");
|
|
1030
1023
|
|
|
1031
1024
|
/***/ }),
|
|
1032
1025
|
|
|
1033
|
-
/***/
|
|
1026
|
+
/***/ 19:
|
|
1034
1027
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1035
1028
|
|
|
1036
1029
|
"use strict";
|
|
1037
1030
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return CrossMark; });
|
|
1038
1031
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
|
|
1039
1032
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
1040
|
-
/* harmony import */ var _splunk_react_icons_Close__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
1033
|
+
/* harmony import */ var _splunk_react_icons_Close__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(21);
|
|
1041
1034
|
/* harmony import */ var _splunk_react_icons_Close__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_splunk_react_icons_Close__WEBPACK_IMPORTED_MODULE_1__);
|
|
1042
1035
|
/* harmony import */ var _ThemedIcon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7);
|
|
1043
1036
|
/* harmony import */ var _SVG__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(6);
|
|
@@ -1080,7 +1073,14 @@ function CrossMark(props) {
|
|
|
1080
1073
|
|
|
1081
1074
|
/***/ }),
|
|
1082
1075
|
|
|
1083
|
-
/***/
|
|
1076
|
+
/***/ 2:
|
|
1077
|
+
/***/ (function(module, exports) {
|
|
1078
|
+
|
|
1079
|
+
module.exports = require("react");
|
|
1080
|
+
|
|
1081
|
+
/***/ }),
|
|
1082
|
+
|
|
1083
|
+
/***/ 21:
|
|
1084
1084
|
/***/ (function(module, exports) {
|
|
1085
1085
|
|
|
1086
1086
|
module.exports = require("@splunk/react-icons/Close");
|
|
@@ -1108,7 +1108,7 @@ module.exports = require("lodash");
|
|
|
1108
1108
|
|
|
1109
1109
|
/***/ }),
|
|
1110
1110
|
|
|
1111
|
-
/***/
|
|
1111
|
+
/***/ 43:
|
|
1112
1112
|
/***/ (function(module, exports) {
|
|
1113
1113
|
|
|
1114
1114
|
module.exports = require("@splunk/ui-utils/format");
|
|
@@ -1122,6 +1122,13 @@ module.exports = require("@splunk/ui-utils/i18n");
|
|
|
1122
1122
|
|
|
1123
1123
|
/***/ }),
|
|
1124
1124
|
|
|
1125
|
+
/***/ 56:
|
|
1126
|
+
/***/ (function(module, exports) {
|
|
1127
|
+
|
|
1128
|
+
module.exports = require("@splunk/themes/mixins");
|
|
1129
|
+
|
|
1130
|
+
/***/ }),
|
|
1131
|
+
|
|
1125
1132
|
/***/ 6:
|
|
1126
1133
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1127
1134
|
|
|
@@ -1272,18 +1279,11 @@ module.exports = require("@splunk/react-ui/Box");
|
|
|
1272
1279
|
|
|
1273
1280
|
/***/ }),
|
|
1274
1281
|
|
|
1275
|
-
/***/
|
|
1282
|
+
/***/ 87:
|
|
1276
1283
|
/***/ (function(module, exports) {
|
|
1277
1284
|
|
|
1278
1285
|
module.exports = require("@splunk/react-ui/Progress");
|
|
1279
1286
|
|
|
1280
|
-
/***/ }),
|
|
1281
|
-
|
|
1282
|
-
/***/ 90:
|
|
1283
|
-
/***/ (function(module, exports) {
|
|
1284
|
-
|
|
1285
|
-
module.exports = require("@splunk/themes/mixins");
|
|
1286
|
-
|
|
1287
1287
|
/***/ })
|
|
1288
1288
|
|
|
1289
1289
|
/******/ });
|
package/FormRows.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 = 122);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -101,7 +101,7 @@ module.exports = require("prop-types");
|
|
|
101
101
|
|
|
102
102
|
/***/ }),
|
|
103
103
|
|
|
104
|
-
/***/
|
|
104
|
+
/***/ 122:
|
|
105
105
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
106
106
|
|
|
107
107
|
"use strict";
|
|
@@ -127,7 +127,7 @@ var i18n_ = __webpack_require__(5);
|
|
|
127
127
|
var keyboard_ = __webpack_require__(9);
|
|
128
128
|
|
|
129
129
|
// EXTERNAL MODULE: external "@splunk/react-icons/Plus"
|
|
130
|
-
var Plus_ = __webpack_require__(
|
|
130
|
+
var Plus_ = __webpack_require__(88);
|
|
131
131
|
var Plus_default = /*#__PURE__*/__webpack_require__.n(Plus_);
|
|
132
132
|
|
|
133
133
|
// EXTERNAL MODULE: ./src/icons/ThemedIcon.tsx
|
|
@@ -180,7 +180,7 @@ var external_react_sortable_hoc_ = __webpack_require__(79);
|
|
|
180
180
|
var external_lodash_ = __webpack_require__(4);
|
|
181
181
|
|
|
182
182
|
// EXTERNAL MODULE: external "@splunk/react-ui/CloseButton"
|
|
183
|
-
var CloseButton_ = __webpack_require__(
|
|
183
|
+
var CloseButton_ = __webpack_require__(67);
|
|
184
184
|
var CloseButton_default = /*#__PURE__*/__webpack_require__.n(CloseButton_);
|
|
185
185
|
|
|
186
186
|
// EXTERNAL MODULE: external "@splunk/react-ui/ScreenReaderContent"
|
|
@@ -196,7 +196,7 @@ var Box_ = __webpack_require__(8);
|
|
|
196
196
|
var Box_default = /*#__PURE__*/__webpack_require__.n(Box_);
|
|
197
197
|
|
|
198
198
|
// EXTERNAL MODULE: external "@splunk/react-ui/Button"
|
|
199
|
-
var Button_ = __webpack_require__(
|
|
199
|
+
var Button_ = __webpack_require__(16);
|
|
200
200
|
var Button_default = /*#__PURE__*/__webpack_require__.n(Button_);
|
|
201
201
|
|
|
202
202
|
// EXTERNAL MODULE: external "@splunk/themes"
|
|
@@ -712,7 +712,7 @@ module.exports = require("@splunk/react-ui/ScreenReaderContent");
|
|
|
712
712
|
|
|
713
713
|
/***/ }),
|
|
714
714
|
|
|
715
|
-
/***/
|
|
715
|
+
/***/ 16:
|
|
716
716
|
/***/ (function(module, exports) {
|
|
717
717
|
|
|
718
718
|
module.exports = require("@splunk/react-ui/Button");
|
|
@@ -772,7 +772,7 @@ function SVG(props) {
|
|
|
772
772
|
|
|
773
773
|
/***/ }),
|
|
774
774
|
|
|
775
|
-
/***/
|
|
775
|
+
/***/ 67:
|
|
776
776
|
/***/ (function(module, exports) {
|
|
777
777
|
|
|
778
778
|
module.exports = require("@splunk/react-ui/CloseButton");
|
|
@@ -911,17 +911,17 @@ module.exports = require("@splunk/react-ui/Box");
|
|
|
911
911
|
|
|
912
912
|
/***/ }),
|
|
913
913
|
|
|
914
|
-
/***/
|
|
914
|
+
/***/ 88:
|
|
915
915
|
/***/ (function(module, exports) {
|
|
916
916
|
|
|
917
|
-
module.exports = require("@splunk/
|
|
917
|
+
module.exports = require("@splunk/react-icons/Plus");
|
|
918
918
|
|
|
919
919
|
/***/ }),
|
|
920
920
|
|
|
921
|
-
/***/
|
|
921
|
+
/***/ 9:
|
|
922
922
|
/***/ (function(module, exports) {
|
|
923
923
|
|
|
924
|
-
module.exports = require("@splunk/
|
|
924
|
+
module.exports = require("@splunk/ui-utils/keyboard");
|
|
925
925
|
|
|
926
926
|
/***/ })
|
|
927
927
|
|
package/Heading.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 = 156);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -101,7 +101,7 @@ module.exports = require("prop-types");
|
|
|
101
101
|
|
|
102
102
|
/***/ }),
|
|
103
103
|
|
|
104
|
-
/***/
|
|
104
|
+
/***/ 156:
|
|
105
105
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
106
106
|
|
|
107
107
|
"use strict";
|