@elliemae/ds-stepper 3.57.0-next.8 → 3.57.0-rc.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/types/styled.d.ts +0 -18
- package/package.json +27 -27
package/dist/types/styled.d.ts
CHANGED
|
@@ -8,15 +8,6 @@ interface StepProps {
|
|
|
8
8
|
export declare const Step: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StepProps & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
|
|
9
9
|
export declare const Label: import("styled-components").StyledComponent<{
|
|
10
10
|
(props: import("@elliemae/ds-truncated-tooltip-text").SimpleTruncatedTooltipTextProps): import("react/jsx-runtime.js").JSX.Element;
|
|
11
|
-
propTypes: {
|
|
12
|
-
containerProps: import("prop-types").Requireable<object>;
|
|
13
|
-
tooltipOptions: import("prop-types").Requireable<object>;
|
|
14
|
-
textOptions: import("prop-types").Requireable<object>;
|
|
15
|
-
value: import("prop-types").Requireable<NonNullable<import("prop-types").ReactNodeLike>>;
|
|
16
|
-
placement: import("prop-types").Requireable<string>;
|
|
17
|
-
tooltipDelay: import("prop-types").Requireable<number>;
|
|
18
|
-
zIndex: import("prop-types").Requireable<number>;
|
|
19
|
-
};
|
|
20
11
|
defaultProps: {
|
|
21
12
|
containerProps: {};
|
|
22
13
|
tooltipOptions: {};
|
|
@@ -27,15 +18,6 @@ export declare const Label: import("styled-components").StyledComponent<{
|
|
|
27
18
|
};
|
|
28
19
|
}, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<{
|
|
29
20
|
(props: import("@elliemae/ds-truncated-tooltip-text").SimpleTruncatedTooltipTextProps): import("react/jsx-runtime.js").JSX.Element;
|
|
30
|
-
propTypes: {
|
|
31
|
-
containerProps: import("prop-types").Requireable<object>;
|
|
32
|
-
tooltipOptions: import("prop-types").Requireable<object>;
|
|
33
|
-
textOptions: import("prop-types").Requireable<object>;
|
|
34
|
-
value: import("prop-types").Requireable<NonNullable<import("prop-types").ReactNodeLike>>;
|
|
35
|
-
placement: import("prop-types").Requireable<string>;
|
|
36
|
-
tooltipDelay: import("prop-types").Requireable<number>;
|
|
37
|
-
zIndex: import("prop-types").Requireable<number>;
|
|
38
|
-
};
|
|
39
21
|
defaultProps: {
|
|
40
22
|
containerProps: {};
|
|
41
23
|
tooltipOptions: {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-stepper",
|
|
3
|
-
"version": "3.57.0-
|
|
3
|
+
"version": "3.57.0-rc.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Stepper",
|
|
6
6
|
"files": [
|
|
@@ -35,39 +35,39 @@
|
|
|
35
35
|
"reportFile": "tests.xml",
|
|
36
36
|
"indent": 4
|
|
37
37
|
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"dev": "cross-env NODE_ENV=development node ../../../scripts/build/build.mjs --watch",
|
|
40
|
+
"test": "pui-cli test --passWithNoTests --coverage=\"false\"",
|
|
41
|
+
"lint": "node ../../../scripts/lint.mjs --fix",
|
|
42
|
+
"lint:strict": "node ../../../scripts/lint-strict.mjs",
|
|
43
|
+
"dts": "node ../../../scripts/dts.mjs",
|
|
44
|
+
"build": "cross-env NODE_ENV=production node ../../../scripts/build/build.mjs",
|
|
45
|
+
"checkDeps": "npm exec ../../util/ds-codemods -- check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
46
|
+
},
|
|
38
47
|
"dependencies": {
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"@elliemae/ds-
|
|
42
|
-
"@elliemae/ds-system": "3.57.0-
|
|
43
|
-
"@elliemae/ds-
|
|
44
|
-
"
|
|
45
|
-
"@elliemae/ds-truncated-tooltip-text": "3.57.0-next.8"
|
|
48
|
+
"@elliemae/ds-button-v2": "3.57.0-rc.0",
|
|
49
|
+
"@elliemae/ds-icons": "3.57.0-rc.0",
|
|
50
|
+
"@elliemae/ds-props-helpers": "3.57.0-rc.0",
|
|
51
|
+
"@elliemae/ds-system": "3.57.0-rc.0",
|
|
52
|
+
"@elliemae/ds-truncated-tooltip-text": "3.57.0-rc.0",
|
|
53
|
+
"uid": "catalog:"
|
|
46
54
|
},
|
|
47
55
|
"devDependencies": {
|
|
48
|
-
"@elliemae/
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
56
|
+
"@elliemae/ds-monorepo-devops": "3.57.0-rc.0",
|
|
57
|
+
"@elliemae/ds-test-utils": "3.57.0-rc.0",
|
|
58
|
+
"@elliemae/pui-cli": "catalog:",
|
|
59
|
+
"jest": "catalog:",
|
|
60
|
+
"styled-components": "catalog:"
|
|
53
61
|
},
|
|
54
62
|
"peerDependencies": {
|
|
55
|
-
"react": "
|
|
56
|
-
"react-dom": "
|
|
57
|
-
"styled-components": "
|
|
58
|
-
"styled-system": "
|
|
63
|
+
"react": "catalog:",
|
|
64
|
+
"react-dom": "catalog:",
|
|
65
|
+
"styled-components": "catalog:",
|
|
66
|
+
"styled-system": "catalog:"
|
|
59
67
|
},
|
|
60
68
|
"publishConfig": {
|
|
61
69
|
"access": "public",
|
|
62
70
|
"typeSafety": true
|
|
63
71
|
},
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
"test": "pui-cli test --passWithNoTests --coverage=\"false\"",
|
|
67
|
-
"lint": "node ../../../scripts/lint.mjs --fix",
|
|
68
|
-
"lint:strict": "node ../../../scripts/lint-strict.mjs",
|
|
69
|
-
"dts": "node ../../../scripts/dts.mjs",
|
|
70
|
-
"build": "cross-env NODE_ENV=production node ../../../scripts/build/build.mjs",
|
|
71
|
-
"checkDeps": "npm exec ../../util/ds-codemods -- check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
72
|
-
}
|
|
73
|
-
}
|
|
72
|
+
"gitHead": "7e95aacd3d36427e4659f360714c3e0bbc4378bc"
|
|
73
|
+
}
|