@crystallize/design-system 1.24.4 → 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,11 @@
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
+
3
9
  ## 1.24.4
4
10
 
5
11
  ### Patch Changes
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 {
@@ -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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crystallize/design-system",
3
- "version": "1.24.4",
3
+ "version": "1.24.5",
4
4
  "types": "./dist/index.d.ts",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -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
+ }