@luminescent/ui-qwik 2.0.1 → 3.0.1

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.
@@ -2,9 +2,54 @@
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
4
4
  const qwik = require("@builder.io/qwik");
5
- const Anchor = qwik.component$(({ id }) => /* @__PURE__ */ jsxRuntime.jsx("span", {
6
- id,
7
- class: "pointer-events-none -mt-32 block h-32"
5
+ const Link = qwik.component$(({ size, ...props }) => {
6
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ width: size,
9
+ height: size,
10
+ viewBox: "0 0 24 24",
11
+ fill: "none",
12
+ stroke: "currentColor",
13
+ "stroke-width": "2",
14
+ "stroke-linecap": "round",
15
+ "stroke-linejoin": "round",
16
+ class: "lucide lucide-link2-icon lucide-link-2",
17
+ ...props,
18
+ children: [
19
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
20
+ d: "M9 17H7A5 5 0 0 1 7 7h2"
21
+ }),
22
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
23
+ d: "M15 7h2a5 5 0 1 1 0 10h-2"
24
+ }),
25
+ /* @__PURE__ */ jsxRuntime.jsx("line", {
26
+ x1: "8",
27
+ x2: "16",
28
+ y1: "12",
29
+ y2: "12"
30
+ })
31
+ ]
32
+ });
33
+ });
34
+ const Anchor = qwik.component$(({ id, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("div", {
35
+ ...props,
36
+ class: {
37
+ "group flex items-center gap-2 scroll-mt-32": true,
38
+ ...props.class
39
+ },
40
+ children: [
41
+ /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {}),
42
+ id && /* @__PURE__ */ jsxRuntime.jsx("a", {
43
+ href: `#${id}`,
44
+ onClick$: async () => {
45
+ await navigator.clipboard.writeText(window.location.href);
46
+ },
47
+ children: /* @__PURE__ */ jsxRuntime.jsx(Link, {
48
+ class: "opacity-10 transition-all duration-300 group-hover:opacity-100 group-hover:duration-75",
49
+ size: 20
50
+ })
51
+ })
52
+ ]
8
53
  }));
9
54
  const blobColorClasses = {
10
55
  slate: [
@@ -300,28 +345,34 @@ function rgbToHsv(color) {
300
345
  v
301
346
  };
302
347
  }
303
- const Shuffle = qwik.component$((props) => {
348
+ const Shuffle = qwik.component$(({ size, ...props }) => {
304
349
  return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
305
350
  xmlns: "http://www.w3.org/2000/svg",
306
- viewBox: "0 0 512 512",
351
+ width: size,
352
+ height: size,
353
+ viewBox: "0 0 24 24",
354
+ fill: "none",
355
+ stroke: "currentColor",
356
+ "stroke-width": "2",
357
+ "stroke-linecap": "round",
358
+ "stroke-linejoin": "round",
359
+ class: "lucide lucide-shuffle-icon lucide-shuffle",
307
360
  ...props,
308
- height: props.width,
309
361
  children: [
310
362
  /* @__PURE__ */ jsxRuntime.jsx("path", {
311
- fill: "none",
312
- stroke: "currentColor",
313
- "stroke-linecap": "round",
314
- "stroke-linejoin": "round",
315
- "stroke-width": "32",
316
- d: "M400 304l48 48-48 48M400 112l48 48-48 48M64 352h85.19a80 80 0 0066.56-35.62L256 256"
363
+ d: "m18 14 4 4-4 4"
317
364
  }),
318
365
  /* @__PURE__ */ jsxRuntime.jsx("path", {
319
- 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",
320
- fill: "none",
321
- stroke: "currentColor",
322
- "stroke-linecap": "round",
323
- "stroke-linejoin": "round",
324
- "stroke-width": "32"
366
+ d: "m18 2 4 4-4 4"
367
+ }),
368
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
369
+ d: "M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22"
370
+ }),
371
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
372
+ d: "M2 6h1.972a4 4 0 0 1 3.6 2.2"
373
+ }),
374
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
375
+ d: "M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45"
325
376
  })
326
377
  ]
327
378
  });
