@synerise/ds-stepper 1.0.38 → 1.0.40
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 +8 -4
- package/package.json +4 -4
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.40](https://github.com/Synerise/synerise-design/compare/@synerise/ds-stepper@1.0.39...@synerise/ds-stepper@1.0.40) (2026-03-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-stepper
|
|
9
|
+
|
|
10
|
+
## [1.0.39](https://github.com/Synerise/synerise-design/compare/@synerise/ds-stepper@1.0.38...@synerise/ds-stepper@1.0.39) (2026-03-09)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @synerise/ds-stepper
|
|
13
|
+
|
|
6
14
|
## [1.0.38](https://github.com/Synerise/synerise-design/compare/@synerise/ds-stepper@1.0.37...@synerise/ds-stepper@1.0.38) (2026-02-23)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @synerise/ds-stepper
|
package/README.md
CHANGED
|
@@ -41,9 +41,12 @@ import Stepper from '@synerise/ds-stepper'
|
|
|
41
41
|
|
|
42
42
|
### Stepper
|
|
43
43
|
|
|
44
|
-
| Property | Description | Type
|
|
45
|
-
| ----------- | ---------------------------------- |
|
|
46
|
-
| orientation | Defines direction of Stepper steps | `horizontal`
|
|
44
|
+
| Property | Description | Type | Default |
|
|
45
|
+
| ----------- | ---------------------------------- | --------------------------------- | ------------ |
|
|
46
|
+
| orientation | Defines direction of Stepper steps | `'horizontal'` \| `'vertical'` | `horizontal` |
|
|
47
|
+
| size | Step size variant | `'default'` \| `'small'` | `default` |
|
|
48
|
+
| style | Inline styles on the root wrapper | `React.CSSProperties` | - |
|
|
49
|
+
| children | `Stepper.Step` children | `React.ReactNode` | - |
|
|
47
50
|
|
|
48
51
|
### Stepper.Step
|
|
49
52
|
|
|
@@ -53,7 +56,8 @@ import Stepper from '@synerise/ds-stepper'
|
|
|
53
56
|
| done | Whether step was completed | `boolean` | `false` |
|
|
54
57
|
| label | Label of step | `string` \ `React.ReactNode` | - |
|
|
55
58
|
| onClick | Function called when user clicks on step | `() => void` | - |
|
|
56
|
-
| stepNumber | Step number
|
|
59
|
+
| stepNumber | Step number displayed in the circle | `number` | - |
|
|
60
|
+
| children | Content shown when step is active | `React.ReactNode` | - |
|
|
57
61
|
| tooltip | Shows icon with tooltip if step is active | `string` \ `React.ReactNode` | - |
|
|
58
62
|
| validated | Whether step has some errors | `boolean` | `false` |
|
|
59
63
|
| warning | Whether step has warning status | `boolean` | - |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-stepper",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.40",
|
|
4
4
|
"description": "Stepper UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
],
|
|
36
36
|
"types": "dist/index.d.ts",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@synerise/ds-icon": "^1.
|
|
39
|
-
"@synerise/ds-tooltip": "^1.4.
|
|
38
|
+
"@synerise/ds-icon": "^1.15.0",
|
|
39
|
+
"@synerise/ds-tooltip": "^1.4.9",
|
|
40
40
|
"react-animate-height": "^2.0.23"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"react": ">=16.9.0 <= 18.3.1",
|
|
45
45
|
"styled-components": "^5.3.3"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "8efc031fa688c0b87c7b3915bae93546bb63bcac"
|
|
48
48
|
}
|