@zendeskgarden/react-loaders 9.2.0 → 9.3.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/dist/esm/elements/Progress.js +1 -1
- package/dist/esm/styled/StyledInline.js +1 -1
- package/dist/esm/styled/StyledLoadingPlaceholder.js +1 -1
- package/dist/esm/styled/StyledProgress.js +2 -2
- package/dist/esm/styled/StyledSVG.js +1 -1
- package/dist/esm/styled/StyledSkeleton.js +1 -1
- package/dist/index.cjs.js +7 -7
- package/dist/typings/styled/StyledDots.d.ts +15 -18
- package/dist/typings/styled/StyledInline.d.ts +6 -7
- package/dist/typings/styled/StyledLoadingPlaceholder.d.ts +3 -5
- package/dist/typings/styled/StyledProgress.d.ts +6 -3
- package/dist/typings/styled/StyledSVG.d.ts +3 -2
- package/dist/typings/styled/StyledSkeleton.d.ts +3 -5
- package/dist/typings/styled/StyledSpinnerCircle.d.ts +3 -1
- package/dist/typings/utils/animations.d.ts +3 -3
- package/package.json +4 -4
|
@@ -32,7 +32,7 @@ const Progress = React.forwardRef((_ref, ref) => {
|
|
|
32
32
|
return (
|
|
33
33
|
React.createElement(StyledProgressBackground, Object.assign({
|
|
34
34
|
"data-garden-id": COMPONENT_ID,
|
|
35
|
-
"data-garden-version": '9.
|
|
35
|
+
"data-garden-version": '9.3.0',
|
|
36
36
|
"aria-valuemax": 100,
|
|
37
37
|
"aria-valuemin": 0,
|
|
38
38
|
"aria-valuenow": percentage,
|
|
@@ -38,7 +38,7 @@ const StyledCircle = styled.circle.attrs({
|
|
|
38
38
|
})([""]);
|
|
39
39
|
const StyledInline = styled.svg.attrs(props => ({
|
|
40
40
|
'data-garden-id': COMPONENT_ID,
|
|
41
|
-
'data-garden-version': '9.
|
|
41
|
+
'data-garden-version': '9.3.0',
|
|
42
42
|
viewBox: '0 0 16 4',
|
|
43
43
|
width: props.$size,
|
|
44
44
|
height: props.$size * 0.25
|
|
@@ -10,7 +10,7 @@ import { retrieveComponentStyles } from '@zendeskgarden/react-theming';
|
|
|
10
10
|
const COMPONENT_ID = 'loaders.loading_placeholder';
|
|
11
11
|
const StyledLoadingPlaceholder = styled.div.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.
|
|
13
|
+
'data-garden-version': '9.3.0',
|
|
14
14
|
role: 'progressbar'
|
|
15
15
|
}).withConfig({
|
|
16
16
|
displayName: "StyledLoadingPlaceholder",
|
|
@@ -55,7 +55,7 @@ const colorStyles = _ref => {
|
|
|
55
55
|
};
|
|
56
56
|
const StyledProgressBackground = styled.div.attrs({
|
|
57
57
|
'data-garden-id': PROGRESS_BACKGROUND_COMPONENT_ID,
|
|
58
|
-
'data-garden-version': '9.
|
|
58
|
+
'data-garden-version': '9.3.0'
|
|
59
59
|
}).withConfig({
|
|
60
60
|
displayName: "StyledProgress__StyledProgressBackground",
|
|
61
61
|
componentId: "sc-2g8w4s-0"
|
|
@@ -63,7 +63,7 @@ const StyledProgressBackground = styled.div.attrs({
|
|
|
63
63
|
const PROGESS_INDICATOR_COMPONENT_ID = 'loaders.progress_indicator';
|
|
64
64
|
const StyledProgressIndicator = styled.div.attrs({
|
|
65
65
|
'data-garden-id': PROGESS_INDICATOR_COMPONENT_ID,
|
|
66
|
-
'data-garden-version': '9.
|
|
66
|
+
'data-garden-version': '9.3.0'
|
|
67
67
|
}).withConfig({
|
|
68
68
|
displayName: "StyledProgress__StyledProgressIndicator",
|
|
69
69
|
componentId: "sc-2g8w4s-1"
|
|
@@ -22,7 +22,7 @@ const colorStyles = _ref => {
|
|
|
22
22
|
return css(["color:", ";"], getColor(options));
|
|
23
23
|
};
|
|
24
24
|
const StyledSVG = styled.svg.attrs(props => ({
|
|
25
|
-
'data-garden-version': '9.
|
|
25
|
+
'data-garden-version': '9.3.0',
|
|
26
26
|
xmlns: 'http://www.w3.org/2000/svg',
|
|
27
27
|
focusable: 'false',
|
|
28
28
|
viewBox: `0 0 ${props.$width} ${props.$height}`,
|
|
@@ -52,7 +52,7 @@ const gradientStyles = props => {
|
|
|
52
52
|
};
|
|
53
53
|
const StyledSkeleton = styled.div.attrs({
|
|
54
54
|
'data-garden-id': COMPONENT_ID,
|
|
55
|
-
'data-garden-version': '9.
|
|
55
|
+
'data-garden-version': '9.3.0'
|
|
56
56
|
}).withConfig({
|
|
57
57
|
displayName: "StyledSkeleton",
|
|
58
58
|
componentId: "sc-1raozze-0"
|
package/dist/index.cjs.js
CHANGED
|
@@ -54,7 +54,7 @@ const StyledDotsCircleThree = styled__default.default(StyledDotsCircle).attrs(()
|
|
|
54
54
|
const COMPONENT_ID$5 = 'loaders.loading_placeholder';
|
|
55
55
|
const StyledLoadingPlaceholder = styled__default.default.div.attrs({
|
|
56
56
|
'data-garden-id': COMPONENT_ID$5,
|
|
57
|
-
'data-garden-version': '9.
|
|
57
|
+
'data-garden-version': '9.3.0',
|
|
58
58
|
role: 'progressbar'
|
|
59
59
|
}).withConfig({
|
|
60
60
|
displayName: "StyledLoadingPlaceholder",
|
|
@@ -109,7 +109,7 @@ const colorStyles$2 = _ref => {
|
|
|
109
109
|
};
|
|
110
110
|
const StyledProgressBackground = styled__default.default.div.attrs({
|
|
111
111
|
'data-garden-id': PROGRESS_BACKGROUND_COMPONENT_ID,
|
|
112
|
-
'data-garden-version': '9.
|
|
112
|
+
'data-garden-version': '9.3.0'
|
|
113
113
|
}).withConfig({
|
|
114
114
|
displayName: "StyledProgress__StyledProgressBackground",
|
|
115
115
|
componentId: "sc-2g8w4s-0"
|
|
@@ -117,7 +117,7 @@ const StyledProgressBackground = styled__default.default.div.attrs({
|
|
|
117
117
|
const PROGESS_INDICATOR_COMPONENT_ID = 'loaders.progress_indicator';
|
|
118
118
|
const StyledProgressIndicator = styled__default.default.div.attrs({
|
|
119
119
|
'data-garden-id': PROGESS_INDICATOR_COMPONENT_ID,
|
|
120
|
-
'data-garden-version': '9.
|
|
120
|
+
'data-garden-version': '9.3.0'
|
|
121
121
|
}).withConfig({
|
|
122
122
|
displayName: "StyledProgress__StyledProgressIndicator",
|
|
123
123
|
componentId: "sc-2g8w4s-1"
|
|
@@ -168,7 +168,7 @@ const gradientStyles = props => {
|
|
|
168
168
|
};
|
|
169
169
|
const StyledSkeleton = styled__default.default.div.attrs({
|
|
170
170
|
'data-garden-id': COMPONENT_ID$4,
|
|
171
|
-
'data-garden-version': '9.
|
|
171
|
+
'data-garden-version': '9.3.0'
|
|
172
172
|
}).withConfig({
|
|
173
173
|
displayName: "StyledSkeleton",
|
|
174
174
|
componentId: "sc-1raozze-0"
|
|
@@ -204,7 +204,7 @@ const colorStyles$1 = _ref => {
|
|
|
204
204
|
return styled.css(["color:", ";"], reactTheming.getColor(options));
|
|
205
205
|
};
|
|
206
206
|
const StyledSVG = styled__default.default.svg.attrs(props => ({
|
|
207
|
-
'data-garden-version': '9.
|
|
207
|
+
'data-garden-version': '9.3.0',
|
|
208
208
|
xmlns: 'http://www.w3.org/2000/svg',
|
|
209
209
|
focusable: 'false',
|
|
210
210
|
viewBox: `0 0 ${props.$width} ${props.$height}`,
|
|
@@ -245,7 +245,7 @@ const StyledCircle = styled__default.default.circle.attrs({
|
|
|
245
245
|
})([""]);
|
|
246
246
|
const StyledInline = styled__default.default.svg.attrs(props => ({
|
|
247
247
|
'data-garden-id': COMPONENT_ID$3,
|
|
248
|
-
'data-garden-version': '9.
|
|
248
|
+
'data-garden-version': '9.3.0',
|
|
249
249
|
viewBox: '0 0 16 4',
|
|
250
250
|
width: props.$size,
|
|
251
251
|
height: props.$size * 0.25
|
|
@@ -345,7 +345,7 @@ const Progress = React__default.default.forwardRef((_ref, ref) => {
|
|
|
345
345
|
return (
|
|
346
346
|
React__default.default.createElement(StyledProgressBackground, Object.assign({
|
|
347
347
|
"data-garden-id": COMPONENT_ID$1,
|
|
348
|
-
"data-garden-version": '9.
|
|
348
|
+
"data-garden-version": '9.3.0',
|
|
349
349
|
"aria-valuemax": 100,
|
|
350
350
|
"aria-valuemin": 0,
|
|
351
351
|
"aria-valuenow": percentage,
|
|
@@ -7,22 +7,19 @@
|
|
|
7
7
|
interface IStyledDotProps {
|
|
8
8
|
$duration: number;
|
|
9
9
|
}
|
|
10
|
-
export declare const StyledDotsCircleOne: import("styled-components").
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
} &
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
} & {
|
|
26
|
-
cx: 71;
|
|
27
|
-
} & IStyledDotProps, "cx" | "cy" | "r">;
|
|
10
|
+
export declare const StyledDotsCircleOne: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").SVGProps<SVGCircleElement>, Omit<import("react").SVGProps<SVGCircleElement>, "ref"> & {
|
|
11
|
+
ref?: ((instance: SVGCircleElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<SVGCircleElement> | null | undefined;
|
|
12
|
+
}>, never>, never>, import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").SVGProps<SVGCircleElement>, Omit<import("react").SVGProps<SVGCircleElement>, "ref"> & {
|
|
13
|
+
ref?: ((instance: SVGCircleElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<SVGCircleElement> | null | undefined;
|
|
14
|
+
}>, never>, never>>, never>, IStyledDotProps>> & string;
|
|
15
|
+
export declare const StyledDotsCircleTwo: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").SVGProps<SVGCircleElement>, Omit<import("react").SVGProps<SVGCircleElement>, "ref"> & {
|
|
16
|
+
ref?: ((instance: SVGCircleElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<SVGCircleElement> | null | undefined;
|
|
17
|
+
}>, never>, never>, import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").SVGProps<SVGCircleElement>, Omit<import("react").SVGProps<SVGCircleElement>, "ref"> & {
|
|
18
|
+
ref?: ((instance: SVGCircleElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<SVGCircleElement> | null | undefined;
|
|
19
|
+
}>, never>, never>>, never>, IStyledDotProps>> & string;
|
|
20
|
+
export declare const StyledDotsCircleThree: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").SVGProps<SVGCircleElement>, Omit<import("react").SVGProps<SVGCircleElement>, "ref"> & {
|
|
21
|
+
ref?: ((instance: SVGCircleElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<SVGCircleElement> | null | undefined;
|
|
22
|
+
}>, never>, never>, import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").SVGProps<SVGCircleElement>, Omit<import("react").SVGProps<SVGCircleElement>, "ref"> & {
|
|
23
|
+
ref?: ((instance: SVGCircleElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<SVGCircleElement> | null | undefined;
|
|
24
|
+
}>, never>, never>>, never>, IStyledDotProps>> & string;
|
|
28
25
|
export {};
|
|
@@ -4,15 +4,14 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
import { DefaultTheme } from 'styled-components';
|
|
8
7
|
interface IStyledInlineProps {
|
|
9
8
|
$size: number;
|
|
10
9
|
$color: string;
|
|
11
10
|
}
|
|
12
|
-
export declare const StyledCircle: import("styled-components").
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
export declare const StyledCircle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").SVGProps<SVGCircleElement>, Omit<import("react").SVGProps<SVGCircleElement>, "ref"> & {
|
|
12
|
+
ref?: ((instance: SVGCircleElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<SVGCircleElement> | null | undefined;
|
|
13
|
+
}>, never>, never>> & string;
|
|
14
|
+
export declare const StyledInline: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").SVGProps<SVGSVGElement>, Omit<import("react").SVGProps<SVGSVGElement>, "ref"> & {
|
|
15
|
+
ref?: ((instance: SVGSVGElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<SVGSVGElement> | null | undefined;
|
|
16
|
+
}>, IStyledInlineProps>, IStyledInlineProps>> & string;
|
|
18
17
|
export {};
|
|
@@ -9,9 +9,7 @@ interface IStyledLoadingPlaceholderProps {
|
|
|
9
9
|
width?: string;
|
|
10
10
|
height?: string;
|
|
11
11
|
}
|
|
12
|
-
export declare const StyledLoadingPlaceholder: import("styled-components").
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
role: "progressbar";
|
|
16
|
-
} & IStyledLoadingPlaceholderProps, "role" | "data-garden-id" | "data-garden-version">;
|
|
12
|
+
export declare const StyledLoadingPlaceholder: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
13
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
14
|
+
}>, never>, IStyledLoadingPlaceholderProps>> & string;
|
|
17
15
|
export {};
|
|
@@ -4,16 +4,19 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
import { DefaultTheme } from 'styled-components';
|
|
8
7
|
import { Size } from '../types';
|
|
9
8
|
interface IStyledProgressBackgroundProps {
|
|
10
9
|
$size: Size;
|
|
11
10
|
$color?: string;
|
|
12
11
|
}
|
|
13
|
-
export declare const StyledProgressBackground: import("styled-components").
|
|
12
|
+
export declare const StyledProgressBackground: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
13
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
14
|
+
}>, IStyledProgressBackgroundProps>, IStyledProgressBackgroundProps>> & string;
|
|
14
15
|
interface IStyledProgressIndicatorProps {
|
|
15
16
|
$size: Size;
|
|
16
17
|
$value: number;
|
|
17
18
|
}
|
|
18
|
-
export declare const StyledProgressIndicator: import("styled-components").
|
|
19
|
+
export declare const StyledProgressIndicator: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
20
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
21
|
+
}>, IStyledProgressIndicatorProps>, IStyledProgressIndicatorProps>> & string;
|
|
19
22
|
export {};
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
import { DefaultTheme } from 'styled-components';
|
|
8
7
|
interface IStyledSVGProps {
|
|
9
8
|
'data-garden-id': string;
|
|
10
9
|
$color?: string;
|
|
@@ -14,5 +13,7 @@ interface IStyledSVGProps {
|
|
|
14
13
|
$containerWidth?: string;
|
|
15
14
|
$containerHeight?: string;
|
|
16
15
|
}
|
|
17
|
-
export declare const StyledSVG: import("styled-components").
|
|
16
|
+
export declare const StyledSVG: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").SVGProps<SVGSVGElement>, Omit<import("react").SVGProps<SVGSVGElement>, "ref"> & {
|
|
17
|
+
ref?: ((instance: SVGSVGElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<SVGSVGElement> | null | undefined;
|
|
18
|
+
}>, IStyledSVGProps>, IStyledSVGProps>> & string;
|
|
18
19
|
export {};
|
|
@@ -4,14 +4,12 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
import { DefaultTheme } from 'styled-components';
|
|
8
7
|
interface IStyledSkeletonProps {
|
|
9
8
|
$height?: string;
|
|
10
9
|
$width?: string;
|
|
11
10
|
$isLight?: boolean;
|
|
12
11
|
}
|
|
13
|
-
export declare const StyledSkeleton: import("styled-components").
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
} & IStyledSkeletonProps, "data-garden-id" | "data-garden-version">;
|
|
12
|
+
export declare const StyledSkeleton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
13
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
14
|
+
}>, never>, IStyledSkeletonProps>> & string;
|
|
17
15
|
export {};
|
|
@@ -9,5 +9,7 @@ interface IStyledSpinnerCircleProps {
|
|
|
9
9
|
$strokeWidthValue: number;
|
|
10
10
|
transform: string;
|
|
11
11
|
}
|
|
12
|
-
export declare const StyledSpinnerCircle: import("styled-components").
|
|
12
|
+
export declare const StyledSpinnerCircle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").SVGProps<SVGCircleElement>, Omit<import("react").SVGProps<SVGCircleElement>, "ref"> & {
|
|
13
|
+
ref?: ((instance: SVGCircleElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<SVGCircleElement> | null | undefined;
|
|
14
|
+
}>, IStyledSpinnerCircleProps>, IStyledSpinnerCircleProps>> & string;
|
|
13
15
|
export {};
|
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
export declare const dotOneKeyframes: import("styled-components").
|
|
8
|
-
export declare const dotTwoKeyframes: import("styled-components").
|
|
9
|
-
export declare const dotThreeKeyframes: import("styled-components").
|
|
7
|
+
export declare const dotOneKeyframes: import("styled-components/dist/models/Keyframes").default;
|
|
8
|
+
export declare const dotTwoKeyframes: import("styled-components/dist/models/Keyframes").default;
|
|
9
|
+
export declare const dotThreeKeyframes: import("styled-components/dist/models/Keyframes").default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zendeskgarden/react-loaders",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.3.0",
|
|
4
4
|
"description": "Components relating to loaders in the Garden Design System",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Zendesk Garden <garden@zendesk.com>",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"@zendeskgarden/react-theming": ">=9.0.0",
|
|
30
30
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
31
31
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
32
|
-
"styled-components": "^5.3.1"
|
|
32
|
+
"styled-components": "^5.3.1 || ^6.0.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@zendeskgarden/react-theming": "^9.
|
|
35
|
+
"@zendeskgarden/react-theming": "^9.3.0"
|
|
36
36
|
},
|
|
37
37
|
"keywords": [
|
|
38
38
|
"components",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
46
|
"zendeskgarden:src": "src/index.ts",
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "fa6461e0d9fae27956980056006e8013daedc6b9"
|
|
48
48
|
}
|