@luminescent/ui-qwik 1.2.3 → 1.2.4

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 (45) hide show
  1. package/lib/index.qwik.cjs +1934 -0
  2. package/lib/index.qwik.mjs +72 -348
  3. package/lib-types/src/components/docs/Anchor.d.ts +2 -0
  4. package/lib-types/src/components/docs/Blobs.d.ts +2 -0
  5. package/lib-types/src/components/docs/ColorPicker.d.ts +2 -0
  6. package/lib-types/src/components/docs/Dropdown.d.ts +2 -0
  7. package/lib-types/src/components/docs/IconsLogos.d.ts +2 -0
  8. package/lib-types/src/components/docs/Nav.d.ts +2 -0
  9. package/lib-types/src/components/docs/NumberInput.d.ts +2 -0
  10. package/lib-types/src/components/docs/Playground.d.ts +2 -0
  11. package/lib-types/src/components/docs/Toggle.d.ts +2 -0
  12. package/lib-types/src/components/docs/lum-classes.d.ts +2 -0
  13. package/lib-types/src/components/elements/Anchor.d.ts +5 -0
  14. package/lib-types/src/components/elements/Blobs.d.ts +37 -0
  15. package/lib-types/src/components/elements/ColorPicker.d.ts +13 -0
  16. package/lib-types/src/components/elements/Dropdown.d.ts +16 -0
  17. package/lib-types/src/components/elements/Header.d.ts +11 -0
  18. package/lib-types/src/components/elements/Nav.d.ts +1 -28
  19. package/lib-types/src/components/elements/NumberInput.d.ts +21 -0
  20. package/lib-types/src/components/elements/Toggle.d.ts +212 -0
  21. package/lib-types/src/components/elements.d.ts +8 -0
  22. package/lib-types/src/components/logos/Birdflop.d.ts +7 -0
  23. package/lib-types/src/components/logos/Discord.d.ts +2 -0
  24. package/lib-types/src/components/logos/Fabric.d.ts +2 -0
  25. package/lib-types/src/components/logos/Forge.d.ts +2 -0
  26. package/lib-types/src/components/logos/IconProps.d.ts +2 -0
  27. package/lib-types/src/components/logos/Luminescent.d.ts +3 -0
  28. package/lib-types/src/components/logos/Paper.d.ts +2 -0
  29. package/lib-types/src/components/logos/Pterodactyl.d.ts +2 -0
  30. package/lib-types/src/components/logos/Purpur.d.ts +2 -0
  31. package/lib-types/src/components/logos/Velocity.d.ts +2 -0
  32. package/lib-types/src/components/logos/Waterfall.d.ts +2 -0
  33. package/lib-types/src/components/logos.d.ts +10 -0
  34. package/lib-types/src/entry.dev.d.ts +2 -0
  35. package/lib-types/src/entry.ssr.d.ts +14 -0
  36. package/lib-types/src/index.d.ts +2 -0
  37. package/lib-types/src/root.d.ts +3 -0
  38. package/lib-types/src/svg/ChevronDown.d.ts +2 -0
  39. package/lib-types/src/svg/Link.d.ts +2 -0
  40. package/lib-types/src/svg/Minus.d.ts +2 -0
  41. package/lib-types/src/svg/Plus.d.ts +2 -0
  42. package/lib-types/src/svg/Shuffle.d.ts +2 -0
  43. package/lib-types/src/tailwind.config.d.ts +138 -0
  44. package/lib-types/src/utils/color.d.ts +36 -0
  45. package/package.json +13 -13
