@synerise/ds-wizard 1.0.22 → 1.0.23
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/CHANGELOG.md +8 -0
- package/dist/Wizard.styles.d.ts +3 -3
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.23](https://github.com/Synerise/synerise-design/compare/@synerise/ds-wizard@1.0.22...@synerise/ds-wizard@1.0.23) (2025-07-24)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-wizard
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.0.22](https://github.com/Synerise/synerise-design/compare/@synerise/ds-wizard@1.0.21...@synerise/ds-wizard@1.0.22) (2025-07-17)
|
|
7
15
|
|
|
8
16
|
|
package/dist/Wizard.styles.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export declare const WizardWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
2
|
export declare const WizardHeader: import("styled-components").StyledComponent<"div", any, {
|
|
3
|
-
withHeaderAction?: boolean
|
|
3
|
+
withHeaderAction?: boolean;
|
|
4
4
|
}, never>;
|
|
5
5
|
export declare const WizardStepper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
6
6
|
export declare const WizardHeaderAction: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
7
7
|
export declare const WizardContainer: import("styled-components").StyledComponent<"div", any, {
|
|
8
|
-
contentWidth?: string
|
|
8
|
+
contentWidth?: string;
|
|
9
9
|
withFooter: boolean;
|
|
10
10
|
}, never>;
|
|
11
11
|
export declare const WizardButtons: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
12
12
|
export declare const WizardContent: import("styled-components").StyledComponent<"div", any, {
|
|
13
|
-
contentWidth?: string
|
|
13
|
+
contentWidth?: string;
|
|
14
14
|
}, never>;
|
|
15
15
|
export declare const ModalWizardContent: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
16
16
|
export declare const ButtonPlaceholder: import("styled-components").StyledComponent<"span", any, {}, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-wizard",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.23",
|
|
4
4
|
"description": "Wizard UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
],
|
|
35
35
|
"types": "dist/index.d.ts",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@synerise/ds-button": "^1.4.
|
|
38
|
-
"@synerise/ds-icon": "^1.6.
|
|
39
|
-
"@synerise/ds-layout": "^1.0.
|
|
40
|
-
"@synerise/ds-modal": "^1.2.
|
|
41
|
-
"@synerise/ds-page-header": "^1.0.
|
|
42
|
-
"@synerise/ds-utils": "^1.
|
|
37
|
+
"@synerise/ds-button": "^1.4.6",
|
|
38
|
+
"@synerise/ds-icon": "^1.6.2",
|
|
39
|
+
"@synerise/ds-layout": "^1.0.16",
|
|
40
|
+
"@synerise/ds-modal": "^1.2.6",
|
|
41
|
+
"@synerise/ds-page-header": "^1.0.22",
|
|
42
|
+
"@synerise/ds-utils": "^1.4.0",
|
|
43
43
|
"classnames": "^2.5.1"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"react-intl": ">=3.12.0 <= 6.8",
|
|
49
49
|
"styled-components": "^5.3.3"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "b35b1875727156fe9f5b3bad55aed5ca447c8c8d"
|
|
52
52
|
}
|