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