@crystallize/design-system 1.24.1 → 1.24.2
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 +6 -0
- package/dist/{chunk-FWRBC56V.mjs → chunk-7K3KQDTQ.mjs} +2 -1
- package/dist/index.css +1 -1
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -2
- package/dist/{rich-text-editor-6PGBZV6U.mjs → rich-text-editor-ZJS3XSIV.mjs} +1 -1
- package/package.json +1 -1
- package/src/iconography/piece.tsx +1 -1
- package/src/tag/tag.css +1 -1
- package/tailwind.config.cjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3969,7 +3969,8 @@ var Piece = forwardRef71((delegated, ref) => {
|
|
|
3969
3969
|
children: [
|
|
3970
3970
|
/* @__PURE__ */ jsx77("path", {
|
|
3971
3971
|
fill: "#BFF6F8",
|
|
3972
|
-
d: "M1.67 1.89h18.491v18.157H1.671V1.891Z"
|
|
3972
|
+
d: "M1.67 1.89h18.491v18.157H1.671V1.891Z",
|
|
3973
|
+
className: "c-icon-fill"
|
|
3973
3974
|
}),
|
|
3974
3975
|
/* @__PURE__ */ jsx77("path", {
|
|
3975
3976
|
fill: "#fff",
|
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -4515,7 +4515,8 @@ var init_piece = __esm({
|
|
|
4515
4515
|
children: [
|
|
4516
4516
|
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", {
|
|
4517
4517
|
fill: "#BFF6F8",
|
|
4518
|
-
d: "M1.67 1.89h18.491v18.157H1.671V1.891Z"
|
|
4518
|
+
d: "M1.67 1.89h18.491v18.157H1.671V1.891Z",
|
|
4519
|
+
className: "c-icon-fill"
|
|
4519
4520
|
}),
|
|
4520
4521
|
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", {
|
|
4521
4522
|
fill: "#fff",
|
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
|
@@ -8,7 +8,7 @@ export const Piece = forwardRef<PieceRef, PieceProps>((delegated, ref) => {
|
|
|
8
8
|
return (
|
|
9
9
|
<svg ref={ref} width="22" height="22" viewBox="0 0 22 22" fill="none" {...delegated}>
|
|
10
10
|
<g clipPath="url(#a)">
|
|
11
|
-
<path fill="#BFF6F8" d="M1.67 1.89h18.491v18.157H1.671V1.891Z" />
|
|
11
|
+
<path fill="#BFF6F8" d="M1.67 1.89h18.491v18.157H1.671V1.891Z" className="c-icon-fill" />
|
|
12
12
|
<path
|
|
13
13
|
fill="#fff"
|
|
14
14
|
d="M11.232 10.957h2.232l1.159-3.053H16.5l1.43 3.053h2.232v9.091h-8.93v-2.842l3.063-.346v-2.136l-3.063-.361v-3.406Z"
|
package/src/tag/tag.css
CHANGED
package/tailwind.config.cjs
CHANGED