@elliemae/ds-wizard 2.0.0-rc.6 → 2.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-wizard",
3
- "version": "2.0.0-rc.6",
3
+ "version": "2.0.0",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Wizard",
6
6
  "module": "./esm/index.js",
@@ -52,10 +52,11 @@
52
52
  "build": "node ../../scripts/build/build.js"
53
53
  },
54
54
  "dependencies": {
55
- "@elliemae/ds-basic": "2.0.0-rc.6",
56
- "@elliemae/ds-classnames": "2.0.0-rc.6",
57
- "@elliemae/ds-icons": "2.0.0-rc.6",
58
- "@elliemae/ds-utilities": "2.0.0-rc.6",
55
+ "@elliemae/ds-button": "2.0.0",
56
+ "@elliemae/ds-classnames": "2.0.0",
57
+ "@elliemae/ds-icons": "2.0.0",
58
+ "@elliemae/ds-utilities": "2.0.0",
59
+ "@elliemae/ds-wizard": "2.0.0",
59
60
  "prop-types": "~15.7.2",
60
61
  "react-desc": "~4.1.3"
61
62
  },
@@ -1,3 +1,4 @@
1
+ /// <reference path="../../../../shared/typings/react-desc.d.ts" />
1
2
  /// <reference types="react" />
2
3
  declare function WizardStep({ label, icon, iconCompleted, iconActive, active, completed, index, }: {
3
4
  label?: string | undefined;
@@ -10,15 +11,53 @@ declare function WizardStep({ label, icon, iconCompleted, iconActive, active, co
10
11
  }): JSX.Element;
11
12
  declare namespace WizardStep {
12
13
  var propTypes: {
13
- label: any;
14
- icon: any;
15
- iconCompleted: any;
16
- iconActive: any;
17
- active: any;
18
- completed: any;
19
- index: any;
14
+ label: {
15
+ defaultValue<T = unknown>(arg: T): {
16
+ deprecated: import("react-desc").PropTypesDescValidator;
17
+ };
18
+ isRequired: import("react-desc").PropTypesDescValidator;
19
+ };
20
+ icon: {
21
+ defaultValue<T = unknown>(arg: T): {
22
+ deprecated: import("react-desc").PropTypesDescValidator;
23
+ };
24
+ isRequired: import("react-desc").PropTypesDescValidator;
25
+ };
26
+ iconCompleted: {
27
+ deprecated: import("react-desc").PropTypesDescValidator;
28
+ };
29
+ iconActive: {
30
+ defaultValue<T = unknown>(arg: T): {
31
+ deprecated: import("react-desc").PropTypesDescValidator;
32
+ };
33
+ isRequired: import("react-desc").PropTypesDescValidator;
34
+ };
35
+ active: {
36
+ deprecated: import("react-desc").PropTypesDescValidator;
37
+ };
38
+ completed: {
39
+ deprecated: import("react-desc").PropTypesDescValidator;
40
+ };
41
+ index: {
42
+ defaultValue<T = unknown>(arg: T): {
43
+ deprecated: import("react-desc").PropTypesDescValidator;
44
+ };
45
+ isRequired: import("react-desc").PropTypesDescValidator;
46
+ };
20
47
  };
21
48
  }
22
- declare const WizzardStepWithSchema: any;
49
+ declare const WizzardStepWithSchema: {
50
+ (props?: {
51
+ label?: string | undefined;
52
+ icon?: null | undefined;
53
+ iconCompleted?: JSX.Element | undefined;
54
+ iconActive?: null | undefined;
55
+ active?: boolean | undefined;
56
+ completed?: boolean | undefined;
57
+ index?: number | undefined;
58
+ } | undefined): JSX.Element;
59
+ propTypes: unknown;
60
+ toTypescript: () => import("react-desc").TypescriptSchema;
61
+ };
23
62
  export { WizzardStepWithSchema };
24
63
  export default WizardStep;
@@ -1,3 +1,4 @@
1
+ /// <reference path="../../../../shared/typings/react-desc.d.ts" />
1
2
  /// <reference types="react" />
2
3
  import WizardStep from './WizardStep';
3
4
  declare function WizardSteps({ current, steps, children, ...otherProps }: {
@@ -9,11 +10,27 @@ declare function WizardSteps({ current, steps, children, ...otherProps }: {
9
10
  declare namespace WizardSteps {
10
11
  var Item: typeof WizardStep;
11
12
  var propTypes: {
12
- current: any;
13
+ current: {
14
+ deprecated: import("react-desc").PropTypesDescValidator;
15
+ };
13
16
  steps: any;
14
- children: any;
17
+ children: {
18
+ defaultValue<T = unknown>(arg: T): {
19
+ deprecated: import("react-desc").PropTypesDescValidator;
20
+ };
21
+ isRequired: import("react-desc").PropTypesDescValidator;
22
+ };
15
23
  };
16
24
  }
17
- declare const WizzardWithSchema: any;
25
+ declare const WizzardWithSchema: {
26
+ (props?: {
27
+ [x: string]: any;
28
+ current?: number | undefined;
29
+ steps: any;
30
+ children: any;
31
+ } | undefined): JSX.Element;
32
+ propTypes: unknown;
33
+ toTypescript: () => import("react-desc").TypescriptSchema;
34
+ };
18
35
  export { WizzardWithSchema };
19
36
  export default WizardSteps;