@luminescent/ui-qwik 6.4.19 → 6.4.20

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.
Files changed (2) hide show
  1. package/lib/index.qwik.cjs +1568 -0
  2. package/package.json +2 -2
@@ -0,0 +1,1568 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
4
+ const qwik = require("@builder.io/qwik");
5
+ const Link = qwik.component$(({ size, ...props }) => {
6
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ width: size,
9
+ height: size,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ stroke: "currentColor",
13
+ "stroke-width": "2",
14
+ "stroke-linecap": "round",
15
+ "stroke-linejoin": "round",
16
+ class: "lucide lucide-link2-icon lucide-link-2",
17
+ ...props,
18
+ children: [
19
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
20
+ d: "M9 17H7A5 5 0 0 1 7 7h2"
21
+ }),
22
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
23
+ d: "M15 7h2a5 5 0 1 1 0 10h-2"
24
+ }),
25
+ /* @__PURE__ */ jsxRuntime.jsx("line", {
26
+ x1: "8",
27
+ x2: "16",
28
+ y1: "12",
29
+ y2: "12"
30
+ })
31
+ ]
32
+ });
33
+ });
34
+ const Anchor = qwik.component$(({ id, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("div", {
35
+ ...props,
36
+ class: {
37
+ "group flex items-center gap-2 scroll-mt-32": true,
38
+ ...props.class
39
+ },
40
+ children: [
41
+ /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {}),
42
+ id && /* @__PURE__ */ jsxRuntime.jsx("a", {
43
+ href: `#${id}`,
44
+ onClick$: async () => {
45
+ await navigator.clipboard.writeText(window.location.href);
46
+ },
47
+ children: /* @__PURE__ */ jsxRuntime.jsx(Link, {
48
+ class: "opacity-10 transition-opacity duration-300 group-hover:opacity-100 group-hover:duration-75",
49
+ size: 20
50
+ })
51
+ })
52
+ ]
53
+ }));
54
+ const blobColorClasses = {
55
+ slate: [
56
+ "bg-slate-400",
57
+ "bg-slate-500",
58
+ "bg-slate-600"
59
+ ],
60
+ gray: [
61
+ "bg-gray-400",
62
+ "bg-gray-500",
63
+ "bg-gray-600"
64
+ ],
65
+ darkgray: [
66
+ "bg-gray-500",
67
+ "bg-gray-600",
68
+ "bg-gray-700"
69
+ ],
70
+ darkergray: [
71
+ "bg-gray-600",
72
+ "bg-gray-700",
73
+ "bg-gray-800"
74
+ ],
75
+ zinc: [
76
+ "bg-zinc-400",
77
+ "bg-zinc-500",
78
+ "bg-zinc-600"
79
+ ],
80
+ neutral: [
81
+ "bg-neutral-400",
82
+ "bg-neutral-500",
83
+ "bg-neutral-600"
84
+ ],
85
+ stone: [
86
+ "bg-stone-400",
87
+ "bg-stone-500",
88
+ "bg-stone-600"
89
+ ],
90
+ red: [
91
+ "bg-red-400",
92
+ "bg-red-500",
93
+ "bg-red-600"
94
+ ],
95
+ orange: [
96
+ "bg-orange-400",
97
+ "bg-orange-500",
98
+ "bg-orange-600"
99
+ ],
100
+ amber: [
101
+ "bg-amber-400",
102
+ "bg-amber-500",
103
+ "bg-amber-600"
104
+ ],
105
+ yellow: [
106
+ "bg-yellow-400",
107
+ "bg-yellow-500",
108
+ "bg-yellow-600"
109
+ ],
110
+ lime: [
111
+ "bg-lime-400",
112
+ "bg-lime-500",
113
+ "bg-lime-600"
114
+ ],
115
+ green: [
116
+ "bg-green-400",
117
+ "bg-green-500",
118
+ "bg-green-600"
119
+ ],
120
+ emerald: [
121
+ "bg-emerald-400",
122
+ "bg-emerald-500",
123
+ "bg-emerald-600"
124
+ ],
125
+ teal: [
126
+ "bg-teal-400",
127
+ "bg-teal-500",
128
+ "bg-teal-600"
129
+ ],
130
+ cyan: [
131
+ "bg-cyan-400",
132
+ "bg-cyan-500",
133
+ "bg-cyan-600"
134
+ ],
135
+ sky: [
136
+ "bg-sky-400",
137
+ "bg-sky-500",
138
+ "bg-sky-600"
139
+ ],
140
+ blue: [
141
+ "bg-blue-400",
142
+ "bg-blue-500",
143
+ "bg-blue-600"
144
+ ],
145
+ indigo: [
146
+ "bg-indigo-400",
147
+ "bg-indigo-500",
148
+ "bg-indigo-600"
149
+ ],
150
+ violet: [
151
+ "bg-violet-400",
152
+ "bg-violet-500",
153
+ "bg-violet-600"
154
+ ],
155
+ purple: [
156
+ "bg-purple-400",
157
+ "bg-purple-500",
158
+ "bg-purple-600"
159
+ ],
160
+ fuchsia: [
161
+ "bg-fuchsia-400",
162
+ "bg-fuchsia-500",
163
+ "bg-fuchsia-600"
164
+ ],
165
+ pink: [
166
+ "bg-pink-400",
167
+ "bg-pink-500",
168
+ "bg-pink-600"
169
+ ],
170
+ rose: [
171
+ "bg-rose-400",
172
+ "bg-rose-500",
173
+ "bg-rose-600"
174
+ ]
175
+ };
176
+ const blobClasses = [
177
+ "animate-blob",
178
+ "animate-blob1",
179
+ "animate-blob2",
180
+ "animate-blob3",
181
+ "animate-blob4",
182
+ "animate-blob5",
183
+ "animate-blob6"
184
+ ];
185
+ const Blobs = qwik.component$(({ color = "darkgray", blur = "xl", ...props }) => {
186
+ const blob = Math.round(Math.random() * 6);
187
+ const colorClass = typeof color == "string" ? blobColorClasses[color] : color;
188
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", {
189
+ class: {
190
+ "animate-in fade-in anim-duration-[2s] absolute inset-0 transition-all motion-reduce:hidden": true,
191
+ ...props.class
192
+ },
193
+ style: {
194
+ containerType: "size",
195
+ ...props.style
196
+ },
197
+ children: [
198
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
199
+ class: {
200
+ "absolute top-0 h-[30cqw] w-[30cqw] rounded-full opacity-20 ease-in-out": true,
201
+ "blur-xs": blur === "xs",
202
+ "blur-sm": blur === "sm",
203
+ "blur-md": blur === "md",
204
+ "blur-lg": blur === "lg",
205
+ "blur-xl": blur === "xl",
206
+ [blobClasses[blob]]: true,
207
+ [colorClass[0]]: true
208
+ }
209
+ }),
210
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
211
+ class: {
212
+ "absolute top-0 h-[30cqw] w-[30cqw] rounded-full opacity-20 ease-in-out": true,
213
+ "blur-xs": blur === "xs",
214
+ "blur-sm": blur === "sm",
215
+ "blur-md": blur === "md",
216
+ "blur-lg": blur === "lg",
217
+ "blur-xl": blur === "xl",
218
+ "anim-delay-[-5s]": true,
219
+ [blobClasses[blob]]: true,
220
+ [colorClass[1]]: true
221
+ }
222
+ }),
223
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
224
+ class: {
225
+ "absolute top-0 h-[30cqw] w-[30cqw] rounded-full opacity-20 ease-in-out": true,
226
+ "blur-xs": blur === "xs",
227
+ "blur-sm": blur === "sm",
228
+ "blur-md": blur === "md",
229
+ "blur-lg": blur === "lg",
230
+ "blur-xl": blur === "xl",
231
+ "anim-delay-[-10s]": true,
232
+ [blobClasses[blob]]: true,
233
+ [colorClass[2]]: true
234
+ }
235
+ })
236
+ ]
237
+ });
238
+ });
239
+ const clamp = (value, min, max) => Math.min(Math.max(value, min), max);
240
+ function getMousePosition(e) {
241
+ if (window.TouchEvent && e instanceof TouchEvent) {
242
+ const touch = e.touches[0];
243
+ return {
244
+ x: touch.clientX,
245
+ y: touch.clientY
246
+ };
247
+ }
248
+ const mouse = e;
249
+ return {
250
+ x: mouse.clientX,
251
+ y: mouse.clientY
252
+ };
253
+ }
254
+ const pad2 = (c) => c.length == 1 ? "0" + c : "" + c;
255
+ function getBrightness(color) {
256
+ const { r, g, b } = color;
257
+ return (r * 299 + g * 587 + b * 114) / 1e3;
258
+ }
259
+ function hexNumberToRgb(color) {
260
+ const r = (color >> 16 & 255) / 255;
261
+ const g = (color >> 8 & 255) / 255;
262
+ const b = (color & 255) / 255;
263
+ return {
264
+ r,
265
+ g,
266
+ b
267
+ };
268
+ }
269
+ function rgbToHex(color) {
270
+ const { r, g, b } = color;
271
+ const hex = [
272
+ "#",
273
+ pad2(Math.round(r * 255).toString(16)),
274
+ pad2(Math.round(g * 255).toString(16)),
275
+ pad2(Math.round(b * 255).toString(16))
276
+ ];
277
+ return hex.join("").toUpperCase();
278
+ }
279
+ const hexStringToNumber = (color) => parseInt(color.replace("#", ""), 16);
280
+ function hsvToRgb(color) {
281
+ let { h } = color;
282
+ const { s, v } = color;
283
+ h *= 6;
284
+ const i = Math.floor(h);
285
+ const f = h - i;
286
+ const p = v * (1 - s);
287
+ const q = v * (1 - f * s);
288
+ const t = v * (1 - (1 - f) * s);
289
+ const mod = i % 6;
290
+ const r = [
291
+ v,
292
+ q,
293
+ p,
294
+ p,
295
+ t,
296
+ v
297
+ ][mod];
298
+ const g = [
299
+ t,
300
+ v,
301
+ v,
302
+ q,
303
+ p,
304
+ p
305
+ ][mod];
306
+ const b = [
307
+ p,
308
+ p,
309
+ t,
310
+ v,
311
+ v,
312
+ q
313
+ ][mod];
314
+ return {
315
+ r,
316
+ g,
317
+ b
318
+ };
319
+ }
320
+ function rgbToHsv(color) {
321
+ const { r, g, b } = color;
322
+ const max = Math.max(r, g, b);
323
+ const min = Math.min(r, g, b);
324
+ const d = max - min;
325
+ const s = max === 0 ? 0 : d / max;
326
+ const v = max;
327
+ let h = 0;
328
+ if (max != min) {
329
+ switch (max) {
330
+ case r:
331
+ h = (g - b) / d + (g < b ? 6 : 0);
332
+ break;
333
+ case g:
334
+ h = (b - r) / d + 2;
335
+ break;
336
+ case b:
337
+ h = (r - g) / d + 4;
338
+ break;
339
+ }
340
+ h /= 6;
341
+ }
342
+ return {
343
+ h,
344
+ s,
345
+ v
346
+ };
347
+ }
348
+ const Shuffle = qwik.component$(({ size, ...props }) => {
349
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
350
+ xmlns: "http://www.w3.org/2000/svg",
351
+ width: size,
352
+ height: size,
353
+ viewBox: "0 0 24 24",
354
+ fill: "none",
355
+ stroke: "currentColor",
356
+ "stroke-width": "2",
357
+ "stroke-linecap": "round",
358
+ "stroke-linejoin": "round",
359
+ class: "lucide lucide-shuffle-icon lucide-shuffle",
360
+ ...props,
361
+ children: [
362
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
363
+ d: "m18 14 4 4-4 4"
364
+ }),
365
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
366
+ d: "m18 2 4 4-4 4"
367
+ }),
368
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
369
+ d: "M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22"
370
+ }),
371
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
372
+ d: "M2 6h1.972a4 4 0 0 1 3.6 2.2"
373
+ }),
374
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
375
+ d: "M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45"
376
+ })
377
+ ]
378
+ });
379
+ });
380
+ const ColorPicker = qwik.component$(({ id, value = "#000000", colors = [
381
+ "#FAEDCB",
382
+ "#C9E4DE",
383
+ "#C6DEF1",
384
+ "#DBCDF0",
385
+ "#F2C6DE",
386
+ "#FCD05C",
387
+ "#5FE2C5",
388
+ "#4498DB",
389
+ "#9863E7",
390
+ "#E43A96",
391
+ "#000000",
392
+ "#555555",
393
+ "#AAAAAA",
394
+ "#FFFFFF"
395
+ ], onInput$, preview = "left", horizontal, showInput = true, ...props }) => {
396
+ const height = 150;
397
+ const width = height - 25;
398
+ const maxHue = height - 2;
399
+ const hsvColor = rgbToHsv(hexNumberToRgb(hexStringToNumber(value)));
400
+ const store = qwik.useStore({
401
+ hue: {
402
+ position: hsvColor.h * maxHue,
403
+ color: rgbToHex(hsvToRgb({
404
+ h: hsvColor.h,
405
+ s: 1,
406
+ v: 1
407
+ }))
408
+ },
409
+ bPosition: (1 - hsvColor.v) * maxHue,
410
+ sPosition: hsvColor.s * width,
411
+ value
412
+ });
413
+ const setColor = qwik.$(async (color) => {
414
+ if (!color.match(/^#[0-9A-F]{6}$/i)) return;
415
+ const number = hexStringToNumber(color);
416
+ const hsv = rgbToHsv(hexNumberToRgb(number));
417
+ store.hue.position = hsv.h * maxHue;
418
+ store.hue.color = rgbToHex(hsvToRgb({
419
+ h: hsv.h,
420
+ s: 1,
421
+ v: 1
422
+ }));
423
+ store.sPosition = hsv.s * width;
424
+ store.bPosition = (1 - hsv.v) * maxHue;
425
+ store.value = color;
426
+ await onInput$?.(store.value);
427
+ });
428
+ const hueChange = qwik.$(async (e, hOffset) => {
429
+ const { y } = getMousePosition(e);
430
+ store.hue.position = clamp(maxHue - (y - hOffset), 0, maxHue);
431
+ const hsvColor2 = rgbToHsv(hexNumberToRgb(hexStringToNumber(store.value)));
432
+ const h = store.hue.position / maxHue;
433
+ hsvColor2.h = h;
434
+ store.hue.color = rgbToHex(hsvToRgb({
435
+ h,
436
+ s: 1,
437
+ v: 1
438
+ }));
439
+ store.value = rgbToHex(hsvToRgb(hsvColor2));
440
+ await onInput$?.(store.value);
441
+ });
442
+ const hueMouseDown = qwik.$(async (e, el) => {
443
+ const hOffset = el.getBoundingClientRect().top;
444
+ await hueChange(e, hOffset);
445
+ const eventListener = (e2) => void hueChange(e2, hOffset);
446
+ window.addEventListener("mousemove", eventListener);
447
+ window.addEventListener("touchmove", eventListener);
448
+ const mouseUpListener = () => {
449
+ window.removeEventListener("mousemove", eventListener);
450
+ window.removeEventListener("touchmove", eventListener);
451
+ window.removeEventListener("mouseup", mouseUpListener);
452
+ window.removeEventListener("touchend", mouseUpListener);
453
+ };
454
+ window.addEventListener("mouseup", mouseUpListener);
455
+ window.addEventListener("touchend", mouseUpListener);
456
+ });
457
+ const sbChange = qwik.$(async (e, hOffset) => {
458
+ const { x, y } = getMousePosition(e);
459
+ store.bPosition = clamp(y - hOffset.top, 0, maxHue);
460
+ store.sPosition = clamp(x - hOffset.left, 0, width);
461
+ const s = store.sPosition / width;
462
+ const v = 1 - store.bPosition / maxHue;
463
+ store.value = rgbToHex(hsvToRgb({
464
+ h: store.hue.position / maxHue,
465
+ s,
466
+ v
467
+ }));
468
+ await onInput$?.(store.value);
469
+ });
470
+ const sbMouseDown = qwik.$(async (e, el) => {
471
+ const offset = el.getBoundingClientRect();
472
+ await sbChange(e, offset);
473
+ const eventListener = (e2) => void sbChange(e2, offset);
474
+ window.addEventListener("mousemove", eventListener);
475
+ window.addEventListener("touchmove", eventListener);
476
+ const mouseUpListener = () => {
477
+ window.removeEventListener("mousemove", eventListener);
478
+ window.removeEventListener("touchmove", eventListener);
479
+ window.removeEventListener("mouseup", mouseUpListener);
480
+ window.removeEventListener("touchend", mouseUpListener);
481
+ };
482
+ window.addEventListener("mouseup", mouseUpListener);
483
+ window.addEventListener("touchend", mouseUpListener);
484
+ });
485
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", {
486
+ class: {
487
+ "lum-card touch-none p-4": true,
488
+ "flex-col": !horizontal,
489
+ ...props.class
490
+ },
491
+ id,
492
+ onInput$: async (e, el) => {
493
+ if (!el.dataset.value) return;
494
+ await setColor(el.dataset.value);
495
+ },
496
+ children: [
497
+ /* @__PURE__ */ jsxRuntime.jsxs("div", {
498
+ class: "flex gap-4",
499
+ children: [
500
+ /* @__PURE__ */ jsxRuntime.jsxs("div", {
501
+ class: "relative h-[150px] w-[125px] rounded-md",
502
+ style: {
503
+ background: `linear-gradient(to right, #FFFFFF, ${store.hue.color})`
504
+ },
505
+ onMouseDown$: sbMouseDown,
506
+ onTouchStart$: sbMouseDown,
507
+ "preventdefault:mousedown": true,
508
+ "preventdefault:touchstart": true,
509
+ children: [
510
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
511
+ class: "h-[150px] w-[125px] rounded-md border border-gray-700 bg-linear-to-b from-transparent to-black"
512
+ }),
513
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
514
+ class: {
515
+ "absolute -top-2 -left-2 h-4 w-4 rounded-md border bg-white": true,
516
+ "border-white": getBrightness(hexNumberToRgb(hexStringToNumber(store.value))) < 0.5,
517
+ "border-black": getBrightness(hexNumberToRgb(hexStringToNumber(store.value))) > 0.5
518
+ },
519
+ style: {
520
+ background: store.value,
521
+ transform: `translate(${store.sPosition}px, ${store.bPosition}px)`
522
+ }
523
+ })
524
+ ]
525
+ }),
526
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
527
+ class: "relative h-[150px] w-2 rounded-md border border-gray-700",
528
+ style: {
529
+ background: "linear-gradient(to bottom, #ff0000, #ff00ff, #0000ff, #00ffff, #00ff00, #ffff00, #ff0000)"
530
+ },
531
+ onMouseDown$: hueMouseDown,
532
+ onTouchStart$: hueMouseDown,
533
+ "preventdefault:mousedown": true,
534
+ "preventdefault:touchstart": true,
535
+ children: /* @__PURE__ */ jsxRuntime.jsx("div", {
536
+ class: "absolute -bottom-2 -left-[5px] h-4 w-4 rounded-md border border-white bg-[#ff0000]",
537
+ style: {
538
+ transform: `translateY(${-store.hue.position}px)`,
539
+ background: store.hue.color
540
+ }
541
+ })
542
+ })
543
+ ]
544
+ }),
545
+ /* @__PURE__ */ jsxRuntime.jsxs("div", {
546
+ class: "flex w-[150px] flex-wrap justify-between gap-1",
547
+ children: [
548
+ showInput && /* @__PURE__ */ jsxRuntime.jsxs("div", {
549
+ class: {
550
+ "mb-2 flex w-[150px] border-b border-b-gray-700 pb-3": true,
551
+ "flex-row gap-1": preview == "left",
552
+ "flex-row-reverse gap-1": preview == "right",
553
+ "flex-col": preview == "top",
554
+ "flex-col-reverse": preview == "bottom"
555
+ },
556
+ children: [
557
+ preview != "full" && /* @__PURE__ */ jsxRuntime.jsx("div", {
558
+ class: {
559
+ "border border-gray-700 rounded-sm": true,
560
+ "aspect-square h-full": preview == "left" || preview == "right",
561
+ "h-3 w-full": preview == "top" || preview == "bottom",
562
+ "rounded-b-none": preview == "top",
563
+ "rounded-t-none": preview == "bottom"
564
+ },
565
+ style: {
566
+ backgroundColor: `${store.value}`
567
+ }
568
+ }),
569
+ /* @__PURE__ */ jsxRuntime.jsx("input", {
570
+ class: {
571
+ "lum-input w-full p-1 text-xs rounded-sm": true,
572
+ "rounded-t-none border-t-0": preview == "top",
573
+ "rounded-b-none border-b-0": preview == "bottom"
574
+ },
575
+ value: store.value,
576
+ style: preview == "full" ? {
577
+ backgroundColor: `${store.value}`,
578
+ color: getBrightness(hexNumberToRgb(hexStringToNumber(store.value))) > 0.5 ? "black" : "white"
579
+ } : {},
580
+ onInput$: async (e, el) => {
581
+ await setColor(el.value);
582
+ }
583
+ })
584
+ ]
585
+ }),
586
+ colors.map((color, i) => {
587
+ return /* @__PURE__ */ jsxRuntime.jsx("button", {
588
+ type: "button",
589
+ name: color,
590
+ class: {
591
+ "lum-btn rounded-sm h-[1.6rem] w-[1.6rem] border-2 border-white/30 p-0 hover:border-white": true
592
+ },
593
+ style: {
594
+ background: color,
595
+ borderColor: color === store.value ? "#ffffff" : void 0
596
+ },
597
+ onClick$: async () => {
598
+ await setColor(color);
599
+ }
600
+ }, i);
601
+ }),
602
+ /* @__PURE__ */ jsxRuntime.jsx("button", {
603
+ type: "button",
604
+ class: "lum-btn rounded-sm h-[1.6rem] w-[1.6rem] p-0.5",
605
+ name: "Randomize",
606
+ onClick$: async () => {
607
+ const color = `#${Math.floor(Math.random() * 16777215).toString(16)}`;
608
+ await setColor(color);
609
+ },
610
+ children: /* @__PURE__ */ jsxRuntime.jsx(Shuffle, {
611
+ class: "p-0.5 pl-0.5 text-lum-text"
612
+ })
613
+ })
614
+ ]
615
+ })
616
+ ]
617
+ });
618
+ });
619
+ const ChevronDown = qwik.component$(({ size, ...props }) => {
620
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", {
621
+ xmlns: "http://www.w3.org/2000/svg",
622
+ width: size,
623
+ height: size,
624
+ viewBox: "0 0 24 24",
625
+ fill: "none",
626
+ stroke: "currentColor",
627
+ "stroke-width": "2",
628
+ "stroke-linecap": "round",
629
+ "stroke-linejoin": "round",
630
+ class: "lucide lucide-chevron-down-icon lucide-chevron-down",
631
+ ...props,
632
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
633
+ d: "m6 9 6 6 6-6"
634
+ })
635
+ });
636
+ });
637
+ const Dropdown = qwik.component$(({ class: Class, hover, opened, ...props }) => {
638
+ return /* @__PURE__ */ jsxRuntime.jsxs("button", {
639
+ type: "button",
640
+ class: {
641
+ "group lum-btn": true,
642
+ ...Class
643
+ },
644
+ ...props,
645
+ children: [
646
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
647
+ class: "flex-1 text-left",
648
+ children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {})
649
+ }),
650
+ /* @__PURE__ */ jsxRuntime.jsx(ChevronDown, {
651
+ size: 16,
652
+ class: {
653
+ "ease-out motion-safe:transition-transform": true,
654
+ "rotate-180 transform": opened,
655
+ "duration-300 group-hover:rotate-180 group-hover:transform group-hover:duration-75": hover,
656
+ "focus-within:rotate-180 focus-within:transform focus-within:duration-75": true
657
+ }
658
+ })
659
+ ]
660
+ });
661
+ });
662
+ const Menu = qwik.component$(({ size, ...props }) => {
663
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
664
+ xmlns: "http://www.w3.org/2000/svg",
665
+ width: size,
666
+ height: size,
667
+ viewBox: "0 0 24 24",
668
+ fill: "none",
669
+ stroke: "currentColor",
670
+ "stroke-width": "2",
671
+ "stroke-linecap": "round",
672
+ "stroke-linejoin": "round",
673
+ class: "lucide lucide-menu-icon lucide-menu",
674
+ ...props,
675
+ children: [
676
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
677
+ d: "M4 12h16"
678
+ }),
679
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
680
+ d: "M4 18h16"
681
+ }),
682
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
683
+ d: "M4 6h16"
684
+ })
685
+ ]
686
+ });
687
+ });
688
+ const Nav = qwik.component$(({ fixed, floating, noblur, nohamburger, nodismiss, colorClass = "lum-bg-lum-card-bg", ...props }) => {
689
+ const menu = qwik.useSignal(false);
690
+ qwik.useTask$(({ track }) => {
691
+ track(() => menu.value);
692
+ if (menu.value && !nodismiss) {
693
+ const onClick = () => {
694
+ menu.value = false;
695
+ window.removeEventListener("click", onClick);
696
+ };
697
+ window.addEventListener("click", onClick);
698
+ }
699
+ });
700
+ return /* @__PURE__ */ jsxRuntime.jsxs("nav", {
701
+ ...props,
702
+ class: {
703
+ "top-0 left-0 z-50 flex w-full flex-col": true,
704
+ fixed,
705
+ absolute: !fixed,
706
+ ...props.class
707
+ },
708
+ children: [
709
+ !nohamburger && /* @__PURE__ */ jsxRuntime.jsx("div", {
710
+ class: {
711
+ "absolute top-full lum-card motion-safe:transition-all sm:hidden max-w-7xl gap-2 px-2 py-4": true,
712
+ "w-[calc(100%-(--spacing(8)))] mx-4": floating,
713
+ "w-[calc(100%-(--spacing(4)))] mx-2": !floating,
714
+ "mt-2": menu.value,
715
+ "pointer-events-none opacity-0 -mt-2 scale-95": !menu.value,
716
+ "backdrop-blur-lg": !noblur,
717
+ [colorClass]: true
718
+ },
719
+ children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
720
+ name: "mobile"
721
+ })
722
+ }),
723
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
724
+ class: {
725
+ [colorClass]: !floating,
726
+ "border-x-0! border-t-0!": !floating,
727
+ "backdrop-blur-lg": !noblur && !floating,
728
+ "relative mx-2 mt-2": floating
729
+ },
730
+ children: /* @__PURE__ */ jsxRuntime.jsxs("div", {
731
+ class: {
732
+ "mx-auto flex w-full max-w-7xl justify-evenly px-2": true,
733
+ [colorClass]: floating,
734
+ "rounded-lum border": floating,
735
+ "backdrop-blur-lg": !noblur && floating
736
+ },
737
+ children: [
738
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
739
+ class: "flex flex-1 items-center justify-start gap-2 py-2",
740
+ children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
741
+ name: "start"
742
+ })
743
+ }),
744
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
745
+ class: "flex flex-1 items-center justify-center gap-2 py-2",
746
+ children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
747
+ name: "center"
748
+ })
749
+ }),
750
+ /* @__PURE__ */ jsxRuntime.jsxs("div", {
751
+ class: "flex flex-1 items-center justify-end gap-2 py-2",
752
+ children: [
753
+ /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
754
+ name: "end"
755
+ }),
756
+ !nohamburger && /* @__PURE__ */ jsxRuntime.jsx("button", {
757
+ name: "Navigation Menu",
758
+ title: "Navigation Menu",
759
+ class: "lum-btn lum-bg-transparent p-2 sm:hidden rounded-lum-2",
760
+ onClick$: () => menu.value = !menu.value,
761
+ children: /* @__PURE__ */ jsxRuntime.jsx(Menu, {
762
+ size: 24
763
+ })
764
+ })
765
+ ]
766
+ })
767
+ ]
768
+ })
769
+ })
770
+ ]
771
+ });
772
+ });
773
+ const Plus = qwik.component$(({ size, ...props }) => {
774
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
775
+ xmlns: "http://www.w3.org/2000/svg",
776
+ width: size,
777
+ height: size,
778
+ viewBox: "0 0 24 24",
779
+ fill: "none",
780
+ stroke: "currentColor",
781
+ "stroke-width": "2",
782
+ "stroke-linecap": "round",
783
+ "stroke-linejoin": "round",
784
+ class: "lucide lucide-plus-icon lucide-plus",
785
+ ...props,
786
+ children: [
787
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
788
+ d: "M5 12h14"
789
+ }),
790
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
791
+ d: "M12 5v14"
792
+ })
793
+ ]
794
+ });
795
+ });
796
+ const Minus = qwik.component$(({ size, ...props }) => {
797
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", {
798
+ xmlns: "http://www.w3.org/2000/svg",
799
+ width: size,
800
+ height: size,
801
+ viewBox: "0 0 24 24",
802
+ fill: "none",
803
+ stroke: "currentColor",
804
+ "stroke-width": "2",
805
+ "stroke-linecap": "round",
806
+ "stroke-linejoin": "round",
807
+ class: "lucide lucide-minus-icon lucide-minus",
808
+ ...props,
809
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
810
+ d: "M5 12h14"
811
+ })
812
+ });
813
+ });
814
+ const NumberInput = qwik.component$((props) => {
815
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", {
816
+ class: "flex flex-col",
817
+ children: [
818
+ /* @__PURE__ */ jsxRuntime.jsx("label", {
819
+ for: props.id,
820
+ class: "pb-1 text-lum-text select-none",
821
+ children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {})
822
+ }),
823
+ /* @__PURE__ */ jsxRuntime.jsx(NumberInputRaw, {
824
+ ...props,
825
+ children: void 0
826
+ })
827
+ ]
828
+ });
829
+ });
830
+ const NumberInputRaw = qwik.component$(({ input, onDecrement$, onIncrement$, value = 0, step = 1, ...props }) => {
831
+ qwik.useStyles$(`
832
+ input::-webkit-outer-spin-button,
833
+ input::-webkit-inner-spin-button {
834
+ -webkit-appearance: none;
835
+ margin: 0;
836
+ }
837
+ input[type=number] {
838
+ -moz-appearance: textfield;
839
+ }
840
+ `);
841
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", {
842
+ class: {
843
+ "flex touch-manipulation gap-1 text-lum-text": true
844
+ },
845
+ children: [
846
+ /* @__PURE__ */ jsxRuntime.jsx("button", {
847
+ type: "button",
848
+ class: {
849
+ "lum-btn p-2 rounded-r-sm": true
850
+ },
851
+ "data-action": "decrement",
852
+ "aria-label": "Decrement",
853
+ disabled: props.min ? value <= props.min : false,
854
+ onClick$: input ? qwik.$(async (event, element) => {
855
+ const siblingInput = element.nextElementSibling;
856
+ siblingInput.stepDown();
857
+ await onDecrement$(event, element, siblingInput);
858
+ }) : onDecrement$,
859
+ children: /* @__PURE__ */ jsxRuntime.jsx(Minus, {
860
+ size: 20
861
+ })
862
+ }),
863
+ input && /* @__PURE__ */ jsxRuntime.jsx("input", {
864
+ ...props,
865
+ type: "number",
866
+ value,
867
+ step,
868
+ class: {
869
+ "lum-input text-center rounded-sm lum-input-p-1": true,
870
+ ...props.class
871
+ }
872
+ }),
873
+ /* @__PURE__ */ jsxRuntime.jsx("button", {
874
+ type: "button",
875
+ class: {
876
+ "lum-btn p-2 rounded-l-sm": true
877
+ },
878
+ "data-action": "increment",
879
+ "aria-label": "Increment",
880
+ disabled: props.max ? value >= props.max : false,
881
+ onClick$: input ? qwik.$(async (event, element) => {
882
+ const siblingInput = element.previousElementSibling;
883
+ siblingInput.stepUp();
884
+ await onIncrement$(event, element, siblingInput);
885
+ }) : onIncrement$,
886
+ children: /* @__PURE__ */ jsxRuntime.jsx(Plus, {
887
+ size: 20
888
+ })
889
+ })
890
+ ]
891
+ });
892
+ });
893
+ const SelectMenu = qwik.component$((props) => {
894
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", {
895
+ class: "flex flex-col",
896
+ children: [
897
+ /* @__PURE__ */ jsxRuntime.jsx("label", {
898
+ for: props.id,
899
+ class: "pb-1 text-lum-text select-none",
900
+ children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {})
901
+ }),
902
+ /* @__PURE__ */ jsxRuntime.jsxs(SelectMenuRaw, {
903
+ ...props,
904
+ children: [
905
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
906
+ "q:slot": "dropdown",
907
+ children: (props.customDropdown || !props.values?.length) && /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
908
+ name: "dropdown"
909
+ })
910
+ }),
911
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
912
+ "q:slot": "extra-buttons",
913
+ children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
914
+ name: "extra-buttons"
915
+ })
916
+ })
917
+ ]
918
+ })
919
+ ]
920
+ });
921
+ });
922
+ const SelectMenuRaw = qwik.component$(({ values, class: Class, panelClass = "lum-bg-lum-input-bg", btnClass = "lum-bg-transparent", noblur, nocloseonclick, customDropdown, hover, align, ...props }) => {
923
+ const store = qwik.useStore({
924
+ opened: false,
925
+ value: props.value
926
+ });
927
+ const selectRef = qwik.useSignal();
928
+ const selected = values?.find((v) => v.value === store.value);
929
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", {
930
+ class: {
931
+ "relative touch-manipulation": true,
932
+ group: hover
933
+ },
934
+ children: [
935
+ values && /* @__PURE__ */ jsxRuntime.jsx("select", {
936
+ ...props,
937
+ ref: selectRef,
938
+ class: "hidden",
939
+ children: values.map((value, i) => {
940
+ return /* @__PURE__ */ jsxRuntime.jsx("option", {
941
+ value: value.value,
942
+ children: `${value.value}`
943
+ }, i);
944
+ })
945
+ }),
946
+ /* @__PURE__ */ jsxRuntime.jsxs(Dropdown, {
947
+ opened: store.opened,
948
+ class: {
949
+ "w-full": true,
950
+ ...Class
951
+ },
952
+ onClick$: (e, el) => {
953
+ if (hover) return;
954
+ store.opened = !store.opened;
955
+ if (nocloseonclick) return;
956
+ const listener = (e2) => {
957
+ if (!store.opened) return document.removeEventListener("click", listener);
958
+ const path = e2.composedPath();
959
+ if (path.includes(el)) return;
960
+ store.opened = false;
961
+ document.removeEventListener("click", listener);
962
+ };
963
+ document.addEventListener("click", listener);
964
+ },
965
+ children: [
966
+ customDropdown && /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
967
+ name: "dropdown"
968
+ }),
969
+ !customDropdown && (selected?.name ?? values?.[0]?.name ?? /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
970
+ name: "dropdown"
971
+ }))
972
+ ]
973
+ }),
974
+ hover && /* @__PURE__ */ jsxRuntime.jsx("div", {
975
+ class: "h-2 absolute w-full"
976
+ }),
977
+ /* @__PURE__ */ jsxRuntime.jsxs("div", {
978
+ class: {
979
+ "absolute z-1000 mt-2": true,
980
+ "backdrop-blur-lg": !noblur,
981
+ "lum-scroll flex max-h-72 flex-col gap-1 overflow-auto rounded-lum border p-1 select-none motion-safe:transition-all ease-out": true,
982
+ "left-0": align === "left",
983
+ "right-0": align === "right",
984
+ "left-1/2 -translate-x-1/2": align === "center",
985
+ "pointer-events-none scale-95 opacity-0": !store.opened,
986
+ "duration-300 group-hover:pointer-events-auto group-hover:scale-100 group-hover:opacity-100 group-hover:duration-75": hover,
987
+ "focus-within:pointer-events-auto focus-within:scale-100 focus-within:opacity-100 focus-within:duration-75": true,
988
+ [panelClass]: true
989
+ },
990
+ children: [
991
+ values?.map(({ name, value }, i) => {
992
+ return /* @__PURE__ */ jsxRuntime.jsx("button", {
993
+ type: "button",
994
+ class: {
995
+ "lum-btn rounded-lum-1": true,
996
+ [btnClass]: true
997
+ },
998
+ onClick$: (e, el) => {
999
+ el.blur();
1000
+ store.opened = false;
1001
+ const select = selectRef.value;
1002
+ if (select) {
1003
+ select.value = value.toString();
1004
+ select.dispatchEvent(new Event("change"));
1005
+ }
1006
+ store.value = value.toString();
1007
+ },
1008
+ children: name
1009
+ }, i);
1010
+ }),
1011
+ /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
1012
+ name: "extra-buttons"
1013
+ })
1014
+ ]
1015
+ })
1016
+ ]
1017
+ });
1018
+ });
1019
+ const Sidebar = qwik.component$(({ position, ...props }) => {
1020
+ return /* @__PURE__ */ jsxRuntime.jsx("aside", {
1021
+ ...props,
1022
+ class: {
1023
+ "hidden lg:flex sticky lum-card top-0 z-40 px-6 pb-0 rounded-none pt-20 h-dvh": true,
1024
+ "left-0 border-0 border-r": position === "left" || !position,
1025
+ "right-0 border-0 border-l": position === "right",
1026
+ ...props.class
1027
+ },
1028
+ children: /* @__PURE__ */ jsxRuntime.jsxs("nav", {
1029
+ id: "docs-sidebar",
1030
+ class: "min-h-full relative",
1031
+ children: [
1032
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
1033
+ class: "flex items-center gap-3 pb-3 px-2 border-b border-lum-border/10",
1034
+ children: /* @__PURE__ */ jsxRuntime.jsx("div", {
1035
+ class: "flex-1",
1036
+ children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
1037
+ name: "title"
1038
+ })
1039
+ })
1040
+ }),
1041
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
1042
+ class: {
1043
+ "flex flex-col gap-3 my-4 mx-4 lg:mx-0": true
1044
+ },
1045
+ children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {})
1046
+ })
1047
+ ]
1048
+ })
1049
+ });
1050
+ });
1051
+ const Toggle = qwik.component$(({ checkbox, round, ...props }) => {
1052
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", {
1053
+ class: "flex touch-manipulation items-center gap-3",
1054
+ children: [
1055
+ /* @__PURE__ */ jsxRuntime.jsxs("label", {
1056
+ class: "relative inline-flex cursor-pointer items-center",
1057
+ children: [
1058
+ /* @__PURE__ */ jsxRuntime.jsx("input", {
1059
+ type: "checkbox",
1060
+ ...props,
1061
+ class: "peer sr-only"
1062
+ }),
1063
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
1064
+ class: {
1065
+ "peer h-7 duration-300 ease-out hover:duration-75 peer-focus:border-blue-500": true,
1066
+ "after:absolute after:top-1 after:left-1 after:h-5 after:w-5 after:border after:duration-300 after:ease-out after:content-[''] after:hover:duration-75 after:motion-safe:transition-transform": true,
1067
+ "rounded-lum after:rounded-lum-1": !round,
1068
+ "rounded-full after:rounded-full": round,
1069
+ "w-12 peer-checked:after:translate-x-full": !checkbox,
1070
+ "w-7 after:opacity-0 peer-checked:after:opacity-100": checkbox,
1071
+ "lum-toggle-bg-lum-input-bg peer-checked:lum-toggle-bg-lum-accent": true,
1072
+ [props.class ?? ""]: !!props.class
1073
+ }
1074
+ })
1075
+ ]
1076
+ }),
1077
+ /* @__PURE__ */ jsxRuntime.jsx("label", {
1078
+ for: props.id,
1079
+ class: "flex gap-2 text-lum-text select-none empty:hidden",
1080
+ children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {})
1081
+ })
1082
+ ]
1083
+ });
1084
+ });
1085
+ const Hoverable = {
1086
+ onMouseMove$: (e, el) => {
1087
+ const rect = el.getBoundingClientRect();
1088
+ const mouseX = e.clientX - rect.left;
1089
+ const mouseY = e.clientY - rect.top;
1090
+ const rotateX = (mouseY / rect.height - 0.5) * -10;
1091
+ const rotateY = (mouseX / rect.width - 0.5) * 10;
1092
+ el.style.transition = "transform 0.05s ease-out";
1093
+ el.style.transform = `perspective(500px) rotateX(${rotateX}deg) rotateY(${rotateY}deg)`;
1094
+ },
1095
+ onMouseLeave$: (_e, el) => {
1096
+ el.style.transition = "transform 0.3s ease-out";
1097
+ el.style.transform = "perspective(500px) rotateX(0deg) rotateY(0deg)";
1098
+ }
1099
+ };
1100
+ const LogoBirdflop = qwik.component$(({ confused, fillGradient, size, ...props }) => {
1101
+ const gradientId = fillGradient?.join("-").replace("#", "");
1102
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
1103
+ xmlns: "http://www.w3.org/2000/svg",
1104
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1105
+ viewBox: "0 0 1080 1080",
1106
+ width: size,
1107
+ height: size,
1108
+ ...props,
1109
+ children: [
1110
+ /* @__PURE__ */ jsxRuntime.jsxs("defs", {
1111
+ children: [
1112
+ fillGradient && /* @__PURE__ */ jsxRuntime.jsx("linearGradient", {
1113
+ id: `linear-gradient-${gradientId}`,
1114
+ x1: "0.5",
1115
+ x2: "0.5",
1116
+ y2: "1",
1117
+ gradientUnits: "objectBoundingBox",
1118
+ children: fillGradient.map((color, i) => /* @__PURE__ */ jsxRuntime.jsx("stop", {
1119
+ offset: i / (fillGradient.length - 1),
1120
+ "stop-color": color
1121
+ }, i))
1122
+ }),
1123
+ /* @__PURE__ */ jsxRuntime.jsx("clipPath", {
1124
+ id: "clip-bf_3",
1125
+ children: /* @__PURE__ */ jsxRuntime.jsx("rect", {
1126
+ width: "1080",
1127
+ height: "1080"
1128
+ })
1129
+ })
1130
+ ]
1131
+ }),
1132
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
1133
+ id: "bf_3",
1134
+ "data-name": "bf - 3",
1135
+ "clip-path": "url(#clip-bf_3)",
1136
+ fill: "currentColor",
1137
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1138
+ id: "Union_26",
1139
+ "data-name": "Union 26",
1140
+ d: "M-1886.608-89.36c-8.311-65.774-27.64-219.008-27.64-221.333a.279.279,0,0,1,.09-.159q-.474-4.88-.477-9.885A101.066,101.066,0,0,1-1813.61-421.844a100.671,100.671,0,0,1,71.913,30.1l.093-.042c-.077-.093-8.783-10.549-22.7-24.758-8.216-8.388-16.645-16.459-25.052-23.993-10.51-9.417-21.018-18.013-31.23-25.552a120.5,120.5,0,0,0-40.468-71.567,119.916,119.916,0,0,0-77.984-28.881c-66.215,0-120.083,53.941-120.083,120.244h-.237v116.01h-.24c-.131,132.971-107.6,240.728-240.16,240.728V-330.289H-2300V-449.818h.362V-931.536h0V-1170c132.71,0,240.293,106.764,240.293,238.464v145.112a358.089,358.089,0,0,1,47.7-13.28,362.475,362.475,0,0,1,72.6-7.329,362.455,362.455,0,0,1,72.6,7.329,358.112,358.112,0,0,1,67.622,21.02,360.042,360.042,0,0,1,61.191,33.26,362.833,362.833,0,0,1,53.315,44.049,363.178,363.178,0,0,1,43.99,53.387,360.83,360.83,0,0,1,33.213,61.276A359.3,359.3,0,0,1-1586.118-519a363.948,363.948,0,0,1,7.317,72.7,363.957,363.957,0,0,1-7.317,72.7,359.333,359.333,0,0,1-20.992,67.714,360.95,360.95,0,0,1-33.213,61.277,363.233,363.233,0,0,1-43.99,53.388,362.833,362.833,0,0,1-53.315,44.049,360.017,360.017,0,0,1-61.191,33.259,358.108,358.108,0,0,1-67.622,21.02c-6.636,1.36-13.421,2.548-20.165,3.532Zm-79.831-365.056a27.049,27.049,0,0,1,27.038-27.059,27.048,27.048,0,0,1,27.037,27.059,27.049,27.049,0,0,1-27.037,27.06A27.05,27.05,0,0,1-1966.439-454.416Z",
1141
+ transform: "translate(2479.9 1169.7)",
1142
+ fill: fillGradient ? `url(#linear-gradient-${gradientId})` : ""
1143
+ })
1144
+ }),
1145
+ confused && /* @__PURE__ */ jsxRuntime.jsxs("g", {
1146
+ style: "transform: translate(595px, 460px) scale(0.375)",
1147
+ stroke: "#1E2837",
1148
+ fill: "#1E2837",
1149
+ children: [
1150
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1151
+ d: "M160 164s1.44-33 33.54-59.46C212.6 88.83 235.49 84.28 256 84c18.73-.23 35.47 2.94 45.48 7.82C318.59 100.2 352 120.6 352 164c0 45.67-29.18 66.37-62.35 89.18S248 298.36 248 324",
1152
+ fill: "none",
1153
+ "stroke-linecap": "round",
1154
+ "stroke-miterlimit": "10",
1155
+ "stroke-width": "80"
1156
+ }),
1157
+ /* @__PURE__ */ jsxRuntime.jsx("circle", {
1158
+ cx: "248",
1159
+ cy: "399.99",
1160
+ r: "40",
1161
+ style: "transform: translate(0, 30px)"
1162
+ })
1163
+ ]
1164
+ })
1165
+ ]
1166
+ });
1167
+ });
1168
+ const LogoDiscord = qwik.component$(({ size, ...props }) => {
1169
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", {
1170
+ xmlns: "http://www.w3.org/2000/svg",
1171
+ viewBox: "0 0 127.14 96.36",
1172
+ fill: "currentColor",
1173
+ width: size,
1174
+ height: size,
1175
+ ...props,
1176
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1177
+ d: "M107.7,8.07A105.15,105.15,0,0,0,81.47,0a72.06,72.06,0,0,0-3.36,6.83A97.68,97.68,0,0,0,49,6.83,72.37,72.37,0,0,0,45.64,0,105.89,105.89,0,0,0,19.39,8.09C2.79,32.65-1.71,56.6.54,80.21h0A105.73,105.73,0,0,0,32.71,96.36,77.7,77.7,0,0,0,39.6,85.25a68.42,68.42,0,0,1-10.85-5.18c.91-.66,1.8-1.34,2.66-2a75.57,75.57,0,0,0,64.32,0c.87.71,1.76,1.39,2.66,2a68.68,68.68,0,0,1-10.87,5.19,77,77,0,0,0,6.89,11.1A105.25,105.25,0,0,0,126.6,80.22h0C129.24,52.84,122.09,29.11,107.7,8.07ZM42.45,65.69C36.18,65.69,31,60,31,53s5-12.74,11.43-12.74S54,46,53.89,53,48.84,65.69,42.45,65.69Zm42.24,0C78.41,65.69,73.25,60,73.25,53s5-12.74,11.44-12.74S96.23,46,96.12,53,91.08,65.69,84.69,65.69Z"
1178
+ })
1179
+ });
1180
+ });
1181
+ const LogoFabric = qwik.component$(({ size, ...props }) => {
1182
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
1183
+ xmlns: "http://www.w3.org/2000/svg",
1184
+ "xml:space": "preserve",
1185
+ "fill-rule": "evenodd",
1186
+ "stroke-linecap": "round",
1187
+ "stroke-linejoin": "round",
1188
+ "clip-rule": "evenodd",
1189
+ viewBox: "0 0 24 24",
1190
+ width: size,
1191
+ height: size,
1192
+ ...props,
1193
+ children: [
1194
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1195
+ fill: "none",
1196
+ d: "M0 0h24v24H0z"
1197
+ }),
1198
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1199
+ fill: "none",
1200
+ stroke: "currentColor",
1201
+ "stroke-width": "23",
1202
+ d: "m820 761-85.6-87.6c-4.6-4.7-10.4-9.6-25.9 1-19.9 13.6-8.4 21.9-5.2 25.4 8.2 9 84.1 89 97.2 104 2.5 2.8-20.3-22.5-6.5-39.7 5.4-7 18-12 26-3 6.5 7.3 10.7 18-3.4 29.7-24.7 20.4-102 82.4-127 103-12.5 10.3-28.5 2.3-35.8-6-7.5-8.9-30.6-34.6-51.3-58.2-5.5-6.3-4.1-19.6 2.3-25 35-30.3 91.9-73.8 111.9-90.8",
1203
+ transform: "matrix(.08671 0 0 .0867 -49.8 -56)"
1204
+ })
1205
+ ]
1206
+ });
1207
+ });
1208
+ const LogoForge = qwik.component$(({ size, ...props }) => {
1209
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
1210
+ "xml:space": "preserve",
1211
+ "fill-rule": "evenodd",
1212
+ "stroke-linecap": "round",
1213
+ "stroke-linejoin": "round",
1214
+ "stroke-miterlimit": "1.5",
1215
+ "clip-rule": "evenodd",
1216
+ viewBox: "0 0 24 24",
1217
+ width: size,
1218
+ height: size,
1219
+ ...props,
1220
+ children: [
1221
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1222
+ fill: "none",
1223
+ d: "M0 0h24v24H0z"
1224
+ }),
1225
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1226
+ fill: "none",
1227
+ stroke: "currentColor",
1228
+ "stroke-width": "2",
1229
+ d: "M2 7.5h8v-2h12v2s-7 3.4-7 6 3.1 3.1 3.1 3.1l.9 3.9H5l1-4.1s3.8.1 4-2.9c.2-2.7-6.5-.7-8-6Z"
1230
+ })
1231
+ ]
1232
+ });
1233
+ });
1234
+ const LogoLuminescent = qwik.component$(({ size, ...props }) => {
1235
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", {
1236
+ xmlns: "http://www.w3.org/2000/svg",
1237
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1238
+ zoomAndPan: "magnify",
1239
+ viewBox: "80 80 220 220",
1240
+ preserveAspectRatio: "xMidYMid meet",
1241
+ version: "1.0",
1242
+ fill: "currentColor",
1243
+ width: size,
1244
+ height: size,
1245
+ ...props,
1246
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
1247
+ "fill-opacity": "1",
1248
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
1249
+ transform: "translate(86.97656, 254.624983)",
1250
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1251
+ d: "M 119.476562 -167.570312 C 90.671875 -133.253906 37.820312 -144.527344 30.308594 -109.710938 C 26.550781 -92.175781 39.074219 -75.644531 62.367188 -76.394531 C 67.878906 -77.398438 69.882812 -87.917969 66.628906 -90.671875 C 56.859375 -92.675781 55.855469 -99.691406 57.609375 -107.453125 C 62.117188 -125.988281 93.929688 -123.734375 113.96875 -147.28125 C 103.949219 -115.21875 96.933594 -78.902344 83.910156 -43.582031 C 59.363281 -58.863281 23.796875 -50.847656 21.542969 -27.050781 C 19.285156 -8.765625 32.8125 3.257812 55.355469 2.253906 C 72.386719 1.753906 80.902344 -4.007812 89.921875 -12.023438 C 112.464844 15.277344 138.261719 52.097656 181.347656 37.570312 C 188.609375 30.558594 183.347656 14.777344 177.085938 15.277344 C 147.28125 25.546875 132 1.253906 104.699219 -28.054688 C 119.476562 -56.105469 134.003906 -124.738281 148.53125 -167.320312 C 147.53125 -173.582031 124.488281 -177.339844 119.476562 -167.570312 Z M 46.339844 -28.804688 C 50.347656 -38.324219 68.128906 -36.570312 77.148438 -27.550781 C 72.890625 -20.789062 66.628906 -15.027344 57.359375 -15.027344 C 46.085938 -15.027344 43.332031 -22.792969 46.339844 -28.804688 Z M 46.339844 -28.804688 "
1252
+ })
1253
+ })
1254
+ })
1255
+ });
1256
+ });
1257
+ const LogoLuminescentFull = qwik.component$(({ size, ...props }) => {
1258
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
1259
+ xmlns: "http://www.w3.org/2000/svg",
1260
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1261
+ zoomAndPan: "magnify",
1262
+ viewBox: "30 60 1160 200",
1263
+ preserveAspectRatio: "xMidYMid meet",
1264
+ version: "1.0",
1265
+ fill: "currentColor",
1266
+ height: size,
1267
+ ...props,
1268
+ children: [
1269
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
1270
+ "fill-opacity": "1",
1271
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
1272
+ transform: "translate(12.743357, 223.612604)",
1273
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1274
+ d: "M 110.792969 -155.390625 C 84.082031 -123.570312 35.074219 -134.023438 28.105469 -101.734375 C 24.621094 -85.476562 36.234375 -70.148438 57.835938 -70.84375 C 62.945312 -71.773438 64.804688 -81.527344 61.785156 -84.082031 C 52.726562 -85.941406 51.796875 -92.445312 53.421875 -99.644531 C 57.605469 -116.832031 87.101562 -114.742188 105.683594 -136.578125 C 96.394531 -106.84375 89.890625 -73.167969 77.8125 -40.414062 C 55.046875 -54.585938 22.066406 -47.152344 19.976562 -25.085938 C 17.886719 -8.128906 30.429688 3.019531 51.332031 2.089844 C 67.128906 1.625 75.023438 -3.714844 83.386719 -11.148438 C 104.289062 14.167969 128.214844 48.3125 168.164062 34.839844 C 174.902344 28.335938 170.023438 13.703125 164.21875 14.167969 C 136.578125 23.691406 122.40625 1.160156 97.089844 -26.015625 C 110.792969 -52.027344 124.265625 -115.671875 137.738281 -155.160156 C 136.808594 -160.964844 115.441406 -164.449219 110.792969 -155.390625 Z M 42.96875 -26.710938 C 46.6875 -35.539062 63.179688 -33.910156 71.539062 -25.550781 C 67.589844 -19.277344 61.785156 -13.9375 53.191406 -13.9375 C 42.738281 -13.9375 40.183594 -21.136719 42.96875 -26.710938 Z M 42.96875 -26.710938 "
1275
+ })
1276
+ })
1277
+ }),
1278
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
1279
+ "fill-opacity": "1",
1280
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
1281
+ transform: "translate(151.868279, 223.612604)",
1282
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1283
+ d: "M 72.003906 -95.464844 C 67.589844 -79.902344 62.945312 -62.945312 58.066406 -48.3125 C 51.101562 -28.570312 36.46875 -14.867188 27.410156 -14.867188 C 18.8125 -14.867188 21.136719 -26.945312 24.390625 -40.183594 C 28.570312 -58.765625 34.609375 -79.4375 37.859375 -92.445312 C 37.859375 -98.714844 16.492188 -100.804688 13.703125 -95 C 8.363281 -74.328125 0.230469 -51.566406 -3.949219 -28.335938 C -6.96875 -12.078125 -2.324219 1.859375 16.027344 2.089844 C 31.589844 2.554688 46.222656 -5.109375 59.695312 -27.410156 C 56.210938 -13.472656 61.085938 1.160156 73.863281 1.160156 C 98.019531 1.394531 115.207031 -30.890625 123.105469 -46.6875 C 124.5 -49.472656 116.367188 -54.351562 114.976562 -51.332031 C 106.613281 -31.820312 92.675781 -14.632812 83.851562 -14.867188 C 72.003906 -14.867188 90.121094 -70.609375 96.160156 -92.210938 C 94.535156 -98.949219 74.792969 -100.574219 72.003906 -95.464844 Z M 72.003906 -95.464844 "
1284
+ })
1285
+ })
1286
+ }),
1287
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
1288
+ "fill-opacity": "1",
1289
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
1290
+ transform: "translate(265.444396, 223.612604)",
1291
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1292
+ d: "M 123.570312 2.089844 C 146.101562 1.394531 163.054688 -26.246094 172.578125 -46.6875 C 173.972656 -49.472656 165.609375 -54.121094 164.449219 -51.332031 C 156.085938 -31.589844 141.6875 -14.167969 132.859375 -14.167969 C 120.78125 -13.9375 136.34375 -51.796875 140.292969 -68.519531 C 144.707031 -87.566406 139.828125 -98.949219 122.175781 -98.949219 C 107.078125 -99.179688 94.304688 -87.101562 85.476562 -75.722656 C 88.03125 -89.65625 81.527344 -98.949219 69.21875 -98.949219 C 55.28125 -99.179688 40.648438 -85.476562 32.519531 -74.09375 L 37.628906 -92.445312 C 36.46875 -99.179688 17.1875 -101.039062 13.472656 -95.929688 C 4.414062 -61.785156 -2.789062 -36.003906 -10.917969 -5.109375 C -11.847656 3.019531 12.773438 2.789062 14.867188 -2.554688 C 19.046875 -20.671875 22.761719 -36.46875 28.105469 -54.351562 C 36.003906 -68.054688 47.382812 -79.902344 54.585938 -79.902344 C 61.320312 -80.132812 60.855469 -72.46875 59.230469 -66.429688 C 53.191406 -42.042969 48.546875 -23.226562 43.898438 -3.714844 C 44.828125 3.019531 66.894531 2.324219 69.449219 -2.789062 C 72.933594 -16.027344 77.8125 -38.558594 81.992188 -53.65625 C 87.101562 -66.199219 100.804688 -80.132812 108.9375 -80.367188 C 116.367188 -80.367188 114.976562 -72.238281 113.347656 -65.5 C 110.328125 -53.191406 104.753906 -32.984375 103.128906 -23.691406 C 100.109375 -7.898438 105.453125 2.789062 123.570312 2.089844 Z M 123.570312 2.089844 "
1293
+ })
1294
+ })
1295
+ }),
1296
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
1297
+ "fill-opacity": "1",
1298
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
1299
+ transform: "translate(428.260051, 223.612604)",
1300
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1301
+ d: "M 32.285156 -112.421875 C 41.578125 -112.421875 48.082031 -118.226562 49.007812 -126.589844 C 50.171875 -134.71875 45.0625 -140.523438 36.699219 -140.523438 C 28.105469 -140.757812 21.601562 -134.949219 20.207031 -126.589844 C 19.046875 -118.460938 24.621094 -112.421875 32.285156 -112.421875 Z M 14.632812 2.089844 C 38.789062 1.625 56.210938 -25.550781 65.964844 -46.453125 C 67.359375 -49.472656 59.230469 -54.351562 57.835938 -51.332031 C 49.9375 -32.285156 34.609375 -14.167969 23.925781 -14.167969 C 19.046875 -13.9375 19.277344 -20.207031 21.136719 -29.5 C 24.621094 -45.292969 29.5 -60.390625 38.558594 -92.675781 C 36.929688 -98.25 17.886719 -101.039062 14.167969 -95.695312 C 6.039062 -67.589844 0.464844 -48.777344 -4.644531 -26.945312 C -8.828125 -9.058594 -4.644531 2.554688 14.632812 2.089844 Z M 14.632812 2.089844 "
1302
+ })
1303
+ })
1304
+ }),
1305
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
1306
+ "fill-opacity": "1",
1307
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
1308
+ transform: "translate(484.467457, 223.612604)",
1309
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1310
+ d: "M 72.238281 -98.949219 C 56.90625 -99.179688 41.113281 -84.082031 32.75 -74.328125 C 34.839844 -81.0625 35.769531 -85.011719 37.859375 -92.445312 C 35.539062 -99.644531 17.421875 -100.804688 13.703125 -95.695312 C 4.414062 -61.785156 -3.484375 -35.304688 -10.917969 -4.414062 C -10.453125 3.25 12.542969 2.554688 15.097656 -2.554688 C 19.976562 -23.460938 22.53125 -35.304688 29.035156 -57.140625 C 37.628906 -68.753906 49.9375 -79.667969 58.066406 -79.902344 C 65.964844 -80.132812 64.804688 -72.46875 63.179688 -65.5 C 61.085938 -55.976562 54.585938 -30.660156 53.191406 -22.761719 C 50.402344 -7.664062 55.746094 2.554688 73.398438 2.089844 C 95.929688 1.859375 113.347656 -26.480469 122.640625 -46.6875 C 123.800781 -49.472656 115.671875 -54.121094 114.511719 -51.332031 C 105.917969 -31.355469 92.210938 -14.167969 82.6875 -14.167969 C 76.882812 -14.167969 78.042969 -22.996094 79.902344 -31.589844 C 82.457031 -42.738281 87.335938 -55.746094 89.890625 -66.429688 C 94.304688 -85.246094 89.890625 -98.714844 72.238281 -98.949219 Z M 72.238281 -98.949219 "
1311
+ })
1312
+ })
1313
+ }),
1314
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
1315
+ "fill-opacity": "1",
1316
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
1317
+ transform: "translate(597.346777, 223.612604)",
1318
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1319
+ d: "M 58.996094 -98.484375 C 31.820312 -99.414062 7.433594 -80.367188 1.160156 -49.9375 C -4.644531 -23.925781 7.898438 1.160156 43.203125 2.324219 C 65.269531 3.019531 93.140625 -4.644531 111.957031 -46.6875 C 113.117188 -49.472656 104.988281 -54.121094 103.59375 -51.332031 C 90.121094 -20.671875 65.5 -12.542969 49.707031 -14.167969 C 33.449219 -15.792969 24.851562 -25.316406 26.246094 -40.183594 C 53.191406 -33.910156 75.257812 -42.042969 83.851562 -59.460938 C 92.675781 -76.417969 85.011719 -97.554688 58.996094 -98.484375 Z M 55.976562 -81.992188 C 64.804688 -81.761719 65.035156 -73.398438 61.320312 -65.734375 C 56.675781 -55.511719 45.0625 -49.472656 27.871094 -52.027344 C 32.054688 -68.753906 45.0625 -82.6875 55.976562 -81.992188 Z M 55.976562 -81.992188 "
1320
+ })
1321
+ })
1322
+ }),
1323
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
1324
+ "fill-opacity": "1",
1325
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
1326
+ transform: "translate(699.542059, 223.612604)",
1327
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1328
+ d: "M 35.074219 2.554688 C 49.007812 2.789062 62.015625 -2.789062 68.753906 -12.542969 C 84.316406 -12.078125 100.574219 -19.277344 113.117188 -46.6875 C 114.277344 -49.242188 106.148438 -54.121094 104.988281 -51.566406 C 95.929688 -30.429688 84.082031 -23.460938 73.628906 -22.996094 C 79.207031 -46.453125 65.734375 -63.179688 61.550781 -92.675781 C 73.398438 -108.238281 51.566406 -116.367188 35.304688 -101.039062 C 20.441406 -87.566406 7.433594 -65.035156 -2.324219 -43.433594 C -3.949219 -40.183594 4.414062 -36.003906 5.808594 -39.023438 C 15.097656 -58.300781 26.710938 -78.972656 38.558594 -90.820312 C 40.183594 -71.539062 50.402344 -52.261719 50.171875 -35.769531 C 43.433594 -35.769531 40.183594 -25.316406 46.222656 -19.742188 C 44.132812 -16.722656 39.71875 -14.167969 35.304688 -14.167969 C 27.640625 -14.167969 22.066406 -20.671875 23.691406 -30.660156 C 20.671875 -33.449219 10.683594 -31.820312 8.828125 -25.550781 C 7.664062 -7.199219 21.367188 2.554688 35.074219 2.554688 Z M 35.074219 2.554688 "
1329
+ })
1330
+ })
1331
+ }),
1332
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
1333
+ "fill-opacity": "1",
1334
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
1335
+ transform: "translate(802.898632, 223.612604)",
1336
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1337
+ d: "M 57.835938 -98.714844 C 25.085938 -99.179688 0.929688 -70.378906 -0.695312 -41.578125 C -1.859375 -19.046875 13.472656 0.929688 37.628906 1.859375 C 62.015625 3.019531 88.496094 -5.574219 107.078125 -46.6875 C 108.238281 -49.242188 100.109375 -54.121094 98.949219 -51.332031 C 87.335938 -24.851562 68.054688 -13.703125 49.242188 -14.402344 C 33.910156 -14.867188 24.621094 -25.316406 26.015625 -41.578125 C 28.105469 -64.339844 43.203125 -83.617188 56.210938 -82.226562 C 65.734375 -81.296875 60.855469 -68.753906 55.511719 -62.015625 C 55.511719 -56.90625 72.933594 -55.511719 77.8125 -61.085938 C 90.585938 -74.558594 88.496094 -98.25 57.835938 -98.714844 Z M 57.835938 -98.714844 "
1338
+ })
1339
+ })
1340
+ }),
1341
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
1342
+ "fill-opacity": "1",
1343
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
1344
+ transform: "translate(900.21642, 223.612604)",
1345
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1346
+ d: "M 58.996094 -98.484375 C 31.820312 -99.414062 7.433594 -80.367188 1.160156 -49.9375 C -4.644531 -23.925781 7.898438 1.160156 43.203125 2.324219 C 65.269531 3.019531 93.140625 -4.644531 111.957031 -46.6875 C 113.117188 -49.472656 104.988281 -54.121094 103.59375 -51.332031 C 90.121094 -20.671875 65.5 -12.542969 49.707031 -14.167969 C 33.449219 -15.792969 24.851562 -25.316406 26.246094 -40.183594 C 53.191406 -33.910156 75.257812 -42.042969 83.851562 -59.460938 C 92.675781 -76.417969 85.011719 -97.554688 58.996094 -98.484375 Z M 55.976562 -81.992188 C 64.804688 -81.761719 65.035156 -73.398438 61.320312 -65.734375 C 56.675781 -55.511719 45.0625 -49.472656 27.871094 -52.027344 C 32.054688 -68.753906 45.0625 -82.6875 55.976562 -81.992188 Z M 55.976562 -81.992188 "
1347
+ })
1348
+ })
1349
+ }),
1350
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
1351
+ "fill-opacity": "1",
1352
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
1353
+ transform: "translate(1002.411702, 223.612604)",
1354
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1355
+ d: "M 72.238281 -98.949219 C 56.90625 -99.179688 41.113281 -84.082031 32.75 -74.328125 C 34.839844 -81.0625 35.769531 -85.011719 37.859375 -92.445312 C 35.539062 -99.644531 17.421875 -100.804688 13.703125 -95.695312 C 4.414062 -61.785156 -3.484375 -35.304688 -10.917969 -4.414062 C -10.453125 3.25 12.542969 2.554688 15.097656 -2.554688 C 19.976562 -23.460938 22.53125 -35.304688 29.035156 -57.140625 C 37.628906 -68.753906 49.9375 -79.667969 58.066406 -79.902344 C 65.964844 -80.132812 64.804688 -72.46875 63.179688 -65.5 C 61.085938 -55.976562 54.585938 -30.660156 53.191406 -22.761719 C 50.402344 -7.664062 55.746094 2.554688 73.398438 2.089844 C 95.929688 1.859375 113.347656 -26.480469 122.640625 -46.6875 C 123.800781 -49.472656 115.671875 -54.121094 114.511719 -51.332031 C 105.917969 -31.355469 92.210938 -14.167969 82.6875 -14.167969 C 76.882812 -14.167969 78.042969 -22.996094 79.902344 -31.589844 C 82.457031 -42.738281 87.335938 -55.746094 89.890625 -66.429688 C 94.304688 -85.246094 89.890625 -98.714844 72.238281 -98.949219 Z M 72.238281 -98.949219 "
1356
+ })
1357
+ })
1358
+ }),
1359
+ /* @__PURE__ */ jsxRuntime.jsx("g", {
1360
+ "fill-opacity": "1",
1361
+ children: /* @__PURE__ */ jsxRuntime.jsx("g", {
1362
+ transform: "translate(1115.290992, 223.612604)",
1363
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1364
+ d: "M 28.570312 2.089844 C 51.796875 1.859375 68.753906 -17.421875 81.296875 -46.453125 C 82.457031 -49.472656 74.558594 -54.121094 73.167969 -51.332031 C 63.410156 -29.265625 46.917969 -13.9375 33.449219 -14.167969 C 22.066406 -14.402344 22.066406 -30.195312 26.945312 -51.566406 C 29.035156 -61.320312 32.519531 -73.628906 36.003906 -85.707031 L 57.835938 -85.707031 C 61.320312 -86.871094 64.105469 -97.785156 59.695312 -101.039062 L 40.183594 -101.039062 C 45.527344 -118.691406 50.867188 -135.183594 55.976562 -149.351562 C 55.746094 -156.085938 34.609375 -158.644531 31.355469 -153.996094 C 26.710938 -142.152344 19.511719 -120.550781 13.472656 -101.039062 L 4.179688 -101.039062 C 0.464844 -99.644531 -2.324219 -88.265625 2.324219 -85.707031 L 9.289062 -85.707031 C -1.394531 -45.0625 -12.078125 2.554688 28.570312 2.089844 Z M 28.570312 2.089844 "
1365
+ })
1366
+ })
1367
+ })
1368
+ ]
1369
+ });
1370
+ });
1371
+ const LogoPaper = qwik.component$(({ size, ...props }) => {
1372
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
1373
+ "xml:space": "preserve",
1374
+ "fill-rule": "evenodd",
1375
+ "stroke-linecap": "round",
1376
+ "stroke-linejoin": "round",
1377
+ "stroke-miterlimit": "1.5",
1378
+ "clip-rule": "evenodd",
1379
+ viewBox: "0 0 24 24",
1380
+ width: size,
1381
+ height: size,
1382
+ ...props,
1383
+ children: [
1384
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1385
+ fill: "none",
1386
+ d: "M0 0h24v24H0z"
1387
+ }),
1388
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1389
+ fill: "none",
1390
+ stroke: "currentColor",
1391
+ "stroke-width": "2",
1392
+ d: "m12 18 6 2 3-17L2 14l6 2"
1393
+ }),
1394
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1395
+ stroke: "currentColor",
1396
+ "stroke-width": "2",
1397
+ d: "m9 21-1-5 4 2-3 3Z"
1398
+ }),
1399
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1400
+ fill: "currentColor",
1401
+ d: "m12 18-4-2 10-9-6 11Z"
1402
+ })
1403
+ ]
1404
+ });
1405
+ });
1406
+ const LogoPterodactyl = qwik.component$(({ size, ...props }) => {
1407
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", {
1408
+ version: "1.0",
1409
+ xmlns: "http://www.w3.org/2000/svg",
1410
+ viewBox: "0 0 180 180",
1411
+ preserveAspectRatio: "xMidYMid meet",
1412
+ width: size,
1413
+ height: size,
1414
+ ...props,
1415
+ children: /* @__PURE__ */ jsxRuntime.jsxs("g", {
1416
+ transform: "translate(0,180) scale(0.100000,-0.100000)",
1417
+ fill: "currentColor",
1418
+ stroke: "none",
1419
+ children: [
1420
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1421
+ d: "M965 1489 c-86 -13 -231 -63 -305 -107 -70 -41 -175 -138 -204 -190 l-18 -34 53 32 c127 75 410 193 425 177 3 -3 -3 -18 -13 -34 l-18 -28 40 33 c39 32 136 99 205 140 l35 22 -70 -1 c-38 -1 -97 -5 -130 -10z"
1422
+ }),
1423
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1424
+ d: "M1149 1320 c-147 -23 -282 -103 -431 -254 -103 -104 -143 -125 -65 -34 48 56 188 261 182 266 -6 7 -191 -71 -265 -111 -245 -132 -410 -289 -502 -474 -27 -56 -48 -107 -46 -112 1 -5 41 20 88 56 120 93 200 146 200 133 0 -6 -46 -59 -103 -117 -56 -59 -95 -104 -87 -101 8 3 89 36 180 73 150 61 165 66 175 50 64 -109 121 -158 225 -194 103 -36 259 -47 366 -26 13 3 42 -11 80 -39 32 -24 78 -49 101 -55 27 -7 44 -19 48 -31 8 -27 41 -43 71 -36 28 7 32 26 5 26 -24 0 -44 24 -39 47 2 10 18 25 35 34 18 9 30 19 26 23 -13 13 -58 5 -79 -15 -15 -14 -29 -18 -48 -13 -29 7 -79 60 -73 78 2 6 29 20 60 31 31 11 57 23 57 27 0 13 -181 96 -248 114 l-64 18 6 40 c11 71 63 162 132 231 101 101 239 159 582 246 28 7 52 15 52 19 0 7 -209 64 -310 84 -99 19 -241 27 -311 16z m-819 -401 c-13 -22 -37 -35 -48 -24 -7 7 34 45 49 45 6 0 5 -9 -1 -21z"
1425
+ }),
1426
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1427
+ d: "M1224 496 c-14 -11 -16 -17 -7 -26 9 -10 17 -8 37 6 14 11 26 22 26 27 0 12 -35 8 -56 -7z"
1428
+ }),
1429
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1430
+ d: "M1012 441 c-19 -11 64 -51 106 -51 39 0 40 4 5 35 -29 25 -85 33 -111 16z"
1431
+ })
1432
+ ]
1433
+ })
1434
+ });
1435
+ });
1436
+ const LogoPurpur = qwik.component$(({ size, ...props }) => {
1437
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
1438
+ "xml:space": "preserve",
1439
+ "fill-rule": "evenodd",
1440
+ "stroke-linecap": "round",
1441
+ "stroke-linejoin": "round",
1442
+ "stroke-miterlimit": "1.5",
1443
+ "clip-rule": "evenodd",
1444
+ viewBox: "0 0 24 24",
1445
+ width: size,
1446
+ height: size,
1447
+ ...props,
1448
+ children: [
1449
+ /* @__PURE__ */ jsxRuntime.jsx("defs", {
1450
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1451
+ id: "purpur",
1452
+ fill: "none",
1453
+ stroke: "currentColor",
1454
+ "stroke-width": "1.68",
1455
+ d: "m264 41.95 8-4v8l-8 4v-8Z"
1456
+ })
1457
+ }),
1458
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1459
+ fill: "none",
1460
+ d: "M0 0h24v24H0z"
1461
+ }),
1462
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1463
+ fill: "none",
1464
+ stroke: "currentColor",
1465
+ "stroke-width": "1.77",
1466
+ d: "m264 29.95-8 4 8 4.42 8-4.42-8-4Z",
1467
+ transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1468
+ }),
1469
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1470
+ fill: "none",
1471
+ stroke: "currentColor",
1472
+ "stroke-width": "1.77",
1473
+ d: "m272 38.37-8 4.42-8-4.42",
1474
+ transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1475
+ }),
1476
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1477
+ fill: "none",
1478
+ stroke: "currentColor",
1479
+ "stroke-width": "1.77",
1480
+ d: "m260 31.95 8 4.21V45",
1481
+ transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1482
+ }),
1483
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1484
+ fill: "none",
1485
+ stroke: "currentColor",
1486
+ "stroke-width": "1.77",
1487
+ d: "M260 45v-8.84l8-4.21",
1488
+ transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1489
+ }),
1490
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1491
+ fill: "none",
1492
+ stroke: "currentColor",
1493
+ "stroke-width": "1.68",
1494
+ d: "m264 41.95 8-4v8l-8 4v-8Z",
1495
+ transform: "matrix(1.125 0 0 1.2569 -285 -40.78)"
1496
+ }),
1497
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1498
+ fill: "none",
1499
+ stroke: "currentColor",
1500
+ "stroke-width": "1.68",
1501
+ d: "m264 41.95 8-4v8l-8 4v-8Z",
1502
+ transform: "matrix(-1.125 0 0 1.2569 309 -40.78)"
1503
+ })
1504
+ ]
1505
+ });
1506
+ });
1507
+ const LogoVelocity = qwik.component$(({ size, ...props }) => {
1508
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
1509
+ viewBox: "0 0 500 500",
1510
+ fill: "currentColor",
1511
+ width: size,
1512
+ height: size,
1513
+ ...props,
1514
+ children: [
1515
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1516
+ d: "M236.25 232.55l-54.08-73.79a11.86 11.86 0 00-11.91-4.62L84 171.57a11.88 11.88 0 00-8 5.88l-42.64 77.07a11.84 11.84 0 00.81 12.75l54.21 74a11.86 11.86 0 0011.91 4.62l86-17.37a11.85 11.85 0 008-5.89l42.78-77.3a11.86 11.86 0 00-.82-12.78zm-59.45 74.21a9.57 9.57 0 01-13.39-2.06l-31-42.24a16 16 0 00-16-6.21l-52.58 10.63a9.58 9.58 0 01-11.29-7.49A9.58 9.58 0 0160 248.1l57-11.52a16 16 0 0010.81-7.92L156.42 177a9.58 9.58 0 0113-3.75 9.58 9.58 0 013.75 13L146.81 234a16 16 0 001.09 17.16l31 42.23a9.58 9.58 0 01-2.1 13.37z"
1517
+ }),
1518
+ /* @__PURE__ */ jsxRuntime.jsx("circle", {
1519
+ cx: "416.44",
1520
+ cy: "236.11",
1521
+ r: "9.83"
1522
+ }),
1523
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
1524
+ d: "M458.29 265.6H280.52a9.83 9.83 0 110-19.66h106.22a9.84 9.84 0 000-19.67h-70.2a9.83 9.83 0 110-19.66H422.9a9.84 9.84 0 000-19.67H202.83l33.42 45.61a11.86 11.86 0 01.81 12.75l-42.78 77.3a11.75 11.75 0 01-1.4 2h212.29a9.83 9.83 0 100-19.66h-53.53a9.84 9.84 0 110-19.67h106.65a9.84 9.84 0 100-19.67z"
1525
+ })
1526
+ ]
1527
+ });
1528
+ });
1529
+ const LogoWaterfall = qwik.component$(({ size, ...props }) => {
1530
+ return /* @__PURE__ */ jsxRuntime.jsx("svg", {
1531
+ viewBox: "0 0 24 24",
1532
+ fill: "none",
1533
+ stroke: "currentColor",
1534
+ "stroke-width": "2",
1535
+ "stroke-linecap": "round",
1536
+ "stroke-linejoin": "round",
1537
+ width: size,
1538
+ height: size,
1539
+ ...props,
1540
+ children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1541
+ d: "M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"
1542
+ })
1543
+ });
1544
+ });
1545
+ exports.Anchor = Anchor;
1546
+ exports.Blobs = Blobs;
1547
+ exports.ColorPicker = ColorPicker;
1548
+ exports.Dropdown = Dropdown;
1549
+ exports.Hoverable = Hoverable;
1550
+ exports.LogoBirdflop = LogoBirdflop;
1551
+ exports.LogoDiscord = LogoDiscord;
1552
+ exports.LogoFabric = LogoFabric;
1553
+ exports.LogoForge = LogoForge;
1554
+ exports.LogoLuminescent = LogoLuminescent;
1555
+ exports.LogoLuminescentFull = LogoLuminescentFull;
1556
+ exports.LogoPaper = LogoPaper;
1557
+ exports.LogoPterodactyl = LogoPterodactyl;
1558
+ exports.LogoPurpur = LogoPurpur;
1559
+ exports.LogoVelocity = LogoVelocity;
1560
+ exports.LogoWaterfall = LogoWaterfall;
1561
+ exports.Nav = Nav;
1562
+ exports.NumberInput = NumberInput;
1563
+ exports.NumberInputRaw = NumberInputRaw;
1564
+ exports.SelectMenu = SelectMenu;
1565
+ exports.SelectMenuRaw = SelectMenuRaw;
1566
+ exports.Sidebar = Sidebar;
1567
+ exports.Toggle = Toggle;
1568
+ exports.blobColorClasses = blobColorClasses;