@elliemae/ds-indeterminate-progress-indicator 3.14.0-next.8 → 3.14.0-rc.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,61 @@
1
+ declare const DSIndeterminateProgressIndicator: {
2
+ ({ containerProps, title, complete, failed, processing, processingComplete, processingCompleteTitle, processingFail, processingFailTitle, animated, percent, lineOnly, }: {
3
+ containerProps: any;
4
+ title: any;
5
+ complete: any;
6
+ failed: any;
7
+ processing: any;
8
+ processingComplete: any;
9
+ processingCompleteTitle: any;
10
+ processingFail: any;
11
+ processingFailTitle: any;
12
+ animated: any;
13
+ percent: any;
14
+ lineOnly: any;
15
+ }): JSX.Element;
16
+ defaultProps: {
17
+ containerProps: {};
18
+ title: string;
19
+ complete: boolean;
20
+ failed: boolean;
21
+ processing: boolean;
22
+ processingComplete: boolean;
23
+ processingCompleteTitle: string;
24
+ processingFail: boolean;
25
+ processingFailTitle: string;
26
+ animated: boolean;
27
+ percent: number;
28
+ lineOnly: boolean;
29
+ };
30
+ propTypes: {
31
+ containerProps: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
32
+ title: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
33
+ processingCompleteTitle: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
34
+ processingFailTitle: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
35
+ complete: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
36
+ failed: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
37
+ processing: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
38
+ processingComplete: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
39
+ processingFail: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
40
+ animated: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
41
+ percent: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
42
+ lineOnly: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
43
+ };
44
+ displayName: string;
45
+ };
46
+ declare const IndeterminateProgressIndicatorWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<{
47
+ containerProps: any;
48
+ title: any;
49
+ complete: any;
50
+ failed: any;
51
+ processing: any;
52
+ processingComplete: any;
53
+ processingCompleteTitle: any;
54
+ processingFail: any;
55
+ processingFailTitle: any;
56
+ animated: any;
57
+ percent: any;
58
+ lineOnly: any;
59
+ }>;
60
+ export { DSIndeterminateProgressIndicator, IndeterminateProgressIndicatorWithSchema };
61
+ export default DSIndeterminateProgressIndicator;
@@ -0,0 +1,2 @@
1
+ export * from './DSIndeterminateProgressIndicator';
2
+ export { default } from './DSIndeterminateProgressIndicator';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-indeterminate-progress-indicator",
3
- "version": "3.14.0-next.8",
3
+ "version": "3.14.0-rc.0",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Indeterminate Progress Indicator",
6
6
  "files": [
@@ -39,9 +39,9 @@
39
39
  "indent": 4
40
40
  },
41
41
  "dependencies": {
42
- "@elliemae/ds-classnames": "3.14.0-next.8",
43
- "@elliemae/ds-truncated-tooltip-text": "3.14.0-next.8",
44
- "@elliemae/ds-utilities": "3.14.0-next.8"
42
+ "@elliemae/ds-classnames": "3.14.0-rc.0",
43
+ "@elliemae/ds-truncated-tooltip-text": "3.14.0-rc.0",
44
+ "@elliemae/ds-utilities": "3.14.0-rc.0"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "react": "^17.0.2",