@@ -554,7 +605,7 @@ const ColorPicker = qwik.component$(({ id, value = "#000000", colors = [
554
605
  await setColor(color);
555
606
  },
556
607
  children: /* @__PURE__ */ jsxRuntime.jsx(Shuffle, {
557
- class: "fill-current p-0.5 pl-0.5 text-gray-300"
608
+ class: "p-0.5 pl-0.5 text-gray-300"
558
609
  })
559
610
  })
560
611
  ]
@@ -562,23 +613,49 @@ const ColorPicker = qwik.component$(({ id, value = "#000000", colors = [
562
613
  ]
563
614
  });
564
615
  });
565
- const ChevronDown = qwik.component$((props) => {
616
+ const ChevronDown = qwik.component$(({ size, ...props }) => {
566
617
  return /* @__PURE__ */ jsxRuntime.jsx("svg", {
567
618
  xmlns: "http://www.w3.org/2000/svg",
568
- viewBox: "0 0 512 512",
619
+ width: size,
620
+ height: size,
621
+ viewBox: "0 0 24 24",
622
+ fill: "none",
623
+ stroke: "currentColor",
624
+ "stroke-width": "2",
625
+ "stroke-linecap": "round",
626
+ "stroke-linejoin": "round",
627
+ class: "lucide lucide-chevron-down-icon lucide-chevron-down",
569
628
  ...props,
570
- height: props.width,
571
629
  children: /* @__PURE__ */ jsxRuntime.jsx("path", {
572
- fill: "none",
573
- stroke: "currentColor",
574
- "stroke-linecap": "round",
575
- "stroke-linejoin": "round",
576
- "stroke-width": "48",
577
- d: "M112 184l144 144 144-144"
630
+ d: "m6 9 6 6 6-6"
578
631
  })
579
632
  });
580
633
  });
581
- const Dropdown = qwik.component$((props) => {
634
+ const Dropdown = qwik.component$(({ class: Class, hover, opened, ...props }) => {
635
+ return /* @__PURE__ */ jsxRuntime.jsxs("button", {
636
+ class: {
637
+ "lum-btn": true,
638
+ ...Class
639
+ },
640
+ ...props,
641
+ children: [
642
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
643
+ class: "flex-1 text-left",
644
+ children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {})
645
+ }),
646
+ /* @__PURE__ */ jsxRuntime.jsx(ChevronDown, {
647
+ size: 16,
648
+ class: {
649
+ "ease-out motion-safe:transition-all": true,
650
+ "rotate-180 transform": opened,
651
+ "duration-300 group-hover:rotate-180 group-hover:transform group-hover:duration-75": hover,
652
+ "focus-within:rotate-180 focus-within:transform focus-within:duration-75": true
653
+ }
654
+ })
655
+ ]
656
+ });
657
+ });
658
+ const SelectMenu = qwik.component$((props) => {
582
659
  return /* @__PURE__ */ jsxRuntime.jsxs("div", {
583
660
  class: "flex flex-col",
584
661
  children: [
@@ -587,13 +664,27 @@ const Dropdown = qwik.component$((props) => {
587
664
  class: "pb-1 text-gray-300 select-none",
588
665
  children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {})
589
666
  }),
590
- /* @__PURE__ */ jsxRuntime.jsx(DropdownRaw, {
591
- ...props
667
+ /* @__PURE__ */ jsxRuntime.jsxs(SelectMenuRaw, {
668
+ ...props,
669
+ children: [
670
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
671
+ "q:slot": "dropdown",
672
+ children: (props.customDropdown || !props.values?.length) && /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
673
+ name: "dropdown"
674
+ })
675
+ }),
676
+ /* @__PURE__ */ jsxRuntime.jsx("div", {
677
+ "q:slot": "extra-buttons",
678
+ children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
679
+ name: "extra-buttons"
680
+ })
681
+ })
682
+ ]
592
683
  })
593
684
  ]
594
685
  });
595
686
  });
