@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 +12 -0
- package/dist/{chunk-LIMMZNXO.mjs → chunk-7K3KQDTQ.mjs} +3 -1
- package/dist/index.css +3 -0
- package/dist/index.js +3 -1
- package/dist/index.mjs +2 -2
- package/dist/{rich-text-editor-EVP7CTRQ.css → rich-text-editor-XW66E4QG.css} +3 -0
- package/dist/{rich-text-editor-VCMKO3HI.mjs → rich-text-editor-ZJS3XSIV.mjs} +1 -1
- package/package.json +1 -1
- package/src/dialog/dialog.tsx +1 -1
- package/src/dropdown-menu/dropdown-menu.css +4 -0
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
|
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
showError,
|
|
18
18
|
showInfo,
|
|
19
19
|
showWarning
|
|
20
|
-
} from "./chunk-
|
|
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-
|
|
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,
|
package/package.json
CHANGED
package/src/dialog/dialog.tsx
CHANGED