@crystallize/design-system 1.24.2 → 1.24.3

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.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 76b52f5: Remove div in dialog content component that was blocking styling
8
+
3
9
  ## 1.24.2
4
10
 
5
11
  ### Patch Changes
@@ -6015,9 +6015,7 @@ function DialogContent({ children, closable = true, type, className, container,
6015
6015
  })
6016
6016
  })
6017
6017
  }),
6018
- /* @__PURE__ */ jsx113("div", {
6019
- children
6020
- })
6018
+ children
6021
6019
  ]
6022
6020
  })
6023
6021
  ]
package/dist/index.js CHANGED
@@ -6871,9 +6871,7 @@ function DialogContent({ children, closable = true, type, className, container,
6871
6871
  })
6872
6872
  })
6873
6873
  }),
6874
- /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("div", {
6875
- children
6876
- })
6874
+ children
6877
6875
  ]
6878
6876
  })
6879
6877
  ]
package/dist/index.mjs CHANGED
@@ -17,7 +17,7 @@ import {
17
17
  showError,
18
18
  showInfo,
19
19
  showWarning
20
- } from "./chunk-7K3KQDTQ.mjs";
20
+ } from "./chunk-LIMMZNXO.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-ZJS3XSIV.mjs"));
420
+ var LazyRichTextEditor = lazy(() => import("./rich-text-editor-VCMKO3HI.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-7K3KQDTQ.mjs";
9
+ } from "./chunk-LIMMZNXO.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.2",
3
+ "version": "1.24.3",
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
- <div>{children}</div>
55
+ {children}
56
56
  </DialogPrimitive.Content>
57
57
  </DialogPrimitive.Portal>
58
58
  );