@crystallize/design-system 1.24.3 → 1.24.5

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,17 @@
1
1
  # @crystallize/design-system
2
2
 
3
+ ## 1.24.5
4
+
5
+ ### Patch Changes
6
+
7
+ - d6c2d6d: This PR adjusts dropdown css to allow displaying radix popper components in dialog on flow page
8
+
9
+ ## 1.24.4
10
+
11
+ ### Patch Changes
12
+
13
+ - c4d23d6: Puting back div wrapping children in dialog component to fix broken layout
14
+
3
15
  ## 1.24.3
4
16
 
5
17
  ### 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.css CHANGED
@@ -933,6 +933,9 @@
933
933
  transform: translateY(0);
934
934
  }
935
935
  }
936
+ .c-dialog ~ [data-radix-popper-content-wrapper] {
937
+ z-index: calc(var(--dialog-z-index) + 1) !important;
938
+ }
936
939
 
937
940
  /* src/avatar/avatar.css */
938
941
  .c-avatar {
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,
@@ -1580,6 +1580,9 @@
1580
1580
  transform: translateY(0);
1581
1581
  }
1582
1582
  }
1583
+ .c-dialog ~ [data-radix-popper-content-wrapper] {
1584
+ z-index: calc(var(--dialog-z-index) + 1) !important;
1585
+ }
1583
1586
 
1584
1587
  /* src/dialog/dialog.css */
1585
1588
  :root {
@@ -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.5",
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
  );
@@ -81,3 +81,7 @@
81
81
  transform: translateY(0);
82
82
  }
83
83
  }
84
+
85
+ .c-dialog ~ [data-radix-popper-content-wrapper] {
86
+ z-index: calc(var(--dialog-z-index) + 1) !important;
87
+ }