@luminescent/ui 0.7.2 → 0.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/LICENSE +661 -661
  2. package/README.md +48 -48
  3. package/package.json +62 -62
  4. package/src/tailwind.config.js +71 -71
  5. package/lib/index.qwik.cjs +0 -1944
  6. package/lib/index.qwik.mjs +0 -1944
  7. package/lib-types/components/elements/Anchor.d.ts +0 -5
  8. package/lib-types/components/elements/Button.d.ts +0 -32
  9. package/lib-types/components/elements/Card.d.ts +0 -105
  10. package/lib-types/components/elements/ColorInput.d.ts +0 -9
  11. package/lib-types/components/elements/Header.d.ts +0 -8
  12. package/lib-types/components/elements/LoadingIcon.d.ts +0 -10
  13. package/lib-types/components/elements/NumberInput.d.ts +0 -25
  14. package/lib-types/components/elements/SelectInput.d.ts +0 -14
  15. package/lib-types/components/elements/TextArea.d.ts +0 -13
  16. package/lib-types/components/elements/TextInput.d.ts +0 -15
  17. package/lib-types/components/elements/Toggle.d.ts +0 -12
  18. package/lib-types/components/elements.d.ts +0 -11
  19. package/lib-types/components/logos/Birdflop.d.ts +0 -7
  20. package/lib-types/components/logos/Discord.d.ts +0 -2
  21. package/lib-types/components/logos/Fabric.d.ts +0 -2
  22. package/lib-types/components/logos/Forge.d.ts +0 -2
  23. package/lib-types/components/logos/IconProps.d.ts +0 -3
  24. package/lib-types/components/logos/LoadingIcon.d.ts +0 -8
  25. package/lib-types/components/logos/Luminescent.d.ts +0 -3
  26. package/lib-types/components/logos/Paper.d.ts +0 -2
  27. package/lib-types/components/logos/Pterodactyl.d.ts +0 -2
  28. package/lib-types/components/logos/Purpur.d.ts +0 -2
  29. package/lib-types/components/logos/Velocity.d.ts +0 -2
  30. package/lib-types/components/logos/Waterfall.d.ts +0 -2
  31. package/lib-types/components/logos.d.ts +0 -10
  32. package/lib-types/entry.dev.d.ts +0 -2
  33. package/lib-types/entry.ssr.d.ts +0 -14
  34. package/lib-types/index.d.ts +0 -2
  35. package/lib-types/root.d.ts +0 -3
  36. package/lib-types/svg/ChevronDown.d.ts +0 -2
  37. package/lib-types/svg/Minus.d.ts +0 -2
  38. package/lib-types/svg/Plus.d.ts +0 -2
  39. package/lib-types/tailwind.config.d.ts +0 -122
  40. package/lib-types/utils/simple-color-picker/color.d.ts +0 -51
  41. package/lib-types/utils/simple-color-picker/index.d.ts +0 -145
  42. package/lib-types/utils/simple-color-picker/utils.d.ts +0 -6
