@elliemae/ds-circular-progress-indicator 2.3.0-alpha.8 → 2.3.0-alpha.9
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/types/DSCircularProgressIndicator.d.ts +42 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/tests/DSCircularProgressIndicator.test.d.ts +1 -0
- package/dist/types/v2/DSCircularIndeterminateIndicator.d.ts +9 -0
- package/dist/types/v2/index.d.ts +1 -0
- package/dist/types/v2/react-desc-prop-types.d.ts +32 -0
- package/package.json +3 -3
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/// <reference path="../../../../shared/typings/react-desc.d.ts" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
declare const CircularProgressIndicator: {
|
|
4
|
+
({ size, showLabel, showTooltip, waiting, loading }: {
|
|
5
|
+
size: any;
|
|
6
|
+
showLabel: any;
|
|
7
|
+
showTooltip: any;
|
|
8
|
+
waiting: any;
|
|
9
|
+
loading: any;
|
|
10
|
+
}): JSX.Element;
|
|
11
|
+
defaultProps: {
|
|
12
|
+
size: string;
|
|
13
|
+
showLabel: boolean;
|
|
14
|
+
showTooltip: boolean;
|
|
15
|
+
waiting: boolean;
|
|
16
|
+
loading: boolean;
|
|
17
|
+
};
|
|
18
|
+
propTypes: {
|
|
19
|
+
size: {
|
|
20
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
21
|
+
};
|
|
22
|
+
showLabel: {
|
|
23
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
24
|
+
};
|
|
25
|
+
showTooltip: {
|
|
26
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
27
|
+
};
|
|
28
|
+
waiting: {
|
|
29
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
30
|
+
};
|
|
31
|
+
loading: {
|
|
32
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
declare const CircularProgressIndicatorWithSchema: {
|
|
37
|
+
(props?: unknown): JSX.Element;
|
|
38
|
+
propTypes: unknown;
|
|
39
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
40
|
+
};
|
|
41
|
+
export { CircularProgressIndicatorWithSchema };
|
|
42
|
+
export default CircularProgressIndicator;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { DSCircularIndeterminateIndicatorT } from './react-desc-prop-types';
|
|
4
|
+
export declare const DSCircularIndeterminateIndicator: React.ComponentType<DSCircularIndeterminateIndicatorT.Props>;
|
|
5
|
+
export declare const DSCircularIndeterminateIndicatorWithSchema: {
|
|
6
|
+
(props?: unknown): JSX.Element;
|
|
7
|
+
propTypes: unknown;
|
|
8
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
9
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DSCircularIndeterminateIndicator, DSCircularIndeterminateIndicatorWithSchema, } from './DSCircularIndeterminateIndicator';
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
2
|
+
export declare namespace DSCircularIndeterminateIndicatorT {
|
|
3
|
+
interface Props {
|
|
4
|
+
size?: 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl';
|
|
5
|
+
color?: 'light' | 'dark';
|
|
6
|
+
text?: string;
|
|
7
|
+
showText?: boolean;
|
|
8
|
+
withTooltip: boolean;
|
|
9
|
+
tooltipStartPlacementPreference?: 'top-start' | 'top' | 'top-end' | 'right-start' | 'right' | 'right-end' | 'bottom-end' | 'bottom' | 'bottom-start' | 'left-end' | 'left' | 'left-start';
|
|
10
|
+
__duration: number;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
export declare const CircularIndeterminateIndicatorPropTypes: {
|
|
14
|
+
size: {
|
|
15
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
16
|
+
};
|
|
17
|
+
color: {
|
|
18
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
19
|
+
};
|
|
20
|
+
text: {
|
|
21
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
22
|
+
};
|
|
23
|
+
showText: {
|
|
24
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
25
|
+
};
|
|
26
|
+
withTooltip: {
|
|
27
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
28
|
+
};
|
|
29
|
+
tooltipStartPlacementPreference: {
|
|
30
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
31
|
+
};
|
|
32
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-circular-progress-indicator",
|
|
3
|
-
"version": "2.3.0-alpha.
|
|
3
|
+
"version": "2.3.0-alpha.9",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Circular progress indicator",
|
|
6
6
|
"files": [
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
},
|
|
46
46
|
"author": "ICE MT",
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@elliemae/ds-classnames": "2.3.0-alpha.
|
|
49
|
-
"@elliemae/ds-tooltip": "2.3.0-alpha.
|
|
48
|
+
"@elliemae/ds-classnames": "2.3.0-alpha.9",
|
|
49
|
+
"@elliemae/ds-tooltip": "2.3.0-alpha.9",
|
|
50
50
|
"react-desc": "~4.1.3"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|