@crystallize/design-system 1.24.3 → 1.24.4

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
  # @crystallize/design-system
2
2
 
3
+ ## 1.24.4
4
+
5
+ ### Patch Changes
6
+
7
+ - c4d23d6: Puting back div wrapping children in dialog component to fix broken layout
8
+
3
9
  ## 1.24.3
4
10
 
5
11
  ### Patch Changes
@@ -6015,7 +6015,9 @@ function DialogContent({ children, closable = true, type, className, container,
6015
6015
  })
6016
6016
  })
6017
6017
  }),
6018
- children
6018
+ /* @__PURE__ */ jsx113("div", {
6019
+ children
6020
+ })
6019
6021
  ]
6020
6022
  })
6021
6023
  ]
package/dist/index.js CHANGED
@@ -6871,7 +6871,9 @@ function DialogContent({ children, closable = true, type, className, container,
6871
6871
  })
6872
6872
  })
6873
6873
  }),
6874
- children
6874
+ /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("div", {
6875
+ children
6876
+ })
6875
6877
  ]
6876
6878
  })
6877
6879
  ]
package/dist/index.mjs CHANGED
@@ -17,7 +17,7 @@ import {
17
17
  showError,
18
18
  showInfo,
19
19
  showWarning
20
- } from "./chunk-LIMMZNXO.mjs";
20
+ } from "./chunk-7K3KQDTQ.mjs";
21
21
  import "./chunk-NIH5ZMPE.mjs";
22
22
 
23
23
  // src/card/card.tsx
@@ -417,7 +417,7 @@ function Tag({
417
417
  // src/rich-text-editor/index.tsx
418
418
  import { lazy, Suspense } from "react";
419
419
  import { jsx as jsx13 } from "react/jsx-runtime";
420
- var LazyRichTextEditor = lazy(() => import("./rich-text-editor-VCMKO3HI.mjs"));
420
+ var LazyRichTextEditor = lazy(() => import("./rich-text-editor-ZJS3XSIV.mjs"));
421
421
  var RichTextEditor = (props) => {
422
422
  return /* @__PURE__ */ jsx13(Suspense, {
423
423
  fallback: null,
@@ -6,7 +6,7 @@ import {
6
6
  Icon,
7
7
  IconButton,
8
8
  InputWithLabel
9
- } from "./chunk-LIMMZNXO.mjs";
9
+ } from "./chunk-7K3KQDTQ.mjs";
10
10
  import "./chunk-NIH5ZMPE.mjs";
11
11
 
12
12
  // src/rich-text-editor/rich-text-editor.tsx
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystallize/design-system",
3
- "version": "1.24.3",
3
+ "version": "1.24.4",
4
4
  "types": "./dist/index.d.ts",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -52,7 +52,7 @@ function DialogContent({ children, closable = true, type, className, container,
52
52
  </Button>
53
53
  </DialogClose>
54
54
  )}
55
- {children}
55
+ <div>{children}</div>
56
56
  </DialogPrimitive.Content>
57
57
  </DialogPrimitive.Portal>
58
58
  );