@crystallize/design-system 0.2.0 → 1.0.0
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 +10 -0
- package/dist/index.css +1319 -827
- package/dist/index.d.ts +98 -43
- package/dist/index.js +982 -578
- package/dist/index.mjs +973 -573
- package/package.json +40 -23
- package/readme.md +9 -0
- package/src/Tokens.stories.tsx +18 -0
- package/src/action-menu/ActionMenu.stories.tsx +3 -1
- package/src/action-menu/action-item.tsx +1 -9
- package/src/action-menu/action-menu.css +38 -0
- package/src/action-menu/action-menu.tsx +4 -13
- package/src/action-menu/index.tsx +2 -0
- package/src/avatar/Avatar.stories.tsx +20 -0
- package/src/avatar/avatar.css +23 -0
- package/src/avatar/avatar.tsx +34 -0
- package/src/avatar/get-initials.ts +5 -0
- package/src/avatar/index.ts +1 -0
- package/src/button/Button.stories.tsx +64 -22
- package/src/button/button.css +116 -0
- package/src/button/button.tsx +119 -33
- package/src/button/index.ts +1 -1
- package/src/card/card.css +7 -0
- package/src/card/card.stories.tsx +2 -2
- package/src/card/card.tsx +6 -4
- package/src/card/index.ts +2 -0
- package/src/checkbox/checkbox.css +30 -0
- package/src/checkbox/checkbox.tsx +6 -14
- package/src/colors/Colors.stories.tsx +127 -0
- package/src/colors/color-defaults.json +15 -0
- package/src/colors/color-pairing.json +12 -0
- package/src/colors/colors.json +158 -0
- package/src/colors/index.ts +1 -0
- package/src/colors/old-to-new.txt +19 -0
- package/src/colors/types.ts +29 -0
- package/src/dialog/Dialog.stories.tsx +9 -6
- package/src/dialog/confirm-dialog.tsx +5 -2
- package/src/dialog/dialog.css +27 -0
- package/src/dialog/dialog.tsx +18 -20
- package/src/dialog/types.ts +4 -1
- package/src/dropdown-menu/DropdownMenu.stories.tsx +6 -14
- package/src/dropdown-menu/dropdown-menu-item.tsx +1 -10
- package/src/dropdown-menu/dropdown-menu-label.tsx +1 -8
- package/src/dropdown-menu/dropdown-menu-root.tsx +9 -5
- package/src/dropdown-menu/dropdown-menu.css +20 -0
- package/src/dropdown-menu/index.ts +2 -0
- package/src/icon-button/IconButton.stories.tsx +9 -6
- package/src/icon-button/icon-button.css +40 -0
- package/src/icon-button/icon-button.tsx +14 -22
- package/src/iconography/Icon.stories.tsx +47 -0
- package/src/{icons → iconography}/arrow.tsx +0 -0
- package/src/iconography/atom.tsx +59 -0
- package/src/{icons → iconography}/cancel.tsx +0 -0
- package/src/iconography/copy.tsx +24 -0
- package/src/iconography/crystal.tsx +93 -0
- package/src/iconography/edit.tsx +30 -0
- package/src/iconography/error.tsx +40 -0
- package/src/{icons → iconography}/glasses.tsx +0 -0
- package/src/{icons → iconography}/graphQL.tsx +0 -0
- package/src/{icons → iconography}/index.ts +10 -2
- package/src/iconography/info.tsx +41 -0
- package/src/{icons → iconography}/nail-polish.tsx +0 -0
- package/src/iconography/particle.tsx +88 -0
- package/src/iconography/triangle.tsx +27 -0
- package/src/iconography/warning.tsx +51 -0
- package/src/index.css +11 -0
- package/src/index.ts +12 -2
- package/src/inline-radio/inline-radio.css +20 -0
- package/src/inline-radio/inline-radio.stories.tsx +1 -1
- package/src/inline-radio/inline-radio.tsx +4 -14
- package/src/input/Input.stories.tsx +8 -1
- package/src/input/input.css +7 -0
- package/src/input/input.tsx +8 -21
- package/src/input-with-label/InputWithLabel.stories.tsx +98 -0
- package/src/input-with-label/index.ts +3 -0
- package/src/input-with-label/input-with-label.css +35 -0
- package/src/input-with-label/input-with-label.tsx +59 -0
- package/src/label/label.css +3 -0
- package/src/label/label.tsx +3 -1
- package/src/progress/progress.css +7 -0
- package/src/progress/progress.tsx +8 -7
- package/src/radio/radio.css +20 -0
- package/src/radio/radio.tsx +4 -11
- package/src/select/select-item.tsx +1 -10
- package/src/select/select-root.tsx +5 -12
- package/src/select/select.css +28 -0
- package/src/select/select.stories.tsx +12 -0
- package/src/select/select.ts +2 -0
- package/src/spinner/Spinner.stories.tsx +19 -0
- package/src/spinner/index.tsx +48 -0
- package/src/spinner/spinner.css +11 -0
- package/tailwind.config.cjs +51 -0
- package/src/button copy/ButtonCopy.stories.tsx +0 -86
- package/src/button copy/button.tsx +0 -61
- package/src/button copy/index.ts +0 -3
- package/src/colors/Colors.stories.mdx +0 -33
- package/src/icons/Iconography.stories.mdx +0 -45
- package/src/icons/dots.tsx +0 -24
- package/src/icons/error.tsx +0 -43
- package/src/icons/info.tsx +0 -46
- package/src/icons/warning.tsx +0 -55
- package/src/text-field/TextField.stories.tsx +0 -20
- package/src/text-field/index.ts +0 -1
- package/src/text-field/text-field.tsx +0 -60
package/dist/index.js
CHANGED
|
@@ -27,6 +27,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
27
27
|
var src_exports = {};
|
|
28
28
|
__export(src_exports, {
|
|
29
29
|
ActionMenu: () => ActionMenu,
|
|
30
|
+
Avatar: () => Avatar,
|
|
30
31
|
Button: () => Button,
|
|
31
32
|
Card: () => Card,
|
|
32
33
|
Checkbox: () => Checkbox,
|
|
@@ -36,29 +37,28 @@ __export(src_exports, {
|
|
|
36
37
|
IconButton: () => IconButton,
|
|
37
38
|
InlineRadio: () => InlineRadio,
|
|
38
39
|
Input: () => Input,
|
|
40
|
+
InputWithLabel: () => InputWithLabel,
|
|
39
41
|
Label: () => Label2,
|
|
40
42
|
Progress: () => Progress,
|
|
41
43
|
Radio: () => Radio,
|
|
42
44
|
Select: () => Select,
|
|
43
|
-
|
|
45
|
+
buttonTokens: () => buttonTokens,
|
|
46
|
+
cardToken: () => cardToken,
|
|
44
47
|
destroyAll: () => destroyAll,
|
|
45
48
|
showConfirm: () => showConfirm,
|
|
46
49
|
showDialog: () => showDialog,
|
|
47
50
|
showError: () => showError,
|
|
48
51
|
showInfo: () => showInfo,
|
|
49
|
-
showWarning: () => showWarning
|
|
52
|
+
showWarning: () => showWarning,
|
|
53
|
+
tokens: () => tokens
|
|
50
54
|
});
|
|
51
55
|
module.exports = __toCommonJS(src_exports);
|
|
52
56
|
|
|
53
|
-
// src/action-menu/action-menu.tsx
|
|
54
|
-
var import_class_variance_authority4 = require("class-variance-authority");
|
|
55
|
-
|
|
56
57
|
// src/dropdown-menu/dropdown-menu-root.tsx
|
|
57
58
|
var DropdownMenuPrimitive = __toESM(require("@radix-ui/react-dropdown-menu"));
|
|
58
59
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
59
|
-
function DropdownMenuRoot({ children, content,
|
|
60
|
+
function DropdownMenuRoot({ children, content, alignContent = "start", ...delegated }) {
|
|
60
61
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(DropdownMenuPrimitive.Root, {
|
|
61
|
-
onOpenChange,
|
|
62
62
|
children: [
|
|
63
63
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(DropdownMenuPrimitive.Trigger, {
|
|
64
64
|
asChild: true,
|
|
@@ -67,7 +67,8 @@ function DropdownMenuRoot({ children, content, onOpenChange, alignContent = "sta
|
|
|
67
67
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(DropdownMenuPrimitive.Content, {
|
|
68
68
|
align: alignContent,
|
|
69
69
|
sideOffset: 5,
|
|
70
|
-
className: "
|
|
70
|
+
className: "c-dropdown-menu-content",
|
|
71
|
+
...delegated,
|
|
71
72
|
children: content
|
|
72
73
|
})
|
|
73
74
|
]
|
|
@@ -81,24 +82,17 @@ var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
|
81
82
|
function DropdownMenuItem({ children, className, ...delegated }) {
|
|
82
83
|
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(DropdownMenuPrimitive2.Item, {
|
|
83
84
|
...delegated,
|
|
84
|
-
className: (0, import_class_variance_authority.cx)(
|
|
85
|
-
"text-xs font-medium text-black-text",
|
|
86
|
-
"flex h-10 cursor-pointer items-center bg-white px-4 outline-asteroid",
|
|
87
|
-
"hover:bg-[#F8F8F9] hover:outline-none hover:focus-visible:outline-none",
|
|
88
|
-
"first:rounded-tr first:rounded-tl last:rounded-br last:rounded-bl",
|
|
89
|
-
className
|
|
90
|
-
),
|
|
85
|
+
className: (0, import_class_variance_authority.cx)("c-dropdown-menu-item", className),
|
|
91
86
|
children
|
|
92
87
|
});
|
|
93
88
|
}
|
|
94
89
|
|
|
95
90
|
// src/dropdown-menu/dropdown-menu-label.tsx
|
|
96
91
|
var DropdownMenuPrimitive3 = __toESM(require("@radix-ui/react-dropdown-menu"));
|
|
97
|
-
var import_class_variance_authority2 = require("class-variance-authority");
|
|
98
92
|
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
99
93
|
function DropdownMenuLabel({ children }) {
|
|
100
94
|
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(DropdownMenuPrimitive3.Label, {
|
|
101
|
-
className:
|
|
95
|
+
className: "c-dropdown-menu-label",
|
|
102
96
|
children
|
|
103
97
|
});
|
|
104
98
|
}
|
|
@@ -110,29 +104,396 @@ var DropdownMenu = {
|
|
|
110
104
|
Label: DropdownMenuLabel
|
|
111
105
|
};
|
|
112
106
|
|
|
113
|
-
// src/
|
|
114
|
-
var
|
|
107
|
+
// src/action-menu/action-item.tsx
|
|
108
|
+
var import_class_variance_authority2 = require("class-variance-authority");
|
|
115
109
|
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
116
|
-
|
|
117
|
-
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
110
|
+
function Item2({ children, className, onSelect }) {
|
|
111
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(DropdownMenu.Item, {
|
|
112
|
+
onClick: onSelect,
|
|
113
|
+
className: (0, import_class_variance_authority2.cx)(className, "c-action-menu-item"),
|
|
114
|
+
children
|
|
115
|
+
});
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// src/action-menu/action-menu.tsx
|
|
119
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
120
|
+
function ActionMenu({ children, tabIndex }) {
|
|
121
|
+
return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(DropdownMenu.Root, {
|
|
122
|
+
content: children,
|
|
123
|
+
alignContent: "center",
|
|
124
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("button", {
|
|
125
|
+
tabIndex,
|
|
126
|
+
type: "button",
|
|
127
|
+
className: "c-action-menu",
|
|
128
|
+
"aria-label": "more options",
|
|
129
|
+
children: [
|
|
130
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("span", {
|
|
131
|
+
className: "sr-only",
|
|
132
|
+
children: "Open more options"
|
|
133
|
+
}),
|
|
134
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("span", {
|
|
135
|
+
className: "c-action-menu-dot"
|
|
136
|
+
}),
|
|
137
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("span", {
|
|
138
|
+
className: "c-action-menu-dot"
|
|
139
|
+
}),
|
|
140
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)("span", {
|
|
141
|
+
className: "c-action-menu-dot"
|
|
142
|
+
})
|
|
143
|
+
]
|
|
144
|
+
})
|
|
145
|
+
});
|
|
146
|
+
}
|
|
147
|
+
ActionMenu.Item = Item2;
|
|
148
|
+
|
|
149
|
+
// src/avatar/avatar.tsx
|
|
150
|
+
var import_react = require("react");
|
|
151
|
+
var import_class_variance_authority3 = require("class-variance-authority");
|
|
152
|
+
|
|
153
|
+
// src/avatar/get-initials.ts
|
|
154
|
+
var getInitials = (name) => {
|
|
155
|
+
const [first, second] = name.split(" ");
|
|
156
|
+
const initials = `${first?.charAt(0) ?? ""}${second?.charAt(0) ?? ""}`;
|
|
157
|
+
return initials.toUpperCase();
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
// src/avatar/avatar.tsx
|
|
161
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
162
|
+
var avatarClassName = (0, import_class_variance_authority3.cva)(["c-avatar"], {
|
|
163
|
+
variants: {
|
|
164
|
+
size: {
|
|
165
|
+
md: "c-avatar-md",
|
|
166
|
+
lg: "c-avatar-lg",
|
|
167
|
+
xl: "c-avatar-xl",
|
|
168
|
+
"2xl": "c-avatar-2xl"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
defaultVariants: {
|
|
172
|
+
size: "md"
|
|
173
|
+
}
|
|
174
|
+
});
|
|
175
|
+
var Avatar = (0, import_react.forwardRef)(({ name, size, className, ...delegated }, ref) => {
|
|
176
|
+
return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", {
|
|
177
|
+
ref,
|
|
178
|
+
...delegated,
|
|
179
|
+
title: name,
|
|
180
|
+
className: avatarClassName({ size, className }),
|
|
181
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("span", {
|
|
182
|
+
className: "c-avatar-initials",
|
|
183
|
+
children: getInitials(name)
|
|
184
|
+
})
|
|
185
|
+
});
|
|
186
|
+
});
|
|
187
|
+
Avatar.displayName = "Avatar";
|
|
188
|
+
|
|
189
|
+
// src/button/button.tsx
|
|
190
|
+
var import_react3 = require("react");
|
|
191
|
+
var import_class_variance_authority5 = require("class-variance-authority");
|
|
192
|
+
|
|
193
|
+
// src/spinner/index.tsx
|
|
194
|
+
var import_class_variance_authority4 = require("class-variance-authority");
|
|
195
|
+
var import_react2 = require("react");
|
|
196
|
+
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
197
|
+
var realSize = 40;
|
|
198
|
+
var Spinner = (0, import_react2.forwardRef)(
|
|
199
|
+
({ children, className, color = "currentColor", size = 30, strokeSize, ...delegated }, ref) => {
|
|
200
|
+
const viewSize = size || realSize;
|
|
201
|
+
const sizeHalf = realSize / 2;
|
|
202
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", {
|
|
203
|
+
ref,
|
|
204
|
+
className: (0, import_class_variance_authority4.cx)("c-spinner", className),
|
|
205
|
+
"data-testid": "loading-spinner",
|
|
206
|
+
...delegated,
|
|
207
|
+
children: [
|
|
208
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("svg", {
|
|
209
|
+
viewBox: `0 0 ${realSize} ${realSize}`,
|
|
210
|
+
x: "0px",
|
|
211
|
+
y: "0px",
|
|
212
|
+
style: { width: viewSize, height: viewSize },
|
|
213
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("circle", {
|
|
214
|
+
cx: "20",
|
|
215
|
+
cy: "20",
|
|
216
|
+
r: "18",
|
|
217
|
+
style: {
|
|
218
|
+
stroke: color,
|
|
219
|
+
strokeWidth: strokeSize ? strokeSize : viewSize / 10,
|
|
220
|
+
strokeLinecap: "round",
|
|
221
|
+
strokeDasharray: size < 16 ? size * 6 : size * 3.5,
|
|
222
|
+
transformOrigin: `${sizeHalf}px ${sizeHalf}px 0`
|
|
223
|
+
},
|
|
224
|
+
className: "c-spinner-artifact"
|
|
225
|
+
})
|
|
226
|
+
}),
|
|
227
|
+
children && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", {
|
|
228
|
+
className: "c-spinner-children",
|
|
229
|
+
style: { fontSize: size ? `${size * 0.75}px` : "1em" },
|
|
230
|
+
children
|
|
231
|
+
})
|
|
232
|
+
]
|
|
233
|
+
});
|
|
234
|
+
}
|
|
235
|
+
);
|
|
236
|
+
Spinner.displayName = "Spinner";
|
|
237
|
+
|
|
238
|
+
// src/button/button.tsx
|
|
239
|
+
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
240
|
+
var buttonTokens = {
|
|
241
|
+
variant: {
|
|
242
|
+
default: "c-btn",
|
|
243
|
+
elevate: "c-btn-elevate"
|
|
244
|
+
},
|
|
245
|
+
intent: {
|
|
246
|
+
default: "c-btn",
|
|
247
|
+
action: "c-btn-action",
|
|
248
|
+
danger: "c-btn-danger"
|
|
249
|
+
},
|
|
250
|
+
size: {
|
|
251
|
+
xs: "c-btn-xs",
|
|
252
|
+
sm: "c-btn-sm",
|
|
253
|
+
md: "c-btn-md",
|
|
254
|
+
lg: "c-btn-lg"
|
|
255
|
+
}
|
|
256
|
+
};
|
|
257
|
+
var buttonStyles = (0, import_class_variance_authority5.cva)("c-btn", {
|
|
258
|
+
variants: {
|
|
259
|
+
intent: {
|
|
260
|
+
default: "",
|
|
261
|
+
action: "",
|
|
262
|
+
danger: ""
|
|
263
|
+
},
|
|
264
|
+
variant: {
|
|
265
|
+
default: "",
|
|
266
|
+
elevate: ""
|
|
267
|
+
},
|
|
268
|
+
status: {
|
|
269
|
+
loading: "c-btn-loading"
|
|
270
|
+
},
|
|
271
|
+
size: {
|
|
272
|
+
xs: "c-btn-xs",
|
|
273
|
+
sm: "c-btn-sm",
|
|
274
|
+
md: "c-btn-md",
|
|
275
|
+
lg: "c-btn-lg"
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
compoundVariants: [
|
|
279
|
+
{
|
|
280
|
+
intent: "default",
|
|
281
|
+
variant: "elevate",
|
|
282
|
+
class: "c-btn-elevate"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
intent: "action",
|
|
286
|
+
variant: "default",
|
|
287
|
+
class: "c-btn-action"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
intent: "danger",
|
|
291
|
+
variant: "default",
|
|
292
|
+
class: "c-btn-danger"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
intent: "danger",
|
|
296
|
+
variant: "elevate",
|
|
297
|
+
class: "c-btn-danger c-btn-elevate"
|
|
298
|
+
}
|
|
299
|
+
],
|
|
300
|
+
defaultVariants: {
|
|
301
|
+
intent: "default",
|
|
302
|
+
variant: "default",
|
|
303
|
+
size: "sm"
|
|
304
|
+
}
|
|
305
|
+
});
|
|
306
|
+
var spinnerSizeMap = {
|
|
307
|
+
xs: 10,
|
|
308
|
+
sm: 12,
|
|
309
|
+
md: 14,
|
|
310
|
+
lg: 16
|
|
311
|
+
};
|
|
312
|
+
var Button = (0, import_react3.forwardRef)(
|
|
313
|
+
({
|
|
314
|
+
children,
|
|
315
|
+
className,
|
|
316
|
+
type = "button",
|
|
317
|
+
as: El = "button",
|
|
318
|
+
size,
|
|
319
|
+
variant,
|
|
320
|
+
intent,
|
|
321
|
+
prepend,
|
|
322
|
+
append,
|
|
323
|
+
status,
|
|
324
|
+
...delegated
|
|
325
|
+
}, ref) => {
|
|
326
|
+
let isAnchor = false;
|
|
327
|
+
if ("to" in delegated || "href" in delegated) {
|
|
328
|
+
isAnchor = true;
|
|
329
|
+
}
|
|
330
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(El, {
|
|
331
|
+
ref,
|
|
332
|
+
type: isAnchor ? void 0 : type,
|
|
333
|
+
className: buttonStyles({ size, variant, intent, status, className }),
|
|
334
|
+
...delegated,
|
|
335
|
+
children: [
|
|
336
|
+
!prepend ? null : /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", {
|
|
337
|
+
className: "c-btn__prepend",
|
|
338
|
+
children: prepend
|
|
339
|
+
}),
|
|
340
|
+
children,
|
|
341
|
+
status !== "loading" ? null : /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", {
|
|
342
|
+
className: "c-btn__loading-spinner",
|
|
343
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Spinner, {
|
|
344
|
+
size: size ? spinnerSizeMap[size] : spinnerSizeMap.md
|
|
345
|
+
})
|
|
346
|
+
}),
|
|
347
|
+
!append ? null : /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", {
|
|
348
|
+
className: "c-btn__append",
|
|
349
|
+
children: append
|
|
350
|
+
})
|
|
351
|
+
]
|
|
352
|
+
});
|
|
353
|
+
}
|
|
354
|
+
);
|
|
355
|
+
Button.displayName = "Button";
|
|
356
|
+
|
|
357
|
+
// src/card/card.tsx
|
|
358
|
+
var import_class_variance_authority6 = require("class-variance-authority");
|
|
359
|
+
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
360
|
+
var cardStyles = (0, import_class_variance_authority6.cva)("c-card", {
|
|
361
|
+
variants: {
|
|
362
|
+
variant: {
|
|
363
|
+
default: "c-card",
|
|
364
|
+
elevate: "c-card-elevate"
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
defaultVariants: {
|
|
368
|
+
variant: "default"
|
|
369
|
+
}
|
|
370
|
+
});
|
|
371
|
+
function Card({ children, className, variant, ...delegated }) {
|
|
372
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("section", {
|
|
373
|
+
className: cardStyles({ variant, className }),
|
|
374
|
+
...delegated,
|
|
375
|
+
children
|
|
376
|
+
});
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
// src/card/index.ts
|
|
380
|
+
var cardToken = "c-card";
|
|
381
|
+
|
|
382
|
+
// src/checkbox/checkbox.tsx
|
|
383
|
+
var CheckboxPrimitive = __toESM(require("@radix-ui/react-checkbox"));
|
|
384
|
+
var import_react4 = require("react");
|
|
385
|
+
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
386
|
+
var Checkbox = (0, import_react4.forwardRef)((props, ref) => {
|
|
387
|
+
return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(CheckboxPrimitive.Root, {
|
|
388
|
+
...props,
|
|
389
|
+
ref,
|
|
390
|
+
className: "c-checkbox",
|
|
391
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(CheckboxPrimitive.Indicator, {
|
|
392
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("svg", {
|
|
393
|
+
viewBox: "0 0 9 9",
|
|
394
|
+
fill: "none",
|
|
395
|
+
className: "c-checkbox__svg",
|
|
396
|
+
children: [
|
|
397
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", {
|
|
398
|
+
className: "c-checkbox__svg-p1",
|
|
399
|
+
d: "M1.12 5.51a.559.559 0 01.832-.101l2.201 1.953-.427.624a.326.326 0 01-.486.06L1.21 6.245a.559.559 0 01-.09-.734z"
|
|
400
|
+
}),
|
|
401
|
+
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", {
|
|
402
|
+
className: "c-checkbox__svg-p2",
|
|
403
|
+
d: "M7.883 1.087c.043.03.053.09.023.132L3.669 7.132l-.154-.105L7.754 1.11a.093.093 0 01.129-.023z"
|
|
404
|
+
})
|
|
405
|
+
]
|
|
406
|
+
})
|
|
407
|
+
})
|
|
408
|
+
});
|
|
409
|
+
});
|
|
410
|
+
Checkbox.displayName = "Checkbox";
|
|
411
|
+
|
|
412
|
+
// src/dialog/destroyFns.ts
|
|
413
|
+
var destroyFns = [];
|
|
414
|
+
|
|
415
|
+
// src/dialog/dialog.tsx
|
|
416
|
+
var DialogPrimitive = __toESM(require("@radix-ui/react-dialog"));
|
|
417
|
+
var import_class_variance_authority7 = require("class-variance-authority");
|
|
418
|
+
|
|
419
|
+
// src/iconography/arrow.tsx
|
|
420
|
+
var import_react5 = require("react");
|
|
421
|
+
var import_jsx_runtime11 = require("react/jsx-runtime");
|
|
422
|
+
var Arrow = (0, import_react5.forwardRef)((delegated, ref) => {
|
|
423
|
+
return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("svg", {
|
|
118
424
|
ref,
|
|
119
425
|
width: "10",
|
|
120
426
|
height: "10",
|
|
121
427
|
viewBox: "0 0 10 10",
|
|
122
428
|
fill: "currentColor",
|
|
123
429
|
...delegated,
|
|
124
|
-
children: /* @__PURE__ */ (0,
|
|
430
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", {
|
|
125
431
|
d: "M4.14995 9.85C4.24341 9.94161 4.36907 9.99293 4.49995 9.99293C4.63083 9.99293 4.75649 9.94161 4.84995 9.85L8.03995 6.67C8.09195 6.6248 8.13404 6.56934 8.16359 6.5071C8.19314 6.44486 8.20951 6.37719 8.21167 6.30832C8.21383 6.23946 8.20173 6.17089 8.17614 6.10693C8.15055 6.04296 8.11201 5.98497 8.06295 5.9366C8.01389 5.88823 7.95536 5.85052 7.89104 5.82584C7.82671 5.80116 7.75798 5.79003 7.68915 5.79317C7.62033 5.79631 7.55289 5.81363 7.49108 5.84406C7.42927 5.87449 7.37441 5.91737 7.32995 5.97L4.49995 8.78L1.66995 5.96C1.62475 5.908 1.56929 5.86591 1.50705 5.83636C1.44481 5.80681 1.37714 5.79044 1.30827 5.78828C1.23941 5.78612 1.17084 5.79822 1.10688 5.82381C1.04291 5.8494 0.98492 5.88794 0.936549 5.937C0.888179 5.98606 0.850469 6.04459 0.825787 6.10892C0.801105 6.17324 0.789983 6.24197 0.79312 6.3108C0.796256 6.37962 0.813582 6.44706 0.844012 6.50887C0.874442 6.57068 0.917318 6.62554 0.96995 6.67L4.14995 9.85ZM4.49995 -2.18557e-08C4.22381 -3.39261e-08 3.99995 0.223858 3.99995 0.5L3.99995 9.5L4.99995 9.5L4.99995 0.5C4.99995 0.223857 4.77609 -9.78527e-09 4.49995 -2.18557e-08Z"
|
|
126
432
|
})
|
|
127
433
|
});
|
|
128
434
|
});
|
|
129
435
|
Arrow.displayName = "ArrowIcon";
|
|
130
436
|
|
|
131
|
-
// src/
|
|
132
|
-
var
|
|
133
|
-
var
|
|
134
|
-
var
|
|
135
|
-
return /* @__PURE__ */ (0,
|
|
437
|
+
// src/iconography/atom.tsx
|
|
438
|
+
var import_react6 = require("react");
|
|
439
|
+
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
440
|
+
var Atom = (0, import_react6.forwardRef)((delegated, ref) => {
|
|
441
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg", {
|
|
442
|
+
ref,
|
|
443
|
+
width: "24",
|
|
444
|
+
height: "27",
|
|
445
|
+
viewBox: "0 0 24 27",
|
|
446
|
+
fill: "none",
|
|
447
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
448
|
+
...delegated,
|
|
449
|
+
children: [
|
|
450
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", {
|
|
451
|
+
fill: "#528693",
|
|
452
|
+
d: "M18.068 3.103c.935 0 .938-1.5 0-1.5s-.938 1.5 0 1.5ZM5.911 2.928c.641 0 .643-1.027 0-1.027-.642 0-.643 1.027 0 1.027ZM4.294 8.862c.577 0 .578-.925 0-.925s-.578.925 0 .925ZM6.03 23.058a.39.39 0 0 0 .265-.126.413.413 0 0 0 0-.558.39.39 0 0 0-.264-.126.39.39 0 0 0-.264.126.413.413 0 0 0 0 .558.39.39 0 0 0 .264.126ZM16.93 23.13c.674 0 .675-1.078 0-1.078s-.675 1.078 0 1.078ZM18.966 17.685c.885 0 .887-1.418 0-1.418-.886 0-.886 1.418 0 1.418ZM11.6 23.619a.217.217 0 0 0 .15-.069.23.23 0 0 0 0-.315.216.216 0 0 0-.15-.068.216.216 0 0 0-.15.068.23.23 0 0 0 0 .315c.039.042.093.067.15.069ZM22.291 13.446l.043.031a.903.903 0 0 0 1.263-.344.972.972 0 0 0 0-.952.936.936 0 0 0-.34-.348.902.902 0 0 0-.924.004l-.042.03a.905.905 0 0 0-.319.33.937.937 0 0 0 0 .922c.077.136.187.25.319.329v-.002ZM11.496 26.097c3.17 0 5.738-.359 5.738-.8 0-.443-2.569-.802-5.738-.802-3.17 0-5.738.359-5.738.801 0 .442 2.569.8 5.738.8Z",
|
|
453
|
+
opacity: ".05"
|
|
454
|
+
}),
|
|
455
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", {
|
|
456
|
+
fill: "#FF99DB",
|
|
457
|
+
d: "M11.496 16.417c1.95 0 3.531-1.629 3.531-3.638 0-2.01-1.581-3.638-3.531-3.638-1.95 0-3.531 1.629-3.531 3.638 0 2.01 1.58 3.638 3.53 3.638Z"
|
|
458
|
+
}),
|
|
459
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", {
|
|
460
|
+
fill: "#528693",
|
|
461
|
+
d: "M8.252 12.78c0-.689.207-1.36.591-1.923.385-.563.929-.99 1.557-1.222a3.153 3.153 0 0 1 1.956-.076 3.236 3.236 0 0 1 1.642 1.096 3.424 3.424 0 0 1 .285 3.834 3.278 3.278 0 0 1-1.46 1.341 3.156 3.156 0 0 1-1.945.232A3.259 3.259 0 0 1 9 14.9a3.437 3.437 0 0 1-.748-2.122.3.3 0 0 0-.088-.202.283.283 0 0 0-.398 0 .3.3 0 0 0-.088.202c0 .81.243 1.602.695 2.265a3.834 3.834 0 0 0 1.834 1.439c.74.273 1.545.305 2.304.09a3.81 3.81 0 0 0 1.934-1.293 4.03 4.03 0 0 0 .33-4.516 3.859 3.859 0 0 0-1.723-1.577 3.715 3.715 0 0 0-2.29-.268 3.85 3.85 0 0 0-2.203 1.37 4.059 4.059 0 0 0-.881 2.49.3.3 0 0 0 .088.202.283.283 0 0 0 .398 0 .3.3 0 0 0 .088-.202Z"
|
|
462
|
+
}),
|
|
463
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", {
|
|
464
|
+
fill: "#528693",
|
|
465
|
+
d: "M9.025 12.946a2.787 2.787 0 0 1 .78-1.91 2.626 2.626 0 0 1 1.854-.803.157.157 0 0 0 .113-.048.167.167 0 0 0 0-.232.157.157 0 0 0-.113-.048c-.783 0-1.533.32-2.087.891a3.093 3.093 0 0 0-.866 2.15c0 .044.017.086.047.116a.157.157 0 0 0 .225 0 .167.167 0 0 0 .047-.116ZM8.972 13.854c.033 0 .066-.01.094-.029a.17.17 0 0 0 .062-.079.137.137 0 0 0 .014-.068l-.006-.046a.176.176 0 0 0-.044-.078l-.034-.027a.167.167 0 0 0-.086-.025.174.174 0 0 0-.12.053.183.183 0 0 0-.05.123l.005.046c.008.03.024.056.044.078l.035.028a.166.166 0 0 0 .086.023v.001ZM12.136 10.204v.004a.112.112 0 0 0 .026.051c.01.016.024.03.04.039l.036.015a.145.145 0 0 0 .077 0l.034-.015a.112.112 0 0 0 .041-.039.076.076 0 0 0 .019-.033.118.118 0 0 0 .012-.057l-.005-.04-.014-.035a.113.113 0 0 0-.038-.042.107.107 0 0 0-.05-.027.109.109 0 0 0-.057-.003.104.104 0 0 0-.054.018l-.03.024a.148.148 0 0 0-.037.065v.004a.136.136 0 0 0 0 .07Z"
|
|
466
|
+
}),
|
|
467
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", {
|
|
468
|
+
fill: "#528693",
|
|
469
|
+
d: "M6.023 12.779a23.383 23.383 0 0 1 1.024-7.096c.517-1.608 1.283-3.336 2.601-4.417.989-.81 2.233-.962 3.322-.27 1.369.87 2.196 2.529 2.747 4.027a21.916 21.916 0 0 1 1.234 6.778 24.482 24.482 0 0 1-.779 7.302c-.471 1.725-1.178 3.543-2.437 4.827-.881.898-2.097 1.4-3.294.86-1.407-.632-2.294-2.18-2.89-3.56-.883-2.039-1.303-4.3-1.46-6.515a27.856 27.856 0 0 1-.068-1.936.278.278 0 0 0-.082-.187.262.262 0 0 0-.369 0 .278.278 0 0 0-.081.187c.004 2.518.314 5.078 1.117 7.465.567 1.685 1.403 3.46 2.818 4.559a3.229 3.229 0 0 0 3.73.283c1.471-.883 2.37-2.582 2.98-4.158.88-2.267 1.261-4.74 1.347-7.17a24.885 24.885 0 0 0-.84-7.606c-.509-1.799-1.28-3.699-2.628-5.008C12.998.158 11.617-.328 10.28.247 8.781.892 7.8 2.46 7.15 3.92c-.951 2.138-1.408 4.494-1.582 6.829-.05.675-.074 1.352-.075 2.03.002.07.032.138.081.187a.262.262 0 0 0 .369 0 .278.278 0 0 0 .081-.187Z"
|
|
470
|
+
}),
|
|
471
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", {
|
|
472
|
+
fill: "#528693",
|
|
473
|
+
d: "M8.64 7.969c2.066-1.293 4.315-2.336 6.686-2.86 1.61-.357 3.548-.57 5.086.197.576.27 1.048.73 1.34 1.309.24.543.327 1.145.25 1.737-.164 1.605-1.1 3.108-2.06 4.333a21.318 21.318 0 0 1-4.85 4.42 22.562 22.562 0 0 1-6.661 3.155c-1.718.468-3.69.777-5.416.176-1.207-.422-2.038-1.42-2.049-2.758-.012-1.547.808-3.03 1.665-4.243a19.773 19.773 0 0 1 4.556-4.482c.474-.345.958-.673 1.454-.984.29-.184.024-.657-.269-.473a22.835 22.835 0 0 0-5.39 4.61C1.87 13.438.81 15.035.512 16.801c-.235 1.395.136 2.779 1.293 3.62 1.41 1.023 3.364.982 4.994.743 2.442-.36 4.8-1.342 6.944-2.575a23.78 23.78 0 0 0 5.757-4.55c1.223-1.345 2.372-2.932 2.86-4.732.359-1.328.254-2.821-.758-3.823-1.204-1.192-3.091-1.326-4.666-1.182-2.378.218-4.688 1.076-6.806 2.183-.599.313-1.183.651-1.757 1.01-.293.183-.026.657.268.473Z"
|
|
474
|
+
}),
|
|
475
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", {
|
|
476
|
+
fill: "#528693",
|
|
477
|
+
d: "M14.62 7.496c-2.17-1.357-4.551-2.454-7.05-2.966-1.725-.353-3.736-.512-5.352.35a3.343 3.343 0 0 0-1.39 1.404 3.481 3.481 0 0 0-.38 1.967c.135 1.715 1.061 3.29 2.067 4.615a21.487 21.487 0 0 0 5.078 4.687 22.835 22.835 0 0 0 7.03 3.29c1.783.463 3.854.752 5.624.074 1.321-.507 2.24-1.618 2.306-3.095.074-1.64-.756-3.25-1.652-4.546-1.285-1.86-2.956-3.421-4.755-4.742a24.734 24.734 0 0 0-1.526-1.037c-.293-.185-.56.289-.269.473a22.565 22.565 0 0 1 5.134 4.347c1.078 1.26 2.095 2.754 2.443 4.424.258 1.237-.018 2.535-1.092 3.266-1.361.927-3.228.846-4.768.588-2.321-.389-4.55-1.322-6.593-2.502a23.435 23.435 0 0 1-5.472-4.295c-1.187-1.278-2.314-2.784-2.819-4.501-.351-1.197-.326-2.555.618-3.46C2.94 4.75 4.755 4.716 6.204 4.867c2.261.235 4.469 1.078 6.48 2.139.567.3 1.123.623 1.668.964.06.032.131.04.197.02a.267.267 0 0 0 .155-.126.282.282 0 0 0-.084-.367Z"
|
|
478
|
+
}),
|
|
479
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", {
|
|
480
|
+
fill: "#fff",
|
|
481
|
+
d: "M11.963 14.285h.003c.2-.04.384-.14.53-.287.175-.111.317-.27.41-.46l.159-.388c.065-.21.075-.434.028-.649a1.234 1.234 0 0 0-.188-.604l-.246-.329-.32-.254a1.152 1.152 0 0 0-.585-.193 1.164 1.164 0 0 0-.63.03l-.377.163c-.343.228-.6.571-.725.971l-.056.433c-.01.217.037.433.136.626.036.136.106.26.203.359.11.176.263.32.442.418l.377.164c.275.078.564.078.84 0h-.001Z"
|
|
482
|
+
}),
|
|
483
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", {
|
|
484
|
+
fill: "#FF99DB",
|
|
485
|
+
d: "m11.172 13.1.017.019.105.083c.057.038.124.06.192.063a.253.253 0 0 0 .138 0 .379.379 0 0 0 .191-.063l.105-.083.08-.108a.403.403 0 0 0 .062-.199.414.414 0 0 0-.009-.212l-.002-.026a.548.548 0 0 0-.135-.24.524.524 0 0 0-.232-.139l-.14-.019a.513.513 0 0 0-.265.074.605.605 0 0 0-.243.324.562.562 0 0 0 .136.527Z"
|
|
486
|
+
})
|
|
487
|
+
]
|
|
488
|
+
});
|
|
489
|
+
});
|
|
490
|
+
Atom.displayName = "AtomIcon";
|
|
491
|
+
|
|
492
|
+
// src/iconography/cancel.tsx
|
|
493
|
+
var import_react7 = require("react");
|
|
494
|
+
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
495
|
+
var Cancel = (0, import_react7.forwardRef)((delegated, ref) => {
|
|
496
|
+
return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("svg", {
|
|
136
497
|
ref,
|
|
137
498
|
width: "34",
|
|
138
499
|
height: "34",
|
|
@@ -140,7 +501,7 @@ var Cancel = (0, import_react2.forwardRef)((delegated, ref) => {
|
|
|
140
501
|
fill: "none",
|
|
141
502
|
xmlns: "http://www.w3.org/2000/svg",
|
|
142
503
|
...delegated,
|
|
143
|
-
children: /* @__PURE__ */ (0,
|
|
504
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("path", {
|
|
144
505
|
d: "m27.4301 24.4325-.1299.1299c-.17.15-.6497.5798-1.1695 1.0595l-1.7392 1.5993-.1499.05a.2783.2783 0 0 1-.2299-.14l-3.6183-3.7182-2.6088-2.6388a1.0488 1.0488 0 0 0-.7926-.3838 1.006 1.006 0 0 0-.7096.2899l-5.6474 5.6773-.7696.7496-.07.18h-.2599l-2.6987-2.7088a.3813.3813 0 0 1-.18-.2598l.02-.14 5.6674-5.6173 1.2394-1.2395a.2995.2995 0 0 0 .1-.2398.2903.2903 0 0 0-.1-.2299l-1.8591-1.8692-2.8487-2.8786-1.5692-1.5992-.6197-.6597-.1-.09v-.12a.3689.3689 0 0 1 .12-.2398l2.7786-2.6588.11-.09h.14l.1099.06 5.7273 5.9272.8696.8796a.6998.6998 0 0 0 .9995 0l5.9672-6.0071.1799-.18a4.5467 4.5467 0 0 1 .5597-.5197.5585.5585 0 0 1 .19-.1c.1099 0 .2099.13.2998.22l.08.0899 2.039 2.109s.1899.2.2299.2499a.864.864 0 0 0 .1399.13.7704.7704 0 0 1 .13.1199c.0899.1499 0 .2598-.1799.4298l-6.1172 6.0871a1.3994 1.3994 0 0 0-.5197.7696.9287.9287 0 0 0 .2899.7997l3.0185 2.9786 3.4284 3.1785a2.001 2.001 0 0 1 .1999.2398.2564.2564 0 0 1 .0853.1524.2564.2564 0 0 1-.0323.1715Z",
|
|
145
506
|
fill: "currentColor"
|
|
146
507
|
})
|
|
@@ -148,87 +509,232 @@ var Cancel = (0, import_react2.forwardRef)((delegated, ref) => {
|
|
|
148
509
|
});
|
|
149
510
|
Cancel.displayName = "CancelIcon";
|
|
150
511
|
|
|
151
|
-
// src/
|
|
152
|
-
var
|
|
153
|
-
var
|
|
154
|
-
var
|
|
155
|
-
return /* @__PURE__ */ (0,
|
|
512
|
+
// src/iconography/copy.tsx
|
|
513
|
+
var import_react8 = require("react");
|
|
514
|
+
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
515
|
+
var Copy = (0, import_react8.forwardRef)((delegated, ref) => {
|
|
516
|
+
return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("svg", {
|
|
156
517
|
ref,
|
|
157
|
-
width: "
|
|
158
|
-
height: "
|
|
159
|
-
viewBox: "0 0
|
|
518
|
+
width: "14",
|
|
519
|
+
height: "16",
|
|
520
|
+
viewBox: "0 0 14 16",
|
|
160
521
|
fill: "none",
|
|
161
522
|
xmlns: "http://www.w3.org/2000/svg",
|
|
162
523
|
...delegated,
|
|
163
524
|
children: [
|
|
164
|
-
/* @__PURE__ */ (0,
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
fill: "#
|
|
525
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("rect", {
|
|
526
|
+
x: ".5",
|
|
527
|
+
y: "3.5",
|
|
528
|
+
width: "9",
|
|
529
|
+
height: "12",
|
|
530
|
+
rx: "2.5",
|
|
531
|
+
fill: "#EAEBEE",
|
|
532
|
+
stroke: "#80878D",
|
|
533
|
+
strokeDasharray: "3 2"
|
|
534
|
+
}),
|
|
535
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("rect", {
|
|
536
|
+
x: "4.5",
|
|
537
|
+
y: ".5",
|
|
538
|
+
width: "9",
|
|
539
|
+
height: "12",
|
|
540
|
+
rx: "2.5",
|
|
541
|
+
fill: "#EAEBEE",
|
|
542
|
+
stroke: "#80878D"
|
|
181
543
|
})
|
|
182
544
|
]
|
|
183
545
|
});
|
|
184
546
|
});
|
|
185
|
-
|
|
547
|
+
Copy.displayName = "CopyIcon";
|
|
186
548
|
|
|
187
|
-
// src/
|
|
188
|
-
var
|
|
189
|
-
var
|
|
190
|
-
var
|
|
191
|
-
return /* @__PURE__ */ (0,
|
|
549
|
+
// src/iconography/crystal.tsx
|
|
550
|
+
var import_react9 = require("react");
|
|
551
|
+
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
552
|
+
var Crystal = (0, import_react9.forwardRef)((delegated, ref) => {
|
|
553
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("svg", {
|
|
192
554
|
ref,
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
555
|
+
width: "27",
|
|
556
|
+
height: "27",
|
|
557
|
+
viewBox: "0 0 27 27",
|
|
196
558
|
fill: "none",
|
|
197
|
-
|
|
559
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
198
560
|
...delegated,
|
|
199
561
|
children: [
|
|
200
|
-
/* @__PURE__ */ (0,
|
|
201
|
-
fill: "#
|
|
202
|
-
d: "
|
|
562
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
563
|
+
fill: "#528693",
|
|
564
|
+
d: "M13.945 26.805c3.479 0 6.299-.386 6.299-.861 0-.476-2.82-.861-6.299-.861-3.478 0-6.298.385-6.298.86 0 .476 2.82.862 6.298.862ZM25.356 5.894l-2.998-2.938-1.98 4.77 4.978-1.832ZM26.995 14.579l-.341-3.357-3.644 1.896 3.985 1.46ZM.896 14.579l.341-3.357 3.643 1.896-3.984 1.46ZM2.563 5.894l2.999-2.938 1.98 4.77-4.979-1.832Z",
|
|
565
|
+
opacity: ".15"
|
|
203
566
|
}),
|
|
204
|
-
/* @__PURE__ */ (0,
|
|
567
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
568
|
+
fill: "#AEF9F6",
|
|
569
|
+
d: "m23.267 13.32-1.348-.562-1.444-6.409 2.792 6.971Z"
|
|
570
|
+
}),
|
|
571
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
572
|
+
fill: "#fff",
|
|
573
|
+
d: "M20.475 6.35 15.51 10.6l-1.412-.367 6.378-3.884Z"
|
|
574
|
+
}),
|
|
575
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
576
|
+
fill: "#fff",
|
|
577
|
+
d: "m14.732 23.732-.635-13.5 1.412.368.217.181-.994 12.951Z"
|
|
578
|
+
}),
|
|
579
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
580
|
+
fill: "#AEF9F6",
|
|
581
|
+
d: "m23.267 13.32-8.535 10.412 6.63-10.123.557-.85 1.348.56ZM21.92 12.758 15.51 10.6l4.965-4.25 1.444 6.408Z"
|
|
582
|
+
}),
|
|
583
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
584
|
+
fill: "#AEF9F6",
|
|
585
|
+
d: "m15.51 10.6 6.41 2.158-.558.85-6.63 10.124.777-13.132Z"
|
|
586
|
+
}),
|
|
587
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
205
588
|
fill: "#528693",
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
589
|
+
d: "m20.358 6.113-5.596 3.406-.782.476a.263.263 0 0 0-.145.223l.216 4.584.34 7.25.079 1.666a.27.27 0 0 0 .18.259.262.262 0 0 0 .3-.098l2.898-3.535 4.584-5.592 1.054-1.285a.267.267 0 0 0 .017-.266l-2.45-6.114-.343-.855c-.127-.316-.596-.078-.47.237l2.45 6.115.343.854.017-.266-2.898 3.535-4.584 5.592-1.054 1.285.48.162-.216-4.584-.341-7.25-.078-1.666-.145.223 5.596-3.406.782-.477c.288-.174.056-.65-.234-.473Z"
|
|
590
|
+
}),
|
|
591
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
592
|
+
fill: "#528693",
|
|
593
|
+
d: "M23.309 13.194c-.47-.196-.935-.417-1.416-.584-.556-.193-1.117-.376-1.675-.564l-4.498-1.514c-.517-.174-1.055-.288-1.582-.426-.162-.042-.246.209-.083.251.492.129.997.234 1.48.392.56.183 1.116.375 1.675.564l4.499 1.514c.516.174 1.014.409 1.517.618.156.065.239-.186.083-.251Z"
|
|
594
|
+
}),
|
|
595
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
596
|
+
fill: "#528693",
|
|
597
|
+
d: "m14.863 23.739.16-2.712.327-5.509.258-4.366.027-.449c0-.013.014-.078.005-.089.043.052-.1.109-.006.054.164-.119.319-.25.462-.395l.857-.735 3.537-3.027.073-.062-.216-.072.905 4.012.48 2.13c.01.076.026.15.05.222.042.093-.023-.039.025-.05-.04.01-.128.196-.15.228l-2.166 3.307-3.055 4.663-1.18 1.8c-.2.308-.42.61-.606.928l-.027.041a.134.134 0 0 0 .038.18.13.13 0 0 0 .18-.032l1.504-2.297 3.03-4.626 2.375-3.626c.1-.151.316-.37.29-.562-.08-.56-.254-1.124-.378-1.676l-1.037-4.603-.021-.093a.135.135 0 0 0-.088-.098.131.131 0 0 0-.128.025l-3.14 2.689-1.64 1.403c-.084.072-.203.141-.23.254a1.507 1.507 0 0 0-.014.245l-.232 3.907-.333 5.624-.13 2.194c-.022.368-.062.74-.065 1.11l-.003.049a.13.13 0 0 0 .262.014Z"
|
|
209
598
|
}),
|
|
210
|
-
/* @__PURE__ */ (0,
|
|
599
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
211
600
|
fill: "#fff",
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
601
|
+
d: "M20.692 13.37c-.28.417-.553.837-.83 1.257-.456.693-.91 1.387-1.36 2.083-.497.767-.99 1.537-1.485 2.306-.409.635-.815 1.27-1.22 1.908-.194.303-.4.602-.583.912l-.008.013a.145.145 0 0 0 .041.195.14.14 0 0 0 .195-.035l.474-.746 1.162-1.83a928.57 928.57 0 0 0 2.815-4.46c.296-.47.59-.942.894-1.407l.06-.091a.095.095 0 0 0-.027-.128.093.093 0 0 0-.128.023ZM20.92 13.108l.005.006c.08.104.22-.012.178-.12l-.002-.006c-.041-.105-.196-.068-.215.03a.117.117 0 0 0 .057.12.114.114 0 0 0 .13-.011l.005-.003c.102-.081-.012-.222-.12-.18l-.005.003a.105.105 0 0 0-.054.073.108.108 0 0 0 .022.088ZM21.084 11.8l-.002-.028c.003.036-.003-.016-.005-.032l-.008-.05a56.027 56.027 0 0 0-.237-1.25c-.147-.724-.297-1.448-.449-2.17l-.107-.496a.123.123 0 0 0-.223-.041.126.126 0 0 0-.018.092c.093.45.182.903.275 1.354.148.724.296 1.448.461 2.168.028.12.055.239.085.358l.025.098c.014.052-.006-.01.01.027l.002.01a.097.097 0 0 0 .175.032.1.1 0 0 0 .016-.073Z"
|
|
602
|
+
}),
|
|
603
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
604
|
+
fill: "#fff",
|
|
605
|
+
d: "m22.606 13.365-1.138 1.425a4396.042 4396.042 0 0 0-2.227 2.793c-.031.04.034.083.065.044l1.133-1.429 1.803-2.277.413-.522c.025-.03-.026-.064-.05-.034h.001ZM22.54 12.58c-.21-.569-.417-1.138-.638-1.703-.018-.047-.088-.011-.07.035.219.565.436 1.13.653 1.695.014.037.068.009.054-.028Z",
|
|
606
|
+
opacity: ".25"
|
|
607
|
+
}),
|
|
608
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
609
|
+
fill: "#fff",
|
|
610
|
+
d: "M16.367 11.99a.23.23 0 0 0 .286-.152.237.237 0 0 0-.139-.294.23.23 0 0 0-.173.017.235.235 0 0 0-.102.31.233.233 0 0 0 .128.118ZM16.051 12.237l-.007.01a.16.16 0 0 0-.01.16l.022.033a.154.154 0 0 0 .069.046.156.156 0 0 0 .181-.063.162.162 0 0 0 .026-.08v-.012l-.003-.04a.114.114 0 0 0-.024-.054.077.077 0 0 0-.026-.03.117.117 0 0 0-.052-.031l-.04-.008-.04.003a.172.172 0 0 0-.095.066h-.001ZM16.749 10.5a.084.084 0 0 0 .107-.053.085.085 0 0 0-.118-.104.085.085 0 0 0-.038.115c.01.02.027.035.049.043ZM16.417 10.402a.085.085 0 0 0 .104-.055.087.087 0 0 0-.05-.108.084.084 0 0 0-.105.056.086.086 0 0 0 .05.107ZM16.69 10.169a.075.075 0 0 0 .092-.05.076.076 0 0 0-.045-.096.075.075 0 0 0-.092.05.077.077 0 0 0 .044.096ZM16.043 13.249l.011.004a.087.087 0 0 0 .108-.055l.004-.022a.088.088 0 0 0-.008-.043l-.013-.019a.085.085 0 0 0-.037-.025l-.012-.004a.061.061 0 0 0-.033-.003.061.061 0 0 0-.031.008.096.096 0 0 0-.043.05l-.004.022c0 .015.002.03.009.043l.012.018c.01.011.023.02.037.025v.001Z"
|
|
215
611
|
}),
|
|
216
|
-
/* @__PURE__ */ (0,
|
|
612
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
613
|
+
fill: "#AEF9F6",
|
|
614
|
+
d: "m18.609 12.145-1.93.258L9.838 1.35l8.771 10.795Z"
|
|
615
|
+
}),
|
|
616
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
617
|
+
fill: "#fff",
|
|
618
|
+
d: "M9.837 1.35 7.842 14.228l-1.875.527L9.837 1.35Z"
|
|
619
|
+
}),
|
|
620
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
621
|
+
fill: "#fff",
|
|
622
|
+
d: "m14.69 25.314-8.723-10.56 1.875-.527.37.063 6.479 11.024Z"
|
|
623
|
+
}),
|
|
624
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
625
|
+
fill: "#AEF9F6",
|
|
626
|
+
d: "m18.609 12.144-3.918 13.17 1.906-11.552.082-1.359 1.93-.259ZM16.679 12.403l-8.837 1.824L9.837 1.35l6.842 11.053Z"
|
|
627
|
+
}),
|
|
628
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
629
|
+
fill: "#AEF9F6",
|
|
630
|
+
d: "m7.842 14.227 8.837-1.824-.082 1.36-1.906 11.551-6.849-11.087Z"
|
|
631
|
+
}),
|
|
632
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
217
633
|
fill: "#528693",
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
634
|
+
d: "M9.506 1.238 8.196 5.77l-2.085 7.22c-.156.54-.33 1.078-.469 1.623-.097.385.45.842.669 1.107l4.482 5.424c1.191 1.443 2.35 2.922 3.578 4.333l.06.072a.352.352 0 0 0 .592-.122l1.357-4.561 2.123-7.138c.144-.483.333-.973.437-1.467.05-.24-.08-.367-.213-.531l-.551-.678-4.5-5.536c-1.172-1.442-2.31-2.92-3.52-4.33-.02-.023-.038-.047-.057-.071-.286-.352-.808.12-.522.472l2.967 3.65 4.725 5.814 1.08 1.327-.072-.35-1.324 4.454-2.11 7.094-.483 1.624.592-.122-2.95-3.571-4.7-5.69-1.075-1.301.071.35 1.31-4.535 2.085-7.22.476-1.647c.126-.437-.537-.665-.663-.227Z"
|
|
635
|
+
}),
|
|
636
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
637
|
+
fill: "#528693",
|
|
638
|
+
d: "M18.574 11.97c-.673.091-1.357.148-2.023.28-.77.152-1.539.317-2.31.476l-6.2 1.28c-.713.147-1.41.377-2.11.573-.215.06-.147.407.07.347.654-.184 1.306-.402 1.97-.545.767-.165 1.539-.318 2.309-.477l6.202-1.28c.712-.146 1.442-.21 2.163-.308.223-.03.152-.376-.07-.346h-.001Z"
|
|
639
|
+
}),
|
|
640
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
641
|
+
fill: "#528693",
|
|
642
|
+
d: "m14.847 25.234-2.316-3.75-3.669-5.938-.571-.925c-.063-.102-.172-.388-.278-.45-.048-.028-.015.075.007.047.023-.03.022-.141.028-.178l.125-.81 1.025-6.616.516-3.326.183-1.18a5.54 5.54 0 0 0 .102-.658.661.661 0 0 1 .013-.087l-.33.068 2.325 3.757 3.67 5.928.566.915c.053.085.174.39.269.434.037.017.024-.093-.012-.045-.026.035-.022.146-.029.188l-.126.823-1.021 6.632c-.265 1.714-.59 3.431-.794 5.154l-.014.087c-.034.225.316.247.35.024l.672-4.367 1.075-6.974.162-1.056c.037-.163.063-.328.076-.494a.473.473 0 0 0-.11-.264l-.415-.671-3.527-5.699c-.92-1.485-1.83-2.978-2.76-4.457l-.045-.074a.178.178 0 0 0-.19-.089.177.177 0 0 0-.141.157l-.678 4.375-1.08 6.966-.161 1.043a3.035 3.035 0 0 0-.074.477c.012.1.053.195.118.271l.423.685 3.529 5.713c.916 1.483 1.822 2.974 2.749 4.45l.046.075c.118.192.431.033.312-.16v-.001Z"
|
|
643
|
+
}),
|
|
644
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
645
|
+
fill: "#fff",
|
|
646
|
+
d: "M15.423 13.982c-.141 1.096-.303 2.19-.45 3.284-.181 1.338-.356 2.677-.524 4.016l-.203 1.605c-.03.245.348.27.378.026.137-1.095.271-2.19.402-3.287.16-1.34.32-2.679.465-4.02.058-.536.117-1.071.18-1.606.02-.161-.228-.176-.248-.017ZM15.594 13.639l.008.004c.128.06.26-.14.154-.235l-.004-.004a.153.153 0 0 0-.264.134.155.155 0 0 0 .14.124.152.152 0 0 0 .155-.105l.002-.005c.061-.13-.139-.262-.232-.155l-.007.007a.142.142 0 0 0 .048.234ZM15.557 11.79c-.302-.557-.644-1.096-.975-1.636L13.55 8.473a133.094 133.094 0 0 1-2.044-3.407A79.116 79.116 0 0 1 10.46 3.19a.165.165 0 0 0-.219-.067.168.168 0 0 0-.075.218c1.215 2.33 2.615 4.56 4.013 6.78.383.609.756 1.227 1.165 1.817.085.123.282-.018.213-.147Z"
|
|
647
|
+
}),
|
|
648
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
649
|
+
fill: "#fff",
|
|
650
|
+
d: "M17.647 12.679c-.275.877-.552 1.753-.82 2.633-.02.064.078.098.098.034.272-.879.534-1.76.8-2.641.014-.051-.062-.076-.077-.026ZM17.583 11.942c-.563-.726-1.121-1.452-1.688-2.173-.042-.053-.119.017-.078.07.565.722 1.136 1.439 1.705 2.158.033.041.093-.014.06-.055Z",
|
|
651
|
+
opacity: ".25"
|
|
652
|
+
}),
|
|
653
|
+
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("path", {
|
|
654
|
+
fill: "#fff",
|
|
655
|
+
d: "M9.753 15.255a.311.311 0 0 0 .23-.368.314.314 0 0 0-.354-.246.312.312 0 0 0-.23.367.314.314 0 0 0 .354.247ZM9.55 15.754l-.001.016a.214.214 0 0 0 .094.191l.048.024a.206.206 0 0 0 .11.007.232.232 0 0 0 .134-.09.212.212 0 0 0 .011-.215l-.008-.014-.03-.044a.152.152 0 0 0-.063-.046.104.104 0 0 0-.05-.017.155.155 0 0 0-.08-.002l-.053.019-.043.03a.232.232 0 0 0-.067.14H9.55ZM9.129 13.173a.113.113 0 0 0 .088-.135.112.112 0 0 0-.205-.04.115.115 0 0 0 .032.158.112.112 0 0 0 .085.017ZM8.68 13.283a.116.116 0 0 0 .037-.206.114.114 0 0 0-.083-.018.114.114 0 0 0-.084.134.115.115 0 0 0 .047.071.113.113 0 0 0 .082.02ZM8.84 12.83a.103.103 0 0 0 .033-.183.1.1 0 0 0-.073-.018.102.102 0 0 0-.074.12.102.102 0 0 0 .114.08ZM10.21 16.93l.016-.004a.116.116 0 0 0 .071-.05.119.119 0 0 0 .018-.085l-.01-.03a.115.115 0 0 0-.04-.043l-.026-.013a.111.111 0 0 0-.06-.004l-.015.003a.082.082 0 0 0-.041.019.084.084 0 0 0-.031.03.13.13 0 0 0-.017.086l.01.029a.115.115 0 0 0 .039.043l.026.013c.02.006.04.008.06.004v.002ZM10.731 17.922a.108.108 0 0 0 .084-.128.11.11 0 0 0-.046-.07.107.107 0 0 0-.15.031.11.11 0 0 0 .03.152.107.107 0 0 0 .082.015Z"
|
|
656
|
+
})
|
|
657
|
+
]
|
|
658
|
+
});
|
|
659
|
+
});
|
|
660
|
+
Crystal.displayName = "CrystalIcon";
|
|
661
|
+
|
|
662
|
+
// src/iconography/edit.tsx
|
|
663
|
+
var import_react10 = require("react");
|
|
664
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
665
|
+
var Edit = (0, import_react10.forwardRef)((delegated, ref) => {
|
|
666
|
+
return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("svg", {
|
|
667
|
+
ref,
|
|
668
|
+
width: "34",
|
|
669
|
+
height: "34",
|
|
670
|
+
viewBox: "0 0 34 34",
|
|
671
|
+
fill: "none",
|
|
672
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
673
|
+
...delegated,
|
|
674
|
+
children: [
|
|
675
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", {
|
|
676
|
+
d: "m27.2751 9.9953-4.3639-4.367a.5799.5799 0 0 0-.8067.007c-3.9421 4.0122-4.6858 4.447-8.5799 8.509-1.3464 1.4174-2.7077 2.8197-4.0611 4.2301l-1.6672 1.6982a2.3308 2.3308 0 0 0-.8766 1.5362c-.3718 2.237-1.0105 3.9282-1.3824 6.1801-.07.4628-.007.8346.4568.7227 1.3884-.3089 2.6088-.7437 3.9911-1.0595.7227-.1619 2.199-.6597 3.0446-.9546a3.9637 3.9637 0 0 0 1.3194-.9535c.8996-.7787.9995-.9546 1.8581-1.7612a285.1786 285.1786 0 0 0 3.0096-2.8826 9.4842 9.4842 0 0 1 .9755-.9196s.084-.084.9536-.9675l3.2555-3.2555c1.0525-1.0525 2.6587-2.7987 3.7672-3.7982a1.0384 1.0384 0 0 0 .2998-.3998.5995.5995 0 0 0-.1269-.5328 8.0111 8.0111 0 0 0-1.0665-1.0315Zm.1 1.4733c-.014.014-.035.007-.042.028-3.9642 3.8982-4.4689 4.4689-8.439 8.3411l-5.7673 5.5414c-1.6323.5087-3.2495 1.1084-4.9197 1.5472l-.6097.147a2.7125 2.7125 0 0 1-.7647.1329l1.3324-6.0751L22.5183 6.6239c1.8522 1.8801 2.9956 2.9716 4.8548 4.8407l.002.004Z",
|
|
677
|
+
fill: "#528693"
|
|
678
|
+
}),
|
|
679
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("path", {
|
|
680
|
+
d: "M27.3731 11.4646c-.014.014-.035.007-.042.028-3.9641 3.8982-4.4689 4.4689-8.439 8.3411l-5.7673 5.5414c-1.6302.5127-3.2475 1.1124-4.9177 1.5512l-.6097.147a2.7125 2.7125 0 0 1-.7646.1329l1.3323-6.0751L22.5184 6.6239c1.8521 1.8801 2.9956 2.9716 4.8547 4.8407Z",
|
|
681
|
+
fill: "none"
|
|
682
|
+
})
|
|
683
|
+
]
|
|
684
|
+
});
|
|
685
|
+
});
|
|
686
|
+
Edit.displayName = "EditIcon";
|
|
687
|
+
|
|
688
|
+
// src/iconography/error.tsx
|
|
689
|
+
var import_react11 = require("react");
|
|
690
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
691
|
+
var Error2 = (0, import_react11.forwardRef)((delegated, ref) => {
|
|
692
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("svg", {
|
|
693
|
+
ref,
|
|
694
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
695
|
+
width: "22",
|
|
696
|
+
height: "22",
|
|
697
|
+
fill: "none",
|
|
698
|
+
viewBox: "0 0 22 22",
|
|
699
|
+
...delegated,
|
|
700
|
+
children: [
|
|
701
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("g", {
|
|
702
|
+
"clip-path": "url(#clip0_1679_677)",
|
|
703
|
+
children: [
|
|
704
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", {
|
|
705
|
+
"fill-rule": "evenodd",
|
|
706
|
+
"clip-rule": "evenodd",
|
|
707
|
+
d: "M9.63864 18.2702C10.2437 19.3181 11.7562 19.3181 12.3613 18.2702L19.8485 5.3019C20.4536 4.25396 19.6973 2.94403 18.4872 2.94403L3.51271 2.94403C2.30265 2.94403 1.54636 4.25396 2.15139 5.3019L9.63864 18.2702ZM10.4355 12.9854C10.6864 13.4199 11.3135 13.4199 11.5643 12.9854L14.6686 7.60866C14.9195 7.17417 14.6059 6.63107 14.1042 6.63107L7.89566 6.63107C7.39396 6.63107 7.08039 7.17417 7.33124 7.60866L10.4355 12.9854Z",
|
|
708
|
+
fill: "#EB1782"
|
|
709
|
+
}),
|
|
710
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", {
|
|
711
|
+
"fill-rule": "evenodd",
|
|
712
|
+
"clip-rule": "evenodd",
|
|
713
|
+
d: "M10.1583 17.9702C10.5323 18.6181 11.4676 18.6181 11.8417 17.9702L19.3289 5.0019C19.703 4.35396 19.2354 3.54403 18.4872 3.54403L3.51271 3.54403C2.76453 3.54403 2.29692 4.35396 2.67101 5.0019L10.1583 17.9702ZM12.084 13.2854C11.6022 14.1199 10.3977 14.1199 9.9159 13.2854L6.81163 7.90866C6.32984 7.07417 6.93207 6.03107 7.89566 6.03107L14.1042 6.03107C15.0678 6.03107 15.67 7.07418 15.1882 7.90866L12.084 13.2854ZM12.3613 18.2702C11.7562 19.3181 10.2437 19.3181 9.63864 18.2702L2.15139 5.3019C1.54636 4.25396 2.30265 2.94403 3.51271 2.94403L18.4872 2.94403C19.6973 2.94403 20.4536 4.25396 19.8485 5.3019L12.3613 18.2702ZM11.5643 12.9854C11.3135 13.4199 10.6864 13.4199 10.4355 12.9854L7.33124 7.60866C7.08039 7.17417 7.39396 6.63107 7.89566 6.63107L14.1042 6.63107C14.6059 6.63107 14.9195 7.17417 14.6686 7.60866L11.5643 12.9854Z",
|
|
714
|
+
fill: "#528693"
|
|
715
|
+
})
|
|
716
|
+
]
|
|
717
|
+
}),
|
|
718
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("defs", {
|
|
719
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("clipPath", {
|
|
720
|
+
id: "clip0_1679_677",
|
|
721
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("rect", {
|
|
722
|
+
width: "22",
|
|
723
|
+
height: "22",
|
|
724
|
+
fill: "white"
|
|
725
|
+
})
|
|
726
|
+
})
|
|
221
727
|
})
|
|
222
728
|
]
|
|
223
729
|
});
|
|
224
730
|
});
|
|
225
731
|
Error2.displayName = "ErrorIcon";
|
|
226
732
|
|
|
227
|
-
// src/
|
|
228
|
-
var
|
|
229
|
-
var
|
|
230
|
-
var Glasses = (0,
|
|
231
|
-
return /* @__PURE__ */ (0,
|
|
733
|
+
// src/iconography/glasses.tsx
|
|
734
|
+
var import_react12 = require("react");
|
|
735
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
736
|
+
var Glasses = (0, import_react12.forwardRef)((delegated, ref) => {
|
|
737
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("svg", {
|
|
232
738
|
ref,
|
|
233
739
|
width: "20",
|
|
234
740
|
height: "15",
|
|
@@ -237,45 +743,45 @@ var Glasses = (0, import_react5.forwardRef)((delegated, ref) => {
|
|
|
237
743
|
xmlns: "http://www.w3.org/2000/svg",
|
|
238
744
|
...delegated,
|
|
239
745
|
children: [
|
|
240
|
-
/* @__PURE__ */ (0,
|
|
746
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", {
|
|
241
747
|
fillRule: "evenodd",
|
|
242
748
|
clipRule: "evenodd",
|
|
243
749
|
d: "M7.4856 2.0673c-.3158-.7572-1.2453-1.0361-1.9258-.578l-3.42 2.3025c-.8613.5798-.7287 1.8856.2315 2.2806l.1216.05.2282-.5549-.1216-.05c-.517-.2127-.5884-.9158-.1246-1.228l3.42-2.3025c.3664-.2467.8669-.0965 1.037.3112l.0748.1795a.3.3 0 0 0 .5537-.231l-.0748-.1795Z",
|
|
244
750
|
fill: "#528693"
|
|
245
751
|
}),
|
|
246
|
-
/* @__PURE__ */ (0,
|
|
752
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", {
|
|
247
753
|
d: "m9.7363 8.289-.2116.453-.906-.4233.2116-.453.906.4234Z",
|
|
248
754
|
fill: "#528793"
|
|
249
755
|
}),
|
|
250
|
-
/* @__PURE__ */ (0,
|
|
756
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", {
|
|
251
757
|
d: "M4.391 9.9236c1.5958.7593 3.5051.0811 4.2644-1.5148.7593-1.596.081-3.5052-1.5148-4.2644-1.5959-.7593-3.5051-.0811-4.2644 1.5148-.7593 1.5958-.0811 3.505 1.5148 4.2644Z",
|
|
252
758
|
fill: "#BFF6F8"
|
|
253
759
|
}),
|
|
254
|
-
/* @__PURE__ */ (0,
|
|
760
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", {
|
|
255
761
|
d: "M3.1883 8.7645a3.2004 3.2004 0 0 1-.3446-.514l5.955-2.1168c.0388.203.0579.4094.0568.6162L3.1883 8.7644Zm4.8102-4.212L2.468 6.517a3.2001 3.2001 0 0 0 .1588 1.2118l6.0129-2.136a3.2002 3.2002 0 0 0-.6412-1.0403Z",
|
|
256
762
|
fill: "#fff"
|
|
257
763
|
}),
|
|
258
|
-
/* @__PURE__ */ (0,
|
|
764
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", {
|
|
259
765
|
fillRule: "evenodd",
|
|
260
766
|
clipRule: "evenodd",
|
|
261
767
|
d: "M4.4255 9.3845c1.4463.6881 3.1766.0735 3.8647-1.3728.688-1.4463.0735-3.1765-1.3728-3.8646-1.4463-.6881-3.1765-.0735-3.8646 1.3728-.6882 1.4462-.0735 3.1765 1.3727 3.8646Zm-.2577.5418c1.7455.8305 3.8337.0887 4.6642-1.6568.8304-1.7455.0887-3.8338-1.6568-4.6642-1.7455-.8305-3.8338-.0887-4.6643 1.6568-.8304 1.7455-.0886 3.8337 1.6569 4.6642Z",
|
|
262
768
|
fill: "#528793"
|
|
263
769
|
}),
|
|
264
|
-
/* @__PURE__ */ (0,
|
|
770
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", {
|
|
265
771
|
d: "M11.3275 12.7751c1.5959.7593 3.5051.0811 4.2644-1.5148.7593-1.5959.0811-3.5051-1.5148-4.2644-1.5959-.7593-3.5051-.081-4.2644 1.5148-.7593 1.5959-.0811 3.5052 1.5148 4.2644Z",
|
|
266
772
|
fill: "#BFF6F8"
|
|
267
773
|
}),
|
|
268
|
-
/* @__PURE__ */ (0,
|
|
774
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", {
|
|
269
775
|
d: "M10.1248 11.616a3.2048 3.2048 0 0 1-.3446-.5139l5.9551-2.1168c.0388.203.0578.4094.0568.6161l-5.6673 2.0146Zm4.8102-4.212L9.4045 9.3687a3.1998 3.1998 0 0 0 .1588 1.2117l6.0129-2.1358a3.1995 3.1995 0 0 0-.6412-1.0404Z",
|
|
270
776
|
fill: "#fff"
|
|
271
777
|
}),
|
|
272
|
-
/* @__PURE__ */ (0,
|
|
778
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", {
|
|
273
779
|
fillRule: "evenodd",
|
|
274
780
|
clipRule: "evenodd",
|
|
275
781
|
d: "M11.3621 12.2361c1.4462.6881 3.1765.0734 3.8646-1.3728.6881-1.4463.0735-3.1766-1.3728-3.8647-1.4463-.688-3.1765-.0735-3.8646 1.3728-.6881 1.4463-.0735 3.1766 1.3728 3.8647Zm-.2578.5418c1.7455.8304 3.8337.0887 4.6642-1.6568.8305-1.7455.0887-3.8338-1.6568-4.6643-1.7455-.8304-3.8338-.0887-4.6642 1.6568-.8305 1.7455-.0887 3.8338 1.6568 4.6643Z",
|
|
276
782
|
fill: "#528793"
|
|
277
783
|
}),
|
|
278
|
-
/* @__PURE__ */ (0,
|
|
784
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", {
|
|
279
785
|
fillRule: "evenodd",
|
|
280
786
|
clipRule: "evenodd",
|
|
281
787
|
d: "M14.7461 5.0551c.7572-.3158 1.614.14 1.7751.9444l.81 4.0424c.204 1.0181-.809 1.8527-1.7692 1.4577l-.1216-.05.2283-.5549.1216.05c.517.2127 1.0625-.2367.9526-.7849l-.81-4.0424c-.0868-.4331-.5481-.6786-.9558-.5085l-.1794.0748a.3.3 0 0 1-.231-.5538l.1794-.0748Z",
|
|
@@ -286,11 +792,11 @@ var Glasses = (0, import_react5.forwardRef)((delegated, ref) => {
|
|
|
286
792
|
});
|
|
287
793
|
Glasses.displayName = "GlassesIcon";
|
|
288
794
|
|
|
289
|
-
// src/
|
|
290
|
-
var
|
|
291
|
-
var
|
|
292
|
-
var GraphQL = (0,
|
|
293
|
-
return /* @__PURE__ */ (0,
|
|
795
|
+
// src/iconography/graphQL.tsx
|
|
796
|
+
var import_react13 = require("react");
|
|
797
|
+
var import_jsx_runtime19 = require("react/jsx-runtime");
|
|
798
|
+
var GraphQL = (0, import_react13.forwardRef)((delegated, ref) => {
|
|
799
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("svg", {
|
|
294
800
|
ref,
|
|
295
801
|
width: "23",
|
|
296
802
|
height: "22",
|
|
@@ -299,97 +805,97 @@ var GraphQL = (0, import_react6.forwardRef)((delegated, ref) => {
|
|
|
299
805
|
xmlns: "http://www.w3.org/2000/svg",
|
|
300
806
|
...delegated,
|
|
301
807
|
children: [
|
|
302
|
-
/* @__PURE__ */ (0,
|
|
808
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
303
809
|
d: "M10.479 3.4a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
304
810
|
fill: "#BFF6F8"
|
|
305
811
|
}),
|
|
306
|
-
/* @__PURE__ */ (0,
|
|
812
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
307
813
|
fillRule: "evenodd",
|
|
308
814
|
clipRule: "evenodd",
|
|
309
815
|
d: "M11.879 5.4a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
310
816
|
fill: "#528693"
|
|
311
817
|
}),
|
|
312
|
-
/* @__PURE__ */ (0,
|
|
818
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
313
819
|
d: "M10.479 3.4a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
314
820
|
fill: "#BFF6F8"
|
|
315
821
|
}),
|
|
316
|
-
/* @__PURE__ */ (0,
|
|
822
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
317
823
|
fillRule: "evenodd",
|
|
318
824
|
clipRule: "evenodd",
|
|
319
825
|
d: "M11.879 5.4a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
320
826
|
fill: "#528693"
|
|
321
827
|
}),
|
|
322
|
-
/* @__PURE__ */ (0,
|
|
828
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
323
829
|
d: "M3.679 7.2a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
324
830
|
fill: "#BFF6F8"
|
|
325
831
|
}),
|
|
326
|
-
/* @__PURE__ */ (0,
|
|
832
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
327
833
|
fillRule: "evenodd",
|
|
328
834
|
clipRule: "evenodd",
|
|
329
835
|
d: "M5.079 9.2a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
330
836
|
fill: "#528693"
|
|
331
837
|
}),
|
|
332
|
-
/* @__PURE__ */ (0,
|
|
838
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
333
839
|
d: "M17.279 7.2a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
334
840
|
fill: "#BFF6F8"
|
|
335
841
|
}),
|
|
336
|
-
/* @__PURE__ */ (0,
|
|
842
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
337
843
|
fillRule: "evenodd",
|
|
338
844
|
clipRule: "evenodd",
|
|
339
845
|
d: "M18.679 9.2a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
340
846
|
fill: "#528693"
|
|
341
847
|
}),
|
|
342
|
-
/* @__PURE__ */ (0,
|
|
848
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
343
849
|
d: "M3.679 7.2a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
344
850
|
fill: "#BFF6F8"
|
|
345
851
|
}),
|
|
346
|
-
/* @__PURE__ */ (0,
|
|
852
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
347
853
|
fillRule: "evenodd",
|
|
348
854
|
clipRule: "evenodd",
|
|
349
855
|
d: "M5.079 9.2a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
350
856
|
fill: "#528693"
|
|
351
857
|
}),
|
|
352
|
-
/* @__PURE__ */ (0,
|
|
858
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
353
859
|
d: "M17.279 7.2a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
354
860
|
fill: "#BFF6F8"
|
|
355
861
|
}),
|
|
356
|
-
/* @__PURE__ */ (0,
|
|
862
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
357
863
|
fillRule: "evenodd",
|
|
358
864
|
clipRule: "evenodd",
|
|
359
865
|
d: "M18.679 9.2a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
360
866
|
fill: "#528693"
|
|
361
867
|
}),
|
|
362
|
-
/* @__PURE__ */ (0,
|
|
868
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
363
869
|
d: "M3.679 14.8a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
364
870
|
fill: "#BFF6F8"
|
|
365
871
|
}),
|
|
366
|
-
/* @__PURE__ */ (0,
|
|
872
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
367
873
|
fillRule: "evenodd",
|
|
368
874
|
clipRule: "evenodd",
|
|
369
875
|
d: "M5.079 16.8a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
370
876
|
fill: "#528693"
|
|
371
877
|
}),
|
|
372
|
-
/* @__PURE__ */ (0,
|
|
878
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
373
879
|
d: "M17.279 14.8a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
374
880
|
fill: "#fff"
|
|
375
881
|
}),
|
|
376
|
-
/* @__PURE__ */ (0,
|
|
882
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
377
883
|
fillRule: "evenodd",
|
|
378
884
|
clipRule: "evenodd",
|
|
379
885
|
d: "M18.679 16.8a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z",
|
|
380
886
|
fill: "#528693"
|
|
381
887
|
}),
|
|
382
|
-
/* @__PURE__ */ (0,
|
|
888
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
383
889
|
d: "M10.479 18.75a1.4 1.4 0 1 1 2.8 0 1.4 1.4 0 1 1-2.8 0Z",
|
|
384
890
|
fill: "#BFF6F8"
|
|
385
891
|
}),
|
|
386
|
-
/* @__PURE__ */ (0,
|
|
892
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
387
893
|
fillRule: "evenodd",
|
|
388
894
|
clipRule: "evenodd",
|
|
389
895
|
d: "M11.879 20.75a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm0-3.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8ZM10.44 3.851a.3.3 0 0 1-.112.41l-3.5 2a.3.3 0 0 1-.298-.521l3.5-2a.3.3 0 0 1 .41.111ZM13.419 3.851a.3.3 0 0 0 .111.41l3.5 2a.3.3 0 0 0 .298-.521l-3.5-2a.3.3 0 0 0-.41.111Z",
|
|
390
896
|
fill: "#528693"
|
|
391
897
|
}),
|
|
392
|
-
/* @__PURE__ */ (0,
|
|
898
|
+
/* @__PURE__ */ (0, import_jsx_runtime19.jsx)("path", {
|
|
393
899
|
fillRule: "evenodd",
|
|
394
900
|
clipRule: "evenodd",
|
|
395
901
|
d: "M10.44 18.149a.3.3 0 0 0-.112-.41l-3.5-2a.3.3 0 0 0-.298.521l3.5 2a.3.3 0 0 0 .41-.111ZM13.419 18.149a.3.3 0 0 1 .111-.41l3.5-2a.3.3 0 0 1 .298.521l-3.5 2a.3.3 0 0 1-.41-.111ZM5.079 8.7a.3.3 0 0 1 .3.3v4a.3.3 0 1 1-.6 0V9a.3.3 0 0 1 .3-.3ZM18.679 8.7a.3.3 0 0 1 .3.3v4a.3.3 0 1 1-.6 0V9a.3.3 0 0 1 .3-.3ZM11.033 4.743a.3.3 0 0 1 .103.411l-4.8 8a.3.3 0 1 1-.514-.308l4.8-8a.3.3 0 0 1 .411-.103ZM12.725 4.743a.3.3 0 0 0-.103.411l4.8 8a.3.3 0 1 0 .514-.308l-4.8-8a.3.3 0 0 0-.411-.103ZM6.579 14.9a.3.3 0 0 1 .3-.3h10a.3.3 0 0 1 0 .6h-10a.3.3 0 0 1-.3-.3Z",
|
|
@@ -400,57 +906,49 @@ var GraphQL = (0, import_react6.forwardRef)((delegated, ref) => {
|
|
|
400
906
|
});
|
|
401
907
|
GraphQL.displayName = "GraphQLIcon";
|
|
402
908
|
|
|
403
|
-
// src/
|
|
404
|
-
var
|
|
405
|
-
var
|
|
406
|
-
var Info = (0,
|
|
407
|
-
return /* @__PURE__ */ (0,
|
|
909
|
+
// src/iconography/info.tsx
|
|
910
|
+
var import_react14 = require("react");
|
|
911
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
912
|
+
var Info = (0, import_react14.forwardRef)((delegated, ref) => {
|
|
913
|
+
return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("svg", {
|
|
408
914
|
ref,
|
|
409
915
|
xmlns: "http://www.w3.org/2000/svg",
|
|
410
916
|
width: "22",
|
|
411
917
|
height: "22",
|
|
412
|
-
fill: "none",
|
|
413
|
-
viewBox: "0 0 22 22",
|
|
414
|
-
...delegated,
|
|
415
|
-
children: [
|
|
416
|
-
/* @__PURE__ */ (0,
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
}),
|
|
420
|
-
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", {
|
|
421
|
-
fill: "#528693",
|
|
422
|
-
fillRule: "evenodd",
|
|
423
|
-
d: "M21.431 11c0 5.76-4.67 10.43-10.43 10.43C5.238 21.43.568 16.76.568 11S5.24.57 11 .57C16.76.57 21.431 5.24 21.431 11Zm-10.43 9.83c5.429 0 9.83-4.4 9.83-9.83s-4.401-9.83-9.83-9.83c-5.43 0-9.832 4.4-9.832 9.83S5.571 20.83 11 20.83Z",
|
|
424
|
-
clipRule: "evenodd"
|
|
425
|
-
}),
|
|
426
|
-
/* @__PURE__ */ (0, import_jsx_runtime10.jsx)("path", {
|
|
427
|
-
fill: "#fff",
|
|
428
|
-
d: "M14.814 6.317a.991.991 0 1 1-1.983 0 .991.991 0 0 1 1.983 0Z"
|
|
918
|
+
fill: "none",
|
|
919
|
+
viewBox: "0 0 22 22",
|
|
920
|
+
...delegated,
|
|
921
|
+
children: [
|
|
922
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", {
|
|
923
|
+
d: "M17.593 3.85212C17.593 4.67937 16.9224 5.34999 16.0952 5.34999C15.2679 5.34999 14.5973 4.67937 14.5973 3.85212C14.5973 3.02487 15.2679 2.35425 16.0952 2.35425C16.9224 2.35425 17.593 3.02487 17.593 3.85212Z",
|
|
924
|
+
fill: "#BFF6F8"
|
|
429
925
|
}),
|
|
430
|
-
/* @__PURE__ */ (0,
|
|
431
|
-
fill: "
|
|
432
|
-
|
|
433
|
-
d: "
|
|
434
|
-
|
|
926
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", {
|
|
927
|
+
"fill-rule": "evenodd",
|
|
928
|
+
"clip-rule": "evenodd",
|
|
929
|
+
d: "M18.253 3.85212C18.253 5.04383 17.2869 6.00991 16.0952 6.00991C14.9035 6.00991 13.9374 5.04383 13.9374 3.85212C13.9374 2.66041 14.9035 1.69434 16.0952 1.69434C17.2869 1.69434 18.253 2.66041 18.253 3.85212ZM16.0952 5.34999C16.9224 5.34999 17.5931 4.67937 17.5931 3.85212C17.5931 3.02487 16.9224 2.35425 16.0952 2.35425C15.2679 2.35425 14.5973 3.02487 14.5973 3.85212C14.5973 4.67937 15.2679 5.34999 16.0952 5.34999Z",
|
|
930
|
+
fill: "#528693"
|
|
435
931
|
}),
|
|
436
|
-
/* @__PURE__ */ (0,
|
|
437
|
-
|
|
438
|
-
|
|
932
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", {
|
|
933
|
+
d: "M11.2267 19.6338C10.1339 19.5731 9.0685 19.2687 8.1091 18.743C6.45171 17.8422 5.90412 16.3181 6.67909 14.7659C7.26511 13.7065 7.9836 12.7256 8.81732 11.8468L8.91693 11.7313C9.29243 11.2963 9.68044 10.8467 10.0199 10.3976C10.4486 9.83253 10.8215 9.28929 10.6797 8.86312C10.5968 8.6196 10.3605 8.44373 9.9584 8.32457C9.83715 8.29874 9.71404 8.28256 9.59022 8.27617L9.50938 8.26941C9.26232 8.2834 9.01575 8.23452 8.79281 8.12735C8.54248 7.93066 8.64731 7.36817 8.77404 7.12204C8.87835 6.92966 9.02762 6.76522 9.2092 6.64266C9.39077 6.5201 9.59929 6.44304 9.81707 6.41802C10.0235 6.38077 10.2331 6.36335 10.4429 6.36598C11.4176 6.41652 12.3773 6.6275 13.2831 6.9904C14.9259 7.62106 15.7097 8.86885 15.3801 10.3284C15.1357 11.2718 14.6733 12.1451 14.0299 12.8781C13.8385 13.118 13.6419 13.3464 13.4458 13.5795L13.3415 13.7024C12.9232 14.1775 12.5323 14.6759 12.1707 15.1952L11.9564 15.5012C11.7156 15.8119 11.5223 16.1565 11.3827 16.5237C11.303 16.7335 11.308 16.966 11.3968 17.1721C11.4855 17.3783 11.651 17.5421 11.8583 17.6289C12.0086 17.6973 12.1701 17.7377 12.335 17.748C12.5957 17.7793 12.8648 17.8126 12.9712 18.0603C13.0139 18.1752 13.0313 18.298 13.0223 18.4203C13.0133 18.5425 12.9781 18.6615 12.9191 18.769C12.7552 19.0647 12.5066 19.305 12.2052 19.459C11.9037 19.6131 11.563 19.6739 11.2267 19.6338Z",
|
|
934
|
+
fill: "#BFF6F8"
|
|
439
935
|
}),
|
|
440
|
-
/* @__PURE__ */ (0,
|
|
441
|
-
fill: "
|
|
442
|
-
|
|
936
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", {
|
|
937
|
+
"fill-rule": "evenodd",
|
|
938
|
+
"clip-rule": "evenodd",
|
|
939
|
+
d: "M11.2842 18.976L11.3049 18.9785C11.5112 19.0031 11.7201 18.9658 11.9049 18.8714C12.0891 18.7772 12.2409 18.6306 12.3411 18.4504C12.3471 18.4394 12.352 18.4277 12.3558 18.4158C12.3317 18.4124 12.3048 18.4091 12.2731 18.4053C12.0384 18.3881 11.8084 18.33 11.5936 18.2335C11.2334 18.0797 10.9456 17.7933 10.7906 17.433C10.6341 17.0694 10.6252 16.6594 10.7658 16.2894C10.9266 15.8663 11.1487 15.4689 11.4246 15.1101L11.6291 14.8181C11.6293 14.8178 11.629 14.8184 11.6291 14.8181C12.0038 14.2802 12.4092 13.763 12.8423 13.2707L12.9418 13.1535C12.9894 13.097 13.0361 13.0418 13.0821 12.9874C13.2314 12.8108 13.3734 12.6428 13.5141 12.4665L13.5237 12.4544L13.5339 12.4428C14.107 11.7899 14.5194 11.0128 14.7386 10.1733C14.8642 9.60674 14.7724 9.1134 14.5125 8.69961C14.2452 8.27422 13.7678 7.88337 13.0466 7.60647L13.0376 7.60304C12.2034 7.26882 11.3198 7.07373 10.4221 7.02572C10.2586 7.02444 10.0952 7.03841 9.93422 7.06745L9.91342 7.0712L9.89242 7.07362C9.77981 7.08656 9.67209 7.12639 9.57839 7.18964C9.48729 7.25113 9.41209 7.33296 9.35867 7.42842C9.35249 7.44171 9.33941 7.47402 9.32659 7.52286C9.31959 7.54951 9.31383 7.57671 9.30949 7.60325C9.36308 7.61115 9.41754 7.61364 9.47206 7.61055L9.51828 7.60793L9.63538 7.61773C9.79024 7.6263 9.94419 7.64682 10.0959 7.67913L10.1211 7.68451L10.1459 7.69185C10.6213 7.83272 11.1176 8.10198 11.3044 8.65041L11.3058 8.6547C11.4603 9.11879 11.309 9.5616 11.1547 9.87197C10.9947 10.194 10.7584 10.5161 10.546 10.7961C10.1932 11.2626 9.79323 11.726 9.4222 12.1559L9.4167 12.1622L9.30686 12.2896L9.29607 12.301C8.50411 13.1358 7.82119 14.0671 7.26353 15.0728C6.95101 15.7053 6.92585 16.2828 7.10297 16.7755C7.28379 17.2785 7.70442 17.772 8.42421 18.1631L8.42623 18.1642C9.29923 18.6426 10.2687 18.9197 11.2633 18.9749L11.2842 18.976ZM6.67909 14.7659C7.26511 13.7065 7.9836 12.7256 8.81732 11.8468L8.91693 11.7313C9.29243 11.2963 9.68044 10.8467 10.0199 10.3976C10.4486 9.83253 10.8215 9.28929 10.6797 8.86312C10.5968 8.6196 10.3605 8.44373 9.9584 8.32457C9.83715 8.29874 9.71404 8.28256 9.59022 8.27617L9.50938 8.26941C9.26232 8.2834 9.01575 8.23452 8.79281 8.12735C8.54248 7.93066 8.64731 7.36817 8.77404 7.12204C8.87835 6.92966 9.02762 6.76522 9.2092 6.64266C9.39077 6.5201 9.59929 6.44304 9.81707 6.41802C10.0235 6.38077 10.2331 6.36335 10.4429 6.36598C11.4176 6.41652 12.3773 6.6275 13.2831 6.9904C14.9259 7.62106 15.7097 8.86885 15.3801 10.3284C15.1357 11.2718 14.6733 12.1451 14.0299 12.8781C13.8828 13.0625 13.7326 13.2401 13.582 13.4182C13.5366 13.4719 13.4912 13.5256 13.4458 13.5795L13.3415 13.7024C12.9232 14.1775 12.5323 14.6759 12.1707 15.1952L11.9564 15.5012C11.7156 15.8119 11.5223 16.1565 11.3827 16.5237C11.303 16.7335 11.308 16.966 11.3968 17.1721C11.4855 17.3783 11.651 17.5421 11.8583 17.6289C12.0086 17.6973 12.1701 17.7377 12.335 17.748C12.5957 17.7793 12.8648 17.8126 12.9712 18.0603C13.0139 18.1752 13.0313 18.298 13.0223 18.4203C13.0133 18.5425 12.9781 18.6615 12.9191 18.769C12.7552 19.0647 12.5066 19.305 12.2052 19.459C11.9037 19.6131 11.563 19.6739 11.2267 19.6338C10.1339 19.5731 9.0685 19.2687 8.1091 18.743C6.45171 17.8422 5.90412 16.3181 6.67909 14.7659Z",
|
|
940
|
+
fill: "#528693"
|
|
443
941
|
})
|
|
444
942
|
]
|
|
445
943
|
});
|
|
446
944
|
});
|
|
447
945
|
Info.displayName = "InfoIcon";
|
|
448
946
|
|
|
449
|
-
// src/
|
|
450
|
-
var
|
|
451
|
-
var
|
|
452
|
-
var NailPolish = (0,
|
|
453
|
-
return /* @__PURE__ */ (0,
|
|
947
|
+
// src/iconography/nail-polish.tsx
|
|
948
|
+
var import_react15 = require("react");
|
|
949
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
950
|
+
var NailPolish = (0, import_react15.forwardRef)((delegated, ref) => {
|
|
951
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("svg", {
|
|
454
952
|
ref,
|
|
455
953
|
width: "12",
|
|
456
954
|
height: "16",
|
|
@@ -459,67 +957,67 @@ var NailPolish = (0, import_react8.forwardRef)((delegated, ref) => {
|
|
|
459
957
|
xmlns: "http://www.w3.org/2000/svg",
|
|
460
958
|
...delegated,
|
|
461
959
|
children: [
|
|
462
|
-
/* @__PURE__ */ (0,
|
|
960
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", {
|
|
463
961
|
d: "M.8573 9.7059H.4287v-.8824c0-.4873.3838-.8823.8571-.8823h4.2858c.4734 0 .8571.395.8571.8823v.8824h-.4286V15H.8573V9.7059Z",
|
|
464
962
|
fill: "#BFF6F8"
|
|
465
963
|
}),
|
|
466
|
-
/* @__PURE__ */ (0,
|
|
964
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", {
|
|
467
965
|
fillRule: "evenodd",
|
|
468
966
|
clipRule: "evenodd",
|
|
469
967
|
d: "M1.3716 9.1765v5.2941h4.1143V9.1765h.4285v-.353c0-.195-.1535-.353-.3428-.353H1.2858c-.1893 0-.3428.158-.3428.353v.353h.4286ZM6 9.7059h.4286v-.8824c0-.4873-.3837-.8823-.8571-.8823H1.2858c-.4733 0-.857.395-.857.8823v.8824h.4285V15H6V9.7059Z",
|
|
470
968
|
fill: "#528693"
|
|
471
969
|
}),
|
|
472
|
-
/* @__PURE__ */ (0,
|
|
970
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", {
|
|
473
971
|
d: "M1.2856 6.6176c0-.4873.3838-.8823.8572-.8823h2.5714c.4734 0 .8572.395.8572.8823v1.7648H1.2856V6.6176Z",
|
|
474
972
|
fill: "#BFF6F8"
|
|
475
973
|
}),
|
|
476
|
-
/* @__PURE__ */ (0,
|
|
974
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", {
|
|
477
975
|
fillRule: "evenodd",
|
|
478
976
|
clipRule: "evenodd",
|
|
479
977
|
d: "M4.7142 6.2647H2.1428c-.1894 0-.3429.158-.3429.353v1.2352h3.2572V6.6176c0-.1949-.1535-.3529-.3429-.3529Zm-2.5714-.5294c-.4734 0-.8572.395-.8572.8823v1.7648h4.2858V6.6176c0-.4873-.3838-.8823-.8572-.8823H2.1428Z",
|
|
480
978
|
fill: "#528693"
|
|
481
979
|
}),
|
|
482
|
-
/* @__PURE__ */ (0,
|
|
980
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", {
|
|
483
981
|
d: "M1.7144.6228c0-.344.2708-.6228.605-.6228 1.5594 0 2.8235 1.3013 2.8235 2.9066v3.2699H1.7144V.6228Z",
|
|
484
982
|
fill: "#FFCCEC"
|
|
485
983
|
}),
|
|
486
|
-
/* @__PURE__ */ (0,
|
|
984
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", {
|
|
487
985
|
fillRule: "evenodd",
|
|
488
986
|
clipRule: "evenodd",
|
|
489
987
|
d: "M2.2286 5.647h2.4V2.9067c0-1.3129-1.0338-2.3772-2.3092-2.3772a.0921.0921 0 0 0-.0908.0934v5.0243ZM2.3194 0c-.3342 0-.605.2789-.605.6228v5.5537h3.4285v-3.27C5.143 1.3014 3.8788 0 2.3194 0Z",
|
|
490
988
|
fill: "#528693"
|
|
491
989
|
}),
|
|
492
|
-
/* @__PURE__ */ (0,
|
|
990
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", {
|
|
493
991
|
fillRule: "evenodd",
|
|
494
992
|
clipRule: "evenodd",
|
|
495
993
|
d: "M2.4626 1.9929c-.432-.5148-.5769-1.1307-.5769-1.5517H2.4c0 .3142.1124.8013.4518 1.2056.3313.3947.8997.7355 1.8625.7355v.5295c-1.0943 0-1.8116-.3945-2.2517-.9189Z",
|
|
496
994
|
fill: "#528693"
|
|
497
995
|
}),
|
|
498
|
-
/* @__PURE__ */ (0,
|
|
996
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", {
|
|
499
997
|
d: "M4.8708 8.6772c.245-.9414 1.185-1.5 2.0995-1.2478l2.4838.6851c.9145.2523 1.4573 1.22 1.2122 2.1613l-1.2201 4.6876c-.1225.4707-.5925.75-1.0498.6239l-4.1397-1.1418c-.4573-.1262-.7286-.61-.606-1.0807l1.22-4.6876Z",
|
|
500
998
|
fill: "#FFCCEC"
|
|
501
999
|
}),
|
|
502
|
-
/* @__PURE__ */ (0,
|
|
1000
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", {
|
|
503
1001
|
fillRule: "evenodd",
|
|
504
1002
|
clipRule: "evenodd",
|
|
505
1003
|
d: "m9.321 8.6259-2.4838-.6851c-.6401-.1766-1.2981.2145-1.4697.8734l-1.2201 4.6876c-.049.1883.0595.3818.2424.4323l4.1397 1.1418c.1829.0505.3709-.0612.42-.2495l1.2201-4.6876c.1715-.659-.2084-1.3363-.8486-1.513ZM6.9703 7.4294c-.9145-.2523-1.8545.3064-2.0995 1.2478l-1.2202 4.6876c-.1225.4707.1489.9545.6061 1.0807l4.1397 1.1418c.4573.1261.9273-.1532 1.0498-.6239l1.2201-4.6876c.2451-.9414-.2977-1.909-1.2122-2.1613l-2.4838-.6851Z",
|
|
506
1004
|
fill: "#528693"
|
|
507
1005
|
}),
|
|
508
|
-
/* @__PURE__ */ (0,
|
|
1006
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", {
|
|
509
1007
|
d: "M7.9236 3.5069c.1508-.4319.598-.6727 1.0285-.554l.9602.2649c.4306.1188.7009.5575.6217 1.009l-.6114 3.4854c-.0892.508-.581.829-1.0654.6954l-1.5121-.417c-.4844-.1337-.7544-.6649-.5848-1.1507l1.1633-3.333Z",
|
|
510
1008
|
fill: "#BFF6F8"
|
|
511
1009
|
}),
|
|
512
|
-
/* @__PURE__ */ (0,
|
|
1010
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", {
|
|
513
1011
|
fillRule: "evenodd",
|
|
514
1012
|
clipRule: "evenodd",
|
|
515
1013
|
d: "m9.7792 3.7292-.9602-.2649c-.1722-.0475-.351.0488-.4114.2216l-1.1634 3.333c-.0678.1943.0402.4068.234.4603l1.5121.417c.1938.0535.3905-.075.4262-.2781l.6114-3.4853c.0316-.1806-.0765-.3561-.2487-.4036Zm-.827-.7763c-.4307-.1187-.8778.1221-1.0286.554l-1.1633 3.333c-.1696.4858.1004 1.017.5848 1.1506l1.5121.4171c.4844.1336.9762-.1875 1.0654-.6954l.6114-3.4853c.0792-.4516-.1911-.8903-.6217-1.0091l-.9602-.2649Z",
|
|
516
1014
|
fill: "#528693"
|
|
517
1015
|
}),
|
|
518
|
-
/* @__PURE__ */ (0,
|
|
1016
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", {
|
|
519
1017
|
d: "m5.8906 9.8713 3.3118.9135-.4437 1.7046-3.3118-.9135.4437-1.7046Z",
|
|
520
1018
|
fill: "#fff"
|
|
521
1019
|
}),
|
|
522
|
-
/* @__PURE__ */ (0,
|
|
1020
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", {
|
|
523
1021
|
fillRule: "evenodd",
|
|
524
1022
|
clipRule: "evenodd",
|
|
525
1023
|
d: "m8.5725 11.1592-2.3182-.6395-.1775.6819 2.3182.6394.1775-.6818ZM5.8906 9.8713 5.447 11.576l3.3118.9135.4437-1.7046-3.3118-.9135Z",
|
|
@@ -530,279 +1028,203 @@ var NailPolish = (0, import_react8.forwardRef)((delegated, ref) => {
|
|
|
530
1028
|
});
|
|
531
1029
|
NailPolish.displayName = "NailPolishIcon";
|
|
532
1030
|
|
|
533
|
-
// src/
|
|
534
|
-
var
|
|
535
|
-
var
|
|
536
|
-
var
|
|
537
|
-
return /* @__PURE__ */ (0,
|
|
1031
|
+
// src/iconography/particle.tsx
|
|
1032
|
+
var import_react16 = require("react");
|
|
1033
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
1034
|
+
var Particle = (0, import_react16.forwardRef)((delegated, ref) => {
|
|
1035
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("svg", {
|
|
538
1036
|
ref,
|
|
539
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
540
1037
|
width: "22",
|
|
541
|
-
height: "
|
|
1038
|
+
height: "20",
|
|
1039
|
+
viewBox: "0 0 22 20",
|
|
542
1040
|
fill: "none",
|
|
543
|
-
|
|
1041
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
544
1042
|
...delegated,
|
|
545
1043
|
children: [
|
|
546
|
-
/* @__PURE__ */ (0,
|
|
547
|
-
fill: "#
|
|
548
|
-
d: "
|
|
1044
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
1045
|
+
fill: "#528693",
|
|
1046
|
+
d: "M10.9 18.597c0-.332-2.426-.606-5.418-.61-2.992-.006-5.418.26-5.419.592 0 .333 2.425.606 5.417.611 2.993.005 5.419-.26 5.42-.593ZM21.39 16.21c0-.267-1.94-.485-4.334-.49-2.394-.003-4.335.209-4.335.475s1.94.485 4.334.489c2.393.004 4.334-.209 4.335-.475Z",
|
|
1047
|
+
opacity: ".05"
|
|
549
1048
|
}),
|
|
550
|
-
/* @__PURE__ */ (0,
|
|
1049
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
551
1050
|
fill: "#528693",
|
|
552
|
-
|
|
553
|
-
d: "M21.43 11c0 5.76-4.67 10.43-10.43 10.43S.57 16.76.57 11 5.24.57 11 .57 21.43 5.24 21.43 11ZM11 20.83c5.43 0 9.83-4.4 9.83-9.83S16.43 1.17 11 1.17 1.17 5.57 1.17 11s4.4 9.83 9.83 9.83Z",
|
|
554
|
-
clipRule: "evenodd"
|
|
1051
|
+
d: "m17.404 11.998-4.03.47-6.417.748-1.462.17.21.373 1.94-3.537 3.09-5.638.71-1.295c.154-.28-.267-.53-.42-.25l-1.94 3.537-3.09 5.638-.71 1.295c-.082.149.017.396.21.373l4.03-.47 6.417-.748 1.462-.17c.308-.037.311-.533 0-.496Z"
|
|
555
1052
|
}),
|
|
556
|
-
/* @__PURE__ */ (0,
|
|
557
|
-
fill: "#
|
|
558
|
-
d: "
|
|
1053
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
1054
|
+
fill: "#FFBD54",
|
|
1055
|
+
d: "M11.235 5.898c1.486 0 2.69-1.224 2.69-2.734S12.722.429 11.236.429s-2.69 1.224-2.69 2.735c0 1.51 1.204 2.734 2.69 2.734Z"
|
|
559
1056
|
}),
|
|
560
|
-
/* @__PURE__ */ (0,
|
|
1057
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
561
1058
|
fill: "#528693",
|
|
562
|
-
|
|
563
|
-
d: "m16.48 14.325-5.077-8.793a.466.466 0 0 0-.806 0L5.52 14.325c-.18.31.045.699.403.699h10.153a.466.466 0 0 0 .404-.7Zm-4.557-9.093a1.066 1.066 0 0 0-1.846 0L5 14.025c-.41.71.103 1.599.923 1.599h10.153c.821 0 1.334-.889.924-1.6l-5.077-8.792Z",
|
|
564
|
-
clipRule: "evenodd"
|
|
1059
|
+
d: "M8.918 3.793a2.474 2.474 0 0 1 .068-1.47c.17-.47.48-.876.887-1.162a2.37 2.37 0 0 1 2.76.025c.4.293.703.704.866 1.179.162.474.177.987.041 1.47a2.44 2.44 0 0 1-.798 1.227 2.375 2.375 0 0 1-1.348.536 2.393 2.393 0 0 1-1.552-.457 2.461 2.461 0 0 1-.924-1.348.297.297 0 0 0-.137-.18.288.288 0 0 0-.4.113.302.302 0 0 0-.027.226c.16.604.5 1.143.972 1.543a2.945 2.945 0 0 0 3.425.283c.53-.318.95-.794 1.204-1.364.253-.57.327-1.205.211-1.82a3.047 3.047 0 0 0-.858-1.61A2.94 2.94 0 0 0 9.912.448c-.613.317-1.1.837-1.384 1.473a3.12 3.12 0 0 0-.174 2.03c.093.37.657.213.564-.158Z"
|
|
565
1060
|
}),
|
|
566
|
-
/* @__PURE__ */ (0,
|
|
567
|
-
fill: "#
|
|
568
|
-
d: "
|
|
1061
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
1062
|
+
fill: "#528693",
|
|
1063
|
+
d: "M9.92 3.52a1.419 1.419 0 0 1 .143-1.046 1.38 1.38 0 0 1 .822-.647.195.195 0 0 0 .117-.093.2.2 0 0 0-.073-.27.192.192 0 0 0-.148-.019 1.778 1.778 0 0 0-1.055.835c-.23.407-.296.89-.182 1.346a.2.2 0 0 0 .092.12.193.193 0 0 0 .266-.075.2.2 0 0 0 .018-.15Z"
|
|
569
1064
|
}),
|
|
570
|
-
/* @__PURE__ */ (0,
|
|
1065
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
1066
|
+
fill: "#FFBD54",
|
|
1067
|
+
d: "M5.494 18.192c2.477 0 4.485-2.04 4.485-4.558 0-2.517-2.008-4.557-4.485-4.557-2.476 0-4.484 2.04-4.484 4.557 0 2.518 2.008 4.558 4.484 4.558Z"
|
|
1068
|
+
}),
|
|
1069
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
571
1070
|
fill: "#528693",
|
|
572
|
-
|
|
573
|
-
d: "M12.188 8.628v2.475a1.1 1.1 0 0 1-2.2 0V8.628a1.1 1.1 0 1 1 2.2 0Zm-1.1-.5a.5.5 0 0 0-.5.5v2.475a.5.5 0 1 0 1 0V8.628a.5.5 0 0 0-.5-.5Z",
|
|
574
|
-
clipRule: "evenodd"
|
|
1071
|
+
d: "M10.271 13.634c0-.998-.302-1.973-.867-2.79a4.785 4.785 0 0 0-2.289-1.778 4.702 4.702 0 0 0-2.878-.115 4.768 4.768 0 0 0-2.42 1.587c-.488.6-.828 1.31-.989 2.071a4.93 4.93 0 0 0 .062 2.303 4.876 4.876 0 0 0 1.098 2.014 4.77 4.77 0 0 0 1.889 1.272 4.704 4.704 0 0 0 4.363-.594 4.83 4.83 0 0 0 1.493-1.732c.353-.691.538-1.459.538-2.238a.3.3 0 0 0-.086-.21.29.29 0 0 0-.413 0 .3.3 0 0 0-.086.21c0 .88-.268 1.736-.766 2.454a4.2 4.2 0 0 1-2.016 1.557 4.127 4.127 0 0 1-2.531.093 4.186 4.186 0 0 1-2.122-1.406 4.316 4.316 0 0 1-.349-4.895 4.214 4.214 0 0 1 1.9-1.702 4.13 4.13 0 0 1 2.519-.279 4.22 4.22 0 0 1 2.408 1.485c.613.76.95 1.711.957 2.693a.3.3 0 0 0 .086.21.29.29 0 0 0 .413 0 .3.3 0 0 0 .086-.21Z"
|
|
575
1072
|
}),
|
|
576
|
-
/* @__PURE__ */ (0,
|
|
577
|
-
fill: "#
|
|
578
|
-
d: "
|
|
1073
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
1074
|
+
fill: "#FFBD54",
|
|
1075
|
+
d: "M17.404 15.892c1.981 0 3.587-1.633 3.587-3.646 0-2.014-1.606-3.647-3.587-3.647s-3.587 1.633-3.587 3.646c0 2.014 1.606 3.647 3.587 3.647Z"
|
|
579
1076
|
}),
|
|
580
|
-
/* @__PURE__ */ (0,
|
|
1077
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
581
1078
|
fill: "#528693",
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
1079
|
+
d: "M14.22 13.11a3.4 3.4 0 0 1 .092-2.02 3.342 3.342 0 0 1 1.219-1.598 3.258 3.258 0 0 1 3.793.032c.551.402.968.967 1.192 1.619.223.651.244 1.357.058 2.021a3.353 3.353 0 0 1-1.098 1.687 3.265 3.265 0 0 1-1.852.737 3.288 3.288 0 0 1-2.133-.627 3.382 3.382 0 0 1-1.27-1.851.296.296 0 0 0-.138-.18.288.288 0 0 0-.398.113.302.302 0 0 0-.028.226 3.951 3.951 0 0 0 1.263 2.006 3.83 3.83 0 0 0 4.454.37 3.923 3.923 0 0 0 1.566-1.773c.33-.74.426-1.567.276-2.366a3.964 3.964 0 0 0-1.114-2.095 3.857 3.857 0 0 0-2.099-1.061c-.79-.126-1.6 0-2.317.36a3.965 3.965 0 0 0-1.804 1.916 4.054 4.054 0 0 0-.225 2.643c.094.37.658.211.564-.159Z"
|
|
1080
|
+
}),
|
|
1081
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
1082
|
+
fill: "#FFBD54",
|
|
1083
|
+
d: "M5.494 18.192c2.477 0 4.485-2.04 4.485-4.558 0-2.517-2.008-4.557-4.485-4.557-2.476 0-4.484 2.04-4.484 4.557 0 2.518 2.008 4.558 4.484 4.558Z"
|
|
1084
|
+
}),
|
|
1085
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
1086
|
+
fill: "#528693",
|
|
1087
|
+
d: "M1.303 13.634c0-.878.268-1.735.766-2.453a4.2 4.2 0 0 1 2.016-1.558 4.128 4.128 0 0 1 2.531-.092 4.187 4.187 0 0 1 2.122 1.406 4.316 4.316 0 0 1 .349 4.895 4.214 4.214 0 0 1-1.9 1.702 4.13 4.13 0 0 1-2.518.279 4.22 4.22 0 0 1-2.409-1.485 4.344 4.344 0 0 1-.957-2.694.3.3 0 0 0-.086-.21.29.29 0 0 0-.413 0 .3.3 0 0 0-.086.21c0 1 .303 1.974.867 2.792a4.785 4.785 0 0 0 2.29 1.776c.924.34 1.929.38 2.877.116a4.768 4.768 0 0 0 2.42-1.587c.488-.6.828-1.31.99-2.072.16-.76.14-1.55-.062-2.302A4.876 4.876 0 0 0 9 10.343 4.77 4.77 0 0 0 7.113 9.07a4.703 4.703 0 0 0-4.363.595 4.83 4.83 0 0 0-1.493 1.733 4.917 4.917 0 0 0-.538 2.236.3.3 0 0 0 .086.21.29.29 0 0 0 .413 0 .3.3 0 0 0 .086-.21Z"
|
|
1088
|
+
}),
|
|
1089
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
1090
|
+
fill: "#528693",
|
|
1091
|
+
d: "M3.096 13.634c.007-.644.262-1.26.71-1.715a2.406 2.406 0 0 1 1.689-.722c.051 0 .101-.02.138-.057a.2.2 0 0 0 0-.28.193.193 0 0 0-.138-.059c-.74.001-1.448.3-1.97.83a2.86 2.86 0 0 0-.819 2.003.2.2 0 0 0 .057.14.193.193 0 0 0 .276 0 .2.2 0 0 0 .057-.14Z"
|
|
1092
|
+
}),
|
|
1093
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
1094
|
+
fill: "#FFBD54",
|
|
1095
|
+
d: "M17.407 15.694c1.981 0 3.587-1.633 3.587-3.646 0-2.014-1.606-3.647-3.587-3.647-1.982 0-3.588 1.633-3.588 3.647s1.606 3.646 3.588 3.646Z"
|
|
1096
|
+
}),
|
|
1097
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
1098
|
+
fill: "#528693",
|
|
1099
|
+
d: "M14.22 13.11a3.4 3.4 0 0 1 .092-2.02 3.342 3.342 0 0 1 1.219-1.598 3.258 3.258 0 0 1 3.793.032c.551.402.968.967 1.192 1.619.223.651.244 1.357.058 2.021a3.353 3.353 0 0 1-1.098 1.687 3.265 3.265 0 0 1-1.852.737 3.288 3.288 0 0 1-2.133-.627 3.382 3.382 0 0 1-1.27-1.851.296.296 0 0 0-.138-.18.288.288 0 0 0-.398.113.302.302 0 0 0-.028.226 3.951 3.951 0 0 0 1.263 2.006 3.83 3.83 0 0 0 4.454.37 3.923 3.923 0 0 0 1.566-1.773c.33-.74.426-1.567.276-2.366a3.964 3.964 0 0 0-1.114-2.095 3.857 3.857 0 0 0-2.099-1.061c-.79-.126-1.6 0-2.317.36a3.965 3.965 0 0 0-1.804 1.916 4.054 4.054 0 0 0-.225 2.643c.094.37.658.211.564-.159Z"
|
|
1100
|
+
}),
|
|
1101
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
1102
|
+
fill: "#528693",
|
|
1103
|
+
d: "M15.588 12.738a1.96 1.96 0 0 1 .197-1.445 1.906 1.906 0 0 1 1.134-.894.196.196 0 0 0 .118-.093.201.201 0 0 0-.073-.27.192.192 0 0 0-.148-.019 2.304 2.304 0 0 0-1.368 1.082 2.37 2.37 0 0 0-.236 1.744c.014.05.047.092.092.118a.192.192 0 0 0 .264-.074.2.2 0 0 0 .02-.149ZM8.652 12.516a3.843 3.843 0 0 1-.376 2.692 3.644 3.644 0 0 1-1.792 1.594c-.14.057-.077.292.064.233a3.851 3.851 0 0 0 1.635-1.293 3.943 3.943 0 0 0 .736-1.968 3.897 3.897 0 0 0-.116-1.3.079.079 0 0 0-.038-.043.077.077 0 0 0-.101.029.08.08 0 0 0-.011.056h-.001ZM5.574 17.212c.025 0 .049-.01.066-.027a.095.095 0 0 0 0-.134.092.092 0 0 0-.131 0 .096.096 0 0 0 0 .134.092.092 0 0 0 .065.027ZM19.744 10.834a3.173 3.173 0 0 1-.138 2.498 3.014 3.014 0 0 1-1.68 1.464c-.14.049-.079.276.06.226a3.216 3.216 0 0 0 1.54-1.177 3.3 3.3 0 0 0 .6-1.862 3.198 3.198 0 0 0-.226-1.193c-.04-.095-.192-.057-.156.044ZM17.372 15.06a.09.09 0 0 0 .062-.153.087.087 0 0 0-.125 0 .09.09 0 0 0 .063.152ZM12.698 2.3c.137.257.217.541.235.833.008.291-.061.579-.201.832-.141.238-.34.435-.576.574a1.592 1.592 0 0 1-.777.219.111.111 0 0 0-.075.034.115.115 0 0 0 0 .158c.02.02.047.033.075.034.315-.001.624-.088.896-.25.27-.164.495-.397.648-.676.293-.544.306-1.36-.107-1.85-.059-.07-.152.02-.117.092h-.001ZM10.765 4.552c.025 0 .049-.01.067-.028a.097.097 0 0 0 0-.135.094.094 0 0 0-.134 0 .097.097 0 0 0 0 .135.094.094 0 0 0 .067.028Z"
|
|
1104
|
+
}),
|
|
1105
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("path", {
|
|
1106
|
+
fill: "#528693",
|
|
1107
|
+
d: "M18.347 4.75c1.175 0 1.177-1.857 0-1.857-1.178 0-1.178 1.858 0 1.858ZM16.12 5.824l-.003.056c.002.07.03.135.078.184a.265.265 0 0 0 .181.08l.07-.01a.258.258 0 0 0 .114-.068l.04-.053a.266.266 0 0 0 .035-.133l-.003-.056a.202.202 0 0 0-.022-.1.267.267 0 0 0-.234-.16l-.068.01a.256.256 0 0 0-.113.067l-.039.052a.26.26 0 0 0-.035.131ZM5.704 6.722c.573 0 .574-.905 0-.905-.575 0-.575.905 0 .905ZM3.623 2.902c1.3 0 1.301-2.052 0-2.052s-1.301 2.052 0 2.052Z",
|
|
1108
|
+
opacity: ".05"
|
|
1109
|
+
})
|
|
1110
|
+
]
|
|
1111
|
+
});
|
|
1112
|
+
});
|
|
1113
|
+
Particle.displayName = "ParticleIcon";
|
|
1114
|
+
|
|
1115
|
+
// src/iconography/warning.tsx
|
|
1116
|
+
var import_react17 = require("react");
|
|
1117
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
1118
|
+
var Warning = (0, import_react17.forwardRef)((delegated, ref) => {
|
|
1119
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("svg", {
|
|
1120
|
+
ref,
|
|
1121
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1122
|
+
width: "22",
|
|
1123
|
+
height: "22",
|
|
1124
|
+
fill: "none",
|
|
1125
|
+
viewBox: "0 0 22 22",
|
|
1126
|
+
...delegated,
|
|
1127
|
+
children: [
|
|
1128
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", {
|
|
1129
|
+
d: "M9.67541 3.72993C10.2804 2.68198 11.793 2.68198 12.398 3.72993L19.8853 16.6982C20.4903 17.7462 19.734 19.0561 18.524 19.0561H3.54948C2.33942 19.0561 1.58313 17.7462 2.18816 16.6982L9.67541 3.72993Z",
|
|
1130
|
+
fill: "#FFDE99"
|
|
1131
|
+
}),
|
|
1132
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", {
|
|
1133
|
+
"fill-rule": "evenodd",
|
|
1134
|
+
"clip-rule": "evenodd",
|
|
1135
|
+
d: "M19.3657 16.9982L11.8784 4.02993C11.5043 3.38198 10.5691 3.38198 10.195 4.02993L2.70778 16.9982C2.33369 17.6462 2.8013 18.4561 3.54948 18.4561H18.524C19.2722 18.4561 19.7398 17.6462 19.3657 16.9982ZM12.398 3.72993C11.793 2.68198 10.2804 2.68198 9.67541 3.72993L2.18816 16.6982C1.58313 17.7462 2.33942 19.0561 3.54948 19.0561H18.524C19.734 19.0561 20.4903 17.7462 19.8853 16.6982L12.398 3.72993Z",
|
|
1136
|
+
fill: "#528693"
|
|
1137
|
+
}),
|
|
1138
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", {
|
|
1139
|
+
d: "M10.4293 8.73822C10.4293 8.33098 10.7595 8.00085 11.1667 8.00085V8.00085C11.5739 8.00085 11.9041 8.33098 11.9041 8.73822V12.3883C11.9041 12.7956 11.5739 13.1257 11.1667 13.1257V13.1257C10.7595 13.1257 10.4293 12.7956 10.4293 12.3883V8.73822Z",
|
|
1140
|
+
fill: "white"
|
|
1141
|
+
}),
|
|
1142
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", {
|
|
1143
|
+
"fill-rule": "evenodd",
|
|
1144
|
+
"clip-rule": "evenodd",
|
|
1145
|
+
d: "M12.504 8.73824V12.3883C12.504 13.127 11.9053 13.7257 11.1667 13.7257C10.4281 13.7257 9.82932 13.127 9.82932 12.3883V8.73825C9.82932 7.99964 10.4281 7.40088 11.1667 7.40088C11.9053 7.40088 12.504 7.99964 12.504 8.73824ZM11.1667 8.00088C10.7594 8.00088 10.4293 8.33101 10.4293 8.73825V12.3883C10.4293 12.7956 10.7594 13.1257 11.1667 13.1257C11.5739 13.1257 11.904 12.7956 11.904 12.3883V8.73824C11.904 8.33101 11.5739 8.00088 11.1667 8.00088Z",
|
|
1146
|
+
fill: "#528693"
|
|
1147
|
+
}),
|
|
1148
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", {
|
|
1149
|
+
d: "M11.9041 15.7807C11.9041 16.1879 11.5739 16.5181 11.1667 16.5181C10.7595 16.5181 10.4293 16.1879 10.4293 15.7807C10.4293 15.3735 10.7595 15.0433 11.1667 15.0433C11.5739 15.0433 11.9041 15.3735 11.9041 15.7807Z",
|
|
1150
|
+
fill: "white"
|
|
1151
|
+
}),
|
|
1152
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("path", {
|
|
1153
|
+
"fill-rule": "evenodd",
|
|
1154
|
+
"clip-rule": "evenodd",
|
|
1155
|
+
d: "M12.504 15.7807C12.504 16.5193 11.9053 17.1181 11.1667 17.1181C10.4281 17.1181 9.82932 16.5193 9.82932 15.7807C9.82932 15.0421 10.4281 14.4434 11.1667 14.4434C11.9053 14.4434 12.504 15.0421 12.504 15.7807ZM11.1667 16.5181C11.5739 16.5181 11.904 16.188 11.904 15.7807C11.904 15.3735 11.5739 15.0434 11.1667 15.0434C10.7594 15.0434 10.4293 15.3735 10.4293 15.7807C10.4293 16.188 10.7594 16.5181 11.1667 16.5181Z",
|
|
1156
|
+
fill: "#528693"
|
|
585
1157
|
})
|
|
586
1158
|
]
|
|
587
1159
|
});
|
|
588
1160
|
});
|
|
589
1161
|
Warning.displayName = "WarningIcon";
|
|
590
1162
|
|
|
591
|
-
// src/
|
|
1163
|
+
// src/iconography/index.ts
|
|
592
1164
|
var Icon = {
|
|
593
1165
|
Arrow,
|
|
1166
|
+
Atom,
|
|
594
1167
|
Cancel,
|
|
595
|
-
|
|
1168
|
+
Copy,
|
|
1169
|
+
Crystal,
|
|
1170
|
+
Edit,
|
|
596
1171
|
Error: Error2,
|
|
597
1172
|
Glasses,
|
|
598
1173
|
GraphQL,
|
|
599
1174
|
Info,
|
|
600
1175
|
NailPolish,
|
|
1176
|
+
Particle,
|
|
601
1177
|
Warning
|
|
602
1178
|
};
|
|
603
1179
|
|
|
604
|
-
// src/action-menu/action-item.tsx
|
|
605
|
-
var import_class_variance_authority3 = require("class-variance-authority");
|
|
606
|
-
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
607
|
-
function Item2({ children, className, onSelect }) {
|
|
608
|
-
return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(DropdownMenu.Item, {
|
|
609
|
-
onClick: onSelect,
|
|
610
|
-
className: (0, import_class_variance_authority3.cx)(
|
|
611
|
-
"items-center text-density cursor-pointer flex font-sans font-medium text-sm gap-2 py-2.5 px-5",
|
|
612
|
-
"hover:bg-[#f4f4f4]",
|
|
613
|
-
"[&.danger]:text-error",
|
|
614
|
-
className
|
|
615
|
-
),
|
|
616
|
-
children
|
|
617
|
-
});
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
// src/action-menu/action-menu.tsx
|
|
621
|
-
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
622
|
-
function ActionMenu({ children, tabIndex }) {
|
|
623
|
-
return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(DropdownMenu.Root, {
|
|
624
|
-
content: children,
|
|
625
|
-
alignContent: "center",
|
|
626
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("button", {
|
|
627
|
-
tabIndex,
|
|
628
|
-
type: "button",
|
|
629
|
-
className: (0, import_class_variance_authority4.cx)(
|
|
630
|
-
"items-center bg-transparent rounded-full border-none cursor-pointer flex justify-center p-1",
|
|
631
|
-
"hover:bg-gray-6 focus:bg-gray-6 focus:outline-offset-2 focus:outline focus:outline-1 focus:outline-glacier focus-visible:outline-offset-2 focus-visible:outline focus-visible:outline-1 focus-visible:outline-glacier",
|
|
632
|
-
"active:scale-95"
|
|
633
|
-
),
|
|
634
|
-
"aria-label": "more options",
|
|
635
|
-
children: [
|
|
636
|
-
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", {
|
|
637
|
-
className: "sr-only",
|
|
638
|
-
children: "Open more options"
|
|
639
|
-
}),
|
|
640
|
-
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)(Icon.Dots, {})
|
|
641
|
-
]
|
|
642
|
-
})
|
|
643
|
-
});
|
|
644
|
-
}
|
|
645
|
-
ActionMenu.Item = Item2;
|
|
646
|
-
|
|
647
|
-
// src/button/button.tsx
|
|
648
|
-
var import_react10 = require("react");
|
|
649
|
-
var import_class_variance_authority5 = require("class-variance-authority");
|
|
650
|
-
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
651
|
-
var DEFAULT_TEXT_COLOR = "text-black-text disabled:text-black-text/50";
|
|
652
|
-
var buttonStyles = (0, import_class_variance_authority5.cva)(
|
|
653
|
-
[
|
|
654
|
-
"inline-grid grid-flow-col items-center gap-2 rounded border-none font-medium cursor-pointer whitespace-nowrap",
|
|
655
|
-
"disabled:cursor-default disabled:scale-100 disabled:drop-shadow-none",
|
|
656
|
-
"active:scale-95",
|
|
657
|
-
"focus:drop-shadow-active",
|
|
658
|
-
"hover:drop-shadow-hover"
|
|
659
|
-
],
|
|
660
|
-
{
|
|
661
|
-
variants: {
|
|
662
|
-
variant: {
|
|
663
|
-
primary: `bg-neptune disabled:bg-neptune-light ${DEFAULT_TEXT_COLOR}`,
|
|
664
|
-
secondary: `bg-white disabled:bg-[#FBFCFC] ${DEFAULT_TEXT_COLOR}`,
|
|
665
|
-
"secondary-dark": `bg-cosmos disabled:bg-[#F7F8F9] ${DEFAULT_TEXT_COLOR}`,
|
|
666
|
-
danger: "text-white bg-error disabled:bg-error/50 disabled:text-white/75"
|
|
667
|
-
},
|
|
668
|
-
size: {
|
|
669
|
-
xs: "h-8 px-5",
|
|
670
|
-
sm: "h-9 px-6",
|
|
671
|
-
md: "h-10 px-7",
|
|
672
|
-
lg: "h-10 px-8",
|
|
673
|
-
xl: "h-11 px-9"
|
|
674
|
-
}
|
|
675
|
-
},
|
|
676
|
-
defaultVariants: {
|
|
677
|
-
variant: "primary",
|
|
678
|
-
size: "sm"
|
|
679
|
-
}
|
|
680
|
-
}
|
|
681
|
-
);
|
|
682
|
-
var Button = (0, import_react10.forwardRef)(
|
|
683
|
-
({ children, className, type = "button", size, variant, ...delegated }, ref) => {
|
|
684
|
-
return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("button", {
|
|
685
|
-
ref,
|
|
686
|
-
type,
|
|
687
|
-
className: buttonStyles({ size, variant, className }),
|
|
688
|
-
...delegated,
|
|
689
|
-
children
|
|
690
|
-
});
|
|
691
|
-
}
|
|
692
|
-
);
|
|
693
|
-
Button.displayName = "Button";
|
|
694
|
-
|
|
695
|
-
// src/card/card.tsx
|
|
696
|
-
var import_class_variance_authority6 = require("class-variance-authority");
|
|
697
|
-
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
698
|
-
var cardStyles = (0, import_class_variance_authority6.cva)("rounded-lg p-4 sm:p-8", {
|
|
699
|
-
variants: {
|
|
700
|
-
variant: {
|
|
701
|
-
gray: "bg-jupiter",
|
|
702
|
-
white: "bg-white"
|
|
703
|
-
}
|
|
704
|
-
},
|
|
705
|
-
defaultVariants: {
|
|
706
|
-
variant: "gray"
|
|
707
|
-
}
|
|
708
|
-
});
|
|
709
|
-
function Card({ children, className, variant, ...delegated }) {
|
|
710
|
-
return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("section", {
|
|
711
|
-
className: cardStyles({ variant, className }),
|
|
712
|
-
...delegated,
|
|
713
|
-
children
|
|
714
|
-
});
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
// src/checkbox/checkbox.tsx
|
|
718
|
-
var CheckboxPrimitive = __toESM(require("@radix-ui/react-checkbox"));
|
|
719
|
-
var import_class_variance_authority7 = require("class-variance-authority");
|
|
720
|
-
var import_react11 = require("react");
|
|
721
|
-
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
722
|
-
var Checkbox = (0, import_react11.forwardRef)((props, ref) => {
|
|
723
|
-
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(CheckboxPrimitive.Root, {
|
|
724
|
-
...props,
|
|
725
|
-
ref,
|
|
726
|
-
className: (0, import_class_variance_authority7.cx)(
|
|
727
|
-
"flex h-3.5 w-3.5 items-center justify-center rounded-sm border border-solid border-[#ddd] bg-white",
|
|
728
|
-
"focus:outline-none focus:ring-1 focus:ring-[#528693] focus:ring-offset-1",
|
|
729
|
-
"radix-state-checked:border-[#528693] radix-state-checked:bg-neptune",
|
|
730
|
-
"radix-state-checked:disabled:opacity-40 radix-state-unchecked:disabled:!bg-[#ddd]/20"
|
|
731
|
-
),
|
|
732
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(CheckboxPrimitive.Indicator, {
|
|
733
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("svg", {
|
|
734
|
-
viewBox: "0 0 9 9",
|
|
735
|
-
fill: "none",
|
|
736
|
-
className: "h-2 w-2",
|
|
737
|
-
children: [
|
|
738
|
-
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", {
|
|
739
|
-
d: "M1.12 5.51a.559.559 0 01.832-.101l2.201 1.953-.427.624a.326.326 0 01-.486.06L1.21 6.245a.559.559 0 01-.09-.734z",
|
|
740
|
-
fill: "#528693"
|
|
741
|
-
}),
|
|
742
|
-
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("path", {
|
|
743
|
-
d: "M7.883 1.087c.043.03.053.09.023.132L3.669 7.132l-.154-.105L7.754 1.11a.093.093 0 01.129-.023z",
|
|
744
|
-
stroke: "#528693"
|
|
745
|
-
})
|
|
746
|
-
]
|
|
747
|
-
})
|
|
748
|
-
})
|
|
749
|
-
});
|
|
750
|
-
});
|
|
751
|
-
Checkbox.displayName = "Checkbox";
|
|
752
|
-
|
|
753
|
-
// src/dialog/destroyFns.ts
|
|
754
|
-
var destroyFns = [];
|
|
755
|
-
|
|
756
1180
|
// src/dialog/dialog.tsx
|
|
757
|
-
var
|
|
758
|
-
var import_class_variance_authority8 = require("class-variance-authority");
|
|
759
|
-
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
1181
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
760
1182
|
var IconMap = {
|
|
761
1183
|
error: Icon.Error,
|
|
762
1184
|
info: Icon.Info,
|
|
763
1185
|
warning: Icon.Warning
|
|
764
1186
|
};
|
|
765
|
-
var dialogContentStyles = (0,
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
withIcon: {
|
|
770
|
-
true: "flex gap-4 items-start"
|
|
771
|
-
}
|
|
1187
|
+
var dialogContentStyles = (0, import_class_variance_authority7.cva)("c-dialog", {
|
|
1188
|
+
variants: {
|
|
1189
|
+
withIcon: {
|
|
1190
|
+
true: "c-dialog-with-icon"
|
|
772
1191
|
}
|
|
773
1192
|
}
|
|
774
|
-
);
|
|
1193
|
+
});
|
|
775
1194
|
function DialogContent({ children, closable = true, type, className, container, ...delegated }) {
|
|
776
1195
|
const withIcon = typeof type !== "undefined";
|
|
777
1196
|
const IconComponent = type && IconMap[type];
|
|
778
|
-
return /* @__PURE__ */ (0,
|
|
1197
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(DialogPrimitive.Portal, {
|
|
779
1198
|
container,
|
|
780
1199
|
children: [
|
|
781
|
-
/* @__PURE__ */ (0,
|
|
782
|
-
className: "
|
|
1200
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)(DialogPrimitive.Overlay, {
|
|
1201
|
+
className: "c-dialog-overlay"
|
|
783
1202
|
}),
|
|
784
|
-
/* @__PURE__ */ (0,
|
|
1203
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(DialogPrimitive.Content, {
|
|
785
1204
|
className: dialogContentStyles({ withIcon, class: className }),
|
|
786
1205
|
...delegated,
|
|
787
1206
|
children: [
|
|
788
|
-
IconComponent && /* @__PURE__ */ (0,
|
|
789
|
-
className: "
|
|
790
|
-
|
|
791
|
-
|
|
1207
|
+
IconComponent && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", {
|
|
1208
|
+
className: "flex h-[44px] w-[44px] min-w-[44px] items-center justify-center rounded-lg bg-gray-50-900 p-[5px]",
|
|
1209
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(IconComponent, {
|
|
1210
|
+
className: "c-dialog-icon",
|
|
1211
|
+
width: 34,
|
|
1212
|
+
height: 34
|
|
1213
|
+
})
|
|
792
1214
|
}),
|
|
793
|
-
closable && /* @__PURE__ */ (0,
|
|
1215
|
+
closable && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(DialogClose, {
|
|
794
1216
|
asChild: true,
|
|
795
|
-
children: /* @__PURE__ */ (0,
|
|
796
|
-
className: "
|
|
797
|
-
children: /* @__PURE__ */ (0,
|
|
1217
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Button, {
|
|
1218
|
+
className: "c-dialog-close-button",
|
|
1219
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Icon.Cancel, {
|
|
798
1220
|
color: "density",
|
|
799
1221
|
"aria-label": "Close",
|
|
800
|
-
height:
|
|
801
|
-
width:
|
|
1222
|
+
height: 16,
|
|
1223
|
+
width: 16
|
|
802
1224
|
})
|
|
803
1225
|
})
|
|
804
1226
|
}),
|
|
805
|
-
/* @__PURE__ */ (0,
|
|
1227
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", {
|
|
806
1228
|
children
|
|
807
1229
|
})
|
|
808
1230
|
]
|
|
@@ -811,14 +1233,14 @@ function DialogContent({ children, closable = true, type, className, container,
|
|
|
811
1233
|
});
|
|
812
1234
|
}
|
|
813
1235
|
function DialogTitle({ className, ...delegated }) {
|
|
814
|
-
return /* @__PURE__ */ (0,
|
|
815
|
-
className: (0,
|
|
1236
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(DialogPrimitive.Title, {
|
|
1237
|
+
className: (0, import_class_variance_authority7.cx)("c-dialog-title", className),
|
|
816
1238
|
...delegated
|
|
817
1239
|
});
|
|
818
1240
|
}
|
|
819
1241
|
function DialogDescription(delegated) {
|
|
820
|
-
return /* @__PURE__ */ (0,
|
|
821
|
-
className: "
|
|
1242
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(DialogPrimitive.Description, {
|
|
1243
|
+
className: "c-dialog-description",
|
|
822
1244
|
...delegated
|
|
823
1245
|
});
|
|
824
1246
|
}
|
|
@@ -826,7 +1248,7 @@ var DialogTrigger = DialogPrimitive.Trigger;
|
|
|
826
1248
|
var DialogClose = DialogPrimitive.Close;
|
|
827
1249
|
var DialogRoot = DialogPrimitive.Root;
|
|
828
1250
|
function DialogBase({ children, ...delegated }) {
|
|
829
|
-
return /* @__PURE__ */ (0,
|
|
1251
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(DialogRoot, {
|
|
830
1252
|
...delegated,
|
|
831
1253
|
children
|
|
832
1254
|
});
|
|
@@ -841,7 +1263,7 @@ DialogBase.Overlay = DialogPrimitive.Overlay;
|
|
|
841
1263
|
var import_react_dom = require("react-dom");
|
|
842
1264
|
|
|
843
1265
|
// src/dialog/confirm-dialog.tsx
|
|
844
|
-
var
|
|
1266
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
845
1267
|
function ConfirmDialog({
|
|
846
1268
|
open,
|
|
847
1269
|
close,
|
|
@@ -850,43 +1272,46 @@ function ConfirmDialog({
|
|
|
850
1272
|
content,
|
|
851
1273
|
okCancel,
|
|
852
1274
|
okText = "OK",
|
|
1275
|
+
okButtonIntent = "default",
|
|
853
1276
|
onOk,
|
|
854
1277
|
onCancel,
|
|
855
1278
|
cancelText = "Cancel",
|
|
856
1279
|
onEscapeKeyDown,
|
|
857
1280
|
onInteractOutside,
|
|
858
1281
|
onPointerDownOutside,
|
|
859
|
-
type
|
|
1282
|
+
type,
|
|
1283
|
+
closable
|
|
860
1284
|
}) {
|
|
861
|
-
const cancelButton = okCancel && /* @__PURE__ */ (0,
|
|
862
|
-
variant: "secondary",
|
|
1285
|
+
const cancelButton = okCancel && /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(Button, {
|
|
863
1286
|
onClick: () => {
|
|
864
1287
|
onCancel?.();
|
|
865
1288
|
close();
|
|
866
1289
|
},
|
|
867
1290
|
children: cancelText
|
|
868
1291
|
});
|
|
869
|
-
return /* @__PURE__ */ (0,
|
|
1292
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(DialogRoot, {
|
|
870
1293
|
open,
|
|
871
1294
|
onOpenChange: () => close(),
|
|
872
|
-
children: /* @__PURE__ */ (0,
|
|
1295
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(Dialog.Content, {
|
|
873
1296
|
onEscapeKeyDown,
|
|
874
1297
|
onInteractOutside,
|
|
875
1298
|
onPointerDownOutside,
|
|
876
1299
|
type,
|
|
1300
|
+
closable,
|
|
877
1301
|
children: [
|
|
878
|
-
title && /* @__PURE__ */ (0,
|
|
1302
|
+
title && /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(Dialog.Title, {
|
|
879
1303
|
children: title
|
|
880
1304
|
}),
|
|
881
|
-
description && /* @__PURE__ */ (0,
|
|
1305
|
+
description && /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(Dialog.Description, {
|
|
882
1306
|
children: description
|
|
883
1307
|
}),
|
|
884
1308
|
content,
|
|
885
|
-
/* @__PURE__ */ (0,
|
|
886
|
-
className: "flex items-center
|
|
1309
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("div", {
|
|
1310
|
+
className: "mt-4 flex items-center justify-end gap-4",
|
|
887
1311
|
children: [
|
|
888
1312
|
cancelButton,
|
|
889
|
-
/* @__PURE__ */ (0,
|
|
1313
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(Button, {
|
|
1314
|
+
intent: okButtonIntent,
|
|
890
1315
|
onClick: () => {
|
|
891
1316
|
onOk?.();
|
|
892
1317
|
close();
|
|
@@ -901,7 +1326,7 @@ function ConfirmDialog({
|
|
|
901
1326
|
}
|
|
902
1327
|
|
|
903
1328
|
// src/dialog/config.tsx
|
|
904
|
-
var
|
|
1329
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
905
1330
|
function confirm(config) {
|
|
906
1331
|
const container = document.createDocumentFragment();
|
|
907
1332
|
let currentConfig = { ...config, close, open: true };
|
|
@@ -937,7 +1362,7 @@ function confirm(config) {
|
|
|
937
1362
|
function render({ okText, cancelText, ...delegated }) {
|
|
938
1363
|
clearTimeout(timeoutId);
|
|
939
1364
|
timeoutId = setTimeout(() => {
|
|
940
|
-
(0, import_react_dom.render)(/* @__PURE__ */ (0,
|
|
1365
|
+
(0, import_react_dom.render)(/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(ConfirmDialog, {
|
|
941
1366
|
...delegated,
|
|
942
1367
|
okText,
|
|
943
1368
|
cancelText
|
|
@@ -1040,36 +1465,26 @@ function destroyAll() {
|
|
|
1040
1465
|
}
|
|
1041
1466
|
|
|
1042
1467
|
// src/icon-button/icon-button.tsx
|
|
1043
|
-
var
|
|
1044
|
-
var
|
|
1045
|
-
var
|
|
1046
|
-
var buttonStyles2 = (0,
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
],
|
|
1055
|
-
{
|
|
1056
|
-
variants: {
|
|
1057
|
-
size: {
|
|
1058
|
-
xs: "h-8 w-8",
|
|
1059
|
-
sm: "h-9 w-9",
|
|
1060
|
-
md: "h-10 w-10",
|
|
1061
|
-
lg: "h-10 w-10",
|
|
1062
|
-
xl: "h-11 w-11"
|
|
1063
|
-
}
|
|
1064
|
-
},
|
|
1065
|
-
defaultVariants: {
|
|
1066
|
-
size: "sm"
|
|
1468
|
+
var import_react18 = require("react");
|
|
1469
|
+
var import_class_variance_authority8 = require("class-variance-authority");
|
|
1470
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
1471
|
+
var buttonStyles2 = (0, import_class_variance_authority8.cva)(["c-icon-button"], {
|
|
1472
|
+
variants: {
|
|
1473
|
+
size: {
|
|
1474
|
+
xxs: "c-icon-button-xxs",
|
|
1475
|
+
xs: "c-icon-button-xs",
|
|
1476
|
+
sm: "c-icon-button-sm",
|
|
1477
|
+
md: "c-icon-button-md",
|
|
1478
|
+
lg: "c-icon-button-lg"
|
|
1067
1479
|
}
|
|
1480
|
+
},
|
|
1481
|
+
defaultVariants: {
|
|
1482
|
+
size: "sm"
|
|
1068
1483
|
}
|
|
1069
|
-
);
|
|
1070
|
-
var IconButton = (0,
|
|
1484
|
+
});
|
|
1485
|
+
var IconButton = (0, import_react18.forwardRef)(
|
|
1071
1486
|
({ children, className, type = "button", size, ...delegated }, ref) => {
|
|
1072
|
-
return /* @__PURE__ */ (0,
|
|
1487
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("button", {
|
|
1073
1488
|
ref,
|
|
1074
1489
|
type,
|
|
1075
1490
|
className: buttonStyles2({ size, className }),
|
|
@@ -1082,26 +1497,19 @@ IconButton.displayName = "Button";
|
|
|
1082
1497
|
|
|
1083
1498
|
// src/inline-radio/inline-radio.tsx
|
|
1084
1499
|
var RadioGroupPrimitive = __toESM(require("@radix-ui/react-radio-group"));
|
|
1085
|
-
var
|
|
1086
|
-
var
|
|
1500
|
+
var import_class_variance_authority9 = require("class-variance-authority");
|
|
1501
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
1087
1502
|
function InlineRadioGroup(delegated) {
|
|
1088
|
-
return /* @__PURE__ */ (0,
|
|
1503
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(RadioGroupPrimitive.Root, {
|
|
1089
1504
|
...delegated,
|
|
1090
|
-
className: "inline-
|
|
1505
|
+
className: "c-inline-radio-root"
|
|
1091
1506
|
});
|
|
1092
1507
|
}
|
|
1093
1508
|
function InlineRadioItem({ children, className, ...delegated }) {
|
|
1094
|
-
return /* @__PURE__ */ (0,
|
|
1509
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(RadioGroupPrimitive.Item, {
|
|
1095
1510
|
...delegated,
|
|
1096
|
-
className: (0,
|
|
1097
|
-
|
|
1098
|
-
"flex cursor-pointer items-center justify-center rounded border-none bg-transparent text-sm leading-none text-zinc-800",
|
|
1099
|
-
"disabled:cursor-not-allowed",
|
|
1100
|
-
"radix-state-checked:bg-white radix-state-checked:shadow-sm",
|
|
1101
|
-
"focus:outline-neptune",
|
|
1102
|
-
className
|
|
1103
|
-
),
|
|
1104
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(RadioGroupPrimitive.Indicator, {
|
|
1511
|
+
className: (0, import_class_variance_authority9.cx)("c-inline-radio", className),
|
|
1512
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(RadioGroupPrimitive.Indicator, {
|
|
1105
1513
|
forceMount: true,
|
|
1106
1514
|
children
|
|
1107
1515
|
})
|
|
@@ -1113,32 +1521,17 @@ var InlineRadio = {
|
|
|
1113
1521
|
};
|
|
1114
1522
|
|
|
1115
1523
|
// src/input/input.tsx
|
|
1116
|
-
var
|
|
1117
|
-
var
|
|
1118
|
-
var
|
|
1119
|
-
var inputStyles = (0,
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
],
|
|
1126
|
-
{
|
|
1127
|
-
variants: {
|
|
1128
|
-
paper: {
|
|
1129
|
-
white: "bg-white",
|
|
1130
|
-
gray: "bg-jupiter"
|
|
1131
|
-
}
|
|
1132
|
-
},
|
|
1133
|
-
defaultVariants: {
|
|
1134
|
-
paper: "gray"
|
|
1135
|
-
}
|
|
1136
|
-
}
|
|
1137
|
-
);
|
|
1138
|
-
var Input = (0, import_react13.forwardRef)(({ className, paper, ...delegated }, ref) => {
|
|
1139
|
-
return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("input", {
|
|
1524
|
+
var import_class_variance_authority10 = require("class-variance-authority");
|
|
1525
|
+
var import_react19 = require("react");
|
|
1526
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
1527
|
+
var inputStyles = (0, import_class_variance_authority10.cva)(["c-input"], {
|
|
1528
|
+
variants: {},
|
|
1529
|
+
defaultVariants: {}
|
|
1530
|
+
});
|
|
1531
|
+
var Input = (0, import_react19.forwardRef)(({ className, ...delegated }, ref) => {
|
|
1532
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("input", {
|
|
1140
1533
|
ref,
|
|
1141
|
-
className: inputStyles({ className
|
|
1534
|
+
className: inputStyles({ className }),
|
|
1142
1535
|
type: "text",
|
|
1143
1536
|
...delegated
|
|
1144
1537
|
});
|
|
@@ -1146,13 +1539,13 @@ var Input = (0, import_react13.forwardRef)(({ className, paper, ...delegated },
|
|
|
1146
1539
|
Input.displayName = "Input";
|
|
1147
1540
|
|
|
1148
1541
|
// src/label/label.tsx
|
|
1149
|
-
var
|
|
1150
|
-
var
|
|
1151
|
-
var
|
|
1152
|
-
var Label2 = (0,
|
|
1153
|
-
return /* @__PURE__ */ (0,
|
|
1542
|
+
var import_react20 = require("react");
|
|
1543
|
+
var import_class_variance_authority11 = require("class-variance-authority");
|
|
1544
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
1545
|
+
var Label2 = (0, import_react20.forwardRef)(({ className, ...delegated }, ref) => {
|
|
1546
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("label", {
|
|
1154
1547
|
ref,
|
|
1155
|
-
className: (0,
|
|
1548
|
+
className: (0, import_class_variance_authority11.cx)("c-label", className),
|
|
1156
1549
|
...delegated
|
|
1157
1550
|
});
|
|
1158
1551
|
});
|
|
@@ -1160,33 +1553,28 @@ Label2.displayName = "Label";
|
|
|
1160
1553
|
|
|
1161
1554
|
// src/progress/progress.tsx
|
|
1162
1555
|
var ProgressPrimitives = __toESM(require("@radix-ui/react-progress"));
|
|
1163
|
-
var
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1556
|
+
var import_class_variance_authority12 = require("class-variance-authority");
|
|
1557
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
1558
|
+
function Progress({ className, value }) {
|
|
1559
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(ProgressPrimitives.Root, {
|
|
1560
|
+
className: (0, import_class_variance_authority12.cx)(className, "c-progress-root"),
|
|
1167
1561
|
value,
|
|
1168
|
-
children: /* @__PURE__ */ (0,
|
|
1169
|
-
className: "
|
|
1170
|
-
style: { transform: `translateX(-${100 - value}%)` }
|
|
1562
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(ProgressPrimitives.Indicator, {
|
|
1563
|
+
className: "c-progress-indicator",
|
|
1564
|
+
style: { transform: `translateX(-${100 - (value ?? 0)}%)` }
|
|
1171
1565
|
})
|
|
1172
1566
|
});
|
|
1173
1567
|
}
|
|
1174
1568
|
|
|
1175
1569
|
// src/radio/radio.tsx
|
|
1176
1570
|
var RadioGroupPrimitive2 = __toESM(require("@radix-ui/react-radio-group"));
|
|
1177
|
-
var
|
|
1178
|
-
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
1571
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
1179
1572
|
function RadioGroupItem(props) {
|
|
1180
|
-
return /* @__PURE__ */ (0,
|
|
1573
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(RadioGroupPrimitive2.Item, {
|
|
1181
1574
|
...props,
|
|
1182
|
-
className:
|
|
1183
|
-
|
|
1184
|
-
"
|
|
1185
|
-
"disabled:bg-[#ddd]/20",
|
|
1186
|
-
"radix-state-checked:border-[#528693] radix-state-checked:bg-neptune"
|
|
1187
|
-
),
|
|
1188
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(RadioGroupPrimitive2.Indicator, {
|
|
1189
|
-
className: (0, import_class_variance_authority13.cx)("block h-[6px] w-[6px] rounded-full bg-[#528693]")
|
|
1575
|
+
className: "c-radio-item",
|
|
1576
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(RadioGroupPrimitive2.Indicator, {
|
|
1577
|
+
className: "c-radio-indicator"
|
|
1190
1578
|
})
|
|
1191
1579
|
});
|
|
1192
1580
|
}
|
|
@@ -1196,64 +1584,59 @@ var Radio = {
|
|
|
1196
1584
|
};
|
|
1197
1585
|
|
|
1198
1586
|
// src/select/select-item.tsx
|
|
1199
|
-
var
|
|
1587
|
+
var import_react21 = require("react");
|
|
1200
1588
|
var SelectPrimitives = __toESM(require("@radix-ui/react-select"));
|
|
1201
|
-
var
|
|
1202
|
-
var
|
|
1203
|
-
var SelectItem = (0, import_react15.forwardRef)((props, ref) => {
|
|
1589
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
1590
|
+
var SelectItem = (0, import_react21.forwardRef)((props, ref) => {
|
|
1204
1591
|
const { children, ...delegated } = props;
|
|
1205
|
-
return /* @__PURE__ */ (0,
|
|
1206
|
-
className:
|
|
1207
|
-
"flex cursor-pointer items-center whitespace-nowrap px-6 py-2 font-medium",
|
|
1208
|
-
"focus:bg-neptune/20",
|
|
1209
|
-
"hover:bg-neptune/20"
|
|
1210
|
-
),
|
|
1592
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(SelectPrimitives.Item, {
|
|
1593
|
+
className: "c-select-item",
|
|
1211
1594
|
ref,
|
|
1212
1595
|
...delegated,
|
|
1213
1596
|
children: [
|
|
1214
|
-
/* @__PURE__ */ (0,
|
|
1597
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(SelectPrimitives.ItemText, {
|
|
1215
1598
|
children
|
|
1216
1599
|
}),
|
|
1217
|
-
/* @__PURE__ */ (0,
|
|
1600
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(SelectPrimitives.ItemIndicator, {})
|
|
1218
1601
|
]
|
|
1219
1602
|
});
|
|
1220
1603
|
});
|
|
1221
1604
|
SelectItem.displayName = "SelectItem";
|
|
1222
1605
|
|
|
1223
1606
|
// src/select/select-root.tsx
|
|
1224
|
-
var
|
|
1607
|
+
var import_react22 = require("react");
|
|
1225
1608
|
var SelectPrimitives2 = __toESM(require("@radix-ui/react-select"));
|
|
1226
|
-
var
|
|
1227
|
-
var SelectContainer = (0,
|
|
1609
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
1610
|
+
var SelectContainer = (0, import_react22.forwardRef)(
|
|
1228
1611
|
({ children, id, placeholder, disabled, ...delegated }, ref) => {
|
|
1229
|
-
return /* @__PURE__ */ (0,
|
|
1612
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(SelectPrimitives2.Root, {
|
|
1230
1613
|
...delegated,
|
|
1231
1614
|
children: [
|
|
1232
|
-
/* @__PURE__ */ (0,
|
|
1615
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(SelectPrimitives2.Trigger, {
|
|
1233
1616
|
ref,
|
|
1234
|
-
className: "
|
|
1617
|
+
className: "c-select-trigger",
|
|
1235
1618
|
disabled,
|
|
1236
1619
|
id,
|
|
1237
1620
|
children: [
|
|
1238
|
-
/* @__PURE__ */ (0,
|
|
1239
|
-
placeholder: /* @__PURE__ */ (0,
|
|
1240
|
-
className: "
|
|
1621
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(SelectPrimitives2.Value, {
|
|
1622
|
+
placeholder: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", {
|
|
1623
|
+
className: "c-select-value",
|
|
1241
1624
|
children: placeholder ?? "Select..."
|
|
1242
1625
|
})
|
|
1243
1626
|
}),
|
|
1244
|
-
/* @__PURE__ */ (0,
|
|
1627
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Icon.Arrow, {})
|
|
1245
1628
|
]
|
|
1246
1629
|
}),
|
|
1247
|
-
/* @__PURE__ */ (0,
|
|
1248
|
-
children: /* @__PURE__ */ (0,
|
|
1249
|
-
className: "
|
|
1630
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(SelectPrimitives2.Portal, {
|
|
1631
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)(SelectPrimitives2.Content, {
|
|
1632
|
+
className: "c-select-content",
|
|
1250
1633
|
children: [
|
|
1251
|
-
/* @__PURE__ */ (0,
|
|
1252
|
-
/* @__PURE__ */ (0,
|
|
1253
|
-
className: "
|
|
1634
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(SelectPrimitives2.ScrollUpButton, {}),
|
|
1635
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(SelectPrimitives2.Viewport, {
|
|
1636
|
+
className: "c-select-viewport",
|
|
1254
1637
|
children
|
|
1255
1638
|
}),
|
|
1256
|
-
/* @__PURE__ */ (0,
|
|
1639
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(SelectPrimitives2.ScrollDownButton, {})
|
|
1257
1640
|
]
|
|
1258
1641
|
})
|
|
1259
1642
|
})
|
|
@@ -1269,70 +1652,88 @@ var Select = {
|
|
|
1269
1652
|
Item: SelectItem
|
|
1270
1653
|
};
|
|
1271
1654
|
|
|
1272
|
-
// src/
|
|
1273
|
-
var
|
|
1274
|
-
var
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1655
|
+
// src/input-with-label/input-with-label.tsx
|
|
1656
|
+
var import_react24 = require("react");
|
|
1657
|
+
var import_class_variance_authority13 = require("class-variance-authority");
|
|
1658
|
+
|
|
1659
|
+
// src/iconography/triangle.tsx
|
|
1660
|
+
var import_react23 = require("react");
|
|
1661
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
1662
|
+
var Triangle = (0, import_react23.forwardRef)((delegated, ref) => {
|
|
1663
|
+
const { width = 20, height = 20, ...rest } = delegated;
|
|
1664
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("svg", {
|
|
1665
|
+
viewBox: "0 0 17 15",
|
|
1666
|
+
width,
|
|
1667
|
+
height,
|
|
1668
|
+
ref,
|
|
1669
|
+
fill: "none",
|
|
1670
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1671
|
+
...rest,
|
|
1672
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", {
|
|
1673
|
+
d: "M15.463 1.2L8.5 12.685 1.537 1.2h13.925zM1.353.896s0 0 0 0h0z",
|
|
1674
|
+
stroke: "currentColor",
|
|
1675
|
+
strokeWidth: 2.4
|
|
1676
|
+
})
|
|
1677
|
+
});
|
|
1678
|
+
});
|
|
1679
|
+
|
|
1680
|
+
// src/input-with-label/input-with-label.tsx
|
|
1681
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
1682
|
+
var inputWithLabelStyles = (0, import_class_variance_authority13.cva)(["c-input-with-label"], {
|
|
1683
|
+
variants: {
|
|
1684
|
+
variant: {
|
|
1685
|
+
default: "",
|
|
1686
|
+
elevated: "c-input-with-label-elevated",
|
|
1687
|
+
outlined: "c-input-with-label-outlined"
|
|
1297
1688
|
},
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
paper: "white"
|
|
1689
|
+
status: {
|
|
1690
|
+
error: "c-input-with-label--error"
|
|
1301
1691
|
}
|
|
1302
|
-
}
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1692
|
+
},
|
|
1693
|
+
defaultVariants: {}
|
|
1694
|
+
});
|
|
1695
|
+
var InputWithLabel = (0, import_react24.forwardRef)(
|
|
1696
|
+
({ className, label, append, errorMessage, status, variant, id, labelProps, ...delegated }, ref) => {
|
|
1697
|
+
const { className: labelClassName, ...labelPropsRest } = labelProps ?? {};
|
|
1698
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(import_jsx_runtime36.Fragment, {
|
|
1699
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(Label2, {
|
|
1700
|
+
className: inputWithLabelStyles({ status, variant, className: labelClassName }),
|
|
1701
|
+
htmlFor: id,
|
|
1702
|
+
...labelPropsRest,
|
|
1703
|
+
children: [
|
|
1704
|
+
label,
|
|
1705
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("span", {
|
|
1706
|
+
className: "c-input-with-label-input-wrap",
|
|
1707
|
+
children: [
|
|
1708
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)(Input, {
|
|
1709
|
+
className: (0, import_class_variance_authority13.cx)("c-input-with-label-input", className),
|
|
1710
|
+
ref,
|
|
1711
|
+
id,
|
|
1712
|
+
...delegated
|
|
1713
|
+
}),
|
|
1714
|
+
!append && !errorMessage ? null : /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", {
|
|
1715
|
+
className: "c-input-with-label-append",
|
|
1716
|
+
title: errorMessage,
|
|
1717
|
+
children: errorMessage ? /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(Triangle, {}) : append
|
|
1718
|
+
})
|
|
1719
|
+
]
|
|
1720
|
+
})
|
|
1721
|
+
]
|
|
1722
|
+
})
|
|
1329
1723
|
});
|
|
1330
1724
|
}
|
|
1331
1725
|
);
|
|
1332
|
-
|
|
1726
|
+
InputWithLabel.displayName = "InputWithLabel";
|
|
1727
|
+
|
|
1728
|
+
// src/index.ts
|
|
1729
|
+
var tokens = {
|
|
1730
|
+
button: buttonTokens,
|
|
1731
|
+
card: cardToken
|
|
1732
|
+
};
|
|
1333
1733
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1334
1734
|
0 && (module.exports = {
|
|
1335
1735
|
ActionMenu,
|
|
1736
|
+
Avatar,
|
|
1336
1737
|
Button,
|
|
1337
1738
|
Card,
|
|
1338
1739
|
Checkbox,
|
|
@@ -1342,15 +1743,18 @@ TextField.displayName = "TextField";
|
|
|
1342
1743
|
IconButton,
|
|
1343
1744
|
InlineRadio,
|
|
1344
1745
|
Input,
|
|
1746
|
+
InputWithLabel,
|
|
1345
1747
|
Label,
|
|
1346
1748
|
Progress,
|
|
1347
1749
|
Radio,
|
|
1348
1750
|
Select,
|
|
1349
|
-
|
|
1751
|
+
buttonTokens,
|
|
1752
|
+
cardToken,
|
|
1350
1753
|
destroyAll,
|
|
1351
1754
|
showConfirm,
|
|
1352
1755
|
showDialog,
|
|
1353
1756
|
showError,
|
|
1354
1757
|
showInfo,
|
|
1355
|
-
showWarning
|
|
1758
|
+
showWarning,
|
|
1759
|
+
tokens
|
|
1356
1760
|
});
|