@digo-labs/common 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js ADDED
@@ -0,0 +1,2001 @@
1
+ import { removeBackground as M } from "@imgly/background-removal";
2
+ import { parseISO as F, formatDistanceToNow as I } from "date-fns";
3
+ import { decode as m, encode as x } from "base64-arraybuffer";
4
+ import d from "lz-string";
5
+ import { blobToBase64String as N, base64StringToBlob as T } from "blob-util";
6
+ import { z as n } from "zod";
7
+ import U from "clsx";
8
+ import { twMerge as D } from "tailwind-merge";
9
+ class b {
10
+ static copyToClipboard(o) {
11
+ navigator.clipboard.writeText(o).then(() => {
12
+ }).catch(() => {
13
+ console.error("Failed to copy");
14
+ });
15
+ }
16
+ static async removeBackground(o) {
17
+ const e = m(o.base64), t = new Blob([e], { type: o.mediaType }), a = await (await M(t)).arrayBuffer();
18
+ return {
19
+ base64: x(a),
20
+ mediaType: "image/png"
21
+ };
22
+ }
23
+ static getTimeFormatted(o) {
24
+ return {
25
+ hours: Math.floor(o / 3600),
26
+ minutes: Math.floor(o % 3600 / 60),
27
+ seconds: o % 60
28
+ };
29
+ }
30
+ static async getTextFromClipboard() {
31
+ return await navigator.clipboard.readText();
32
+ }
33
+ static decodeBase64(o) {
34
+ return m(o);
35
+ }
36
+ static getRandomInteger(o, e) {
37
+ return Math.floor(Math.random() * (e - o + 1)) + o;
38
+ }
39
+ static encodeArrayBufferToBase64(o) {
40
+ return x(o);
41
+ }
42
+ static hexToRgb(o) {
43
+ const e = o.match(/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i);
44
+ return e ? {
45
+ r: parseInt(e[1], 16),
46
+ g: parseInt(e[2], 16),
47
+ b: parseInt(e[3], 16)
48
+ } : { r: 0, g: 0, b: 0 };
49
+ }
50
+ static rgbArrayToHex(o) {
51
+ return `#${o.map((t) => {
52
+ const c = t.toString(16);
53
+ return c.length === 1 ? "0" + c : c;
54
+ }).join("")}`;
55
+ }
56
+ static hexToRgbArray(o) {
57
+ const e = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(o);
58
+ return e ? [
59
+ parseInt(e[1], 16) / 255,
60
+ parseInt(e[2], 16) / 255,
61
+ parseInt(e[3], 16) / 255
62
+ ] : [0, 0, 0];
63
+ }
64
+ static getCssVariable(o) {
65
+ return getComputedStyle(document.documentElement).getPropertyValue(o);
66
+ }
67
+ static setCssVariable(o, e) {
68
+ document.documentElement.style.setProperty(o, `${e.offsetHeight}px`);
69
+ }
70
+ static lerp(o, e, t) {
71
+ return o + (e - o) * t;
72
+ }
73
+ static lerpArray(o, e, t) {
74
+ return o.map((c, a) => c + (e[a] - c) * t);
75
+ }
76
+ static clamp(o, e, t) {
77
+ return Math.min(Math.max(o, e), t);
78
+ }
79
+ static async downloadURI(o, e) {
80
+ const c = await (await fetch(o)).blob(), a = URL.createObjectURL(c), r = document.createElement("a");
81
+ r.href = a, r.download = e || "download", r.click(), URL.revokeObjectURL(a);
82
+ }
83
+ static async getFileFromUrl(o, e) {
84
+ const c = await (await fetch(o)).blob();
85
+ return new File([c], e || "untitled", { type: c.type });
86
+ }
87
+ static generateUUID() {
88
+ return crypto.randomUUID ? crypto.randomUUID() : `${Date.now()}-${Math.random().toString(36).substring(2, 15)}${Math.random().toString(36).substring(2, 15)}`;
89
+ }
90
+ static async getImagePayloadFromUrl(o, e) {
91
+ const t = await this.getFileFromUrl(o, e);
92
+ return this.getImagePayloadFromFile(t);
93
+ }
94
+ static async getImagePayloadFromFile(o) {
95
+ const [e, t] = await $(o.arrayBuffer());
96
+ if (t) return [null, t];
97
+ const c = b.encodeArrayBufferToBase64(e), a = o.type;
98
+ return [{ base64: c, mediaType: a }, null];
99
+ }
100
+ static getFileFromImagePayload(o) {
101
+ const e = m(o.base64), t = new Blob([e], { type: o.mediaType }), c = o.mediaType.split("/")[1] || "png";
102
+ return new File([t], `created-file.${c}`, { type: o.mediaType });
103
+ }
104
+ static setTabName(o) {
105
+ document.title = `${o}`;
106
+ }
107
+ static openFileSelector(o, e) {
108
+ const t = document.createElement("input");
109
+ t.type = "file", t.accept = o, t.onchange = (c) => {
110
+ const a = c.target;
111
+ if (a.files && a.files.length > 0) {
112
+ const r = a.files[0];
113
+ e(r);
114
+ }
115
+ }, t.click();
116
+ }
117
+ static formatNumberTwoDigits(o) {
118
+ return o.toFixed().padStart(2, "0");
119
+ }
120
+ getFormatedTime(o, e = 2) {
121
+ return (o / 1e3).toFixed(e);
122
+ }
123
+ static async preloadImage(o) {
124
+ return new Promise((e, t) => {
125
+ const c = new Image();
126
+ c.onload = () => e(), c.onerror = () => t(new Error(`Failed to load: ${o}`)), c.src = o;
127
+ });
128
+ }
129
+ static async preloadImages(o) {
130
+ const e = o.map((t) => b.preloadImage(t));
131
+ await Promise.all(e);
132
+ }
133
+ static getUniqueLetters(o) {
134
+ return [...new Set(o.split(""))];
135
+ }
136
+ static async compressImage(o, e, t = 800, c = 0.7) {
137
+ return new Promise((a) => {
138
+ const r = new Image();
139
+ r.onload = () => {
140
+ const s = document.createElement("canvas"), y = Math.min(t / r.width, t / r.height, 1);
141
+ s.width = r.width * y, s.height = r.height * y, s.getContext("2d").drawImage(r, 0, 0, s.width, s.height);
142
+ const S = s.toDataURL("image/jpeg", c).split(",")[1];
143
+ a({
144
+ base64: S,
145
+ mediaType: "image/jpeg"
146
+ });
147
+ }, r.src = `data:${e};base64,${o}`;
148
+ });
149
+ }
150
+ static async downloadCsvFromUrl(o) {
151
+ const e = await fetch(o);
152
+ if (!e.ok) throw new Error(`Failed to download CSV file: ${e.statusText}`);
153
+ return await e.text();
154
+ }
155
+ static getLastUpdated(o) {
156
+ const e = F(o);
157
+ return I(e, { addSuffix: !0 });
158
+ }
159
+ static getUniqueIdInList(o, e) {
160
+ const t = o.match(/^(.*?)(-\d+)?$/);
161
+ let c = o, a = 1;
162
+ t && (c = t[1], t[2] && (a = parseInt(t[2].slice(1)) + 1));
163
+ const r = c.toLowerCase();
164
+ let s = `${r}-${a}`;
165
+ for (; e.some((y) => y.toLowerCase() === s); )
166
+ a++, s = `${r}-${a}`;
167
+ return s.toLowerCase();
168
+ }
169
+ static scrollToBottom(o) {
170
+ o && o.scrollTo({
171
+ top: o.scrollHeight,
172
+ behavior: "smooth"
173
+ });
174
+ }
175
+ }
176
+ const no = "https://api.digo-labs.com", eo = "us-east-1", io = [
177
+ {
178
+ name: "Claude 3.7 Sonnet",
179
+ description: "Anthropic's advanced model",
180
+ icon: "icon-[simple-icons--anthropic]"
181
+ },
182
+ {
183
+ name: "Gemini 2.5 Pro",
184
+ description: "Google's latest model",
185
+ icon: "icon-[simple-icons--googlegemini]"
186
+ },
187
+ {
188
+ name: "GPT-4.1",
189
+ description: "OpenAi's advanced model",
190
+ icon: "icon-[simple-icons--openai]"
191
+ }
192
+ ], to = {
193
+ typescript: { icon: "typescript", name: "TypeScript" },
194
+ javascript: { icon: "javascript", name: "JavaScript" },
195
+ tsx: { icon: "typescript", name: "TSX" },
196
+ jsx: { icon: "javascript", name: "JSX" },
197
+ python: { icon: "python", name: "Python" },
198
+ rust: { icon: "code", name: "Rust" },
199
+ go: { icon: "code", name: "Go" },
200
+ sql: { icon: "code", name: "SQL" },
201
+ bash: { icon: "terminal", name: "Bash" },
202
+ sh: { icon: "terminal", name: "Shell" },
203
+ json: { icon: "code", name: "JSON" },
204
+ css: { icon: "code", name: "CSS" },
205
+ html: { icon: "code", name: "HTML" },
206
+ markdown: { icon: "code", name: "Markdown" },
207
+ yaml: { icon: "code", name: "YAML" },
208
+ xml: { icon: "code", name: "XML" },
209
+ text: { icon: "code", name: "Text" }
210
+ };
211
+ var w = /* @__PURE__ */ ((i) => (i.Navigation = "Navigation", i.Actions = "Actions", i.Status = "Status", i.Media = "Media", i.Files = "Files", i.UI = "UI", i.Brands = "Brands", i.Programming = "Programming", i.Tools = "Tools", i.Data = "Data", i.Communication = "Communication", i.Design = "Design", i.AI = "AI", i.Numbers = "Numbers", i.Misc = "Misc", i))(w || {});
212
+ const p = {
213
+ arrowUp: { category: "Navigation", icon: "icon-[lucide--arrow-up]" },
214
+ arrowDown: { category: "Navigation", icon: "icon-[lucide--arrow-down]" },
215
+ arrowLeft: { category: "Navigation", icon: "icon-[lucide--arrow-left]" },
216
+ arrowRight: { category: "Navigation", icon: "icon-[lucide--arrow-right]" },
217
+ arrowUpLeft: { category: "Navigation", icon: "icon-[lucide--arrow-up-left]" },
218
+ arrowUpRight: { category: "Navigation", icon: "icon-[lucide--arrow-up-right]" },
219
+ arrowDownLeft: { category: "Navigation", icon: "icon-[lucide--arrow-down-left]" },
220
+ arrowDownRight: { category: "Navigation", icon: "icon-[lucide--arrow-down-right]" },
221
+ arrowLeftRight: { category: "Navigation", icon: "icon-[lucide--arrow-left-right]" },
222
+ arrowUpDown: { category: "Navigation", icon: "icon-[lucide--arrow-up-down]" },
223
+ circleArrowUp: { category: "Navigation", icon: "icon-[lucide--circle-arrow-up]" },
224
+ circleArrowDown: { category: "Navigation", icon: "icon-[lucide--circle-arrow-down]" },
225
+ circleArrowLeft: { category: "Navigation", icon: "icon-[lucide--circle-arrow-left]" },
226
+ circleArrowRight: { category: "Navigation", icon: "icon-[lucide--circle-arrow-right]" },
227
+ chevronUp: { category: "Navigation", icon: "icon-[lucide--chevron-up]" },
228
+ chevronDown: { category: "Navigation", icon: "icon-[lucide--chevron-down]" },
229
+ chevronLeft: { category: "Navigation", icon: "icon-[lucide--chevron-left]" },
230
+ chevronRight: { category: "Navigation", icon: "icon-[lucide--chevron-right]" },
231
+ chevronsUp: { category: "Navigation", icon: "icon-[lucide--chevrons-up]" },
232
+ chevronsDown: { category: "Navigation", icon: "icon-[lucide--chevrons-down]" },
233
+ chevronsLeft: { category: "Navigation", icon: "icon-[lucide--chevrons-left]" },
234
+ chevronsRight: { category: "Navigation", icon: "icon-[lucide--chevrons-right]" },
235
+ chevronsUpDown: { category: "Navigation", icon: "icon-[lucide--chevrons-up-down]" },
236
+ cornerDownLeft: { category: "Navigation", icon: "icon-[lucide--corner-down-left]" },
237
+ cornerDownRight: { category: "Navigation", icon: "icon-[lucide--corner-down-right]" },
238
+ cornerLeftDown: { category: "Navigation", icon: "icon-[lucide--corner-left-down]" },
239
+ cornerLeftUp: { category: "Navigation", icon: "icon-[lucide--corner-left-up]" },
240
+ cornerRightDown: { category: "Navigation", icon: "icon-[lucide--corner-right-down]" },
241
+ cornerRightUp: { category: "Navigation", icon: "icon-[lucide--corner-right-up]" },
242
+ cornerUpLeft: { category: "Navigation", icon: "icon-[lucide--corner-up-left]" },
243
+ cornerUpRight: { category: "Navigation", icon: "icon-[lucide--corner-up-right]" },
244
+ home: { category: "Navigation", icon: "icon-[lucide--house]" },
245
+ compass: { category: "Navigation", icon: "icon-[lucide--compass]" },
246
+ menu: { category: "Navigation", icon: "icon-[lucide--menu]" },
247
+ anchor: { category: "Navigation", icon: "icon-[lucide--anchor]" },
248
+ route: { category: "Navigation", icon: "icon-[lucide--route]" },
249
+ router: { category: "Navigation", icon: "icon-[lucide--router]" },
250
+ externalLink: { category: "Navigation", icon: "icon-[lucide--external-link]" },
251
+ move: { category: "Navigation", icon: "icon-[lucide--move]" },
252
+ expand: { category: "Navigation", icon: "icon-[material-symbols--expand-more-rounded]" },
253
+ collapse: { category: "Navigation", icon: "icon-[material-symbols--expand-less-rounded]" },
254
+ firstPage: { category: "Navigation", icon: "icon-[material-symbols--first-page-rounded]" },
255
+ lastPage: { category: "Navigation", icon: "icon-[material-symbols--last-page-rounded]" },
256
+ openInNew: { category: "Navigation", icon: "icon-[material-symbols--open-in-new-rounded]" },
257
+ select: { category: "Navigation", icon: "icon-[mi--select]" },
258
+ signIn: { category: "Navigation", icon: "icon-[lucide--log-in]" },
259
+ login: { category: "Navigation", icon: "icon-[lucide--log-in]" },
260
+ logout: { category: "Navigation", icon: "icon-[lucide--log-out]" },
261
+ add: { category: "Actions", icon: "icon-[lucide--plus]" },
262
+ remove: { category: "Actions", icon: "icon-[lucide--minus]" },
263
+ close: { category: "Actions", icon: "icon-[lucide--x]" },
264
+ check: { category: "Actions", icon: "icon-[lucide--check]" },
265
+ checkCheck: { category: "Actions", icon: "icon-[lucide--check-check]" },
266
+ checkIndeterminate: { category: "Actions", icon: "icon-[material-symbols--check-indeterminate-small-rounded]" },
267
+ search: { category: "Actions", icon: "icon-[lucide--search]" },
268
+ zoomIn: { category: "Actions", icon: "icon-[lucide--zoom-in]" },
269
+ zoomOut: { category: "Actions", icon: "icon-[lucide--zoom-out]" },
270
+ edit: { category: "Actions", icon: "icon-[lucide--pencil]" },
271
+ pencilLine: { category: "Actions", icon: "icon-[lucide--pencil-line]" },
272
+ delete: { category: "Actions", icon: "icon-[lucide--trash]" },
273
+ trash: { category: "Actions", icon: "icon-[lucide--trash-2]" },
274
+ copy: { category: "Actions", icon: "icon-[lucide--copy]" },
275
+ paste: { category: "Actions", icon: "icon-[lucide--clipboard-paste]" },
276
+ cut: { category: "Actions", icon: "icon-[lucide--scissors]" },
277
+ save: { category: "Actions", icon: "icon-[lucide--save]" },
278
+ download: { category: "Actions", icon: "icon-[lucide--download]" },
279
+ upload: { category: "Actions", icon: "icon-[lucide--upload]" },
280
+ refresh: { category: "Actions", icon: "icon-[lucide--refresh-cw]" },
281
+ refreshCcw: { category: "Actions", icon: "icon-[lucide--refresh-ccw]" },
282
+ rotateCw: { category: "Actions", icon: "icon-[lucide--rotate-cw]" },
283
+ rotateCcw: { category: "Actions", icon: "icon-[lucide--rotate-ccw]" },
284
+ sync: { category: "Actions", icon: "icon-[material-symbols--sync-rounded]" },
285
+ undo: { category: "Actions", icon: "icon-[lucide--undo-2]" },
286
+ redo: { category: "Actions", icon: "icon-[lucide--redo-2]" },
287
+ send: { category: "Actions", icon: "icon-[lucide--send]" },
288
+ share: { category: "Actions", icon: "icon-[lucide--share]" },
289
+ share2: { category: "Actions", icon: "icon-[lucide--share-2]" },
290
+ attach: { category: "Actions", icon: "icon-[lucide--paperclip]" },
291
+ link: { category: "Actions", icon: "icon-[lucide--link]" },
292
+ link2: { category: "Actions", icon: "icon-[lucide--link-2]" },
293
+ unlink: { category: "Actions", icon: "icon-[lucide--unlink]" },
294
+ filter: { category: "Actions", icon: "icon-[lucide--filter]" },
295
+ listFilter: { category: "Actions", icon: "icon-[lucide--list-filter]" },
296
+ sort: { category: "Actions", icon: "icon-[lucide--arrow-up-down]" },
297
+ sortAsc: { category: "Actions", icon: "icon-[lucide--arrow-up-narrow-wide]" },
298
+ sortDesc: { category: "Actions", icon: "icon-[lucide--arrow-down-wide-narrow]" },
299
+ lock: { category: "Actions", icon: "icon-[lucide--lock]" },
300
+ lockOpen: { category: "Actions", icon: "icon-[lucide--lock-open]" },
301
+ unlock: { category: "Actions", icon: "icon-[lucide--lock-open]" },
302
+ print: { category: "Actions", icon: "icon-[lucide--printer]" },
303
+ backspace: { category: "Actions", icon: "icon-[lucide--delete]" },
304
+ crop: { category: "Actions", icon: "icon-[lucide--crop]" },
305
+ success: { category: "Status", icon: "icon-[lucide--circle-check]" },
306
+ checkCircle: { category: "Status", icon: "icon-[lucide--circle-check-big]" },
307
+ info: { category: "Status", icon: "icon-[lucide--info]" },
308
+ warning: { category: "Status", icon: "icon-[lucide--triangle-alert]" },
309
+ error: { category: "Status", icon: "icon-[lucide--circle-x]" },
310
+ help: { category: "Status", icon: "icon-[lucide--circle-help]" },
311
+ spinner: { category: "Status", icon: "icon-[line-md--loading-twotone-loop]" },
312
+ spinnerDots: { category: "Status", icon: "icon-[svg-spinners--3-dots-move]" },
313
+ loading: { category: "Status", icon: "icon-[line-md--loading-twotone-loop]" },
314
+ loaderCircle: { category: "Status", icon: "icon-[lucide--loader-circle]" },
315
+ verified: { category: "Status", icon: "icon-[lucide--badge-check]" },
316
+ visibility: { category: "Status", icon: "icon-[lucide--eye]" },
317
+ visibilityOff: { category: "Status", icon: "icon-[lucide--eye-off]" },
318
+ online: { category: "Status", icon: "icon-[lucide--circle-dot]" },
319
+ circleCheck: { category: "Status", icon: "icon-[lucide--circle-check]" },
320
+ squareCheck: { category: "Status", icon: "icon-[lucide--square-check]" },
321
+ play: { category: "Media", icon: "icon-[lucide--play]" },
322
+ pause: { category: "Media", icon: "icon-[lucide--pause]" },
323
+ stop: { category: "Media", icon: "icon-[lucide--square]" },
324
+ stopCircle: { category: "Media", icon: "icon-[lucide--circle-stop]" },
325
+ skipBack: { category: "Media", icon: "icon-[lucide--skip-back]" },
326
+ skipForward: { category: "Media", icon: "icon-[lucide--skip-forward]" },
327
+ skipNext: { category: "Media", icon: "icon-[lucide--skip-forward]" },
328
+ skipPrevious: { category: "Media", icon: "icon-[lucide--skip-back]" },
329
+ fastForward: { category: "Media", icon: "icon-[lucide--fast-forward]" },
330
+ fastRewind: { category: "Media", icon: "icon-[lucide--rewind]" },
331
+ rewind: { category: "Media", icon: "icon-[lucide--rewind]" },
332
+ loop: { category: "Media", icon: "icon-[lucide--repeat]" },
333
+ shuffle: { category: "Media", icon: "icon-[lucide--shuffle]" },
334
+ volumeUp: { category: "Media", icon: "icon-[lucide--volume-2]" },
335
+ volumeDown: { category: "Media", icon: "icon-[lucide--volume-1]" },
336
+ volumeOff: { category: "Media", icon: "icon-[lucide--volume-off]" },
337
+ image: { category: "Media", icon: "icon-[lucide--image]" },
338
+ imagePlus: { category: "Media", icon: "icon-[lucide--image-plus]" },
339
+ video: { category: "Media", icon: "icon-[lucide--video]" },
340
+ videoOff: { category: "Media", icon: "icon-[lucide--video-off]" },
341
+ camera: { category: "Media", icon: "icon-[lucide--camera]" },
342
+ mic: { category: "Media", icon: "icon-[lucide--mic]" },
343
+ micOff: { category: "Media", icon: "icon-[lucide--mic-off]" },
344
+ webcam: { category: "Media", icon: "icon-[lucide--webcam]" },
345
+ music: { category: "Media", icon: "icon-[lucide--music]" },
346
+ music2: { category: "Media", icon: "icon-[lucide--music-2]" },
347
+ headset: { category: "Media", icon: "icon-[lucide--headset]" },
348
+ captions: { category: "Media", icon: "icon-[lucide--captions]" },
349
+ playCircle: { category: "Media", icon: "icon-[lucide--circle-play]" },
350
+ pauseCircle: { category: "Media", icon: "icon-[lucide--circle-pause]" },
351
+ file: { category: "Files", icon: "icon-[lucide--file]" },
352
+ fileText: { category: "Files", icon: "icon-[lucide--file-text]" },
353
+ fileAdd: { category: "Files", icon: "icon-[lucide--file-plus]" },
354
+ fileZip: { category: "Files", icon: "icon-[lucide--file-archive]" },
355
+ fileSymlink: { category: "Files", icon: "icon-[lucide--file-symlink]" },
356
+ fileSearch: { category: "Files", icon: "icon-[lucide--file-search]" },
357
+ folder: { category: "Files", icon: "icon-[lucide--folder]" },
358
+ folderOpen: { category: "Files", icon: "icon-[lucide--folder-open]" },
359
+ folderClosed: { category: "Files", icon: "icon-[lucide--folder-closed]" },
360
+ folderPlus: { category: "Files", icon: "icon-[lucide--folder-plus]" },
361
+ folderMinus: { category: "Files", icon: "icon-[lucide--folder-minus]" },
362
+ folderGit: { category: "Files", icon: "icon-[lucide--folder-git-2]" },
363
+ folderSymlink: { category: "Files", icon: "icon-[lucide--folder-symlink]" },
364
+ document: { category: "Files", icon: "icon-[lucide--file-text]" },
365
+ code: { category: "Files", icon: "icon-[lucide--code]" },
366
+ codeBlock: { category: "Files", icon: "icon-[lucide--square-code]" },
367
+ codeBracket: { category: "Files", icon: "icon-[lucide--braces]" },
368
+ codeWrap: { category: "Files", icon: "icon-[lucide--wrap-text]" },
369
+ archive: { category: "Files", icon: "icon-[lucide--archive]" },
370
+ notebook: { category: "Files", icon: "icon-[lucide--notebook]" },
371
+ notes: { category: "Files", icon: "icon-[lucide--sticky-note]" },
372
+ clipboard: { category: "Files", icon: "icon-[lucide--clipboard]" },
373
+ floppyDisk: { category: "Files", icon: "icon-[lucide--save]" },
374
+ panelLeft: { category: "UI", icon: "icon-[lucide--panel-left]" },
375
+ panelRight: { category: "UI", icon: "icon-[lucide--panel-right]" },
376
+ panelTop: { category: "UI", icon: "icon-[lucide--panel-top]" },
377
+ panelBottom: { category: "UI", icon: "icon-[lucide--panel-bottom]" },
378
+ sidebar: { category: "UI", icon: "icon-[lucide--panel-left]" },
379
+ moreHorizontal: { category: "UI", icon: "icon-[lucide--ellipsis]" },
380
+ moreVertical: { category: "UI", icon: "icon-[lucide--ellipsis-vertical]" },
381
+ dragHandle: { category: "UI", icon: "icon-[lucide--grip-horizontal]" },
382
+ dragIndicator: { category: "UI", icon: "icon-[lucide--grip-vertical]" },
383
+ gridView: { category: "UI", icon: "icon-[lucide--grid-2x2]" },
384
+ gridSquare: { category: "UI", icon: "icon-[lucide--grid-2x2]" },
385
+ colorSwatch: { category: "UI", icon: "icon-[heroicons-solid--color-swatch]" },
386
+ layoutGrid: { category: "UI", icon: "icon-[lucide--layout-grid]" },
387
+ listView: { category: "UI", icon: "icon-[lucide--list]" },
388
+ listOrdered: { category: "UI", icon: "icon-[lucide--list-ordered]" },
389
+ settings: { category: "UI", icon: "icon-[lucide--settings]" },
390
+ tune: { category: "UI", icon: "icon-[lucide--sliders-horizontal]" },
391
+ slidersVertical: { category: "UI", icon: "icon-[lucide--sliders-vertical]" },
392
+ notifications: { category: "UI", icon: "icon-[lucide--bell]" },
393
+ bellDot: { category: "UI", icon: "icon-[lucide--bell-dot]" },
394
+ bellOff: { category: "UI", icon: "icon-[lucide--bell-off]" },
395
+ person: { category: "UI", icon: "icon-[lucide--user]" },
396
+ group: { category: "UI", icon: "icon-[lucide--users]" },
397
+ userCheck: { category: "UI", icon: "icon-[lucide--user-check]" },
398
+ userPlus: { category: "UI", icon: "icon-[lucide--user-plus]" },
399
+ userMinus: { category: "UI", icon: "icon-[lucide--user-minus]" },
400
+ userX: { category: "UI", icon: "icon-[lucide--user-x]" },
401
+ userCog: { category: "UI", icon: "icon-[lucide--user-cog]" },
402
+ keyboard: { category: "UI", icon: "icon-[lucide--keyboard]" },
403
+ keyboardReturn: { category: "UI", icon: "icon-[material-symbols--keyboard-return-rounded]" },
404
+ keyboardCommand: { category: "UI", icon: "icon-[lucide--command]" },
405
+ fullscreen: { category: "UI", icon: "icon-[lucide--maximize]" },
406
+ fullscreenExit: { category: "UI", icon: "icon-[lucide--minimize]" },
407
+ dashboard: { category: "UI", icon: "icon-[lucide--layout-dashboard]" },
408
+ widgets: { category: "UI", icon: "icon-[material-symbols--widgets-rounded]" },
409
+ apps: { category: "UI", icon: "icon-[lucide--grid-3x3]" },
410
+ pictureInPicture: { category: "UI", icon: "icon-[lucide--picture-in-picture]" },
411
+ toggleOn: { category: "UI", icon: "icon-[lucide--toggle-right]" },
412
+ toggleOff: { category: "UI", icon: "icon-[lucide--toggle-left]" },
413
+ appWindow: { category: "UI", icon: "icon-[lucide--app-window]" },
414
+ terminalWindow: { category: "UI", icon: "icon-[lucide--square-terminal]" },
415
+ scrollArea: { category: "UI", icon: "icon-[lucide--scroll]" },
416
+ inspectSearch: { category: "UI", icon: "icon-[lucide--scan-search]" },
417
+ option: { category: "UI", icon: "icon-[lucide--option]" },
418
+ cube: { category: "UI", icon: "icon-[iconoir--select-face-3d]" },
419
+ google: { category: "Brands", icon: "icon-[logos--google-icon]" },
420
+ github: { category: "Brands", icon: "icon-[mdi--github]" },
421
+ apple: { category: "Brands", icon: "icon-[mdi--apple]" },
422
+ openai: { category: "Brands", icon: "icon-[simple-icons--openai]" },
423
+ anthropic: { category: "Brands", icon: "icon-[simple-icons--anthropic]" },
424
+ gemini: { category: "Brands", icon: "icon-[simple-icons--googlegemini]" },
425
+ discord: { category: "Brands", icon: "icon-[simple-icons--discord]" },
426
+ slack: { category: "Brands", icon: "icon-[simple-icons--slack]" },
427
+ figma: { category: "Brands", icon: "icon-[simple-icons--figma]" },
428
+ linkedin: { category: "Brands", icon: "icon-[lucide--linkedin]" },
429
+ codepen: { category: "Brands", icon: "icon-[lucide--codepen]" },
430
+ rss: { category: "Brands", icon: "icon-[lucide--rss]" },
431
+ typescript: { category: "Programming", icon: "icon-[simple-icons--typescript]" },
432
+ javascript: { category: "Programming", icon: "icon-[simple-icons--javascript]" },
433
+ python: { category: "Programming", icon: "icon-[simple-icons--python]" },
434
+ react: { category: "Programming", icon: "icon-[simple-icons--react]" },
435
+ tailwindcss: { category: "Programming", icon: "icon-[simple-icons--tailwindcss]" },
436
+ json: { category: "Programming", icon: "icon-[lucide--braces]" },
437
+ html: { category: "Programming", icon: "icon-[simple-icons--html5]" },
438
+ css: { category: "Programming", icon: "icon-[simple-icons--css3]" },
439
+ terminal: { category: "Programming", icon: "icon-[lucide--terminal]" },
440
+ api: { category: "Programming", icon: "icon-[lucide--webhook]" },
441
+ variable: { category: "Programming", icon: "icon-[lucide--variable]" },
442
+ webhook: { category: "Programming", icon: "icon-[lucide--webhook]" },
443
+ functionIcon: { category: "Programming", icon: "icon-[lucide--function-square]" },
444
+ cursor: { category: "Tools", icon: "icon-[lucide--mouse-pointer]" },
445
+ cursorClick: { category: "Tools", icon: "icon-[lucide--mouse-pointer-click]" },
446
+ hand: { category: "Tools", icon: "icon-[lucide--hand]" },
447
+ pen: { category: "Tools", icon: "icon-[lucide--pen]" },
448
+ brush: { category: "Tools", icon: "icon-[lucide--paintbrush]" },
449
+ eraser: { category: "Tools", icon: "icon-[lucide--eraser]" },
450
+ colorize: { category: "Tools", icon: "icon-[lucide--pipette]" },
451
+ straighten: { category: "Tools", icon: "icon-[lucide--ruler]" },
452
+ wrench: { category: "Tools", icon: "icon-[lucide--wrench]" },
453
+ plug: { category: "Tools", icon: "icon-[lucide--plug]" },
454
+ table: { category: "Data", icon: "icon-[lucide--table]" },
455
+ barChart: { category: "Data", icon: "icon-[lucide--chart-bar]" },
456
+ chartBarStacked: { category: "Data", icon: "icon-[lucide--chart-bar-stacked]" },
457
+ pieChart: { category: "Data", icon: "icon-[lucide--chart-pie]" },
458
+ lineChart: { category: "Data", icon: "icon-[lucide--line-chart]" },
459
+ chartActivity: { category: "Data", icon: "icon-[lucide--activity]" },
460
+ trendingUp: { category: "Data", icon: "icon-[lucide--trending-up]" },
461
+ trendingDown: { category: "Data", icon: "icon-[lucide--trending-down]" },
462
+ analytics: { category: "Data", icon: "icon-[lucide--chart-no-axes-combined]" },
463
+ array: { category: "Data", icon: "icon-[material-symbols--data-array-rounded]" },
464
+ database: { category: "Data", icon: "icon-[lucide--database]" },
465
+ tag: { category: "Data", icon: "icon-[lucide--tag]" },
466
+ label: { category: "Data", icon: "icon-[material-symbols--label-rounded]" },
467
+ hash: { category: "Data", icon: "icon-[lucide--hash]" },
468
+ percent: { category: "Data", icon: "icon-[lucide--percent]" },
469
+ chat: { category: "Communication", icon: "icon-[lucide--message-square]" },
470
+ chatBubble: { category: "Communication", icon: "icon-[lucide--message-circle]" },
471
+ messageTyping: { category: "Communication", icon: "icon-[lucide--message-square-more]" },
472
+ comment: { category: "Communication", icon: "icon-[lucide--message-square-text]" },
473
+ email: { category: "Communication", icon: "icon-[lucide--mail]" },
474
+ call: { category: "Communication", icon: "icon-[lucide--phone]" },
475
+ thumbUp: { category: "Communication", icon: "icon-[lucide--thumbs-up]" },
476
+ thumbDown: { category: "Communication", icon: "icon-[lucide--thumbs-down]" },
477
+ palette: { category: "Design", icon: "icon-[lucide--palette]" },
478
+ paintBucket: { category: "Design", icon: "icon-[lucide--paint-bucket]" },
479
+ formatPaint: { category: "Design", icon: "icon-[lucide--paint-roller]" },
480
+ autoAwesome: { category: "Design", icon: "icon-[material-symbols--auto-awesome-rounded]" },
481
+ style: { category: "Design", icon: "icon-[material-symbols--style]" },
482
+ opacity: { category: "Design", icon: "icon-[material-symbols--opacity-rounded]" },
483
+ gradient: { category: "Design", icon: "icon-[material-symbols--gradient]" },
484
+ contrast: { category: "Design", icon: "icon-[carbon--contrast]" },
485
+ brightness: { category: "Design", icon: "icon-[lucide--sun]" },
486
+ layers: { category: "Design", icon: "icon-[lucide--layers]" },
487
+ blendMode: { category: "Design", icon: "icon-[lucide--blend]" },
488
+ shadow: { category: "Design", icon: "icon-[material-symbols--ev-shadow]" },
489
+ roundedCorner: { category: "Design", icon: "icon-[material-symbols--rounded-corner-rounded]" },
490
+ formatSpacing: { category: "Design", icon: "icon-[material-symbols--format-letter-spacing-rounded]" },
491
+ shapes: { category: "Design", icon: "icon-[lucide--shapes]" },
492
+ robot: { category: "AI", icon: "icon-[lucide--bot]" },
493
+ sparkles: { category: "AI", icon: "icon-[lucide--sparkles]" },
494
+ sparkle: { category: "AI", icon: "icon-[lucide--sparkle]" },
495
+ brain: { category: "AI", icon: "icon-[lucide--brain]" },
496
+ magic: { category: "AI", icon: "icon-[lucide--wand-sparkles]" },
497
+ experiment: { category: "AI", icon: "icon-[lucide--flask-conical]" },
498
+ psychology: { category: "AI", icon: "icon-[material-symbols--psychology-rounded]" },
499
+ one: { category: "Numbers", icon: "icon-[material-symbols--counter-1-rounded]" },
500
+ two: { category: "Numbers", icon: "icon-[material-symbols--counter-2-rounded]" },
501
+ three: { category: "Numbers", icon: "icon-[material-symbols--counter-3-rounded]" },
502
+ four: { category: "Numbers", icon: "icon-[material-symbols--counter-4-rounded]" },
503
+ five: { category: "Numbers", icon: "icon-[material-symbols--counter-5-rounded]" },
504
+ six: { category: "Numbers", icon: "icon-[material-symbols--counter-6-rounded]" },
505
+ seven: { category: "Numbers", icon: "icon-[material-symbols--counter-7-rounded]" },
506
+ eight: { category: "Numbers", icon: "icon-[material-symbols--counter-8]" },
507
+ nine: { category: "Numbers", icon: "icon-[material-symbols--counter-9-rounded]" },
508
+ favorite: { category: "Misc", icon: "icon-[lucide--heart]" },
509
+ star: { category: "Misc", icon: "icon-[lucide--star]" },
510
+ bookmark: { category: "Misc", icon: "icon-[lucide--bookmark]" },
511
+ flag: { category: "Misc", icon: "icon-[lucide--flag]" },
512
+ flagTriangle: { category: "Misc", icon: "icon-[lucide--flag-triangle-right]" },
513
+ creditCard: { category: "Misc", icon: "icon-[lucide--credit-card]" },
514
+ shoppingCart: { category: "Misc", icon: "icon-[lucide--shopping-cart]" },
515
+ store: { category: "Misc", icon: "icon-[lucide--store]" },
516
+ coins: { category: "Misc", icon: "icon-[lucide--coins]" },
517
+ dollarSign: { category: "Misc", icon: "icon-[lucide--dollar-sign]" },
518
+ receipt: { category: "Misc", icon: "icon-[lucide--receipt]" },
519
+ location: { category: "Misc", icon: "icon-[lucide--map-pin]" },
520
+ calendar: { category: "Misc", icon: "icon-[lucide--calendar]" },
521
+ clock: { category: "Misc", icon: "icon-[lucide--clock]" },
522
+ clockRewind: { category: "Misc", icon: "icon-[lucide--history]" },
523
+ schedule: { category: "Misc", icon: "icon-[lucide--clock]" },
524
+ timer: { category: "Misc", icon: "icon-[lucide--timer]" },
525
+ stopwatch: { category: "Misc", icon: "icon-[lucide--timer]" },
526
+ alarmClock: { category: "Misc", icon: "icon-[lucide--alarm-clock]" },
527
+ lightbulb: { category: "Misc", icon: "icon-[lucide--lightbulb]" },
528
+ bolt: { category: "Misc", icon: "icon-[lucide--zap]" },
529
+ cloud: { category: "Misc", icon: "icon-[lucide--cloud]" },
530
+ cloudUpload: { category: "Misc", icon: "icon-[lucide--cloud-upload]" },
531
+ cloudDownload: { category: "Misc", icon: "icon-[lucide--cloud-download]" },
532
+ lightMode: { category: "Misc", icon: "icon-[lucide--sun]" },
533
+ darkMode: { category: "Misc", icon: "icon-[lucide--moon]" },
534
+ moonStar: { category: "Misc", icon: "icon-[lucide--moon-star]" },
535
+ sunDim: { category: "Misc", icon: "icon-[lucide--sun-dim]" },
536
+ power: { category: "Misc", icon: "icon-[lucide--power]" },
537
+ shield: { category: "Misc", icon: "icon-[lucide--shield]" },
538
+ shieldCheck: { category: "Misc", icon: "icon-[lucide--shield-check]" },
539
+ shieldOff: { category: "Misc", icon: "icon-[lucide--shield-off]" },
540
+ key: { category: "Misc", icon: "icon-[lucide--key]" },
541
+ keyRound: { category: "Misc", icon: "icon-[lucide--key-round]" },
542
+ fingerprint: { category: "Misc", icon: "icon-[lucide--fingerprint]" },
543
+ pin: { category: "Misc", icon: "icon-[lucide--pin]" },
544
+ paperclip: { category: "Misc", icon: "icon-[lucide--paperclip]" },
545
+ globe: { category: "Misc", icon: "icon-[lucide--globe]" },
546
+ globeLock: { category: "Misc", icon: "icon-[lucide--globe-lock]" },
547
+ gps: { category: "Misc", icon: "icon-[lucide--locate]" },
548
+ network: { category: "Misc", icon: "icon-[lucide--network]" },
549
+ cpu: { category: "Misc", icon: "icon-[lucide--cpu]" },
550
+ monitor: { category: "Misc", icon: "icon-[lucide--monitor]" },
551
+ smartphone: { category: "Misc", icon: "icon-[lucide--smartphone]" },
552
+ tablet: { category: "Misc", icon: "icon-[lucide--tablet]" },
553
+ monitorSmartphone: { category: "Misc", icon: "icon-[lucide--monitor-smartphone]" },
554
+ server: { category: "Misc", icon: "icon-[lucide--server]" },
555
+ hardDrive: { category: "Misc", icon: "icon-[lucide--hard-drive]" },
556
+ box: { category: "Misc", icon: "icon-[lucide--box]" },
557
+ puzzle: { category: "Misc", icon: "icon-[lucide--puzzle]" },
558
+ briefcase: { category: "Misc", icon: "icon-[lucide--briefcase]" },
559
+ calculator: { category: "Misc", icon: "icon-[lucide--calculator]" },
560
+ buildings: { category: "Misc", icon: "icon-[lucide--building-2]" },
561
+ bug: { category: "Misc", icon: "icon-[lucide--bug]" },
562
+ droplet: { category: "Misc", icon: "icon-[lucide--droplet]" },
563
+ bookOpen: { category: "Misc", icon: "icon-[lucide--book-open]" },
564
+ bookClosed: { category: "Misc", icon: "icon-[lucide--book-marked]" },
565
+ lifebuoy: { category: "Misc", icon: "icon-[lucide--life-buoy]" },
566
+ accessibility: { category: "Misc", icon: "icon-[lucide--accessibility]" },
567
+ workflow: { category: "Misc", icon: "icon-[lucide--workflow]" },
568
+ gitBranch: { category: "Misc", icon: "icon-[lucide--git-branch]" },
569
+ gitBranchPlus: { category: "Misc", icon: "icon-[lucide--git-branch-plus]" },
570
+ gitCommit: { category: "Misc", icon: "icon-[lucide--git-commit-horizontal]" },
571
+ gitMerge: { category: "Misc", icon: "icon-[lucide--git-merge]" },
572
+ gitPullRequest: { category: "Misc", icon: "icon-[lucide--git-pull-request]" },
573
+ crosshair: { category: "Misc", icon: "icon-[lucide--crosshair]" },
574
+ target: { category: "Misc", icon: "icon-[lucide--target]" },
575
+ smile: { category: "Misc", icon: "icon-[lucide--smile]" },
576
+ frown: { category: "Misc", icon: "icon-[lucide--frown]" },
577
+ smilePlus: { category: "Misc", icon: "icon-[lucide--smile-plus]" },
578
+ bold: { category: "Misc", icon: "icon-[lucide--bold]" },
579
+ italic: { category: "Misc", icon: "icon-[lucide--italic]" },
580
+ strikethrough: { category: "Misc", icon: "icon-[lucide--strikethrough]" },
581
+ underline: { category: "Misc", icon: "icon-[lucide--underline]" },
582
+ heading: { category: "Misc", icon: "icon-[lucide--heading]" },
583
+ type: { category: "Misc", icon: "icon-[lucide--type]" },
584
+ caseSensitive: { category: "Misc", icon: "icon-[lucide--case-sensitive]" },
585
+ alignLeft: { category: "Misc", icon: "icon-[lucide--align-left]" },
586
+ alignCenter: { category: "Misc", icon: "icon-[lucide--align-center]" },
587
+ alignRight: { category: "Misc", icon: "icon-[lucide--align-right]" }
588
+ };
589
+ class co {
590
+ static getIcon(o) {
591
+ return o in p ? p[o].icon : o;
592
+ }
593
+ static getCategory(o) {
594
+ return p[o].category;
595
+ }
596
+ static getCategories() {
597
+ const o = /* @__PURE__ */ new Set();
598
+ for (const e of Object.values(p))
599
+ o.add(e.category);
600
+ return Object.values(w).filter((e) => o.has(e));
601
+ }
602
+ static getByCategory() {
603
+ const o = {};
604
+ for (const e of Object.values(w))
605
+ o[e] = [];
606
+ for (const [e, t] of Object.entries(p))
607
+ o[t.category].push({
608
+ id: e,
609
+ category: t.category,
610
+ icon: t.icon
611
+ });
612
+ return o;
613
+ }
614
+ }
615
+ const A = `@plugin "@iconify/tailwind4";
616
+
617
+ @plugin "tailwindcss-animate";
618
+
619
+ @source inline("typo-1 typo-2 typo-3 typo-4 typo-5 typo-6 typo-7 typo-8 typo-9 typo-10 typo-11 typo-12 typo-13 typo-14 typo-15 typo-16 typo-17 typo-18 typo-weight-100 typo-weight-200 typo-weight-300 typo-weight-400 typo-weight-500 typo-weight-600 typo-weight-700 typo-weight-800 typo-weight-900");
620
+
621
+ @source "./index.js";
622
+
623
+ @theme static {
624
+ --font-code: 'geist-mono', monospace;
625
+ --font-geist: 'geist', sans-serif;
626
+ --font-geist-mono: 'geist-mono', monospace;
627
+ --font-pixel-circle: 'geist-pixel-circle', monospace;
628
+ --font-pixel-grid: 'geist-pixel-grid', monospace;
629
+ --font-pixel-line: 'geist-pixel-line', monospace;
630
+ --font-pixel-square: 'geist-pixel-square', monospace;
631
+ --font-pixel-triangle: 'geist-pixel-triangle', monospace;
632
+ --font-clash-grotesk: 'clash-grotesk-variable', sans-serif;
633
+ --font-nippo: 'nippo', sans-serif;
634
+ --font-humane: 'humane-variable', sans-serif;
635
+ --font-general-sans: 'general-sans', sans-serif;
636
+ --font-kode-mono: 'kode-mono-vf', monospace;
637
+ --font-aalto: 'Aalto', display;
638
+ --font-being: 'being', display;
639
+ --font-benzol: 'benzol', display;
640
+ --font-half: 'half', display;
641
+ --font-miratrix: 'miratrix', display;
642
+ --font-triakis: 'triakis', display;
643
+ --font-yeager: 'yeager', display;
644
+ --font-karmatic-arcade: 'karmatic-arcade-regular', display;
645
+ --font-digital-7: 'digital-7-mono', monospace;
646
+ --font-pixelony: 'pixelony', display;
647
+ --font-unknown: 'unknown', display;
648
+ --font-disket: 'disket', display;
649
+ --font-heming: 'heming', display;
650
+ --font-obrazec: 'obrazec', display;
651
+
652
+ --color-neutral-1: #111111;
653
+ --color-neutral-2: #191919;
654
+ --color-neutral-3: #222222;
655
+ --color-neutral-4: #2a2a2a;
656
+ --color-neutral-5: #313131;
657
+ --color-neutral-6: #3a3a3a;
658
+ --color-neutral-7: #484848;
659
+ --color-neutral-8: #606060;
660
+ --color-neutral-9: #6e6e6e;
661
+ --color-neutral-10: #7b7b7b;
662
+ --color-neutral-11: #b4b4b4;
663
+ --color-neutral-12: #eeeeee;
664
+
665
+ --color-neutralA-1: #FFFFFF05;
666
+ --color-neutralA-2: #FFFFFF09;
667
+ --color-neutralA-3: #FFFFFF12;
668
+ --color-neutralA-4: #FFFFFF1B;
669
+ --color-neutralA-5: #FFFFFF22;
670
+ --color-neutralA-6: #FFFFFF2C;
671
+ --color-neutralA-7: #FFFFFF3B;
672
+ --color-neutralA-8: #FFFFFF55;
673
+ --color-neutralA-9: #FFFFFF64;
674
+ --color-neutralA-10: #FFFFFF72;
675
+ --color-neutralA-11: #FFFFFFAF;
676
+ --color-neutralA-12: #FFFFFFED;
677
+
678
+ --color-shadows-1: #0000000D;
679
+ --color-shadows-2: #0000001A;
680
+ --color-shadows-3: #00000026;
681
+ --color-shadows-4: #00000033;
682
+ --color-shadows-5: #0000004D;
683
+ --color-shadows-6: #00000066;
684
+ --color-shadows-7: #00000080;
685
+ --color-shadows-8: #00000099;
686
+ --color-shadows-9: #000000B3;
687
+ --color-shadows-10: #000000CC;
688
+ --color-shadows-11: #000000E6;
689
+ --color-shadows-12: #000000F2;
690
+
691
+ --color-accent-1: #0e1512;
692
+ --color-accent-2: #121b17;
693
+ --color-accent-3: #132d21;
694
+ --color-accent-4: #113b29;
695
+ --color-accent-5: #174933;
696
+ --color-accent-6: #20573e;
697
+ --color-accent-7: #28684a;
698
+ --color-accent-8: #2f7c57;
699
+ --color-accent-9: #30a46c;
700
+ --color-accent-10: #33b074;
701
+ --color-accent-11: #3dd68c;
702
+ --color-accent-12: #b1f1cb;
703
+
704
+ --color-accentA-1: #00de4505;
705
+ --color-accentA-2: #29f99d0b;
706
+ --color-accentA-3: #22ff991e;
707
+ --color-accentA-4: #11ff992d;
708
+ --color-accentA-5: #2bffa23c;
709
+ --color-accentA-6: #44ffaa4b;
710
+ --color-accentA-7: #50fdac5e;
711
+ --color-accentA-8: #54ffad73;
712
+ --color-accentA-9: #44ffa49e;
713
+ --color-accentA-10: #43fea4ab;
714
+ --color-accentA-11: #46fea5d4;
715
+ --color-accentA-12: #bbffd7f0;
716
+
717
+ --color-error-1: #191113;
718
+ --color-error-2: #1e1517;
719
+ --color-error-3: #3a141e;
720
+ --color-error-4: #4e1325;
721
+ --color-error-5: #5e1a2e;
722
+ --color-error-6: #6f2539;
723
+ --color-error-7: #883447;
724
+ --color-error-8: #b3445a;
725
+ --color-error-9: #e54666;
726
+ --color-error-10: #ec5a72;
727
+ --color-error-11: #ff949d;
728
+ --color-error-12: #fed2e1;
729
+
730
+ --color-errorA-1: #f4126709;
731
+ --color-errorA-2: #f22f7a11;
732
+ --color-errorA-3: #fe2a8b2a;
733
+ --color-errorA-4: #fd158741;
734
+ --color-errorA-5: #fd278f51;
735
+ --color-errorA-6: #fe459763;
736
+ --color-errorA-7: #fd559b7f;
737
+ --color-errorA-8: #fe5b9bab;
738
+ --color-errorA-9: #fe418de8;
739
+ --color-errorA-10: #ff5693ed;
740
+ --color-errorA-11: #ff92ad;
741
+ --color-errorA-12: #ffd5eafd;
742
+
743
+ --color-success-1: #0d1512;
744
+ --color-success-2: #121c18;
745
+ --color-success-3: #0f2e22;
746
+ --color-success-4: #0b3b2c;
747
+ --color-success-5: #114837;
748
+ --color-success-6: #1b5745;
749
+ --color-success-7: #246854;
750
+ --color-success-8: #2a7e68;
751
+ --color-success-9: #29a383;
752
+ --color-success-10: #27b08b;
753
+ --color-success-11: #1fd8a4;
754
+ --color-success-12: #adf0d4;
755
+
756
+ --color-successA-1: #00de4505;
757
+ --color-successA-2: #29f99d0b;
758
+ --color-successA-3: #22ff991e;
759
+ --color-successA-4: #11ff992d;
760
+ --color-successA-5: #2bffa23c;
761
+ --color-successA-6: #44ffaa4b;
762
+ --color-successA-7: #50fdac5e;
763
+ --color-successA-8: #54ffad73;
764
+ --color-successA-9: #44ffa49e;
765
+ --color-successA-10: #43fea4ab;
766
+ --color-successA-11: #46fea5d4;
767
+ --color-successA-12: #bbffd7f0;
768
+
769
+ --color-warning-1: #16120c;
770
+ --color-warning-2: #1d180f;
771
+ --color-warning-3: #302008;
772
+ --color-warning-4: #3f2700;
773
+ --color-warning-5: #4d3000;
774
+ --color-warning-6: #5c3d05;
775
+ --color-warning-7: #714f19;
776
+ --color-warning-8: #8f6424;
777
+ --color-warning-9: #f5d90a;
778
+ --color-warning-10: #ffef5c;
779
+ --color-warning-11: #f0c000;
780
+ --color-warning-12: #fffad1;
781
+
782
+ --color-warningA-1: #d1510004;
783
+ --color-warningA-2: #f9b4000b;
784
+ --color-warningA-3: #ffaa001e;
785
+ --color-warningA-4: #fdb70028;
786
+ --color-warningA-5: #febb0036;
787
+ --color-warningA-6: #fec40046;
788
+ --color-warningA-7: #fdcb225c;
789
+ --color-warningA-8: #fdca327b;
790
+ --color-warningA-9: #ffe629;
791
+ --color-warningA-10: #ffff57;
792
+ --color-warningA-11: #fee949f5;
793
+ --color-warningA-12: #fef6baf6;
794
+
795
+ --color-info-1: #0d1520;
796
+ --color-info-2: #111927;
797
+ --color-info-3: #0d2847;
798
+ --color-info-4: #003362;
799
+ --color-info-5: #004074;
800
+ --color-info-6: #104d87;
801
+ --color-info-7: #205d9e;
802
+ --color-info-8: #2870bd;
803
+ --color-info-9: #0090ff;
804
+ --color-info-10: #3b9eff;
805
+ --color-info-11: #70b8ff;
806
+ --color-info-12: #c2e6ff;
807
+
808
+ --color-infoA-1: #004df211;
809
+ --color-infoA-2: #1166fb18;
810
+ --color-infoA-3: #0077ff3a;
811
+ --color-infoA-4: #0075ff57;
812
+ --color-infoA-5: #0081fd6b;
813
+ --color-infoA-6: #0f89fd7f;
814
+ --color-infoA-7: #2a91fe98;
815
+ --color-infoA-8: #3094feb9;
816
+ --color-infoA-9: #0090ff;
817
+ --color-infoA-10: #3b9eff;
818
+ --color-infoA-11: #70b8ff;
819
+ --color-infoA-12: #c2e6ff;
820
+
821
+ --text-xxs: 0.625rem;
822
+ --text-10xl: 10rem;
823
+ --text-11xl: 12rem;
824
+ --text-12xl: 14rem;
825
+ --text-13xl: 16rem;
826
+ }
827
+
828
+ @theme {
829
+ --radius: 0.5rem;
830
+ --radius-xxs: calc(var(--radius) * 0.25);
831
+ --radius-xs: calc(var(--radius) * 0.375);
832
+ --radius-sm: calc(var(--radius) * 0.625);
833
+ --radius-md: calc(var(--radius) * 0.875);
834
+ --radius-lg: calc(var(--radius) * 1.25);
835
+ --radius-xl: calc(var(--radius) * 1.75);
836
+ --radius-2xl: calc(var(--radius) * 2.5);
837
+ --radius-3xl: calc(var(--radius) * 3.5);
838
+
839
+ --typo-header-font: 'geist', sans-serif;
840
+ --typo-header-weight: 600;
841
+ --typo-header-tracking: 0.025em;
842
+ --typo-header-leading: 1;
843
+
844
+ --typo-label-font: 'geist', sans-serif;
845
+ --typo-label-weight: 500;
846
+ --typo-label-tracking: 0.025em;
847
+ --typo-label-leading: 1;
848
+
849
+ --typo-body-font: 'geist', sans-serif;
850
+ --typo-body-weight: 400;
851
+ --typo-body-tracking: 0.025em;
852
+ --typo-body-leading: 1.375;
853
+
854
+ --typo-code-font: 'geist-mono', monospace;
855
+ --typo-code-weight: 500;
856
+ --typo-code-tracking: 0;
857
+ --typo-code-leading: 1.5;
858
+
859
+ --typo-scale-factor: 1;
860
+
861
+ --shadow-xs-color: var(--color-neutral-9);
862
+ --shadow-xs-offsetX: 0px;
863
+ --shadow-xs-offsetY: 0px;
864
+ --shadow-xs-blur: 2px;
865
+ --shadow-xs-spread: 0px;
866
+ --shadow-xs-opacity: 5%;
867
+ --shadow-xs: var(--shadow-xs-offsetX) var(--shadow-xs-offsetY) var(--shadow-xs-blur) var(--shadow-xs-spread) color-mix(in srgb, var(--shadow-xs-color) var(--shadow-xs-opacity), transparent);
868
+
869
+ --shadow-s-color: var(--color-neutral-9);
870
+ --shadow-s-offsetX: 0px;
871
+ --shadow-s-offsetY: 0px;
872
+ --shadow-s-blur: 4px;
873
+ --shadow-s-spread: 0px;
874
+ --shadow-s-opacity: 10%;
875
+ --shadow-s: var(--shadow-s-offsetX) var(--shadow-s-offsetY) var(--shadow-s-blur) var(--shadow-s-spread) color-mix(in srgb, var(--shadow-s-color) var(--shadow-s-opacity), transparent);
876
+
877
+ --shadow-m-color: var(--color-neutral-9);
878
+ --shadow-m-offsetX: 0px;
879
+ --shadow-m-offsetY: 0px;
880
+ --shadow-m-blur: 8px;
881
+ --shadow-m-spread: -1px;
882
+ --shadow-m-opacity: 15%;
883
+ --shadow-m: var(--shadow-m-offsetX) var(--shadow-m-offsetY) var(--shadow-m-blur) var(--shadow-m-spread) color-mix(in srgb, var(--shadow-m-color) var(--shadow-m-opacity), transparent);
884
+
885
+ --shadow-l-color: var(--color-neutral-9);
886
+ --shadow-l-offsetX: 0px;
887
+ --shadow-l-offsetY: 0px;
888
+ --shadow-l-blur: 16px;
889
+ --shadow-l-spread: -2px;
890
+ --shadow-l-opacity: 20%;
891
+ --shadow-l: var(--shadow-l-offsetX) var(--shadow-l-offsetY) var(--shadow-l-blur) var(--shadow-l-spread) color-mix(in srgb, var(--shadow-l-color) var(--shadow-l-opacity), transparent);
892
+
893
+ --shadow-xl-color: var(--color-neutral-9);
894
+ --shadow-xl-offsetX: 0px;
895
+ --shadow-xl-offsetY: 0px;
896
+ --shadow-xl-blur: 40px;
897
+ --shadow-xl-spread: -8px;
898
+ --shadow-xl-opacity: 30%;
899
+ --shadow-xl: var(--shadow-xl-offsetX) var(--shadow-xl-offsetY) var(--shadow-xl-blur) var(--shadow-xl-spread) color-mix(in srgb, var(--shadow-xl-color) var(--shadow-xl-opacity), transparent);
900
+ }
901
+
902
+ @utility typo-weight-100 {
903
+ @apply font-thin;
904
+ }
905
+
906
+ @utility typo-weight-200 {
907
+ @apply font-extralight;
908
+ }
909
+
910
+ @utility typo-weight-300 {
911
+ @apply font-light;
912
+ }
913
+
914
+ @utility typo-weight-400 {
915
+ @apply font-normal;
916
+ }
917
+
918
+ @utility typo-weight-500 {
919
+ @apply font-medium;
920
+ }
921
+
922
+ @utility typo-weight-600 {
923
+ @apply font-semibold;
924
+ }
925
+
926
+ @utility typo-weight-700 {
927
+ @apply font-bold;
928
+ }
929
+
930
+ @utility typo-weight-800 {
931
+ @apply font-extrabold;
932
+ }
933
+
934
+ @utility typo-weight-900 {
935
+ @apply font-black;
936
+ }
937
+
938
+ @utility typo-header {
939
+ font-family: var(--typo-header-font);
940
+ font-weight: var(--typo-header-weight);
941
+ -webkit-font-smoothing: antialiased;
942
+ white-space: nowrap;
943
+ letter-spacing: var(--typo-header-tracking);
944
+ line-height: var(--typo-header-leading);
945
+ }
946
+
947
+ @utility typo-label {
948
+ font-family: var(--typo-label-font);
949
+ font-weight: var(--typo-label-weight);
950
+ -webkit-font-smoothing: antialiased;
951
+ white-space: nowrap;
952
+ letter-spacing: var(--typo-label-tracking);
953
+ line-height: var(--typo-label-leading);
954
+ }
955
+
956
+ @utility typo-body {
957
+ font-family: var(--typo-body-font);
958
+ font-weight: var(--typo-body-weight);
959
+ -webkit-font-smoothing: antialiased;
960
+ text-wrap: wrap;
961
+ letter-spacing: var(--typo-body-tracking);
962
+ line-height: var(--typo-body-leading);
963
+ }
964
+
965
+ @utility typo-code {
966
+ font-family: var(--typo-code-font);
967
+ font-weight: var(--typo-code-weight);
968
+ -webkit-font-smoothing: antialiased;
969
+ white-space: nowrap;
970
+ letter-spacing: var(--typo-code-tracking);
971
+ line-height: var(--typo-code-leading);
972
+ font-variant-numeric: tabular-nums;
973
+ }
974
+
975
+ @utility typo-1 {
976
+ @apply typo-body;
977
+ font-size: calc(var(--text-xxs) * var(--typo-scale-factor));
978
+ }
979
+
980
+ @utility typo-2 {
981
+ @apply typo-body;
982
+ font-size: calc(var(--text-xs) * var(--typo-scale-factor));
983
+ }
984
+
985
+ @utility typo-3 {
986
+ @apply typo-body;
987
+ font-size: calc(var(--text-sm) * var(--typo-scale-factor));
988
+ }
989
+
990
+ @utility typo-4 {
991
+ @apply typo-body;
992
+ font-size: calc(var(--text-base) * var(--typo-scale-factor));
993
+ }
994
+
995
+ @utility typo-5 {
996
+ @apply typo-body;
997
+ font-size: calc(var(--text-lg) * var(--typo-scale-factor));
998
+ }
999
+
1000
+ @utility typo-6 {
1001
+ @apply typo-body;
1002
+ font-size: calc(var(--text-xl) * var(--typo-scale-factor));
1003
+ }
1004
+
1005
+ @utility typo-7 {
1006
+ @apply typo-body;
1007
+ font-size: calc(var(--text-2xl) * var(--typo-scale-factor));
1008
+ }
1009
+
1010
+ @utility typo-8 {
1011
+ @apply typo-body;
1012
+ font-size: calc(var(--text-3xl) * var(--typo-scale-factor));
1013
+ }
1014
+
1015
+ @utility typo-9 {
1016
+ @apply typo-body;
1017
+ font-size: calc(var(--text-4xl) * var(--typo-scale-factor));
1018
+ }
1019
+
1020
+ @utility typo-10 {
1021
+ @apply typo-body;
1022
+ font-size: calc(var(--text-5xl) * var(--typo-scale-factor));
1023
+ }
1024
+
1025
+ @utility typo-11 {
1026
+ @apply typo-body;
1027
+ font-size: calc(var(--text-6xl) * var(--typo-scale-factor));
1028
+ }
1029
+
1030
+ @utility typo-12 {
1031
+ @apply typo-body;
1032
+ font-size: calc(var(--text-7xl) * var(--typo-scale-factor));
1033
+ }
1034
+
1035
+ @utility typo-13 {
1036
+ @apply typo-body;
1037
+ font-size: calc(var(--text-8xl) * var(--typo-scale-factor));
1038
+ }
1039
+
1040
+ @utility typo-14 {
1041
+ @apply typo-body;
1042
+ font-size: calc(var(--text-9xl) * var(--typo-scale-factor));
1043
+ }
1044
+
1045
+ @utility typo-15 {
1046
+ @apply typo-body;
1047
+ font-size: calc(var(--text-10xl) * var(--typo-scale-factor));
1048
+ }
1049
+
1050
+ @utility typo-16 {
1051
+ @apply typo-body;
1052
+ font-size: calc(var(--text-11xl) * var(--typo-scale-factor));
1053
+ }
1054
+
1055
+ @utility typo-17 {
1056
+ @apply typo-body;
1057
+ font-size: calc(var(--text-12xl) * var(--typo-scale-factor));
1058
+ }
1059
+
1060
+ @utility typo-18 {
1061
+ @apply typo-body;
1062
+ font-size: calc(var(--text-13xl) * var(--typo-scale-factor));
1063
+ }
1064
+
1065
+ @utility filter-none {
1066
+ filter: none;
1067
+ }
1068
+
1069
+ @utility flex-col-center {
1070
+ @apply flex flex-col justify-center items-center align-middle;
1071
+ }
1072
+
1073
+ @utility grid-hor-center {
1074
+ @apply grid grid-flow-col items-center;
1075
+ }
1076
+
1077
+ @utility grid-ver-center {
1078
+ @apply grid grid-flow-row items-center;
1079
+ }
1080
+
1081
+ @utility flex-row-center {
1082
+ @apply flex flex-row justify-center items-center align-middle;
1083
+ }
1084
+
1085
+ @utility cs-border-dashed {
1086
+ @apply border border-dashed border-neutralA-4;
1087
+ }
1088
+
1089
+ @utility cs-disabled {
1090
+ @apply disabled:pointer-events-none disabled:opacity-50 data-disabled:pointer-events-none data-disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50;
1091
+ }
1092
+
1093
+ @utility cs-has-disabled {
1094
+ @apply has-[[data-slot=control]:disabled]:pointer-events-none has-[[data-slot=control]:disabled]:opacity-50;
1095
+ }
1096
+
1097
+ @utility cs-transition {
1098
+ @apply transition-all duration-200 ease-in-out;
1099
+ }
1100
+
1101
+ @utility cs-contrast {
1102
+ @apply drop-shadow-[0_1px_1px_#0008] drop-shadow-[0_-1px_1px_#fff4];
1103
+ }
1104
+
1105
+ @utility cs-popup-animation {
1106
+ @apply origin-(--transform-origin) transition-[scale,opacity] duration-[0.25s] ease-[cubic-bezier(0.34,1.56,0.64,1)] data-starting-style:scale-90 data-starting-style:opacity-0 data-ending-style:scale-90 data-ending-style:opacity-0 data-instant:transition-none;
1107
+ }
1108
+
1109
+ @utility cs-focus {
1110
+ @apply outline-none focus-visible:duration-0 focus-visible:outline-solid focus-visible:z-1 focus-visible:ring-[3px] focus-visible:ring-accent-4 focus-visible:outline-1 focus-visible:-outline-offset-1 focus-visible:outline-accent-9;
1111
+ }
1112
+
1113
+ @utility cs-has-focus {
1114
+ @apply has-[[data-slot=control]:focus-visible]:z-1 has-[[data-slot=control]:focus-visible]:ring-[3px] has-[[data-slot=control]:focus-visible]:ring-accent-4 has-[[data-slot=control]:focus-visible]:outline-1 has-[[data-slot=control]:focus-visible]:outline-solid has-[[data-slot=control]:focus-visible]:-outline-offset-1 has-[[data-slot=control]:focus-visible]:outline-accent-9;
1115
+ }
1116
+
1117
+ @utility cs-invalid {
1118
+ @apply aria-invalid:ring-3 aria-invalid:ring-error-3 aria-invalid:ring-error-6 aria-invalid:border-error-9 focus-visible:aria-invalid:ring-error-4 focus-visible:aria-invalid:outline-error-9;
1119
+ }
1120
+
1121
+ @utility cs-has-invalid {
1122
+ @apply has-[[data-slot=control][aria-invalid=true]]:ring-3 has-[[data-slot=control][aria-invalid=true]]:ring-error-3 has-[[data-slot=control][aria-invalid=true]]:ring-error-6 has-[[data-slot=control][aria-invalid=true]]:border-error-9 has-[[data-slot=control][aria-invalid=true]:focus-visible]:ring-error-4 has-[[data-slot=control][aria-invalid=true]:focus-visible]:outline-error-9;
1123
+ }
1124
+
1125
+ @utility cs-masonry {
1126
+ columns: 3;
1127
+ & > * {
1128
+ break-inside: avoid-column;
1129
+ }
1130
+ }
1131
+
1132
+ @utility cs-stroke {
1133
+ -webkit-text-stroke-width: var(--stroke-w, 2px);
1134
+ -webkit-text-stroke-color: var(--stroke-color, var(--color-neutral-12));
1135
+ color: transparent;
1136
+ paint-order: stroke fill;
1137
+ }
1138
+
1139
+ @utility cs-backdrop-panel {
1140
+ @apply rounded-md border-neutralA-4 bg-neutral-1/60 text-neutral-11 backdrop-blur-lg border shadow-m;
1141
+ }
1142
+
1143
+ @utility animate-collapsible-down {
1144
+ animation: collapsible-down 0.2s ease-out;
1145
+ }
1146
+
1147
+ @utility animate-collapsible-up {
1148
+ animation: collapsible-up 0.2s ease-out;
1149
+ }
1150
+
1151
+ @utility no-scrollbar {
1152
+ @apply [scrollbar-width:none] [&::-webkit-scrollbar]:hidden;
1153
+ }
1154
+
1155
+ @utility cs-gutter {
1156
+ background: repeating-linear-gradient(315deg, var(--color-neutral-3) 0 1px, transparent 1px 50%);
1157
+ background-size: 10px 10px;
1158
+ background-attachment: fixed;
1159
+ }
1160
+
1161
+ @keyframes stripes {
1162
+ from { background-position: 0 0; }
1163
+ to { background-position: 16px 0; }
1164
+ }
1165
+
1166
+ @utility cs-stripes {
1167
+ background-image: repeating-linear-gradient(315deg, var(--color-neutralA-4) 0 4px, transparent 2px 50%);
1168
+ background-size: 16px 16px;
1169
+ animation: stripes 0.6s linear infinite;
1170
+ }
1171
+
1172
+ @utility cs-guides {
1173
+ overflow: clip;
1174
+ isolation: isolate;
1175
+
1176
+ & > * {
1177
+ position: relative;
1178
+ z-index: 0;
1179
+
1180
+ &::after {
1181
+ content: '';
1182
+ position: absolute;
1183
+ left: 0;
1184
+ right: -1px;
1185
+ top: -9999px;
1186
+ bottom: -9999px;
1187
+ border-left: 1px solid var(--color-neutral-4);
1188
+ border-right: 1px solid var(--color-neutral-4);
1189
+ pointer-events: none;
1190
+ z-index: 1;
1191
+ }
1192
+
1193
+ &::before {
1194
+ content: '';
1195
+ position: absolute;
1196
+ top: 0;
1197
+ bottom: -1px;
1198
+ left: -9999px;
1199
+ right: -9999px;
1200
+ border-top: 1px solid var(--color-neutral-4);
1201
+ border-bottom: 1px solid var(--color-neutral-4);
1202
+ pointer-events: none;
1203
+ z-index: 1;
1204
+ }
1205
+ }
1206
+ }
1207
+
1208
+ @utility cs-page-container {
1209
+ @apply grid grid-cols-[1fr_minmax(0,var(--page-max-w,64rem))_1fr];
1210
+ }
1211
+
1212
+ @utility cs-page-grid {
1213
+ position: relative;
1214
+ max-width: var(--page-max-w, 64rem);
1215
+ width: 100%;
1216
+ margin-inline: auto;
1217
+ border-inline: 1px solid var(--color-neutral-4);
1218
+
1219
+ & > :where(*) {
1220
+ position: relative;
1221
+
1222
+ &::after {
1223
+ content: '';
1224
+ position: absolute;
1225
+ bottom: 0;
1226
+ left: -100vw;
1227
+ width: 200vw;
1228
+ height: 1px;
1229
+ background-color: var(--color-neutral-4);
1230
+ pointer-events: none;
1231
+ }
1232
+ }
1233
+
1234
+ & > :where(*:first-child)::before {
1235
+ content: '';
1236
+ position: absolute;
1237
+ top: 0;
1238
+ left: -100vw;
1239
+ width: 200vw;
1240
+ height: 1px;
1241
+ background-color: var(--color-neutral-4);
1242
+ pointer-events: none;
1243
+ }
1244
+ }
1245
+
1246
+ @utility cs-page-gutter {
1247
+ &::before, &::after {
1248
+ content: '';
1249
+ position: absolute;
1250
+ top: 0;
1251
+ bottom: 0;
1252
+ width: var(--page-gutter-w, 2.5rem);
1253
+ pointer-events: none;
1254
+ background: repeating-linear-gradient(315deg, var(--color-neutral-3) 0 1px, transparent 1px 50%);
1255
+ background-size: 10px 10px;
1256
+ background-attachment: fixed;
1257
+ }
1258
+
1259
+ &::before {
1260
+ right: 100%;
1261
+ border-left: 1px solid var(--color-neutral-4);
1262
+ }
1263
+
1264
+ &::after {
1265
+ left: 100%;
1266
+ border-right: 1px solid var(--color-neutral-4);
1267
+ }
1268
+ }
1269
+
1270
+ @layer base {
1271
+
1272
+ * {
1273
+ @apply transition-colors duration-200;
1274
+ }
1275
+
1276
+ body {
1277
+ color: var(--color-neutral-12);
1278
+ background-color: var(--color-neutral-1);
1279
+ }
1280
+
1281
+
1282
+ @font-face {
1283
+ font-family: 'geist';
1284
+ font-weight: 100 900;
1285
+ font-style: normal;
1286
+ font-display: swap;
1287
+ size-adjust: 100%;
1288
+ src: url(https://cdn.digo-labs.com/fonts/geist.ttf) format('truetype');
1289
+ }
1290
+
1291
+ @font-face {
1292
+ font-family: 'geist-mono';
1293
+ font-weight: 100 900;
1294
+ font-style: normal;
1295
+ font-display: swap;
1296
+ size-adjust: 100%;
1297
+ src: url(https://cdn.digo-labs.com/fonts/geist-mono.ttf) format('truetype');
1298
+ }
1299
+
1300
+ @font-face {
1301
+ font-family: 'geist-pixel-circle';
1302
+ font-weight: 400;
1303
+ font-style: normal;
1304
+ font-display: swap;
1305
+ size-adjust: 100%;
1306
+ src: url(https://cdn.digo-labs.com/fonts/geist-pixel-circle.ttf) format('truetype');
1307
+ }
1308
+
1309
+ @font-face {
1310
+ font-family: 'geist-pixel-grid';
1311
+ font-weight: 400;
1312
+ font-style: normal;
1313
+ font-display: swap;
1314
+ size-adjust: 100%;
1315
+ src: url(https://cdn.digo-labs.com/fonts/geist-pixel-grid.ttf) format('truetype');
1316
+ }
1317
+
1318
+ @font-face {
1319
+ font-family: 'geist-pixel-line';
1320
+ font-weight: 400;
1321
+ font-style: normal;
1322
+ font-display: swap;
1323
+ size-adjust: 100%;
1324
+ src: url(https://cdn.digo-labs.com/fonts/geist-pixel-line.ttf) format('truetype');
1325
+ }
1326
+
1327
+ @font-face {
1328
+ font-family: 'geist-pixel-square';
1329
+ font-weight: 400;
1330
+ font-style: normal;
1331
+ font-display: swap;
1332
+ size-adjust: 100%;
1333
+ src: url(https://cdn.digo-labs.com/fonts/geist-pixel-square.ttf) format('truetype');
1334
+ }
1335
+
1336
+ @font-face {
1337
+ font-family: 'geist-pixel-triangle';
1338
+ font-weight: 400;
1339
+ font-style: normal;
1340
+ font-display: swap;
1341
+ size-adjust: 100%;
1342
+ src: url(https://cdn.digo-labs.com/fonts/geist-pixel-triangle.ttf) format('truetype');
1343
+ }
1344
+
1345
+ @font-face {
1346
+ font-family: 'clash-grotesk-variable';
1347
+ font-weight: 200 700;
1348
+ font-style: normal;
1349
+ font-display: swap;
1350
+ size-adjust: 100%;
1351
+ src: url(https://cdn.digo-labs.com/fonts/clash-grotesk-variable.ttf) format('truetype');
1352
+ }
1353
+
1354
+ @font-face {
1355
+ font-family: 'nippo';
1356
+ font-weight: 200 700;
1357
+ font-style: normal;
1358
+ font-display: swap;
1359
+ size-adjust: 100%;
1360
+ src: url(https://cdn.digo-labs.com/fonts/nippo.ttf) format('truetype');
1361
+ }
1362
+
1363
+ @font-face {
1364
+ font-family: 'being';
1365
+ font-weight: 400;
1366
+ font-style: normal;
1367
+ font-display: swap;
1368
+ size-adjust: 100%;
1369
+ src: url(https://cdn.digo-labs.com/fonts/being.otf) format('opentype');
1370
+ }
1371
+
1372
+ @font-face {
1373
+ font-family: 'Aalto';
1374
+ font-weight: 400;
1375
+ font-style: normal;
1376
+ font-display: swap;
1377
+ size-adjust: 100%;
1378
+ src: url(https://cdn.digo-labs.com/fonts/aalto.otf) format('opentype');
1379
+ }
1380
+
1381
+ @font-face {
1382
+ font-family: 'humane-variable';
1383
+ font-weight: 200 800;
1384
+ font-style: normal;
1385
+ font-display: swap;
1386
+ size-adjust: 100%;
1387
+ src: url(https://cdn.digo-labs.com/fonts/humane-variable.ttf) format('truetype');
1388
+ }
1389
+
1390
+ @font-face {
1391
+ font-family: 'general-sans';
1392
+ font-weight: 200 800;
1393
+ font-style: normal;
1394
+ font-display: swap;
1395
+ size-adjust: 100%;
1396
+ src: url(https://cdn.digo-labs.com/fonts/general-sans.ttf) format('truetype');
1397
+ }
1398
+
1399
+ @font-face {
1400
+ font-family: 'karmatic-arcade-regular';
1401
+ font-style: normal;
1402
+ font-weight: 400;
1403
+ font-display: swap;
1404
+ size-adjust: 100%;
1405
+ src: url(https://cdn.digo-labs.com/fonts/karmatic-arcade-regular.ttf) format('truetype');
1406
+ }
1407
+
1408
+ @font-face {
1409
+ font-family: 'kode-mono-vf';
1410
+ font-style: normal;
1411
+ font-weight: 400 700;
1412
+ font-display: swap;
1413
+ size-adjust: 100%;
1414
+ src: url(https://cdn.digo-labs.com/fonts/kode-mono-vf.ttf) format('truetype');
1415
+ }
1416
+
1417
+ @font-face {
1418
+ font-family: 'digital-7-mono';
1419
+ font-style: normal;
1420
+ font-weight: 400;
1421
+ font-display: swap;
1422
+ size-adjust: 100%;
1423
+ src: url(https://cdn.digo-labs.com/fonts/digital-7-mono.ttf) format('truetype');
1424
+ }
1425
+
1426
+ @font-face {
1427
+ font-family: 'pixelony';
1428
+ font-style: normal;
1429
+ font-weight: 400;
1430
+ font-display: swap;
1431
+ size-adjust: 100%;
1432
+ src: url(https://cdn.digo-labs.com/fonts/pixelony.ttf) format('truetype');
1433
+ }
1434
+
1435
+ @font-face {
1436
+ font-family: 'unknown';
1437
+ font-weight: 400;
1438
+ font-style: normal;
1439
+ font-display: swap;
1440
+ size-adjust: 140%;
1441
+ src: url(https://cdn.digo-labs.com/fonts/unknown.otf) format('opentype');
1442
+ }
1443
+
1444
+ @font-face {
1445
+ font-family: 'benzol';
1446
+ font-weight: 400;
1447
+ font-style: normal;
1448
+ font-display: swap;
1449
+ size-adjust: 100%;
1450
+ src: url(https://cdn.digo-labs.com/fonts/benzol.otf) format('opentype');
1451
+ }
1452
+
1453
+ @font-face {
1454
+ font-family: 'half';
1455
+ font-weight: 400;
1456
+ font-style: normal;
1457
+ font-display: swap;
1458
+ size-adjust: 100%;
1459
+ src: url(https://cdn.digo-labs.com/fonts/half.otf) format('opentype');
1460
+ }
1461
+
1462
+ @font-face {
1463
+ font-family: 'miratrix';
1464
+ font-weight: 400;
1465
+ font-style: normal;
1466
+ font-display: swap;
1467
+ size-adjust: 100%;
1468
+ src: url(https://cdn.digo-labs.com/fonts/miratrix.otf) format('opentype');
1469
+ }
1470
+
1471
+ @font-face {
1472
+ font-family: 'triakis';
1473
+ font-weight: 400;
1474
+ font-style: normal;
1475
+ font-display: swap;
1476
+ size-adjust: 100%;
1477
+ src: url(https://cdn.digo-labs.com/fonts/triakis.otf) format('opentype');
1478
+ }
1479
+
1480
+ @font-face {
1481
+ font-family: 'yeager';
1482
+ font-weight: 400;
1483
+ font-style: normal;
1484
+ font-display: swap;
1485
+ size-adjust: 100%;
1486
+ src: url(https://cdn.digo-labs.com/fonts/yeager.otf) format('opentype');
1487
+ }
1488
+
1489
+ @font-face {
1490
+ font-family: 'disket';
1491
+ font-style: normal;
1492
+ font-weight: 400;
1493
+ font-display: swap;
1494
+ size-adjust: 100%;
1495
+ src: url(https://cdn.digo-labs.com/fonts/disket.ttf) format('truetype');
1496
+ }
1497
+
1498
+ @font-face {
1499
+ font-family: 'heming';
1500
+ font-style: normal;
1501
+ font-weight: 400;
1502
+ font-display: swap;
1503
+ size-adjust: 100%;
1504
+ src: url(https://cdn.digo-labs.com/fonts/heming.ttf) format('truetype');
1505
+ }
1506
+
1507
+ @font-face {
1508
+ font-family: 'obrazec';
1509
+ font-style: normal;
1510
+ font-weight: 400;
1511
+ font-display: swap;
1512
+ size-adjust: 100%;
1513
+ src: url(https://cdn.digo-labs.com/fonts/obrazec.ttf) format('truetype');
1514
+ }
1515
+
1516
+ }
1517
+
1518
+ @layer utilities {
1519
+ * {
1520
+ scrollbar-width: thin;
1521
+ scrollbar-color: #ffffff50 transparent;
1522
+ }
1523
+ }
1524
+
1525
+ @layer base {
1526
+ ::selection {
1527
+ background-color: var(--color-neutral-12);
1528
+ color: var(--color-neutral-1);
1529
+ }
1530
+
1531
+ ::-moz-selection {
1532
+ background-color: var(--color-neutral-12);
1533
+ color: var(--color-neutral-1);
1534
+ }
1535
+ }`, z = /--font-([\w-]+):\s*'([^']+)'/g, k = /* @__PURE__ */ new Map();
1536
+ let h;
1537
+ for (; (h = z.exec(A)) !== null; ) {
1538
+ const i = `--font-${h[1]}`, o = h[2];
1539
+ k.set(o.toLowerCase(), i);
1540
+ }
1541
+ const C = /@font-face\s*\{[^}]*?font-family:\s*'([^']+)'[^}]*?font-weight:\s*([\d\s]+)[^}]*?font-style:\s*(\w+)[^}]*?src:\s*url\([^)]*?\/fonts\/([^)]+)\)\s*format\('(\w+)'\)[^}]*?\}/gs, v = [];
1542
+ let g;
1543
+ for (; (g = C.exec(A)) !== null; ) {
1544
+ const i = g[1], o = g[2].trim(), e = g[3], t = g[4], c = g[5] === "truetype" ? "ttf" : "otf", a = o.split(/\s+/).map(Number), r = Math.min(...a), s = Math.max(...a);
1545
+ v.push({
1546
+ family: i,
1547
+ weightMin: r,
1548
+ weightMax: s,
1549
+ style: e,
1550
+ format: c,
1551
+ filePath: `/fonts/${t}`,
1552
+ fileName: t,
1553
+ cssVariable: k.get(i.toLowerCase()) ?? null
1554
+ });
1555
+ }
1556
+ v.sort((i, o) => i.family.localeCompare(o.family));
1557
+ const ao = v, ro = {
1558
+ digoLogo: "https://cdn.digo-labs.com/images/digo-logo.png",
1559
+ digoLogoSvg: "https://cdn.digo-labs.com/images/digo-logo.svg",
1560
+ pcLogoV1Svg: "https://cdn.digo-labs.com/images/pc-logo-v1.svg",
1561
+ pcLogo3d: "https://cdn.digo-labs.com/images/pc-logo-3d.png",
1562
+ userPlaceholder: "https://cdn.digo-labs.com/images/user-placeholder.png"
1563
+ }, so = {};
1564
+ class lo {
1565
+ static setValue(o, e) {
1566
+ sessionStorage.setItem(o, JSON.stringify(e));
1567
+ }
1568
+ static loadValue(o, e) {
1569
+ const t = sessionStorage.getItem(o);
1570
+ if (!t || t === "undefined")
1571
+ return e;
1572
+ try {
1573
+ return JSON.parse(t);
1574
+ } catch {
1575
+ return e;
1576
+ }
1577
+ }
1578
+ }
1579
+ const go = {
1580
+ aiText: "text",
1581
+ dmxSend: "dmx-send",
1582
+ storagePresignUpload: "storage-presign-upload",
1583
+ storagePresignDownload: "storage-presign-download",
1584
+ storageList: "storage-list",
1585
+ storageDelete: "storage-delete",
1586
+ databaseGetAll: "database-get-all",
1587
+ databaseGet: "database-get",
1588
+ databaseGetBy: "database-get-by",
1589
+ databaseCreate: "database-create",
1590
+ databaseUpdate: "database-update",
1591
+ databaseDelete: "database-delete"
1592
+ };
1593
+ class uo {
1594
+ static hashCode(o) {
1595
+ return [...o].reduce(
1596
+ (e, t) => Math.imul(31, e) + t.charCodeAt(0) | 0,
1597
+ 0
1598
+ );
1599
+ }
1600
+ static compress(o) {
1601
+ return d.compress(o);
1602
+ }
1603
+ static compressToBase64(o) {
1604
+ return d.compressToBase64(o);
1605
+ }
1606
+ static compressToUint8Array(o) {
1607
+ return d.compressToUint8Array(o);
1608
+ }
1609
+ static decompress(o) {
1610
+ return d.decompress(o);
1611
+ }
1612
+ static decompressFromBase64(o) {
1613
+ return d.decompressFromBase64(o);
1614
+ }
1615
+ static decompressFromUint8Array(o) {
1616
+ return d.decompressFromUint8Array(o);
1617
+ }
1618
+ static blobToBase64(o) {
1619
+ return N(o);
1620
+ }
1621
+ static base64ToBlob(o) {
1622
+ return T(o);
1623
+ }
1624
+ static getFirstLetter(o) {
1625
+ return o ? o.charAt(0).toUpperCase() : "X";
1626
+ }
1627
+ }
1628
+ const po = {
1629
+ digo: "Digo",
1630
+ refresh: "Refresh",
1631
+ code: "Code",
1632
+ score: "Score",
1633
+ preview: "Preview",
1634
+ weights: "Weights",
1635
+ examples: "Examples",
1636
+ typography: "Typography",
1637
+ sizes: "Sizes",
1638
+ icons: "Icons",
1639
+ neutral: "Neutral",
1640
+ info: "Info",
1641
+ selected: "Selected",
1642
+ noneSelected: "None selected",
1643
+ highlights: "Highlights",
1644
+ shadows: "Shadows",
1645
+ color: "Color",
1646
+ untitled: "Untitled",
1647
+ columns: "Columns",
1648
+ save: "Save",
1649
+ accent: "Accent",
1650
+ applying: "Applying",
1651
+ viewing: "Viewing",
1652
+ clearMessages: "Clear messages",
1653
+ clearNextMessages: "Clear next messages",
1654
+ apply: "Apply",
1655
+ import: "Import",
1656
+ search: "Search...",
1657
+ where: "Where",
1658
+ noTimeArray: "No time array",
1659
+ success: "Success",
1660
+ error: "Error",
1661
+ warning: "Warning",
1662
+ attach: "Attach",
1663
+ attachImage: "Attach Image",
1664
+ actions: "Actions",
1665
+ addNewColumn: "Add new column",
1666
+ addNewRow: "Add new row",
1667
+ addFilter: "Add filter",
1668
+ addSort: "Add sort",
1669
+ applySorting: "Apply sorting",
1670
+ applyFilters: "Apply filters",
1671
+ filter: "Filter",
1672
+ sort: "Sort",
1673
+ resetFilters: "Reset filters",
1674
+ resetSorting: "Reset sorting",
1675
+ description: "Description",
1676
+ name: "Name",
1677
+ loremIpsumSmall: "Lorem ipsum dolor sit amet.",
1678
+ loremIpsumMedium: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec purus ac libero vehicula ultricies.",
1679
+ loremIpsumLong: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam nec purus ac libero vehicula ultricies. Nulla facilisi. Sed nec nisl in turpis tincidunt tincidunt. Nulla facilisi. Sed nec nisl in turpis tincidunt tincidunt.",
1680
+ selectAgent: "Select Agent",
1681
+ selectModel: "Select Model",
1682
+ sendPrompt: "Send Prompt",
1683
+ view: "View",
1684
+ toggleColumns: "Toggle columns",
1685
+ toggleOpen: "Toggle open",
1686
+ reset: "Reset",
1687
+ noResultsFound: "No results found.",
1688
+ clearFilters: "Clear filters",
1689
+ rowsPerPage: "Rows per page",
1690
+ id: "Id",
1691
+ noSortsTitle: "No sorts apply to this view",
1692
+ noSortsDescription: "Add a column below to sort the view",
1693
+ noFiltersTitle: "No filters apply to this view",
1694
+ noFiltersDescription: "Add a column below to filter the view",
1695
+ defaultValue: "Default value",
1696
+ default: "Default",
1697
+ stepDuration: "Step duration (ms)",
1698
+ min: "Min",
1699
+ max: "Max",
1700
+ icon: "Icon",
1701
+ step: "Step",
1702
+ decimals: "Decimals",
1703
+ units: "Units",
1704
+ play: "Play",
1705
+ pause: "Pause",
1706
+ next: "Next",
1707
+ previous: "Previous",
1708
+ loop: "Loop",
1709
+ rewind: "Rewind",
1710
+ forward: "Forward",
1711
+ start: "Start",
1712
+ emptyCode: "Select a file to view its content",
1713
+ generate: "Generate",
1714
+ savePreset: "Save Preset",
1715
+ image: "Image"
1716
+ }, j = [
1717
+ {
1718
+ id: "us.anthropic.claude-haiku-4-5-20251001-v1:0",
1719
+ provider: "Anthropic",
1720
+ name: "Claude Haiku",
1721
+ version: "4.5",
1722
+ description: "Fastest and cheapest, good for short replies."
1723
+ },
1724
+ {
1725
+ id: "us.anthropic.claude-sonnet-4-6",
1726
+ provider: "Anthropic",
1727
+ name: "Claude Sonnet",
1728
+ version: "4.6",
1729
+ description: "Balanced quality and speed for most tasks."
1730
+ },
1731
+ {
1732
+ id: "us.anthropic.claude-opus-4-7",
1733
+ provider: "Anthropic",
1734
+ name: "Claude Opus",
1735
+ version: "4.7",
1736
+ description: "Highest quality, slower and more expensive."
1737
+ },
1738
+ {
1739
+ id: "us.amazon.nova-micro-v1:0",
1740
+ provider: "Amazon",
1741
+ name: "Nova Micro",
1742
+ version: "1",
1743
+ description: "Text-only, extremely fast and cheap."
1744
+ },
1745
+ {
1746
+ id: "us.amazon.nova-lite-v1:0",
1747
+ provider: "Amazon",
1748
+ name: "Nova Lite",
1749
+ version: "1",
1750
+ description: "Fast multimodal with image and video input."
1751
+ },
1752
+ {
1753
+ id: "us.amazon.nova-pro-v1:0",
1754
+ provider: "Amazon",
1755
+ name: "Nova Pro",
1756
+ version: "1",
1757
+ description: "Higher-quality multimodal, slower than Lite."
1758
+ }
1759
+ ], yo = j[0].id, B = n.object({
1760
+ type: n.literal("text"),
1761
+ text: n.string()
1762
+ }), R = n.object({
1763
+ type: n.literal("image"),
1764
+ source: n.object({
1765
+ base64: n.string(),
1766
+ mediaType: n.string()
1767
+ })
1768
+ }), L = n.union([
1769
+ n.string(),
1770
+ n.array(n.union([B, R]))
1771
+ ]), E = n.object({
1772
+ role: n.enum(["user", "assistant"]),
1773
+ content: L
1774
+ }), fo = n.object({
1775
+ model: n.string().optional(),
1776
+ messages: n.array(E).min(1),
1777
+ systemPrompt: n.string().optional(),
1778
+ temperature: n.number().min(0).max(2).optional(),
1779
+ maxTokens: n.number().int().positive().optional(),
1780
+ stopSequences: n.array(n.string()).optional(),
1781
+ providerOptions: n.record(n.string(), n.record(n.string(), n.any())).optional()
1782
+ }), mo = n.object({
1783
+ channel: n.number().int().min(1).max(512),
1784
+ value: n.number().int().min(0).max(255)
1785
+ }), ho = n.object({
1786
+ success: n.boolean()
1787
+ }), l = n.string().min(1), f = n.union([n.string(), n.number(), n.boolean(), n.null()]), u = n.record(n.string(), n.unknown()), bo = n.object({
1788
+ table: l,
1789
+ limit: n.number().int().positive().optional(),
1790
+ offset: n.number().int().nonnegative().optional()
1791
+ }), wo = n.object({
1792
+ rows: n.array(u)
1793
+ }), vo = n.object({
1794
+ table: l,
1795
+ pk: l,
1796
+ value: f
1797
+ }), xo = n.object({
1798
+ row: u.nullable()
1799
+ }), Ao = n.object({
1800
+ table: l,
1801
+ column: l,
1802
+ value: f
1803
+ }), ko = n.object({
1804
+ rows: n.array(u)
1805
+ }), So = n.object({
1806
+ table: l,
1807
+ record: u
1808
+ }), Mo = n.object({
1809
+ row: u
1810
+ }), Fo = n.object({
1811
+ table: l,
1812
+ pk: l,
1813
+ value: f,
1814
+ changes: u
1815
+ }), Io = n.object({
1816
+ success: n.boolean()
1817
+ }), No = n.object({
1818
+ table: l,
1819
+ pk: l,
1820
+ value: f
1821
+ }), To = n.object({
1822
+ success: n.boolean()
1823
+ }), Uo = n.object({
1824
+ mediaType: n.string(),
1825
+ base64: n.string()
1826
+ }), Do = n.object({
1827
+ mediaType: n.string(),
1828
+ base64: n.string()
1829
+ }), zo = n.string().regex(/^\d+x\d+$/).transform((i) => i), Co = n.string().regex(/^\d+:\d+$/).transform((i) => i), jo = n.object({
1830
+ bucket: n.string().min(1),
1831
+ path: n.string().min(1),
1832
+ contentType: n.string().min(1),
1833
+ expiresIn: n.number().int().positive().max(604800).optional()
1834
+ }), P = n.object({
1835
+ url: n.string().url(),
1836
+ expiresAt: n.number()
1837
+ }), Bo = n.object({
1838
+ bucket: n.string().min(1),
1839
+ path: n.string().min(1),
1840
+ expiresIn: n.number().int().positive().max(604800).optional()
1841
+ }), Ro = P, Lo = n.object({
1842
+ bucket: n.string().min(1),
1843
+ prefix: n.string().optional(),
1844
+ limit: n.number().int().positive().max(1e3).optional()
1845
+ }), O = n.object({
1846
+ key: n.string(),
1847
+ size: n.number(),
1848
+ lastModified: n.string(),
1849
+ etag: n.string().optional()
1850
+ }), Eo = n.object({
1851
+ objects: n.array(O)
1852
+ }), Po = n.object({
1853
+ bucket: n.string().min(1),
1854
+ paths: n.array(n.string().min(1)).min(1)
1855
+ }), Oo = n.object({
1856
+ success: n.boolean(),
1857
+ deleted: n.array(n.string())
1858
+ });
1859
+ var _ = /* @__PURE__ */ ((i) => (i.ANIMATED_FILM = "3D_ANIMATED_FAMILY_FILM", i.FLAT_VECTOR_ILLUSTRATION = "FLAT_VECTOR_ILLUSTRATION", i.GRAPHIC_NOVEL_ILLUSTRATION = "GRAPHIC_NOVEL_ILLUSTRATION", i.MAXIMALISM = "MAXIMALISM", i.MIDCENTURY_RETRO = "MIDCENTURY_RETRO", i.PHOTOREALISM = "PHOTOREALISM", i.SOFT_DIGITAL_PAINTING = "SOFT_DIGITAL_PAINTING", i))(_ || {}), G = /* @__PURE__ */ ((i) => (i.IDENTIFY = "IDENTIFY", i.SUBSCRIBE = "SUBSCRIBE", i.UNSUBSCRIBE = "UNSUBSCRIBE", i.MESSAGE = "MESSAGE", i.STATE = "STATE", i))(G || {}), q = /* @__PURE__ */ ((i) => (i.MESSAGE = "MESSAGE", i.STATE = "STATE", i))(q || {});
1860
+ const _o = "_hub";
1861
+ var V = /* @__PURE__ */ ((i) => (i.CONNECT = "CONNECT", i.DISCONNECT = "DISCONNECT", i.SUBSCRIBE = "SUBSCRIBE", i.UNSUBSCRIBE = "UNSUBSCRIBE", i.MESSAGE = "MESSAGE", i.STATE = "STATE", i))(V || {});
1862
+ const Go = {
1863
+ pcLogo3D: "https://cdn.digo-labs.com/videos/pc-logo-3d.mp4"
1864
+ }, qo = {
1865
+ aalto: "https://cdn.digo-labs.com/fonts/aalto.otf",
1866
+ being: "https://cdn.digo-labs.com/fonts/being.otf",
1867
+ benzol: "https://cdn.digo-labs.com/fonts/benzol.otf",
1868
+ clashGrotesk: "https://cdn.digo-labs.com/fonts/clash-grotesk-variable.ttf",
1869
+ digital7Mono: "https://cdn.digo-labs.com/fonts/digital-7-mono.ttf",
1870
+ disket: "https://cdn.digo-labs.com/fonts/disket.ttf",
1871
+ generalSans: "https://cdn.digo-labs.com/fonts/general-sans.ttf",
1872
+ half: "https://cdn.digo-labs.com/fonts/half.otf",
1873
+ heming: "https://cdn.digo-labs.com/fonts/heming.ttf",
1874
+ humane: "https://cdn.digo-labs.com/fonts/humane-variable.ttf",
1875
+ jersey10: "https://cdn.digo-labs.com/fonts/jersey-10-regular.ttf",
1876
+ karmaticArcade: "https://cdn.digo-labs.com/fonts/karmatic-arcade-regular.ttf",
1877
+ kodeMono: "https://cdn.digo-labs.com/fonts/kode-mono-vf.ttf",
1878
+ miratrix: "https://cdn.digo-labs.com/fonts/miratrix.otf",
1879
+ nippo: "https://cdn.digo-labs.com/fonts/nippo.ttf",
1880
+ obrazec: "https://cdn.digo-labs.com/fonts/obrazec.otf",
1881
+ pixelony: "https://cdn.digo-labs.com/fonts/pixelony.ttf",
1882
+ triakis: "https://cdn.digo-labs.com/fonts/triakis.otf",
1883
+ unknown: "https://cdn.digo-labs.com/fonts/unknown.otf",
1884
+ yeager: "https://cdn.digo-labs.com/fonts/yeager.otf",
1885
+ geist: "https://cdn.digo-labs.com/fonts/geist.ttf",
1886
+ geistMono: "https://cdn.digo-labs.com/fonts/geist-mono.ttf"
1887
+ };
1888
+ async function $(i) {
1889
+ try {
1890
+ return [await i, null];
1891
+ } catch (o) {
1892
+ return [null, o];
1893
+ }
1894
+ }
1895
+ function Vo(...i) {
1896
+ return D(U(i));
1897
+ }
1898
+ const $o = [
1899
+ "New York",
1900
+ "Tokyo",
1901
+ "Paris",
1902
+ "London",
1903
+ "Barcelona",
1904
+ "Berlin",
1905
+ "Amsterdam",
1906
+ "Sydney",
1907
+ "São Paulo",
1908
+ "Mumbai",
1909
+ "Dubai",
1910
+ "Singapore",
1911
+ "Hong Kong",
1912
+ "Rome",
1913
+ "Vienna",
1914
+ "Prague",
1915
+ "Lisbon",
1916
+ "Stockholm",
1917
+ "Seoul",
1918
+ "Istanbul",
1919
+ "Buenos Aires",
1920
+ "Cairo",
1921
+ "Mexico City",
1922
+ "Oslo",
1923
+ "Zürich"
1924
+ ], Xo = [
1925
+ "The quick brown fox jumps over the lazy dog.",
1926
+ "Pack my box with five dozen liquor jugs.",
1927
+ "How vexingly quick daft zebras jump.",
1928
+ "Sphinx of black quartz, judge my vow.",
1929
+ "The five boxing wizards jump quickly.",
1930
+ "Bright vixens jump dozing fowl quack.",
1931
+ "Jackdaws love my big sphinx of quartz.",
1932
+ "Sixty zippers were quickly picked from the woven jute bag.",
1933
+ "We promptly judged antique ivory buckles for the next prize.",
1934
+ "A mad boxer shot a quick, gloved jab to the jaw of his dizzy opponent."
1935
+ ], Ho = {
1936
+ monorepo: {
1937
+ trustedOrigins: [
1938
+ "http://localhost:2000",
1939
+ "https://*.digo-labs.com"
1940
+ ]
1941
+ }
1942
+ };
1943
+ export {
1944
+ io as AI_MODELS,
1945
+ Ho as AUTH_PROJECTS,
1946
+ eo as AWS_DEFAULT_REGION,
1947
+ no as BACKEND_URL,
1948
+ j as BEDROCK_MODELS,
1949
+ _ as BedrockStyle,
1950
+ $o as CITIES,
1951
+ b as CommonHelpers,
1952
+ yo as DEFAULT_TEXT_MODEL,
1953
+ Xo as EXCERPTS,
1954
+ qo as FONTS,
1955
+ ao as FONT_FACES,
1956
+ ro as IMAGES,
1957
+ co as IconHelpers,
1958
+ to as LANGUAGE_MAP,
1959
+ lo as LocalStorage,
1960
+ so as MODELS,
1961
+ go as ROUTES,
1962
+ po as STRINGS,
1963
+ uo as StringHelpers,
1964
+ Go as VIDEOS,
1965
+ _o as WEBSOCKET_HUB_CHANNEL,
1966
+ q as WebSocketHubEvent,
1967
+ G as WebsocketClientEvent,
1968
+ V as WebsocketLogEvent,
1969
+ Co as aspectRatioSchema,
1970
+ Vo as cn,
1971
+ So as databaseCreateBodySchema,
1972
+ Mo as databaseCreateResponseSchema,
1973
+ No as databaseDeleteBodySchema,
1974
+ To as databaseDeleteResponseSchema,
1975
+ bo as databaseGetAllBodySchema,
1976
+ wo as databaseGetAllResponseSchema,
1977
+ vo as databaseGetBodySchema,
1978
+ Ao as databaseGetByBodySchema,
1979
+ ko as databaseGetByResponseSchema,
1980
+ xo as databaseGetResponseSchema,
1981
+ Fo as databaseUpdateBodySchema,
1982
+ Io as databaseUpdateResponseSchema,
1983
+ Po as deleteBodySchema,
1984
+ Oo as deleteResponseSchema,
1985
+ mo as dmxSendBodySchema,
1986
+ ho as dmxSendResponseSchema,
1987
+ Uo as filePayloadSchema,
1988
+ Do as imagePayloadSchema,
1989
+ Lo as listBodySchema,
1990
+ Eo as listResponseSchema,
1991
+ Bo as presignDownloadBodySchema,
1992
+ Ro as presignDownloadResponseSchema,
1993
+ jo as presignUploadBodySchema,
1994
+ P as presignUploadResponseSchema,
1995
+ zo as sizeFormattedSchema,
1996
+ O as storageObjectSchema,
1997
+ fo as textBodySchema,
1998
+ E as textMessageSchema,
1999
+ $ as tryCatch
2000
+ };
2001
+ //# sourceMappingURL=index.js.map