@@ -1,1944 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const qwik = require("@builder.io/qwik");
4
- const build = require("@builder.io/qwik/build");
5
- const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
6
- const Anchor = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => /* @__PURE__ */ qwik._jsxQ("span", null, {
7
- class: "block h-32 -mt-32",
8
- id: qwik._fnSignal((p0) => p0.id, [
9
- props
10
- ], "p0.id")
11
- }, null, 3, "Oa_0"), "Anchor_component_O7y4zyaazA0"));
12
- const buttonColorClasses = {
13
- blue: "bg-blue-600/90 border-blue-500 hover:bg-blue-500 active:bg-blue-400 focus:border-blue-400",
14
- purple: "bg-purple-600/90 border-purple-500 hover:bg-purple-500 active:bg-purple-400 focus:border-purple-400",
15
- pink: "bg-pink-600/90 border-pink-500 hover:bg-pink-500 active:bg-pink-400 focus:border-pink-400",
16
- gray: "bg-gray-700/90 border-gray-600 hover:bg-gray-600 active:bg-gray-500 focus:border-gray-500",
17
- darkgray: "bg-gray-800/90 border-gray-700 hover:bg-gray-700 active:bg-gray-600 focus:border-gray-600",
18
- red: "bg-red-700/90 border-red-600 hover:bg-red-600 active:bg-red-500 focus:border-red-500",
19
- green: "bg-green-700/90 border-green-600 hover:bg-green-600 active:bg-green-500 focus:border-green-500",
20
- yellow: "bg-yellow-700/90 border-yellow-600 hover:bg-yellow-600 active:bg-yellow-500 focus:border-yellow-500"
21
- };
22
- const sizeClasses = {
23
- sm: "text-sm px-2 py-1 rounded-md gap-2 active:px-1",
24
- md: "text-base px-4 py-2 rounded-md gap-3",
25
- lg: "text-base px-6 py-3 rounded-lg gap-3",
26
- xl: "text-base px-8 py-4 rounded-xl gap-4"
27
- };
28
- const buttonClass = "relative flex items-center gap-3 transition ease-in-out border text-gray-50 fill-gray-50 disabled:opacity-50 hover:shadow-lg active:scale-95";
29
- const Button = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
30
- const props1 = qwik._restProps(props, [
31
- "color",
32
- "size"
33
- ]);
34
- props1.class = {
35
- [buttonClass]: true,
36
- [buttonColorClasses[props.color ?? "darkgray"]]: true,
37
- [sizeClasses[props.size ?? "md"]]: true,
38
- ...props1.class
39
- };
40
- return /* @__PURE__ */ qwik._jsxS("button", {
41
- ...props1,
42
- children: /* @__PURE__ */ qwik._jsxC(qwik.Slot, null, 3, "7H_0")
43
- }, null, 0, "7H_1");
44
- }, "Button_component_40p6lkzzQYM"));
45
- const ButtonAnchor = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
46
- const props1 = qwik._restProps(props, [
47
- "color",
48
- "size"
49
- ]);
50
- props1.class = {
51
- [buttonClass]: true,
52
- [buttonColorClasses[props.color ?? "darkgray"]]: true,
53
- [sizeClasses[props.size ?? "md"]]: true,
54
- ...props1.class
55
- };
56
- return /* @__PURE__ */ qwik._jsxS("a", {
57
- ...props1,
58
- children: /* @__PURE__ */ qwik._jsxC(qwik.Slot, null, 3, "7H_2")
59
- }, null, 0, "7H_3");
60
- }, "ButtonAnchor_component_vQT9xS0lqew"));
61
- const cardColorClasses = {
62
- pink: {
63
- card: {
64
- bg_blobs: "bg-pink-400/10 border-pink-400/20",
65
- bg: "bg-pink-400/60 border-pink-400",
66
- hover: "hover:bg-pink-400/20",
67
- click: "active:bg-pink-300/20"
68
- },
69
- blobs: [
70
- "bg-pink-400",
71
- "bg-pink-500",
72
- "bg-pink-600"
73
- ]
74
- },
75
- red: {
76
- card: {
77
- bg_blobs: "bg-red-400/10 border-red-400/20",
78
- bg: "bg-red-400/60 border-red-400",
79
- hover: "hover:bg-red-400/20",
80
- click: "active:bg-red-300/20"
81
- },
82
- blobs: [
83
- "bg-red-400",
84
- "bg-red-500",
85
- "bg-red-600"
86
- ]
87
- },
88
- orange: {
89
- card: {
90
- bg_blobs: "bg-orange-400/10 border-orange-400/20",
91
- bg: "bg-orange-400/60 border-orange-400",
92
- hover: "hover:bg-orange-400/20",
93
- click: "active:bg-orange-300/20"
94
- },
95
- blobs: [
96
- "bg-orange-400",
97
- "bg-orange-500",
98
- "bg-orange-600"
99
- ]
100
- },
101
- yellow: {
102
- card: {
103
- bg_blobs: "bg-yellow-400/10 border-yellow-400/20",
104
- bg: "bg-yellow-400/60 border-yellow-400",
105
- hover: "hover:bg-yellow-400/20",
106
- click: "active:bg-yellow-300/20"
107
- },
108
- blobs: [
109
- "bg-yellow-400",
110
- "bg-yellow-500",
111
- "bg-yellow-600"
112
- ]
113
- },
114
- green: {
115
- card: {
116
- bg_blobs: "bg-green-400/10 border-green-400/20",
117
- bg: "bg-green-400/60 border-green-400",
118
- hover: "hover:bg-green-400/20",
119
- click: "active:bg-green-300/20"
120
- },
121
- blobs: [
122
- "bg-green-400",
123
- "bg-green-500",
124
- "bg-green-600"
125
- ]
126
- },
127
- blue: {
128
- card: {
129
- bg_blobs: "bg-blue-400/10 border-blue-400/20",
130
- bg: "bg-blue-400/60 border-blue-400",
131
- hover: "hover:bg-blue-400/20",
132
- click: "active:bg-blue-300/20"
133
- },
134
- blobs: [
135
- "bg-blue-400",
136
- "bg-blue-500",
137
- "bg-blue-600"
138
- ]
139
- },
140
- purple: {
141
- card: {
142
- bg_blobs: "bg-purple-400/10 border-purple-400/20",
143
- bg: "bg-purple-400/60 border-purple-400",
144
- hover: "hover:bg-purple-400/20",
145
- click: "active:bg-purple-300/20"
146
- },
147
- blobs: [
148
- "bg-purple-400",
149
- "bg-purple-500",
150
- "bg-purple-600"
151
- ]
152
- },
153
- gray: {
154
- card: {
155
- bg_blobs: "bg-gray-400/10 border-gray-400/20",
156
- bg: "bg-gray-400/60 border-gray-400",
157
- hover: "hover:bg-gray-400/20",
158
- click: "active:bg-gray-300/20"
159
- },
160
- blobs: [
161
- "bg-gray-400",
162
- "bg-gray-500",
163
- "bg-gray-600"
164
- ]
165
- },
166
- darkgray: {
167
- card: {
168
- bg_blobs: "bg-gray-800/10 border-gray-800/40",
169
- bg: "bg-gray-800/60 border-gray-800",
170
- hover: "hover:bg-gray-800/40",
171
- click: "active:bg-gray-700/40"
172
- },
173
- blobs: [
174
- "bg-gray-500",
175
- "bg-gray-600",
176
- "bg-gray-700"
177
- ]
178
- },
179
- darkergray: {
180
- card: {
181
- bg_blobs: "bg-gray-900/10 border-gray-900/50",
182
- bg: "bg-gray-900/60 border-gray-900",
183
- hover: "hover:bg-gray-900/50",
184
- click: "active:bg-gray-800/50"
185
- },
186
- blobs: [
187
- "bg-gray-600",
188
- "bg-gray-700",
189
- "bg-gray-800"
190
- ]
191
- }
192
- };
193
- const blobClasses = [
194
- "animate-blob",
195
- "animate-blob1",
196
- "animate-blob2",
197
- "animate-blob3",
198
- "animate-blob4",
199
- "animate-blob5",
200
- "animate-blob6"
201
- ];
202
- const Card = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
203
- const props1 = qwik._restProps(props, [
204
- "color",
205
- "hover",
206
- "row",
207
- "blobs"
208
- ]);
209
- const blob = Math.round(Math.random() * 6);
210
- let Component = /* @__PURE__ */ qwik._jsxS("div", {
211
- ...props1,
212
- children: /* @__PURE__ */ qwik._jsxC(qwik.Slot, null, 3, "OW_0"),
213
- class: {
214
- "flex gap-4 p-8 border rounded-lg transition-all": true,
215
- [cardColorClasses[props.color ?? "darkgray"].card.bg]: !props.blobs,
216
- [cardColorClasses[props.color ?? "darkgray"].card.bg_blobs]: props.blobs,
217
- [cardColorClasses[props.color ?? "darkgray"].card.hover + " hover:shadow-lg"]: props.hover,
218
- [cardColorClasses[props.color ?? "darkgray"].card.click + " active:scale-[99%] cursor-pointer select-none"]: props.hover == "clickable",
219
- "h-full": props1.href,
220
- "flex-col": !props.row,
221
- "flex-row items-center": props.row,
222
- ...props1.class
223
- }
224
- }, null, 0, "OW_1");
225
- if (props.blobs)
226
- Component = /* @__PURE__ */ qwik._jsxQ("div", null, {
227
- class: "relative"
228
- }, [
229
- Component,
230
- /* @__PURE__ */ qwik._jsxQ("div", null, {
231
- class: "absolute -z-10 inset-0 w-full h-full transition-all overflow-clip animate-in fade-in anim-duration-[2s]",
232
- style: {
233
- containerType: "size"
234
- }
235
- }, [
236
- /* @__PURE__ */ qwik._jsxQ("div", {
237
- class: {
238
- "absolute top-0 w-[30cqw] h-[30cqw] rounded-full opacity-20 ease-in-out blur-xl": true,
239
- [blobClasses[blob]]: true,
240
- [cardColorClasses[props.color ?? "darkgray"].blobs[0]]: true
241
- }
242
- }, null, null, 3, null),
243
- /* @__PURE__ */ qwik._jsxQ("div", {
244
- class: {
245
- "absolute top-0 w-[30cqw] h-[30cqw] rounded-full opacity-20 ease-in-out blur-xl": true,
246
- "anim-delay-[-5s]": true,
247
- [blobClasses[blob]]: true,
248
- [cardColorClasses[props.color ?? "darkgray"].blobs[1]]: true
249
- }
250
- }, null, null, 3, null),
251
- /* @__PURE__ */ qwik._jsxQ("div", {
252
- class: {
253
- "absolute top-0 w-[30cqw] h-[30cqw] rounded-full opacity-20 ease-in-out blur-xl": true,
254
- "anim-delay-[-10s]": true,
255
- [blobClasses[blob]]: true,
256
- [cardColorClasses[props.color ?? "darkgray"].blobs[2]]: true
257
- }
258
- }, null, null, 3, null)
259
- ], 1, null)
260
- ], 1, "OW_2");
261
- if (props1.href)
262
- Component = /* @__PURE__ */ qwik._jsxQ("a", {
263
- href: qwik._wrapSignal(props1, "href")
264
- }, null, Component, 1, "OW_3");
265
- return Component;
266
- }, "Card_component_DlkkcTEVka4"));
267
- const InputClasses = "transition ease-in-out text-lg border border-gray-700 bg-gray-800 text-gray-50 hover:bg-gray-700 hover:shadow-lg focus:bg-gray-700 focus:outline-none focus:border-gray-400 rounded-md px-3 py-2";
268
- const TextInput = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
269
- return /* @__PURE__ */ qwik._jsxQ("div", null, {
270
- class: "flex flex-col"
271
- }, [
272
- /* @__PURE__ */ qwik._jsxQ("label", null, {
273
- class: "pb-2",
274
- for: qwik._fnSignal((p0) => p0.id, [
275
- props
276
- ], "p0.id")
277
- }, /* @__PURE__ */ qwik._jsxC(qwik.Slot, null, 3, "dC_0"), 1, null),
278
- /* @__PURE__ */ qwik._jsxC(TextInputRaw, {
279
- ...props,
280
- children: void 0
281
- }, 0, "dC_1")
282
- ], 1, "dC_2");
283
- }, "TextInput_component_AXp2j5aulZI"));
284
- const TextInputRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
285
- return /* @__PURE__ */ qwik._jsxS("input", {
286
- ...props,
287
- class: {
288
- [InputClasses]: true,
289
- ...props.class
290
- }
291
- }, null, 0, "dC_3");
292
- }, "TextInputRaw_component_ssloWlmBB4w"));
293
- const clamp = (value, min, max) => Math.min(Math.max(value, min), max);
294
- function getMousePosition(e) {
295
- if (e instanceof TouchEvent) {
296
- const touch = e.touches[0];
297
- return {
298
- x: touch.clientX,
299
- y: touch.clientY
300
- };
301
- }
302
- const mouse = e;
303
- return {
304
- x: mouse.clientX,
305
- y: mouse.clientY
306
- };
307
- }
308
- const pad2 = (c) => c.length == 1 ? "0" + c : "" + c;
309
- class Color {
310
- constructor(color) {
311
- this._rgba = {
312
- r: 0,
313
- g: 0,
314
- b: 0,
315
- a: 1
316
- };
317
- this._hsva = {
318
- h: 0,
319
- s: 0,
320
- v: 0,
321
- a: 1
322
- };
323
- this.fromHex(color);
324
- }
325
- fromHex(color = 0) {
326
- if (typeof color === "number") {
327
- this._hexNumber = color;
328
- this._hexString = numberToHexString(this._hexNumber);
329
- } else {
330
- this._hexString = color.toUpperCase();
331
- this._hexNumber = hexStringToNumber(this._hexString);
332
- }
333
- const { r, g, b } = hexNumberToRgb(this._hexNumber);
334
- this._rgba.r = r;
335
- this._rgba.g = g;
336
- this._rgba.b = b;
337
- const { h, s, v } = rgbToHsv(this._rgba);
338
- this._hsva.h = h;
339
- this._hsva.s = s;
340
- this._hsva.v = v;
341
- this._updateBrightness();
342
- }
343
- fromHsv(color) {
344
- const { h, s, v } = color;
345
- this._hsva.h = h;
346
- this._hsva.s = s;
347
- this._hsva.v = v;
348
- const { r, g, b } = hsvToRgb(this._hsva);
349
- this._rgba.r = r;
350
- this._rgba.g = g;
351
- this._rgba.b = b;
352
- this._hexString = rgbToHex(this._rgba);
353
- this._hexNumber = hexStringToNumber(this._hexString);
354
- this._updateBrightness();
355
- }
356
- _updateBrightness() {
357
- this._brightness = getBrightness(this._rgba);
358
- this._isDark = this._brightness < 0.5;
359
- this._isLight = !this._isDark;
360
- }
361
- get rgb() {
362
- return this._rgba;
363
- }
364
- get hsv() {
365
- return this._hsva;
366
- }
367
- get hex() {
368
- return this._hexNumber;
369
- }
370
- get hexString() {
371
- return this._hexString;
372
- }
373
- get brightness() {
374
- return this._brightness;
375
- }
376
- get isDark() {
377
- return this._isDark;
378
- }
379
- get isLight() {
380
- return this._isLight;
381
- }
382
- }
383
- function getBrightness(color) {
384
- const { r, g, b } = color;
385
- return (r * 299 + g * 587 + b * 114) / 1e3;
386
- }
387
- function hexNumberToRgb(color) {
388
- const r = (color >> 16 & 255) / 255;
389
- const g = (color >> 8 & 255) / 255;
390
- const b = (color & 255) / 255;
391
- return {
392
- r,
393
- g,
394
- b
395
- };
396
- }
397
- function rgbToHex(color) {
398
- const { r, g, b } = color;
399
- const hex = [
400
- "#",
401
- pad2(Math.round(r * 255).toString(16)),
402
- pad2(Math.round(g * 255).toString(16)),
403
- pad2(Math.round(b * 255).toString(16))
404
- ];
405
- return hex.join("").toUpperCase();
406
- }
407
- const numberToHexString = (color) => "#" + ("00000" + (color | 0).toString(16)).substr(-6).toUpperCase();
408
- const hexStringToNumber = (color) => parseInt(color.replace("#", ""), 16);
409
- function hsvToRgb(color) {
410
- let { h } = color;
411
- const { s, v } = color;
412
- h *= 6;
413
- const i = Math.floor(h);
414
- const f = h - i;
415
- const p = v * (1 - s);
416
- const q = v * (1 - f * s);
417
- const t = v * (1 - (1 - f) * s);
418
- const mod = i % 6;
419
- const r = [
420
- v,
421
- q,
422
- p,
423
- p,
424
- t,
425
- v
426
- ][mod];
427
- const g = [
428
- t,
429
- v,
430
- v,
431
- q,
432
- p,
433
- p
434
- ][mod];
435
- const b = [
436
- p,
437
- p,
438
- t,
439
- v,
440
- v,
441
- q
442
- ][mod];
443
- return {
444
- r,
445
- g,
446
- b
447
- };
448
- }
449
- function rgbToHsv(color) {
450
- const { r, g, b } = color;
451
- const max = Math.max(r, g, b);
452
- const min = Math.min(r, g, b);
453
- const d = max - min;
454
- const s = max === 0 ? 0 : d / max;
455
- const v = max;
456
- let h = 0;
457
- if (max != min) {
458
- switch (max) {
459
- case r:
460
- h = (g - b) / d + (g < b ? 6 : 0);
461
- break;
462
- case g:
463
- h = (b - r) / d + 2;
464
- break;
465
- case b:
466
- h = (r - g) / d + 4;
467
- break;
468
- }
469
- h /= 6;
470
- }
471
- return {
472
- h,
473
- s,
474
- v
475
- };
476
- }
477
- class ColorPicker {
478
- constructor(options = {}) {
479
- this._widthUnits = "px";
480
- this._heightUnits = "px";
481
- this._huePosition = 0;
482
- this._hueHeight = 0;
483
- this._maxHue = 0;
484
- this._inputIsNumber = false;
485
- this._saturationWidth = 0;
486
- this._isChoosing = false;
487
- this._callbacks = [];
488
- this.width = 0;
489
- this.height = 0;
490
- this.hue = 0;
491
- this.position = {
492
- x: 0,
493
- y: 0
494
- };
495
- this.color = new Color(0);
496
- this.backgroundColor = new Color(0);
497
- this.hueColor = new Color(0);
498
- this._onSaturationMouseDown = (e) => {
499
- const sbOffset = this.$saturation.getBoundingClientRect();
500
- const { x, y } = getMousePosition(e);
501
- this._isChoosing = true;
502
- this._moveSelectorTo(x - sbOffset.left, y - sbOffset.top);
503
- this._updateColorFromPosition();
504
- this._window.addEventListener("mouseup", this._onSaturationMouseUp);
505
- this._window.addEventListener("touchend", this._onSaturationMouseUp);
506
- this._window.addEventListener("mousemove", this._onSaturationMouseMove);
507
- this._window.addEventListener("touchmove", this._onSaturationMouseMove);
508
- e.preventDefault();
509
- };
510
- this._onSaturationMouseMove = (e) => {
511
- const sbOffset = this.$saturation.getBoundingClientRect();
512
- const { x, y } = getMousePosition(e);
513
- this._moveSelectorTo(x - sbOffset.left, y - sbOffset.top);
514
- this._updateColorFromPosition();
515
- };
516
- this._onSaturationMouseUp = () => {
517
- this._isChoosing = false;
518
- this._window.removeEventListener("mouseup", this._onSaturationMouseUp);
519
- this._window.removeEventListener("touchend", this._onSaturationMouseUp);
520
- this._window.removeEventListener("mousemove", this._onSaturationMouseMove);
521
- this._window.removeEventListener("touchmove", this._onSaturationMouseMove);
522
- };
523
- this._onHueMouseDown = (e) => {
524
- const hOffset = this.$hue.getBoundingClientRect();
525
- const { y } = getMousePosition(e);
526
- this._isChoosing = true;
527
- this._moveHueTo(y - hOffset.top);
528
- this._updateHueFromPosition();
529
- this._window.addEventListener("mouseup", this._onHueMouseUp);
530
- this._window.addEventListener("touchend", this._onHueMouseUp);
531
- this._window.addEventListener("mousemove", this._onHueMouseMove);
532
- this._window.addEventListener("touchmove", this._onHueMouseMove);
533
- e.preventDefault();
534
- };
535
- this._onHueMouseMove = (e) => {
536
- const hOffset = this.$hue.getBoundingClientRect();
537
- const { y } = getMousePosition(e);
538
- this._moveHueTo(y - hOffset.top);
539
- this._updateHueFromPosition();
540
- };
541
- this._onHueMouseUp = () => {
542
- this._isChoosing = false;
543
- this._window.removeEventListener("mouseup", this._onHueMouseUp);
544
- this._window.removeEventListener("touchend", this._onHueMouseUp);
545
- this._window.removeEventListener("mousemove", this._onHueMouseMove);
546
- this._window.removeEventListener("touchmove", this._onHueMouseMove);
547
- };
548
- this._window = options.window || window;
549
- this._document = this._window.document;
550
- this.$el = this._document.createElement("div");
551
- this.$el.className = "color-picker";
552
- this.$el.innerHTML = `
553
- <div class="color-picker-saturation">
554
- <div class="color-picker-brightness"></div>
555
- <div class="color-picker-sbSelector"></div>
556
- </div>
557
- <div class="color-picker-hue">
558
- <div class="color-picker-hSelector"></div>
559
- </div>
560
- `;
561
- this.$saturation = this.$el.querySelector(".color-picker-saturation");
562
- this.$hue = this.$el.querySelector(".color-picker-hue");
563
- this.$sbSelector = this.$el.querySelector(".color-picker-sbSelector");
564
- this.$hSelector = this.$el.querySelector(".color-picker-hSelector");
565
- this.$saturation.addEventListener("mousedown", this._onSaturationMouseDown);
566
- this.$saturation.addEventListener("touchstart", this._onSaturationMouseDown);
567
- this.$hue.addEventListener("mousedown", this._onHueMouseDown);
568
- this.$hue.addEventListener("touchstart", this._onHueMouseDown);
569
- if (options.el)
570
- this.appendTo(options.el);
571
- if (options.background)
572
- this.setBackgroundColor(options.background);
573
- if (options.widthUnits)
574
- this._widthUnits = options.widthUnits;
575
- if (options.heightUnits)
576
- this._heightUnits = options.heightUnits;
577
- if (options.colors) {
578
- this.$colors = this._document.createElement("div");
579
- this.$colors.className = "color-picker-colors";
580
- this.$el.appendChild(this.$colors);
581
- this.$colors.innerHTML = options.colors.map((color) => `<div class="color-picker-color" style="background: ${color}"></div>`).join("");
582
- }
583
- this.setSize(options.width || 175, options.height || 150);
584
- this.setColor(options.color);
585
- }
586
- /**
587
- * Add the ColorPicker instance to a DOM element.
588
- * @param {HTMLElement} el
589
- * @return {ColorPicker} Returns itself for chaining purpose
590
- */
591
- appendTo(el) {
592
- if (typeof el === "string")
593
- document.querySelector(el).appendChild(this.$el);
594
- else
595
- el.appendChild(this.$el);
596
- return this;
597
- }
598
- /**
599
- * Removes picker from its parent and kill all listeners.
600
- * Call this method for proper destroy.
601
- */
602
- remove() {
603
- this._callbacks = [];
604
- this._onSaturationMouseUp();
605
- this._onHueMouseUp();
606
- this.$saturation.removeEventListener("mousedown", this._onSaturationMouseDown);
607
- this.$saturation.removeEventListener("touchstart", this._onSaturationMouseDown);
608
- this.$hue.removeEventListener("mousedown", this._onHueMouseDown);
609
- this.$hue.removeEventListener("touchstart", this._onHueMouseDown);
610
- if (this.$el.parentNode)
611
- this.$el.parentNode.removeChild(this.$el);
612
- }
613
- /**
614
- * Manually set the current color of the picker. This is the method
615
- * used on instantiation to convert `color` option to actual color for
616
- * the picker. Param can be a hexadecimal number or an hex String.
617
- * @param {String|Number} color hex color desired
618
- * @return {ColorPicker} Returns itself for chaining purpose
619
- */
620
- setColor(color) {
621
- this._inputIsNumber = !isNaN(Number(color));
622
- this.color.fromHex(color);
623
- const { h, s, v } = this.color.hsv;
624
- if (!isNaN(h))
625
- this.hue = h;
626
- this._moveSelectorTo(this._saturationWidth * s, (1 - v) * this._hueHeight);
627
- this._moveHueTo((1 - this.hue) * this._hueHeight);
628
- this._updateHue();
629
- return this;
630
- }
631
- /**
632
- * Set size of the color picker for a given width and height. Note that
633
- * a padding of 5px will be added if you chose to use the background option
634
- * of the constructor.
635
- * @param {Number} width
636
- * @param {Number} height
637
- * @return {ColorPicker} Returns itself for chaining purpose
638
- */
639
- setSize(width, height) {
640
- this.width = width;
641
- this.height = height;
642
- this.$el.style.width = this.width + this._widthUnits;
643
- this.$el.style.height = this.height + this._heightUnits;
644
- this._saturationWidth = this.width - 25;
645
- this.$saturation.style.width = this._saturationWidth + "px";
646
- this._hueHeight = this.height;
647
- this._maxHue = this._hueHeight - 2;
648
- return this;
649
- }
650
- /**
651
- * Set the background color of the picker. It also adds a 5px padding
652
- * for design purpose.
653
- * @param {String|Number} color hex color desired for background
654
- * @return {ColorPicker} Returns itself for chaining purpose
655
- */
656
- setBackgroundColor(color) {
657
- this.backgroundColor.fromHex(color);
658
- this.$el.style.padding = "5px";
659
- this.$el.style.background = this.backgroundColor.hexString;
660
- return this;
661
- }
662
- /**
663
- * Removes background of the picker if previously set. It's no use
664
- * calling this method if you didn't set the background option on start
665
- * or if you didn't call setBackgroundColor previously.
666
- */
667
- setNoBackground() {
668
- this.$el.style.padding = "0px";
669
- this.$el.style.background = "none";
670
- return this;
671
- }
672
- /**
673
- * Registers callback to the update event of the picker.
674
- * picker inherits from [component/emitter](https://github.com/component/emitter)
675
- * so you could do the same thing by calling `colorPicker.on('update');`
676
- * @param {Function} callback
677
- * @return {ColorPicker} Returns itself for chaining purpose
678
- */
679
- onChange(callback) {
680
- if (this._callbacks.indexOf(callback) < 0) {
681
- this._callbacks.push(callback);
682
- callback(this.getHexString());
683
- }
684
- return this;
685
- }
686
- /**
687
- * Is true when mouse is down and user is currently choosing a color.
688
- */
689
- get isChoosing() {
690
- return this._isChoosing;
691
- }
692
- /* =============================================================================
693
- Color getters
694
- ============================================================================= */
695
- /**
696
- * Main color getter, will return a formatted color string depending on input
697
- * or a number depending on the last setColor call.
698
- * @return {Number|String}
699
- */
700
- getColor() {
701
- if (this._inputIsNumber)
702
- return this.getHexNumber();
703
- return this.getHexString();
704
- }
705
- /**
706
- * Returns color as css hex string (ex: '#FF0000').
707
- * @return {String}
708
- */
709
- getHexString() {
710
- return this.color.hexString.toUpperCase();
711
- }
712
- /**
713
- * Returns color as number (ex: 0xFF0000).
714
- * @return {Number}
715
- */
716
- getHexNumber() {
717
- return this.color.hex;
718
- }
719
- /**
720
- * Returns color as {r: 1, g: 0, b: 0} object.
721
- * @return {Object}
722
- */
723
- getRGB() {
724
- return this.color.rgb;
725
- }
726
- /**
727
- * Returns color as {h: 100, s: 1, v: 1} object.
728
- * @return {Object}
729
- */
730
- getHSV() {
731
- return this.color.hsv;
732
- }
733
- /**
734
- * Returns true if color is perceived as dark
735
- * @return {Boolean}
736
- */
737
- isDark() {
738
- return this.color.isDark;
739
- }
740
- /**
741
- * Returns true if color is perceived as light
742
- * @return {Boolean}
743
- */
744
- isLight() {
745
- return this.color.isLight;
746
- }
747
- /* =============================================================================
748
- Private methods
749
- ============================================================================= */
750
- _moveSelectorTo(x, y) {
751
- this.position.x = clamp(x, 0, this._saturationWidth);
752
- this.position.y = clamp(y, 0, this._hueHeight);
753
- this.$sbSelector.style.transform = `translate(${this.position.x}px, ${this.position.y}px)`;
754
- }
755
- _updateColorFromPosition() {
756
- this.color.fromHsv({
757
- h: this.hue,
758
- s: this.position.x / this._saturationWidth,
759
- v: 1 - this.position.y / this._hueHeight
760
- });
761
- this._updateColor();
762
- }
763
- _moveHueTo(y) {
764
- this._huePosition = clamp(y, 0, this._maxHue);
765
- this.$hSelector.style.transform = `translateY(${this._huePosition}px)`;
766
- }
767
- _updateHueFromPosition() {
768
- const hsvColor = this.getHSV();
769
- this.hue = 1 - this._huePosition / this._maxHue;
770
- this.color.fromHsv({
771
- h: this.hue,
772
- s: hsvColor.s,
773
- v: hsvColor.v
774
- });
775
- this._updateHue();
776
- }
777
- _updateHue() {
778
- this.hueColor.fromHsv({
779
- h: this.hue,
780
- s: 1,
781
- v: 1
782
- });
783
- this.$hSelector.style.background = this.hueColor.hexString;
784
- this.$saturation.style.background = `linear-gradient(to right, #fff, ${this.hueColor.hexString})`;
785
- this._updateColor();
786
- }
787
- _updateColor() {
788
- this.$sbSelector.style.background = this.getHexString();
789
- this.$sbSelector.style.borderColor = this.isDark() ? "#fff" : "#000";
790
- this._triggerChange();
791
- }
792
- _triggerChange() {
793
- this._callbacks.forEach((callback) => callback(this.getHexString()));
794
- }
795
- }
796
- const ColorInput = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
797
- const props1 = qwik._restProps(props, [
798
- "onInput$",
799
- "value",
800
- "presetColors",
801
- "preview"
802
- ]);
803
- qwik.useStylesQrl(/* @__PURE__ */ qwik.inlinedQrl(`
804
- .color-picker {
805
- display: flex;
806
- gap: 12px;
807
- height: 185px !important;
808
- width: 100% !important;
809
- padding: 15px;
810
- border-radius: 10px;
811
- border: 1px solid rgb(31 41 55);
812
- filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
813
- background: rgba(31 41 55 / 40%);
814
- backdrop-filter: blur(10px);
815
- user-select: none;
816
- position: relative;
817
- z-index: 1000;
818
- }
819
-
820
- .color-picker-saturation {
821
- position: relative;
822
- height: 100%;
823
- width: 100%;
824
- background: linear-gradient(to right, #FFFFFF, #FF0000);
825
- float: left;
826
- border-radius: 5px;
827
- border: 1px solid rgb(31 41 55);
828
- }
829
-
830
- .color-picker-brightness {
831
- width: 100%;
832
- height: 100%;
833
- background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 1));
834
- }
835
-
836
- .color-picker-sbSelector {
837
- border: 1px solid white;
838
- position: absolute;
839
- width: 14px;
840
- height: 14px;
841
- background: white;
842
- border-radius: 10px;
843
- top: -7px;
844
- left: -7px;
845
- box-sizing: border-box;
846
- }
847
-
848
- .color-picker-hue {
849
- width: 8px;
850
- border-radius: 5px;
851
- height: 100%;
852
- position: relative;
853
- float: left;
854
- background: linear-gradient(rgb(255, 0, 0) 0%, rgb(255, 0, 255) 17%, rgb(0, 0, 255) 34%, rgb(0, 255, 255) 50%, rgb(0, 255, 0) 67%, rgb(255, 255, 0) 84%, rgb(255, 0, 0) 100%);
855
- border: 1px solid rgb(31 41 55);
856
- }
857
-
858
- .color-picker-colors {
859
- height: 100%;
860
- position: relative;
861
- display: flex;
862
- flex-direction: column;
863
- gap: 5px;
864
- float: left;
865
- justify-content: space-evenly;
866
- flex-wrap: wrap;
867
- }
868
-
869
- .color-picker-color {
870
- height: 25px;
871
- width: 25px;
872
- border-radius: 5px;
873
- position: relative;
874
- background: red;
875
- border: 1px solid rgb(31 41 55);
876
- }
877
-
878
- .color-picker-hSelector {
879
- border: 1px solid white;
880
- position: absolute;
881
- width: 14px;
882
- height: 14px;
883
- background: white;
884
- border-radius: 10px;
885
- top: -6px;
886
- left: -4px;
887
- box-sizing: border-box;
888
- }
889
- `, "ColorInput_component_useStyles_SMNFl4Oy0IA"));
890
- return /* @__PURE__ */ qwik._jsxQ("div", null, null, [
891
- /* @__PURE__ */ qwik._jsxQ("label", {
892
- for: qwik._wrapSignal(props1, "id")
893
- }, {
894
- class: "mb-2 flex"
895
- }, /* @__PURE__ */ qwik._jsxC(qwik.Slot, null, 3, "0s_0"), 1, null),
896
- /* @__PURE__ */ qwik._jsxC(TextInputRaw, {
897
- ...props1,
898
- get value() {
899
- return props.value ?? "#000000";
900
- },
901
- onBlur$: /* @__PURE__ */ qwik.inlinedQrl(() => {
902
- const [props12] = qwik.useLexicalScope();
903
- const pickerDiv = document.getElementById(`${props12.id}-color-picker`);
904
- pickerDiv.classList.add("opacity-0", "pointer-events-none", "scale-95");
905
- }, "ColorInput_component_div_TextInputRaw_onBlur_giB7aSy8tnc", [
906
- props1
907
- ]),
908
- onFocus$: /* @__PURE__ */ qwik.inlinedQrl((event, element) => {
909
- const [props12, props2] = qwik.useLexicalScope();
910
- const pickerDiv = document.getElementById(`${props12.id}-color-picker`);
911
- if (!pickerDiv.children.length) {
912
- if (build.isServer)
913
- return;
914
- const picker = new ColorPicker({
915
- el: pickerDiv,
916
- color: props2.value ?? "#000000",
917
- colors: props2.presetColors,
918
- width: 150,
919
- height: 150
920
- });
921
- picker.onChange((color) => {
922
- element.value = color;
923
- switch (props2.preview ?? "left") {
924
- case "full":
925
- element.style.backgroundColor = color;
926
- element.style.color = getBrightness(hexNumberToRgb(hexStringToNumber(color))) > 0.5 ? "black" : "white";
927
- break;
928
- case "left":
929
- element.style.borderLeft = `40px solid ${color}`;
930
- break;
931
- case "right":
932
- element.style.borderRight = `40px solid ${color}`;
933
- break;
934
- case "top":
935
- element.style.borderTop = `10px solid ${color}`;
936
- break;
937
- case "bottom":
938
- element.style.borderBottom = `10px solid ${color}`;
939
- break;
940
- }
941
- if (props2.onInput$)
942
- props2.onInput$(color, element);
943
- });
944
- element.addEventListener("input", () => picker.setColor(element.value));
945
- }
946
- pickerDiv.classList.remove("opacity-0", "pointer-events-none", "scale-95");
947
- }, "ColorInput_component_div_TextInputRaw_onFocus_9bHrhSeTgfI", [
948
- props1,
949
- props
950
- ]),
951
- style: (props.preview ?? "left") == "full" ? {
952
- backgroundColor: `${props.value ?? "#000000"}`,
953
- color: getBrightness(hexNumberToRgb(hexStringToNumber(props.value ?? "#000000"))) > 0.5 ? "black" : "white"
954
- } : (props.preview ?? "left") == "left" ? {
955
- borderLeft: `40px solid ${props.value ?? "#000000"}`
956
- } : (props.preview ?? "left") == "right" ? {
957
- borderRight: `40px solid ${props.value ?? "#000000"}`
958
- } : (props.preview ?? "left") == "top" ? {
959
- borderTop: `10px solid ${props.value ?? "#000000"}`
960
- } : (props.preview ?? "left") == "bottom" ? {
961
- borderBottom: `10px solid ${props.value ?? "#000000"}`
962
- } : {},
963
- [qwik._IMMUTABLE]: {
964
- value: qwik._fnSignal((p0) => p0.value ?? "#000000", [
965
- props
966
- ], 'p0.value??"#000000"')
967
- }
968
- }, 0, "0s_1"),
969
- /* @__PURE__ */ qwik._jsxQ("div", {
970
- id: `${props1.id}-color-picker`
971
- }, {
972
- class: "absolute mt-2 opacity-0 transition-all pointer-events-none scale-95"
973
- }, null, 3, null)
974
- ], 1, "0s_2");
975
- }, "ColorInput_component_jilGo0Bn3Ps"));
976
- const LoadingIcon = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
977
- const props1 = qwik._restProps(props, [
978
- "width",
979
- "speed"
980
- ]);
981
- return /* @__PURE__ */ qwik._jsxS("div", {
982
- ...props1,
983
- class: {
984
- "animate-spin rounded-full border-transparent border-l-current border-t-current": true,
985
- ...props1.class
986
- }
987
- }, {
988
- style: qwik._fnSignal((p0) => ({
989
- borderWidth: p0.width / 8,
990
- width: p0.width,
991
- height: p0.width,
992
- animation: `spin ${p0.speed ?? "0.6s"} ease-in-out infinite`
993
- }), [
994
- props
995
- ], '{borderWidth:p0.width/8,width:p0.width,height:p0.width,animation:`spin ${p0.speed??"0.6s"} ease-in-out infinite`}')
996
- }, 0, "1A_0");
997
- }, "LoadingIcon_component_QMsA9D0RcAM"));
998
- const Header = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
999
- qwik._jsxBranch();
1000
- let Component = /* @__PURE__ */ qwik._jsxC(jsxRuntime.Fragment, {
1001
- children: /* @__PURE__ */ qwik._jsxQ("h2", null, {
1002
- class: "flex flex-1 items-center font-bold text-2xl"
1003
- }, [
1004
- props.id && /* @__PURE__ */ qwik._jsxC(Anchor, {
1005
- get id() {
1006
- return props.id;
1007
- },
1008
- [qwik._IMMUTABLE]: {
1009
- id: qwik._fnSignal((p0) => p0.id, [
1010
- props
1011
- ], "p0.id")
1012
- }
1013
- }, 3, "dL_0"),
1014
- /* @__PURE__ */ qwik._jsxC(qwik.Slot, null, 3, "dL_1")
1015
- ], 1, null)
1016
- }, 1, "dL_2");
1017
- if (props.subheader)
1018
- Component = /* @__PURE__ */ qwik._jsxQ("div", null, {
1019
- class: "flex flex-1 flex-col gap-1"
1020
- }, [
1021
- Component,
1022
- /* @__PURE__ */ qwik._jsxQ("h3", null, {
1023
- class: "flex flex-1 items-center text-gray-400 text-sm"
1024
- }, qwik._fnSignal((p0) => p0.subheader, [
1025
- props
1026
- ], "p0.subheader"), 3, null)
1027
- ], 1, "dL_3");
1028
- if (props.loading !== void 0)
1029
- Component = /* @__PURE__ */ qwik._jsxQ("div", null, {
1030
- class: "flex"
1031
- }, [
1032
- Component,
1033
- /* @__PURE__ */ qwik._jsxQ("div", null, {
1034
- class: qwik._fnSignal((p0) => ({
1035
- "transition-all duration-200": true,
1036
- "opacity-0": !p0.loading,
1037
- "opacity-100": p0.loading
1038
- }), [
1039
- props
1040
- ], '{"transition-all duration-200":true,"opacity-0":!p0.loading,"opacity-100":p0.loading}')
1041
- }, /* @__PURE__ */ qwik._jsxC(LoadingIcon, {
1042
- width: 24,
1043
- [qwik._IMMUTABLE]: {
1044
- width: qwik._IMMUTABLE
1045
- }
1046
- }, 3, "dL_4"), 1, null)
1047
- ], 1, "dL_5");
1048
- return Component;
1049
- }, "Header_component_FfGOhhBNG5k"));
1050
- const Plus = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1051
- return /* @__PURE__ */ qwik._jsxS("svg", {
1052
- ...props,
1053
- children: /* @__PURE__ */ qwik._jsxQ("path", null, {
1054
- d: "M256 112v288M400 256H112",
1055
- fill: "none",
1056
- stroke: "currentColor",
1057
- "stroke-linecap": "round",
1058
- "stroke-linejoin": "round",
1059
- "stroke-width": "32"
1060
- }, null, 3, null)
1061
- }, {
1062
- height: qwik._fnSignal((p0) => p0.width, [
1063
- props
1064
- ], "p0.width"),
1065
- viewBox: "0 0 512 512",
1066
- xmlns: "http://www.w3.org/2000/svg"
1067
- }, 0, "qR_0");
1068
- }, "Plus_component_a7LdBXNrC2w"));
1069
- const Minus = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1070
- return /* @__PURE__ */ qwik._jsxS("svg", {
1071
- ...props,
1072
- children: /* @__PURE__ */ qwik._jsxQ("path", null, {
1073
- d: "M400 256H112",
1074
- fill: "none",
1075
- stroke: "currentColor",
1076
- "stroke-linecap": "round",
1077
- "stroke-linejoin": "round",
1078
- "stroke-width": "32"
1079
- }, null, 3, null)
1080
- }, {
1081
- height: qwik._fnSignal((p0) => p0.width, [
1082
- props
1083
- ], "p0.width"),
1084
- viewBox: "0 0 512 512",
1085
- xmlns: "http://www.w3.org/2000/svg"
1086
- }, 0, "0g_0");
1087
- }, "Minus_component_oP9l58XNP1Q"));
1088
- const NumberInput = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1089
- return /* @__PURE__ */ qwik._jsxQ("div", null, {
1090
- class: "flex flex-col"
1091
- }, [
1092
- /* @__PURE__ */ qwik._jsxQ("label", null, {
1093
- class: "pb-2",
1094
- for: qwik._fnSignal((p0) => p0.id, [
1095
- props
1096
- ], "p0.id")
1097
- }, /* @__PURE__ */ qwik._jsxC(qwik.Slot, null, 3, "gk_0"), 1, null),
1098
- /* @__PURE__ */ qwik._jsxC(NumberInputRaw, {
1099
- ...props,
1100
- children: void 0
1101
- }, 0, "gk_1")
1102
- ], 1, "gk_2");
1103
- }, "NumberInput_component_1NmuE0VG00M"));
1104
- const NumberInputRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1105
- const props1 = qwik._restProps(props, [
1106
- "input",
1107
- "onDecrement$",
1108
- "onIncrement$",
1109
- "value",
1110
- "step"
1111
- ]);
1112
- qwik.useStylesQrl(/* @__PURE__ */ qwik.inlinedQrl(`
1113
- input::-webkit-outer-spin-button,
1114
- input::-webkit-inner-spin-button {
1115
- -webkit-appearance: none;
1116
- margin: 0;
1117
- }
1118
- input[type=number] {
1119
- -moz-appearance: textfield;
1120
- }
1121
- `, "NumberInputRaw_component_useStyles_v5EsWTMt0DU"));
1122
- const store = qwik.useStore({
1123
- value: props.value ?? 0
1124
- });
1125
- return /* @__PURE__ */ qwik._jsxQ("div", null, {
1126
- class: qwik._fnSignal((p0) => ({
1127
- "flex text-gray-50": true,
1128
- "gap-2": !p0.input
1129
- }), [
1130
- props
1131
- ], '{"flex text-gray-50":true,"gap-2":!p0.input}')
1132
- }, [
1133
- /* @__PURE__ */ qwik._jsxC(Button, {
1134
- get color() {
1135
- return props.input ? "gray" : "darkgray";
1136
- },
1137
- "aria-label": "Decrement",
1138
- "data-action": "decrement",
1139
- disabled: props1.min ? store.value <= props1.min : false,
1140
- onClick$: /* @__PURE__ */ qwik.inlinedQrl((event, element) => {
1141
- const [props2, store2] = qwik.useLexicalScope();
1142
- store2.value = store2.value - (props2.step ?? 1);
1143
- props2.onDecrement$(event, element, store2);
1144
- }, "NumberInputRaw_component_div_Button_onClick_PgKg57gfX0I", [
1145
- props,
1146
- store
1147
- ]),
1148
- get class() {
1149
- return {
1150
- "mr-2": props.input
1151
- };
1152
- },
1153
- children: /* @__PURE__ */ qwik._jsxC(Minus, {
1154
- class: "fill-current",
1155
- width: "24",
1156
- [qwik._IMMUTABLE]: {
1157
- class: qwik._IMMUTABLE,
1158
- width: qwik._IMMUTABLE
1159
- }
1160
- }, 3, "gk_3"),
1161
- [qwik._IMMUTABLE]: {
1162
- "aria-label": qwik._IMMUTABLE,
1163
- class: qwik._fnSignal((p0) => ({
1164
- "mr-2": p0.input
1165
- }), [
1166
- props
1167
- ], '{"mr-2":p0.input}'),
1168
- color: qwik._fnSignal((p0) => p0.input ? "gray" : "darkgray", [
1169
- props
1170
- ], 'p0.input?"gray":"darkgray"'),
1171
- "data-action": qwik._IMMUTABLE,
1172
- onClick$: qwik._IMMUTABLE
1173
- }
1174
- }, 1, "gk_4"),
1175
- props.input && /* @__PURE__ */ qwik._jsxS("input", {
1176
- ...props1,
1177
- class: {
1178
- [InputClasses]: true,
1179
- ...props1.class
1180
- }
1181
- }, {
1182
- step: qwik._fnSignal((p0) => p0.step ?? 1, [
1183
- props
1184
- ], "p0.step??1"),
1185
- type: "number",
1186
- value: qwik._fnSignal((p0) => p0.value, [
1187
- store
1188
- ], "p0.value")
1189
- }, 0, "gk_5"),
1190
- /* @__PURE__ */ qwik._jsxC(Button, {
1191
- get color() {
1192
- return props.input ? "gray" : "darkgray";
1193
- },
1194
- "aria-label": "Increment",
1195
- "data-action": "increment",
1196
- disabled: props1.max ? store.value >= props1.max : false,
1197
- onClick$: /* @__PURE__ */ qwik.inlinedQrl((event, element) => {
1198
- const [props2, store2] = qwik.useLexicalScope();
1199
- store2.value = store2.value + (props2.step ?? 1);
1200
- props2.onIncrement$(event, element, store2);
1201
- }, "NumberInputRaw_component_div_Button_onClick_1_UzVlUpg1uGs", [
1202
- props,
1203
- store
1204
- ]),
1205
- get class() {
1206
- return {
1207
- "ml-2": props.input
1208
- };
1209
- },
1210
- children: /* @__PURE__ */ qwik._jsxC(Plus, {
1211
- class: "fill-current",
1212
- width: "24",
1213
- [qwik._IMMUTABLE]: {
1214
- class: qwik._IMMUTABLE,
1215
- width: qwik._IMMUTABLE
1216
- }
1217
- }, 3, "gk_6"),
1218
- [qwik._IMMUTABLE]: {
1219
- "aria-label": qwik._IMMUTABLE,
1220
- class: qwik._fnSignal((p0) => ({
1221
- "ml-2": p0.input
1222
- }), [
1223
- props
1224
- ], '{"ml-2":p0.input}'),
1225
- color: qwik._fnSignal((p0) => p0.input ? "gray" : "darkgray", [
1226
- props
1227
- ], 'p0.input?"gray":"darkgray"'),
1228
- "data-action": qwik._IMMUTABLE,
1229
- onClick$: qwik._IMMUTABLE
1230
- }
1231
- }, 1, "gk_7")
1232
- ], 1, "gk_8");
1233
- }, "NumberInputRaw_component_8sGf0eS1rvo"));
1234
- const ChevronDown = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1235
- return /* @__PURE__ */ qwik._jsxS("svg", {
1236
- ...props,
1237
- children: /* @__PURE__ */ qwik._jsxQ("path", null, {
1238
- d: "M112 184l144 144 144-144",
1239
- fill: "none",
1240
- stroke: "currentColor",
1241
- "stroke-linecap": "round",
1242
- "stroke-linejoin": "round",
1243
- "stroke-width": "48"
1244
- }, null, 3, null)
1245
- }, {
1246
- height: qwik._fnSignal((p0) => p0.width, [
1247
- props
1248
- ], "p0.width"),
1249
- viewBox: "0 0 512 512",
1250
- xmlns: "http://www.w3.org/2000/svg"
1251
- }, 0, "rN_0");
1252
- }, "ChevronDown_component_V0linof0cMQ"));
1253
- const SelectInput = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1254
- return /* @__PURE__ */ qwik._jsxQ("div", null, {
1255
- class: "flex flex-col"
1256
- }, [
1257
- /* @__PURE__ */ qwik._jsxQ("label", null, {
1258
- class: "pb-2",
1259
- for: qwik._fnSignal((p0) => p0.id, [
1260
- props
1261
- ], "p0.id")
1262
- }, /* @__PURE__ */ qwik._jsxC(qwik.Slot, null, 3, "cA_0"), 1, null),
1263
- /* @__PURE__ */ qwik._jsxC(SelectInputRaw, {
1264
- ...props
1265
- }, 0, "cA_1")
1266
- ], 1, "cA_2");
1267
- }, "SelectInput_component_m80ag1KuJSk"));
1268
- const SelectInputRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1269
- const props1 = qwik._restProps(props, [
1270
- "id",
1271
- "values",
1272
- "class"
1273
- ]);
1274
- const store = qwik.useStore({
1275
- opened: false
1276
- });
1277
- return /* @__PURE__ */ qwik._jsxQ("div", null, {
1278
- class: "relative"
1279
- }, [
1280
- /* @__PURE__ */ qwik._jsxS("select", {
1281
- ...props1,
1282
- children: props.values.map((value, i) => {
1283
- return /* @__PURE__ */ qwik._jsxQ("option", {
1284
- value: qwik._wrapSignal(value, "value")
1285
- }, null, value.name, 1, i);
1286
- })
1287
- }, {
1288
- class: {
1289
- "hidden": true
1290
- },
1291
- id: qwik._fnSignal((p0) => p0.id, [
1292
- props
1293
- ], "p0.id")
1294
- }, 0, null),
1295
- /* @__PURE__ */ qwik._jsxC(Button, {
1296
- get class() {
1297
- return {
1298
- "flex focus:bg-gray-700": true,
1299
- ...props.class
1300
- };
1301
- },
1302
- children: [
1303
- /* @__PURE__ */ qwik._jsxQ("span", null, {
1304
- class: "flex-1 text-left",
1305
- id: qwik._fnSignal((p0) => `lui-${p0.id}-name`, [
1306
- props
1307
- ], "`lui-${p0.id}-name`")
1308
- }, props.values.find((value) => value.value.toString() === props1.value)?.name ?? props.values[0].name, 1, null),
1309
- /* @__PURE__ */ qwik._jsxC(ChevronDown, {
1310
- width: 16,
1311
- get class() {
1312
- return {
1313
- "transition-all duration-200": true,
1314
- "transform rotate-180": store.opened
1315
- };
1316
- },
1317
- [qwik._IMMUTABLE]: {
1318
- class: qwik._fnSignal((p0) => ({
1319
- "transition-all duration-200": true,
1320
- "transform rotate-180": p0.opened
1321
- }), [
1322
- store
1323
- ], '{"transition-all duration-200":true,"transform rotate-180":p0.opened}'),
1324
- width: qwik._IMMUTABLE
1325
- }
1326
- }, 3, "cA_3")
1327
- ],
1328
- onClick$: /* @__PURE__ */ qwik.inlinedQrl(() => {
1329
- const [store2] = qwik.useLexicalScope();
1330
- store2.opened = !store2.opened;
1331
- }, "SelectInputRaw_component_div_Button_onClick_9Gkbglaqsdw", [
1332
- store
1333
- ]),
1334
- [qwik._IMMUTABLE]: {
1335
- class: qwik._fnSignal((p0) => ({
1336
- "flex focus:bg-gray-700": true,
1337
- ...p0.class
1338
- }), [
1339
- props
1340
- ], '{"flex focus:bg-gray-700":true,...p0.class}'),
1341
- onClick$: qwik._IMMUTABLE
1342
- }
1343
- }, 1, "cA_4"),
1344
- /* @__PURE__ */ qwik._jsxQ("div", {
1345
- class: {
1346
- "transition-all absolute top-full left-0 p-1 mt-2 gap-1 bg-gray-800/50 backdrop-blur-xl flex flex-col rounded-lg border border-gray-700 z-[1000] max-h-72 overflow-scroll select-none": true,
1347
- "pointer-events-none opacity-0 scale-95": !store.opened
1348
- }
1349
- }, {
1350
- id: qwik._fnSignal((p0) => `lui-${p0.id}-opts`, [
1351
- props
1352
- ], "`lui-${p0.id}-opts`")
1353
- }, props.values.map((value, i) => {
1354
- return /* @__PURE__ */ qwik._jsxC(Button, {
1355
- onClick$: /* @__PURE__ */ qwik.inlinedQrl(() => {
1356
- const [props2, store2, value2] = qwik.useLexicalScope();
1357
- store2.opened = false;
1358
- const select = document.getElementById(props2.id);
1359
- select.value = value2.value.toString();
1360
- const name = document.getElementById(`lui-${props2.id}-name`);
1361
- name.textContent = value2.name;
1362
- select.dispatchEvent(new Event("change"));
1363
- }, "SelectInputRaw_component_div_div_Button_onClick_mLa0FdeKCLw", [
1364
- props,
1365
- store,
1366
- value
1367
- ]),
1368
- get class() {
1369
- return {
1370
- "border-0 bg-transparent": true,
1371
- "opacity-0": !store.opened
1372
- };
1373
- },
1374
- children: qwik._wrapSignal(value, "name"),
1375
- [qwik._IMMUTABLE]: {
1376
- class: qwik._fnSignal((p0) => ({
1377
- "border-0 bg-transparent": true,
1378
- "opacity-0": !p0.opened
1379
- }), [
1380
- store
1381
- ], '{"border-0 bg-transparent":true,"opacity-0":!p0.opened}')
1382
- }
1383
- }, 1, i);
1384
- }), 1, null)
1385
- ], 1, "cA_5");
1386
- }, "SelectInputRaw_component_Itdx5yPeQd4"));
1387
- const TextArea = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1388
- return /* @__PURE__ */ qwik._jsxQ("div", null, {
1389
- class: "flex flex-col"
1390
- }, [
1391
- /* @__PURE__ */ qwik._jsxQ("label", null, {
1392
- class: "pb-2",
1393
- for: qwik._fnSignal((p0) => p0.id, [
1394
- props
1395
- ], "p0.id")
1396
- }, /* @__PURE__ */ qwik._jsxC(qwik.Slot, null, 3, "UP_0"), 1, null),
1397
- /* @__PURE__ */ qwik._jsxC(TextAreaRaw, {
1398
- ...props
1399
- }, 0, "UP_1")
1400
- ], 1, "UP_2");
1401
- }, "TextArea_component_rWDoQFL2c0g"));
1402
- const TextAreaRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1403
- const props1 = qwik._restProps(props, [
1404
- "output"
1405
- ]);
1406
- return /* @__PURE__ */ qwik._jsxC(jsxRuntime.Fragment, {
1407
- children: /* @__PURE__ */ qwik._jsxS("textarea", {
1408
- ...props1,
1409
- class: {
1410
- [InputClasses]: true,
1411
- "h-32": true,
1412
- "cursor-pointer active:bg-gray-600": props.output,
1413
- ...props1.class
1414
- },
1415
- onClick$: props.output ? /* @__PURE__ */ qwik.inlinedQrl((event, element) => {
1416
- navigator.clipboard.writeText(element.value);
1417
- const notification = document.createElement("div");
1418
- notification.className = "fixed bottom-0 right-0 px-6 py-4 m-6 bg-green-600/50 border border-green-500 text-gray-50 rounded-md shadow-lg whitespace-nowrap backdrop-blur-xl";
1419
- notification.innerText = "Copied to clipboard!";
1420
- document.body.appendChild(notification);
1421
- setTimeout(() => {
1422
- notification.remove();
1423
- }, 1e3);
1424
- }, "TextAreaRaw_component__Fragment_textarea_onClick_YAQUkxxJ6Sg") : void 0
1425
- }, {
1426
- readOnly: qwik._fnSignal((p0) => p0.output, [
1427
- props
1428
- ], "p0.output")
1429
- }, 0, null)
1430
- }, 1, "UP_3");
1431
- }, "TextAreaRaw_component_PZiPScYxgNk"));
1432
- const Toggle = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1433
- const props1 = qwik._restProps(props, [
1434
- "center",
1435
- "label"
1436
- ]);
1437
- return /* @__PURE__ */ qwik._jsxQ("div", null, {
1438
- class: qwik._fnSignal((p0) => ({
1439
- "flex gap-3 items-center": true,
1440
- "justify-center": p0.center
1441
- }), [
1442
- props
1443
- ], '{"flex gap-3 items-center":true,"justify-center":p0.center}')
1444
- }, [
1445
- /* @__PURE__ */ qwik._jsxQ("label", null, {
1446
- class: "inline-flex relative items-center cursor-pointer"
1447
- }, [
1448
- /* @__PURE__ */ qwik._jsxS("input", {
1449
- ...props1,
1450
- class: {
1451
- "sr-only peer": true,
1452
- ...props1.class
1453
- }
1454
- }, {
1455
- type: "checkbox"
1456
- }, 0, null),
1457
- /* @__PURE__ */ qwik._jsxQ("div", null, {
1458
- class: {
1459
- "transition ease-in-out w-12 h-7 rounded-md peer border hover:shadow-lg": true,
1460
- "bg-gray-800 border-gray-700 hover:bg-gray-700 active:bg-gray-600": true,
1461
- "after:content-[''] after:absolute after:top-[4px] after:left-[4px] after:border after:rounded-md after:h-5 after:w-5 after:transition-all after:ease-in-out": true,
1462
- "after:bg-gray-700 after:border-gray-600 after:hover:bg-gray-600 after:active:bg-gray-500": true,
1463
- "peer-checked:bg-blue-700 peer-checked:border-blue-600 peer-checked:hover:bg-blue-600 peer-checked:active:bg-blue-500": true,
1464
- "peer-checked:after:translate-x-full peer-checked:after:bg-blue-600 peer-checked:after:border-blue-500 peer-checked:after:hover:bg-blue-500 peer-checked:after:active:bg-blue-400": true
1465
- }
1466
- }, null, 3, null)
1467
- ], 1, null),
1468
- props.label && /* @__PURE__ */ qwik._jsxQ("label", {
1469
- for: qwik._wrapSignal(props1, "id")
1470
- }, {
1471
- class: "text-gray-100"
1472
- }, qwik._fnSignal((p0) => p0.label, [
1473
- props
1474
- ], "p0.label"), 3, "yu_0")
1475
- ], 1, "yu_1");
1476
- }, "Toggle_component_ujuOvR082hY"));
1477
- const LogoBirdflop = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1478
- const props1 = qwik._restProps(props, [
1479
- "confused",
1480
- "fillGradient"
1481
- ]);
1482
- return /* @__PURE__ */ qwik._jsxS("svg", {
1483
- ...props1,
1484
- children: [
1485
- /* @__PURE__ */ qwik._jsxQ("defs", null, null, [
1486
- props.fillGradient && /* @__PURE__ */ qwik._jsxQ("linearGradient", null, {
1487
- gradientUnits: "objectBoundingBox",
1488
- id: "linear-gradient",
1489
- x1: "0.5",
1490
- x2: "0.5",
1491
- y2: "1"
1492
- }, props.fillGradient.map((color, i) => /* @__PURE__ */ qwik._jsxQ("stop", {
1493
- offset: i / (props.fillGradient.length - 1),
1494
- "stop-color": color
1495
- }, null, null, 3, i)), 1, "Ie_0"),
1496
- /* @__PURE__ */ qwik._jsxQ("clipPath", null, {
1497
- id: "clip-bf_3"
1498
- }, /* @__PURE__ */ qwik._jsxQ("rect", null, {
1499
- height: "1080",
1500
- width: "1080"
1501
- }, null, 3, null), 3, null)
1502
- ], 1, null),
1503
- /* @__PURE__ */ qwik._jsxQ("g", null, {
1504
- "clip-path": "url(#clip-bf_3)",
1505
- "data-name": "bf - 3",
1506
- fill: "currentColor",
1507
- id: "bf_3"
1508
- }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1509
- 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",
1510
- "data-name": "Union 26",
1511
- fill: qwik._fnSignal((p0) => p0.fillGradient ? "url(#linear-gradient)" : "", [
1512
- props
1513
- ], 'p0.fillGradient?"url(#linear-gradient)":""'),
1514
- id: "Union_26",
1515
- transform: "translate(2479.9 1169.7)"
1516
- }, null, 3, null), 3, null),
1517
- props.confused && /* @__PURE__ */ qwik._jsxQ("g", null, {
1518
- fill: "#1E2837",
1519
- stroke: "#1E2837",
1520
- style: "transform: translate(595px, 460px) scale(0.375)"
1521
- }, [
1522
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1523
- 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",
1524
- fill: "none",
1525
- "stroke-linecap": "round",
1526
- "stroke-miterlimit": "10",
1527
- "stroke-width": "80"
1528
- }, null, 3, null),
1529
- /* @__PURE__ */ qwik._jsxQ("circle", null, {
1530
- cx: "248",
1531
- cy: "399.99",
1532
- r: "40",
1533
- style: "transform: translate(0, 30px)"
1534
- }, null, 3, null)
1535
- ], 3, "Ie_1")
1536
- ],
1537
- height: qwik._wrapSignal(props1, "width")
1538
- }, {
1539
- viewBox: "0 0 1080 1080",
1540
- xmlns: "http://www.w3.org/2000/svg",
1541
- "xmlns:xlink": "http://www.w3.org/1999/xlink"
1542
- }, 0, "Ie_2");
1543
- }, "LogoBirdflop_component_mKG3xZaEE5w"));
1544
- const LogoDiscord = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1545
- return /* @__PURE__ */ qwik._jsxS("svg", {
1546
- ...props,
1547
- children: /* @__PURE__ */ qwik._jsxQ("path", null, {
1548
- 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"
1549
- }, null, 3, null)
1550
- }, {
1551
- fill: "currentColor",
1552
- height: qwik._fnSignal((p0) => p0.width, [
1553
- props
1554
- ], "p0.width"),
1555
- viewBox: "0 0 127.14 96.36",
1556
- xmlns: "http://www.w3.org/2000/svg"
1557
- }, 0, "V4_0");
1558
- }, "LogoDiscord_component_pyJvo9cIDdU"));
1559
- const LogoFabric = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1560
- return /* @__PURE__ */ qwik._jsxS("svg", {
1561
- ...props,
1562
- children: [
1563
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1564
- d: "M0 0h24v24H0z",
1565
- fill: "none"
1566
- }, null, 3, null),
1567
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1568
- 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",
1569
- fill: "none",
1570
- stroke: "currentColor",
1571
- "stroke-width": "23",
1572
- transform: "matrix(.08671 0 0 .0867 -49.8 -56)"
1573
- }, null, 3, null)
1574
- ]
1575
- }, {
1576
- "clip-rule": "evenodd",
1577
- "fill-rule": "evenodd",
1578
- height: qwik._fnSignal((p0) => p0.width, [
1579
- props
1580
- ], "p0.width"),
1581
- "stroke-linecap": "round",
1582
- "stroke-linejoin": "round",
1583
- viewBox: "0 0 24 24",
1584
- "xml:space": "preserve",
1585
- xmlns: "http://www.w3.org/2000/svg"
1586
- }, 0, "W4_0");
1587
- }, "LogoFabric_component_bOPyyyFEHuI"));
1588
- const LogoForge = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1589
- return /* @__PURE__ */ qwik._jsxS("svg", {
1590
- ...props,
1591
- children: [
1592
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1593
- d: "M0 0h24v24H0z",
1594
- fill: "none"
1595
- }, null, 3, null),
1596
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1597
- 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",
1598
- fill: "none",
1599
- stroke: "currentColor",
1600
- "stroke-width": "2"
1601
- }, null, 3, null)
1602
- ]
1603
- }, {
1604
- "clip-rule": "evenodd",
1605
- "fill-rule": "evenodd",
1606
- height: qwik._fnSignal((p0) => p0.width, [
1607
- props
1608
- ], "p0.width"),
1609
- "stroke-linecap": "round",
1610
- "stroke-linejoin": "round",
1611
- "stroke-miterlimit": "1.5",
1612
- viewBox: "0 0 24 24",
1613
- "xml:space": "preserve"
1614
- }, 0, "6E_0");
1615
- }, "LogoForge_component_mRpm0rEP3vY"));
1616
- const LogoLuminescent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1617
- return /* @__PURE__ */ qwik._jsxS("svg", {
1618
- ...props,
1619
- children: /* @__PURE__ */ qwik._jsxQ("g", null, {
1620
- "fill-opacity": "1"
1621
- }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1622
- transform: "translate(86.97656, 254.624983)"
1623
- }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1624
- 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 "
1625
- }, null, 3, null), 3, null), 3, null)
1626
- }, {
1627
- fill: "currentColor",
1628
- height: qwik._fnSignal((p0) => p0.width, [
1629
- props
1630
- ], "p0.width"),
1631
- preserveAspectRatio: "xMidYMid meet",
1632
- version: "1.0",
1633
- viewBox: "80 80 220 220",
1634
- xmlns: "http://www.w3.org/2000/svg",
1635
- "xmlns:xlink": "http://www.w3.org/1999/xlink",
1636
- zoomAndPan: "magnify"
1637
- }, 0, "Jv_0");
1638
- }, "LogoLuminescent_component_2ppcIednMJs"));
1639
- const LogoLuminescentFull = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1640
- return /* @__PURE__ */ qwik._jsxS("svg", {
1641
- ...props,
1642
- children: [
1643
- /* @__PURE__ */ qwik._jsxQ("g", null, {
1644
- "fill-opacity": "1"
1645
- }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1646
- transform: "translate(12.743357, 223.612604)"
1647
- }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1648
- 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 "
1649
- }, null, 3, null), 3, null), 3, null),
1650
- /* @__PURE__ */ qwik._jsxQ("g", null, {
1651
- "fill-opacity": "1"
1652
- }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1653
- transform: "translate(151.868279, 223.612604)"
1654
- }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1655
- 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 "
1656
- }, null, 3, null), 3, null), 3, null),
1657
- /* @__PURE__ */ qwik._jsxQ("g", null, {
1658
- "fill-opacity": "1"
1659
- }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1660
- transform: "translate(265.444396, 223.612604)"
1661
- }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1662
- 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 "
1663
- }, null, 3, null), 3, null), 3, null),
1664
- /* @__PURE__ */ qwik._jsxQ("g", null, {
1665
- "fill-opacity": "1"
1666
- }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1667
- transform: "translate(428.260051, 223.612604)"
1668
- }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1669
- 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 "
1670
- }, null, 3, null), 3, null), 3, null),
1671
- /* @__PURE__ */ qwik._jsxQ("g", null, {
1672
- "fill-opacity": "1"
1673
- }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1674
- transform: "translate(484.467457, 223.612604)"
1675
- }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1676
- 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 "
1677
- }, null, 3, null), 3, null), 3, null),
1678
- /* @__PURE__ */ qwik._jsxQ("g", null, {
1679
- "fill-opacity": "1"
1680
- }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1681
- transform: "translate(597.346777, 223.612604)"
1682
- }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1683
- 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 "
1684
- }, null, 3, null), 3, null), 3, null),
1685
- /* @__PURE__ */ qwik._jsxQ("g", null, {
1686
- "fill-opacity": "1"
1687
- }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1688
- transform: "translate(699.542059, 223.612604)"
1689
- }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1690
- 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 "
1691
- }, null, 3, null), 3, null), 3, null),
1692
- /* @__PURE__ */ qwik._jsxQ("g", null, {
1693
- "fill-opacity": "1"
1694
- }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1695
- transform: "translate(802.898632, 223.612604)"
1696
- }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1697
- 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 "
1698
- }, null, 3, null), 3, null), 3, null),
1699
- /* @__PURE__ */ qwik._jsxQ("g", null, {
1700
- "fill-opacity": "1"
1701
- }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1702
- transform: "translate(900.21642, 223.612604)"
1703
- }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1704
- 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 "
1705
- }, null, 3, null), 3, null), 3, null),
1706
- /* @__PURE__ */ qwik._jsxQ("g", null, {
1707
- "fill-opacity": "1"
1708
- }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1709
- transform: "translate(1002.411702, 223.612604)"
1710
- }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1711
- 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 "
1712
- }, null, 3, null), 3, null), 3, null),
1713
- /* @__PURE__ */ qwik._jsxQ("g", null, {
1714
- "fill-opacity": "1"
1715
- }, /* @__PURE__ */ qwik._jsxQ("g", null, {
1716
- transform: "translate(1115.290992, 223.612604)"
1717
- }, /* @__PURE__ */ qwik._jsxQ("path", null, {
1718
- 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 "
1719
- }, null, 3, null), 3, null), 3, null)
1720
- ]
1721
- }, {
1722
- fill: "currentColor",
1723
- preserveAspectRatio: "xMidYMid meet",
1724
- version: "1.0",
1725
- viewBox: "30 60 1160 200",
1726
- xmlns: "http://www.w3.org/2000/svg",
1727
- "xmlns:xlink": "http://www.w3.org/1999/xlink",
1728
- zoomAndPan: "magnify"
1729
- }, 0, "Jv_1");
1730
- }, "LogoLuminescentFull_component_UNzyq3QUKpA"));
1731
- const LogoPaper = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1732
- return /* @__PURE__ */ qwik._jsxS("svg", {
1733
- ...props,
1734
- children: [
1735
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1736
- d: "M0 0h24v24H0z",
1737
- fill: "none"
1738
- }, null, 3, null),
1739
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1740
- d: "m12 18 6 2 3-17L2 14l6 2",
1741
- fill: "none",
1742
- stroke: "currentColor",
1743
- "stroke-width": "2"
1744
- }, null, 3, null),
1745
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1746
- d: "m9 21-1-5 4 2-3 3Z",
1747
- stroke: "currentColor",
1748
- "stroke-width": "2"
1749
- }, null, 3, null),
1750
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1751
- d: "m12 18-4-2 10-9-6 11Z",
1752
- fill: "currentColor"
1753
- }, null, 3, null)
1754
- ]
1755
- }, {
1756
- "clip-rule": "evenodd",
1757
- "fill-rule": "evenodd",
1758
- height: qwik._fnSignal((p0) => p0.width, [
1759
- props
1760
- ], "p0.width"),
1761
- "stroke-linecap": "round",
1762
- "stroke-linejoin": "round",
1763
- "stroke-miterlimit": "1.5",
1764
- viewBox: "0 0 24 24",
1765
- "xml:space": "preserve"
1766
- }, 0, "2r_0");
1767
- }, "LogoPaper_component_pBDmaKNS7m4"));
1768
- const LogoPterodactyl = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1769
- return /* @__PURE__ */ qwik._jsxS("svg", {
1770
- ...props,
1771
- children: /* @__PURE__ */ qwik._jsxQ("g", null, {
1772
- fill: "currentColor",
1773
- stroke: "none",
1774
- transform: "translate(0,180) scale(0.100000,-0.100000)"
1775
- }, [
1776
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1777
- 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"
1778
- }, null, 3, null),
1779
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1780
- 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"
1781
- }, null, 3, null),
1782
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1783
- 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"
1784
- }, null, 3, null),
1785
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1786
- d: "M1012 441 c-19 -11 64 -51 106 -51 39 0 40 4 5 35 -29 25 -85 33 -111 16z"
1787
- }, null, 3, null)
1788
- ], 3, null)
1789
- }, {
1790
- height: qwik._fnSignal((p0) => p0.width, [
1791
- props
1792
- ], "p0.width"),
1793
- preserveAspectRatio: "xMidYMid meet",
1794
- version: "1.0",
1795
- viewBox: "0 0 180 180",
1796
- xmlns: "http://www.w3.org/2000/svg"
1797
- }, 0, "DN_0");
1798
- }, "LogoPterodactyl_component_wVJW9cHcHoo"));
1799
- const LogoPurpur = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1800
- return /* @__PURE__ */ qwik._jsxS("svg", {
1801
- ...props,
1802
- children: [
1803
- /* @__PURE__ */ qwik._jsxQ("defs", null, null, /* @__PURE__ */ qwik._jsxQ("path", null, {
1804
- d: "m264 41.95 8-4v8l-8 4v-8Z",
1805
- fill: "none",
1806
- id: "purpur",
1807
- stroke: "currentColor",
1808
- "stroke-width": "1.68"
1809
- }, null, 3, null), 3, null),
1810
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1811
- d: "M0 0h24v24H0z",
1812
- fill: "none"
1813
- }, null, 3, null),
1814
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1815
- d: "m264 29.95-8 4 8 4.42 8-4.42-8-4Z",
1816
- fill: "none",
1817
- stroke: "currentColor",
1818
- "stroke-width": "1.77",
1819
- transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1820
- }, null, 3, null),
1821
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1822
- d: "m272 38.37-8 4.42-8-4.42",
1823
- fill: "none",
1824
- stroke: "currentColor",
1825
- "stroke-width": "1.77",
1826
- transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1827
- }, null, 3, null),
1828
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1829
- d: "m260 31.95 8 4.21V45",
1830
- fill: "none",
1831
- stroke: "currentColor",
1832
- "stroke-width": "1.77",
1833
- transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1834
- }, null, 3, null),
1835
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1836
- d: "M260 45v-8.84l8-4.21",
1837
- fill: "none",
1838
- stroke: "currentColor",
1839
- "stroke-width": "1.77",
1840
- transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1841
- }, null, 3, null),
1842
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1843
- d: "m264 41.95 8-4v8l-8 4v-8Z",
1844
- fill: "none",
1845
- stroke: "currentColor",
1846
- "stroke-width": "1.68",
1847
- transform: "matrix(1.125 0 0 1.2569 -285 -40.78)"
1848
- }, null, 3, null),
1849
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1850
- d: "m264 41.95 8-4v8l-8 4v-8Z",
1851
- fill: "none",
1852
- stroke: "currentColor",
1853
- "stroke-width": "1.68",
1854
- transform: "matrix(-1.125 0 0 1.2569 309 -40.78)"
1855
- }, null, 3, null)
1856
- ]
1857
- }, {
1858
- "clip-rule": "evenodd",
1859
- "fill-rule": "evenodd",
1860
- height: qwik._fnSignal((p0) => p0.width, [
1861
- props
1862
- ], "p0.width"),
1863
- "stroke-linecap": "round",
1864
- "stroke-linejoin": "round",
1865
- "stroke-miterlimit": "1.5",
1866
- viewBox: "0 0 24 24",
1867
- "xml:space": "preserve"
1868
- }, 0, "Xw_0");
1869
- }, "LogoPurpur_component_sVHzeC1GCZ4"));
1870
- const LogoVelocity = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1871
- return /* @__PURE__ */ qwik._jsxS("svg", {
1872
- ...props,
1873
- children: [
1874
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1875
- 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"
1876
- }, null, 3, null),
1877
- /* @__PURE__ */ qwik._jsxQ("circle", null, {
1878
- cx: "416.44",
1879
- cy: "236.11",
1880
- r: "9.83"
1881
- }, null, 3, null),
1882
- /* @__PURE__ */ qwik._jsxQ("path", null, {
1883
- 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"
1884
- }, null, 3, null)
1885
- ]
1886
- }, {
1887
- fill: "currentColor",
1888
- height: qwik._fnSignal((p0) => p0.width, [
1889
- props
1890
- ], "p0.width"),
1891
- viewBox: "0 0 500 500"
1892
- }, 0, "Ea_0");
1893
- }, "LogoVelocity_component_SNoCdG0zr0s"));
1894
- const LogoWaterfall = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
1895
- return /* @__PURE__ */ qwik._jsxS("svg", {
1896
- ...props,
1897
- children: /* @__PURE__ */ qwik._jsxQ("path", null, {
1898
- d: "M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"
1899
- }, null, 3, null)
1900
- }, {
1901
- fill: "none",
1902
- height: qwik._fnSignal((p0) => p0.width, [
1903
- props
1904
- ], "p0.width"),
1905
- stroke: "currentColor",
1906
- "stroke-linecap": "round",
1907
- "stroke-linejoin": "round",
1908
- "stroke-width": "2",
1909
- viewBox: "0 0 24 24"
1910
- }, 0, "Pt_0");
1911
- }, "LogoWaterfall_component_1hFl8GlECLI"));
1912
- exports.Anchor = Anchor;
1913
- exports.Button = Button;
1914
- exports.ButtonAnchor = ButtonAnchor;
1915
- exports.Card = Card;
1916
- exports.ColorInput = ColorInput;
1917
- exports.Header = Header;
1918
- exports.InputClasses = InputClasses;
1919
- exports.LoadingIcon = LoadingIcon;
1920
- exports.LogoBirdflop = LogoBirdflop;
1921
- exports.LogoDiscord = LogoDiscord;
1922
- exports.LogoFabric = LogoFabric;
1923
- exports.LogoForge = LogoForge;
1924
- exports.LogoLuminescent = LogoLuminescent;
1925
- exports.LogoLuminescentFull = LogoLuminescentFull;
1926
- exports.LogoPaper = LogoPaper;
1927
- exports.LogoPterodactyl = LogoPterodactyl;
1928
- exports.LogoPurpur = LogoPurpur;
1929
- exports.LogoVelocity = LogoVelocity;
1930
- exports.LogoWaterfall = LogoWaterfall;
1931
- exports.NumberInput = NumberInput;
1932
- exports.NumberInputRaw = NumberInputRaw;
1933
- exports.SelectInput = SelectInput;
1934
- exports.SelectInputRaw = SelectInputRaw;
1935
- exports.TextArea = TextArea;
1936
- exports.TextAreaRaw = TextAreaRaw;
1937
- exports.TextInput = TextInput;
1938
- exports.TextInputRaw = TextInputRaw;
1939
- exports.Toggle = Toggle;
1940
- exports._auto_blobClasses = blobClasses;
1941
- exports._auto_buttonClass = buttonClass;
1942
- exports.buttonColorClasses = buttonColorClasses;
1943
- exports.cardColorClasses = cardColorClasses;
1944
- exports.sizeClasses = sizeClasses;