@synerise/ds-wizard 1.0.63 → 1.0.65
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/README.md +20 -14
- package/package.json +7 -7
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.65](https://github.com/Synerise/synerise-design/compare/@synerise/ds-wizard@1.0.64...@synerise/ds-wizard@1.0.65) (2026-03-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-wizard
|
|
9
|
+
|
|
10
|
+
## [1.0.64](https://github.com/Synerise/synerise-design/compare/@synerise/ds-wizard@1.0.63...@synerise/ds-wizard@1.0.64) (2026-03-09)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @synerise/ds-wizard
|
|
13
|
+
|
|
6
14
|
## [1.0.63](https://github.com/Synerise/synerise-design/compare/@synerise/ds-wizard@1.0.62...@synerise/ds-wizard@1.0.63) (2026-02-26)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @synerise/ds-wizard
|
package/README.md
CHANGED
|
@@ -63,19 +63,25 @@ import Wizard from '@synerise/ds-wizard'
|
|
|
63
63
|
|
|
64
64
|
## API
|
|
65
65
|
|
|
66
|
-
| Property
|
|
67
|
-
|
|
|
68
|
-
| stepper
|
|
69
|
-
| footer
|
|
70
|
-
|
|
|
71
|
-
|
|
|
72
|
-
|
|
|
73
|
-
|
|
|
74
|
-
|
|
|
75
|
-
|
|
|
76
|
-
|
|
|
77
|
-
|
|
|
78
|
-
|
|
|
66
|
+
| Property | Description | Type | Default |
|
|
67
|
+
| ------------------ | ------------------------------------------------------- | ------------------------ | ------- |
|
|
68
|
+
| stepper | Stepper component | React.ReactNode | - |
|
|
69
|
+
| footer | **Deprecated.** Left-side footer content (use `footerLeft`) | React.ReactNode | - |
|
|
70
|
+
| footerLeft | Left side of the footer bar | React.ReactNode | - |
|
|
71
|
+
| footerAction | Right side of the footer bar | React.ReactNode | - |
|
|
72
|
+
| title | Title of wizard (ignored when `headerInlineEdit` is set) | React.ReactNode | - |
|
|
73
|
+
| headerAction | Additional button in header | React.ReactNode | - |
|
|
74
|
+
| onClose | Function called when user clicks on close wizard button | () => void | - |
|
|
75
|
+
| visible | Whether wizard is visible | boolean | false |
|
|
76
|
+
| contentWidth | Width of content ex: `500px` | string | `100%` |
|
|
77
|
+
| onPrevStep | Function called when user clicks on prev step button | () => void | - |
|
|
78
|
+
| onNextStep | Function called when user clicks on next step button | () => void | - |
|
|
79
|
+
| stepButtonProps | Custom props for prev/next buttons | WizardStepButtons | - |
|
|
80
|
+
| texts | Translations object for wizard | WizardTexts | - |
|
|
81
|
+
| navigationInFooter | Move prev/next buttons to the footer instead of below content | boolean | - |
|
|
82
|
+
| headerInlineEdit | Enable inline title editing in the header | PageHeaderProps['inlineEdit'] | - |
|
|
83
|
+
| headerAvatar | Avatar shown alongside inline edit in the header | PageHeaderProps['avatar'] | - |
|
|
84
|
+
| className | CSS class added to the wizard wrapper | string | - |
|
|
79
85
|
|
|
80
86
|
### WizardTexts
|
|
81
87
|
|
|
@@ -89,4 +95,4 @@ import Wizard from '@synerise/ds-wizard'
|
|
|
89
95
|
| Property | Description | Type | Default |
|
|
90
96
|
| --------------- | -------------------- | ------------------------------------- | ------- |
|
|
91
97
|
| prevButtonProps | Props of prev button | Partial<Omit<ButtonProps, 'onClick'>> | - |
|
|
92
|
-
|
|
|
98
|
+
| nextButtonProps | Props of next button | Partial<Omit<ButtonProps, 'onClick'>> | - |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-wizard",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.65",
|
|
4
4
|
"description": "Wizard UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
],
|
|
36
36
|
"types": "dist/index.d.ts",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@synerise/ds-button": "^1.5.
|
|
39
|
-
"@synerise/ds-icon": "^1.
|
|
40
|
-
"@synerise/ds-layout": "^1.
|
|
41
|
-
"@synerise/ds-modal": "^1.
|
|
42
|
-
"@synerise/ds-page-header": "^1.0.
|
|
38
|
+
"@synerise/ds-button": "^1.5.17",
|
|
39
|
+
"@synerise/ds-icon": "^1.15.0",
|
|
40
|
+
"@synerise/ds-layout": "^1.2.0",
|
|
41
|
+
"@synerise/ds-modal": "^1.4.0",
|
|
42
|
+
"@synerise/ds-page-header": "^1.0.63",
|
|
43
43
|
"classnames": "^2.5.1"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"react-intl": ">=3.12.0 <= 6.8",
|
|
52
52
|
"styled-components": "^5.3.3"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
|
|
55
55
|
}
|