@crystallize/design-system 1.23.2 → 1.23.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/dist/index.mjs CHANGED
@@ -17,7 +17,7 @@ import {
17
17
  showError,
18
18
  showInfo,
19
19
  showWarning
20
- } from "./chunk-VYFBR7S4.mjs";
20
+ } from "./chunk-NT4RM5NK.mjs";
21
21
  import "./chunk-NIH5ZMPE.mjs";
22
22
 
23
23
  // src/card/card.tsx
@@ -368,7 +368,7 @@ function Tag({ children, className, variant, size, prepend, onRemove, ...delegat
368
368
  // src/rich-text-editor/index.tsx
369
369
  import { lazy, Suspense } from "react";
370
370
  import { jsx as jsx12 } from "react/jsx-runtime";
371
- var LazyRichTextEditor = lazy(() => import("./rich-text-editor-PXZQZRPK.mjs"));
371
+ var LazyRichTextEditor = lazy(() => import("./rich-text-editor-7QQ3AZED.mjs"));
372
372
  var RichTextEditor = (props) => {
373
373
  return /* @__PURE__ */ jsx12(Suspense, {
374
374
  fallback: null,
@@ -6,7 +6,7 @@ import {
6
6
  Icon,
7
7
  IconButton,
8
8
  InputWithLabel
9
- } from "./chunk-VYFBR7S4.mjs";
9
+ } from "./chunk-NT4RM5NK.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.23.2",
3
+ "version": "1.23.3",
4
4
  "types": "./dist/index.d.ts",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -0,0 +1,44 @@
1
+ import React, { forwardRef, SVGProps } from 'react';
2
+
3
+ type BatteryProps = SVGProps<SVGSVGElement>;
4
+
5
+ type BatteryRef = SVGSVGElement;
6
+
7
+ export const Battery = forwardRef<BatteryRef, BatteryProps>((delegated, ref) => {
8
+ return (
9
+ <svg ref={ref} width="22" height="22" viewBox="0 0 22 22" fill="currentColor" {...delegated}>
10
+ <path
11
+ fill="#BFF6F8"
12
+ d="M10.064 2.638a1.426 1.426 0 0 1 1.948-.522l6.176 3.565c.682.394.916 1.266.522 1.948l-6.774 11.733a1.426 1.426 0 0 1-1.948.522L3.812 16.32a1.426 1.426 0 0 1-.522-1.948l6.774-11.733Z"
13
+ />
14
+ <path
15
+ fill="#528693"
16
+ fillRule="evenodd"
17
+ d="m17.831 6.299-6.175-3.566a.713.713 0 0 0-.974.261L3.908 14.727a.713.713 0 0 0 .26.974l6.176 3.566c.341.197.777.08.974-.261l6.774-11.733a.713.713 0 0 0-.26-.974Zm-5.819-4.183a1.426 1.426 0 0 0-1.948.522L3.29 14.37a1.426 1.426 0 0 0 .522 1.948l6.176 3.565c.682.394 1.554.16 1.948-.522L18.71 7.63a1.426 1.426 0 0 0-.522-1.948l-6.175-3.565Z"
18
+ clipRule="evenodd"
19
+ />
20
+ <path
21
+ fill="#fff"
22
+ d="m13.95 8.997-1.882-1.086a.143.143 0 0 0-.155.008L9.326 9.801a.143.143 0 0 0 .012.24l.9.518a.143.143 0 0 1 .038.215L8.007 13.53c-.095.116.03.282.168.221l5.264-2.316a.143.143 0 0 0 .014-.254l-1.1-.635a.143.143 0 0 1-.007-.243l1.61-1.063a.143.143 0 0 0-.007-.243Z"
23
+ />
24
+ <path
25
+ fill="#528693"
26
+ fillRule="evenodd"
27
+ d="M11.702 7.63a.5.5 0 0 1 .543-.028l1.882 1.086a.5.5 0 0 1 .025.85l-1.322.872.8.462a.5.5 0 0 1-.048.89l-5.264 2.315-.144-.326.144.326c-.482.212-.92-.368-.587-.774l2.109-2.561-.68-.393a.5.5 0 0 1-.045-.836l2.587-1.882Zm.307.66L9.801 9.895l.614.354a.5.5 0 0 1 .136.75l-1.698 2.063 4.056-1.785-.735-.424a.5.5 0 0 1-.025-.848l.196.297-.196-.297 1.322-.873-1.462-.844Z"
28
+ clipRule="evenodd"
29
+ />
30
+ <path
31
+ fill="#fff"
32
+ d="M13.605 2.212a.713.713 0 0 1 .974-.261l2.47 1.426a.713.713 0 0 1 .26.974l-.712 1.235-3.705-2.14.713-1.234Z"
33
+ />
34
+ <path
35
+ fill="#528693"
36
+ fillRule="evenodd"
37
+ d="m16.692 3.994-2.47-1.426-.356.618 2.47 1.426.356-.618ZM14.58 1.951a.713.713 0 0 0-.974.26l-.713 1.236 3.705 2.139.713-1.235a.713.713 0 0 0-.261-.974l-2.47-1.426Z"
38
+ clipRule="evenodd"
39
+ />
40
+ </svg>
41
+ );
42
+ });
43
+
44
+ Battery.displayName = 'BatteryIcon';
@@ -3,6 +3,7 @@ import { App } from './app';
3
3
  import { Archive } from './archive';
4
4
  import { Arrow } from './arrow';
5
5
  import { Atom } from './atom';
6
+ import { Battery } from './battery';
6
7
  import { Bell } from './bell';
7
8
  import { BillingPayments } from './billing-payments';
8
9
  import { Bin } from './bin';
@@ -104,6 +105,7 @@ export const Icon = {
104
105
  Add,
105
106
  Archive,
106
107
  App,
108
+ Battery,
107
109
  BillingPayments,
108
110
  Bin,
109
111
  Bell,