596
- const DropdownRaw = qwik.component$(({ id, values, class: Class, display, hover, ...props }) => {
687
+ const SelectMenuRaw = qwik.component$(({ id, values, class: Class, customDropdown, hover, ...props }) => {
597
688
  const store = qwik.useStore({
598
689
  opened: false,
599
690
  value: props.value
@@ -617,29 +708,24 @@ const DropdownRaw = qwik.component$(({ id, values, class: Class, display, hover,
617
708
  }, i);
618
709
  })
619
710
  }),
620
- /* @__PURE__ */ jsxRuntime.jsxs("button", {
621
- class: {
622
- "lum-btn": true,
623
- ...Class
624
- },
711
+ /* @__PURE__ */ jsxRuntime.jsxs(Dropdown, {
712
+ opened: store.opened,
713
+ class: Class,
625
714
  onClick$: () => {
626
715
  if (!hover) store.opened = !store.opened;
627
716
  },
628
717
  children: [
629
- display,
630
- !display && values && /* @__PURE__ */ jsxRuntime.jsx("span", {
631
- id: `lui-${id}-name`,
632
- class: "flex-1 text-left",
633
- children: values.find((value) => value.value.toString() === store.value)?.name ?? values[0].name
718
+ customDropdown && /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
719
+ name: "dropdown"
634
720
  }),
635
- /* @__PURE__ */ jsxRuntime.jsx(ChevronDown, {
636
- width: 16,
637
- class: {
638
- "ease-out motion-safe:transition-all": true,
639
- "rotate-180 transform": store.opened,
640
- "duration-300 group-hover:rotate-180 group-hover:transform group-hover:duration-75": hover,
641
- "focus-within:rotate-180 focus-within:transform focus-within:duration-75": true
642
- }
721
+ !customDropdown && /* @__PURE__ */ jsxRuntime.jsxs("span", {
722
+ id: `lui-${id}-name`,
723
+ children: [
724
+ values && (values.find((value) => value.value.toString() === store.value)?.name ?? values[0].name),
725
+ !values && /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
726
+ name: "dropdown"
727
+ })
728
+ ]
643
729
  })
644
730
  ]
645
731
  }),
@@ -682,44 +768,32 @@ const DropdownRaw = qwik.component$(({ id, values, class: Class, display, hover,
682
768
  ]
683
769
  });
684
770
  });
685
- const Link = qwik.component$((props) => {
686
- return /* @__PURE__ */ jsxRuntime.jsx("svg", {
771
+ const Menu = qwik.component$(({ size, ...props }) => {
772
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
687
773
  xmlns: "http://www.w3.org/2000/svg",
688
- viewBox: "0 0 512 512",
774
+ width: size,
775
+ height: size,
776
+ viewBox: "0 0 24 24",
777
+ fill: "none",
778
+ stroke: "currentColor",
779
+ "stroke-width": "2",
780
+ "stroke-linecap": "round",
781
+ "stroke-linejoin": "round",
782
+ class: "lucide lucide-menu-icon lucide-menu",
689
783
  ...props,
690
- height: props.width,
691
- children: /* @__PURE__ */ jsxRuntime.jsx("path", {
692
- d: "M208 352h-64a96 96 0 010-192h64M304 160h64a96 96 0 010 192h-64M163.29 256h187.42",
693
- fill: "none",
694
- stroke: "currentColor",
695
- "stroke-linecap": "round",
696
- "stroke-linejoin": "round",
697
- "stroke-width": "36"
698
- })
784
+ children: [
785
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
786
+ d: "M4 12h16"
787
+ }),
788
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
789
+ d: "M4 18h16"
790
+ }),
791
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
792
+ d: "M4 6h16"
793
+ })
794
+ ]
699
795
  });
700
796
  });
