@luminescent/ui-qwik 1.3.1 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +661 -0
- package/lib/index.qwik.cjs +863 -1166
- package/lib/index.qwik.mjs +864 -1167
- package/package.json +22 -24
package/lib/index.qwik.cjs
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const qwik = require("@builder.io/qwik");
|
|
4
3
|
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
], "p0.id"),
|
|
4
|
+
const qwik = require("@builder.io/qwik");
|
|
5
|
+
const Anchor = qwik.component$(({ id }) => /* @__PURE__ */ jsxRuntime.jsx("span", {
|
|
6
|
+
id,
|
|
9
7
|
class: "block h-32 -mt-32 pointer-events-none"
|
|
10
|
-
}
|
|
8
|
+
}));
|
|
11
9
|
const blobColorClasses = {
|
|
12
10
|
slate: [
|
|
13
11
|
"bg-slate-400",
|
|
@@ -139,60 +137,57 @@ const blobClasses = [
|
|
|
139
137
|
"animate-blob5",
|
|
140
138
|
"animate-blob6"
|
|
141
139
|
];
|
|
142
|
-
const Blobs =
|
|
143
|
-
const props1 = qwik._restProps(props, [
|
|
144
|
-
"color",
|
|
145
|
-
"blur"
|
|
146
|
-
]);
|
|
140
|
+
const Blobs = qwik.component$(({ color = "darkgray", blur = "xl", ...props }) => {
|
|
147
141
|
const blob = Math.round(Math.random() * 6);
|
|
148
|
-
const colorClass = typeof
|
|
149
|
-
return /* @__PURE__ */
|
|
142
|
+
const colorClass = typeof color == "string" ? blobColorClasses[color] : color;
|
|
143
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
150
144
|
class: {
|
|
151
145
|
"motion-reduce:hidden absolute inset-0 transition-all animate-in fade-in anim-duration-[2s]": true,
|
|
152
|
-
...
|
|
146
|
+
...props.class
|
|
153
147
|
},
|
|
154
148
|
style: {
|
|
155
149
|
containerType: "size",
|
|
156
|
-
...
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
}
|
|
150
|
+
...props.style
|
|
151
|
+
},
|
|
152
|
+
children: [
|
|
153
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
154
|
+
class: {
|
|
155
|
+
"absolute top-0 w-[30cqw] h-[30cqw] rounded-full opacity-20 ease-in-out": true,
|
|
156
|
+
"blur-sm": blur === "sm",
|
|
157
|
+
"blur-md": blur === "md",
|
|
158
|
+
"blur-lg": blur === "lg",
|
|
159
|
+
"blur-xl": blur === "xl",
|
|
160
|
+
[blobClasses[blob]]: true,
|
|
161
|
+
[colorClass[0]]: true
|
|
162
|
+
}
|
|
163
|
+
}),
|
|
164
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
165
|
+
class: {
|
|
166
|
+
"absolute top-0 w-[30cqw] h-[30cqw] rounded-full opacity-20 ease-in-out": true,
|
|
167
|
+
"blur-sm": blur === "sm",
|
|
168
|
+
"blur-md": blur === "md",
|
|
169
|
+
"blur-lg": blur === "lg",
|
|
170
|
+
"blur-xl": blur === "xl",
|
|
171
|
+
"anim-delay-[-5s]": true,
|
|
172
|
+
[blobClasses[blob]]: true,
|
|
173
|
+
[colorClass[1]]: true
|
|
174
|
+
}
|
|
175
|
+
}),
|
|
176
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
177
|
+
class: {
|
|
178
|
+
"absolute top-0 w-[30cqw] h-[30cqw] rounded-full opacity-20 ease-in-out": true,
|
|
179
|
+
"blur-sm": blur === "sm",
|
|
180
|
+
"blur-md": blur === "md",
|
|
181
|
+
"blur-lg": blur === "lg",
|
|
182
|
+
"blur-xl": blur === "xl",
|
|
183
|
+
"anim-delay-[-10s]": true,
|
|
184
|
+
[blobClasses[blob]]: true,
|
|
185
|
+
[colorClass[2]]: true
|
|
186
|
+
}
|
|
187
|
+
})
|
|
188
|
+
]
|
|
189
|
+
});
|
|
190
|
+
});
|
|
196
191
|
const clamp = (value, min, max) => Math.min(Math.max(value, min), max);
|
|
197
192
|
function getMousePosition(e) {
|
|
198
193
|
if (window.TouchEvent && e instanceof TouchEvent) {
|
|
@@ -302,53 +297,52 @@ function rgbToHsv(color) {
|
|
|
302
297
|
v
|
|
303
298
|
};
|
|
304
299
|
}
|
|
305
|
-
const Shuffle =
|
|
306
|
-
return /* @__PURE__ */
|
|
300
|
+
const Shuffle = qwik.component$((props) => {
|
|
301
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
|
|
307
302
|
xmlns: "http://www.w3.org/2000/svg",
|
|
308
303
|
viewBox: "0 0 512 512",
|
|
309
304
|
...props,
|
|
310
|
-
|
|
311
|
-
return props.width;
|
|
312
|
-
},
|
|
305
|
+
height: props.width,
|
|
313
306
|
children: [
|
|
314
|
-
/* @__PURE__ */
|
|
307
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
315
308
|
fill: "none",
|
|
316
309
|
stroke: "currentColor",
|
|
317
310
|
"stroke-linecap": "round",
|
|
318
311
|
"stroke-linejoin": "round",
|
|
319
312
|
"stroke-width": "32",
|
|
320
313
|
d: "M400 304l48 48-48 48M400 112l48 48-48 48M64 352h85.19a80 80 0 0066.56-35.62L256 256"
|
|
321
|
-
}
|
|
322
|
-
/* @__PURE__ */
|
|
314
|
+
}),
|
|
315
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
323
316
|
d: "M64 160h85.19a80 80 0 0166.56 35.62l80.5 120.76A80 80 0 00362.81 352H416M416 160h-53.19a80 80 0 00-66.56 35.62L288 208",
|
|
324
317
|
fill: "none",
|
|
325
318
|
stroke: "currentColor",
|
|
326
319
|
"stroke-linecap": "round",
|
|
327
320
|
"stroke-linejoin": "round",
|
|
328
321
|
"stroke-width": "32"
|
|
329
|
-
}
|
|
322
|
+
})
|
|
330
323
|
]
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
const
|
|
350
|
-
const
|
|
351
|
-
const
|
|
324
|
+
});
|
|
325
|
+
});
|
|
326
|
+
const ColorPicker = qwik.component$(({ id, value = "#000000", colors = [
|
|
327
|
+
"#FAEDCB",
|
|
328
|
+
"#C9E4DE",
|
|
329
|
+
"#C6DEF1",
|
|
330
|
+
"#DBCDF0",
|
|
331
|
+
"#F2C6DE",
|
|
332
|
+
"#FCD05C",
|
|
333
|
+
"#5FE2C5",
|
|
334
|
+
"#4498DB",
|
|
335
|
+
"#9863E7",
|
|
336
|
+
"#E43A96",
|
|
337
|
+
"#000000",
|
|
338
|
+
"#555555",
|
|
339
|
+
"#AAAAAA",
|
|
340
|
+
"#FFFFFF"
|
|
341
|
+
], onInput$, preview = "left", horizontal, showInput = true, ...props }) => {
|
|
342
|
+
const height = 150;
|
|
343
|
+
const width = height - 25;
|
|
344
|
+
const maxHue = height - 2;
|
|
345
|
+
const hsvColor = rgbToHsv(hexNumberToRgb(hexStringToNumber(value)));
|
|
352
346
|
const store = qwik.useStore({
|
|
353
347
|
hue: {
|
|
354
348
|
position: hsvColor.h * maxHue,
|
|
@@ -360,53 +354,41 @@ const ColorPicker = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlin
|
|
|
360
354
|
},
|
|
361
355
|
bPosition: (1 - hsvColor.v) * maxHue,
|
|
362
356
|
sPosition: hsvColor.s * width,
|
|
363
|
-
value
|
|
357
|
+
value
|
|
364
358
|
});
|
|
365
|
-
const setColor =
|
|
366
|
-
const [maxHue2, props2, store2, width2] = qwik.useLexicalScope();
|
|
359
|
+
const setColor = qwik.$((color) => {
|
|
367
360
|
if (!color.match(/^#[0-9A-F]{6}$/i)) return;
|
|
368
361
|
const number = hexStringToNumber(color);
|
|
369
362
|
const hsv = rgbToHsv(hexNumberToRgb(number));
|
|
370
|
-
|
|
371
|
-
|
|
363
|
+
store.hue.position = hsv.h * maxHue;
|
|
364
|
+
store.hue.color = rgbToHex(hsvToRgb({
|
|
372
365
|
h: hsv.h,
|
|
373
366
|
s: 1,
|
|
374
367
|
v: 1
|
|
375
368
|
}));
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
props,
|
|
383
|
-
store,
|
|
384
|
-
width
|
|
385
|
-
]);
|
|
386
|
-
const hueChange = /* @__PURE__ */ qwik.inlinedQrl((e, hOffset) => {
|
|
387
|
-
const [maxHue2, props2, store2] = qwik.useLexicalScope();
|
|
369
|
+
store.sPosition = hsv.s * width;
|
|
370
|
+
store.bPosition = (1 - hsv.v) * maxHue;
|
|
371
|
+
store.value = color;
|
|
372
|
+
onInput$?.(store.value);
|
|
373
|
+
});
|
|
374
|
+
const hueChange = qwik.$((e, hOffset) => {
|
|
388
375
|
const { y } = getMousePosition(e);
|
|
389
|
-
|
|
390
|
-
const hsvColor2 = rgbToHsv(hexNumberToRgb(hexStringToNumber(
|
|
391
|
-
const h =
|
|
376
|
+
store.hue.position = clamp(maxHue - (y - hOffset), 0, maxHue);
|
|
377
|
+
const hsvColor2 = rgbToHsv(hexNumberToRgb(hexStringToNumber(store.value)));
|
|
378
|
+
const h = store.hue.position / maxHue;
|
|
392
379
|
hsvColor2.h = h;
|
|
393
|
-
|
|
380
|
+
store.hue.color = rgbToHex(hsvToRgb({
|
|
394
381
|
h,
|
|
395
382
|
s: 1,
|
|
396
383
|
v: 1
|
|
397
384
|
}));
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
props,
|
|
403
|
-
store
|
|
404
|
-
]);
|
|
405
|
-
const hueMouseDown = /* @__PURE__ */ qwik.inlinedQrl((e, el) => {
|
|
406
|
-
const [hueChange2] = qwik.useLexicalScope();
|
|
385
|
+
store.value = rgbToHex(hsvToRgb(hsvColor2));
|
|
386
|
+
onInput$?.(store.value);
|
|
387
|
+
});
|
|
388
|
+
const hueMouseDown = qwik.$((e, el) => {
|
|
407
389
|
const hOffset = el.getBoundingClientRect().top;
|
|
408
|
-
|
|
409
|
-
const eventListener = (e2) =>
|
|
390
|
+
hueChange(e, hOffset);
|
|
391
|
+
const eventListener = (e2) => hueChange(e2, hOffset);
|
|
410
392
|
window.addEventListener("mousemove", eventListener);
|
|
411
393
|
window.addEventListener("touchmove", eventListener);
|
|
412
394
|
const mouseUpListener = () => {
|
|
@@ -417,33 +399,24 @@ const ColorPicker = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlin
|
|
|
417
399
|
};
|
|
418
400
|
window.addEventListener("mouseup", mouseUpListener);
|
|
419
401
|
window.addEventListener("touchend", mouseUpListener);
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
]);
|
|
423
|
-
const sbChange = /* @__PURE__ */ qwik.inlinedQrl((e, hOffset) => {
|
|
424
|
-
const [maxHue2, props2, store2, width2] = qwik.useLexicalScope();
|
|
402
|
+
});
|
|
403
|
+
const sbChange = qwik.$((e, hOffset) => {
|
|
425
404
|
const { x, y } = getMousePosition(e);
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
const s =
|
|
429
|
-
const v = 1 -
|
|
430
|
-
|
|
431
|
-
h:
|
|
405
|
+
store.bPosition = clamp(y - hOffset.top, 0, maxHue);
|
|
406
|
+
store.sPosition = clamp(x - hOffset.left, 0, width);
|
|
407
|
+
const s = store.sPosition / width;
|
|
408
|
+
const v = 1 - store.bPosition / maxHue;
|
|
409
|
+
store.value = rgbToHex(hsvToRgb({
|
|
410
|
+
h: store.hue.position / maxHue,
|
|
432
411
|
s,
|
|
433
412
|
v
|
|
434
413
|
}));
|
|
435
|
-
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
props,
|
|
439
|
-
store,
|
|
440
|
-
width
|
|
441
|
-
]);
|
|
442
|
-
const sbMouseDown = /* @__PURE__ */ qwik.inlinedQrl((e, el) => {
|
|
443
|
-
const [sbChange2] = qwik.useLexicalScope();
|
|
414
|
+
onInput$?.(store.value);
|
|
415
|
+
});
|
|
416
|
+
const sbMouseDown = qwik.$((e, el) => {
|
|
444
417
|
const offset = el.getBoundingClientRect();
|
|
445
|
-
|
|
446
|
-
const eventListener = (e2) =>
|
|
418
|
+
sbChange(e, offset);
|
|
419
|
+
const eventListener = (e2) => sbChange(e2, offset);
|
|
447
420
|
window.addEventListener("mousemove", eventListener);
|
|
448
421
|
window.addEventListener("touchmove", eventListener);
|
|
449
422
|
const mouseUpListener = () => {
|
|
@@ -454,596 +427,450 @@ const ColorPicker = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlin
|
|
|
454
427
|
};
|
|
455
428
|
window.addEventListener("mouseup", mouseUpListener);
|
|
456
429
|
window.addEventListener("touchend", mouseUpListener);
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
]);
|
|
460
|
-
return /* @__PURE__ */ qwik._jsxQ("div", {
|
|
430
|
+
});
|
|
431
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
461
432
|
class: {
|
|
462
433
|
"motion-safe:transition-all p-4 lum-bg-gray-900 flex gap-4 rounded-lg touch-none": true,
|
|
463
434
|
"flex": true,
|
|
464
|
-
"flex-col": !
|
|
465
|
-
...
|
|
466
|
-
}
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
props
|
|
470
|
-
], "p0.id"),
|
|
471
|
-
onInput$: /* @__PURE__ */ qwik.inlinedQrl((e, el) => {
|
|
472
|
-
const [setColor2] = qwik.useLexicalScope();
|
|
435
|
+
"flex-col": !horizontal,
|
|
436
|
+
...props.class
|
|
437
|
+
},
|
|
438
|
+
id,
|
|
439
|
+
onInput$: (e, el) => {
|
|
473
440
|
if (!el.dataset.value) return;
|
|
474
|
-
|
|
475
|
-
},
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
transform: `translateY(${-p0.hue.position}px)`,
|
|
525
|
-
background: p0.hue.color
|
|
526
|
-
}), [
|
|
527
|
-
store
|
|
528
|
-
], "{transform:`translateY(${-p0.hue.position}px)`,background:p0.hue.color}")
|
|
529
|
-
}, null, 3, null), 3, null)
|
|
530
|
-
], 1, null),
|
|
531
|
-
/* @__PURE__ */ qwik._jsxQ("div", null, {
|
|
532
|
-
class: "w-[150px] flex flex-wrap gap-1 justify-between"
|
|
533
|
-
}, [
|
|
534
|
-
(props.showInput ?? true) && /* @__PURE__ */ qwik._jsxQ("div", {
|
|
535
|
-
class: {
|
|
536
|
-
"flex w-[150px] pb-3 mb-2 border-b border-b-gray-700": true,
|
|
537
|
-
"flex-row gap-1": (props.preview ?? "left") == "left",
|
|
538
|
-
"flex-row-reverse gap-1": (props.preview ?? "left") == "right",
|
|
539
|
-
"flex-col": (props.preview ?? "left") == "top",
|
|
540
|
-
"flex-col-reverse": (props.preview ?? "left") == "bottom"
|
|
541
|
-
}
|
|
542
|
-
}, null, [
|
|
543
|
-
(props.preview ?? "left") != "full" && /* @__PURE__ */ qwik._jsxQ("div", {
|
|
544
|
-
class: {
|
|
545
|
-
"border border-gray-700": true,
|
|
546
|
-
"h-full aspect-square rounded-md": (props.preview ?? "left") == "left" || (props.preview ?? "left") == "right",
|
|
547
|
-
"w-full h-3": (props.preview ?? "left") == "top" || (props.preview ?? "left") == "bottom",
|
|
548
|
-
"rounded-t-md": (props.preview ?? "left") == "top",
|
|
549
|
-
"rounded-b-md": (props.preview ?? "left") == "bottom"
|
|
550
|
-
}
|
|
551
|
-
}, {
|
|
552
|
-
style: qwik._fnSignal((p0) => ({
|
|
553
|
-
backgroundColor: `${p0.value}`
|
|
554
|
-
}), [
|
|
555
|
-
store
|
|
556
|
-
], "{backgroundColor:`${p0.value}`}")
|
|
557
|
-
}, null, 3, "Xr_0"),
|
|
558
|
-
/* @__PURE__ */ qwik._jsxQ("input", {
|
|
559
|
-
class: {
|
|
560
|
-
"w-full lum-input lum-pad-sm text-sm lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md": true,
|
|
561
|
-
"border-t-0 rounded-t-none": (props.preview ?? "left") == "top",
|
|
562
|
-
"border-b-0 rounded-b-none": (props.preview ?? "left") == "bottom"
|
|
563
|
-
},
|
|
564
|
-
style: (props.preview ?? "left") == "full" ? {
|
|
565
|
-
backgroundColor: `${store.value}`,
|
|
566
|
-
color: getBrightness(hexNumberToRgb(hexStringToNumber(store.value))) > 0.5 ? "black" : "white"
|
|
567
|
-
} : {}
|
|
568
|
-
}, {
|
|
569
|
-
value: qwik._fnSignal((p0) => p0.value, [
|
|
570
|
-
store
|
|
571
|
-
], "p0.value"),
|
|
572
|
-
onInput$: /* @__PURE__ */ qwik.inlinedQrl((e, el) => {
|
|
573
|
-
const [setColor2] = qwik.useLexicalScope();
|
|
574
|
-
setColor2(el.value);
|
|
575
|
-
}, "ColorPicker_component_div_div_div_input_onInput_CQkhrhS8XsM", [
|
|
576
|
-
setColor
|
|
577
|
-
])
|
|
578
|
-
}, null, 3, null)
|
|
579
|
-
], 1, "Xr_1"),
|
|
580
|
-
(props.colors ?? [
|
|
581
|
-
"#FAEDCB",
|
|
582
|
-
"#C9E4DE",
|
|
583
|
-
"#C6DEF1",
|
|
584
|
-
"#DBCDF0",
|
|
585
|
-
"#F2C6DE",
|
|
586
|
-
"#FCD05C",
|
|
587
|
-
"#5FE2C5",
|
|
588
|
-
"#4498DB",
|
|
589
|
-
"#9863E7",
|
|
590
|
-
"#E43A96",
|
|
591
|
-
"#000000",
|
|
592
|
-
"#555555",
|
|
593
|
-
"#AAAAAA",
|
|
594
|
-
"#FFFFFF"
|
|
595
|
-
]).map((color, i) => {
|
|
596
|
-
return /* @__PURE__ */ qwik._jsxQ("button", {
|
|
597
|
-
style: {
|
|
598
|
-
background: color,
|
|
599
|
-
outline: color === store.value ? "2px solid #ffffffaa" : void 0
|
|
600
|
-
},
|
|
601
|
-
onClick$: /* @__PURE__ */ qwik.inlinedQrl(() => {
|
|
602
|
-
const [color2, setColor2] = qwik.useLexicalScope();
|
|
603
|
-
setColor2(color2);
|
|
604
|
-
}, "ColorPicker_component_div_div_button_onClick_SZm6ZpemtlQ", [
|
|
605
|
-
color,
|
|
606
|
-
setColor
|
|
607
|
-
])
|
|
608
|
-
}, {
|
|
609
|
-
class: {
|
|
610
|
-
"w-[1.6rem] h-[1.6rem] rounded-md hover:scale-110 motion-safe:transition-all duration-300 hover:duration-75 ease-out -outline-offset-1 outline outline-1 outline-white/30": true
|
|
611
|
-
}
|
|
612
|
-
}, null, 2, i);
|
|
441
|
+
setColor(el.dataset.value);
|
|
442
|
+
},
|
|
443
|
+
children: [
|
|
444
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
445
|
+
class: "flex gap-4",
|
|
446
|
+
children: [
|
|
447
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
448
|
+
class: "w-[125px] h-[150px] rounded-md relative",
|
|
449
|
+
style: {
|
|
450
|
+
background: `linear-gradient(to right, #FFFFFF, ${store.hue.color})`
|
|
451
|
+
},
|
|
452
|
+
onMouseDown$: sbMouseDown,
|
|
453
|
+
onTouchStart$: sbMouseDown,
|
|
454
|
+
"preventdefault:mousedown": true,
|
|
455
|
+
"preventdefault:touchstart": true,
|
|
456
|
+
children: [
|
|
457
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
458
|
+
class: "w-[125px] h-[150px] rounded-[0.3rem] bg-gradient-to-b from-transparent to-black border border-gray-700"
|
|
459
|
+
}),
|
|
460
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
461
|
+
class: {
|
|
462
|
+
"absolute -top-2 -left-2 w-4 h-4 border rounded-full bg-white": true,
|
|
463
|
+
"border-white": getBrightness(hexNumberToRgb(hexStringToNumber(store.value))) < 0.5,
|
|
464
|
+
"border-black": getBrightness(hexNumberToRgb(hexStringToNumber(store.value))) > 0.5
|
|
465
|
+
},
|
|
466
|
+
style: {
|
|
467
|
+
background: store.value,
|
|
468
|
+
transform: `translate(${store.sPosition}px, ${store.bPosition}px)`
|
|
469
|
+
}
|
|
470
|
+
})
|
|
471
|
+
]
|
|
472
|
+
}),
|
|
473
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
474
|
+
class: "h-[150px] relative w-2 border border-gray-700 rounded-md",
|
|
475
|
+
style: {
|
|
476
|
+
background: "linear-gradient(to bottom, #ff0000, #ff00ff, #0000ff, #00ffff, #00ff00, #ffff00, #ff0000)"
|
|
477
|
+
},
|
|
478
|
+
onMouseDown$: hueMouseDown,
|
|
479
|
+
onTouchStart$: hueMouseDown,
|
|
480
|
+
"preventdefault:mousedown": true,
|
|
481
|
+
"preventdefault:touchstart": true,
|
|
482
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
483
|
+
class: "absolute -bottom-2 -left-[5px] w-4 h-4 border border-white rounded-full bg-[#ff0000]",
|
|
484
|
+
style: {
|
|
485
|
+
transform: `translateY(${-store.hue.position}px)`,
|
|
486
|
+
background: store.hue.color
|
|
487
|
+
}
|
|
488
|
+
})
|
|
489
|
+
})
|
|
490
|
+
]
|
|
613
491
|
}),
|
|
614
|
-
/* @__PURE__ */
|
|
615
|
-
class: "w-[
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
492
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
493
|
+
class: "w-[150px] flex flex-wrap gap-1 justify-between",
|
|
494
|
+
children: [
|
|
495
|
+
showInput && /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
496
|
+
class: {
|
|
497
|
+
"flex w-[150px] pb-3 mb-2 border-b border-b-gray-700": true,
|
|
498
|
+
"flex-row gap-1": preview == "left",
|
|
499
|
+
"flex-row-reverse gap-1": preview == "right",
|
|
500
|
+
"flex-col": preview == "top",
|
|
501
|
+
"flex-col-reverse": preview == "bottom"
|
|
502
|
+
},
|
|
503
|
+
children: [
|
|
504
|
+
preview != "full" && /* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
505
|
+
class: {
|
|
506
|
+
"border border-gray-700": true,
|
|
507
|
+
"h-full aspect-square rounded-md": preview == "left" || preview == "right",
|
|
508
|
+
"w-full h-3": preview == "top" || preview == "bottom",
|
|
509
|
+
"rounded-t-md": preview == "top",
|
|
510
|
+
"rounded-b-md": preview == "bottom"
|
|
511
|
+
},
|
|
512
|
+
style: {
|
|
513
|
+
backgroundColor: `${store.value}`
|
|
514
|
+
}
|
|
515
|
+
}),
|
|
516
|
+
/* @__PURE__ */ jsxRuntime.jsx("input", {
|
|
517
|
+
class: {
|
|
518
|
+
"w-full lum-input lum-pad-sm text-sm lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md": true,
|
|
519
|
+
"border-t-0 rounded-t-none": preview == "top",
|
|
520
|
+
"border-b-0 rounded-b-none": preview == "bottom"
|
|
521
|
+
},
|
|
522
|
+
value: store.value,
|
|
523
|
+
style: preview == "full" ? {
|
|
524
|
+
backgroundColor: `${store.value}`,
|
|
525
|
+
color: getBrightness(hexNumberToRgb(hexStringToNumber(store.value))) > 0.5 ? "black" : "white"
|
|
526
|
+
} : {},
|
|
527
|
+
onInput$: (e, el) => {
|
|
528
|
+
setColor(el.value);
|
|
529
|
+
}
|
|
530
|
+
})
|
|
531
|
+
]
|
|
532
|
+
}),
|
|
533
|
+
colors.map((color, i) => {
|
|
534
|
+
return /* @__PURE__ */ jsxRuntime.jsx("button", {
|
|
535
|
+
class: {
|
|
536
|
+
"w-[1.6rem] h-[1.6rem] rounded-md hover:scale-110 motion-safe:transition-all duration-300 hover:duration-75 ease-out -outline-offset-1 outline outline-1 outline-white/30": true
|
|
537
|
+
},
|
|
538
|
+
style: {
|
|
539
|
+
background: color,
|
|
540
|
+
outline: color === store.value ? "2px solid #ffffffaa" : void 0
|
|
541
|
+
},
|
|
542
|
+
onClick$: () => {
|
|
543
|
+
setColor(color);
|
|
544
|
+
}
|
|
545
|
+
}, i);
|
|
546
|
+
}),
|
|
547
|
+
/* @__PURE__ */ jsxRuntime.jsx("button", {
|
|
548
|
+
class: "w-[1.6rem] h-[1.6rem] border border-gray-700 rounded-md hover:scale-110 motion-safe:transition-all duration-300 hover:duration-75 ease-out",
|
|
549
|
+
onClick$: () => {
|
|
550
|
+
const color = `#${Math.floor(Math.random() * 16777215).toString(16)}`;
|
|
551
|
+
setColor(color);
|
|
552
|
+
},
|
|
553
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(Shuffle, {
|
|
554
|
+
class: "fill-current text-gray-300 pl-0.5 p-0.5"
|
|
555
|
+
})
|
|
556
|
+
})
|
|
557
|
+
]
|
|
558
|
+
})
|
|
559
|
+
]
|
|
560
|
+
});
|
|
561
|
+
});
|
|
562
|
+
const ChevronDown = qwik.component$((props) => {
|
|
563
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", {
|
|
634
564
|
xmlns: "http://www.w3.org/2000/svg",
|
|
635
565
|
viewBox: "0 0 512 512",
|
|
636
566
|
...props,
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
},
|
|
640
|
-
children: /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
567
|
+
height: props.width,
|
|
568
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
641
569
|
fill: "none",
|
|
642
570
|
stroke: "currentColor",
|
|
643
571
|
"stroke-linecap": "round",
|
|
644
572
|
"stroke-linejoin": "round",
|
|
645
573
|
"stroke-width": "48",
|
|
646
574
|
d: "M112 184l144 144 144-144"
|
|
647
|
-
}
|
|
648
|
-
}
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
/* @__PURE__ */ qwik._jsxC(DropdownRaw, {
|
|
667
|
-
...props
|
|
668
|
-
}, 0, "Q4_1")
|
|
669
|
-
], 1, "Q4_2");
|
|
670
|
-
}, "Dropdown_component_uFQ6p5skpCY"));
|
|
671
|
-
const DropdownRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
672
|
-
const props1 = qwik._restProps(props, [
|
|
673
|
-
"id",
|
|
674
|
-
"values",
|
|
675
|
-
"class",
|
|
676
|
-
"display",
|
|
677
|
-
"hover"
|
|
678
|
-
]);
|
|
575
|
+
})
|
|
576
|
+
});
|
|
577
|
+
});
|
|
578
|
+
const Dropdown = qwik.component$((props) => {
|
|
579
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
580
|
+
class: "flex flex-col",
|
|
581
|
+
children: [
|
|
582
|
+
/* @__PURE__ */ jsxRuntime.jsx("label", {
|
|
583
|
+
for: props.id,
|
|
584
|
+
class: "text-gray-300 pb-1 select-none",
|
|
585
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {})
|
|
586
|
+
}),
|
|
587
|
+
/* @__PURE__ */ jsxRuntime.jsx(DropdownRaw, {
|
|
588
|
+
...props
|
|
589
|
+
})
|
|
590
|
+
]
|
|
591
|
+
});
|
|
592
|
+
});
|
|
593
|
+
const DropdownRaw = qwik.component$(({ id, values, class: Class, display, hover, ...props }) => {
|
|
679
594
|
const store = qwik.useStore({
|
|
680
595
|
opened: false,
|
|
681
|
-
value:
|
|
596
|
+
value: props.value
|
|
682
597
|
});
|
|
683
|
-
return /* @__PURE__ */
|
|
684
|
-
class:
|
|
598
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
599
|
+
class: {
|
|
685
600
|
"relative touch-manipulation": true,
|
|
686
|
-
"group":
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
...props1,
|
|
693
|
-
get id() {
|
|
694
|
-
return props.id;
|
|
695
|
-
},
|
|
696
|
-
class: {
|
|
697
|
-
"hidden": true
|
|
698
|
-
},
|
|
699
|
-
children: props.values.map((value, i) => {
|
|
700
|
-
return /* @__PURE__ */ qwik._jsxQ("option", {
|
|
701
|
-
value: qwik._wrapSignal(value, "value")
|
|
702
|
-
}, null, `${value.value}`, 1, i);
|
|
703
|
-
})
|
|
704
|
-
}, {
|
|
705
|
-
id: qwik._fnSignal((p0) => p0.id, [
|
|
706
|
-
props
|
|
707
|
-
], "p0.id"),
|
|
708
|
-
class: qwik._IMMUTABLE
|
|
709
|
-
}, 0, "Q4_3"),
|
|
710
|
-
/* @__PURE__ */ qwik._jsxQ("button", null, {
|
|
711
|
-
class: qwik._fnSignal((p0) => ({
|
|
712
|
-
"lum-btn lum-pad-md text-base lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md": true,
|
|
713
|
-
...p0.class
|
|
714
|
-
}), [
|
|
715
|
-
props
|
|
716
|
-
], '{"lum-btn lum-pad-md text-base lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md":true,...p0.class}'),
|
|
717
|
-
onClick$: /* @__PURE__ */ qwik.inlinedQrl(() => {
|
|
718
|
-
const [store2] = qwik.useLexicalScope();
|
|
719
|
-
store2.opened = !store2.opened;
|
|
720
|
-
}, "DropdownRaw_component_div_button_onClick_fdpCVk0MoxA", [
|
|
721
|
-
store
|
|
722
|
-
])
|
|
723
|
-
}, [
|
|
724
|
-
qwik._fnSignal((p0) => p0.display, [
|
|
725
|
-
props
|
|
726
|
-
], "p0.display"),
|
|
727
|
-
!props.display && props.values && /* @__PURE__ */ qwik._jsxQ("span", null, {
|
|
728
|
-
id: qwik._fnSignal((p0) => `lui-${p0.id}-name`, [
|
|
729
|
-
props
|
|
730
|
-
], "`lui-${p0.id}-name`"),
|
|
731
|
-
class: "flex-1 text-left"
|
|
732
|
-
}, props.values.find((value) => value.value.toString() === store.value)?.name ?? props.values[0].name, 1, "Q4_4"),
|
|
733
|
-
/* @__PURE__ */ qwik._jsxC(ChevronDown, {
|
|
734
|
-
width: 16,
|
|
601
|
+
"group": hover
|
|
602
|
+
},
|
|
603
|
+
children: [
|
|
604
|
+
values && /* @__PURE__ */ jsxRuntime.jsx("select", {
|
|
605
|
+
...props,
|
|
606
|
+
id,
|
|
735
607
|
class: {
|
|
736
|
-
"
|
|
737
|
-
"transform rotate-180": store.opened,
|
|
738
|
-
"group-hover:transform group-hover:rotate-180 duration-300 group-hover:duration-75": props.hover
|
|
608
|
+
"hidden": true
|
|
739
609
|
},
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
610
|
+
children: values.map((value, i) => {
|
|
611
|
+
return /* @__PURE__ */ jsxRuntime.jsx("option", {
|
|
612
|
+
value: value.value,
|
|
613
|
+
children: `${value.value}`
|
|
614
|
+
}, i);
|
|
615
|
+
})
|
|
616
|
+
}),
|
|
617
|
+
/* @__PURE__ */ jsxRuntime.jsxs("button", {
|
|
618
|
+
class: {
|
|
619
|
+
"lum-btn lum-pad-md text-base lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md": true,
|
|
620
|
+
...Class
|
|
621
|
+
},
|
|
622
|
+
onClick$: () => {
|
|
623
|
+
store.opened = !store.opened;
|
|
624
|
+
},
|
|
625
|
+
children: [
|
|
626
|
+
display,
|
|
627
|
+
!display && values && /* @__PURE__ */ jsxRuntime.jsx("span", {
|
|
628
|
+
id: `lui-${id}-name`,
|
|
629
|
+
class: "flex-1 text-left",
|
|
630
|
+
children: values.find((value) => value.value.toString() === store.value)?.name ?? values[0].name
|
|
631
|
+
}),
|
|
632
|
+
/* @__PURE__ */ jsxRuntime.jsx(ChevronDown, {
|
|
633
|
+
width: 16,
|
|
634
|
+
class: {
|
|
635
|
+
"motion-safe:transition-all ease-out": true,
|
|
636
|
+
"transform rotate-180": store.opened,
|
|
637
|
+
"group-hover:transform group-hover:rotate-180 duration-300 group-hover:duration-75": hover
|
|
768
638
|
}
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
props,
|
|
772
|
-
store,
|
|
773
|
-
value
|
|
774
|
-
])
|
|
775
|
-
}, {
|
|
776
|
-
class: {
|
|
777
|
-
"lum-btn lum-pad-md text-base lum-bg-transparent": true
|
|
778
|
-
}
|
|
779
|
-
}, name, 0, i);
|
|
639
|
+
})
|
|
640
|
+
]
|
|
780
641
|
}),
|
|
781
|
-
/* @__PURE__ */
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
642
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
643
|
+
class: {
|
|
644
|
+
"transition-all ease-out absolute top-full pt-2 left-0 z-[1000] ": true,
|
|
645
|
+
"opacity-0 scale-95 pointer-events-none": !store.opened,
|
|
646
|
+
"group-hover:pointer-events-auto group-hover:opacity-100 group-hover:scale-100 duration-300 group-hover:duration-75": hover
|
|
647
|
+
},
|
|
648
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
649
|
+
id: `lui-${id}-opts`,
|
|
650
|
+
class: {
|
|
651
|
+
"motion-safe:transition-all p-1 gap-1 lum-bg-gray-800 backdrop-blur-xl flex flex-col border max-h-72 lum-scroll overflow-auto select-none rounded-md": true
|
|
652
|
+
},
|
|
653
|
+
children: [
|
|
654
|
+
values?.map(({ name, value }, i) => {
|
|
655
|
+
return /* @__PURE__ */ jsxRuntime.jsx("button", {
|
|
656
|
+
class: {
|
|
657
|
+
"lum-btn lum-pad-md text-base lum-bg-transparent": true
|
|
658
|
+
},
|
|
659
|
+
onClick$: () => {
|
|
660
|
+
store.opened = false;
|
|
661
|
+
const select = document.getElementById(id);
|
|
662
|
+
if (select) {
|
|
663
|
+
select.value = value.toString();
|
|
664
|
+
select.dispatchEvent(new Event("change"));
|
|
665
|
+
}
|
|
666
|
+
store.value = value.toString();
|
|
667
|
+
},
|
|
668
|
+
children: name
|
|
669
|
+
}, i);
|
|
670
|
+
}),
|
|
671
|
+
/* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
|
|
672
|
+
name: "extra-buttons"
|
|
673
|
+
})
|
|
674
|
+
]
|
|
675
|
+
})
|
|
676
|
+
})
|
|
677
|
+
]
|
|
678
|
+
});
|
|
679
|
+
});
|
|
680
|
+
const Link = qwik.component$((props) => {
|
|
681
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", {
|
|
792
682
|
xmlns: "http://www.w3.org/2000/svg",
|
|
793
683
|
viewBox: "0 0 512 512",
|
|
794
684
|
...props,
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
},
|
|
798
|
-
children: /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
685
|
+
height: props.width,
|
|
686
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
799
687
|
d: "M208 352h-64a96 96 0 010-192h64M304 160h64a96 96 0 010 192h-64M163.29 256h187.42",
|
|
800
688
|
fill: "none",
|
|
801
689
|
stroke: "currentColor",
|
|
802
690
|
"stroke-linecap": "round",
|
|
803
691
|
"stroke-linejoin": "round",
|
|
804
692
|
"stroke-width": "36"
|
|
805
|
-
}
|
|
806
|
-
}
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
], "p0.width")
|
|
812
|
-
}, 0, "zW_0");
|
|
813
|
-
}, "Link_component_fiB6yg0RKjk"));
|
|
814
|
-
const Header = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
815
|
-
qwik._jsxBranch();
|
|
816
|
-
const props1 = qwik._restProps(props, [
|
|
817
|
-
"id",
|
|
818
|
-
"anchor",
|
|
819
|
-
"subheader"
|
|
820
|
-
]);
|
|
821
|
-
let Component = /* @__PURE__ */ qwik._jsxC(jsxRuntime.Fragment, {
|
|
822
|
-
children: /* @__PURE__ */ qwik._jsxQ("h2", {
|
|
693
|
+
})
|
|
694
|
+
});
|
|
695
|
+
});
|
|
696
|
+
const Header = qwik.component$(({ id, anchor, subheader, ...props }) => {
|
|
697
|
+
let Component = /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {
|
|
698
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("h2", {
|
|
823
699
|
class: {
|
|
824
700
|
"flex gap-2 group items-center font-bold text-xl sm:text-2xl whitespace-nowrap text-white": true,
|
|
825
|
-
...
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
class: "flex flex-col gap-1"
|
|
858
|
-
}, [
|
|
859
|
-
Component,
|
|
860
|
-
/* @__PURE__ */ qwik._jsxQ("h3", null, {
|
|
861
|
-
class: "flex items-center text-gray-400 text-sm"
|
|
862
|
-
}, qwik._fnSignal((p0) => p0.subheader, [
|
|
863
|
-
props
|
|
864
|
-
], "p0.subheader"), 3, null)
|
|
865
|
-
], 1, "hw_5");
|
|
701
|
+
...props.class
|
|
702
|
+
},
|
|
703
|
+
children: [
|
|
704
|
+
/* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {}),
|
|
705
|
+
id && /* @__PURE__ */ jsxRuntime.jsx(Anchor, {
|
|
706
|
+
id
|
|
707
|
+
}),
|
|
708
|
+
anchor && id && /* @__PURE__ */ jsxRuntime.jsx("a", {
|
|
709
|
+
href: `#${id}`,
|
|
710
|
+
onClick$: () => {
|
|
711
|
+
navigator.clipboard.writeText(window.location.href);
|
|
712
|
+
},
|
|
713
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(Link, {
|
|
714
|
+
class: "transition-all opacity-10 group-hover:opacity-100 duration-300 group-hover:duration-75",
|
|
715
|
+
width: 24
|
|
716
|
+
})
|
|
717
|
+
})
|
|
718
|
+
]
|
|
719
|
+
})
|
|
720
|
+
});
|
|
721
|
+
if (subheader) {
|
|
722
|
+
Component = /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
723
|
+
class: "flex flex-col gap-1",
|
|
724
|
+
children: [
|
|
725
|
+
Component,
|
|
726
|
+
/* @__PURE__ */ jsxRuntime.jsx("h3", {
|
|
727
|
+
class: "flex items-center text-gray-400 text-sm",
|
|
728
|
+
children: subheader
|
|
729
|
+
})
|
|
730
|
+
]
|
|
731
|
+
});
|
|
732
|
+
}
|
|
866
733
|
return Component;
|
|
867
|
-
}
|
|
868
|
-
const Nav =
|
|
869
|
-
qwik._jsxBranch();
|
|
870
|
-
const props1 = qwik._restProps(props, [
|
|
871
|
-
"fixed",
|
|
872
|
-
"floating",
|
|
873
|
-
"nohamburger",
|
|
874
|
-
"colorClass"
|
|
875
|
-
]);
|
|
734
|
+
});
|
|
735
|
+
const Nav = qwik.component$(({ fixed, floating, nohamburger, colorClass = "lum-bg-gray-900", ...props }) => {
|
|
876
736
|
const menu = qwik.useSignal(false);
|
|
877
|
-
return /* @__PURE__ */
|
|
878
|
-
...
|
|
737
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("nav", {
|
|
738
|
+
...props,
|
|
879
739
|
class: {
|
|
880
740
|
"motion-safe:transition-all duration-200 flex flex-col top-0 left-0 w-full z-50": true,
|
|
881
|
-
"fixed":
|
|
882
|
-
"absolute": !
|
|
883
|
-
...
|
|
741
|
+
"fixed": fixed,
|
|
742
|
+
"absolute": !fixed,
|
|
743
|
+
...props.class
|
|
884
744
|
},
|
|
885
745
|
children: [
|
|
886
|
-
!
|
|
746
|
+
!nohamburger && /* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
887
747
|
class: {
|
|
888
748
|
"sm:hidden motion-safe:transition-all flex flex-col px-2 items-center absolute w-full top-full": true,
|
|
889
749
|
"mt-2": menu.value,
|
|
890
750
|
"opacity-0 pointer-events-none": !menu.value,
|
|
891
|
-
"before:backdrop-blur-lg": !
|
|
751
|
+
"before:backdrop-blur-lg": !colorClass.includes("transparent"),
|
|
892
752
|
'before:absolute before:content-[""] before:w-full before:h-full before:drop-shadow-xl before:-z-10 before:rounded-lg': true
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
}
|
|
906
|
-
}, 3, "03_0"), 1, null), 1, "03_1"),
|
|
907
|
-
/* @__PURE__ */ qwik._jsxQ("div", {
|
|
908
|
-
class: {
|
|
909
|
-
[props.colorClass ?? "lum-bg-gray-900"]: !props.floating,
|
|
910
|
-
"!border-t-0 !border-x-0": !props.floating,
|
|
911
|
-
"before:backdrop-blur-lg": !(props.colorClass ?? "lum-bg-gray-900").includes("transparent") && !props.floating,
|
|
912
|
-
'before:absolute before:content-[""] before:w-full before:h-full before:drop-shadow-xl before:-z-10': !props.floating,
|
|
913
|
-
"relative mt-2 mx-2": props.floating
|
|
914
|
-
}
|
|
915
|
-
}, null, /* @__PURE__ */ qwik._jsxQ("div", {
|
|
753
|
+
},
|
|
754
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
755
|
+
class: {
|
|
756
|
+
[colorClass]: true,
|
|
757
|
+
"flex flex-col gap-2 motion-safe:transition-all max-w-7xl w-full px-2 py-4 border rounded-lg": true
|
|
758
|
+
},
|
|
759
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
|
|
760
|
+
name: "mobile"
|
|
761
|
+
})
|
|
762
|
+
})
|
|
763
|
+
}),
|
|
764
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
916
765
|
class: {
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
"
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
}
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
}
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
766
|
+
[colorClass]: !floating,
|
|
767
|
+
"!border-t-0 !border-x-0": !floating,
|
|
768
|
+
"before:backdrop-blur-lg": !colorClass.includes("transparent") && !floating,
|
|
769
|
+
'before:absolute before:content-[""] before:w-full before:h-full before:drop-shadow-xl before:-z-10': !floating,
|
|
770
|
+
"relative mt-2 mx-2": floating
|
|
771
|
+
},
|
|
772
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
773
|
+
class: {
|
|
774
|
+
"flex justify-evenly w-full mx-auto px-2 max-w-7xl": true,
|
|
775
|
+
[colorClass]: floating,
|
|
776
|
+
"border rounded-lg": floating,
|
|
777
|
+
"before:backdrop-blur-lg": !colorClass.includes("transparent") && floating,
|
|
778
|
+
'before:absolute before:content-[""] before:w-full before:max-w-7xl before:h-full before:rounded-lg before:drop-shadow-xl before:-z-10': floating
|
|
779
|
+
},
|
|
780
|
+
children: [
|
|
781
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
782
|
+
class: "flex items-center flex-1 gap-2 py-2 justify-start",
|
|
783
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
|
|
784
|
+
name: "start"
|
|
785
|
+
})
|
|
786
|
+
}),
|
|
787
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
788
|
+
class: "flex items-center flex-1 gap-2 py-2 justify-center",
|
|
789
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
|
|
790
|
+
name: "center"
|
|
791
|
+
})
|
|
792
|
+
}),
|
|
793
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
794
|
+
class: "flex items-center flex-1 gap-2 py-2 justify-end",
|
|
795
|
+
children: [
|
|
796
|
+
/* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
|
|
797
|
+
name: "end"
|
|
798
|
+
}),
|
|
799
|
+
!nohamburger && /* @__PURE__ */ jsxRuntime.jsx("button", {
|
|
800
|
+
class: "lum-btn lum-pad-equal-md lum-bg-transparent sm:hidden",
|
|
801
|
+
onClick$: () => menu.value = !menu.value,
|
|
802
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("svg", {
|
|
803
|
+
class: "w-6 h-6",
|
|
804
|
+
fill: "none",
|
|
805
|
+
stroke: "currentColor",
|
|
806
|
+
viewBox: "0 0 24 24",
|
|
807
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
808
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
809
|
+
"stroke-linecap": "round",
|
|
810
|
+
"stroke-linejoin": "round",
|
|
811
|
+
"stroke-width": "2",
|
|
812
|
+
d: "M4 6h16M4 12h16M4 18h16"
|
|
813
|
+
})
|
|
814
|
+
})
|
|
815
|
+
})
|
|
816
|
+
]
|
|
817
|
+
})
|
|
818
|
+
]
|
|
819
|
+
})
|
|
820
|
+
})
|
|
971
821
|
]
|
|
972
|
-
}
|
|
973
|
-
}
|
|
974
|
-
const Plus =
|
|
975
|
-
return /* @__PURE__ */
|
|
822
|
+
});
|
|
823
|
+
});
|
|
824
|
+
const Plus = qwik.component$((props) => {
|
|
825
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", {
|
|
976
826
|
xmlns: "http://www.w3.org/2000/svg",
|
|
977
827
|
viewBox: "0 0 512 512",
|
|
978
828
|
...props,
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
},
|
|
982
|
-
children: /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
829
|
+
height: props.width,
|
|
830
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
983
831
|
fill: "none",
|
|
984
832
|
stroke: "currentColor",
|
|
985
833
|
"stroke-linecap": "round",
|
|
986
834
|
"stroke-linejoin": "round",
|
|
987
835
|
"stroke-width": "32",
|
|
988
836
|
d: "M256 112v288M400 256H112"
|
|
989
|
-
}
|
|
990
|
-
}
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
props
|
|
995
|
-
], "p0.width")
|
|
996
|
-
}, 0, "1y_0");
|
|
997
|
-
}, "Plus_component_MKiwkkJ7or4"));
|
|
998
|
-
const Minus = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
999
|
-
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
837
|
+
})
|
|
838
|
+
});
|
|
839
|
+
});
|
|
840
|
+
const Minus = qwik.component$((props) => {
|
|
841
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", {
|
|
1000
842
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1001
843
|
viewBox: "0 0 512 512",
|
|
1002
844
|
...props,
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
},
|
|
1006
|
-
children: /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
845
|
+
height: props.width,
|
|
846
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1007
847
|
fill: "none",
|
|
1008
848
|
stroke: "currentColor",
|
|
1009
849
|
"stroke-linecap": "round",
|
|
1010
850
|
"stroke-linejoin": "round",
|
|
1011
851
|
"stroke-width": "32",
|
|
1012
852
|
d: "M400 256H112"
|
|
1013
|
-
}
|
|
1014
|
-
}
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
children: void 0
|
|
1035
|
-
}, 0, "kR_1")
|
|
1036
|
-
], 1, "kR_2");
|
|
1037
|
-
}, "NumberInput_component_2YJwSaeO64g"));
|
|
1038
|
-
const NumberInputRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1039
|
-
const props1 = qwik._restProps(props, [
|
|
1040
|
-
"input",
|
|
1041
|
-
"onDecrement$",
|
|
1042
|
-
"onIncrement$",
|
|
1043
|
-
"value",
|
|
1044
|
-
"step"
|
|
1045
|
-
]);
|
|
1046
|
-
qwik.useStylesQrl(/* @__PURE__ */ qwik.inlinedQrl(`
|
|
853
|
+
})
|
|
854
|
+
});
|
|
855
|
+
});
|
|
856
|
+
const NumberInput = qwik.component$((props) => {
|
|
857
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
858
|
+
class: "flex flex-col",
|
|
859
|
+
children: [
|
|
860
|
+
/* @__PURE__ */ jsxRuntime.jsx("label", {
|
|
861
|
+
for: props.id,
|
|
862
|
+
class: "text-gray-300 pb-1 select-none",
|
|
863
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {})
|
|
864
|
+
}),
|
|
865
|
+
/* @__PURE__ */ jsxRuntime.jsx(NumberInputRaw, {
|
|
866
|
+
...props,
|
|
867
|
+
children: void 0
|
|
868
|
+
})
|
|
869
|
+
]
|
|
870
|
+
});
|
|
871
|
+
});
|
|
872
|
+
const NumberInputRaw = qwik.component$(({ input, onDecrement$, onIncrement$, value = 0, step = 1, ...props }) => {
|
|
873
|
+
qwik.useStyles$(`
|
|
1047
874
|
input::-webkit-outer-spin-button,
|
|
1048
875
|
input::-webkit-inner-spin-button {
|
|
1049
876
|
-webkit-appearance: none;
|
|
@@ -1052,85 +879,60 @@ const NumberInputRaw = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.in
|
|
|
1052
879
|
input[type=number] {
|
|
1053
880
|
-moz-appearance: textfield;
|
|
1054
881
|
}
|
|
1055
|
-
|
|
1056
|
-
return /* @__PURE__ */
|
|
882
|
+
`);
|
|
883
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
1057
884
|
class: {
|
|
1058
885
|
"flex gap-2 text-gray-50 touch-manipulation": true
|
|
1059
|
-
}
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
disabled: props1.max ? (props.value ?? 0) >= props1.max : false,
|
|
1110
|
-
onClick$: props.input ? /* @__PURE__ */ qwik.inlinedQrl((event, element) => {
|
|
1111
|
-
const [props2] = qwik.useLexicalScope();
|
|
1112
|
-
const siblingInput = element.previousElementSibling;
|
|
1113
|
-
siblingInput.stepUp();
|
|
1114
|
-
props2.onIncrement$(event, element, siblingInput);
|
|
1115
|
-
}, "NumberInputRaw_component_div_button_onClick_1_uUOhUKFggTk", [
|
|
1116
|
-
props
|
|
1117
|
-
]) : props.onIncrement$
|
|
1118
|
-
}, {
|
|
1119
|
-
class: {
|
|
1120
|
-
"lum-btn lum-pad-equal-sm text-sm lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md": true
|
|
1121
|
-
},
|
|
1122
|
-
"data-action": "increment",
|
|
1123
|
-
"aria-label": "Increment"
|
|
1124
|
-
}, /* @__PURE__ */ qwik._jsxC(Plus, {
|
|
1125
|
-
width: "24",
|
|
1126
|
-
class: "fill-current",
|
|
1127
|
-
[qwik._IMMUTABLE]: {
|
|
1128
|
-
width: qwik._IMMUTABLE,
|
|
1129
|
-
class: qwik._IMMUTABLE
|
|
1130
|
-
}
|
|
1131
|
-
}, 3, "kR_5"), 0, null)
|
|
1132
|
-
], 1, "kR_6");
|
|
1133
|
-
}, "NumberInputRaw_component_M7TIOjLeBhU"));
|
|
886
|
+
},
|
|
887
|
+
children: [
|
|
888
|
+
/* @__PURE__ */ jsxRuntime.jsx("button", {
|
|
889
|
+
class: {
|
|
890
|
+
"lum-btn lum-pad-equal-sm text-sm lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md": true
|
|
891
|
+
},
|
|
892
|
+
"data-action": "decrement",
|
|
893
|
+
"aria-label": "Decrement",
|
|
894
|
+
disabled: props.min ? value <= props.min : false,
|
|
895
|
+
onClick$: input ? qwik.$((event, element) => {
|
|
896
|
+
const siblingInput = element.nextElementSibling;
|
|
897
|
+
siblingInput.stepDown();
|
|
898
|
+
onDecrement$(event, element, siblingInput);
|
|
899
|
+
}) : onDecrement$,
|
|
900
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(Minus, {
|
|
901
|
+
width: "24",
|
|
902
|
+
class: "fill-current"
|
|
903
|
+
})
|
|
904
|
+
}),
|
|
905
|
+
input && /* @__PURE__ */ jsxRuntime.jsx("input", {
|
|
906
|
+
...props,
|
|
907
|
+
type: "number",
|
|
908
|
+
value,
|
|
909
|
+
step,
|
|
910
|
+
class: {
|
|
911
|
+
"lum-input text-sm lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md": true,
|
|
912
|
+
"text-center": true,
|
|
913
|
+
...props.class
|
|
914
|
+
}
|
|
915
|
+
}),
|
|
916
|
+
/* @__PURE__ */ jsxRuntime.jsx("button", {
|
|
917
|
+
class: {
|
|
918
|
+
"lum-btn lum-pad-equal-sm text-sm lum-bg-gray-800 hover:lum-bg-gray-700 rounded-md": true
|
|
919
|
+
},
|
|
920
|
+
"data-action": "increment",
|
|
921
|
+
"aria-label": "Increment",
|
|
922
|
+
disabled: props.max ? value >= props.max : false,
|
|
923
|
+
onClick$: input ? qwik.$((event, element) => {
|
|
924
|
+
const siblingInput = element.previousElementSibling;
|
|
925
|
+
siblingInput.stepUp();
|
|
926
|
+
onIncrement$(event, element, siblingInput);
|
|
927
|
+
}) : onIncrement$,
|
|
928
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(Plus, {
|
|
929
|
+
width: "24",
|
|
930
|
+
class: "fill-current"
|
|
931
|
+
})
|
|
932
|
+
})
|
|
933
|
+
]
|
|
934
|
+
});
|
|
935
|
+
});
|
|
1134
936
|
const toggleOnColorClasses = {
|
|
1135
937
|
slate: {
|
|
1136
938
|
checked: "peer-checked:bg-slate-600 peer-checked:border-slate-500 peer-checked:hover:bg-slate-500 peer-checked:active:bg-slate-400",
|
|
@@ -1327,156 +1129,128 @@ const toggleOffColorClasses = {
|
|
|
1327
1129
|
uncheckedAfter: "after:bg-rose-600 after:border-rose-500 after:hover:bg-rose-500 after:active:bg-rose-400"
|
|
1328
1130
|
}
|
|
1329
1131
|
};
|
|
1330
|
-
const Toggle =
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
"round",
|
|
1334
|
-
"center",
|
|
1335
|
-
"label",
|
|
1336
|
-
"onColor",
|
|
1337
|
-
"offColor"
|
|
1338
|
-
]);
|
|
1339
|
-
return /* @__PURE__ */ qwik._jsxQ("div", null, {
|
|
1340
|
-
class: qwik._fnSignal((p0) => ({
|
|
1132
|
+
const Toggle = qwik.component$(({ checkbox, round, center, label, onColor = "blue", offColor = "darkgray", ...props }) => {
|
|
1133
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
1134
|
+
class: {
|
|
1341
1135
|
"flex gap-3 items-center touch-manipulation": true,
|
|
1342
|
-
"justify-center":
|
|
1343
|
-
}
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
], 1, "R0_1");
|
|
1383
|
-
}, "Toggle_component_AHnKi33alRM"));
|
|
1384
|
-
const LogoBirdflop = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1385
|
-
const props1 = qwik._restProps(props, [
|
|
1386
|
-
"confused",
|
|
1387
|
-
"fillGradient"
|
|
1388
|
-
]);
|
|
1389
|
-
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1136
|
+
"justify-center": center
|
|
1137
|
+
},
|
|
1138
|
+
children: [
|
|
1139
|
+
/* @__PURE__ */ jsxRuntime.jsxs("label", {
|
|
1140
|
+
class: "inline-flex relative items-center cursor-pointer",
|
|
1141
|
+
children: [
|
|
1142
|
+
/* @__PURE__ */ jsxRuntime.jsx("input", {
|
|
1143
|
+
type: "checkbox",
|
|
1144
|
+
...props,
|
|
1145
|
+
class: {
|
|
1146
|
+
"sr-only peer": true,
|
|
1147
|
+
...props.class
|
|
1148
|
+
}
|
|
1149
|
+
}),
|
|
1150
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
1151
|
+
class: {
|
|
1152
|
+
"motion-safe:transition duration-300 hover:duration-75 ease-out h-7 peer border hover:shadow-lg": true,
|
|
1153
|
+
"after:content-[''] after:absolute after:top-[4px] after:left-[4px] after:border after:h-5 after:w-5 after:motion-safe:transition-all after:duration-300 after:hover:duration-75 after:ease-out": true,
|
|
1154
|
+
"rounded-md after:rounded-[0.2rem]": !round,
|
|
1155
|
+
"rounded-full after:rounded-full": round,
|
|
1156
|
+
"w-12 peer-checked:after:translate-x-full": !checkbox,
|
|
1157
|
+
"w-7 after:opacity-0 peer-checked:after:opacity-100": checkbox,
|
|
1158
|
+
[toggleOnColorClasses[onColor].checked]: true,
|
|
1159
|
+
[toggleOnColorClasses[onColor].checkedAfter]: true,
|
|
1160
|
+
[toggleOffColorClasses[offColor].unchecked]: true,
|
|
1161
|
+
[toggleOffColorClasses[offColor].uncheckedAfter]: true
|
|
1162
|
+
}
|
|
1163
|
+
})
|
|
1164
|
+
]
|
|
1165
|
+
}),
|
|
1166
|
+
label && /* @__PURE__ */ jsxRuntime.jsx("label", {
|
|
1167
|
+
for: props.id,
|
|
1168
|
+
class: "text-gray-300 flex gap-2 select-none",
|
|
1169
|
+
children: label
|
|
1170
|
+
})
|
|
1171
|
+
]
|
|
1172
|
+
});
|
|
1173
|
+
});
|
|
1174
|
+
const LogoBirdflop = qwik.component$(({ confused, fillGradient, ...props }) => {
|
|
1175
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
|
|
1390
1176
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1391
1177
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
1392
1178
|
viewBox: "0 0 1080 1080",
|
|
1393
|
-
...
|
|
1394
|
-
|
|
1395
|
-
return props1.width;
|
|
1396
|
-
},
|
|
1397
|
-
height: qwik._wrapSignal(props1, "width"),
|
|
1179
|
+
...props,
|
|
1180
|
+
height: props.width,
|
|
1398
1181
|
children: [
|
|
1399
|
-
/* @__PURE__ */
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1182
|
+
/* @__PURE__ */ jsxRuntime.jsxs("defs", {
|
|
1183
|
+
children: [
|
|
1184
|
+
fillGradient && /* @__PURE__ */ jsxRuntime.jsx("linearGradient", {
|
|
1185
|
+
id: "linear-gradient",
|
|
1186
|
+
x1: "0.5",
|
|
1187
|
+
x2: "0.5",
|
|
1188
|
+
y2: "1",
|
|
1189
|
+
gradientUnits: "objectBoundingBox",
|
|
1190
|
+
children: fillGradient.map((color, i) => /* @__PURE__ */ jsxRuntime.jsx("stop", {
|
|
1191
|
+
offset: i / (fillGradient.length - 1),
|
|
1192
|
+
"stop-color": color
|
|
1193
|
+
}, i))
|
|
1194
|
+
}),
|
|
1195
|
+
/* @__PURE__ */ jsxRuntime.jsx("clipPath", {
|
|
1196
|
+
id: "clip-bf_3",
|
|
1197
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("rect", {
|
|
1198
|
+
width: "1080",
|
|
1199
|
+
height: "1080"
|
|
1200
|
+
})
|
|
1201
|
+
})
|
|
1202
|
+
]
|
|
1203
|
+
}),
|
|
1204
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1418
1205
|
id: "bf_3",
|
|
1419
1206
|
"data-name": "bf - 3",
|
|
1420
1207
|
"clip-path": "url(#clip-bf_3)",
|
|
1421
|
-
fill: "currentColor"
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
props.confused && /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1208
|
+
fill: "currentColor",
|
|
1209
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1210
|
+
id: "Union_26",
|
|
1211
|
+
"data-name": "Union 26",
|
|
1212
|
+
d: "M-1886.608-89.36c-8.311-65.774-27.64-219.008-27.64-221.333a.279.279,0,0,1,.09-.159q-.474-4.88-.477-9.885A101.066,101.066,0,0,1-1813.61-421.844a100.671,100.671,0,0,1,71.913,30.1l.093-.042c-.077-.093-8.783-10.549-22.7-24.758-8.216-8.388-16.645-16.459-25.052-23.993-10.51-9.417-21.018-18.013-31.23-25.552a120.5,120.5,0,0,0-40.468-71.567,119.916,119.916,0,0,0-77.984-28.881c-66.215,0-120.083,53.941-120.083,120.244h-.237v116.01h-.24c-.131,132.971-107.6,240.728-240.16,240.728V-330.289H-2300V-449.818h.362V-931.536h0V-1170c132.71,0,240.293,106.764,240.293,238.464v145.112a358.089,358.089,0,0,1,47.7-13.28,362.475,362.475,0,0,1,72.6-7.329,362.455,362.455,0,0,1,72.6,7.329,358.112,358.112,0,0,1,67.622,21.02,360.042,360.042,0,0,1,61.191,33.26,362.833,362.833,0,0,1,53.315,44.049,363.178,363.178,0,0,1,43.99,53.387,360.83,360.83,0,0,1,33.213,61.276A359.3,359.3,0,0,1-1586.118-519a363.948,363.948,0,0,1,7.317,72.7,363.957,363.957,0,0,1-7.317,72.7,359.333,359.333,0,0,1-20.992,67.714,360.95,360.95,0,0,1-33.213,61.277,363.233,363.233,0,0,1-43.99,53.388,362.833,362.833,0,0,1-53.315,44.049,360.017,360.017,0,0,1-61.191,33.259,358.108,358.108,0,0,1-67.622,21.02c-6.636,1.36-13.421,2.548-20.165,3.532Zm-79.831-365.056a27.049,27.049,0,0,1,27.038-27.059,27.048,27.048,0,0,1,27.037,27.059,27.049,27.049,0,0,1-27.037,27.06A27.05,27.05,0,0,1-1966.439-454.416Z",
|
|
1213
|
+
transform: "translate(2479.9 1169.7)",
|
|
1214
|
+
fill: fillGradient ? "url(#linear-gradient)" : ""
|
|
1215
|
+
})
|
|
1216
|
+
}),
|
|
1217
|
+
confused && /* @__PURE__ */ jsxRuntime.jsxs("g", {
|
|
1432
1218
|
style: "transform: translate(595px, 460px) scale(0.375)",
|
|
1433
1219
|
stroke: "#1E2837",
|
|
1434
|
-
fill: "#1E2837"
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1220
|
+
fill: "#1E2837",
|
|
1221
|
+
children: [
|
|
1222
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1223
|
+
d: "M160 164s1.44-33 33.54-59.46C212.6 88.83 235.49 84.28 256 84c18.73-.23 35.47 2.94 45.48 7.82C318.59 100.2 352 120.6 352 164c0 45.67-29.18 66.37-62.35 89.18S248 298.36 248 324",
|
|
1224
|
+
fill: "none",
|
|
1225
|
+
"stroke-linecap": "round",
|
|
1226
|
+
"stroke-miterlimit": "10",
|
|
1227
|
+
"stroke-width": "80"
|
|
1228
|
+
}),
|
|
1229
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", {
|
|
1230
|
+
cx: "248",
|
|
1231
|
+
cy: "399.99",
|
|
1232
|
+
r: "40",
|
|
1233
|
+
style: "transform: translate(0, 30px)"
|
|
1234
|
+
})
|
|
1235
|
+
]
|
|
1236
|
+
})
|
|
1450
1237
|
]
|
|
1451
|
-
}
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
}, 0, "br_2");
|
|
1456
|
-
}, "LogoBirdflop_component_9b5138o80cQ"));
|
|
1457
|
-
const LogoDiscord = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1458
|
-
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1238
|
+
});
|
|
1239
|
+
});
|
|
1240
|
+
const LogoDiscord = qwik.component$((props) => {
|
|
1241
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", {
|
|
1459
1242
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1460
1243
|
viewBox: "0 0 127.14 96.36",
|
|
1461
1244
|
fill: "currentColor",
|
|
1462
1245
|
...props,
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
},
|
|
1466
|
-
children: /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1246
|
+
height: props.width,
|
|
1247
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1467
1248
|
d: "M107.7,8.07A105.15,105.15,0,0,0,81.47,0a72.06,72.06,0,0,0-3.36,6.83A97.68,97.68,0,0,0,49,6.83,72.37,72.37,0,0,0,45.64,0,105.89,105.89,0,0,0,19.39,8.09C2.79,32.65-1.71,56.6.54,80.21h0A105.73,105.73,0,0,0,32.71,96.36,77.7,77.7,0,0,0,39.6,85.25a68.42,68.42,0,0,1-10.85-5.18c.91-.66,1.8-1.34,2.66-2a75.57,75.57,0,0,0,64.32,0c.87.71,1.76,1.39,2.66,2a68.68,68.68,0,0,1-10.87,5.19,77,77,0,0,0,6.89,11.1A105.25,105.25,0,0,0,126.6,80.22h0C129.24,52.84,122.09,29.11,107.7,8.07ZM42.45,65.69C36.18,65.69,31,60,31,53s5-12.74,11.43-12.74S54,46,53.89,53,48.84,65.69,42.45,65.69Zm42.24,0C78.41,65.69,73.25,60,73.25,53s5-12.74,11.44-12.74S96.23,46,96.12,53,91.08,65.69,84.69,65.69Z"
|
|
1468
|
-
}
|
|
1469
|
-
}
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
height: qwik._fnSignal((p0) => p0.width, [
|
|
1474
|
-
props
|
|
1475
|
-
], "p0.width")
|
|
1476
|
-
}, 0, "uo_0");
|
|
1477
|
-
}, "LogoDiscord_component_jDPP8Q3cU0M"));
|
|
1478
|
-
const LogoFabric = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1479
|
-
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1249
|
+
})
|
|
1250
|
+
});
|
|
1251
|
+
});
|
|
1252
|
+
const LogoFabric = qwik.component$((props) => {
|
|
1253
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
|
|
1480
1254
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1481
1255
|
"xml:space": "preserve",
|
|
1482
1256
|
"fill-rule": "evenodd",
|
|
@@ -1485,37 +1259,24 @@ const LogoFabric = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inline
|
|
|
1485
1259
|
"clip-rule": "evenodd",
|
|
1486
1260
|
viewBox: "0 0 24 24",
|
|
1487
1261
|
...props,
|
|
1488
|
-
|
|
1489
|
-
return props.width;
|
|
1490
|
-
},
|
|
1262
|
+
height: props.width,
|
|
1491
1263
|
children: [
|
|
1492
|
-
/* @__PURE__ */
|
|
1264
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1493
1265
|
fill: "none",
|
|
1494
1266
|
d: "M0 0h24v24H0z"
|
|
1495
|
-
}
|
|
1496
|
-
/* @__PURE__ */
|
|
1267
|
+
}),
|
|
1268
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1497
1269
|
fill: "none",
|
|
1498
1270
|
stroke: "currentColor",
|
|
1499
1271
|
"stroke-width": "23",
|
|
1500
1272
|
d: "m820 761-85.6-87.6c-4.6-4.7-10.4-9.6-25.9 1-19.9 13.6-8.4 21.9-5.2 25.4 8.2 9 84.1 89 97.2 104 2.5 2.8-20.3-22.5-6.5-39.7 5.4-7 18-12 26-3 6.5 7.3 10.7 18-3.4 29.7-24.7 20.4-102 82.4-127 103-12.5 10.3-28.5 2.3-35.8-6-7.5-8.9-30.6-34.6-51.3-58.2-5.5-6.3-4.1-19.6 2.3-25 35-30.3 91.9-73.8 111.9-90.8",
|
|
1501
1273
|
transform: "matrix(.08671 0 0 .0867 -49.8 -56)"
|
|
1502
|
-
}
|
|
1274
|
+
})
|
|
1503
1275
|
]
|
|
1504
|
-
}
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
"stroke-linecap": qwik._IMMUTABLE,
|
|
1509
|
-
"stroke-linejoin": qwik._IMMUTABLE,
|
|
1510
|
-
"clip-rule": qwik._IMMUTABLE,
|
|
1511
|
-
viewBox: qwik._IMMUTABLE,
|
|
1512
|
-
height: qwik._fnSignal((p0) => p0.width, [
|
|
1513
|
-
props
|
|
1514
|
-
], "p0.width")
|
|
1515
|
-
}, 0, "hI_0");
|
|
1516
|
-
}, "LogoFabric_component_iP0a9wJyPAg"));
|
|
1517
|
-
const LogoForge = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1518
|
-
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1276
|
+
});
|
|
1277
|
+
});
|
|
1278
|
+
const LogoForge = qwik.component$((props) => {
|
|
1279
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
|
|
1519
1280
|
"xml:space": "preserve",
|
|
1520
1281
|
"fill-rule": "evenodd",
|
|
1521
1282
|
"stroke-linecap": "round",
|
|
@@ -1524,36 +1285,23 @@ const LogoForge = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlined
|
|
|
1524
1285
|
"clip-rule": "evenodd",
|
|
1525
1286
|
viewBox: "0 0 24 24",
|
|
1526
1287
|
...props,
|
|
1527
|
-
|
|
1528
|
-
return props.width;
|
|
1529
|
-
},
|
|
1288
|
+
height: props.width,
|
|
1530
1289
|
children: [
|
|
1531
|
-
/* @__PURE__ */
|
|
1290
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1532
1291
|
fill: "none",
|
|
1533
1292
|
d: "M0 0h24v24H0z"
|
|
1534
|
-
}
|
|
1535
|
-
/* @__PURE__ */
|
|
1293
|
+
}),
|
|
1294
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1536
1295
|
fill: "none",
|
|
1537
1296
|
stroke: "currentColor",
|
|
1538
1297
|
"stroke-width": "2",
|
|
1539
1298
|
d: "M2 7.5h8v-2h12v2s-7 3.4-7 6 3.1 3.1 3.1 3.1l.9 3.9H5l1-4.1s3.8.1 4-2.9c.2-2.7-6.5-.7-8-6Z"
|
|
1540
|
-
}
|
|
1299
|
+
})
|
|
1541
1300
|
]
|
|
1542
|
-
}
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
"stroke-linejoin": qwik._IMMUTABLE,
|
|
1547
|
-
"stroke-miterlimit": qwik._IMMUTABLE,
|
|
1548
|
-
"clip-rule": qwik._IMMUTABLE,
|
|
1549
|
-
viewBox: qwik._IMMUTABLE,
|
|
1550
|
-
height: qwik._fnSignal((p0) => p0.width, [
|
|
1551
|
-
props
|
|
1552
|
-
], "p0.width")
|
|
1553
|
-
}, 0, "zC_0");
|
|
1554
|
-
}, "LogoForge_component_W5Al1sALh8A"));
|
|
1555
|
-
const LogoLuminescent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1556
|
-
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1301
|
+
});
|
|
1302
|
+
});
|
|
1303
|
+
const LogoLuminescent = qwik.component$((props) => {
|
|
1304
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", {
|
|
1557
1305
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1558
1306
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
1559
1307
|
zoomAndPan: "magnify",
|
|
@@ -1562,31 +1310,20 @@ const LogoLuminescent = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.i
|
|
|
1562
1310
|
version: "1.0",
|
|
1563
1311
|
fill: "currentColor",
|
|
1564
1312
|
...props,
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
}
|
|
1575
|
-
}
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
viewBox: qwik._IMMUTABLE,
|
|
1580
|
-
preserveAspectRatio: qwik._IMMUTABLE,
|
|
1581
|
-
version: qwik._IMMUTABLE,
|
|
1582
|
-
fill: qwik._IMMUTABLE,
|
|
1583
|
-
height: qwik._fnSignal((p0) => p0.width, [
|
|
1584
|
-
props
|
|
1585
|
-
], "p0.width")
|
|
1586
|
-
}, 0, "we_0");
|
|
1587
|
-
}, "LogoLuminescent_component_XLiMRdgGu0c"));
|
|
1588
|
-
const LogoLuminescentFull = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1589
|
-
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1313
|
+
height: props.width,
|
|
1314
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1315
|
+
"fill-opacity": "1",
|
|
1316
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1317
|
+
transform: "translate(86.97656, 254.624983)",
|
|
1318
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1319
|
+
d: "M 119.476562 -167.570312 C 90.671875 -133.253906 37.820312 -144.527344 30.308594 -109.710938 C 26.550781 -92.175781 39.074219 -75.644531 62.367188 -76.394531 C 67.878906 -77.398438 69.882812 -87.917969 66.628906 -90.671875 C 56.859375 -92.675781 55.855469 -99.691406 57.609375 -107.453125 C 62.117188 -125.988281 93.929688 -123.734375 113.96875 -147.28125 C 103.949219 -115.21875 96.933594 -78.902344 83.910156 -43.582031 C 59.363281 -58.863281 23.796875 -50.847656 21.542969 -27.050781 C 19.285156 -8.765625 32.8125 3.257812 55.355469 2.253906 C 72.386719 1.753906 80.902344 -4.007812 89.921875 -12.023438 C 112.464844 15.277344 138.261719 52.097656 181.347656 37.570312 C 188.609375 30.558594 183.347656 14.777344 177.085938 15.277344 C 147.28125 25.546875 132 1.253906 104.699219 -28.054688 C 119.476562 -56.105469 134.003906 -124.738281 148.53125 -167.320312 C 147.53125 -173.582031 124.488281 -177.339844 119.476562 -167.570312 Z M 46.339844 -28.804688 C 50.347656 -38.324219 68.128906 -36.570312 77.148438 -27.550781 C 72.890625 -20.789062 66.628906 -15.027344 57.359375 -15.027344 C 46.085938 -15.027344 43.332031 -22.792969 46.339844 -28.804688 Z M 46.339844 -28.804688 "
|
|
1320
|
+
})
|
|
1321
|
+
})
|
|
1322
|
+
})
|
|
1323
|
+
});
|
|
1324
|
+
});
|
|
1325
|
+
const LogoLuminescentFull = qwik.component$((props) => {
|
|
1326
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
|
|
1590
1327
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1591
1328
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
1592
1329
|
zoomAndPan: "magnify",
|
|
@@ -1596,96 +1333,110 @@ const LogoLuminescentFull = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qw
|
|
|
1596
1333
|
fill: "currentColor",
|
|
1597
1334
|
...props,
|
|
1598
1335
|
children: [
|
|
1599
|
-
/* @__PURE__ */
|
|
1600
|
-
"fill-opacity": "1"
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
},
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
},
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
}
|
|
1662
|
-
/* @__PURE__ */
|
|
1663
|
-
"fill-opacity": "1"
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1336
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1337
|
+
"fill-opacity": "1",
|
|
1338
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1339
|
+
transform: "translate(12.743357, 223.612604)",
|
|
1340
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1341
|
+
d: "M 110.792969 -155.390625 C 84.082031 -123.570312 35.074219 -134.023438 28.105469 -101.734375 C 24.621094 -85.476562 36.234375 -70.148438 57.835938 -70.84375 C 62.945312 -71.773438 64.804688 -81.527344 61.785156 -84.082031 C 52.726562 -85.941406 51.796875 -92.445312 53.421875 -99.644531 C 57.605469 -116.832031 87.101562 -114.742188 105.683594 -136.578125 C 96.394531 -106.84375 89.890625 -73.167969 77.8125 -40.414062 C 55.046875 -54.585938 22.066406 -47.152344 19.976562 -25.085938 C 17.886719 -8.128906 30.429688 3.019531 51.332031 2.089844 C 67.128906 1.625 75.023438 -3.714844 83.386719 -11.148438 C 104.289062 14.167969 128.214844 48.3125 168.164062 34.839844 C 174.902344 28.335938 170.023438 13.703125 164.21875 14.167969 C 136.578125 23.691406 122.40625 1.160156 97.089844 -26.015625 C 110.792969 -52.027344 124.265625 -115.671875 137.738281 -155.160156 C 136.808594 -160.964844 115.441406 -164.449219 110.792969 -155.390625 Z M 42.96875 -26.710938 C 46.6875 -35.539062 63.179688 -33.910156 71.539062 -25.550781 C 67.589844 -19.277344 61.785156 -13.9375 53.191406 -13.9375 C 42.738281 -13.9375 40.183594 -21.136719 42.96875 -26.710938 Z M 42.96875 -26.710938 "
|
|
1342
|
+
})
|
|
1343
|
+
})
|
|
1344
|
+
}),
|
|
1345
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1346
|
+
"fill-opacity": "1",
|
|
1347
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1348
|
+
transform: "translate(151.868279, 223.612604)",
|
|
1349
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1350
|
+
d: "M 72.003906 -95.464844 C 67.589844 -79.902344 62.945312 -62.945312 58.066406 -48.3125 C 51.101562 -28.570312 36.46875 -14.867188 27.410156 -14.867188 C 18.8125 -14.867188 21.136719 -26.945312 24.390625 -40.183594 C 28.570312 -58.765625 34.609375 -79.4375 37.859375 -92.445312 C 37.859375 -98.714844 16.492188 -100.804688 13.703125 -95 C 8.363281 -74.328125 0.230469 -51.566406 -3.949219 -28.335938 C -6.96875 -12.078125 -2.324219 1.859375 16.027344 2.089844 C 31.589844 2.554688 46.222656 -5.109375 59.695312 -27.410156 C 56.210938 -13.472656 61.085938 1.160156 73.863281 1.160156 C 98.019531 1.394531 115.207031 -30.890625 123.105469 -46.6875 C 124.5 -49.472656 116.367188 -54.351562 114.976562 -51.332031 C 106.613281 -31.820312 92.675781 -14.632812 83.851562 -14.867188 C 72.003906 -14.867188 90.121094 -70.609375 96.160156 -92.210938 C 94.535156 -98.949219 74.792969 -100.574219 72.003906 -95.464844 Z M 72.003906 -95.464844 "
|
|
1351
|
+
})
|
|
1352
|
+
})
|
|
1353
|
+
}),
|
|
1354
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1355
|
+
"fill-opacity": "1",
|
|
1356
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1357
|
+
transform: "translate(265.444396, 223.612604)",
|
|
1358
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1359
|
+
d: "M 123.570312 2.089844 C 146.101562 1.394531 163.054688 -26.246094 172.578125 -46.6875 C 173.972656 -49.472656 165.609375 -54.121094 164.449219 -51.332031 C 156.085938 -31.589844 141.6875 -14.167969 132.859375 -14.167969 C 120.78125 -13.9375 136.34375 -51.796875 140.292969 -68.519531 C 144.707031 -87.566406 139.828125 -98.949219 122.175781 -98.949219 C 107.078125 -99.179688 94.304688 -87.101562 85.476562 -75.722656 C 88.03125 -89.65625 81.527344 -98.949219 69.21875 -98.949219 C 55.28125 -99.179688 40.648438 -85.476562 32.519531 -74.09375 L 37.628906 -92.445312 C 36.46875 -99.179688 17.1875 -101.039062 13.472656 -95.929688 C 4.414062 -61.785156 -2.789062 -36.003906 -10.917969 -5.109375 C -11.847656 3.019531 12.773438 2.789062 14.867188 -2.554688 C 19.046875 -20.671875 22.761719 -36.46875 28.105469 -54.351562 C 36.003906 -68.054688 47.382812 -79.902344 54.585938 -79.902344 C 61.320312 -80.132812 60.855469 -72.46875 59.230469 -66.429688 C 53.191406 -42.042969 48.546875 -23.226562 43.898438 -3.714844 C 44.828125 3.019531 66.894531 2.324219 69.449219 -2.789062 C 72.933594 -16.027344 77.8125 -38.558594 81.992188 -53.65625 C 87.101562 -66.199219 100.804688 -80.132812 108.9375 -80.367188 C 116.367188 -80.367188 114.976562 -72.238281 113.347656 -65.5 C 110.328125 -53.191406 104.753906 -32.984375 103.128906 -23.691406 C 100.109375 -7.898438 105.453125 2.789062 123.570312 2.089844 Z M 123.570312 2.089844 "
|
|
1360
|
+
})
|
|
1361
|
+
})
|
|
1362
|
+
}),
|
|
1363
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1364
|
+
"fill-opacity": "1",
|
|
1365
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1366
|
+
transform: "translate(428.260051, 223.612604)",
|
|
1367
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1368
|
+
d: "M 32.285156 -112.421875 C 41.578125 -112.421875 48.082031 -118.226562 49.007812 -126.589844 C 50.171875 -134.71875 45.0625 -140.523438 36.699219 -140.523438 C 28.105469 -140.757812 21.601562 -134.949219 20.207031 -126.589844 C 19.046875 -118.460938 24.621094 -112.421875 32.285156 -112.421875 Z M 14.632812 2.089844 C 38.789062 1.625 56.210938 -25.550781 65.964844 -46.453125 C 67.359375 -49.472656 59.230469 -54.351562 57.835938 -51.332031 C 49.9375 -32.285156 34.609375 -14.167969 23.925781 -14.167969 C 19.046875 -13.9375 19.277344 -20.207031 21.136719 -29.5 C 24.621094 -45.292969 29.5 -60.390625 38.558594 -92.675781 C 36.929688 -98.25 17.886719 -101.039062 14.167969 -95.695312 C 6.039062 -67.589844 0.464844 -48.777344 -4.644531 -26.945312 C -8.828125 -9.058594 -4.644531 2.554688 14.632812 2.089844 Z M 14.632812 2.089844 "
|
|
1369
|
+
})
|
|
1370
|
+
})
|
|
1371
|
+
}),
|
|
1372
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1373
|
+
"fill-opacity": "1",
|
|
1374
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1375
|
+
transform: "translate(484.467457, 223.612604)",
|
|
1376
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1377
|
+
d: "M 72.238281 -98.949219 C 56.90625 -99.179688 41.113281 -84.082031 32.75 -74.328125 C 34.839844 -81.0625 35.769531 -85.011719 37.859375 -92.445312 C 35.539062 -99.644531 17.421875 -100.804688 13.703125 -95.695312 C 4.414062 -61.785156 -3.484375 -35.304688 -10.917969 -4.414062 C -10.453125 3.25 12.542969 2.554688 15.097656 -2.554688 C 19.976562 -23.460938 22.53125 -35.304688 29.035156 -57.140625 C 37.628906 -68.753906 49.9375 -79.667969 58.066406 -79.902344 C 65.964844 -80.132812 64.804688 -72.46875 63.179688 -65.5 C 61.085938 -55.976562 54.585938 -30.660156 53.191406 -22.761719 C 50.402344 -7.664062 55.746094 2.554688 73.398438 2.089844 C 95.929688 1.859375 113.347656 -26.480469 122.640625 -46.6875 C 123.800781 -49.472656 115.671875 -54.121094 114.511719 -51.332031 C 105.917969 -31.355469 92.210938 -14.167969 82.6875 -14.167969 C 76.882812 -14.167969 78.042969 -22.996094 79.902344 -31.589844 C 82.457031 -42.738281 87.335938 -55.746094 89.890625 -66.429688 C 94.304688 -85.246094 89.890625 -98.714844 72.238281 -98.949219 Z M 72.238281 -98.949219 "
|
|
1378
|
+
})
|
|
1379
|
+
})
|
|
1380
|
+
}),
|
|
1381
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1382
|
+
"fill-opacity": "1",
|
|
1383
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1384
|
+
transform: "translate(597.346777, 223.612604)",
|
|
1385
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1386
|
+
d: "M 58.996094 -98.484375 C 31.820312 -99.414062 7.433594 -80.367188 1.160156 -49.9375 C -4.644531 -23.925781 7.898438 1.160156 43.203125 2.324219 C 65.269531 3.019531 93.140625 -4.644531 111.957031 -46.6875 C 113.117188 -49.472656 104.988281 -54.121094 103.59375 -51.332031 C 90.121094 -20.671875 65.5 -12.542969 49.707031 -14.167969 C 33.449219 -15.792969 24.851562 -25.316406 26.246094 -40.183594 C 53.191406 -33.910156 75.257812 -42.042969 83.851562 -59.460938 C 92.675781 -76.417969 85.011719 -97.554688 58.996094 -98.484375 Z M 55.976562 -81.992188 C 64.804688 -81.761719 65.035156 -73.398438 61.320312 -65.734375 C 56.675781 -55.511719 45.0625 -49.472656 27.871094 -52.027344 C 32.054688 -68.753906 45.0625 -82.6875 55.976562 -81.992188 Z M 55.976562 -81.992188 "
|
|
1387
|
+
})
|
|
1388
|
+
})
|
|
1389
|
+
}),
|
|
1390
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1391
|
+
"fill-opacity": "1",
|
|
1392
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1393
|
+
transform: "translate(699.542059, 223.612604)",
|
|
1394
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1395
|
+
d: "M 35.074219 2.554688 C 49.007812 2.789062 62.015625 -2.789062 68.753906 -12.542969 C 84.316406 -12.078125 100.574219 -19.277344 113.117188 -46.6875 C 114.277344 -49.242188 106.148438 -54.121094 104.988281 -51.566406 C 95.929688 -30.429688 84.082031 -23.460938 73.628906 -22.996094 C 79.207031 -46.453125 65.734375 -63.179688 61.550781 -92.675781 C 73.398438 -108.238281 51.566406 -116.367188 35.304688 -101.039062 C 20.441406 -87.566406 7.433594 -65.035156 -2.324219 -43.433594 C -3.949219 -40.183594 4.414062 -36.003906 5.808594 -39.023438 C 15.097656 -58.300781 26.710938 -78.972656 38.558594 -90.820312 C 40.183594 -71.539062 50.402344 -52.261719 50.171875 -35.769531 C 43.433594 -35.769531 40.183594 -25.316406 46.222656 -19.742188 C 44.132812 -16.722656 39.71875 -14.167969 35.304688 -14.167969 C 27.640625 -14.167969 22.066406 -20.671875 23.691406 -30.660156 C 20.671875 -33.449219 10.683594 -31.820312 8.828125 -25.550781 C 7.664062 -7.199219 21.367188 2.554688 35.074219 2.554688 Z M 35.074219 2.554688 "
|
|
1396
|
+
})
|
|
1397
|
+
})
|
|
1398
|
+
}),
|
|
1399
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1400
|
+
"fill-opacity": "1",
|
|
1401
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1402
|
+
transform: "translate(802.898632, 223.612604)",
|
|
1403
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1404
|
+
d: "M 57.835938 -98.714844 C 25.085938 -99.179688 0.929688 -70.378906 -0.695312 -41.578125 C -1.859375 -19.046875 13.472656 0.929688 37.628906 1.859375 C 62.015625 3.019531 88.496094 -5.574219 107.078125 -46.6875 C 108.238281 -49.242188 100.109375 -54.121094 98.949219 -51.332031 C 87.335938 -24.851562 68.054688 -13.703125 49.242188 -14.402344 C 33.910156 -14.867188 24.621094 -25.316406 26.015625 -41.578125 C 28.105469 -64.339844 43.203125 -83.617188 56.210938 -82.226562 C 65.734375 -81.296875 60.855469 -68.753906 55.511719 -62.015625 C 55.511719 -56.90625 72.933594 -55.511719 77.8125 -61.085938 C 90.585938 -74.558594 88.496094 -98.25 57.835938 -98.714844 Z M 57.835938 -98.714844 "
|
|
1405
|
+
})
|
|
1406
|
+
})
|
|
1407
|
+
}),
|
|
1408
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1409
|
+
"fill-opacity": "1",
|
|
1410
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1411
|
+
transform: "translate(900.21642, 223.612604)",
|
|
1412
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1413
|
+
d: "M 58.996094 -98.484375 C 31.820312 -99.414062 7.433594 -80.367188 1.160156 -49.9375 C -4.644531 -23.925781 7.898438 1.160156 43.203125 2.324219 C 65.269531 3.019531 93.140625 -4.644531 111.957031 -46.6875 C 113.117188 -49.472656 104.988281 -54.121094 103.59375 -51.332031 C 90.121094 -20.671875 65.5 -12.542969 49.707031 -14.167969 C 33.449219 -15.792969 24.851562 -25.316406 26.246094 -40.183594 C 53.191406 -33.910156 75.257812 -42.042969 83.851562 -59.460938 C 92.675781 -76.417969 85.011719 -97.554688 58.996094 -98.484375 Z M 55.976562 -81.992188 C 64.804688 -81.761719 65.035156 -73.398438 61.320312 -65.734375 C 56.675781 -55.511719 45.0625 -49.472656 27.871094 -52.027344 C 32.054688 -68.753906 45.0625 -82.6875 55.976562 -81.992188 Z M 55.976562 -81.992188 "
|
|
1414
|
+
})
|
|
1415
|
+
})
|
|
1416
|
+
}),
|
|
1417
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1418
|
+
"fill-opacity": "1",
|
|
1419
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1420
|
+
transform: "translate(1002.411702, 223.612604)",
|
|
1421
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1422
|
+
d: "M 72.238281 -98.949219 C 56.90625 -99.179688 41.113281 -84.082031 32.75 -74.328125 C 34.839844 -81.0625 35.769531 -85.011719 37.859375 -92.445312 C 35.539062 -99.644531 17.421875 -100.804688 13.703125 -95.695312 C 4.414062 -61.785156 -3.484375 -35.304688 -10.917969 -4.414062 C -10.453125 3.25 12.542969 2.554688 15.097656 -2.554688 C 19.976562 -23.460938 22.53125 -35.304688 29.035156 -57.140625 C 37.628906 -68.753906 49.9375 -79.667969 58.066406 -79.902344 C 65.964844 -80.132812 64.804688 -72.46875 63.179688 -65.5 C 61.085938 -55.976562 54.585938 -30.660156 53.191406 -22.761719 C 50.402344 -7.664062 55.746094 2.554688 73.398438 2.089844 C 95.929688 1.859375 113.347656 -26.480469 122.640625 -46.6875 C 123.800781 -49.472656 115.671875 -54.121094 114.511719 -51.332031 C 105.917969 -31.355469 92.210938 -14.167969 82.6875 -14.167969 C 76.882812 -14.167969 78.042969 -22.996094 79.902344 -31.589844 C 82.457031 -42.738281 87.335938 -55.746094 89.890625 -66.429688 C 94.304688 -85.246094 89.890625 -98.714844 72.238281 -98.949219 Z M 72.238281 -98.949219 "
|
|
1423
|
+
})
|
|
1424
|
+
})
|
|
1425
|
+
}),
|
|
1426
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1427
|
+
"fill-opacity": "1",
|
|
1428
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", {
|
|
1429
|
+
transform: "translate(1115.290992, 223.612604)",
|
|
1430
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1431
|
+
d: "M 28.570312 2.089844 C 51.796875 1.859375 68.753906 -17.421875 81.296875 -46.453125 C 82.457031 -49.472656 74.558594 -54.121094 73.167969 -51.332031 C 63.410156 -29.265625 46.917969 -13.9375 33.449219 -14.167969 C 22.066406 -14.402344 22.066406 -30.195312 26.945312 -51.566406 C 29.035156 -61.320312 32.519531 -73.628906 36.003906 -85.707031 L 57.835938 -85.707031 C 61.320312 -86.871094 64.105469 -97.785156 59.695312 -101.039062 L 40.183594 -101.039062 C 45.527344 -118.691406 50.867188 -135.183594 55.976562 -149.351562 C 55.746094 -156.085938 34.609375 -158.644531 31.355469 -153.996094 C 26.710938 -142.152344 19.511719 -120.550781 13.472656 -101.039062 L 4.179688 -101.039062 C 0.464844 -99.644531 -2.324219 -88.265625 2.324219 -85.707031 L 9.289062 -85.707031 C -1.394531 -45.0625 -12.078125 2.554688 28.570312 2.089844 Z M 28.570312 2.089844 "
|
|
1432
|
+
})
|
|
1433
|
+
})
|
|
1434
|
+
})
|
|
1676
1435
|
]
|
|
1677
|
-
}
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
viewBox: qwik._IMMUTABLE,
|
|
1682
|
-
preserveAspectRatio: qwik._IMMUTABLE,
|
|
1683
|
-
version: qwik._IMMUTABLE,
|
|
1684
|
-
fill: qwik._IMMUTABLE
|
|
1685
|
-
}, 0, "we_1");
|
|
1686
|
-
}, "LogoLuminescentFull_component_EYrFTxSEodU"));
|
|
1687
|
-
const LogoPaper = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1688
|
-
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1436
|
+
});
|
|
1437
|
+
});
|
|
1438
|
+
const LogoPaper = qwik.component$((props) => {
|
|
1439
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
|
|
1689
1440
|
"xml:space": "preserve",
|
|
1690
1441
|
"fill-rule": "evenodd",
|
|
1691
1442
|
"stroke-linecap": "round",
|
|
@@ -1694,83 +1445,61 @@ const LogoPaper = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlined
|
|
|
1694
1445
|
"clip-rule": "evenodd",
|
|
1695
1446
|
viewBox: "0 0 24 24",
|
|
1696
1447
|
...props,
|
|
1697
|
-
|
|
1698
|
-
return props.width;
|
|
1699
|
-
},
|
|
1448
|
+
height: props.width,
|
|
1700
1449
|
children: [
|
|
1701
|
-
/* @__PURE__ */
|
|
1450
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1702
1451
|
fill: "none",
|
|
1703
1452
|
d: "M0 0h24v24H0z"
|
|
1704
|
-
}
|
|
1705
|
-
/* @__PURE__ */
|
|
1453
|
+
}),
|
|
1454
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1706
1455
|
fill: "none",
|
|
1707
1456
|
stroke: "currentColor",
|
|
1708
1457
|
"stroke-width": "2",
|
|
1709
1458
|
d: "m12 18 6 2 3-17L2 14l6 2"
|
|
1710
|
-
}
|
|
1711
|
-
/* @__PURE__ */
|
|
1459
|
+
}),
|
|
1460
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1712
1461
|
stroke: "currentColor",
|
|
1713
1462
|
"stroke-width": "2",
|
|
1714
1463
|
d: "m9 21-1-5 4 2-3 3Z"
|
|
1715
|
-
}
|
|
1716
|
-
/* @__PURE__ */
|
|
1464
|
+
}),
|
|
1465
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1717
1466
|
fill: "currentColor",
|
|
1718
1467
|
d: "m12 18-4-2 10-9-6 11Z"
|
|
1719
|
-
}
|
|
1468
|
+
})
|
|
1720
1469
|
]
|
|
1721
|
-
}
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
"stroke-linejoin": qwik._IMMUTABLE,
|
|
1726
|
-
"stroke-miterlimit": qwik._IMMUTABLE,
|
|
1727
|
-
"clip-rule": qwik._IMMUTABLE,
|
|
1728
|
-
viewBox: qwik._IMMUTABLE,
|
|
1729
|
-
height: qwik._fnSignal((p0) => p0.width, [
|
|
1730
|
-
props
|
|
1731
|
-
], "p0.width")
|
|
1732
|
-
}, 0, "gL_0");
|
|
1733
|
-
}, "LogoPaper_component_aG0HRBVBRDI"));
|
|
1734
|
-
const LogoPterodactyl = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1735
|
-
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1470
|
+
});
|
|
1471
|
+
});
|
|
1472
|
+
const LogoPterodactyl = qwik.component$((props) => {
|
|
1473
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", {
|
|
1736
1474
|
version: "1.0",
|
|
1737
1475
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1738
1476
|
viewBox: "0 0 180 180",
|
|
1739
1477
|
preserveAspectRatio: "xMidYMid meet",
|
|
1740
1478
|
...props,
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
},
|
|
1744
|
-
children: /* @__PURE__ */ qwik._jsxQ("g", null, {
|
|
1479
|
+
height: props.width,
|
|
1480
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("g", {
|
|
1745
1481
|
transform: "translate(0,180) scale(0.100000,-0.100000)",
|
|
1746
1482
|
fill: "currentColor",
|
|
1747
|
-
stroke: "none"
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
height: qwik._fnSignal((p0) => p0.width, [
|
|
1768
|
-
props
|
|
1769
|
-
], "p0.width")
|
|
1770
|
-
}, 0, "D4_0");
|
|
1771
|
-
}, "LogoPterodactyl_component_10hbViSPESg"));
|
|
1772
|
-
const LogoPurpur = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1773
|
-
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1483
|
+
stroke: "none",
|
|
1484
|
+
children: [
|
|
1485
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1486
|
+
d: "M965 1489 c-86 -13 -231 -63 -305 -107 -70 -41 -175 -138 -204 -190 l-18 -34 53 32 c127 75 410 193 425 177 3 -3 -3 -18 -13 -34 l-18 -28 40 33 c39 32 136 99 205 140 l35 22 -70 -1 c-38 -1 -97 -5 -130 -10z"
|
|
1487
|
+
}),
|
|
1488
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1489
|
+
d: "M1149 1320 c-147 -23 -282 -103 -431 -254 -103 -104 -143 -125 -65 -34 48 56 188 261 182 266 -6 7 -191 -71 -265 -111 -245 -132 -410 -289 -502 -474 -27 -56 -48 -107 -46 -112 1 -5 41 20 88 56 120 93 200 146 200 133 0 -6 -46 -59 -103 -117 -56 -59 -95 -104 -87 -101 8 3 89 36 180 73 150 61 165 66 175 50 64 -109 121 -158 225 -194 103 -36 259 -47 366 -26 13 3 42 -11 80 -39 32 -24 78 -49 101 -55 27 -7 44 -19 48 -31 8 -27 41 -43 71 -36 28 7 32 26 5 26 -24 0 -44 24 -39 47 2 10 18 25 35 34 18 9 30 19 26 23 -13 13 -58 5 -79 -15 -15 -14 -29 -18 -48 -13 -29 7 -79 60 -73 78 2 6 29 20 60 31 31 11 57 23 57 27 0 13 -181 96 -248 114 l-64 18 6 40 c11 71 63 162 132 231 101 101 239 159 582 246 28 7 52 15 52 19 0 7 -209 64 -310 84 -99 19 -241 27 -311 16z m-819 -401 c-13 -22 -37 -35 -48 -24 -7 7 34 45 49 45 6 0 5 -9 -1 -21z"
|
|
1490
|
+
}),
|
|
1491
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1492
|
+
d: "M1224 496 c-14 -11 -16 -17 -7 -26 9 -10 17 -8 37 6 14 11 26 22 26 27 0 12 -35 8 -56 -7z"
|
|
1493
|
+
}),
|
|
1494
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1495
|
+
d: "M1012 441 c-19 -11 64 -51 106 -51 39 0 40 4 5 35 -29 25 -85 33 -111 16z"
|
|
1496
|
+
})
|
|
1497
|
+
]
|
|
1498
|
+
})
|
|
1499
|
+
});
|
|
1500
|
+
});
|
|
1501
|
+
const LogoPurpur = qwik.component$((props) => {
|
|
1502
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
|
|
1774
1503
|
"xml:space": "preserve",
|
|
1775
1504
|
"fill-rule": "evenodd",
|
|
1776
1505
|
"stroke-linecap": "round",
|
|
@@ -1779,108 +1508,89 @@ const LogoPurpur = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inline
|
|
|
1779
1508
|
"clip-rule": "evenodd",
|
|
1780
1509
|
viewBox: "0 0 24 24",
|
|
1781
1510
|
...props,
|
|
1782
|
-
|
|
1783
|
-
return props.width;
|
|
1784
|
-
},
|
|
1511
|
+
height: props.width,
|
|
1785
1512
|
children: [
|
|
1786
|
-
/* @__PURE__ */
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1513
|
+
/* @__PURE__ */ jsxRuntime.jsx("defs", {
|
|
1514
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1515
|
+
id: "purpur",
|
|
1516
|
+
fill: "none",
|
|
1517
|
+
stroke: "currentColor",
|
|
1518
|
+
"stroke-width": "1.68",
|
|
1519
|
+
d: "m264 41.95 8-4v8l-8 4v-8Z"
|
|
1520
|
+
})
|
|
1521
|
+
}),
|
|
1522
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1794
1523
|
fill: "none",
|
|
1795
1524
|
d: "M0 0h24v24H0z"
|
|
1796
|
-
}
|
|
1797
|
-
/* @__PURE__ */
|
|
1525
|
+
}),
|
|
1526
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1798
1527
|
fill: "none",
|
|
1799
1528
|
stroke: "currentColor",
|
|
1800
1529
|
"stroke-width": "1.77",
|
|
1801
1530
|
d: "m264 29.95-8 4 8 4.42 8-4.42-8-4Z",
|
|
1802
1531
|
transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
|
|
1803
|
-
}
|
|
1804
|
-
/* @__PURE__ */
|
|
1532
|
+
}),
|
|
1533
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1805
1534
|
fill: "none",
|
|
1806
1535
|
stroke: "currentColor",
|
|
1807
1536
|
"stroke-width": "1.77",
|
|
1808
1537
|
d: "m272 38.37-8 4.42-8-4.42",
|
|
1809
1538
|
transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
|
|
1810
|
-
}
|
|
1811
|
-
/* @__PURE__ */
|
|
1539
|
+
}),
|
|
1540
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1812
1541
|
fill: "none",
|
|
1813
1542
|
stroke: "currentColor",
|
|
1814
1543
|
"stroke-width": "1.77",
|
|
1815
1544
|
d: "m260 31.95 8 4.21V45",
|
|
1816
1545
|
transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
|
|
1817
|
-
}
|
|
1818
|
-
/* @__PURE__ */
|
|
1546
|
+
}),
|
|
1547
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1819
1548
|
fill: "none",
|
|
1820
1549
|
stroke: "currentColor",
|
|
1821
1550
|
"stroke-width": "1.77",
|
|
1822
1551
|
d: "M260 45v-8.84l8-4.21",
|
|
1823
1552
|
transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
|
|
1824
|
-
}
|
|
1825
|
-
/* @__PURE__ */
|
|
1553
|
+
}),
|
|
1554
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1826
1555
|
fill: "none",
|
|
1827
1556
|
stroke: "currentColor",
|
|
1828
1557
|
"stroke-width": "1.68",
|
|
1829
1558
|
d: "m264 41.95 8-4v8l-8 4v-8Z",
|
|
1830
1559
|
transform: "matrix(1.125 0 0 1.2569 -285 -40.78)"
|
|
1831
|
-
}
|
|
1832
|
-
/* @__PURE__ */
|
|
1560
|
+
}),
|
|
1561
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1833
1562
|
fill: "none",
|
|
1834
1563
|
stroke: "currentColor",
|
|
1835
1564
|
"stroke-width": "1.68",
|
|
1836
1565
|
d: "m264 41.95 8-4v8l-8 4v-8Z",
|
|
1837
1566
|
transform: "matrix(-1.125 0 0 1.2569 309 -40.78)"
|
|
1838
|
-
}
|
|
1567
|
+
})
|
|
1839
1568
|
]
|
|
1840
|
-
}
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
"stroke-linejoin": qwik._IMMUTABLE,
|
|
1845
|
-
"stroke-miterlimit": qwik._IMMUTABLE,
|
|
1846
|
-
"clip-rule": qwik._IMMUTABLE,
|
|
1847
|
-
viewBox: qwik._IMMUTABLE,
|
|
1848
|
-
height: qwik._fnSignal((p0) => p0.width, [
|
|
1849
|
-
props
|
|
1850
|
-
], "p0.width")
|
|
1851
|
-
}, 0, "tL_0");
|
|
1852
|
-
}, "LogoPurpur_component_c9OHr4CkPBo"));
|
|
1853
|
-
const LogoVelocity = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1854
|
-
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1569
|
+
});
|
|
1570
|
+
});
|
|
1571
|
+
const LogoVelocity = qwik.component$((props) => {
|
|
1572
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("svg", {
|
|
1855
1573
|
viewBox: "0 0 500 500",
|
|
1856
1574
|
fill: "currentColor",
|
|
1857
1575
|
...props,
|
|
1858
|
-
|
|
1859
|
-
return props.width;
|
|
1860
|
-
},
|
|
1576
|
+
height: props.width,
|
|
1861
1577
|
children: [
|
|
1862
|
-
/* @__PURE__ */
|
|
1578
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1863
1579
|
d: "M236.25 232.55l-54.08-73.79a11.86 11.86 0 00-11.91-4.62L84 171.57a11.88 11.88 0 00-8 5.88l-42.64 77.07a11.84 11.84 0 00.81 12.75l54.21 74a11.86 11.86 0 0011.91 4.62l86-17.37a11.85 11.85 0 008-5.89l42.78-77.3a11.86 11.86 0 00-.82-12.78zm-59.45 74.21a9.57 9.57 0 01-13.39-2.06l-31-42.24a16 16 0 00-16-6.21l-52.58 10.63a9.58 9.58 0 01-11.29-7.49A9.58 9.58 0 0160 248.1l57-11.52a16 16 0 0010.81-7.92L156.42 177a9.58 9.58 0 0113-3.75 9.58 9.58 0 013.75 13L146.81 234a16 16 0 001.09 17.16l31 42.23a9.58 9.58 0 01-2.1 13.37z"
|
|
1864
|
-
}
|
|
1865
|
-
/* @__PURE__ */
|
|
1580
|
+
}),
|
|
1581
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", {
|
|
1866
1582
|
cx: "416.44",
|
|
1867
1583
|
cy: "236.11",
|
|
1868
1584
|
r: "9.83"
|
|
1869
|
-
}
|
|
1870
|
-
/* @__PURE__ */
|
|
1585
|
+
}),
|
|
1586
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1871
1587
|
d: "M458.29 265.6H280.52a9.83 9.83 0 110-19.66h106.22a9.84 9.84 0 000-19.67h-70.2a9.83 9.83 0 110-19.66H422.9a9.84 9.84 0 000-19.67H202.83l33.42 45.61a11.86 11.86 0 01.81 12.75l-42.78 77.3a11.75 11.75 0 01-1.4 2h212.29a9.83 9.83 0 100-19.66h-53.53a9.84 9.84 0 110-19.67h106.65a9.84 9.84 0 100-19.67z"
|
|
1872
|
-
}
|
|
1588
|
+
})
|
|
1873
1589
|
]
|
|
1874
|
-
}
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
props
|
|
1879
|
-
], "p0.width")
|
|
1880
|
-
}, 0, "XA_0");
|
|
1881
|
-
}, "LogoVelocity_component_ZPc1n5yvS0Y"));
|
|
1882
|
-
const LogoWaterfall = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inlinedQrl((props) => {
|
|
1883
|
-
return /* @__PURE__ */ qwik._jsxS("svg", {
|
|
1590
|
+
});
|
|
1591
|
+
});
|
|
1592
|
+
const LogoWaterfall = qwik.component$((props) => {
|
|
1593
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", {
|
|
1884
1594
|
viewBox: "0 0 24 24",
|
|
1885
1595
|
fill: "none",
|
|
1886
1596
|
stroke: "currentColor",
|
|
@@ -1888,24 +1598,12 @@ const LogoWaterfall = /* @__PURE__ */ qwik.componentQrl(/* @__PURE__ */ qwik.inl
|
|
|
1888
1598
|
"stroke-linecap": "round",
|
|
1889
1599
|
"stroke-linejoin": "round",
|
|
1890
1600
|
...props,
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
},
|
|
1894
|
-
children: /* @__PURE__ */ qwik._jsxQ("path", null, {
|
|
1601
|
+
height: props.width,
|
|
1602
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", {
|
|
1895
1603
|
d: "M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"
|
|
1896
|
-
}
|
|
1897
|
-
}
|
|
1898
|
-
|
|
1899
|
-
fill: qwik._IMMUTABLE,
|
|
1900
|
-
stroke: qwik._IMMUTABLE,
|
|
1901
|
-
"stroke-width": qwik._IMMUTABLE,
|
|
1902
|
-
"stroke-linecap": qwik._IMMUTABLE,
|
|
1903
|
-
"stroke-linejoin": qwik._IMMUTABLE,
|
|
1904
|
-
height: qwik._fnSignal((p0) => p0.width, [
|
|
1905
|
-
props
|
|
1906
|
-
], "p0.width")
|
|
1907
|
-
}, 0, "to_0");
|
|
1908
|
-
}, "LogoWaterfall_component_5eX8hGbmtoU"));
|
|
1604
|
+
})
|
|
1605
|
+
});
|
|
1606
|
+
});
|
|
1909
1607
|
exports.Anchor = Anchor;
|
|
1910
1608
|
exports.Blobs = Blobs;
|
|
1911
1609
|
exports.ColorPicker = ColorPicker;
|
|
@@ -1927,7 +1625,6 @@ exports.Nav = Nav;
|
|
|
1927
1625
|
exports.NumberInput = NumberInput;
|
|
1928
1626
|
exports.NumberInputRaw = NumberInputRaw;
|
|
1929
1627
|
exports.Toggle = Toggle;
|
|
1930
|
-
exports._auto_blobClasses = blobClasses;
|
|
1931
1628
|
exports.blobColorClasses = blobColorClasses;
|
|
1932
1629
|
exports.toggleOffColorClasses = toggleOffColorClasses;
|
|
1933
1630
|
exports.toggleOnColorClasses = toggleOnColorClasses;
|