@splunk/react-ui 4.28.2 → 4.29.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/CHANGELOG.md +13 -0
- package/Chip.js +160 -151
- package/ComboBox.js +1 -1
- package/MIGRATION.mdx +90 -0
- package/Multiselect.js +43 -42
- package/Paginator.js +291 -402
- package/WaitSpinner.js +17 -16
- package/package.json +2 -2
- package/types/src/Chip/docs/examples/RemovableWithNonStringChildren.d.ts +2 -0
- package/types/src/Markdown/Markdown.d.ts +1 -1
- package/types/src/MessageBar/docs/examples/Basic.d.ts +2 -0
- package/types/src/Paginator/Button.d.ts +14 -9
- package/types/src/WaitSpinner/WaitSpinner.d.ts +1 -0
package/WaitSpinner.js
CHANGED
|
@@ -77,16 +77,16 @@
|
|
|
77
77
|
const l = require("@splunk/ui-utils/i18n");
|
|
78
78
|
// CONCATENATED MODULE: external "styled-components"
|
|
79
79
|
const c = require("styled-components");
|
|
80
|
-
var
|
|
80
|
+
var f = e.n(c);
|
|
81
81
|
// CONCATENATED MODULE: ./src/WaitSpinner/WaitSpinnerStyles.ts
|
|
82
|
-
var
|
|
82
|
+
var m = f().div.withConfig({
|
|
83
83
|
displayName: "WaitSpinnerStyles__Styled",
|
|
84
84
|
componentId: "sc-1nu971z-0"
|
|
85
85
|
})([ "", ";align-items:center;" ], o.mixins.reset("inline-flex"));
|
|
86
|
-
var
|
|
86
|
+
var p = (0, c.keyframes)([ "100%{transform:rotate(360deg);}" ]);
|
|
87
87
|
var d = (0, c.keyframes)([ "0%{transform:scale(0);opacity:0;}100%{transform:scale(1);opacity:1;}" ]);
|
|
88
88
|
var u = "2.07s";
|
|
89
|
-
var y =
|
|
89
|
+
var y = f().svg.withConfig({
|
|
90
90
|
displayName: "WaitSpinnerStyles__StyledSvg",
|
|
91
91
|
componentId: "sc-1nu971z-1"
|
|
92
92
|
})([ "", " ", "" ], (0, o.pickVariant)("$size", {
|
|
@@ -105,20 +105,20 @@
|
|
|
105
105
|
}), (function(e) {
|
|
106
106
|
var t = e.$animated;
|
|
107
107
|
return t && (0, o.pick)({
|
|
108
|
-
enterprise: (0, c.css)([ "transform-origin:center;animation:", " 1.2s steps(64) infinite;" ],
|
|
109
|
-
prisma: (0, c.css)([ "animation:", " ", " infinite linear,", " 500ms cubic-bezier(0.01,0,0,1);" ],
|
|
108
|
+
enterprise: (0, c.css)([ "transform-origin:center;animation:", " 1.2s steps(64) infinite;" ], p),
|
|
109
|
+
prisma: (0, c.css)([ "animation:", " ", " infinite linear,", " 500ms cubic-bezier(0.01,0,0,1);" ], p, u, d)
|
|
110
110
|
});
|
|
111
111
|
}));
|
|
112
112
|
var h = (0, c.keyframes)([ "0%{stroke-dasharray:110 10;stroke-dashoffset:-5.5;animation-timing-function:cubic-bezier(0.8,0,0.83,1);}50%{stroke-dasharray:26 94;stroke-dashoffset:-152;}100%{stroke-dasharray:110 10;stroke-dashoffset:-246.5;animation-timing-function:cubic-bezier(0.33,0,0.67,1);}" ]);
|
|
113
113
|
var v = (0, c.keyframes)([ "0%{stroke-dasharray:7 113;stroke-dashoffset:3;animation-timing-function:cubic-bezier(0.8,0,0.83,1);}50%{stroke-dasharray:90 30;stroke-dashoffset:-60;}100%{stroke-dasharray:7 113;stroke-dashoffset:-238;animation-timing-function:cubic-bezier(0.33,0,0.67,1);}" ]);
|
|
114
|
-
var g =
|
|
114
|
+
var g = f().circle.withConfig({
|
|
115
115
|
displayName: "WaitSpinnerStyles__StyledPrismaBasePath",
|
|
116
116
|
componentId: "sc-1nu971z-2"
|
|
117
117
|
})([ "stroke:", ";stroke-width:2;fill:transparent;", " stroke-dasharray:110 10;stroke-dashoffset:-5.5;" ], o.variables.contentColorDisabled, (function(e) {
|
|
118
118
|
var t = e.$animated;
|
|
119
119
|
return t && (0, c.css)([ "animation:", " ", " infinite;animation-fill-mode:backwards;" ], h, u);
|
|
120
120
|
}));
|
|
121
|
-
var k =
|
|
121
|
+
var k = f().circle.withConfig({
|
|
122
122
|
displayName: "WaitSpinnerStyles__StyledPrismaFillPath",
|
|
123
123
|
componentId: "sc-1nu971z-3"
|
|
124
124
|
})([ "fill:transparent;stroke-width:2;stroke:", ";stroke-dasharray:7 113;stroke-dashoffset:3;", "" ], (0,
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
var t = e.$animated;
|
|
131
131
|
return t && (0, c.css)([ "animation:", " ", " infinite;" ], v, u);
|
|
132
132
|
}));
|
|
133
|
-
var b =
|
|
133
|
+
var b = f().circle.withConfig({
|
|
134
134
|
displayName: "WaitSpinnerStyles__StyledEnterpriseCircle",
|
|
135
135
|
componentId: "sc-1nu971z-4"
|
|
136
136
|
})([ "fill:transparent;stroke:", ";stroke-width:2px;", "" ], (0, o.pick)({
|
|
@@ -190,32 +190,33 @@
|
|
|
190
190
|
size: a().oneOf([ "small", "medium", "large" ])
|
|
191
191
|
};
|
|
192
192
|
function z(e) {
|
|
193
|
-
var t = e.elementRef, r = e.screenReaderText, n = r === void 0 ? (0, l._)("Waiting") : r, a = e.size, c = a === void 0 ? "small" : a,
|
|
193
|
+
var t = e.elementRef, r = e.screenReaderText, n = r === void 0 ? (0, l._)("Waiting") : r, a = e.size, c = a === void 0 ? "small" : a, f = x(e, [ "elementRef", "screenReaderText", "size" ]);
|
|
194
194
|
// @docs-props-type WaitSpinnerPropsBase
|
|
195
|
-
|
|
195
|
+
if (false) {}
|
|
196
|
+
var p = (0, s.useAnimationToggle)() === "on";
|
|
196
197
|
var d = (0, o.useSplunkTheme)(), u = d.isPrisma;
|
|
197
198
|
var h = u ? "0 0 40 40" : "0 0 19 19";
|
|
198
199
|
|
|
199
|
-
return i().createElement(
|
|
200
|
+
return i().createElement(m, w({
|
|
200
201
|
"data-test": "wait-spinner"
|
|
201
|
-
},
|
|
202
|
+
}, f), i().createElement(y, {
|
|
202
203
|
viewBox: h,
|
|
203
204
|
version: "1.1",
|
|
204
205
|
xmlns: "http://www.w3.org/2000/svg",
|
|
205
206
|
ref: t,
|
|
206
|
-
$animated:
|
|
207
|
+
$animated: p,
|
|
207
208
|
$size: c
|
|
208
209
|
}, n && i().createElement("title", null, n), i().createElement("g", null, u ? i().createElement(i().Fragment, null, i().createElement(g, {
|
|
209
210
|
r: "19",
|
|
210
211
|
cx: "20",
|
|
211
212
|
cy: "20",
|
|
212
|
-
$animated:
|
|
213
|
+
$animated: p,
|
|
213
214
|
$size: c
|
|
214
215
|
}), i().createElement(k, {
|
|
215
216
|
r: "19",
|
|
216
217
|
cx: "20",
|
|
217
218
|
cy: "20",
|
|
218
|
-
$animated:
|
|
219
|
+
$animated: p,
|
|
219
220
|
$size: c
|
|
220
221
|
})) : i().createElement(b, {
|
|
221
222
|
cx: "9.5",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splunk/react-ui",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.29.0",
|
|
4
4
|
"description": "Library of React components that implement the Splunk design language",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Splunk Inc.",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@dnd-kit/core": "6.0.8",
|
|
43
43
|
"@dnd-kit/sortable": "7.0.2",
|
|
44
44
|
"@dnd-kit/utilities": "3.2.1",
|
|
45
|
-
"@splunk/react-icons": "^4.
|
|
45
|
+
"@splunk/react-icons": "^4.4.0",
|
|
46
46
|
"@splunk/themes": "^0.17.0",
|
|
47
47
|
"@splunk/ui-utils": "^1.6.0",
|
|
48
48
|
"commonmark": "^0.30.0",
|
|
@@ -76,7 +76,7 @@ interface MarkdownPropsBase {
|
|
|
76
76
|
codeRenderer?: CodeRenderer;
|
|
77
77
|
/**
|
|
78
78
|
* A custom code block renderer. The function is passed an object containing `language`,
|
|
79
|
-
* `literal`, and `nodeKey`.
|
|
79
|
+
* `literal`, and `nodeKey`. It supports the same languages as used in the `Code` component.
|
|
80
80
|
*/
|
|
81
81
|
codeBlockRenderer?: CodeBlockRenderer;
|
|
82
82
|
/**
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React
|
|
2
|
-
import
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
import { ComponentProps } from '../utils/types';
|
|
3
4
|
declare type PaginatorButtonClickHandler = (event: React.MouseEvent<HTMLButtonElement>, data: {
|
|
4
5
|
page?: number;
|
|
5
6
|
}) => void;
|
|
@@ -16,13 +17,17 @@ interface PaginatorButtonPropsBase {
|
|
|
16
17
|
/** @private */
|
|
17
18
|
selected?: boolean;
|
|
18
19
|
}
|
|
19
|
-
declare
|
|
20
|
-
declare
|
|
21
|
-
declare
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
20
|
+
declare type PaginatorButtonProps = ComponentProps<PaginatorButtonPropsBase, 'button'>;
|
|
21
|
+
declare function PaginatorButton({ children, disabled, onClick, page, selected, ...otherProps }: PaginatorButtonProps): JSX.Element;
|
|
22
|
+
declare namespace PaginatorButton {
|
|
23
|
+
var propTypes: {
|
|
24
|
+
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
25
|
+
disabled: PropTypes.Requireable<string | boolean>;
|
|
26
|
+
onClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
27
|
+
page: PropTypes.Requireable<number>;
|
|
28
|
+
/** @private */
|
|
29
|
+
selected: PropTypes.Requireable<boolean>;
|
|
30
|
+
};
|
|
26
31
|
}
|
|
27
32
|
export default PaginatorButton;
|
|
28
33
|
export { PaginatorButtonClickHandler };
|
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import { ComponentProps } from '../utils/types';
|
|
4
4
|
interface WaitSpinnerPropsBase {
|
|
5
|
+
/** @deprecated This prop is deprecated and will be removed in the next major version. */
|
|
5
6
|
children?: never;
|
|
6
7
|
/**
|
|
7
8
|
* A React ref which is set to the DOM element when the component mounts and null when it unmounts.
|