braid-design-system 34.8.0 → 34.8.1
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
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# braid-design-system
|
|
2
2
|
|
|
3
|
+
## 34.8.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- **Drawer, Dialog:** Restore default stack spacing to content ([#2137](https://github.com/seek-oss/braid-design-system/pull/2137))
|
|
8
|
+
|
|
3
9
|
## 34.8.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
|
@@ -30,11 +36,7 @@
|
|
|
30
36
|
|
|
31
37
|
The `space` prop is now deprecated and will be removed in a future release. Spacing between items is now automatically derived from the `size` prop.
|
|
32
38
|
|
|
33
|
-
The following default spacing value has been updated:
|
|
34
|
-
|
|
35
|
-
| `dividers` | `size` | Previous default | New default |
|
|
36
|
-
| ---------- | ---------- | ---------------- | ----------- |
|
|
37
|
-
| `false` | `standard` | `large` | `medium` |
|
|
39
|
+
The following default spacing value has been updated: for `dividers={false}` and `size="standard"`, the default space is now `medium` (previously `large`).
|
|
38
40
|
|
|
39
41
|
**MIGRATION GUIDE:**
|
|
40
42
|
|
|
@@ -169,10 +169,7 @@ const ModalContent = ({ id, children, description, onClose, width, closeLabel =
|
|
|
169
169
|
illustration: illustration && !coverImageEnabled ? illustration : void 0,
|
|
170
170
|
ref: headingRef,
|
|
171
171
|
reserveCloseArea: true
|
|
172
|
-
}),
|
|
173
|
-
height: "full",
|
|
174
|
-
children
|
|
175
|
-
})]
|
|
172
|
+
}), children]
|
|
176
173
|
});
|
|
177
174
|
const modalFooter = footer ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)(ModalFooter, {
|
|
178
175
|
applyPageBlockGutters: isDrawer,
|
|
@@ -169,10 +169,7 @@ const ModalContent = ({ id, children, description, onClose, width, closeLabel =
|
|
|
169
169
|
illustration: illustration && !coverImageEnabled ? illustration : void 0,
|
|
170
170
|
ref: headingRef,
|
|
171
171
|
reserveCloseArea: true
|
|
172
|
-
}),
|
|
173
|
-
height: "full",
|
|
174
|
-
children
|
|
175
|
-
})]
|
|
172
|
+
}), children]
|
|
176
173
|
});
|
|
177
174
|
const modalFooter = footer ? /* @__PURE__ */ jsx(ModalFooter, {
|
|
178
175
|
applyPageBlockGutters: isDrawer,
|