701
- const Header = qwik.component$(({ id, anchor, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs("h2", {
702
- class: {
703
- "group flex items-center gap-2 text-xl font-bold whitespace-nowrap text-white sm:text-2xl": true,
704
- ...props.class
705
- },
706
- children: [
707
- /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {}),
708
- id && /* @__PURE__ */ jsxRuntime.jsx(Anchor, {
709
- id
710
- }),
711
- anchor && id && /* @__PURE__ */ jsxRuntime.jsx("a", {
712
- href: `#${id}`,
713
- onClick$: async () => {
714
- await navigator.clipboard.writeText(window.location.href);
715
- },
716
- children: /* @__PURE__ */ jsxRuntime.jsx(Link, {
717
- class: "opacity-10 transition-all duration-300 group-hover:opacity-100 group-hover:duration-75",
718
- width: 24
719
- })
720
- })
721
- ]
722
- }));
723
797
  const Nav = qwik.component$(({ fixed, floating, nohamburger, colorClass = "lum-bg-gray-900", ...props }) => {
724
798
  const menu = qwik.useSignal(false);
725
799
  return /* @__PURE__ */ jsxRuntime.jsxs("nav", {
@@ -787,18 +861,8 @@ const Nav = qwik.component$(({ fixed, floating, nohamburger, colorClass = "lum-b
787
861
  !nohamburger && /* @__PURE__ */ jsxRuntime.jsx("button", {
788
862
  class: "lum-btn lum-bg-transparent p-2 sm:hidden",
789
863
  onClick$: () => menu.value = !menu.value,
790
- children: /* @__PURE__ */ jsxRuntime.jsx("svg", {
791
- class: "h-6 w-6",
792
- fill: "none",
793
- stroke: "currentColor",
794
- viewBox: "0 0 24 24",
795
- xmlns: "http://www.w3.org/2000/svg",
796
- children: /* @__PURE__ */ jsxRuntime.jsx("path", {
797
- "stroke-linecap": "round",
798
- "stroke-linejoin": "round",
799
- "stroke-width": "2",
800
- d: "M4 6h16M4 12h16M4 18h16"
801
- })
864
+ children: /* @__PURE__ */ jsxRuntime.jsx(Menu, {
865
+ size: 24
802
866
  })
803
867
  })
804
868
  ]
@@ -809,35 +873,44 @@ const Nav = qwik.component$(({ fixed, floating, nohamburger, colorClass = "lum-b
809
873
  ]
810
874
  });
811
875
  });
812
- const Plus = qwik.component$((props) => {
813
- return /* @__PURE__ */ jsxRuntime.jsx("svg", {
876
+ const Plus = qwik.component$(({ size, ...props }) => {
877
+ return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
814
878
  xmlns: "http://www.w3.org/2000/svg",
815
- viewBox: "0 0 512 512",
879
+ width: size,
880
+ height: size,
881
+ viewBox: "0 0 24 24",
882
+ fill: "none",
883
+ stroke: "currentColor",
884
+ "stroke-width": "2",
885
+ "stroke-linecap": "round",
886
+ "stroke-linejoin": "round",
887
+ class: "lucide lucide-plus-icon lucide-plus",
816
888
  ...props,
817
- height: props.width,
818
- children: /* @__PURE__ */ jsxRuntime.jsx("path", {
819
- fill: "none",
820
- stroke: "currentColor",
821
- "stroke-linecap": "round",
822
- "stroke-linejoin": "round",
823
- "stroke-width": "32",
824
- d: "M256 112v288M400 256H112"
825
- })
889
+ children: [
890
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
891
+ d: "M5 12h14"
892
+ }),
893
+ /* @__PURE__ */ jsxRuntime.jsx("path", {
894
+ d: "M12 5v14"
895
+ })
896
+ ]
826
897
  });
827
898
  });
828
- const Minus = qwik.component$((props) => {
899
+ const Minus = qwik.component$(({ size, ...props }) => {
829
900
  return /* @__PURE__ */ jsxRuntime.jsx("svg", {
830
901
  xmlns: "http://www.w3.org/2000/svg",
831
- viewBox: "0 0 512 512",
902
+ width: size,
903
+ height: size,
904
+ viewBox: "0 0 24 24",
905
+ fill: "none",
906
+ stroke: "currentColor",
907
+ "stroke-width": "2",
908
+ "stroke-linecap": "round",
909
+ "stroke-linejoin": "round",
910
+ class: "lucide lucide-minus-icon lucide-minus",
832
911
  ...props,
833
- height: props.width,
834
912
  children: /* @__PURE__ */ jsxRuntime.jsx("path", {
835
- fill: "none",
836
- stroke: "currentColor",
837
- "stroke-linecap": "round",
838
- "stroke-linejoin": "round",
839
- "stroke-width": "32",
840
- d: "M400 256H112"
913
+ d: "M5 12h14"
841
914
  })
842
915
  });
843
916
  });
@@ -886,8 +959,7 @@ const NumberInputRaw = qwik.component$(({ input, onDecrement$, onIncrement$, val
886
959
  await onDecrement$(event, element, siblingInput);
887
960
  }) : onDecrement$,
888
961
  children: /* @__PURE__ */ jsxRuntime.jsx(Minus, {
889
- width: "24",
890
- class: "fill-current"
962
+ size: 24
891
963
  })
892
964
  }),
893
965
  input && /* @__PURE__ */ jsxRuntime.jsx("input", {
@@ -913,8 +985,7 @@ const NumberInputRaw = qwik.component$(({ input, onDecrement$, onIncrement$, val
913
985
  await onIncrement$(event, element, siblingInput);
914
986
  }) : onIncrement$,
915
987
  children: /* @__PURE__ */ jsxRuntime.jsx(Plus, {
916
- width: "24",
917
- class: "fill-current"
988
+ size: 24
918
989
  })
919
990
  })
920
991
  ]
@@ -1158,13 +1229,14 @@ const Toggle = qwik.component$(({ checkbox, round, center, label, onColor = "blu
1158
1229
  ]
1159
1230
  });
1160
1231
  });
1161
- const LogoBirdflop = qwik.component$(({ confused, fillGradient, ...props }) => {
1232
+ const LogoBirdflop = qwik.component$(({ confused, fillGradient, size, ...props }) => {
1162
1233
  return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
1163
1234
  xmlns: "http://www.w3.org/2000/svg",
1164
1235
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
1165
1236
  viewBox: "0 0 1080 1080",
1237
+ width: size,
1238
+ height: size,
1166
1239
  ...props,
1167
- height: props.width,
1168
1240
  children: [
1169
1241
  /* @__PURE__ */ jsxRuntime.jsxs("defs", {
1170
1242
  children: [
@@ -1224,19 +1296,20 @@ const LogoBirdflop = qwik.component$(({ confused, fillGradient, ...props }) => {
1224
1296
  ]
1225
1297
  });
1226
1298
  });
1227
- const LogoDiscord = qwik.component$((props) => {
1299
+ const LogoDiscord = qwik.component$(({ size, ...props }) => {
1228
1300
  return /* @__PURE__ */ jsxRuntime.jsx("svg", {
1229
1301
  xmlns: "http://www.w3.org/2000/svg",
1230
1302
  viewBox: "0 0 127.14 96.36",
1231
1303
  fill: "currentColor",
1304
+ width: size,
1305
+ height: size,
1232
1306
  ...props,
1233
- height: props.width,
1234
1307
  children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1235
1308
  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"
1236
1309
  })
1237
1310
  });
1238
1311
  });
1239
- const LogoFabric = qwik.component$((props) => {
1312
+ const LogoFabric = qwik.component$(({ size, ...props }) => {
1240
1313
  return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
1241
1314
  xmlns: "http://www.w3.org/2000/svg",
1242
1315
  "xml:space": "preserve",
@@ -1245,8 +1318,9 @@ const LogoFabric = qwik.component$((props) => {
1245
1318
  "stroke-linejoin": "round",
1246
1319
  "clip-rule": "evenodd",
1247
1320
  viewBox: "0 0 24 24",
1321
+ width: size,
1322
+ height: size,
1248
1323
  ...props,
1249
- height: props.width,
1250
1324
  children: [
1251
1325
  /* @__PURE__ */ jsxRuntime.jsx("path", {
1252
1326
  fill: "none",
@@ -1262,7 +1336,7 @@ const LogoFabric = qwik.component$((props) => {
1262
1336
  ]
1263
1337
  });
1264
1338
  });
1265
- const LogoForge = qwik.component$((props) => {
1339
+ const LogoForge = qwik.component$(({ size, ...props }) => {
1266
1340
  return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
1267
1341
  "xml:space": "preserve",
1268
1342
  "fill-rule": "evenodd",
@@ -1271,8 +1345,9 @@ const LogoForge = qwik.component$((props) => {
1271
1345
  "stroke-miterlimit": "1.5",
1272
1346
  "clip-rule": "evenodd",
1273
1347
  viewBox: "0 0 24 24",
1348
+ width: size,
1349
+ height: size,
1274
1350
  ...props,
1275
- height: props.width,
1276
1351
  children: [
1277
1352
  /* @__PURE__ */ jsxRuntime.jsx("path", {
1278
1353
  fill: "none",
@@ -1287,7 +1362,7 @@ const LogoForge = qwik.component$((props) => {
1287
1362
  ]
1288
1363
  });
1289
1364
  });
1290
- const LogoLuminescent = qwik.component$((props) => {
1365
+ const LogoLuminescent = qwik.component$(({ size, ...props }) => {
1291
1366
  return /* @__PURE__ */ jsxRuntime.jsx("svg", {
1292
1367
  xmlns: "http://www.w3.org/2000/svg",
1293
1368
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
@@ -1296,8 +1371,9 @@ const LogoLuminescent = qwik.component$((props) => {
1296
1371
  preserveAspectRatio: "xMidYMid meet",
1297
1372
  version: "1.0",
1298
1373
  fill: "currentColor",
1374
+ width: size,
1375
+ height: size,
1299
1376
  ...props,
1300
- height: props.width,
1301
1377
  children: /* @__PURE__ */ jsxRuntime.jsx("g", {
1302
1378
  "fill-opacity": "1",
1303
1379
  children: /* @__PURE__ */ jsxRuntime.jsx("g", {
@@ -1309,7 +1385,7 @@ const LogoLuminescent = qwik.component$((props) => {
1309
1385
  })
1310
1386
  });
1311
1387
  });
1312
- const LogoLuminescentFull = qwik.component$((props) => {
1388
+ const LogoLuminescentFull = qwik.component$(({ size, ...props }) => {
1313
1389
  return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
1314
1390
  xmlns: "http://www.w3.org/2000/svg",
1315
1391
  "xmlns:xlink": "http://www.w3.org/1999/xlink",
@@ -1318,6 +1394,7 @@ const LogoLuminescentFull = qwik.component$((props) => {
1318
1394
  preserveAspectRatio: "xMidYMid meet",
1319
1395
  version: "1.0",
1320
1396
  fill: "currentColor",
1397
+ height: size,
1321
1398
  ...props,
1322
1399
  children: [
1323
1400
  /* @__PURE__ */ jsxRuntime.jsx("g", {
@@ -1422,7 +1499,7 @@ const LogoLuminescentFull = qwik.component$((props) => {
1422
1499
  ]
1423
1500
  });
1424
1501
  });
1425
- const LogoPaper = qwik.component$((props) => {
1502
+ const LogoPaper = qwik.component$(({ size, ...props }) => {
1426
1503
  return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
1427
1504
  "xml:space": "preserve",
1428
1505
  "fill-rule": "evenodd",
@@ -1431,8 +1508,9 @@ const LogoPaper = qwik.component$((props) => {
1431
1508
  "stroke-miterlimit": "1.5",
1432
1509
  "clip-rule": "evenodd",
1433
1510
  viewBox: "0 0 24 24",
1511
+ width: size,
1512
+ height: size,
1434
1513
  ...props,
1435
- height: props.width,
1436
1514
  children: [
1437
1515
  /* @__PURE__ */ jsxRuntime.jsx("path", {
1438
1516
  fill: "none",
@@ -1456,14 +1534,15 @@ const LogoPaper = qwik.component$((props) => {
1456
1534
  ]
1457
1535
  });
1458
1536
  });
1459
- const LogoPterodactyl = qwik.component$((props) => {
1537
+ const LogoPterodactyl = qwik.component$(({ size, ...props }) => {
1460
1538
  return /* @__PURE__ */ jsxRuntime.jsx("svg", {
1461
1539
  version: "1.0",
1462
1540
  xmlns: "http://www.w3.org/2000/svg",
1463
1541
  viewBox: "0 0 180 180",
1464
1542
  preserveAspectRatio: "xMidYMid meet",
1543
+ width: size,
1544
+ height: size,
1465
1545
  ...props,
1466
- height: props.width,
1467
1546
  children: /* @__PURE__ */ jsxRuntime.jsxs("g", {
1468
1547
  transform: "translate(0,180) scale(0.100000,-0.100000)",
1469
1548
  fill: "currentColor",
@@ -1485,7 +1564,7 @@ const LogoPterodactyl = qwik.component$((props) => {
1485
1564
  })
1486
1565
  });
1487
1566
  });
1488
- const LogoPurpur = qwik.component$((props) => {
1567
+ const LogoPurpur = qwik.component$(({ size, ...props }) => {
1489
1568
  return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
1490
1569
  "xml:space": "preserve",
1491
1570
  "fill-rule": "evenodd",
@@ -1494,8 +1573,9 @@ const LogoPurpur = qwik.component$((props) => {
1494
1573
  "stroke-miterlimit": "1.5",
1495
1574
  "clip-rule": "evenodd",
1496
1575
  viewBox: "0 0 24 24",
1576
+ width: size,
1577
+ height: size,
1497
1578
  ...props,
1498
- height: props.width,
1499
1579
  children: [
1500
1580
  /* @__PURE__ */ jsxRuntime.jsx("defs", {
1501
1581
  children: /* @__PURE__ */ jsxRuntime.jsx("path", {
@@ -1555,12 +1635,13 @@ const LogoPurpur = qwik.component$((props) => {
1555
1635
  ]
1556
1636
  });
1557
1637
  });
1558
- const LogoVelocity = qwik.component$((props) => {
1638
+ const LogoVelocity = qwik.component$(({ size, ...props }) => {
1559
1639
  return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
1560
1640
  viewBox: "0 0 500 500",
1561
1641
  fill: "currentColor",
1642
+ width: size,
1643
+ height: size,
1562
1644
  ...props,
1563
- height: props.width,
1564
1645
  children: [
1565
1646
  /* @__PURE__ */ jsxRuntime.jsx("path", {
1566
1647
  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"
@@ -1576,7 +1657,7 @@ const LogoVelocity = qwik.component$((props) => {
1576
1657
  ]
1577
1658
  });
1578
1659
  });
1579
- const LogoWaterfall = qwik.component$((props) => {
1660
+ const LogoWaterfall = qwik.component$(({ size, ...props }) => {
1580
1661
  return /* @__PURE__ */ jsxRuntime.jsx("svg", {
1581
1662
  viewBox: "0 0 24 24",
1582
1663
  fill: "none",
@@ -1584,8 +1665,9 @@ const LogoWaterfall = qwik.component$((props) => {
1584
1665
  "stroke-width": "2",
1585
1666
  "stroke-linecap": "round",
1586
1667
  "stroke-linejoin": "round",
1668
+ width: size,
1669
+ height: size,
1587
1670
  ...props,
1588
- height: props.width,
1589
1671
  children: /* @__PURE__ */ jsxRuntime.jsx("path", {
1590
1672
  d: "M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"
1591
1673
  })
@@ -1595,8 +1677,6 @@ exports.Anchor = Anchor;
1595
1677
  exports.Blobs = Blobs;
1596
1678
  exports.ColorPicker = ColorPicker;
1597
1679
  exports.Dropdown = Dropdown;
1598
- exports.DropdownRaw = DropdownRaw;
1599
- exports.Header = Header;
1600
1680
  exports.LogoBirdflop = LogoBirdflop;
1601
1681
  exports.LogoDiscord = LogoDiscord;
1602
1682
  exports.LogoFabric = LogoFabric;
@@ -1611,6 +1691,8 @@ exports.LogoWaterfall = LogoWaterfall;
1611
1691
  exports.Nav = Nav;
1612
1692
  exports.NumberInput = NumberInput;
1613
1693
  exports.NumberInputRaw = NumberInputRaw;
1694
+ exports.SelectMenu = SelectMenu;
1695
+ exports.SelectMenuRaw = SelectMenuRaw;
1614
1696
  exports.Toggle = Toggle;
1615
1697
  exports.blobColorClasses = blobColorClasses;
1616
1698
  exports.toggleOffColorClasses = toggleOffColorClasses;