@elliemae/ds-stepper 3.18.0-next.1 → 3.18.0-next.2
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 +4 -4
- package/package.json +8 -8
package/dist/types/styled.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import type { DSStepperInternalsT } from './props.js';
|
|
3
|
-
export declare const StepperWrapper: import("styled-components").StyledComponent<
|
|
3
|
+
export declare const StepperWrapper: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, DSStepperInternalsT.StepperPropsT & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
4
4
|
interface StepProps {
|
|
5
5
|
active: boolean;
|
|
6
6
|
visited: boolean;
|
|
7
7
|
}
|
|
8
|
-
export declare const Step: import("styled-components").StyledComponent<
|
|
8
|
+
export declare const Step: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StepProps & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
9
9
|
export declare const Label: import("styled-components").StyledComponent<{
|
|
10
10
|
(props: any): import("react/jsx-runtime.js").JSX.Element;
|
|
11
11
|
propTypes: {
|
|
@@ -25,6 +25,6 @@ export declare const Label: import("styled-components").StyledComponent<{
|
|
|
25
25
|
placement: string;
|
|
26
26
|
tooltipDelay: number;
|
|
27
27
|
};
|
|
28
|
-
}, import("@elliemae/ds-system").Theme, object, never>;
|
|
29
|
-
export declare const StyledButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button").DSButtonT.Props>, import("@elliemae/ds-system").Theme, DSStepperInternalsT.StepperButtonPropsT, never>;
|
|
28
|
+
}, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
29
|
+
export declare const StyledButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button").DSButtonT.Props>, import("@elliemae/ds-system").Theme, DSStepperInternalsT.StepperButtonPropsT & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
30
30
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-stepper",
|
|
3
|
-
"version": "3.18.0-next.
|
|
3
|
+
"version": "3.18.0-next.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Stepper",
|
|
6
6
|
"files": [
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
"lodash": "~4.17.21",
|
|
55
55
|
"prop-types": "~15.8.1",
|
|
56
56
|
"uid": "~2.0.1",
|
|
57
|
-
"@elliemae/ds-button": "3.18.0-next.
|
|
58
|
-
"@elliemae/ds-
|
|
59
|
-
"@elliemae/ds-
|
|
60
|
-
"@elliemae/ds-
|
|
61
|
-
"@elliemae/ds-
|
|
57
|
+
"@elliemae/ds-button": "3.18.0-next.2",
|
|
58
|
+
"@elliemae/ds-props-helpers": "3.18.0-next.2",
|
|
59
|
+
"@elliemae/ds-icons": "3.18.0-next.2",
|
|
60
|
+
"@elliemae/ds-system": "3.18.0-next.2",
|
|
61
|
+
"@elliemae/ds-truncated-tooltip-text": "3.18.0-next.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@testing-library/jest-dom": "~5.16.5",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"react": "^17.0.2",
|
|
70
70
|
"react-dom": "^17.0.2",
|
|
71
|
-
"styled-components": "~5.3.
|
|
71
|
+
"styled-components": "~5.3.9",
|
|
72
72
|
"styled-system": "^5.1.5"
|
|
73
73
|
},
|
|
74
74
|
"publishConfig": {
|
|
@@ -84,6 +84,6 @@
|
|
|
84
84
|
"build": "cross-env NODE_ENV=production node ../../scripts/build/build.mjs",
|
|
85
85
|
"dev:build": "pnpm --filter {.}... build",
|
|
86
86
|
"dev:install": "pnpm --filter {.}... i --no-lockfile && pnpm run dev:build",
|
|
87
|
-
"checkDeps": "
|
|
87
|
+
"checkDeps": "npm exec ../ds-codemods -- check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
88
88
|
}
|
|
89
89
|
}
|