@luminescent/ui-qwik 1.3.1 → 1.4.0

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