@synerise/ds-wizard 1.0.24 → 1.0.25

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 CHANGED
@@ -3,6 +3,17 @@
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.25](https://github.com/Synerise/synerise-design/compare/@synerise/ds-wizard@1.0.24...@synerise/ds-wizard@1.0.25) (2025-08-20)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **wizard:** change paddings and width ([b8babf8](https://github.com/Synerise/synerise-design/commit/b8babf85c18adb381d5544a4eae6673213707bb8))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.0.24](https://github.com/Synerise/synerise-design/compare/@synerise/ds-wizard@1.0.23...@synerise/ds-wizard@1.0.24) (2025-08-14)
7
18
 
8
19
  **Note:** Version bump only for package @synerise/ds-wizard
@@ -27,7 +27,7 @@ export var WizardContainer = styled.div.withConfig({
27
27
  })(["background-color:", ";width:100%;height:100%;position:relative;display:flex;align-items:flex-start;justify-content:center;padding-top:122px;padding-bottom:", ";"], function (props) {
28
28
  return props.theme.palette.white;
29
29
  }, function (props) {
30
- return props.withFooter ? '80px' : '0';
30
+ return props.withFooter ? '100px' : '0';
31
31
  });
32
32
  export var WizardButtons = styled.div.withConfig({
33
33
  displayName: "Wizardstyles__WizardButtons",
@@ -74,7 +74,7 @@ export var FooterRightSide = styled.div.withConfig({
74
74
  export var WizardFooter = styled.div.withConfig({
75
75
  displayName: "Wizardstyles__WizardFooter",
76
76
  componentId: "sc-1lvfph4-15"
77
- })(["display:flex;justify-content:space-between;width:calc(100% - 48px);padding:15px 0;margin:0 24px;background-color:", ";border-top:1px solid ", ";position:fixed;bottom:0;left:0;& > *{margin-right:8px;}", ":empty,", ":empty{display:none;}"], function (props) {
77
+ })(["display:flex;justify-content:space-between;width:100%;padding:24px;background-color:", ";border-top:1px solid ", ";position:fixed;bottom:0;left:0;& > *{margin-right:8px;}", ":empty,", ":empty{display:none;}"], function (props) {
78
78
  return props.theme.palette.white;
79
79
  }, function (props) {
80
80
  return props.theme.palette['grey-200'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-wizard",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "description": "Wizard UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -34,11 +34,11 @@
34
34
  ],
35
35
  "types": "dist/index.d.ts",
36
36
  "dependencies": {
37
- "@synerise/ds-button": "^1.4.7",
37
+ "@synerise/ds-button": "^1.4.8",
38
38
  "@synerise/ds-icon": "^1.7.0",
39
39
  "@synerise/ds-layout": "^1.0.17",
40
- "@synerise/ds-modal": "^1.2.7",
41
- "@synerise/ds-page-header": "^1.0.23",
40
+ "@synerise/ds-modal": "^1.2.8",
41
+ "@synerise/ds-page-header": "^1.0.24",
42
42
  "@synerise/ds-utils": "^1.4.0",
43
43
  "classnames": "^2.5.1"
44
44
  },
@@ -48,5 +48,5 @@
48
48
  "react-intl": ">=3.12.0 <= 6.8",
49
49
  "styled-components": "^5.3.3"
50
50
  },
51
- "gitHead": "408d73cc145b6c8c61f3e70dce05badf3ad1ffde"
51
+ "gitHead": "2393f96e57ee588efc9b56457389865b272b79fa"
52
52
  }