@@ -0,0 +1,1934 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const qwik = require("@builder.io/qwik");
4
+ const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
5
+ const Anchor = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => /* @__PURE__ */ qwik._jsxQ("span", null, {
6
+ id: qwik._fnSignal((p0) => p0.id, [
7
+ props
8
+ ], "p0.id"),
9
+ class: "block h-32 -mt-32 pointer-events-none"
10
+ }, null, 3, "mN_0"), "Anchor_component_dUkqs0yGHwc"));
11
+ const blobColorClasses = {
12
+ slate: [
13
+ "bg-slate-400",
14
+ "bg-slate-500",
15
+ "bg-slate-600"
16
+ ],
17
+ gray: [
18
+ "bg-gray-400",
19
+ "bg-gray-500",
20
+ "bg-gray-600"
21
+ ],
22
+ darkgray: [
23
+ "bg-gray-500",
24
+ "bg-gray-600",
25
+ "bg-gray-700"
26
+ ],
27
+ darkergray: [
28
+ "bg-gray-600",
29
+ "bg-gray-700",
30
+ "bg-gray-800"
31
+ ],
32
+ zinc: [
33
+ "bg-zinc-400",
34
+ "bg-zinc-500",
35
+ "bg-zinc-600"
36
+ ],
37
+ neutral: [
38
+ "bg-neutral-400",
39
+ "bg-neutral-500",
40
+ "bg-neutral-600"
41
+ ],
42
+ stone: [
43
+ "bg-stone-400",
44
+ "bg-stone-500",
45
+ "bg-stone-600"
46
+ ],
47
+ red: [
48
+ "bg-red-400",
49
+ "bg-red-500",
50
+ "bg-red-600"
51
+ ],
52
+ orange: [
53
+ "bg-orange-400",
54
+ "bg-orange-500",
55
+ "bg-orange-600"
56
+ ],
57
+ amber: [
58
+ "bg-amber-400",
59
+ "bg-amber-500",
60
+ "bg-amber-600"
61
+ ],
62
+ yellow: [
63
+ "bg-yellow-400",
64
+ "bg-yellow-500",
65
+ "bg-yellow-600"
66
+ ],
67
+ lime: [
68
+ "bg-lime-400",
69
+ "bg-lime-500",
70
+ "bg-lime-600"
71
+ ],
72
+ green: [
73
+ "bg-green-400",
74
+ "bg-green-500",
75
+ "bg-green-600"
76
+ ],
77
+ emerald: [
78
+ "bg-emerald-400",
79
+ "bg-emerald-500",
80
+ "bg-emerald-600"
81
+ ],
82
+ teal: [
83
+ "bg-teal-400",
84
+ "bg-teal-500",
85
+ "bg-teal-600"
86
+ ],
87
+ cyan: [
88
+ "bg-cyan-400",
89
+ "bg-cyan-500",
90
+ "bg-cyan-600"
91
+ ],
92
+ sky: [
93
+ "bg-sky-400",
94
+ "bg-sky-500",
95
+ "bg-sky-600"
96
+ ],
97
+ blue: [
98
+ "bg-blue-400",
99
+ "bg-blue-500",
100
+ "bg-blue-600"
101
+ ],
102
+ indigo: [
103
+ "bg-indigo-400",
104
+ "bg-indigo-500",
105
+ "bg-indigo-600"
106
+ ],
107
+ violet: [
108
+ "bg-violet-400",
109
+ "bg-violet-500",
110
+ "bg-violet-600"
111
+ ],
112
+ purple: [
113
+ "bg-purple-400",
114
+ "bg-purple-500",
115
+ "bg-purple-600"
116
+ ],
117
+ fuchsia: [
118
+ "bg-fuchsia-400",
119
+ "bg-fuchsia-500",
120
+ "bg-fuchsia-600"
121
+ ],
122
+ pink: [
123
+ "bg-pink-400",
124
+ "bg-pink-500",
125
+ "bg-pink-600"
126
+ ],
127
+ rose: [
128
+ "bg-rose-400",
129
+ "bg-rose-500",
130
+ "bg-rose-600"
131
+ ]
132
+ };
133
+ const blobClasses = [
134
+ "animate-blob",
135
+ "animate-blob1",
136
+ "animate-blob2",
137
+ "animate-blob3",
138
+ "animate-blob4",
139
+ "animate-blob5",
140
+ "animate-blob6"
141
+ ];
142
+ const Blobs = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
143
+ const props1 = qwik._restProps(props, [
144
+ "color",
145
+ "blur"
146
+ ]);
147
+ const blob = Math.round(Math.random() * 6);
148
+ const colorClass = typeof (props.color ?? "darkgray") == "string" ? blobColorClasses[props.color ?? "darkgray"] : props.color ?? "darkgray";
149
+ return /* @__PURE__ */ qwik._jsxQ("div", {
150
+ class: {
151
+ "motion-reduce:hidden absolute inset-0 transition-all animate-in fade-in anim-duration-[2s]": true,
152
+ ...props1.class
153
+ },
154
+ style: {
155
+ containerType: "size",
156
+ ...props1.style
157
+ }
158
+ }, null, [
159
+ /* @__PURE__ */ qwik._jsxQ("div", {
160
+ class: {
161
+ "absolute top-0 w-[30cqw] h-[30cqw] rounded-full opacity-20 ease-in-out": true,
162
+ "blur-sm": (props.blur ?? "xl") === "sm",
163
+ "blur-md": (props.blur ?? "xl") === "md",
164
+ "blur-lg": (props.blur ?? "xl") === "lg",
165
+ "blur-xl": (props.blur ?? "xl") === "xl",
166
+ [blobClasses[blob]]: true,
167
+ [colorClass[0]]: true
168
+ }
169
+ }, null, null, 3, null),
170
+ /* @__PURE__ */ qwik._jsxQ("div", {
171
+ class: {
172
+ "absolute top-0 w-[30cqw] h-[30cqw] rounded-full opacity-20 ease-in-out": true,
173
+ "blur-sm": (props.blur ?? "xl") === "sm",
174
+ "blur-md": (props.blur ?? "xl") === "md",
175
+ "blur-lg": (props.blur ?? "xl") === "lg",
176
+ "blur-xl": (props.blur ?? "xl") === "xl",
177
+ "anim-delay-[-5s]": true,
178
+ [blobClasses[blob]]: true,
179
+ [colorClass[1]]: true
180
+ }
181
+ }, null, null, 3, null),
182
+ /* @__PURE__ */ qwik._jsxQ("div", {
183
+ class: {
184
+ "absolute top-0 w-[30cqw] h-[30cqw] rounded-full opacity-20 ease-in-out": true,
185
+ "blur-sm": (props.blur ?? "xl") === "sm",
186
+ "blur-md": (props.blur ?? "xl") === "md",
187
+ "blur-lg": (props.blur ?? "xl") === "lg",
188
+ "blur-xl": (props.blur ?? "xl") === "xl",
189
+ "anim-delay-[-10s]": true,
190
+ [blobClasses[blob]]: true,
191
+ [colorClass[2]]: true
192
+ }
193
+ }, null, null, 3, null)
194
+ ], 1, "Mx_0");
195
+ }, "Blobs_component_xCrUzl14bRQ"));
196
+ const clamp = (value, min, max) => Math.min(Math.max(value, min), max);
197
+ function getMousePosition(e) {
198
+ if (window.TouchEvent && e instanceof TouchEvent) {
199
+ const touch = e.touches[0];
200
+ return {
201
+ x: touch.clientX,
202
+ y: touch.clientY
203
+ };
204
+ }
205
+ const mouse = e;
206
+ return {
207
+ x: mouse.clientX,
208
+ y: mouse.clientY
209
+ };
210
+ }
211
+ const pad2 = (c) => c.length == 1 ? "0" + c : "" + c;
212
+ function getBrightness(color) {
213
+ const { r, g, b } = color;
214
+ return (r * 299 + g * 587 + b * 114) / 1e3;
215
+ }
216
+ function hexNumberToRgb(color) {
217
+ const r = (color >> 16 & 255) / 255;
218
+ const g = (color >> 8 & 255) / 255;
219
+ const b = (color & 255) / 255;
220
+ return {
221
+ r,
222
+ g,
223
+ b
224
+ };
225
+ }
226
+ function rgbToHex(color) {
227
+ const { r, g, b } = color;
228
+ const hex = [
229
+ "#",
230
+ pad2(Math.round(r * 255).toString(16)),
231
+ pad2(Math.round(g * 255).toString(16)),
232
+ pad2(Math.round(b * 255).toString(16))
233
+ ];
234
+ return hex.join("").toUpperCase();
235
+ }
236
+ const hexStringToNumber = (color) => parseInt(color.replace("#", ""), 16);
237
+ function hsvToRgb(color) {
238
+ let { h } = color;
239
+ const { s, v } = color;
240
+ h *= 6;
241
+ const i = Math.floor(h);
242
+ const f = h - i;
243
+ const p = v * (1 - s);
244
+ const q = v * (1 - f * s);
245
+ const t = v * (1 - (1 - f) * s);
246
+ const mod = i % 6;
247
+ const r = [
248
+ v,
249
+ q,
250
+ p,
251
+ p,
252
+ t,
253
+ v
254
+ ][mod];
255
+ const g = [
256
+ t,
257
+ v,
258
+ v,
259
+ q,
260
+ p,
261
+ p
262
+ ][mod];
263
+ const b = [
264
+ p,
265
+ p,
266
+ t,
267
+ v,
268
+ v,
269
+ q
270
+ ][mod];
271
+ return {
272
+ r,
273
+ g,
274
+ b
275
+ };
276
+ }
277
+ function rgbToHsv(color) {
278
+ const { r, g, b } = color;
279
+ const max = Math.max(r, g, b);
280
+ const min = Math.min(r, g, b);
281
+ const d = max - min;
282
+ const s = max === 0 ? 0 : d / max;
283
+ const v = max;
284
+ let h = 0;
285
+ if (max != min) {
286
+ switch (max) {
287
+ case r:
288
+ h = (g - b) / d + (g < b ? 6 : 0);
289
+ break;
290
+ case g:
291
+ h = (b - r) / d + 2;
292
+ break;
293
+ case b:
294
+ h = (r - g) / d + 4;
295
+ break;
296
+ }
297
+ h /= 6;
298
+ }
299
+ return {
300
+ h,
301
+ s,
302
+ v
303
+ };
304
+ }
305
+ const Shuffle = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
306
+ return /* @__PURE__ */ qwik._jsxS("svg", {
307
+ xmlns: "http://www.w3.org/2000/svg",
308
+ viewBox: "0 0 512 512",
309
+ ...props,
310
+ get height() {
311
+ return props.width;
312
+ },
313
+ children: [
314
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
315
+ fill: "none",
316
+ stroke: "currentColor",
317
+ "stroke-linecap": "round",
318
+ "stroke-linejoin": "round",
319
+ "stroke-width": "32",
320
+ d: "M400 304l48 48-48 48M400 112l48 48-48 48M64 352h85.19a80 80 0 0066.56-35.62L256 256"
321
+ }, null, 3, null),
322
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
323
+ d: "M64 160h85.19a80 80 0 0166.56 35.62l80.5 120.76A80 80 0 00362.81 352H416M416 160h-53.19a80 80 0 00-66.56 35.62L288 208",
324
+ fill: "none",
325
+ stroke: "currentColor",
326
+ "stroke-linecap": "round",
327
+ "stroke-linejoin": "round",
328
+ "stroke-width": "32"
329
+ }, null, 3, null)
330
+ ]
331
+ }, {
332
+ xmlns: qwik._IMMUTABLE,
333
+ viewBox: qwik._IMMUTABLE,
334
+ height: qwik._fnSignal((p0) => p0.width, [
335
+ props
336
+ ], "p0.width")
337
+ }, 0, "z5_0");
338
+ }, "Shuffle_component_17D0HKe0U1U"));
339
+ const ColorPicker = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
340
+ const props1 = qwik._restProps(props, [
341
+ "id",
342
+ "value",
343
+ "colors",
344
+ "onInput$",
345
+ "preview",
346
+ "horizontal",
347
+ "showInput"
348
+ ]);
349
+ const width = 125;
350
+ const maxHue = 148;
351
+ const hsvColor = rgbToHsv(hexNumberToRgb(hexStringToNumber(props.value ?? "#000000")));
352
+ const store = qwik.useStore({
353
+ hue: {
354
+ position: hsvColor.h * maxHue,
355
+ color: rgbToHex(hsvToRgb({
356
+ h: hsvColor.h,
357
+ s: 1,
358
+ v: 1
359
+ }))
360
+ },
361
+ bPosition: (1 - hsvColor.v) * maxHue,
362
+ sPosition: hsvColor.s * width,
363
+ value: props.value ?? "#000000"
364
+ });
365
+ const setColor = /* @__PURE__ */ qwik.inlinedQrl((color) => {
366
+ const [maxHue2, props2, store2, width2] = qwik.useLexicalScope();
367
+ if (!color.match(/^#[0-9A-F]{6}$/i)) return;
368
+ const number = hexStringToNumber(color);
369
+ const hsv = rgbToHsv(hexNumberToRgb(number));
370
+ store2.hue.position = hsv.h * maxHue2;
371
+ store2.hue.color = rgbToHex(hsvToRgb({
372
+ h: hsv.h,
373
+ s: 1,
374
+ v: 1
375
+ }));
376
+ store2.sPosition = hsv.s * width2;
377
+ store2.bPosition = (1 - hsv.v) * maxHue2;
378
+ store2.value = color;
379
+ props2.onInput$?.(store2.value);
380
+ }, "ColorPicker_component_setColor_m9tT2MF9iI8", [
381
+ maxHue,
382
+ props,
383
+ store,
384
+ width
385
+ ]);
386
+ const hueChange = /* @__PURE__ */ qwik.inlinedQrl((e, hOffset) => {
387
+ const [maxHue2, props2, store2] = qwik.useLexicalScope();
388
+ const { y } = getMousePosition(e);
389
+ store2.hue.position = clamp(maxHue2 - (y - hOffset), 0, maxHue2);
390
+ const hsvColor2 = rgbToHsv(hexNumberToRgb(hexStringToNumber(store2.value)));
391
+ const h = store2.hue.position / maxHue2;
392
+ hsvColor2.h = h;
393
+ store2.hue.color = rgbToHex(hsvToRgb({
394
+ h,
395
+ s: 1,
396
+ v: 1
397
+ }));
398
+ store2.value = rgbToHex(hsvToRgb(hsvColor2));
399
+ props2.onInput$?.(store2.value);
400
+ }, "ColorPicker_component_hueChange_c0i9qwof0Yw", [
401
+ maxHue,
402
+ props,
403
+ store
404
+ ]);
405
+ const hueMouseDown = /* @__PURE__ */ qwik.inlinedQrl((e, el) => {
406
+ const [hueChange2] = qwik.useLexicalScope();
407
+ const hOffset = el.getBoundingClientRect().top;
408
+ hueChange2(e, hOffset);
409
+ const eventListener = (e2) => hueChange2(e2, hOffset);
410
+ window.addEventListener("mousemove", eventListener);
411
+ window.addEventListener("touchmove", eventListener);
412
+ const mouseUpListener = () => {
413
+ window.removeEventListener("mousemove", eventListener);
414
+ window.removeEventListener("touchmove", eventListener);
415
+ window.removeEventListener("mouseup", mouseUpListener);
416
+ window.removeEventListener("touchend", mouseUpListener);
417
+ };
418
+ window.addEventListener("mouseup", mouseUpListener);
419
+ window.addEventListener("touchend", mouseUpListener);
420
+ }, "ColorPicker_component_hueMouseDown_cw08gCPBKtw", [
421
+ hueChange
422
+ ]);
423
+ const sbChange = /* @__PURE__ */ qwik.inlinedQrl((e, hOffset) => {
424
+ const [maxHue2, props2, store2, width2] = qwik.useLexicalScope();
425
+ const { x, y } = getMousePosition(e);
426
+ store2.bPosition = clamp(y - hOffset.top, 0, maxHue2);
427
+ store2.sPosition = clamp(x - hOffset.left, 0, width2);
428
+ const s = store2.sPosition / width2;
429
+ const v = 1 - store2.bPosition / maxHue2;
430
+ store2.value = rgbToHex(hsvToRgb({
431
+ h: store2.hue.position / maxHue2,
432
+ s,
433
+ v
434
+ }));
435
+ props2.onInput$?.(store2.value);
436
+ }, "ColorPicker_component_sbChange_NwrBaY0ccx0", [
437
+ maxHue,
438
+ props,
439
+ store,
440
+ width
441
+ ]);
442
+ const sbMouseDown = /* @__PURE__ */ qwik.inlinedQrl((e, el) => {
443
+ const [sbChange2] = qwik.useLexicalScope();
444
+ const offset = el.getBoundingClientRect();
445
+ sbChange2(e, offset);
446
+ const eventListener = (e2) => sbChange2(e2, offset);
447
+ window.addEventListener("mousemove", eventListener);
448
+ window.addEventListener("touchmove", eventListener);
449
+ const mouseUpListener = () => {
450
+ window.removeEventListener("mousemove", eventListener);
451
+ window.removeEventListener("touchmove", eventListener);
452
+ window.removeEventListener("mouseup", mouseUpListener);
453
+ window.removeEventListener("touchend", mouseUpListener);
454
+ };
455
+ window.addEventListener("mouseup", mouseUpListener);
456
+ window.addEventListener("touchend", mouseUpListener);
457
+ }, "ColorPicker_component_sbMouseDown_Vor71dUNt7g", [
458
+ sbChange
459
+ ]);
460
+ return /* @__PURE__ */ qwik._jsxQ("div", {
461
+ class: {
462
+ "motion-safe:transition-all p-4 lum-bg-gray-900 flex gap-4 rounded-lg touch-none": true,
463
+ "flex": true,
464
+ "flex-col": !props.horizontal,
465
+ ...props1.class
466
+ }
467
+ }, {
468
+ id: qwik._fnSignal((p0) => p0.id, [
469
+ props
470
+ ], "p0.id"),
471
+ onInput$: /* @__PURE__ */ qwik.inlinedQrl((e, el) => {
472
+ const [setColor2] = qwik.useLexicalScope();
473
+ if (!el.dataset.value) return;
474
+ setColor2(el.dataset.value);
475
+ }, "ColorPicker_component_div_onInput_qqZiSKVe6wo", [
476
+ setColor
477
+ ])
478
+ }, [
479
+ /* @__PURE__ */ qwik._jsxQ("div", null, {
480
+ class: "flex gap-4"
481
+ }, [
482
+ /* @__PURE__ */ qwik._jsxQ("div", null, {
483
+ class: "w-[125px] h-[150px] rounded-md relative",
484
+ style: qwik._fnSignal((p0) => ({
485
+ background: `linear-gradient(to right, #FFFFFF, ${p0.hue.color})`
486
+ }), [
487
+ store
488
+ ], "{background:`linear-gradient(to right, #FFFFFF, ${p0.hue.color})`}"),
489
+ "preventdefault:mousedown": true,
490
+ "preventdefault:touchstart": true,
491
+ onMouseDown$: sbMouseDown,
492
+ onTouchStart$: sbMouseDown
493
+ }, [
494
+ /* @__PURE__ */ qwik._jsxQ("div", null, {
495
+ class: "w-[125px] h-[150px] rounded-[0.3rem] bg-gradient-to-b from-transparent to-black border border-gray-700"
496
+ }, null, 3, null),
497
+ /* @__PURE__ */ qwik._jsxQ("div", {
498
+ class: {
499
+ "absolute -top-2 -left-2 w-4 h-4 border rounded-full bg-white": true,
500
+ "border-white": getBrightness(hexNumberToRgb(hexStringToNumber(store.value))) < 0.5,
501
+ "border-black": getBrightness(hexNumberToRgb(hexStringToNumber(store.value))) > 0.5
502
+ }
503
+ }, {
504
+ style: qwik._fnSignal((p0) => ({
505
+ background: p0.value,
506
+ transform: `translate(${p0.sPosition}px, ${p0.bPosition}px)`
507
+ }), [
508
+ store
509
+ ], "{background:p0.value,transform:`translate(${p0.sPosition}px, ${p0.bPosition}px)`}")
510
+ }, null, 3, null)
511
+ ], 1, null),
512
+ /* @__PURE__ */ qwik._jsxQ("div", null, {
513
+ class: "h-[150px] relative w-2 border border-gray-700 rounded-md",
514
+ style: {
515
+ background: "linear-gradient(to bottom, #ff0000, #ff00ff, #0000ff, #00ffff, #00ff00, #ffff00, #ff0000)"
516
+ },
517
+ "preventdefault:mousedown": true,
518
+ "preventdefault:touchstart": true,
519
+ onMouseDown$: hueMouseDown,
520
+ onTouchStart$: hueMouseDown
521
+ }, /* @__PURE__ */ qwik._jsxQ("div", null, {
522
+ class: "absolute -bottom-2 -left-[5px] w-4 h-4 border border-white rounded-full bg-[#ff0000]",
523
+ style: qwik._fnSignal((p0) => ({
524
+ transform: `translateY(${-p0.hue.position}px)`,
525
+ background: p0.hue.color
526
+ }), [
527
+ store
528
+ ], "{transform:`translateY(${-p0.hue.position}px)`,background:p0.hue.color}")
529
+ }, null, 3, null), 3, null)
530
+ ], 1, null),
531
+ /* @__PURE__ */ qwik._jsxQ("div", null, {
532
+ class: "w-[150px] flex flex-wrap gap-1 justify-between"
533
+ }, [
534
+ (props.showInput ?? true) && /* @__PURE__ */ qwik._jsxQ("div", {
535
+ class: {
536
+ "flex w-[150px] pb-3 mb-2 border-b border-b-gray-700": true,
537
+ "flex-row gap-1": (props.preview ?? "left") == "left",
538
+ "flex-row-reverse gap-1": (props.preview ?? "left") == "right",
539
+ "flex-col": (props.preview ?? "left") == "top",
540
+ "flex-col-reverse": (props.preview ?? "left") == "bottom"
541
+ }
542
+ }, null, [
543
+ (props.preview ?? "left") != "full" && /* @__PURE__ */ qwik._jsxQ("div", {
544
+ class: {
545
+ "border border-gray-700": true,
546
+ "h-full aspect-square rounded-md": (props.preview ?? "left") == "left" || (props.preview ?? "left") == "right",
547
+ "w-full h-3": (props.preview ?? "left") == "top" || (props.preview ?? "left") == "bottom",
548
+ "rounded-t-md": (props.preview ?? "left") == "top",
549
+ "rounded-b-md": (props.preview ?? "left") == "bottom"
550
+ }
551
+ }, {
552
+ style: qwik._fnSignal((p0) => ({
553
+ backgroundColor: `${p0.value}`
554
+ }), [
555
+ store
556
+ ], "{backgroundColor:`${p0.value}`}")
557
+ }, null, 3, "Xr_0"),
558
+ /* @__PURE__ */ qwik._jsxQ("input", {
559
+ class: {
560
+ "w-full lum-input lum-pad-sm text-sm lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md": true,
561
+ "border-t-0 rounded-t-none": (props.preview ?? "left") == "top",
562
+ "border-b-0 rounded-b-none": (props.preview ?? "left") == "bottom"
563
+ },
564
+ style: (props.preview ?? "left") == "full" ? {
565
+ backgroundColor: `${store.value}`,
566
+ color: getBrightness(hexNumberToRgb(hexStringToNumber(store.value))) > 0.5 ? "black" : "white"
567
+ } : {}
568
+ }, {
569
+ value: qwik._fnSignal((p0) => p0.value, [
570
+ store
571
+ ], "p0.value"),
572
+ onInput$: /* @__PURE__ */ qwik.inlinedQrl((e, el) => {
573
+ const [setColor2] = qwik.useLexicalScope();
574
+ setColor2(el.value);
575
+ }, "ColorPicker_component_div_div_div_input_onInput_CQkhrhS8XsM", [
576
+ setColor
577
+ ])
578
+ }, null, 3, null)
579
+ ], 1, "Xr_1"),
580
+ (props.colors ?? [
581
+ "#FAEDCB",
582
+ "#C9E4DE",
583
+ "#C6DEF1",
584
+ "#DBCDF0",
585
+ "#F2C6DE",
586
+ "#FCD05C",
587
+ "#5FE2C5",
588
+ "#4498DB",
589
+ "#9863E7",
590
+ "#E43A96",
591
+ "#000000",
592
+ "#555555",
593
+ "#AAAAAA",
594
+ "#FFFFFF"
595
+ ]).map((color, i) => {
596
+ return /* @__PURE__ */ qwik._jsxQ("button", {
597
+ style: {
598
+ background: color,
599
+ outline: color === store.value ? "2px solid #ffffffaa" : void 0
600
+ },
601
+ onClick$: /* @__PURE__ */ qwik.inlinedQrl(() => {
602
+ const [color2, setColor2] = qwik.useLexicalScope();
603
+ setColor2(color2);
604
+ }, "ColorPicker_component_div_div_button_onClick_SZm6ZpemtlQ", [
605
+ color,
606
+ setColor
607
+ ])
608
+ }, {
609
+ class: {
610
+ "w-[1.6rem] h-[1.6rem] rounded-md hover:scale-110 motion-safe:transition-all duration-300 hover:duration-100 ease-in-out -outline-offset-1 outline outline-1 outline-white/30": true
611
+ }
612
+ }, null, 2, i);
613
+ }),
614
+ /* @__PURE__ */ qwik._jsxQ("button", null, {
615
+ class: "w-[1.6rem] h-[1.6rem] border border-gray-700 rounded-md hover:scale-110 motion-safe:transition-all duration-300 hover:duration-100 ease-in-out",
616
+ onClick$: /* @__PURE__ */ qwik.inlinedQrl(() => {
617
+ const [setColor2] = qwik.useLexicalScope();
618
+ const color = `#${Math.floor(Math.random() * 16777215).toString(16)}`;
619
+ setColor2(color);
620
+ }, "ColorPicker_component_div_div_button_onClick_1_sMsvaWHvSbk", [
621
+ setColor
622
+ ])
623
+ }, /* @__PURE__ */ qwik._jsxC(Shuffle, {
624
+ class: "fill-current text-gray-300 pl-0.5 p-0.5",
625
+ [qwik._IMMUTABLE]: {
626
+ class: qwik._IMMUTABLE
627
+ }
628
+ }, 3, "Xr_2"), 1, null)
629
+ ], 1, null)
630
+ ], 1, "Xr_3");
631
+ }, "ColorPicker_component_8ldznufwKro"));
632
+ const ChevronDown = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
633
+ return /* @__PURE__ */ qwik._jsxS("svg", {
634
+ xmlns: "http://www.w3.org/2000/svg",
635
+ viewBox: "0 0 512 512",
636
+ ...props,
637
+ get height() {
638
+ return props.width;
639
+ },
640
+ children: /* @__PURE__ */ qwik._jsxQ("path", null, {
641
+ fill: "none",
642
+ stroke: "currentColor",
643
+ "stroke-linecap": "round",
644
+ "stroke-linejoin": "round",
645
+ "stroke-width": "48",
646
+ d: "M112 184l144 144 144-144"
647
+ }, null, 3, null)
648
+ }, {
649
+ xmlns: qwik._IMMUTABLE,
650
+ viewBox: qwik._IMMUTABLE,
651
+ height: qwik._fnSignal((p0) => p0.width, [
652
+ props
653
+ ], "p0.width")
654
+ }, 0, "EL_0");
655
+ }, "ChevronDown_component_t7XDRYS4gVA"));
656
+ const Dropdown = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
657
+ return /* @__PURE__ */ qwik._jsxQ("div", null, {
658
+ class: "flex flex-col"
659
+ }, [
660
+ /* @__PURE__ */ qwik._jsxQ("label", null, {
661
+ for: qwik._fnSignal((p0) => p0.id, [
662
+ props
663
+ ], "p0.id"),
664
+ class: "text-gray-300 pb-1 select-none"
665
+ }, /* @__PURE__ */ qwik._jsxC(qwik.Slot, null, 3, "Q4_0"), 1, null),
666
+ /* @__PURE__ */ qwik._jsxC(DropdownRaw, {
667
+ ...props
668
+ }, 0, "Q4_1")
669
+ ], 1, "Q4_2");
670
+ }, "Dropdown_component_uFQ6p5skpCY"));
671
+ const DropdownRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
672
+ const props1 = qwik._restProps(props, [
673
+ "id",
674
+ "values",
675
+ "class",
676
+ "display",
677
+ "hover"
678
+ ]);
679
+ const store = qwik.useStore({
680
+ opened: false,
681
+ value: props1.value
682
+ });
683
+ return /* @__PURE__ */ qwik._jsxQ("div", null, {
684
+ class: qwik._fnSignal((p0) => ({
685
+ "relative touch-manipulation": true,
686
+ "group": p0.hover
687
+ }), [
688
+ props
689
+ ], '{"relative touch-manipulation":true,"group":p0.hover}')
690
+ }, [
691
+ props.values && /* @__PURE__ */ qwik._jsxS("select", {
692
+ ...props1,
693
+ get id() {
694
+ return props.id;
695
+ },
696
+ class: {
697
+ "hidden": true
698
+ },
699
+ children: props.values.map((value, i) => {
700
+ return /* @__PURE__ */ qwik._jsxQ("option", {
701
+ value: qwik._wrapSignal(value, "value")
702
+ }, null, `${value.value}`, 1, i);
703
+ })
704
+ }, {
705
+ id: qwik._fnSignal((p0) => p0.id, [
706
+ props
707
+ ], "p0.id"),
708
+ class: qwik._IMMUTABLE
709
+ }, 0, "Q4_3"),
710
+ /* @__PURE__ */ qwik._jsxQ("button", null, {
711
+ class: qwik._fnSignal((p0) => ({
712
+ "lum-btn lum-pad-md text-base lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md": true,
713
+ ...p0.class
714
+ }), [
715
+ props
716
+ ], '{"lum-btn lum-pad-md text-base lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md":true,...p0.class}'),
717
+ onClick$: /* @__PURE__ */ qwik.inlinedQrl(() => {
718
+ const [store2] = qwik.useLexicalScope();
719
+ store2.opened = !store2.opened;
720
+ }, "DropdownRaw_component_div_button_onClick_fdpCVk0MoxA", [
721
+ store
722
+ ])
723
+ }, [
724
+ qwik._fnSignal((p0) => p0.display, [
725
+ props
726
+ ], "p0.display"),
727
+ !props.display && props.values && /* @__PURE__ */ qwik._jsxQ("span", null, {
728
+ id: qwik._fnSignal((p0) => `lui-${p0.id}-name`, [
729
+ props
730
+ ], "`lui-${p0.id}-name`"),
731
+ class: "flex-1 text-left"
732
+ }, props.values.find((value) => value.value.toString() === store.value)?.name ?? props.values[0].name, 1, "Q4_4"),
733
+ /* @__PURE__ */ qwik._jsxC(ChevronDown, {
734
+ width: 16,
735
+ class: {
736
+ "motion-safe:transition-all ease-in-out": true,
737
+ "transform rotate-180": store.opened,
738
+ "group-hover:transform group-hover:rotate-180 duration-300 group-hover:duration-100": props.hover
739
+ },
740
+ [qwik._IMMUTABLE]: {
741
+ width: qwik._IMMUTABLE
742
+ }
743
+ }, 3, "Q4_5")
744
+ ], 1, null),
745
+ /* @__PURE__ */ qwik._jsxQ("div", {
746
+ class: {
747
+ "transition-all ease-in-out absolute top-full pt-2 left-0 z-[1000] ": true,
748
+ "opacity-0 scale-95 pointer-events-none": !store.opened,
749
+ "group-hover:pointer-events-auto group-hover:opacity-100 group-hover:scale-100 duration-300 group-hover:duration-100": props.hover
750
+ }
751
+ }, null, /* @__PURE__ */ qwik._jsxQ("div", null, {
752
+ id: qwik._fnSignal((p0) => `lui-${p0.id}-opts`, [
753
+ props
754
+ ], "`lui-${p0.id}-opts`"),
755
+ class: {
756
+ "motion-safe:transition-all p-1 gap-1 lum-bg-gray-800 backdrop-blur-xl flex flex-col border max-h-72 lum-scroll overflow-auto select-none rounded-md": true
757
+ }
758
+ }, [
759
+ props.values?.map(({ name, value }, i) => {
760
+ return /* @__PURE__ */ qwik._jsxQ("button", {
761
+ onClick$: /* @__PURE__ */ qwik.inlinedQrl(() => {
762
+ const [props2, store2, value2] = qwik.useLexicalScope();
763
+ store2.opened = false;
764
+ const select = document.getElementById(props2.id);
765
+ if (select) {
766
+ select.value = value2.toString();
767
+ select.dispatchEvent(new Event("change"));
768
+ }
769
+ store2.value = value2.toString();
770
+ }, "DropdownRaw_component_div_div_div_button_onClick_QpxUSf7x1W0", [
771
+ props,
772
+ store,
773
+ value
774
+ ])
775
+ }, {
776
+ class: {
777
+ "lum-btn lum-pad-md text-base lum-bg-transparent": true
778
+ }
779
+ }, name, 0, i);
780
+ }),
781
+ /* @__PURE__ */ qwik._jsxC(qwik.Slot, {
782
+ name: "extra-buttons",
783
+ [qwik._IMMUTABLE]: {
784
+ name: qwik._IMMUTABLE
785
+ }
786
+ }, 3, "Q4_6")
787
+ ], 1, null), 1, null)
788
+ ], 1, "Q4_7");
789
+ }, "DropdownRaw_component_DHfJGj0uQpE"));
790
+ const Link = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
791
+ return /* @__PURE__ */ qwik._jsxS("svg", {
792
+ xmlns: "http://www.w3.org/2000/svg",
793
+ viewBox: "0 0 512 512",
794
+ ...props,
795
+ get height() {
796
+ return props.width;
797
+ },
798
+ children: /* @__PURE__ */ qwik._jsxQ("path", null, {
799
+ d: "M208 352h-64a96 96 0 010-192h64M304 160h64a96 96 0 010 192h-64M163.29 256h187.42",
800
+ fill: "none",
801
+ stroke: "currentColor",
802
+ "stroke-linecap": "round",
803
+ "stroke-linejoin": "round",
804
+ "stroke-width": "36"
805
+ }, null, 3, null)
806
+ }, {
807
+ xmlns: qwik._IMMUTABLE,
808
+ viewBox: qwik._IMMUTABLE,
809
+ height: qwik._fnSignal((p0) => p0.width, [
810
+ props
811
+ ], "p0.width")
812
+ }, 0, "zW_0");
813
+ }, "Link_component_fiB6yg0RKjk"));
814
+ const Header = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
815
+ qwik._jsxBranch();
816
+ const props1 = qwik._restProps(props, [
817
+ "id",
818
+ "anchor",
819
+ "subheader"
820
+ ]);
821
+ let Component = /* @__PURE__ */ qwik._jsxC(jsxRuntime.Fragment, {
822
+ children: /* @__PURE__ */ qwik._jsxQ("h2", {
823
+ class: {
824
+ "flex gap-2 group items-center font-bold text-xl sm:text-2xl whitespace-nowrap text-white": true,
825
+ ...props1.class
826
+ }
827
+ }, null, [
828
+ /* @__PURE__ */ qwik._jsxC(qwik.Slot, null, 3, "hw_0"),
829
+ props.id && /* @__PURE__ */ qwik._jsxC(Anchor, {
830
+ get id() {
831
+ return props.id;
832
+ },
833
+ [qwik._IMMUTABLE]: {
834
+ id: qwik._fnSignal((p0) => p0.id, [
835
+ props
836
+ ], "p0.id")
837
+ }
838
+ }, 3, "hw_1"),
839
+ props.anchor && props.id && /* @__PURE__ */ qwik._jsxQ("a", null, {
840
+ href: qwik._fnSignal((p0) => `#${p0.id}`, [
841
+ props
842
+ ], "`#${p0.id}`"),
843
+ onClick$: /* @__PURE__ */ qwik.inlinedQrl(() => {
844
+ navigator.clipboard.writeText(window.location.href);
845
+ }, "Header_component_Component_Fragment_h2_a_onClick_tdwReSG5ZBA")
846
+ }, /* @__PURE__ */ qwik._jsxC(Link, {
847
+ class: "transition-all opacity-10 group-hover:opacity-100 duration-300 group-hover:duration-100",
848
+ width: 24,
849
+ [qwik._IMMUTABLE]: {
850
+ class: qwik._IMMUTABLE,
851
+ width: qwik._IMMUTABLE
852
+ }
853
+ }, 3, "hw_2"), 1, "hw_3")
854
+ ], 1, null)
855
+ }, 1, "hw_4");
856
+ if (props.subheader) Component = /* @__PURE__ */ qwik._jsxQ("div", null, {
857
+ class: "flex flex-col gap-1"
858
+ }, [
859
+ Component,
860
+ /* @__PURE__ */ qwik._jsxQ("h3", null, {
861
+ class: "flex items-center text-gray-400 text-sm"
862
+ }, qwik._fnSignal((p0) => p0.subheader, [
863
+ props
864
+ ], "p0.subheader"), 3, null)
865
+ ], 1, "hw_5");
866
+ return Component;
867
+ }, "Header_component_JY2gvGRuOjU"));
868
+ const Nav = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
869
+ const props1 = qwik._restProps(props, [
870
+ "fixed",
871
+ "floating",
872
+ "colorClass"
873
+ ]);
874
+ const menu = qwik.useSignal(false);
875
+ return /* @__PURE__ */ qwik._jsxS("nav", {
876
+ ...props1,
877
+ class: {
878
+ "motion-safe:transition-all duration-200 flex flex-col top-0 left-0 w-full z-50": true,
879
+ "fixed": props.fixed,
880
+ "absolute": !props.fixed,
881
+ ...props1.class
882
+ },
883
+ children: [
884
+ /* @__PURE__ */ qwik._jsxQ("div", {
885
+ class: {
886
+ "sm:hidden motion-safe:transition-all flex flex-col px-2 items-center absolute w-full top-full": true,
887
+ "mt-2": menu.value,
888
+ "opacity-0 pointer-events-none": !menu.value,
889
+ "before:backdrop-blur-lg": !(props.colorClass ?? "lum-bg-gray-900").includes("transparent"),
890
+ 'before:absolute before:content-[""] before:w-full before:h-full before:drop-shadow-xl before:-z-10 before:rounded-lg': true
891
+ }
892
+ }, null, /* @__PURE__ */ qwik._jsxQ("div", null, {
893
+ class: qwik._fnSignal((p0) => ({
894
+ [p0.colorClass ?? "lum-bg-gray-900"]: true,
895
+ "flex flex-col gap-2 motion-safe:transition-all max-w-7xl w-full px-2 py-4 border rounded-lg": true
896
+ }), [
897
+ props
898
+ ], '{[p0.colorClass??"lum-bg-gray-900"]:true,"flex flex-col gap-2 motion-safe:transition-all max-w-7xl w-full px-2 py-4 border rounded-lg":true}')
899
+ }, /* @__PURE__ */ qwik._jsxC(qwik.Slot, {
900
+ name: "mobile",
901
+ [qwik._IMMUTABLE]: {
902
+ name: qwik._IMMUTABLE
903
+ }
904
+ }, 3, "03_0"), 1, null), 1, null),
905
+ /* @__PURE__ */ qwik._jsxQ("div", {
906
+ class: {
907
+ [props.colorClass ?? "lum-bg-gray-900"]: !props.floating,
908
+ "border-t-0 border-x-0": !props.floating,
909
+ "before:backdrop-blur-lg": !(props.colorClass ?? "lum-bg-gray-900").includes("transparent") && !props.floating,
910
+ 'before:absolute before:content-[""] before:w-full before:h-full before:drop-shadow-xl before:-z-10': !props.floating,
911
+ "relative mt-2 mx-2": props.floating
912
+ }
913
+ }, null, /* @__PURE__ */ qwik._jsxQ("div", {
914
+ class: {
915
+ "flex justify-evenly w-full mx-auto px-2 max-w-7xl": true,
916
+ [props.colorClass ?? "lum-bg-gray-900"]: props.floating,
917
+ "border rounded-lg": props.floating,
918
+ "before:backdrop-blur-lg": !(props.colorClass ?? "lum-bg-gray-900").includes("transparent") && props.floating,
919
+ 'before:absolute before:content-[""] before:w-full before:max-w-7xl before:h-full before:rounded-lg before:drop-shadow-xl before:-z-10': props.floating
920
+ }
921
+ }, null, [
922
+ /* @__PURE__ */ qwik._jsxQ("div", null, {
923
+ class: "flex items-center flex-1 gap-2 py-2 justify-start"
924
+ }, /* @__PURE__ */ qwik._jsxC(qwik.Slot, {
925
+ name: "start",
926
+ [qwik._IMMUTABLE]: {
927
+ name: qwik._IMMUTABLE
928
+ }
929
+ }, 3, "03_1"), 1, null),
930
+ /* @__PURE__ */ qwik._jsxQ("div", null, {
931
+ class: "flex items-center flex-1 gap-2 py-2 justify-center"
932
+ }, /* @__PURE__ */ qwik._jsxC(qwik.Slot, {
933
+ name: "center",
934
+ [qwik._IMMUTABLE]: {
935
+ name: qwik._IMMUTABLE
936
+ }
937
+ }, 3, "03_2"), 1, null),
938
+ /* @__PURE__ */ qwik._jsxQ("div", null, {
939
+ class: "flex items-center flex-1 gap-2 py-2 justify-end"
940
+ }, [
941
+ /* @__PURE__ */ qwik._jsxC(qwik.Slot, {
942
+ name: "end",
943
+ [qwik._IMMUTABLE]: {
944
+ name: qwik._IMMUTABLE
945
+ }
946
+ }, 3, "03_3"),
947
+ /* @__PURE__ */ qwik._jsxQ("button", null, {
948
+ class: "lum-btn lum-pad-equal-md lum-bg-transparent sm:hidden",
949
+ onClick$: /* @__PURE__ */ qwik.inlinedQrl(() => {
950
+ const [menu2] = qwik.useLexicalScope();
951
+ return menu2.value = !menu2.value;
952
+ }, "Nav_component_nav_div_div_div_button_onClick_WiYpOE6A0Vc", [
953
+ menu
954
+ ])
955
+ }, /* @__PURE__ */ qwik._jsxQ("svg", null, {
956
+ class: "w-6 h-6",
957
+ fill: "none",
958
+ stroke: "currentColor",
959
+ viewBox: "0 0 24 24",
960
+ xmlns: "http://www.w3.org/2000/svg"
961
+ }, /* @__PURE__ */ qwik._jsxQ("path", null, {
962
+ "stroke-linecap": "round",
963
+ "stroke-linejoin": "round",
964
+ "stroke-width": "2",
965
+ d: "M4 6h16M4 12h16M4 18h16"
966
+ }, null, 3, null), 3, null), 3, null)
967
+ ], 1, null)
968
+ ], 1, null), 1, null)
969
+ ]
970
+ }, null, 0, "03_4");
971
+ }, "Nav_component_GVA94DyavJM"));
972
+ const Plus = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
973
+ return /* @__PURE__ */ qwik._jsxS("svg", {
974
+ xmlns: "http://www.w3.org/2000/svg",
975
+ viewBox: "0 0 512 512",
976
+ ...props,
977
+ get height() {
978
+ return props.width;
979
+ },
980
+ children: /* @__PURE__ */ qwik._jsxQ("path", null, {
981
+ fill: "none",
982
+ stroke: "currentColor",
983
+ "stroke-linecap": "round",
984
+ "stroke-linejoin": "round",
985
+ "stroke-width": "32",
986
+ d: "M256 112v288M400 256H112"
987
+ }, null, 3, null)
988
+ }, {
989
+ xmlns: qwik._IMMUTABLE,
990
+ viewBox: qwik._IMMUTABLE,
991
+ height: qwik._fnSignal((p0) => p0.width, [
992
+ props
993
+ ], "p0.width")
994
+ }, 0, "1y_0");
995
+ }, "Plus_component_MKiwkkJ7or4"));
996
+ const Minus = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
997
+ return /* @__PURE__ */ qwik._jsxS("svg", {
998
+ xmlns: "http://www.w3.org/2000/svg",
999
+ viewBox: "0 0 512 512",
1000
+ ...props,
1001
+ get height() {
1002
+ return props.width;
1003
+ },
1004
+ children: /* @__PURE__ */ qwik._jsxQ("path", null, {
1005
+ fill: "none",
1006
+ stroke: "currentColor",
1007
+ "stroke-linecap": "round",
1008
+ "stroke-linejoin": "round",
1009
+ "stroke-width": "32",
1010
+ d: "M400 256H112"
1011
+ }, null, 3, null)
1012
+ }, {
1013
+ xmlns: qwik._IMMUTABLE,
1014
+ viewBox: qwik._IMMUTABLE,
1015
+ height: qwik._fnSignal((p0) => p0.width, [
1016
+ props
1017
+ ], "p0.width")
1018
+ }, 0, "tk_0");
1019
+ }, "Minus_component_eaRlUyV3g0s"));
1020
+ const NumberInput = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1021
+ return /* @__PURE__ */ qwik._jsxQ("div", null, {
1022
+ class: "flex flex-col"
1023
+ }, [
1024
+ /* @__PURE__ */ qwik._jsxQ("label", null, {
1025
+ for: qwik._fnSignal((p0) => p0.id, [
1026
+ props
1027
+ ], "p0.id"),
1028
+ class: "text-gray-300 pb-1 select-none"
1029
+ }, /* @__PURE__ */ qwik._jsxC(qwik.Slot, null, 3, "kR_0"), 1, null),
1030
+ /* @__PURE__ */ qwik._jsxC(NumberInputRaw, {
1031
+ ...props,
1032
+ children: void 0
1033
+ }, 0, "kR_1")
1034
+ ], 1, "kR_2");
1035
+ }, "NumberInput_component_2YJwSaeO64g"));
1036
+ const NumberInputRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1037
+ const props1 = qwik._restProps(props, [
1038
+ "input",
1039
+ "onDecrement$",
1040
+ "onIncrement$",
1041
+ "value",
1042
+ "step"
1043
+ ]);
1044
+ qwik.useStylesQrl(/* @__PURE__ */ qwik.inlinedQrl(`
1045
+ input::-webkit-outer-spin-button,
1046
+ input::-webkit-inner-spin-button {
1047
+ -webkit-appearance: none;
1048
+ margin: 0;
1049
+ }
1050
+ input[type=number] {
1051
+ -moz-appearance: textfield;
1052
+ }
1053
+ `, "NumberInputRaw_component_useStyles_PL07GuY3qew"));
1054
+ return /* @__PURE__ */ qwik._jsxQ("div", null, {
1055
+ class: qwik._fnSignal((p0) => ({
1056
+ "flex text-gray-50 touch-manipulation": true,
1057
+ "gap-2": !p0.input
1058
+ }), [
1059
+ props
1060
+ ], '{"flex text-gray-50 touch-manipulation":true,"gap-2":!p0.input}')
1061
+ }, [
1062
+ /* @__PURE__ */ qwik._jsxQ("button", {
1063
+ disabled: props1.min ? (props.value ?? 0) <= props1.min : false,
1064
+ onClick$: props.input ? /* @__PURE__ */ qwik.inlinedQrl((event, element) => {
1065
+ const [props2] = qwik.useLexicalScope();
1066
+ const siblingInput = element.nextElementSibling;
1067
+ siblingInput.stepDown();
1068
+ props2.onDecrement$(event, element, siblingInput);
1069
+ }, "NumberInputRaw_component_div_button_onClick_pQIkaGwWooU", [
1070
+ props
1071
+ ]) : props.onDecrement$
1072
+ }, {
1073
+ class: {
1074
+ "lum-btn lum-pad-sm text-sm lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md": true
1075
+ },
1076
+ "data-action": "decrement",
1077
+ "aria-label": "Decrement"
1078
+ }, /* @__PURE__ */ qwik._jsxC(Minus, {
1079
+ width: "24",
1080
+ class: "fill-current",
1081
+ [qwik._IMMUTABLE]: {
1082
+ width: qwik._IMMUTABLE,
1083
+ class: qwik._IMMUTABLE
1084
+ }
1085
+ }, 3, "kR_3"), 0, null),
1086
+ props.input && /* @__PURE__ */ qwik._jsxS("input", {
1087
+ ...props1,
1088
+ type: "number",
1089
+ get value() {
1090
+ return props.value ?? 0;
1091
+ },
1092
+ get step() {
1093
+ return props.step ?? 1;
1094
+ },
1095
+ class: {
1096
+ "lum-input lum-pad-sm text-sm lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md": true,
1097
+ "text-center": true,
1098
+ ...props1.class
1099
+ }
1100
+ }, {
1101
+ type: qwik._IMMUTABLE,
1102
+ value: qwik._fnSignal((p0) => p0.value ?? 0, [
1103
+ props
1104
+ ], "p0.value??0"),
1105
+ step: qwik._fnSignal((p0) => p0.step ?? 1, [
1106
+ props
1107
+ ], "p0.step??1")
1108
+ }, 0, "kR_4"),
1109
+ /* @__PURE__ */ qwik._jsxQ("button", {
1110
+ disabled: props1.max ? (props.value ?? 0) >= props1.max : false,
1111
+ onClick$: props.input ? /* @__PURE__ */ qwik.inlinedQrl((event, element) => {
1112
+ const [props2] = qwik.useLexicalScope();
1113
+ const siblingInput = element.previousElementSibling;
1114
+ siblingInput.stepUp();
1115
+ props2.onIncrement$(event, element, siblingInput);
1116
+ }, "NumberInputRaw_component_div_button_onClick_1_uUOhUKFggTk", [
1117
+ props
1118
+ ]) : props.onIncrement$
1119
+ }, {
1120
+ class: {
1121
+ "lum-btn lum-pad-sm text-sm lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md": true
1122
+ },
1123
+ "data-action": "increment",
1124
+ "aria-label": "Increment"
1125
+ }, /* @__PURE__ */ qwik._jsxC(Plus, {
1126
+ width: "24",
1127
+ class: "fill-current",
1128
+ [qwik._IMMUTABLE]: {
1129
+ width: qwik._IMMUTABLE,
1130
+ class: qwik._IMMUTABLE
1131
+ }
1132
+ }, 3, "kR_5"), 0, null)
1133
+ ], 1, "kR_6");
1134
+ }, "NumberInputRaw_component_M7TIOjLeBhU"));
1135
+ const toggleOnColorClasses = {
1136
+ slate: {
1137
+ checked: "peer-checked:bg-slate-600 peer-checked:border-slate-500 peer-checked:hover:bg-slate-500 peer-checked:active:bg-slate-400",
1138
+ checkedAfter: "peer-checked:after:bg-slate-500 peer-checked:after:border-slate-400 peer-checked:after:hover:bg-slate-400 peer-checked:after:active:bg-slate-300"
1139
+ },
1140
+ gray: {
1141
+ checked: "peer-checked:bg-gray-600 peer-checked:border-gray-500 peer-checked:hover:bg-gray-500 peer-checked:active:bg-gray-400",
1142
+ checkedAfter: "peer-checked:after:bg-gray-500 peer-checked:after:border-gray-400 peer-checked:after:hover:bg-gray-400 peer-checked:after:active:bg-gray-300"
1143
+ },
1144
+ darkgray: {
1145
+ checked: "peer-checked:bg-gray-700 peer-checked:border-gray-600 peer-checked:hover:bg-gray-600 peer-checked:active:bg-gray-500",
1146
+ checkedAfter: "peer-checked:after:bg-gray-600 peer-checked:after:border-gray-500 peer-checked:after:hover:bg-gray-500 peer-checked:after:active:bg-gray-400"
1147
+ },
1148
+ darkergray: {
1149
+ checked: "peer-checked:bg-gray-800 peer-checked:border-gray-700 peer-checked:hover:bg-gray-700 peer-checked:active:bg-gray-600",
1150
+ checkedAfter: "peer-checked:after:bg-gray-700 peer-checked:after:border-gray-600 peer-checked:after:hover:bg-gray-600 peer-checked:after:active:bg-gray-500"
1151
+ },
1152
+ zinc: {
1153
+ checked: "peer-checked:bg-zinc-600 peer-checked:border-zinc-500 peer-checked:hover:bg-zinc-500 peer-checked:active:bg-zinc-400",
1154
+ checkedAfter: "peer-checked:after:bg-zinc-500 peer-checked:after:border-zinc-400 peer-checked:after:hover:bg-zinc-400 peer-checked:after:active:bg-zinc-300"
1155
+ },
1156
+ neutral: {
1157
+ checked: "peer-checked:bg-neutral-600 peer-checked:border-neutral-500 peer-checked:hover:bg-neutral-500 peer-checked:active:bg-neutral-400",
1158
+ checkedAfter: "peer-checked:after:bg-neutral-500 peer-checked:after:border-neutral-400 peer-checked:after:hover:bg-neutral-400 peer-checked:after:active:bg-neutral-300"
1159
+ },
1160
+ stone: {
1161
+ checked: "peer-checked:bg-stone-600 peer-checked:border-stone-500 peer-checked:hover:bg-stone-500 peer-checked:active:bg-stone-400",
1162
+ checkedAfter: "peer-checked:after:bg-stone-500 peer-checked:after:border-stone-400 peer-checked:after:hover:bg-stone-400 peer-checked:after:active:bg-stone-300"
1163
+ },
1164
+ red: {
1165
+ checked: "peer-checked:bg-red-600 peer-checked:border-red-500 peer-checked:hover:bg-red-500 peer-checked:active:bg-red-400",
1166
+ checkedAfter: "peer-checked:after:bg-red-500 peer-checked:after:border-red-400 peer-checked:after:hover:bg-red-400 peer-checked:after:active:bg-red-300"
1167
+ },
1168
+ orange: {
1169
+ checked: "peer-checked:bg-orange-600 peer-checked:border-orange-500 peer-checked:hover:bg-orange-500 peer-checked:active:bg-orange-400",
1170
+ checkedAfter: "peer-checked:after:bg-orange-500 peer-checked:after:border-orange-400 peer-checked:after:hover:bg-orange-400 peer-checked:after:active:bg-orange-300"
1171
+ },
1172
+ amber: {
1173
+ checked: "peer-checked:bg-amber-600 peer-checked:border-amber-500 peer-checked:hover:bg-amber-500 peer-checked:active:bg-amber-400",
1174
+ checkedAfter: "peer-checked:after:bg-amber-500 peer-checked:after:border-amber-400 peer-checked:after:hover:bg-amber-400 peer-checked:after:active:bg-amber-300"
1175
+ },
1176
+ yellow: {
1177
+ checked: "peer-checked:bg-yellow-600 peer-checked:border-yellow-500 peer-checked:hover:bg-yellow-500 peer-checked:active:bg-yellow-400",
1178
+ checkedAfter: "peer-checked:after:bg-yellow-500 peer-checked:after:border-yellow-400 peer-checked:after:hover:bg-yellow-400 peer-checked:after:active:bg-yellow-300"
1179
+ },
1180
+ lime: {
1181
+ checked: "peer-checked:bg-lime-600 peer-checked:border-lime-500 peer-checked:hover:bg-lime-500 peer-checked:active:bg-lime-400",
1182
+ checkedAfter: "peer-checked:after:bg-lime-500 peer-checked:after:border-lime-400 peer-checked:after:hover:bg-lime-400 peer-checked:after:active:bg-lime-300"
1183
+ },
1184
+ green: {
1185
+ checked: "peer-checked:bg-green-600 peer-checked:border-green-500 peer-checked:hover:bg-green-500 peer-checked:active:bg-green-400",
1186
+ checkedAfter: "peer-checked:after:bg-green-500 peer-checked:after:border-green-400 peer-checked:after:hover:bg-green-400 peer-checked:after:active:bg-green-300"
1187
+ },
1188
+ emerald: {
1189
+ checked: "peer-checked:bg-emerald-600 peer-checked:border-emerald-500 peer-checked:hover:bg-emerald-500 peer-checked:active:bg-emerald-400",
1190
+ checkedAfter: "peer-checked:after:bg-emerald-500 peer-checked:after:border-emerald-400 peer-checked:after:hover:bg-emerald-400 peer-checked:after:active:bg-emerald-300"
1191
+ },
1192
+ teal: {
1193
+ checked: "peer-checked:bg-teal-600 peer-checked:border-teal-500 peer-checked:hover:bg-teal-500 peer-checked:active:bg-teal-400",
1194
+ checkedAfter: "peer-checked:after:bg-teal-500 peer-checked:after:border-teal-400 peer-checked:after:hover:bg-teal-400 peer-checked:after:active:bg-teal-300"
1195
+ },
1196
+ cyan: {
1197
+ checked: "peer-checked:bg-cyan-600 peer-checked:border-cyan-500 peer-checked:hover:bg-cyan-500 peer-checked:active:bg-cyan-400",
1198
+ checkedAfter: "peer-checked:after:bg-cyan-500 peer-checked:after:border-cyan-400 peer-checked:after:hover:bg-cyan-400 peer-checked:after:active:bg-cyan-300"
1199
+ },
1200
+ sky: {
1201
+ checked: "peer-checked:bg-sky-600 peer-checked:border-sky-500 peer-checked:hover:bg-sky-500 peer-checked:active:bg-sky-400",
1202
+ checkedAfter: "peer-checked:after:bg-sky-500 peer-checked:after:border-sky-400 peer-checked:after:hover:bg-sky-400 peer-checked:after:active:bg-sky-300"
1203
+ },
1204
+ blue: {
1205
+ checked: "peer-checked:bg-blue-600 peer-checked:border-blue-500 peer-checked:hover:bg-blue-500 peer-checked:active:bg-blue-400",
1206
+ checkedAfter: "peer-checked:after:bg-blue-500 peer-checked:after:border-blue-400 peer-checked:after:hover:bg-blue-400 peer-checked:after:active:bg-blue-300"
1207
+ },
1208
+ indigo: {
1209
+ checked: "peer-checked:bg-indigo-600 peer-checked:border-indigo-500 peer-checked:hover:bg-indigo-500 peer-checked:active:bg-indigo-400",
1210
+ checkedAfter: "peer-checked:after:bg-indigo-500 peer-checked:after:border-indigo-400 peer-checked:after:hover:bg-indigo-400 peer-checked:after:active:bg-indigo-300"
1211
+ },
1212
+ violet: {
1213
+ checked: "peer-checked:bg-violet-600 peer-checked:border-violet-500 peer-checked:hover:bg-violet-500 peer-checked:active:bg-violet-400",
1214
+ checkedAfter: "peer-checked:after:bg-violet-500 peer-checked:after:border-violet-400 peer-checked:after:hover:bg-violet-400 peer-checked:after:active:bg-violet-300"
1215
+ },
1216
+ purple: {
1217
+ checked: "peer-checked:bg-purple-600 peer-checked:border-purple-500 peer-checked:hover:bg-purple-500 peer-checked:active:bg-purple-400",
1218
+ checkedAfter: "peer-checked:after:bg-purple-500 peer-checked:after:border-purple-400 peer-checked:after:hover:bg-purple-400 peer-checked:after:active:bg-purple-300"
1219
+ },
1220
+ fuchsia: {
1221
+ checked: "peer-checked:bg-fuchsia-600 peer-checked:border-fuchsia-500 peer-checked:hover:bg-fuchsia-500 peer-checked:active:bg-fuchsia-400",
1222
+ checkedAfter: "peer-checked:after:bg-fuchsia-500 peer-checked:after:border-fuchsia-400 peer-checked:after:hover:bg-fuchsia-400 peer-checked:after:active:bg-fuchsia-300"
1223
+ },
1224
+ pink: {
1225
+ checked: "peer-checked:bg-pink-600 peer-checked:border-pink-500 peer-checked:hover:bg-pink-500 peer-checked:active:bg-pink-400",
1226
+ checkedAfter: "peer-checked:after:bg-pink-500 peer-checked:after:border-pink-400 peer-checked:after:hover:bg-pink-400 peer-checked:after:active:bg-pink-300"
1227
+ },
1228
+ rose: {
1229
+ checked: "peer-checked:bg-rose-600 peer-checked:border-rose-500 peer-checked:hover:bg-rose-500 peer-checked:active:bg-rose-400",
1230
+ checkedAfter: "peer-checked:after:bg-rose-500 peer-checked:after:border-rose-400 peer-checked:after:hover:bg-rose-400 peer-checked:after:active:bg-rose-300"
1231
+ }
1232
+ };
1233
+ const toggleOffColorClasses = {
1234
+ slate: {
1235
+ unchecked: "bg-slate-700 border-slate-600 hover:bg-slate-600 active:bg-slate-500",
1236
+ uncheckedAfter: "after:bg-slate-600 after:border-slate-500 after:hover:bg-slate-500 after:active:bg-slate-400"
1237
+ },
1238
+ gray: {
1239
+ unchecked: "bg-gray-700 border-gray-600 hover:bg-gray-600 active:bg-gray-500",
1240
+ uncheckedAfter: "after:bg-gray-600 after:border-gray-500 after:hover:bg-gray-500 after:active:bg-gray-400"
1241
+ },
1242
+ darkgray: {
1243
+ unchecked: "bg-gray-800 border-gray-700 hover:bg-gray-700 active:bg-gray-600",
1244
+ uncheckedAfter: "after:bg-gray-700 after:border-gray-600 after:hover:bg-gray-600 after:active:bg-gray-500"
1245
+ },
1246
+ darkergray: {
1247
+ unchecked: "bg-gray-900 border-gray-800 hover:bg-gray-800 active:bg-gray-700",
1248
+ uncheckedAfter: "after:bg-gray-800 after:border-gray-700 after:hover:bg-gray-700 after:active:bg-gray-600"
1249
+ },
1250
+ zinc: {
1251
+ unchecked: "bg-zinc-700 border-zinc-600 hover:bg-zinc-600 active:bg-zinc-500",
1252
+ uncheckedAfter: "after:bg-zinc-600 after:border-zinc-500 after:hover:bg-zinc-500 after:active:bg-zinc-400"
1253
+ },
1254
+ neutral: {
1255
+ unchecked: "bg-neutral-700 border-neutral-600 hover:bg-neutral-600 active:bg-neutral-500",
1256
+ uncheckedAfter: "after:bg-neutral-600 after:border-neutral-500 after:hover:bg-neutral-500 after:active:bg-neutral-400"
1257
+ },
1258
+ stone: {
1259
+ unchecked: "bg-stone-700 border-stone-600 hover:bg-stone-600 active:bg-stone-500",
1260
+ uncheckedAfter: "after:bg-stone-600 after:border-stone-500 after:hover:bg-stone-500 after:active:bg-stone-400"
1261
+ },
1262
+ red: {
1263
+ unchecked: "bg-red-700 border-red-600 hover:bg-red-600 active:bg-red-500",
1264
+ uncheckedAfter: "after:bg-red-600 after:border-red-500 after:hover:bg-red-500 after:active:bg-red-400"
1265
+ },
1266
+ orange: {
1267
+ unchecked: "bg-orange-700 border-orange-600 hover:bg-orange-600 active:bg-orange-500",
1268
+ uncheckedAfter: "after:bg-orange-600 after:border-orange-500 after:hover:bg-orange-500 after:active:bg-orange-400"
1269
+ },
1270
+ amber: {
1271
+ unchecked: "bg-amber-700 border-amber-600 hover:bg-amber-600 active:bg-amber-500",
1272
+ uncheckedAfter: "after:bg-amber-600 after:border-amber-500 after:hover:bg-amber-500 after:active:bg-amber-400"
1273
+ },
1274
+ yellow: {
1275
+ unchecked: "bg-yellow-700 border-yellow-600 hover:bg-yellow-600 active:bg-yellow-500",
1276
+ uncheckedAfter: "after:bg-yellow-600 after:border-yellow-500 after:hover:bg-yellow-500 after:active:bg-yellow-400"
1277
+ },
1278
+ lime: {
1279
+ unchecked: "bg-lime-700 border-lime-600 hover:bg-lime-600 active:bg-lime-500",
1280
+ uncheckedAfter: "after:bg-lime-600 after:border-lime-500 after:hover:bg-lime-500 after:active:bg-lime-400"
1281
+ },
1282
+ green: {
1283
+ unchecked: "bg-green-700 border-green-600 hover:bg-green-600 active:bg-green-500",
1284
+ uncheckedAfter: "after:bg-green-600 after:border-green-500 after:hover:bg-green-500 after:active:bg-green-400"
1285
+ },
1286
+ emerald: {
1287
+ unchecked: "bg-emerald-700 border-emerald-600 hover:bg-emerald-600 active:bg-emerald-500",
1288
+ uncheckedAfter: "after:bg-emerald-600 after:border-emerald-500 after:hover:bg-emerald-500 after:active:bg-emerald-400"
1289
+ },
1290
+ teal: {
1291
+ unchecked: "bg-teal-700 border-teal-600 hover:bg-teal-600 active:bg-teal-500",
1292
+ uncheckedAfter: "after:bg-teal-600 after:border-teal-500 after:hover:bg-teal-500 after:active:bg-teal-400"
1293
+ },
1294
+ cyan: {
1295
+ unchecked: "bg-cyan-700 border-cyan-600 hover:bg-cyan-600 active:bg-cyan-500",
1296
+ uncheckedAfter: "after:bg-cyan-600 after:border-cyan-500 after:hover:bg-cyan-500 after:active:bg-cyan-400"
1297
+ },
1298
+ sky: {
1299
+ unchecked: "bg-sky-700 border-sky-600 hover:bg-sky-600 active:bg-sky-500",
1300
+ uncheckedAfter: "after:bg-sky-600 after:border-sky-500 after:hover:bg-sky-500 after:active:bg-sky-400"
1301
+ },
1302
+ blue: {
1303
+ unchecked: "bg-blue-700 border-blue-600 hover:bg-blue-600 active:bg-blue-500",
1304
+ uncheckedAfter: "after:bg-blue-600 after:border-blue-500 after:hover:bg-blue-500 after:active:bg-blue-400"
1305
+ },
1306
+ indigo: {
1307
+ unchecked: "bg-indigo-700 border-indigo-600 hover:bg-indigo-600 active:bg-indigo-500",
1308
+ uncheckedAfter: "after:bg-indigo-600 after:border-indigo-500 after:hover:bg-indigo-500 after:active:bg-indigo-400"
1309
+ },
1310
+ violet: {
1311
+ unchecked: "bg-violet-700 border-violet-600 hover:bg-violet-600 active:bg-violet-500",
1312
+ uncheckedAfter: "after:bg-violet-600 after:border-violet-500 after:hover:bg-violet-500 after:active:bg-violet-400"
1313
+ },
1314
+ purple: {
1315
+ unchecked: "bg-purple-700 border-purple-600 hover:bg-purple-600 active:bg-purple-500",
1316
+ uncheckedAfter: "after:bg-purple-600 after:border-purple-500 after:hover:bg-purple-500 after:active:bg-purple-400"
1317
+ },
1318
+ fuchsia: {
1319
+ unchecked: "bg-fuchsia-700 border-fuchsia-600 hover:bg-fuchsia-600 active:bg-fuchsia-500",
1320
+ uncheckedAfter: "after:bg-fuchsia-600 after:border-fuchsia-500 after:hover:bg-fuchsia-500 after:active:bg-fuchsia-400"
1321
+ },
1322
+ pink: {
1323
+ unchecked: "bg-pink-700 border-pink-600 hover:bg-pink-600 active:bg-pink-500",
1324
+ uncheckedAfter: "after:bg-pink-600 after:border-pink-500 after:hover:bg-pink-500 after:active:bg-pink-400"
1325
+ },
1326
+ rose: {
1327
+ unchecked: "bg-rose-700 border-rose-600 hover:bg-rose-600 active:bg-rose-500",
1328
+ uncheckedAfter: "after:bg-rose-600 after:border-rose-500 after:hover:bg-rose-500 after:active:bg-rose-400"
1329
+ }
1330
+ };
1331
+ const Toggle = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1332
+ const props1 = qwik._restProps(props, [
1333
+ "checkbox",
1334
+ "round",
1335
+ "center",
1336
+ "label",
1337
+ "onColor",
1338
+ "offColor"
1339
+ ]);
1340
+ return /* @__PURE__ */ qwik._jsxQ("div", null, {
1341
+ class: qwik._fnSignal((p0) => ({
1342
+ "flex gap-3 items-center touch-manipulation": true,
1343
+ "justify-center": p0.center
1344
+ }), [
1345
+ props
1346
+ ], '{"flex gap-3 items-center touch-manipulation":true,"justify-center":p0.center}')
1347
+ }, [
1348
+ /* @__PURE__ */ qwik._jsxQ("label", null, {
1349
+ class: "inline-flex relative items-center cursor-pointer"
1350
+ }, [
1351
+ /* @__PURE__ */ qwik._jsxS("input", {
1352
+ type: "checkbox",
1353
+ ...props1,
1354
+ class: {
1355
+ "sr-only peer": true,
1356
+ ...props1.class
1357
+ }
1358
+ }, {
1359
+ type: qwik._IMMUTABLE
1360
+ }, 0, null),
1361
+ /* @__PURE__ */ qwik._jsxQ("div", {
1362
+ class: {
1363
+ "motion-safe:transition duration-300 hover:duration-100 ease-in-out h-7 peer border hover:shadow-lg": true,
1364
+ "after:content-[''] after:absolute after:top-[4px] after:left-[4px] after:border after:h-5 after:w-5 after:motion-safe:transition-all after:duration-300 after:hover:duration-100 after:ease-in-out": true,
1365
+ "rounded-md after:rounded-[0.2rem]": !props.round,
1366
+ "rounded-full after:rounded-full": props.round,
1367
+ "w-12 peer-checked:after:translate-x-full": !props.checkbox,
1368
+ "w-7 after:opacity-0 peer-checked:after:opacity-100": props.checkbox,
1369
+ [toggleOnColorClasses[props.onColor ?? "blue"].checked]: true,
1370
+ [toggleOnColorClasses[props.onColor ?? "blue"].checkedAfter]: true,
1371
+ [toggleOffColorClasses[props.offColor ?? "darkgray"].unchecked]: true,
1372
+ [toggleOffColorClasses[props.offColor ?? "darkgray"].uncheckedAfter]: true
1373
+ }
1374
+ }, null, null, 3, null)
1375
+ ], 1, null),
1376
+ props.label && /* @__PURE__ */ qwik._jsxQ("label", {
1377
+ for: qwik._wrapSignal(props1, "id")
1378
+ }, {
1379
+ class: "text-gray-300 flex gap-2 select-none"
1380
+ }, qwik._fnSignal((p0) => p0.label, [
1381
+ props
1382
+ ], "p0.label"), 3, "R0_0")
1383
+ ], 1, "R0_1");
1384
+ }, "Toggle_component_AHnKi33alRM"));
1385
+ const LogoBirdflop = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1386
+ const props1 = qwik._restProps(props, [
1387
+ "confused",
1388
+ "fillGradient"
1389
+ ]);
1390
+ return /* @__PURE__ */ qwik._jsxS("svg", {
1391
+ xmlns: "http://www.w3.org/2000/svg",
1392
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1393
+ viewBox: "0 0 1080 1080",
1394
+ ...props1,
1395
+ get height() {
1396
+ return props1.width;
1397
+ },
1398
+ height: qwik._wrapSignal(props1, "width"),
1399
+ children: [
1400
+ /* @__PURE__ */ qwik._jsxQ("defs", null, null, [
1401
+ props.fillGradient && /* @__PURE__ */ qwik._jsxQ("linearGradient", null, {
1402
+ id: "linear-gradient",
1403
+ x1: "0.5",
1404
+ x2: "0.5",
1405
+ y2: "1",
1406
+ gradientUnits: "objectBoundingBox"
1407
+ }, props.fillGradient.map((color, i) => /* @__PURE__ */ qwik._jsxQ("stop", {
1408
+ offset: i / (props.fillGradient.length - 1),
1409
+ "stop-color": color
1410
+ }, null, null, 3, i)), 1, "br_0"),
1411
+ /* @__PURE__ */ qwik._jsxQ("clipPath", null, {
1412
+ id: "clip-bf_3"
1413
+ }, /* @__PURE__ */ qwik._jsxQ("rect", null, {
1414
+ width: "1080",
1415
+ height: "1080"
1416
+ }, null, 3, null), 3, null)
1417
+ ], 1, null),
1418
+ /* @__PURE__ */ qwik._jsxQ("g", null, {
1419
+ id: "bf_3",
1420
+ "data-name": "bf - 3",
1421
+ "clip-path": "url(#clip-bf_3)",
1422
+ fill: "currentColor"
1423
+ }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1424
+ id: "Union_26",
1425
+ "data-name": "Union 26",
1426
+ 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",
1427
+ transform: "translate(2479.9 1169.7)",
1428
+ fill: qwik._fnSignal((p0) => p0.fillGradient ? "url(#linear-gradient)" : "", [
1429
+ props
1430
+ ], 'p0.fillGradient?"url(#linear-gradient)":""')
1431
+ }, null, 3, null), 3, null),
1432
+ props.confused && /* @__PURE__ */ qwik._jsxQ("g", null, {
1433
+ style: "transform: translate(595px, 460px) scale(0.375)",
1434
+ stroke: "#1E2837",
1435
+ fill: "#1E2837"
1436
+ }, [
1437
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1438
+ 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",
1439
+ fill: "none",
1440
+ "stroke-linecap": "round",
1441
+ "stroke-miterlimit": "10",
1442
+ "stroke-width": "80"
1443
+ }, null, 3, null),
1444
+ /* @__PURE__ */ qwik._jsxQ("circle", null, {
1445
+ cx: "248",
1446
+ cy: "399.99",
1447
+ r: "40",
1448
+ style: "transform: translate(0, 30px)"
1449
+ }, null, 3, null)
1450
+ ], 3, "br_1")
1451
+ ]
1452
+ }, {
1453
+ xmlns: qwik._IMMUTABLE,
1454
+ "xmlns:xlink": qwik._IMMUTABLE,
1455
+ viewBox: qwik._IMMUTABLE
1456
+ }, 0, "br_2");
1457
+ }, "LogoBirdflop_component_9b5138o80cQ"));
1458
+ const LogoDiscord = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1459
+ return /* @__PURE__ */ qwik._jsxS("svg", {
1460
+ xmlns: "http://www.w3.org/2000/svg",
1461
+ viewBox: "0 0 127.14 96.36",
1462
+ fill: "currentColor",
1463
+ ...props,
1464
+ get height() {
1465
+ return props.width;
1466
+ },
1467
+ children: /* @__PURE__ */ qwik._jsxQ("path", null, {
1468
+ 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"
1469
+ }, null, 3, null)
1470
+ }, {
1471
+ xmlns: qwik._IMMUTABLE,
1472
+ viewBox: qwik._IMMUTABLE,
1473
+ fill: qwik._IMMUTABLE,
1474
+ height: qwik._fnSignal((p0) => p0.width, [
1475
+ props
1476
+ ], "p0.width")
1477
+ }, 0, "uo_0");
1478
+ }, "LogoDiscord_component_jDPP8Q3cU0M"));
1479
+ const LogoFabric = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1480
+ return /* @__PURE__ */ qwik._jsxS("svg", {
1481
+ xmlns: "http://www.w3.org/2000/svg",
1482
+ "xml:space": "preserve",
1483
+ "fill-rule": "evenodd",
1484
+ "stroke-linecap": "round",
1485
+ "stroke-linejoin": "round",
1486
+ "clip-rule": "evenodd",
1487
+ viewBox: "0 0 24 24",
1488
+ ...props,
1489
+ get height() {
1490
+ return props.width;
1491
+ },
1492
+ children: [
1493
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1494
+ fill: "none",
1495
+ d: "M0 0h24v24H0z"
1496
+ }, null, 3, null),
1497
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1498
+ fill: "none",
1499
+ stroke: "currentColor",
1500
+ "stroke-width": "23",
1501
+ 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",
1502
+ transform: "matrix(.08671 0 0 .0867 -49.8 -56)"
1503
+ }, null, 3, null)
1504
+ ]
1505
+ }, {
1506
+ xmlns: qwik._IMMUTABLE,
1507
+ "xml:space": qwik._IMMUTABLE,
1508
+ "fill-rule": qwik._IMMUTABLE,
1509
+ "stroke-linecap": qwik._IMMUTABLE,
1510
+ "stroke-linejoin": qwik._IMMUTABLE,
1511
+ "clip-rule": qwik._IMMUTABLE,
1512
+ viewBox: qwik._IMMUTABLE,
1513
+ height: qwik._fnSignal((p0) => p0.width, [
1514
+ props
1515
+ ], "p0.width")
1516
+ }, 0, "hI_0");
1517
+ }, "LogoFabric_component_iP0a9wJyPAg"));
1518
+ const LogoForge = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1519
+ return /* @__PURE__ */ qwik._jsxS("svg", {
1520
+ "xml:space": "preserve",
1521
+ "fill-rule": "evenodd",
1522
+ "stroke-linecap": "round",
1523
+ "stroke-linejoin": "round",
1524
+ "stroke-miterlimit": "1.5",
1525
+ "clip-rule": "evenodd",
1526
+ viewBox: "0 0 24 24",
1527
+ ...props,
1528
+ get height() {
1529
+ return props.width;
1530
+ },
1531
+ children: [
1532
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1533
+ fill: "none",
1534
+ d: "M0 0h24v24H0z"
1535
+ }, null, 3, null),
1536
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1537
+ fill: "none",
1538
+ stroke: "currentColor",
1539
+ "stroke-width": "2",
1540
+ 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"
1541
+ }, null, 3, null)
1542
+ ]
1543
+ }, {
1544
+ "xml:space": qwik._IMMUTABLE,
1545
+ "fill-rule": qwik._IMMUTABLE,
1546
+ "stroke-linecap": qwik._IMMUTABLE,
1547
+ "stroke-linejoin": qwik._IMMUTABLE,
1548
+ "stroke-miterlimit": qwik._IMMUTABLE,
1549
+ "clip-rule": qwik._IMMUTABLE,
1550
+ viewBox: qwik._IMMUTABLE,
1551
+ height: qwik._fnSignal((p0) => p0.width, [
1552
+ props
1553
+ ], "p0.width")
1554
+ }, 0, "zC_0");
1555
+ }, "LogoForge_component_W5Al1sALh8A"));
1556
+ const LogoLuminescent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1557
+ return /* @__PURE__ */ qwik._jsxS("svg", {
1558
+ xmlns: "http://www.w3.org/2000/svg",
1559
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1560
+ zoomAndPan: "magnify",
1561
+ viewBox: "80 80 220 220",
1562
+ preserveAspectRatio: "xMidYMid meet",
1563
+ version: "1.0",
1564
+ fill: "currentColor",
1565
+ ...props,
1566
+ get height() {
1567
+ return props.width;
1568
+ },
1569
+ children: /* @__PURE__ */ qwik._jsxQ("g", null, {
1570
+ "fill-opacity": "1"
1571
+ }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1572
+ transform: "translate(86.97656, 254.624983)"
1573
+ }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1574
+ 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 "
1575
+ }, null, 3, null), 3, null), 3, null)
1576
+ }, {
1577
+ xmlns: qwik._IMMUTABLE,
1578
+ "xmlns:xlink": qwik._IMMUTABLE,
1579
+ zoomAndPan: qwik._IMMUTABLE,
1580
+ viewBox: qwik._IMMUTABLE,
1581
+ preserveAspectRatio: qwik._IMMUTABLE,
1582
+ version: qwik._IMMUTABLE,
1583
+ fill: qwik._IMMUTABLE,
1584
+ height: qwik._fnSignal((p0) => p0.width, [
1585
+ props
1586
+ ], "p0.width")
1587
+ }, 0, "we_0");
1588
+ }, "LogoLuminescent_component_XLiMRdgGu0c"));
1589
+ const LogoLuminescentFull = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1590
+ return /* @__PURE__ */ qwik._jsxS("svg", {
1591
+ xmlns: "http://www.w3.org/2000/svg",
1592
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1593
+ zoomAndPan: "magnify",
1594
+ viewBox: "30 60 1160 200",
1595
+ preserveAspectRatio: "xMidYMid meet",
1596
+ version: "1.0",
1597
+ fill: "currentColor",
1598
+ ...props,
1599
+ children: [
1600
+ /* @__PURE__ */ qwik._jsxQ("g", null, {
1601
+ "fill-opacity": "1"
1602
+ }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1603
+ transform: "translate(12.743357, 223.612604)"
1604
+ }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1605
+ 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 "
1606
+ }, null, 3, null), 3, null), 3, null),
1607
+ /* @__PURE__ */ qwik._jsxQ("g", null, {
1608
+ "fill-opacity": "1"
1609
+ }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1610
+ transform: "translate(151.868279, 223.612604)"
1611
+ }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1612
+ 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 "
1613
+ }, null, 3, null), 3, null), 3, null),
1614
+ /* @__PURE__ */ qwik._jsxQ("g", null, {
1615
+ "fill-opacity": "1"
1616
+ }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1617
+ transform: "translate(265.444396, 223.612604)"
1618
+ }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1619
+ 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 "
1620
+ }, null, 3, null), 3, null), 3, null),
1621
+ /* @__PURE__ */ qwik._jsxQ("g", null, {
1622
+ "fill-opacity": "1"
1623
+ }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1624
+ transform: "translate(428.260051, 223.612604)"
1625
+ }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1626
+ 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 "
1627
+ }, null, 3, null), 3, null), 3, null),
1628
+ /* @__PURE__ */ qwik._jsxQ("g", null, {
1629
+ "fill-opacity": "1"
1630
+ }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1631
+ transform: "translate(484.467457, 223.612604)"
1632
+ }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1633
+ 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 "
1634
+ }, null, 3, null), 3, null), 3, null),
1635
+ /* @__PURE__ */ qwik._jsxQ("g", null, {
1636
+ "fill-opacity": "1"
1637
+ }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1638
+ transform: "translate(597.346777, 223.612604)"
1639
+ }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1640
+ 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 "
1641
+ }, null, 3, null), 3, null), 3, null),
1642
+ /* @__PURE__ */ qwik._jsxQ("g", null, {
1643
+ "fill-opacity": "1"
1644
+ }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1645
+ transform: "translate(699.542059, 223.612604)"
1646
+ }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1647
+ 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 "
1648
+ }, null, 3, null), 3, null), 3, null),
1649
+ /* @__PURE__ */ qwik._jsxQ("g", null, {
1650
+ "fill-opacity": "1"
1651
+ }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1652
+ transform: "translate(802.898632, 223.612604)"
1653
+ }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1654
+ 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 "
1655
+ }, null, 3, null), 3, null), 3, null),
1656
+ /* @__PURE__ */ qwik._jsxQ("g", null, {
1657
+ "fill-opacity": "1"
1658
+ }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1659
+ transform: "translate(900.21642, 223.612604)"
1660
+ }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1661
+ 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 "
1662
+ }, null, 3, null), 3, null), 3, null),
1663
+ /* @__PURE__ */ qwik._jsxQ("g", null, {
1664
+ "fill-opacity": "1"
1665
+ }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1666
+ transform: "translate(1002.411702, 223.612604)"
1667
+ }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1668
+ 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 "
1669
+ }, null, 3, null), 3, null), 3, null),
1670
+ /* @__PURE__ */ qwik._jsxQ("g", null, {
1671
+ "fill-opacity": "1"
1672
+ }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1673
+ transform: "translate(1115.290992, 223.612604)"
1674
+ }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1675
+ 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 "
1676
+ }, null, 3, null), 3, null), 3, null)
1677
+ ]
1678
+ }, {
1679
+ xmlns: qwik._IMMUTABLE,
1680
+ "xmlns:xlink": qwik._IMMUTABLE,
1681
+ zoomAndPan: qwik._IMMUTABLE,
1682
+ viewBox: qwik._IMMUTABLE,
1683
+ preserveAspectRatio: qwik._IMMUTABLE,
1684
+ version: qwik._IMMUTABLE,
1685
+ fill: qwik._IMMUTABLE
1686
+ }, 0, "we_1");
1687
+ }, "LogoLuminescentFull_component_EYrFTxSEodU"));
1688
+ const LogoPaper = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1689
+ return /* @__PURE__ */ qwik._jsxS("svg", {
1690
+ "xml:space": "preserve",
1691
+ "fill-rule": "evenodd",
1692
+ "stroke-linecap": "round",
1693
+ "stroke-linejoin": "round",
1694
+ "stroke-miterlimit": "1.5",
1695
+ "clip-rule": "evenodd",
1696
+ viewBox: "0 0 24 24",
1697
+ ...props,
1698
+ get height() {
1699
+ return props.width;
1700
+ },
1701
+ children: [
1702
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1703
+ fill: "none",
1704
+ d: "M0 0h24v24H0z"
1705
+ }, null, 3, null),
1706
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1707
+ fill: "none",
1708
+ stroke: "currentColor",
1709
+ "stroke-width": "2",
1710
+ d: "m12 18 6 2 3-17L2 14l6 2"
1711
+ }, null, 3, null),
1712
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1713
+ stroke: "currentColor",
1714
+ "stroke-width": "2",
1715
+ d: "m9 21-1-5 4 2-3 3Z"
1716
+ }, null, 3, null),
1717
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1718
+ fill: "currentColor",
1719
+ d: "m12 18-4-2 10-9-6 11Z"
1720
+ }, null, 3, null)
1721
+ ]
1722
+ }, {
1723
+ "xml:space": qwik._IMMUTABLE,
1724
+ "fill-rule": qwik._IMMUTABLE,
1725
+ "stroke-linecap": qwik._IMMUTABLE,
1726
+ "stroke-linejoin": qwik._IMMUTABLE,
1727
+ "stroke-miterlimit": qwik._IMMUTABLE,
1728
+ "clip-rule": qwik._IMMUTABLE,
1729
+ viewBox: qwik._IMMUTABLE,
1730
+ height: qwik._fnSignal((p0) => p0.width, [
1731
+ props
1732
+ ], "p0.width")
1733
+ }, 0, "gL_0");
1734
+ }, "LogoPaper_component_aG0HRBVBRDI"));
1735
+ const LogoPterodactyl = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1736
+ return /* @__PURE__ */ qwik._jsxS("svg", {
1737
+ version: "1.0",
1738
+ xmlns: "http://www.w3.org/2000/svg",
1739
+ viewBox: "0 0 180 180",
1740
+ preserveAspectRatio: "xMidYMid meet",
1741
+ ...props,
1742
+ get height() {
1743
+ return props.width;
1744
+ },
1745
+ children: /* @__PURE__ */ qwik._jsxQ("g", null, {
1746
+ transform: "translate(0,180) scale(0.100000,-0.100000)",
1747
+ fill: "currentColor",
1748
+ stroke: "none"
1749
+ }, [
1750
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1751
+ 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"
1752
+ }, null, 3, null),
1753
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1754
+ 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"
1755
+ }, null, 3, null),
1756
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1757
+ 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"
1758
+ }, null, 3, null),
1759
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1760
+ d: "M1012 441 c-19 -11 64 -51 106 -51 39 0 40 4 5 35 -29 25 -85 33 -111 16z"
1761
+ }, null, 3, null)
1762
+ ], 3, null)
1763
+ }, {
1764
+ version: qwik._IMMUTABLE,
1765
+ xmlns: qwik._IMMUTABLE,
1766
+ viewBox: qwik._IMMUTABLE,
1767
+ preserveAspectRatio: qwik._IMMUTABLE,
1768
+ height: qwik._fnSignal((p0) => p0.width, [
1769
+ props
1770
+ ], "p0.width")
1771
+ }, 0, "D4_0");
1772
+ }, "LogoPterodactyl_component_10hbViSPESg"));
1773
+ const LogoPurpur = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1774
+ return /* @__PURE__ */ qwik._jsxS("svg", {
1775
+ "xml:space": "preserve",
1776
+ "fill-rule": "evenodd",
1777
+ "stroke-linecap": "round",
1778
+ "stroke-linejoin": "round",
1779
+ "stroke-miterlimit": "1.5",
1780
+ "clip-rule": "evenodd",
1781
+ viewBox: "0 0 24 24",
1782
+ ...props,
1783
+ get height() {
1784
+ return props.width;
1785
+ },
1786
+ children: [
1787
+ /* @__PURE__ */ qwik._jsxQ("defs", null, null, /* @__PURE__ */ qwik._jsxQ("path", null, {
1788
+ id: "purpur",
1789
+ fill: "none",
1790
+ stroke: "currentColor",
1791
+ "stroke-width": "1.68",
1792
+ d: "m264 41.95 8-4v8l-8 4v-8Z"
1793
+ }, null, 3, null), 3, null),
1794
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1795
+ fill: "none",
1796
+ d: "M0 0h24v24H0z"
1797
+ }, null, 3, null),
1798
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1799
+ fill: "none",
1800
+ stroke: "currentColor",
1801
+ "stroke-width": "1.77",
1802
+ d: "m264 29.95-8 4 8 4.42 8-4.42-8-4Z",
1803
+ transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1804
+ }, null, 3, null),
1805
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1806
+ fill: "none",
1807
+ stroke: "currentColor",
1808
+ "stroke-width": "1.77",
1809
+ d: "m272 38.37-8 4.42-8-4.42",
1810
+ transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1811
+ }, null, 3, null),
1812
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1813
+ fill: "none",
1814
+ stroke: "currentColor",
1815
+ "stroke-width": "1.77",
1816
+ d: "m260 31.95 8 4.21V45",
1817
+ transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1818
+ }, null, 3, null),
1819
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1820
+ fill: "none",
1821
+ stroke: "currentColor",
1822
+ "stroke-width": "1.77",
1823
+ d: "M260 45v-8.84l8-4.21",
1824
+ transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1825
+ }, null, 3, null),
1826
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1827
+ fill: "none",
1828
+ stroke: "currentColor",
1829
+ "stroke-width": "1.68",
1830
+ d: "m264 41.95 8-4v8l-8 4v-8Z",
1831
+ transform: "matrix(1.125 0 0 1.2569 -285 -40.78)"
1832
+ }, null, 3, null),
1833
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1834
+ fill: "none",
1835
+ stroke: "currentColor",
1836
+ "stroke-width": "1.68",
1837
+ d: "m264 41.95 8-4v8l-8 4v-8Z",
1838
+ transform: "matrix(-1.125 0 0 1.2569 309 -40.78)"
1839
+ }, null, 3, null)
1840
+ ]
1841
+ }, {
1842
+ "xml:space": qwik._IMMUTABLE,
1843
+ "fill-rule": qwik._IMMUTABLE,
1844
+ "stroke-linecap": qwik._IMMUTABLE,
1845
+ "stroke-linejoin": qwik._IMMUTABLE,
1846
+ "stroke-miterlimit": qwik._IMMUTABLE,
1847
+ "clip-rule": qwik._IMMUTABLE,
1848
+ viewBox: qwik._IMMUTABLE,
1849
+ height: qwik._fnSignal((p0) => p0.width, [
1850
+ props
1851
+ ], "p0.width")
1852
+ }, 0, "tL_0");
1853
+ }, "LogoPurpur_component_c9OHr4CkPBo"));
1854
+ const LogoVelocity = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1855
+ return /* @__PURE__ */ qwik._jsxS("svg", {
1856
+ viewBox: "0 0 500 500",
1857
+ fill: "currentColor",
1858
+ ...props,
1859
+ get height() {
1860
+ return props.width;
1861
+ },
1862
+ children: [
1863
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1864
+ 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"
1865
+ }, null, 3, null),
1866
+ /* @__PURE__ */ qwik._jsxQ("circle", null, {
1867
+ cx: "416.44",
1868
+ cy: "236.11",
1869
+ r: "9.83"
1870
+ }, null, 3, null),
1871
+ /* @__PURE__ */ qwik._jsxQ("path", null, {
1872
+ 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"
1873
+ }, null, 3, null)
1874
+ ]
1875
+ }, {
1876
+ viewBox: qwik._IMMUTABLE,
1877
+ fill: qwik._IMMUTABLE,
1878
+ height: qwik._fnSignal((p0) => p0.width, [
1879
+ props
1880
+ ], "p0.width")
1881
+ }, 0, "XA_0");
1882
+ }, "LogoVelocity_component_ZPc1n5yvS0Y"));
1883
+ const LogoWaterfall = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1884
+ return /* @__PURE__ */ qwik._jsxS("svg", {
1885
+ viewBox: "0 0 24 24",
1886
+ fill: "none",
1887
+ stroke: "currentColor",
1888
+ "stroke-width": "2",
1889
+ "stroke-linecap": "round",
1890
+ "stroke-linejoin": "round",
1891
+ ...props,
1892
+ get height() {
1893
+ return props.width;
1894
+ },
1895
+ children: /* @__PURE__ */ qwik._jsxQ("path", null, {
1896
+ d: "M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"
1897
+ }, null, 3, null)
1898
+ }, {
1899
+ viewBox: qwik._IMMUTABLE,
1900
+ fill: qwik._IMMUTABLE,
1901
+ stroke: qwik._IMMUTABLE,
1902
+ "stroke-width": qwik._IMMUTABLE,
1903
+ "stroke-linecap": qwik._IMMUTABLE,
1904
+ "stroke-linejoin": qwik._IMMUTABLE,
1905
+ height: qwik._fnSignal((p0) => p0.width, [
1906
+ props
1907
+ ], "p0.width")
1908
+ }, 0, "to_0");
1909
+ }, "LogoWaterfall_component_5eX8hGbmtoU"));
1910
+ exports.Anchor = Anchor;
1911
+ exports.Blobs = Blobs;
1912
+ exports.ColorPicker = ColorPicker;
1913
+ exports.Dropdown = Dropdown;
1914
+ exports.DropdownRaw = DropdownRaw;
1915
+ exports.Header = Header;
1916
+ exports.LogoBirdflop = LogoBirdflop;
1917
+ exports.LogoDiscord = LogoDiscord;
1918
+ exports.LogoFabric = LogoFabric;
1919
+ exports.LogoForge = LogoForge;
1920
+ exports.LogoLuminescent = LogoLuminescent;
1921
+ exports.LogoLuminescentFull = LogoLuminescentFull;
1922
+ exports.LogoPaper = LogoPaper;
1923
+ exports.LogoPterodactyl = LogoPterodactyl;
1924
+ exports.LogoPurpur = LogoPurpur;
1925
+ exports.LogoVelocity = LogoVelocity;
1926
+ exports.LogoWaterfall = LogoWaterfall;
1927
+ exports.Nav = Nav;
1928
+ exports.NumberInput = NumberInput;
1929
+ exports.NumberInputRaw = NumberInputRaw;
1930
+ exports.Toggle = Toggle;
1931
+ exports._auto_blobClasses = blobClasses;
1932
+ exports.blobColorClasses = blobColorClasses;
1933
+ exports.toggleOffColorClasses = toggleOffColorClasses;
1934
+ exports.toggleOnColorClasses = toggleOnColorClasses;