@luminescent/ui 0.13.0 → 0.15.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/lib/index.qwik.cjs +1002 -375
- package/lib/index.qwik.mjs +1003 -376
- package/lib-types/components/elements/Blobs.d.ts +18 -4
- package/lib-types/components/elements/Button.d.ts +97 -10
- package/lib-types/components/elements/Card.d.ts +128 -64
- package/lib-types/components/elements/Dropdown.d.ts +1 -0
- package/lib-types/components/elements/Nav.d.ts +17 -2
- package/lib-types/components/elements/NumberInput.d.ts +2 -0
- package/lib-types/components/elements/TextArea.d.ts +2 -0
- package/lib-types/components/elements/TextInput.d.ts +29 -1
- package/lib-types/components/elements/Toggle.d.ts +198 -0
- package/package.json +14 -14
package/lib/index.qwik.mjs
CHANGED
|
@@ -1,16 +1,46 @@
|
|
|
1
1
|
import { componentQrl, inlinedQrl, _jsxQ, _fnSignal, _restProps, _jsxS, _jsxC, Slot, _jsxBranch, _wrapSignal, _IMMUTABLE, useStore, useLexicalScope, _wrapProp, useOn, useStylesQrl, useSignal } from "@builder.io/qwik";
|
|
2
2
|
import { Fragment } from "@builder.io/qwik/jsx-runtime";
|
|
3
3
|
const Anchor = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => /* @__PURE__ */ _jsxQ("span", null, {
|
|
4
|
-
class: "block h-32 -mt-32 pointer-events-none",
|
|
5
4
|
id: _fnSignal((p0) => p0.id, [
|
|
6
5
|
props
|
|
7
|
-
], "p0.id")
|
|
6
|
+
], "p0.id"),
|
|
7
|
+
class: "block h-32 -mt-32 pointer-events-none"
|
|
8
8
|
}, null, 3, "Oa_0"), "Anchor_component_O7y4zyaazA0"));
|
|
9
9
|
const blobColorClasses = {
|
|
10
|
-
|
|
11
|
-
"bg-
|
|
12
|
-
"bg-
|
|
13
|
-
"bg-
|
|
10
|
+
slate: [
|
|
11
|
+
"bg-slate-400",
|
|
12
|
+
"bg-slate-500",
|
|
13
|
+
"bg-slate-600"
|
|
14
|
+
],
|
|
15
|
+
gray: [
|
|
16
|
+
"bg-gray-400",
|
|
17
|
+
"bg-gray-500",
|
|
18
|
+
"bg-gray-600"
|
|
19
|
+
],
|
|
20
|
+
darkgray: [
|
|
21
|
+
"bg-gray-500",
|
|
22
|
+
"bg-gray-600",
|
|
23
|
+
"bg-gray-700"
|
|
24
|
+
],
|
|
25
|
+
darkergray: [
|
|
26
|
+
"bg-gray-600",
|
|
27
|
+
"bg-gray-700",
|
|
28
|
+
"bg-gray-800"
|
|
29
|
+
],
|
|
30
|
+
zinc: [
|
|
31
|
+
"bg-zinc-400",
|
|
32
|
+
"bg-zinc-500",
|
|
33
|
+
"bg-zinc-600"
|
|
34
|
+
],
|
|
35
|
+
neutral: [
|
|
36
|
+
"bg-neutral-400",
|
|
37
|
+
"bg-neutral-500",
|
|
38
|
+
"bg-neutral-600"
|
|
39
|
+
],
|
|
40
|
+
stone: [
|
|
41
|
+
"bg-stone-400",
|
|
42
|
+
"bg-stone-500",
|
|
43
|
+
"bg-stone-600"
|
|
14
44
|
],
|
|
15
45
|
red: [
|
|
16
46
|
"bg-red-400",
|
|
@@ -22,40 +52,80 @@ const blobColorClasses = {
|
|
|
22
52
|
"bg-orange-500",
|
|
23
53
|
"bg-orange-600"
|
|
24
54
|
],
|
|
55
|
+
amber: [
|
|
56
|
+
"bg-amber-400",
|
|
57
|
+
"bg-amber-500",
|
|
58
|
+
"bg-amber-600"
|
|
59
|
+
],
|
|
25
60
|
yellow: [
|
|
26
61
|
"bg-yellow-400",
|
|
27
62
|
"bg-yellow-500",
|
|
28
63
|
"bg-yellow-600"
|
|
29
64
|
],
|
|
65
|
+
lime: [
|
|
66
|
+
"bg-lime-400",
|
|
67
|
+
"bg-lime-500",
|
|
68
|
+
"bg-lime-600"
|
|
69
|
+
],
|
|
30
70
|
green: [
|
|
31
71
|
"bg-green-400",
|
|
32
72
|
"bg-green-500",
|
|
33
73
|
"bg-green-600"
|
|
34
74
|
],
|
|
75
|
+
emerald: [
|
|
76
|
+
"bg-emerald-400",
|
|
77
|
+
"bg-emerald-500",
|
|
78
|
+
"bg-emerald-600"
|
|
79
|
+
],
|
|
80
|
+
teal: [
|
|
81
|
+
"bg-teal-400",
|
|
82
|
+
"bg-teal-500",
|
|
83
|
+
"bg-teal-600"
|
|
84
|
+
],
|
|
85
|
+
cyan: [
|
|
86
|
+
"bg-cyan-400",
|
|
87
|
+
"bg-cyan-500",
|
|
88
|
+
"bg-cyan-600"
|
|
89
|
+
],
|
|
90
|
+
sky: [
|
|
91
|
+
"bg-sky-400",
|
|
92
|
+
"bg-sky-500",
|
|
93
|
+
"bg-sky-600"
|
|
94
|
+
],
|
|
35
95
|
blue: [
|
|
36
96
|
"bg-blue-400",
|
|
37
97
|
"bg-blue-500",
|
|
38
98
|
"bg-blue-600"
|
|
39
99
|
],
|
|
100
|
+
indigo: [
|
|
101
|
+
"bg-indigo-400",
|
|
102
|
+
"bg-indigo-500",
|
|
103
|
+
"bg-indigo-600"
|
|
104
|
+
],
|
|
105
|
+
violet: [
|
|
106
|
+
"bg-violet-400",
|
|
107
|
+
"bg-violet-500",
|
|
108
|
+
"bg-violet-600"
|
|
109
|
+
],
|
|
40
110
|
purple: [
|
|
41
111
|
"bg-purple-400",
|
|
42
112
|
"bg-purple-500",
|
|
43
113
|
"bg-purple-600"
|
|
44
114
|
],
|
|
45
|
-
|
|
46
|
-
"bg-
|
|
47
|
-
"bg-
|
|
48
|
-
"bg-
|
|
115
|
+
fuchsia: [
|
|
116
|
+
"bg-fuchsia-400",
|
|
117
|
+
"bg-fuchsia-500",
|
|
118
|
+
"bg-fuchsia-600"
|
|
49
119
|
],
|
|
50
|
-
|
|
51
|
-
"bg-
|
|
52
|
-
"bg-
|
|
53
|
-
"bg-
|
|
120
|
+
pink: [
|
|
121
|
+
"bg-pink-400",
|
|
122
|
+
"bg-pink-500",
|
|
123
|
+
"bg-pink-600"
|
|
54
124
|
],
|
|
55
|
-
|
|
56
|
-
"bg-
|
|
57
|
-
"bg-
|
|
58
|
-
"bg-
|
|
125
|
+
rose: [
|
|
126
|
+
"bg-rose-400",
|
|
127
|
+
"bg-rose-500",
|
|
128
|
+
"bg-rose-600"
|
|
59
129
|
]
|
|
60
130
|
};
|
|
61
131
|
const blobClasses = [
|
|
@@ -122,16 +192,102 @@ const Blobs = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =>
|
|
|
122
192
|
], 1, "OL_0");
|
|
123
193
|
}, "Blobs_component_246Oa50YM60"));
|
|
124
194
|
const buttonColorClasses = {
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
darkgray:
|
|
134
|
-
|
|
195
|
+
slate: {
|
|
196
|
+
hover: "hover:bg-slate-600 active:bg-slate-500 focus:border-slate-500",
|
|
197
|
+
bg: "bg-slate-700/90 border-slate-600"
|
|
198
|
+
},
|
|
199
|
+
gray: {
|
|
200
|
+
hover: "hover:bg-gray-600 active:bg-gray-500 focus:border-gray-500",
|
|
201
|
+
bg: "bg-gray-700/90 border-gray-600"
|
|
202
|
+
},
|
|
203
|
+
darkgray: {
|
|
204
|
+
hover: "hover:bg-gray-700 active:bg-gray-600 focus:border-gray-600",
|
|
205
|
+
bg: "bg-gray-800/90 border-gray-700"
|
|
206
|
+
},
|
|
207
|
+
darkergray: {
|
|
208
|
+
hover: "hover:bg-gray-800 active:bg-gray-700 focus:border-gray-700",
|
|
209
|
+
bg: "bg-gray-900/90 border-gray-800"
|
|
210
|
+
},
|
|
211
|
+
zinc: {
|
|
212
|
+
hover: "hover:bg-zinc-600 active:bg-zinc-500 focus:border-zinc-500",
|
|
213
|
+
bg: "bg-zinc-700/90 border-zinc-600"
|
|
214
|
+
},
|
|
215
|
+
neutral: {
|
|
216
|
+
hover: "hover:bg-neutral-600 active:bg-neutral-500 focus:border-neutral-500",
|
|
217
|
+
bg: "bg-neutral-700/90 border-neutral-600"
|
|
218
|
+
},
|
|
219
|
+
stone: {
|
|
220
|
+
hover: "hover:bg-stone-600 active:bg-stone-500 focus:border-stone-500",
|
|
221
|
+
bg: "bg-stone-700/90 border-stone-600"
|
|
222
|
+
},
|
|
223
|
+
red: {
|
|
224
|
+
hover: "hover:bg-red-600 active:bg-red-500 focus:border-red-500",
|
|
225
|
+
bg: "bg-red-700/90 border-red-600"
|
|
226
|
+
},
|
|
227
|
+
orange: {
|
|
228
|
+
hover: "hover:bg-orange-600 active:bg-orange-500 focus:border-orange-500",
|
|
229
|
+
bg: "bg-orange-700/90 border-orange-600"
|
|
230
|
+
},
|
|
231
|
+
amber: {
|
|
232
|
+
hover: "hover:bg-amber-600 active:bg-amber-500 focus:border-amber-500",
|
|
233
|
+
bg: "bg-amber-700/90 border-amber-600"
|
|
234
|
+
},
|
|
235
|
+
yellow: {
|
|
236
|
+
hover: "hover:bg-yellow-600 active:bg-yellow-500 focus:border-yellow-500",
|
|
237
|
+
bg: "bg-yellow-700/90 border-yellow-600"
|
|
238
|
+
},
|
|
239
|
+
lime: {
|
|
240
|
+
hover: "hover:bg-lime-600 active:bg-lime-500 focus:border-lime-500",
|
|
241
|
+
bg: "bg-lime-700/90 border-lime-600"
|
|
242
|
+
},
|
|
243
|
+
green: {
|
|
244
|
+
hover: "hover:bg-green-600 active:bg-green-500 focus:border-green-500",
|
|
245
|
+
bg: "bg-green-700/90 border-green-600"
|
|
246
|
+
},
|
|
247
|
+
emerald: {
|
|
248
|
+
hover: "hover:bg-emerald-600 active:bg-emerald-500 focus:border-emerald-500",
|
|
249
|
+
bg: "bg-emerald-700/90 border-emerald-600"
|
|
250
|
+
},
|
|
251
|
+
teal: {
|
|
252
|
+
hover: "hover:bg-teal-600 active:bg-teal-500 focus:border-teal-500",
|
|
253
|
+
bg: "bg-teal-700/90 border-teal-600"
|
|
254
|
+
},
|
|
255
|
+
cyan: {
|
|
256
|
+
hover: "hover:bg-cyan-600 active:bg-cyan-500 focus:border-cyan-500",
|
|
257
|
+
bg: "bg-cyan-700/90 border-cyan-600"
|
|
258
|
+
},
|
|
259
|
+
sky: {
|
|
260
|
+
hover: "hover:bg-sky-600 active:bg-sky-500 focus:border-sky-500",
|
|
261
|
+
bg: "bg-sky-700/90 border-sky-600"
|
|
262
|
+
},
|
|
263
|
+
blue: {
|
|
264
|
+
hover: "hover:bg-blue-600 active:bg-blue-500 focus:border-blue-500",
|
|
265
|
+
bg: "bg-blue-700/90 border-blue-600"
|
|
266
|
+
},
|
|
267
|
+
indigo: {
|
|
268
|
+
hover: "hover:bg-indigo-600 active:bg-indigo-500 focus:border-indigo-500",
|
|
269
|
+
bg: "bg-indigo-700/90 border-indigo-600"
|
|
270
|
+
},
|
|
271
|
+
violet: {
|
|
272
|
+
hover: "hover:bg-violet-600 active:bg-violet-500 focus:border-violet-500",
|
|
273
|
+
bg: "bg-violet-700/90 border-violet-600"
|
|
274
|
+
},
|
|
275
|
+
purple: {
|
|
276
|
+
hover: "hover:bg-purple-600 active:bg-purple-500 focus:border-purple-500",
|
|
277
|
+
bg: "bg-purple-700/90 border-purple-600"
|
|
278
|
+
},
|
|
279
|
+
fuchsia: {
|
|
280
|
+
hover: "hover:bg-fuchsia-600 active:bg-fuchsia-500 focus:border-fuchsia-500",
|
|
281
|
+
bg: "bg-fuchsia-700/90 border-fuchsia-600"
|
|
282
|
+
},
|
|
283
|
+
pink: {
|
|
284
|
+
hover: "hover:bg-pink-600 active:bg-pink-500 focus:border-pink-500",
|
|
285
|
+
bg: "bg-pink-700/90 border-pink-600"
|
|
286
|
+
},
|
|
287
|
+
rose: {
|
|
288
|
+
hover: "hover:bg-rose-600 active:bg-rose-500 focus:border-rose-500",
|
|
289
|
+
bg: "bg-rose-700/90 border-rose-600"
|
|
290
|
+
}
|
|
135
291
|
};
|
|
136
292
|
const sizeClasses = {
|
|
137
293
|
sm: {
|
|
@@ -155,16 +311,19 @@ const sizeClasses = {
|
|
|
155
311
|
equal: "p-4"
|
|
156
312
|
}
|
|
157
313
|
};
|
|
158
|
-
const buttonClass = "relative flex items-center gap-3 motion-safe:transition ease-in-out border text-gray-50 fill-gray-50 disabled:opacity-50 hover:shadow-lg motion-safe:active:scale-95 whitespace-nowrap touch-manipulation select-none";
|
|
314
|
+
const buttonClass = "relative flex items-center gap-3 motion-safe:transition ease-in-out border text-gray-50 fill-gray-50 disabled:opacity-50 hover:shadow-lg motion-safe:active:scale-95 whitespace-nowrap touch-manipulation select-none text-center";
|
|
159
315
|
const Button = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
160
316
|
const props1 = _restProps(props, [
|
|
161
317
|
"color",
|
|
318
|
+
"transparent",
|
|
162
319
|
"size",
|
|
163
320
|
"square"
|
|
164
321
|
]);
|
|
165
322
|
props1.class = {
|
|
166
323
|
[buttonClass]: true,
|
|
167
|
-
[buttonColorClasses[props.color ?? "darkgray"]]:
|
|
324
|
+
[buttonColorClasses[props.color ?? "darkgray"].bg]: !props.transparent,
|
|
325
|
+
"border-transparent": props.transparent,
|
|
326
|
+
[buttonColorClasses[props.color ?? "darkgray"].hover]: true,
|
|
168
327
|
[sizeClasses[props.size ?? "md"].base]: true,
|
|
169
328
|
[sizeClasses[props.size ?? "md"].pad]: !props.square,
|
|
170
329
|
[sizeClasses[props.size ?? "md"].equal]: props.square,
|
|
@@ -178,12 +337,15 @@ const Button = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =
|
|
|
178
337
|
const ButtonAnchor = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
179
338
|
const props1 = _restProps(props, [
|
|
180
339
|
"color",
|
|
340
|
+
"transparent",
|
|
181
341
|
"size",
|
|
182
342
|
"square"
|
|
183
343
|
]);
|
|
184
344
|
props1.class = {
|
|
185
345
|
[buttonClass]: true,
|
|
186
|
-
[buttonColorClasses[props.color ?? "darkgray"]]:
|
|
346
|
+
[buttonColorClasses[props.color ?? "darkgray"].bg]: !props.transparent,
|
|
347
|
+
"border-transparent": props.transparent,
|
|
348
|
+
[buttonColorClasses[props.color ?? "darkgray"].hover]: true,
|
|
187
349
|
[sizeClasses[props.size ?? "md"].base]: true,
|
|
188
350
|
[sizeClasses[props.size ?? "md"].pad]: !props.square,
|
|
189
351
|
[sizeClasses[props.size ?? "md"].equal]: props.square,
|
|
@@ -195,85 +357,149 @@ const ButtonAnchor = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pr
|
|
|
195
357
|
}, null, 0, "7H_3");
|
|
196
358
|
}, "ButtonAnchor_component_vQT9xS0lqew"));
|
|
197
359
|
const cardColorClasses = {
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
360
|
+
slate: {
|
|
361
|
+
bg_blobs: "bg-slate-400/10 border-slate-400/20",
|
|
362
|
+
bg: "bg-slate-400/60 border-slate-400",
|
|
363
|
+
hover: "hover:bg-slate-400/20",
|
|
364
|
+
click: "active:bg-slate-300/20"
|
|
365
|
+
},
|
|
366
|
+
gray: {
|
|
367
|
+
bg_blobs: "bg-gray-400/10 border-gray-400/20",
|
|
368
|
+
bg: "bg-gray-400/60 border-gray-400",
|
|
369
|
+
hover: "hover:bg-gray-400/20",
|
|
370
|
+
click: "active:bg-gray-300/20"
|
|
371
|
+
},
|
|
372
|
+
darkgray: {
|
|
373
|
+
bg_blobs: "bg-gray-800/10 border-gray-800/40",
|
|
374
|
+
bg: "bg-gray-800/60 border-gray-800",
|
|
375
|
+
hover: "hover:bg-gray-800/40",
|
|
376
|
+
click: "active:bg-gray-700/40"
|
|
377
|
+
},
|
|
378
|
+
darkergray: {
|
|
379
|
+
bg_blobs: "bg-gray-900/10 border-gray-900/50",
|
|
380
|
+
bg: "bg-gray-900/60 border-gray-900",
|
|
381
|
+
hover: "hover:bg-gray-900/50",
|
|
382
|
+
click: "active:bg-gray-800/50"
|
|
383
|
+
},
|
|
384
|
+
zinc: {
|
|
385
|
+
bg_blobs: "bg-zinc-400/10 border-zinc-400/20",
|
|
386
|
+
bg: "bg-zinc-400/60 border-zinc-400",
|
|
387
|
+
hover: "hover:bg-zinc-400/20",
|
|
388
|
+
click: "active:bg-zinc-300/20"
|
|
389
|
+
},
|
|
390
|
+
neutral: {
|
|
391
|
+
bg_blobs: "bg-neutral-400/10 border-neutral-400/20",
|
|
392
|
+
bg: "bg-neutral-400/60 border-neutral-400",
|
|
393
|
+
hover: "hover:bg-neutral-400/20",
|
|
394
|
+
click: "active:bg-neutral-300/20"
|
|
395
|
+
},
|
|
396
|
+
stone: {
|
|
397
|
+
bg_blobs: "bg-stone-400/10 border-stone-400/20",
|
|
398
|
+
bg: "bg-stone-400/60 border-stone-400",
|
|
399
|
+
hover: "hover:bg-stone-400/20",
|
|
400
|
+
click: "active:bg-stone-300/20"
|
|
205
401
|
},
|
|
206
402
|
red: {
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
click: "active:bg-red-300/20"
|
|
212
|
-
}
|
|
403
|
+
bg_blobs: "bg-red-400/10 border-red-400/20",
|
|
404
|
+
bg: "bg-red-400/60 border-red-400",
|
|
405
|
+
hover: "hover:bg-red-400/20",
|
|
406
|
+
click: "active:bg-red-300/20"
|
|
213
407
|
},
|
|
214
408
|
orange: {
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
409
|
+
bg_blobs: "bg-orange-400/10 border-orange-400/20",
|
|
410
|
+
bg: "bg-orange-400/60 border-orange-400",
|
|
411
|
+
hover: "hover:bg-orange-400/20",
|
|
412
|
+
click: "active:bg-orange-300/20"
|
|
413
|
+
},
|
|
414
|
+
amber: {
|
|
415
|
+
bg_blobs: "bg-amber-400/10 border-amber-400/20",
|
|
416
|
+
bg: "bg-amber-400/60 border-amber-400",
|
|
417
|
+
hover: "hover:bg-amber-400/20",
|
|
418
|
+
click: "active:bg-amber-300/20"
|
|
221
419
|
},
|
|
222
420
|
yellow: {
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
421
|
+
bg_blobs: "bg-yellow-400/10 border-yellow-400/20",
|
|
422
|
+
bg: "bg-yellow-400/60 border-yellow-400",
|
|
423
|
+
hover: "hover:bg-yellow-400/20",
|
|
424
|
+
click: "active:bg-yellow-300/20"
|
|
425
|
+
},
|
|
426
|
+
lime: {
|
|
427
|
+
bg_blobs: "bg-lime-400/10 border-lime-400/20",
|
|
428
|
+
bg: "bg-lime-400/60 border-lime-400",
|
|
429
|
+
hover: "hover:bg-lime-400/20",
|
|
430
|
+
click: "active:bg-lime-300/20"
|
|
229
431
|
},
|
|
230
432
|
green: {
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
433
|
+
bg_blobs: "bg-green-400/10 border-green-400/20",
|
|
434
|
+
bg: "bg-green-400/60 border-green-400",
|
|
435
|
+
hover: "hover:bg-green-400/20",
|
|
436
|
+
click: "active:bg-green-300/20"
|
|
437
|
+
},
|
|
438
|
+
emerald: {
|
|
439
|
+
bg_blobs: "bg-emerald-400/10 border-emerald-400/20",
|
|
440
|
+
bg: "bg-emerald-400/60 border-emerald-400",
|
|
441
|
+
hover: "hover:bg-emerald-400/20",
|
|
442
|
+
click: "active:bg-emerald-300/20"
|
|
443
|
+
},
|
|
444
|
+
teal: {
|
|
445
|
+
bg_blobs: "bg-teal-400/10 border-teal-400/20",
|
|
446
|
+
bg: "bg-teal-400/60 border-teal-400",
|
|
447
|
+
hover: "hover:bg-teal-400/20",
|
|
448
|
+
click: "active:bg-teal-300/20"
|
|
449
|
+
},
|
|
450
|
+
cyan: {
|
|
451
|
+
bg_blobs: "bg-cyan-400/10 border-cyan-400/20",
|
|
452
|
+
bg: "bg-cyan-400/60 border-cyan-400",
|
|
453
|
+
hover: "hover:bg-cyan-400/20",
|
|
454
|
+
click: "active:bg-cyan-300/20"
|
|
455
|
+
},
|
|
456
|
+
sky: {
|
|
457
|
+
bg_blobs: "bg-sky-400/10 border-sky-400/20",
|
|
458
|
+
bg: "bg-sky-400/60 border-sky-400",
|
|
459
|
+
hover: "hover:bg-sky-400/20",
|
|
460
|
+
click: "active:bg-sky-300/20"
|
|
237
461
|
},
|
|
238
462
|
blue: {
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
463
|
+
bg_blobs: "bg-blue-400/10 border-blue-400/20",
|
|
464
|
+
bg: "bg-blue-400/60 border-blue-400",
|
|
465
|
+
hover: "hover:bg-blue-400/20",
|
|
466
|
+
click: "active:bg-blue-300/20"
|
|
467
|
+
},
|
|
468
|
+
indigo: {
|
|
469
|
+
bg_blobs: "bg-indigo-400/10 border-indigo-400/20",
|
|
470
|
+
bg: "bg-indigo-400/60 border-indigo-400",
|
|
471
|
+
hover: "hover:bg-indigo-400/20",
|
|
472
|
+
click: "active:bg-indigo-300/20"
|
|
473
|
+
},
|
|
474
|
+
violet: {
|
|
475
|
+
bg_blobs: "bg-violet-400/10 border-violet-400/20",
|
|
476
|
+
bg: "bg-violet-400/60 border-violet-400",
|
|
477
|
+
hover: "hover:bg-violet-400/20",
|
|
478
|
+
click: "active:bg-violet-300/20"
|
|
245
479
|
},
|
|
246
480
|
purple: {
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
click: "active:bg-purple-300/20"
|
|
252
|
-
}
|
|
481
|
+
bg_blobs: "bg-purple-400/10 border-purple-400/20",
|
|
482
|
+
bg: "bg-purple-400/60 border-purple-400",
|
|
483
|
+
hover: "hover:bg-purple-400/20",
|
|
484
|
+
click: "active:bg-purple-300/20"
|
|
253
485
|
},
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
click: "active:bg-gray-300/20"
|
|
260
|
-
}
|
|
486
|
+
fuchsia: {
|
|
487
|
+
bg_blobs: "bg-fuchsia-400/10 border-fuchsia-400/20",
|
|
488
|
+
bg: "bg-fuchsia-400/60 border-fuchsia-400",
|
|
489
|
+
hover: "hover:bg-fuchsia-400/20",
|
|
490
|
+
click: "active:bg-fuchsia-300/20"
|
|
261
491
|
},
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
click: "active:bg-gray-700/40"
|
|
268
|
-
}
|
|
492
|
+
pink: {
|
|
493
|
+
bg_blobs: "bg-pink-400/10 border-pink-400/20",
|
|
494
|
+
bg: "bg-pink-400/60 border-pink-400",
|
|
495
|
+
hover: "hover:bg-pink-400/20",
|
|
496
|
+
click: "active:bg-pink-300/20"
|
|
269
497
|
},
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
click: "active:bg-gray-800/50"
|
|
276
|
-
}
|
|
498
|
+
rose: {
|
|
499
|
+
bg_blobs: "bg-rose-400/10 border-rose-400/20",
|
|
500
|
+
bg: "bg-rose-400/60 border-rose-400",
|
|
501
|
+
hover: "hover:bg-rose-400/20",
|
|
502
|
+
click: "active:bg-rose-300/20"
|
|
277
503
|
}
|
|
278
504
|
};
|
|
279
505
|
const Card = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
@@ -286,6 +512,15 @@ const Card = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =>
|
|
|
286
512
|
]);
|
|
287
513
|
return /* @__PURE__ */ _jsxS("div", {
|
|
288
514
|
...props1,
|
|
515
|
+
class: {
|
|
516
|
+
"relative flex gap-3 sm:gap-4 p-5 sm:p-7 border rounded-lg motion-safe:transition-all": true,
|
|
517
|
+
"flex-col": !props.row,
|
|
518
|
+
[cardColorClasses[props.color ?? "darkgray"].bg]: !props.blobs,
|
|
519
|
+
[cardColorClasses[props.color ?? "darkgray"].bg_blobs]: props.blobs,
|
|
520
|
+
[cardColorClasses[props.color ?? "darkgray"].hover + " hover:shadow-lg"]: props.hover,
|
|
521
|
+
[cardColorClasses[props.color ?? "darkgray"].click + " active:scale-[99%] cursor-pointer select-none touch-manipulation"]: props.hover == "clickable",
|
|
522
|
+
...props1.class
|
|
523
|
+
},
|
|
289
524
|
children: [
|
|
290
525
|
/* @__PURE__ */ _jsxC(Slot, null, 3, "OW_0"),
|
|
291
526
|
props1.href && /* @__PURE__ */ _jsxQ("a", {
|
|
@@ -301,34 +536,52 @@ const Card = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =>
|
|
|
301
536
|
"overflow-clip": true
|
|
302
537
|
},
|
|
303
538
|
[_IMMUTABLE]: {
|
|
304
|
-
class: _IMMUTABLE,
|
|
305
539
|
color: _fnSignal((p0) => p0.color ?? "darkgray", [
|
|
306
540
|
props
|
|
307
|
-
], 'p0.color??"darkgray"')
|
|
541
|
+
], 'p0.color??"darkgray"'),
|
|
542
|
+
class: _IMMUTABLE
|
|
308
543
|
}
|
|
309
544
|
}, 3, "OW_2")
|
|
310
|
-
]
|
|
311
|
-
class: {
|
|
312
|
-
"relative flex gap-3 sm:gap-4 p-5 sm:p-7 border rounded-lg motion-safe:transition-all": true,
|
|
313
|
-
"flex-col": !props.row,
|
|
314
|
-
[cardColorClasses[props.color ?? "darkgray"].card.bg]: !props.blobs,
|
|
315
|
-
[cardColorClasses[props.color ?? "darkgray"].card.bg_blobs]: props.blobs,
|
|
316
|
-
[cardColorClasses[props.color ?? "darkgray"].card.hover + " hover:shadow-lg"]: props.hover,
|
|
317
|
-
[cardColorClasses[props.color ?? "darkgray"].card.click + " active:scale-[99%] cursor-pointer select-none touch-manipulation"]: props.hover == "clickable",
|
|
318
|
-
...props1.class
|
|
319
|
-
}
|
|
545
|
+
]
|
|
320
546
|
}, null, 0, "OW_3");
|
|
321
547
|
}, "Card_component_DlkkcTEVka4"));
|
|
322
|
-
const
|
|
548
|
+
const InputColorClasses = {
|
|
549
|
+
slate: "bg-slate-700/90 border-slate-600 hover:bg-slate-600 active:bg-slate-500 focus:border-slate-300",
|
|
550
|
+
gray: "bg-gray-700/90 border-gray-600 hover:bg-gray-600 active:bg-gray-500 focus:border-gray-300",
|
|
551
|
+
darkgray: "bg-gray-800/90 border-gray-700 hover:bg-gray-700 active:bg-gray-600 focus:border-gray-400",
|
|
552
|
+
darkergray: "bg-gray-900/90 border-gray-800 hover:bg-gray-800 active:bg-gray-700 focus:border-gray-500",
|
|
553
|
+
zinc: "bg-zinc-700/90 border-zinc-600 hover:bg-zinc-600 active:bg-zinc-500 focus:border-zinc-300",
|
|
554
|
+
neutral: "bg-neutral-700/90 border-neutral-600 hover:bg-neutral-600 active:bg-neutral-500 focus:border-neutral-300",
|
|
555
|
+
stone: "bg-stone-700/90 border-stone-600 hover:bg-stone-600 active:bg-stone-500 focus:border-stone-300",
|
|
556
|
+
red: "bg-red-700/90 border-red-600 hover:bg-red-600 active:bg-red-500 focus:border-red-300",
|
|
557
|
+
orange: "bg-orange-700/90 border-orange-600 hover:bg-orange-600 active:bg-orange-500 focus:border-orange-300",
|
|
558
|
+
amber: "bg-amber-700/90 border-amber-600 hover:bg-amber-600 active:bg-amber-500 focus:border-amber-300",
|
|
559
|
+
yellow: "bg-yellow-700/90 border-yellow-600 hover:bg-yellow-600 active:bg-yellow-500 focus:border-yellow-300",
|
|
560
|
+
lime: "bg-lime-700/90 border-lime-600 hover:bg-lime-600 active:bg-lime-500 focus:border-lime-300",
|
|
561
|
+
green: "bg-green-700/90 border-green-600 hover:bg-green-600 active:bg-green-500 focus:border-green-300",
|
|
562
|
+
emerald: "bg-emerald-700/90 border-emerald-600 hover:bg-emerald-600 active:bg-emerald-500 focus:border-emerald-300",
|
|
563
|
+
teal: "bg-teal-700/90 border-teal-600 hover:bg-teal-600 active:bg-teal-500 focus:border-teal-300",
|
|
564
|
+
cyan: "bg-cyan-700/90 border-cyan-600 hover:bg-cyan-600 active:bg-cyan-500 focus:border-cyan-300",
|
|
565
|
+
sky: "bg-sky-700/90 border-sky-600 hover:bg-sky-600 active:bg-sky-500 focus:border-sky-300",
|
|
566
|
+
blue: "bg-blue-700/90 border-blue-600 hover:bg-blue-600 active:bg-blue-500 focus:border-blue-300",
|
|
567
|
+
indigo: "bg-indigo-700/90 border-indigo-600 hover:bg-indigo-600 active:bg-indigo-500 focus:border-indigo-300",
|
|
568
|
+
violet: "bg-violet-700/90 border-violet-600 hover:bg-violet-600 active:bg-violet-500 focus:border-violet-300",
|
|
569
|
+
purple: "bg-purple-700/90 border-purple-600 hover:bg-purple-600 active:bg-purple-500 focus:border-purple-300",
|
|
570
|
+
fuchsia: "bg-fuchsia-700/90 border-fuchsia-600 hover:bg-fuchsia-600 active:bg-fuchsia-500 focus:border-fuchsia-300",
|
|
571
|
+
pink: "bg-pink-700/90 border-pink-600 hover:bg-pink-600 active:bg-pink-500 focus:border-pink-300",
|
|
572
|
+
rose: "bg-rose-700/90 border-rose-600 hover:bg-rose-600 active:bg-rose-500 focus:border-rose-300",
|
|
573
|
+
transparent: "bg-transparent border-transparent hover:bg-gray-600/50 active:bg-gray-600/60 focus:border-gray-600/60"
|
|
574
|
+
};
|
|
575
|
+
const InputClasses = "motion-safe:transition ease-in-out border text-gray-50 hover:shadow-lg focus:outline-none rounded-md px-2.5 py-1.5 touch-manipulation";
|
|
323
576
|
const TextInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
324
577
|
return /* @__PURE__ */ _jsxQ("div", null, {
|
|
325
578
|
class: "flex flex-col"
|
|
326
579
|
}, [
|
|
327
580
|
/* @__PURE__ */ _jsxQ("label", null, {
|
|
328
|
-
class: "text-gray-300 pb-1 select-none",
|
|
329
581
|
for: _fnSignal((p0) => p0.id, [
|
|
330
582
|
props
|
|
331
|
-
], "p0.id")
|
|
583
|
+
], "p0.id"),
|
|
584
|
+
class: "text-gray-300 pb-1 select-none"
|
|
332
585
|
}, /* @__PURE__ */ _jsxC(Slot, null, 3, "dC_0"), 1, null),
|
|
333
586
|
/* @__PURE__ */ _jsxC(TextInputRaw, {
|
|
334
587
|
...props,
|
|
@@ -337,11 +590,15 @@ const TextInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props
|
|
|
337
590
|
], 1, "dC_2");
|
|
338
591
|
}, "TextInput_component_AXp2j5aulZI"));
|
|
339
592
|
const TextInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
593
|
+
const props1 = _restProps(props, [
|
|
594
|
+
"color"
|
|
595
|
+
]);
|
|
340
596
|
return /* @__PURE__ */ _jsxS("input", {
|
|
341
|
-
...
|
|
597
|
+
...props1,
|
|
342
598
|
class: {
|
|
343
599
|
[InputClasses]: true,
|
|
344
|
-
|
|
600
|
+
[InputColorClasses[props.color ?? "darkgray"]]: true,
|
|
601
|
+
...props1.class
|
|
345
602
|
}
|
|
346
603
|
}, null, 0, "dC_3");
|
|
347
604
|
}, "TextInputRaw_component_ssloWlmBB4w"));
|
|
@@ -477,18 +734,18 @@ const ColorInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((prop
|
|
|
477
734
|
get value() {
|
|
478
735
|
return props.value ?? "#000000";
|
|
479
736
|
},
|
|
480
|
-
onBlur$: /* @__PURE__ */ inlinedQrl(() => {
|
|
481
|
-
const [store2] = useLexicalScope();
|
|
482
|
-
store2.opened = false;
|
|
483
|
-
}, "ColorInput_component_div_TextInputRaw_onBlur_giB7aSy8tnc", [
|
|
484
|
-
store
|
|
485
|
-
]),
|
|
486
737
|
onFocus$: /* @__PURE__ */ inlinedQrl(() => {
|
|
487
738
|
const [store2] = useLexicalScope();
|
|
488
739
|
store2.opened = true;
|
|
489
740
|
}, "ColorInput_component_div_TextInputRaw_onFocus_9bHrhSeTgfI", [
|
|
490
741
|
store
|
|
491
742
|
]),
|
|
743
|
+
onBlur$: /* @__PURE__ */ inlinedQrl(() => {
|
|
744
|
+
const [store2] = useLexicalScope();
|
|
745
|
+
store2.opened = false;
|
|
746
|
+
}, "ColorInput_component_div_TextInputRaw_onBlur_giB7aSy8tnc", [
|
|
747
|
+
store
|
|
748
|
+
]),
|
|
492
749
|
onInput$: /* @__PURE__ */ inlinedQrl((e, el) => {
|
|
493
750
|
const [props12, props2] = useLexicalScope();
|
|
494
751
|
const div = document.getElementById(`${props12.id}-picker`);
|
|
@@ -512,11 +769,11 @@ const ColorInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((prop
|
|
|
512
769
|
borderBottom: `10px solid ${props.value ?? "#000000"}`
|
|
513
770
|
} : {},
|
|
514
771
|
[_IMMUTABLE]: {
|
|
515
|
-
onBlur$: _IMMUTABLE,
|
|
516
|
-
onFocus$: _IMMUTABLE,
|
|
517
772
|
value: _fnSignal((p0) => p0.value ?? "#000000", [
|
|
518
773
|
props
|
|
519
|
-
], 'p0.value??"#000000"')
|
|
774
|
+
], 'p0.value??"#000000"'),
|
|
775
|
+
onFocus$: _IMMUTABLE,
|
|
776
|
+
onBlur$: _IMMUTABLE
|
|
520
777
|
}
|
|
521
778
|
}, 0, "0s_1"),
|
|
522
779
|
/* @__PURE__ */ _jsxC(ColorPickerRaw, {
|
|
@@ -575,12 +832,7 @@ const ColorInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((prop
|
|
|
575
832
|
props
|
|
576
833
|
]),
|
|
577
834
|
[_IMMUTABLE]: {
|
|
578
|
-
|
|
579
|
-
"motion-safe:transition-all absolute top-full mt-2 left-0 gap-1 z-[1000]": true,
|
|
580
|
-
"opacity-0 scale-95 pointer-events-none": !p0.opened
|
|
581
|
-
}), [
|
|
582
|
-
store
|
|
583
|
-
], '{"motion-safe:transition-all absolute top-full mt-2 left-0 gap-1 z-[1000]":true,"opacity-0 scale-95 pointer-events-none":!p0.opened}'),
|
|
835
|
+
id: _wrapProp(props1, "id"),
|
|
584
836
|
color: _fnSignal((p0) => p0.value ?? "#000000", [
|
|
585
837
|
props
|
|
586
838
|
], 'p0.value??"#000000"'),
|
|
@@ -599,7 +851,12 @@ const ColorInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((prop
|
|
|
599
851
|
], [
|
|
600
852
|
props
|
|
601
853
|
], '["#FAEDCB","#C9E4DE","#C6DEF1","#DBCDF0","#F2C6DE","#FCD05C","#5FE2C5","#4498DB","#9863E7","#E43A96",...p0.presetColors??[]]'),
|
|
602
|
-
|
|
854
|
+
class: _fnSignal((p0) => ({
|
|
855
|
+
"motion-safe:transition-all absolute top-full mt-2 left-0 gap-1 z-[1000]": true,
|
|
856
|
+
"opacity-0 scale-95 pointer-events-none": !p0.opened
|
|
857
|
+
}), [
|
|
858
|
+
store
|
|
859
|
+
], '{"motion-safe:transition-all absolute top-full mt-2 left-0 gap-1 z-[1000]":true,"opacity-0 scale-95 pointer-events-none":!p0.opened}')
|
|
603
860
|
}
|
|
604
861
|
}, 3, "0s_2")
|
|
605
862
|
], 1, "0s_3");
|
|
@@ -738,29 +995,29 @@ const ColorPickerRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((
|
|
|
738
995
|
...props1.class
|
|
739
996
|
}
|
|
740
997
|
}, {
|
|
998
|
+
"preventdefault:mousedown": true,
|
|
999
|
+
"preventdefault:touchstart": true,
|
|
741
1000
|
id: _fnSignal((p0) => p0.id ? `${p0.id}-picker` : void 0, [
|
|
742
1001
|
props
|
|
743
|
-
], "p0.id?`${p0.id}-picker`:undefined")
|
|
744
|
-
"preventdefault:mousedown": true,
|
|
745
|
-
"preventdefault:touchstart": true
|
|
1002
|
+
], "p0.id?`${p0.id}-picker`:undefined")
|
|
746
1003
|
}, [
|
|
747
1004
|
/* @__PURE__ */ _jsxQ("div", null, {
|
|
748
1005
|
class: "flex gap-4"
|
|
749
1006
|
}, [
|
|
750
1007
|
/* @__PURE__ */ _jsxQ("div", null, {
|
|
751
1008
|
class: "w-[125px] h-[150px] border border-gray-700 rounded-md relative",
|
|
752
|
-
onMouseDown$: sbMouseDown,
|
|
753
|
-
onTouchStart$: sbMouseDown,
|
|
754
|
-
"preventdefault:mousedown": true,
|
|
755
|
-
"preventdefault:touchstart": true,
|
|
756
1009
|
style: _fnSignal((p0) => ({
|
|
757
1010
|
background: `linear-gradient(to right, #FFFFFF, ${p0.hue.color})`
|
|
758
1011
|
}), [
|
|
759
1012
|
store
|
|
760
|
-
], "{background:`linear-gradient(to right, #FFFFFF, ${p0.hue.color})`}")
|
|
1013
|
+
], "{background:`linear-gradient(to right, #FFFFFF, ${p0.hue.color})`}"),
|
|
1014
|
+
"preventdefault:mousedown": true,
|
|
1015
|
+
"preventdefault:touchstart": true,
|
|
1016
|
+
onMouseDown$: sbMouseDown,
|
|
1017
|
+
onTouchStart$: sbMouseDown
|
|
761
1018
|
}, [
|
|
762
1019
|
/* @__PURE__ */ _jsxQ("div", null, {
|
|
763
|
-
class: "w-[
|
|
1020
|
+
class: "w-[123px] h-[148px] rounded-[0.3rem] bg-gradient-to-b from-transparent to-black"
|
|
764
1021
|
}, null, 3, null),
|
|
765
1022
|
/* @__PURE__ */ _jsxQ("div", null, {
|
|
766
1023
|
class: "absolute -top-2 -left-2 w-4 h-4 border border-white rounded-full bg-white",
|
|
@@ -774,13 +1031,13 @@ const ColorPickerRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((
|
|
|
774
1031
|
], 3, null),
|
|
775
1032
|
/* @__PURE__ */ _jsxQ("div", null, {
|
|
776
1033
|
class: "h-[150px] relative w-2 border border-gray-700 rounded-md",
|
|
777
|
-
onMouseDown$: hueMouseDown,
|
|
778
|
-
onTouchStart$: hueMouseDown,
|
|
779
|
-
"preventdefault:mousedown": true,
|
|
780
|
-
"preventdefault:touchstart": true,
|
|
781
1034
|
style: {
|
|
782
1035
|
background: "linear-gradient(to bottom, #ff0000, #ff00ff, #0000ff, #00ffff, #00ff00, #ffff00, #ff0000)"
|
|
783
|
-
}
|
|
1036
|
+
},
|
|
1037
|
+
"preventdefault:mousedown": true,
|
|
1038
|
+
"preventdefault:touchstart": true,
|
|
1039
|
+
onMouseDown$: hueMouseDown,
|
|
1040
|
+
onTouchStart$: hueMouseDown
|
|
784
1041
|
}, /* @__PURE__ */ _jsxQ("div", null, {
|
|
785
1042
|
class: "absolute -bottom-2 -left-[5px] w-4 h-4 border border-white rounded-full bg-[#ff0000]",
|
|
786
1043
|
style: _fnSignal((p0) => ({
|
|
@@ -795,6 +1052,7 @@ const ColorPickerRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((
|
|
|
795
1052
|
class: "w-[150px] flex flex-wrap gap-1 justify-evenly"
|
|
796
1053
|
}, props.colors.map((color, i) => {
|
|
797
1054
|
return /* @__PURE__ */ _jsxQ("button", {
|
|
1055
|
+
style: `background: ${color}`,
|
|
798
1056
|
onMouseDown$: /* @__PURE__ */ inlinedQrl(() => {
|
|
799
1057
|
const [color2, setColor2] = useLexicalScope();
|
|
800
1058
|
setColor2(color2);
|
|
@@ -808,8 +1066,7 @@ const ColorPickerRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((
|
|
|
808
1066
|
}, "ColorPickerRaw_component_div_div_button_onTouchStart_qgiiO8Blb88", [
|
|
809
1067
|
color,
|
|
810
1068
|
setColor
|
|
811
|
-
])
|
|
812
|
-
style: `background: ${color}`
|
|
1069
|
+
])
|
|
813
1070
|
}, {
|
|
814
1071
|
class: "w-[25px] h-[25px] border border-gray-700 rounded-md hover:scale-110 motion-safe:transition-all",
|
|
815
1072
|
"preventdefault:mousedown": true,
|
|
@@ -820,21 +1077,26 @@ const ColorPickerRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((
|
|
|
820
1077
|
}, "ColorPickerRaw_component_CWQPPcezhyA"));
|
|
821
1078
|
const ChevronDown = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
822
1079
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
1080
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1081
|
+
viewBox: "0 0 512 512",
|
|
823
1082
|
...props,
|
|
1083
|
+
get height() {
|
|
1084
|
+
return props.width;
|
|
1085
|
+
},
|
|
824
1086
|
children: /* @__PURE__ */ _jsxQ("path", null, {
|
|
825
|
-
d: "M112 184l144 144 144-144",
|
|
826
1087
|
fill: "none",
|
|
827
1088
|
stroke: "currentColor",
|
|
828
1089
|
"stroke-linecap": "round",
|
|
829
1090
|
"stroke-linejoin": "round",
|
|
830
|
-
"stroke-width": "48"
|
|
1091
|
+
"stroke-width": "48",
|
|
1092
|
+
d: "M112 184l144 144 144-144"
|
|
831
1093
|
}, null, 3, null)
|
|
832
1094
|
}, {
|
|
1095
|
+
xmlns: _IMMUTABLE,
|
|
1096
|
+
viewBox: _IMMUTABLE,
|
|
833
1097
|
height: _fnSignal((p0) => p0.width, [
|
|
834
1098
|
props
|
|
835
|
-
], "p0.width")
|
|
836
|
-
viewBox: "0 0 512 512",
|
|
837
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
1099
|
+
], "p0.width")
|
|
838
1100
|
}, 0, "rN_0");
|
|
839
1101
|
}, "ChevronDown_component_V0linof0cMQ"));
|
|
840
1102
|
const Dropdown = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
@@ -842,10 +1104,10 @@ const Dropdown = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props)
|
|
|
842
1104
|
class: "flex flex-col"
|
|
843
1105
|
}, [
|
|
844
1106
|
/* @__PURE__ */ _jsxQ("label", null, {
|
|
845
|
-
class: "text-gray-300 pb-1 select-none",
|
|
846
1107
|
for: _fnSignal((p0) => p0.id, [
|
|
847
1108
|
props
|
|
848
|
-
], "p0.id")
|
|
1109
|
+
], "p0.id"),
|
|
1110
|
+
class: "text-gray-300 pb-1 select-none"
|
|
849
1111
|
}, /* @__PURE__ */ _jsxC(Slot, null, 3, "Zz_0"), 1, null),
|
|
850
1112
|
/* @__PURE__ */ _jsxC(DropdownRaw, {
|
|
851
1113
|
...props
|
|
@@ -859,6 +1121,7 @@ const DropdownRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
|
|
|
859
1121
|
"class",
|
|
860
1122
|
"display",
|
|
861
1123
|
"color",
|
|
1124
|
+
"transparent",
|
|
862
1125
|
"size",
|
|
863
1126
|
"hover"
|
|
864
1127
|
]);
|
|
@@ -898,23 +1161,30 @@ const DropdownRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
|
|
|
898
1161
|
}, [
|
|
899
1162
|
props.values && /* @__PURE__ */ _jsxS("select", {
|
|
900
1163
|
...props1,
|
|
1164
|
+
get id() {
|
|
1165
|
+
return props.id;
|
|
1166
|
+
},
|
|
1167
|
+
class: {
|
|
1168
|
+
"hidden": true
|
|
1169
|
+
},
|
|
901
1170
|
children: props.values.map((value, i) => {
|
|
902
1171
|
return /* @__PURE__ */ _jsxQ("option", {
|
|
903
1172
|
value: _wrapSignal(value, "value")
|
|
904
1173
|
}, null, `${value.value}`, 1, i);
|
|
905
1174
|
})
|
|
906
1175
|
}, {
|
|
907
|
-
class: {
|
|
908
|
-
"hidden": true
|
|
909
|
-
},
|
|
910
1176
|
id: _fnSignal((p0) => p0.id, [
|
|
911
1177
|
props
|
|
912
|
-
], "p0.id")
|
|
1178
|
+
], "p0.id"),
|
|
1179
|
+
class: _IMMUTABLE
|
|
913
1180
|
}, 0, "Zz_3"),
|
|
914
1181
|
/* @__PURE__ */ _jsxC(Button, {
|
|
915
1182
|
get color() {
|
|
916
1183
|
return props.color;
|
|
917
1184
|
},
|
|
1185
|
+
get transparent() {
|
|
1186
|
+
return props.transparent;
|
|
1187
|
+
},
|
|
918
1188
|
get size() {
|
|
919
1189
|
return props.size ?? "sm";
|
|
920
1190
|
},
|
|
@@ -924,15 +1194,21 @@ const DropdownRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
|
|
|
924
1194
|
...props.class
|
|
925
1195
|
};
|
|
926
1196
|
},
|
|
1197
|
+
onClick$: /* @__PURE__ */ inlinedQrl(() => {
|
|
1198
|
+
const [store2] = useLexicalScope();
|
|
1199
|
+
store2.opened = !store2.opened;
|
|
1200
|
+
}, "DropdownRaw_component_div_Button_onClick_d8M33E0JtyQ", [
|
|
1201
|
+
store
|
|
1202
|
+
]),
|
|
927
1203
|
children: [
|
|
928
1204
|
_fnSignal((p0) => p0.display, [
|
|
929
1205
|
props
|
|
930
1206
|
], "p0.display"),
|
|
931
1207
|
!props.display && props.values && /* @__PURE__ */ _jsxQ("span", null, {
|
|
932
|
-
class: "flex-1 text-left",
|
|
933
1208
|
id: _fnSignal((p0) => `lui-${p0.id}-name`, [
|
|
934
1209
|
props
|
|
935
|
-
], "`lui-${p0.id}-name`")
|
|
1210
|
+
], "`lui-${p0.id}-name`"),
|
|
1211
|
+
class: "flex-1 text-left"
|
|
936
1212
|
}, props.values.find((value) => value.value.toString() === store.value)?.name ?? props.values[0].name, 1, "Zz_4"),
|
|
937
1213
|
/* @__PURE__ */ _jsxC(ChevronDown, {
|
|
938
1214
|
width: 16,
|
|
@@ -944,6 +1220,7 @@ const DropdownRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
|
|
|
944
1220
|
};
|
|
945
1221
|
},
|
|
946
1222
|
[_IMMUTABLE]: {
|
|
1223
|
+
width: _IMMUTABLE,
|
|
947
1224
|
class: _fnSignal((p0, p1) => ({
|
|
948
1225
|
"motion-safe:transition-all duration-200": true,
|
|
949
1226
|
"transform rotate-180": p1.opened,
|
|
@@ -951,54 +1228,50 @@ const DropdownRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
|
|
|
951
1228
|
}), [
|
|
952
1229
|
props,
|
|
953
1230
|
store
|
|
954
|
-
], '{"motion-safe:transition-all duration-200":true,"transform rotate-180":p1.opened,"group-hover:transform group-hover:rotate-180":p0.hover}')
|
|
955
|
-
width: _IMMUTABLE
|
|
1231
|
+
], '{"motion-safe:transition-all duration-200":true,"transform rotate-180":p1.opened,"group-hover:transform group-hover:rotate-180":p0.hover}')
|
|
956
1232
|
}
|
|
957
1233
|
}, 3, "Zz_5")
|
|
958
1234
|
],
|
|
959
|
-
onClick$: /* @__PURE__ */ inlinedQrl(() => {
|
|
960
|
-
const [store2] = useLexicalScope();
|
|
961
|
-
store2.opened = !store2.opened;
|
|
962
|
-
}, "DropdownRaw_component_div_Button_onClick_d8M33E0JtyQ", [
|
|
963
|
-
store
|
|
964
|
-
]),
|
|
965
1235
|
[_IMMUTABLE]: {
|
|
1236
|
+
color: _fnSignal((p0) => p0.color, [
|
|
1237
|
+
props
|
|
1238
|
+
], "p0.color"),
|
|
1239
|
+
transparent: _fnSignal((p0) => p0.transparent, [
|
|
1240
|
+
props
|
|
1241
|
+
], "p0.transparent"),
|
|
1242
|
+
size: _fnSignal((p0) => p0.size ?? "sm", [
|
|
1243
|
+
props
|
|
1244
|
+
], 'p0.size??"sm"'),
|
|
966
1245
|
class: _fnSignal((p0) => ({
|
|
967
1246
|
"flex": true,
|
|
968
1247
|
...p0.class
|
|
969
1248
|
}), [
|
|
970
1249
|
props
|
|
971
1250
|
], '{"flex":true,...p0.class}'),
|
|
972
|
-
|
|
973
|
-
props
|
|
974
|
-
], "p0.color"),
|
|
975
|
-
onClick$: _IMMUTABLE,
|
|
976
|
-
size: _fnSignal((p0) => p0.size ?? "sm", [
|
|
977
|
-
props
|
|
978
|
-
], 'p0.size??"sm"')
|
|
1251
|
+
onClick$: _IMMUTABLE
|
|
979
1252
|
}
|
|
980
1253
|
}, 1, "Zz_6"),
|
|
981
1254
|
/* @__PURE__ */ _jsxQ("div", {
|
|
982
1255
|
class: {
|
|
983
|
-
"absolute top-full pt-2 left-0 z-[1000] ": true,
|
|
1256
|
+
"transition-all absolute top-full pt-2 left-0 z-[1000] ": true,
|
|
984
1257
|
"opacity-0 scale-95 pointer-events-none": !store.opened,
|
|
985
1258
|
"group-hover:pointer-events-auto group-hover:opacity-100 group-hover:scale-100": props.hover
|
|
986
1259
|
}
|
|
987
1260
|
}, null, /* @__PURE__ */ _jsxQ("div", null, {
|
|
988
|
-
class: {
|
|
989
|
-
"motion-safe:transition-all p-1.5 gap-1 bg-gray-800/50 backdrop-blur-xl flex flex-col rounded-lg border border-gray-700 max-h-72 lui-scroll overflow-auto select-none": true
|
|
990
|
-
},
|
|
991
1261
|
id: _fnSignal((p0) => `lui-${p0.id}-opts`, [
|
|
992
1262
|
props
|
|
993
|
-
], "`lui-${p0.id}-opts`")
|
|
1263
|
+
], "`lui-${p0.id}-opts`"),
|
|
1264
|
+
class: {
|
|
1265
|
+
"motion-safe:transition-all p-1.5 gap-1 bg-gray-800/50 backdrop-blur-xl flex flex-col rounded-lg border border-gray-700 max-h-72 lui-scroll overflow-auto select-none": true
|
|
1266
|
+
}
|
|
994
1267
|
}, [
|
|
995
|
-
props.values?.map(({ name, value, color
|
|
1268
|
+
props.values?.map(({ name, value, color: valueColor }, i) => {
|
|
996
1269
|
return /* @__PURE__ */ _jsxC(Button, {
|
|
997
|
-
color,
|
|
1270
|
+
color: valueColor ?? props.color,
|
|
1271
|
+
transparent: true,
|
|
998
1272
|
get size() {
|
|
999
1273
|
return props.size ?? "sm";
|
|
1000
1274
|
},
|
|
1001
|
-
children: name,
|
|
1002
1275
|
onClick$: /* @__PURE__ */ inlinedQrl(() => {
|
|
1003
1276
|
const [props2, store2, value2] = useLexicalScope();
|
|
1004
1277
|
store2.opened = false;
|
|
@@ -1013,7 +1286,9 @@ const DropdownRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
|
|
|
1013
1286
|
store,
|
|
1014
1287
|
value
|
|
1015
1288
|
]),
|
|
1289
|
+
children: name,
|
|
1016
1290
|
[_IMMUTABLE]: {
|
|
1291
|
+
transparent: _IMMUTABLE,
|
|
1017
1292
|
size: _fnSignal((p0) => p0.size ?? "sm", [
|
|
1018
1293
|
props
|
|
1019
1294
|
], 'p0.size??"sm"')
|
|
@@ -1036,6 +1311,14 @@ const LoadingIcon = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
|
|
|
1036
1311
|
]);
|
|
1037
1312
|
return /* @__PURE__ */ _jsxS("div", {
|
|
1038
1313
|
...props1,
|
|
1314
|
+
get style() {
|
|
1315
|
+
return {
|
|
1316
|
+
borderWidth: props.width / 8,
|
|
1317
|
+
width: props.width,
|
|
1318
|
+
height: props.width,
|
|
1319
|
+
animation: `spin ${props.speed ?? "0.6s"} ease-in-out infinite`
|
|
1320
|
+
};
|
|
1321
|
+
},
|
|
1039
1322
|
class: {
|
|
1040
1323
|
"animate-spin rounded-full border-transparent border-l-current border-t-current": true,
|
|
1041
1324
|
...props1.class
|
|
@@ -1112,15 +1395,30 @@ const Header = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =
|
|
|
1112
1395
|
return Component;
|
|
1113
1396
|
}, "Header_component_FfGOhhBNG5k"));
|
|
1114
1397
|
const navColorClasses = {
|
|
1398
|
+
slate: "bg-slate-700/50 border-slate-600/50",
|
|
1399
|
+
gray: "bg-gray-700/50 border-gray-600/50",
|
|
1400
|
+
darkgray: "bg-gray-800/50 border-gray-700/50",
|
|
1401
|
+
darkergray: "bg-gray-900/50 border-gray-800/50",
|
|
1402
|
+
zinc: "bg-zinc-700/50 border-zinc-600/50",
|
|
1403
|
+
neutral: "bg-neutral-700/50 border-neutral-600/50",
|
|
1404
|
+
stone: "bg-stone-700/50 border-stone-600/50",
|
|
1115
1405
|
red: "bg-red-700/50 border-red-600/50",
|
|
1116
1406
|
orange: "bg-orange-700/50 border-orange-600/50",
|
|
1407
|
+
amber: "bg-amber-700/50 border-amber-600/50",
|
|
1117
1408
|
yellow: "bg-yellow-700/50 border-yellow-600/50",
|
|
1409
|
+
lime: "bg-lime-700/50 border-lime-600/50",
|
|
1118
1410
|
green: "bg-green-700/50 border-green-600/50",
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1411
|
+
emerald: "bg-emerald-700/50 border-emerald-600/50",
|
|
1412
|
+
teal: "bg-teal-700/50 border-teal-600/50",
|
|
1413
|
+
cyan: "bg-cyan-700/50 border-cyan-600/50",
|
|
1414
|
+
sky: "bg-sky-700/50 border-sky-600/50",
|
|
1415
|
+
blue: "bg-blue-700/50 border-blue-600/50",
|
|
1416
|
+
indigo: "bg-indigo-700/50 border-indigo-600/50",
|
|
1417
|
+
violet: "bg-violet-700/50 border-violet-600/50",
|
|
1418
|
+
purple: "bg-purple-700/50 border-purple-600/50",
|
|
1419
|
+
fuchsia: "bg-fuchsia-700/50 border-fuchsia-600/50",
|
|
1420
|
+
pink: "bg-pink-700/50 border-pink-600/50",
|
|
1421
|
+
rose: "bg-rose-700/50 border-rose-600/50",
|
|
1124
1422
|
transparent: "bg-transparent border-transparent"
|
|
1125
1423
|
};
|
|
1126
1424
|
const Nav = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
@@ -1132,19 +1430,25 @@ const Nav = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
|
1132
1430
|
const menu = useSignal(false);
|
|
1133
1431
|
return /* @__PURE__ */ _jsxS("nav", {
|
|
1134
1432
|
...props1,
|
|
1433
|
+
class: {
|
|
1434
|
+
"motion-safe:transition-all duration-200 flex flex-col top-0 left-0 w-full z-50": true,
|
|
1435
|
+
"fixed": props.fixed,
|
|
1436
|
+
"absolute": !props.fixed,
|
|
1437
|
+
...props1.class
|
|
1438
|
+
},
|
|
1135
1439
|
children: [
|
|
1136
1440
|
/* @__PURE__ */ _jsxQ("div", {
|
|
1137
1441
|
class: {
|
|
1138
1442
|
"sm:hidden motion-safe:transition-all flex flex-col px-2 items-center absolute w-full": true,
|
|
1139
1443
|
"top-full mt-2": menu.value,
|
|
1140
|
-
"opacity-0 top-0 scale-95 pointer-events-none": !menu.value
|
|
1444
|
+
"opacity-0 top-0 scale-95 pointer-events-none": !menu.value,
|
|
1445
|
+
"before:backdrop-blur-lg": props.color !== "transparent",
|
|
1446
|
+
'before:absolute before:content-[""] before:w-full before:h-full before:drop-shadow-xl before:-z-10 before:rounded-lg': true
|
|
1141
1447
|
}
|
|
1142
1448
|
}, null, /* @__PURE__ */ _jsxQ("div", {
|
|
1143
1449
|
class: {
|
|
1144
1450
|
[navColorClasses[props.color ?? "darkgray"]]: true,
|
|
1145
|
-
"flex flex-col gap-2 motion-safe:transition-all max-w-7xl w-full px-2 py-4 border rounded-lg": true
|
|
1146
|
-
"before:backdrop-blur-lg": props.color !== "transparent",
|
|
1147
|
-
'before:absolute before:content-[""] before:w-full before:h-full before:drop-shadow-xl before:-z-10': true
|
|
1451
|
+
"flex flex-col gap-2 motion-safe:transition-all max-w-7xl w-full px-2 py-4 border rounded-lg": true
|
|
1148
1452
|
}
|
|
1149
1453
|
}, null, /* @__PURE__ */ _jsxC(Slot, {
|
|
1150
1454
|
name: "mobile",
|
|
@@ -1195,6 +1499,17 @@ const Nav = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
|
1195
1499
|
}
|
|
1196
1500
|
}, 3, "8r_3"),
|
|
1197
1501
|
/* @__PURE__ */ _jsxC(Button, {
|
|
1502
|
+
transparent: true,
|
|
1503
|
+
square: true,
|
|
1504
|
+
class: {
|
|
1505
|
+
"sm:hidden": true
|
|
1506
|
+
},
|
|
1507
|
+
onClick$: /* @__PURE__ */ inlinedQrl(() => {
|
|
1508
|
+
const [menu2] = useLexicalScope();
|
|
1509
|
+
return menu2.value = !menu2.value;
|
|
1510
|
+
}, "Nav_component_nav_div_div_div_Button_onClick_J0TKJTxh4N4", [
|
|
1511
|
+
menu
|
|
1512
|
+
]),
|
|
1198
1513
|
children: /* @__PURE__ */ _jsxQ("svg", null, {
|
|
1199
1514
|
class: "w-6 h-6",
|
|
1200
1515
|
fill: "none",
|
|
@@ -1202,76 +1517,69 @@ const Nav = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
|
1202
1517
|
viewBox: "0 0 24 24",
|
|
1203
1518
|
xmlns: "http://www.w3.org/2000/svg"
|
|
1204
1519
|
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1205
|
-
d: "M4 6h16M4 12h16m-7 6h7",
|
|
1206
1520
|
"stroke-linecap": "round",
|
|
1207
1521
|
"stroke-linejoin": "round",
|
|
1208
|
-
"stroke-width": "2"
|
|
1522
|
+
"stroke-width": "2",
|
|
1523
|
+
d: "M4 6h16M4 12h16m-7 6h7"
|
|
1209
1524
|
}, null, 3, null), 3, null),
|
|
1210
|
-
class: {
|
|
1211
|
-
"sm:hidden": true
|
|
1212
|
-
},
|
|
1213
|
-
color: "transparent",
|
|
1214
|
-
onClick$: /* @__PURE__ */ inlinedQrl(() => {
|
|
1215
|
-
const [menu2] = useLexicalScope();
|
|
1216
|
-
return menu2.value = !menu2.value;
|
|
1217
|
-
}, "Nav_component_nav_div_div_div_Button_onClick_J0TKJTxh4N4", [
|
|
1218
|
-
menu
|
|
1219
|
-
]),
|
|
1220
|
-
square: true,
|
|
1221
1525
|
[_IMMUTABLE]: {
|
|
1526
|
+
transparent: _IMMUTABLE,
|
|
1527
|
+
square: _IMMUTABLE,
|
|
1222
1528
|
class: _IMMUTABLE,
|
|
1223
|
-
|
|
1224
|
-
onClick$: _IMMUTABLE,
|
|
1225
|
-
square: _IMMUTABLE
|
|
1529
|
+
onClick$: _IMMUTABLE
|
|
1226
1530
|
}
|
|
1227
1531
|
}, 3, "8r_4")
|
|
1228
1532
|
], 1, null)
|
|
1229
1533
|
], 1, null), 1, null)
|
|
1230
|
-
]
|
|
1231
|
-
class: {
|
|
1232
|
-
"motion-safe:transition-all duration-200 flex flex-col top-0 left-0 w-full z-50": true,
|
|
1233
|
-
"fixed": props.fixed,
|
|
1234
|
-
"absolute": !props.fixed,
|
|
1235
|
-
...props1.class
|
|
1236
|
-
}
|
|
1534
|
+
]
|
|
1237
1535
|
}, null, 0, "8r_5");
|
|
1238
1536
|
}, "Nav_component_ZePSmw9628k"));
|
|
1239
1537
|
const Plus = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1240
1538
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
1539
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1540
|
+
viewBox: "0 0 512 512",
|
|
1241
1541
|
...props,
|
|
1542
|
+
get height() {
|
|
1543
|
+
return props.width;
|
|
1544
|
+
},
|
|
1242
1545
|
children: /* @__PURE__ */ _jsxQ("path", null, {
|
|
1243
|
-
d: "M256 112v288M400 256H112",
|
|
1244
1546
|
fill: "none",
|
|
1245
1547
|
stroke: "currentColor",
|
|
1246
1548
|
"stroke-linecap": "round",
|
|
1247
1549
|
"stroke-linejoin": "round",
|
|
1248
|
-
"stroke-width": "32"
|
|
1550
|
+
"stroke-width": "32",
|
|
1551
|
+
d: "M256 112v288M400 256H112"
|
|
1249
1552
|
}, null, 3, null)
|
|
1250
1553
|
}, {
|
|
1554
|
+
xmlns: _IMMUTABLE,
|
|
1555
|
+
viewBox: _IMMUTABLE,
|
|
1251
1556
|
height: _fnSignal((p0) => p0.width, [
|
|
1252
1557
|
props
|
|
1253
|
-
], "p0.width")
|
|
1254
|
-
viewBox: "0 0 512 512",
|
|
1255
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
1558
|
+
], "p0.width")
|
|
1256
1559
|
}, 0, "qR_0");
|
|
1257
1560
|
}, "Plus_component_a7LdBXNrC2w"));
|
|
1258
1561
|
const Minus = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1259
1562
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
1563
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1564
|
+
viewBox: "0 0 512 512",
|
|
1260
1565
|
...props,
|
|
1566
|
+
get height() {
|
|
1567
|
+
return props.width;
|
|
1568
|
+
},
|
|
1261
1569
|
children: /* @__PURE__ */ _jsxQ("path", null, {
|
|
1262
|
-
d: "M400 256H112",
|
|
1263
1570
|
fill: "none",
|
|
1264
1571
|
stroke: "currentColor",
|
|
1265
1572
|
"stroke-linecap": "round",
|
|
1266
1573
|
"stroke-linejoin": "round",
|
|
1267
|
-
"stroke-width": "32"
|
|
1574
|
+
"stroke-width": "32",
|
|
1575
|
+
d: "M400 256H112"
|
|
1268
1576
|
}, null, 3, null)
|
|
1269
1577
|
}, {
|
|
1578
|
+
xmlns: _IMMUTABLE,
|
|
1579
|
+
viewBox: _IMMUTABLE,
|
|
1270
1580
|
height: _fnSignal((p0) => p0.width, [
|
|
1271
1581
|
props
|
|
1272
|
-
], "p0.width")
|
|
1273
|
-
viewBox: "0 0 512 512",
|
|
1274
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
1582
|
+
], "p0.width")
|
|
1275
1583
|
}, 0, "0g_0");
|
|
1276
1584
|
}, "Minus_component_oP9l58XNP1Q"));
|
|
1277
1585
|
const NumberInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
@@ -1279,10 +1587,10 @@ const NumberInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
|
|
|
1279
1587
|
class: "flex flex-col"
|
|
1280
1588
|
}, [
|
|
1281
1589
|
/* @__PURE__ */ _jsxQ("label", null, {
|
|
1282
|
-
class: "text-gray-300 pb-1 select-none",
|
|
1283
1590
|
for: _fnSignal((p0) => p0.id, [
|
|
1284
1591
|
props
|
|
1285
|
-
], "p0.id")
|
|
1592
|
+
], "p0.id"),
|
|
1593
|
+
class: "text-gray-300 pb-1 select-none"
|
|
1286
1594
|
}, /* @__PURE__ */ _jsxC(Slot, null, 3, "gk_0"), 1, null),
|
|
1287
1595
|
/* @__PURE__ */ _jsxC(NumberInputRaw, {
|
|
1288
1596
|
...props,
|
|
@@ -1293,6 +1601,7 @@ const NumberInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
|
|
|
1293
1601
|
const NumberInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1294
1602
|
const props1 = _restProps(props, [
|
|
1295
1603
|
"input",
|
|
1604
|
+
"color",
|
|
1296
1605
|
"onDecrement$",
|
|
1297
1606
|
"onIncrement$",
|
|
1298
1607
|
"value",
|
|
@@ -1319,10 +1628,13 @@ const NumberInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((
|
|
|
1319
1628
|
/* @__PURE__ */ _jsxC(Button, {
|
|
1320
1629
|
size: "sm",
|
|
1321
1630
|
get color() {
|
|
1322
|
-
return props.input ? "gray" : "darkgray";
|
|
1631
|
+
return (props.color ?? "darkgray") == "darkgray" || (props.color ?? "darkgray") == "transparent" ? props.input ? "gray" : "darkgray" : props.color ?? "darkgray";
|
|
1632
|
+
},
|
|
1633
|
+
get transparent() {
|
|
1634
|
+
return (props.color ?? "darkgray") == "transparent";
|
|
1323
1635
|
},
|
|
1324
|
-
"aria-label": "Decrement",
|
|
1325
1636
|
"data-action": "decrement",
|
|
1637
|
+
"aria-label": "Decrement",
|
|
1326
1638
|
disabled: props1.min ? (props.value ?? 0) <= props1.min : false,
|
|
1327
1639
|
onClick$: props.input ? /* @__PURE__ */ inlinedQrl((event, element) => {
|
|
1328
1640
|
const [props2] = useLexicalScope();
|
|
@@ -1338,50 +1650,64 @@ const NumberInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((
|
|
|
1338
1650
|
};
|
|
1339
1651
|
},
|
|
1340
1652
|
children: /* @__PURE__ */ _jsxC(Minus, {
|
|
1341
|
-
class: "fill-current",
|
|
1342
1653
|
width: "24",
|
|
1654
|
+
class: "fill-current",
|
|
1343
1655
|
[_IMMUTABLE]: {
|
|
1344
|
-
|
|
1345
|
-
|
|
1656
|
+
width: _IMMUTABLE,
|
|
1657
|
+
class: _IMMUTABLE
|
|
1346
1658
|
}
|
|
1347
1659
|
}, 3, "gk_3"),
|
|
1348
1660
|
[_IMMUTABLE]: {
|
|
1661
|
+
size: _IMMUTABLE,
|
|
1662
|
+
color: _fnSignal((p0) => (p0.color ?? "darkgray") == "darkgray" || (p0.color ?? "darkgray") == "transparent" ? p0.input ? "gray" : "darkgray" : p0.color ?? "darkgray", [
|
|
1663
|
+
props
|
|
1664
|
+
], '(p0.color??"darkgray")=="darkgray"||(p0.color??"darkgray")=="transparent"?p0.input?"gray":"darkgray":p0.color??"darkgray"'),
|
|
1665
|
+
transparent: _fnSignal((p0) => (p0.color ?? "darkgray") == "transparent", [
|
|
1666
|
+
props
|
|
1667
|
+
], '(p0.color??"darkgray")=="transparent"'),
|
|
1668
|
+
"data-action": _IMMUTABLE,
|
|
1349
1669
|
"aria-label": _IMMUTABLE,
|
|
1350
1670
|
class: _fnSignal((p0) => ({
|
|
1351
1671
|
"mr-2": p0.input
|
|
1352
1672
|
}), [
|
|
1353
1673
|
props
|
|
1354
|
-
], '{"mr-2":p0.input}')
|
|
1355
|
-
color: _fnSignal((p0) => p0.input ? "gray" : "darkgray", [
|
|
1356
|
-
props
|
|
1357
|
-
], 'p0.input?"gray":"darkgray"'),
|
|
1358
|
-
"data-action": _IMMUTABLE,
|
|
1359
|
-
size: _IMMUTABLE
|
|
1674
|
+
], '{"mr-2":p0.input}')
|
|
1360
1675
|
}
|
|
1361
1676
|
}, 0, "gk_4"),
|
|
1362
1677
|
props.input && /* @__PURE__ */ _jsxS("input", {
|
|
1363
1678
|
...props1,
|
|
1679
|
+
type: "number",
|
|
1680
|
+
get value() {
|
|
1681
|
+
return props.value ?? 0;
|
|
1682
|
+
},
|
|
1683
|
+
get step() {
|
|
1684
|
+
return props.step ?? 1;
|
|
1685
|
+
},
|
|
1364
1686
|
class: {
|
|
1365
1687
|
[InputClasses]: true,
|
|
1688
|
+
[InputColorClasses[props.color ?? "darkgray"]]: true,
|
|
1366
1689
|
"text-center": true,
|
|
1367
1690
|
...props1.class
|
|
1368
1691
|
}
|
|
1369
1692
|
}, {
|
|
1370
|
-
|
|
1371
|
-
props
|
|
1372
|
-
], "p0.step??1"),
|
|
1373
|
-
type: "number",
|
|
1693
|
+
type: _IMMUTABLE,
|
|
1374
1694
|
value: _fnSignal((p0) => p0.value ?? 0, [
|
|
1375
1695
|
props
|
|
1376
|
-
], "p0.value??0")
|
|
1696
|
+
], "p0.value??0"),
|
|
1697
|
+
step: _fnSignal((p0) => p0.step ?? 1, [
|
|
1698
|
+
props
|
|
1699
|
+
], "p0.step??1")
|
|
1377
1700
|
}, 0, "gk_5"),
|
|
1378
1701
|
/* @__PURE__ */ _jsxC(Button, {
|
|
1379
1702
|
size: "sm",
|
|
1380
1703
|
get color() {
|
|
1381
|
-
return props.input ? "gray" : "darkgray";
|
|
1704
|
+
return (props.color ?? "darkgray") == "darkgray" || (props.color ?? "darkgray") == "transparent" ? props.input ? "gray" : "darkgray" : props.color ?? "darkgray";
|
|
1705
|
+
},
|
|
1706
|
+
get transparent() {
|
|
1707
|
+
return (props.color ?? "darkgray") == "transparent";
|
|
1382
1708
|
},
|
|
1383
|
-
"aria-label": "Increment",
|
|
1384
1709
|
"data-action": "increment",
|
|
1710
|
+
"aria-label": "Increment",
|
|
1385
1711
|
disabled: props1.max ? (props.value ?? 0) >= props1.max : false,
|
|
1386
1712
|
onClick$: props.input ? /* @__PURE__ */ inlinedQrl((event, element) => {
|
|
1387
1713
|
const [props2] = useLexicalScope();
|
|
@@ -1397,25 +1723,28 @@ const NumberInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((
|
|
|
1397
1723
|
};
|
|
1398
1724
|
},
|
|
1399
1725
|
children: /* @__PURE__ */ _jsxC(Plus, {
|
|
1400
|
-
class: "fill-current",
|
|
1401
1726
|
width: "24",
|
|
1727
|
+
class: "fill-current",
|
|
1402
1728
|
[_IMMUTABLE]: {
|
|
1403
|
-
|
|
1404
|
-
|
|
1729
|
+
width: _IMMUTABLE,
|
|
1730
|
+
class: _IMMUTABLE
|
|
1405
1731
|
}
|
|
1406
1732
|
}, 3, "gk_6"),
|
|
1407
1733
|
[_IMMUTABLE]: {
|
|
1734
|
+
size: _IMMUTABLE,
|
|
1735
|
+
color: _fnSignal((p0) => (p0.color ?? "darkgray") == "darkgray" || (p0.color ?? "darkgray") == "transparent" ? p0.input ? "gray" : "darkgray" : p0.color ?? "darkgray", [
|
|
1736
|
+
props
|
|
1737
|
+
], '(p0.color??"darkgray")=="darkgray"||(p0.color??"darkgray")=="transparent"?p0.input?"gray":"darkgray":p0.color??"darkgray"'),
|
|
1738
|
+
transparent: _fnSignal((p0) => (p0.color ?? "darkgray") == "transparent", [
|
|
1739
|
+
props
|
|
1740
|
+
], '(p0.color??"darkgray")=="transparent"'),
|
|
1741
|
+
"data-action": _IMMUTABLE,
|
|
1408
1742
|
"aria-label": _IMMUTABLE,
|
|
1409
1743
|
class: _fnSignal((p0) => ({
|
|
1410
1744
|
"ml-2": p0.input
|
|
1411
1745
|
}), [
|
|
1412
1746
|
props
|
|
1413
|
-
], '{"ml-2":p0.input}')
|
|
1414
|
-
color: _fnSignal((p0) => p0.input ? "gray" : "darkgray", [
|
|
1415
|
-
props
|
|
1416
|
-
], 'p0.input?"gray":"darkgray"'),
|
|
1417
|
-
"data-action": _IMMUTABLE,
|
|
1418
|
-
size: _IMMUTABLE
|
|
1747
|
+
], '{"ml-2":p0.input}')
|
|
1419
1748
|
}
|
|
1420
1749
|
}, 0, "gk_7")
|
|
1421
1750
|
], 1, "gk_8");
|
|
@@ -1425,10 +1754,10 @@ const TextArea = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props)
|
|
|
1425
1754
|
class: "flex flex-col"
|
|
1426
1755
|
}, [
|
|
1427
1756
|
/* @__PURE__ */ _jsxQ("label", null, {
|
|
1428
|
-
class: "text-gray-300 pb-1 select-none",
|
|
1429
1757
|
for: _fnSignal((p0) => p0.id, [
|
|
1430
1758
|
props
|
|
1431
|
-
], "p0.id")
|
|
1759
|
+
], "p0.id"),
|
|
1760
|
+
class: "text-gray-300 pb-1 select-none"
|
|
1432
1761
|
}, /* @__PURE__ */ _jsxC(Slot, null, 3, "UP_0"), 1, null),
|
|
1433
1762
|
/* @__PURE__ */ _jsxC(TextAreaRaw, {
|
|
1434
1763
|
...props
|
|
@@ -1437,6 +1766,7 @@ const TextArea = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props)
|
|
|
1437
1766
|
}, "TextArea_component_rWDoQFL2c0g"));
|
|
1438
1767
|
const TextAreaRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1439
1768
|
const props1 = _restProps(props, [
|
|
1769
|
+
"color",
|
|
1440
1770
|
"output"
|
|
1441
1771
|
]);
|
|
1442
1772
|
return /* @__PURE__ */ _jsxC(Fragment, {
|
|
@@ -1444,10 +1774,14 @@ const TextAreaRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
|
|
|
1444
1774
|
...props1,
|
|
1445
1775
|
class: {
|
|
1446
1776
|
[InputClasses]: true,
|
|
1777
|
+
[InputColorClasses[props.color ?? "darkgray"]]: true,
|
|
1447
1778
|
"h-32": true,
|
|
1448
|
-
"cursor-pointer
|
|
1779
|
+
"cursor-pointer select-none": props.output,
|
|
1449
1780
|
...props1.class
|
|
1450
1781
|
},
|
|
1782
|
+
get readOnly() {
|
|
1783
|
+
return props.output;
|
|
1784
|
+
},
|
|
1451
1785
|
onClick$: props.output ? /* @__PURE__ */ inlinedQrl((event, element) => {
|
|
1452
1786
|
navigator.clipboard.writeText(element.value);
|
|
1453
1787
|
const notification = document.createElement("div");
|
|
@@ -1465,10 +1799,208 @@ const TextAreaRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pro
|
|
|
1465
1799
|
}, 0, null)
|
|
1466
1800
|
}, 1, "UP_3");
|
|
1467
1801
|
}, "TextAreaRaw_component_PZiPScYxgNk"));
|
|
1802
|
+
const toggleOnColorClasses = {
|
|
1803
|
+
slate: {
|
|
1804
|
+
checked: "peer-checked:bg-slate-600 peer-checked:border-slate-500 peer-checked:hover:bg-slate-500 peer-checked:active:bg-slate-400",
|
|
1805
|
+
checkedAfter: "peer-checked:after:bg-slate-500 peer-checked:after:border-slate-400 peer-checked:after:hover:bg-slate-400 peer-checked:after:active:bg-slate-300"
|
|
1806
|
+
},
|
|
1807
|
+
gray: {
|
|
1808
|
+
checked: "peer-checked:bg-gray-600 peer-checked:border-gray-500 peer-checked:hover:bg-gray-500 peer-checked:active:bg-gray-400",
|
|
1809
|
+
checkedAfter: "peer-checked:after:bg-gray-500 peer-checked:after:border-gray-400 peer-checked:after:hover:bg-gray-400 peer-checked:after:active:bg-gray-300"
|
|
1810
|
+
},
|
|
1811
|
+
darkgray: {
|
|
1812
|
+
checked: "peer-checked:bg-gray-700 peer-checked:border-gray-600 peer-checked:hover:bg-gray-600 peer-checked:active:bg-gray-500",
|
|
1813
|
+
checkedAfter: "peer-checked:after:bg-gray-600 peer-checked:after:border-gray-500 peer-checked:after:hover:bg-gray-500 peer-checked:after:active:bg-gray-400"
|
|
1814
|
+
},
|
|
1815
|
+
darkergray: {
|
|
1816
|
+
checked: "peer-checked:bg-gray-800 peer-checked:border-gray-700 peer-checked:hover:bg-gray-700 peer-checked:active:bg-gray-600",
|
|
1817
|
+
checkedAfter: "peer-checked:after:bg-gray-700 peer-checked:after:border-gray-600 peer-checked:after:hover:bg-gray-600 peer-checked:after:active:bg-gray-500"
|
|
1818
|
+
},
|
|
1819
|
+
zinc: {
|
|
1820
|
+
checked: "peer-checked:bg-zinc-600 peer-checked:border-zinc-500 peer-checked:hover:bg-zinc-500 peer-checked:active:bg-zinc-400",
|
|
1821
|
+
checkedAfter: "peer-checked:after:bg-zinc-500 peer-checked:after:border-zinc-400 peer-checked:after:hover:bg-zinc-400 peer-checked:after:active:bg-zinc-300"
|
|
1822
|
+
},
|
|
1823
|
+
neutral: {
|
|
1824
|
+
checked: "peer-checked:bg-neutral-600 peer-checked:border-neutral-500 peer-checked:hover:bg-neutral-500 peer-checked:active:bg-neutral-400",
|
|
1825
|
+
checkedAfter: "peer-checked:after:bg-neutral-500 peer-checked:after:border-neutral-400 peer-checked:after:hover:bg-neutral-400 peer-checked:after:active:bg-neutral-300"
|
|
1826
|
+
},
|
|
1827
|
+
stone: {
|
|
1828
|
+
checked: "peer-checked:bg-stone-600 peer-checked:border-stone-500 peer-checked:hover:bg-stone-500 peer-checked:active:bg-stone-400",
|
|
1829
|
+
checkedAfter: "peer-checked:after:bg-stone-500 peer-checked:after:border-stone-400 peer-checked:after:hover:bg-stone-400 peer-checked:after:active:bg-stone-300"
|
|
1830
|
+
},
|
|
1831
|
+
red: {
|
|
1832
|
+
checked: "peer-checked:bg-red-600 peer-checked:border-red-500 peer-checked:hover:bg-red-500 peer-checked:active:bg-red-400",
|
|
1833
|
+
checkedAfter: "peer-checked:after:bg-red-500 peer-checked:after:border-red-400 peer-checked:after:hover:bg-red-400 peer-checked:after:active:bg-red-300"
|
|
1834
|
+
},
|
|
1835
|
+
orange: {
|
|
1836
|
+
checked: "peer-checked:bg-orange-600 peer-checked:border-orange-500 peer-checked:hover:bg-orange-500 peer-checked:active:bg-orange-400",
|
|
1837
|
+
checkedAfter: "peer-checked:after:bg-orange-500 peer-checked:after:border-orange-400 peer-checked:after:hover:bg-orange-400 peer-checked:after:active:bg-orange-300"
|
|
1838
|
+
},
|
|
1839
|
+
amber: {
|
|
1840
|
+
checked: "peer-checked:bg-amber-600 peer-checked:border-amber-500 peer-checked:hover:bg-amber-500 peer-checked:active:bg-amber-400",
|
|
1841
|
+
checkedAfter: "peer-checked:after:bg-amber-500 peer-checked:after:border-amber-400 peer-checked:after:hover:bg-amber-400 peer-checked:after:active:bg-amber-300"
|
|
1842
|
+
},
|
|
1843
|
+
yellow: {
|
|
1844
|
+
checked: "peer-checked:bg-yellow-600 peer-checked:border-yellow-500 peer-checked:hover:bg-yellow-500 peer-checked:active:bg-yellow-400",
|
|
1845
|
+
checkedAfter: "peer-checked:after:bg-yellow-500 peer-checked:after:border-yellow-400 peer-checked:after:hover:bg-yellow-400 peer-checked:after:active:bg-yellow-300"
|
|
1846
|
+
},
|
|
1847
|
+
lime: {
|
|
1848
|
+
checked: "peer-checked:bg-lime-600 peer-checked:border-lime-500 peer-checked:hover:bg-lime-500 peer-checked:active:bg-lime-400",
|
|
1849
|
+
checkedAfter: "peer-checked:after:bg-lime-500 peer-checked:after:border-lime-400 peer-checked:after:hover:bg-lime-400 peer-checked:after:active:bg-lime-300"
|
|
1850
|
+
},
|
|
1851
|
+
green: {
|
|
1852
|
+
checked: "peer-checked:bg-green-600 peer-checked:border-green-500 peer-checked:hover:bg-green-500 peer-checked:active:bg-green-400",
|
|
1853
|
+
checkedAfter: "peer-checked:after:bg-green-500 peer-checked:after:border-green-400 peer-checked:after:hover:bg-green-400 peer-checked:after:active:bg-green-300"
|
|
1854
|
+
},
|
|
1855
|
+
emerald: {
|
|
1856
|
+
checked: "peer-checked:bg-emerald-600 peer-checked:border-emerald-500 peer-checked:hover:bg-emerald-500 peer-checked:active:bg-emerald-400",
|
|
1857
|
+
checkedAfter: "peer-checked:after:bg-emerald-500 peer-checked:after:border-emerald-400 peer-checked:after:hover:bg-emerald-400 peer-checked:after:active:bg-emerald-300"
|
|
1858
|
+
},
|
|
1859
|
+
teal: {
|
|
1860
|
+
checked: "peer-checked:bg-teal-600 peer-checked:border-teal-500 peer-checked:hover:bg-teal-500 peer-checked:active:bg-teal-400",
|
|
1861
|
+
checkedAfter: "peer-checked:after:bg-teal-500 peer-checked:after:border-teal-400 peer-checked:after:hover:bg-teal-400 peer-checked:after:active:bg-teal-300"
|
|
1862
|
+
},
|
|
1863
|
+
cyan: {
|
|
1864
|
+
checked: "peer-checked:bg-cyan-600 peer-checked:border-cyan-500 peer-checked:hover:bg-cyan-500 peer-checked:active:bg-cyan-400",
|
|
1865
|
+
checkedAfter: "peer-checked:after:bg-cyan-500 peer-checked:after:border-cyan-400 peer-checked:after:hover:bg-cyan-400 peer-checked:after:active:bg-cyan-300"
|
|
1866
|
+
},
|
|
1867
|
+
sky: {
|
|
1868
|
+
checked: "peer-checked:bg-sky-600 peer-checked:border-sky-500 peer-checked:hover:bg-sky-500 peer-checked:active:bg-sky-400",
|
|
1869
|
+
checkedAfter: "peer-checked:after:bg-sky-500 peer-checked:after:border-sky-400 peer-checked:after:hover:bg-sky-400 peer-checked:after:active:bg-sky-300"
|
|
1870
|
+
},
|
|
1871
|
+
blue: {
|
|
1872
|
+
checked: "peer-checked:bg-blue-600 peer-checked:border-blue-500 peer-checked:hover:bg-blue-500 peer-checked:active:bg-blue-400",
|
|
1873
|
+
checkedAfter: "peer-checked:after:bg-blue-500 peer-checked:after:border-blue-400 peer-checked:after:hover:bg-blue-400 peer-checked:after:active:bg-blue-300"
|
|
1874
|
+
},
|
|
1875
|
+
indigo: {
|
|
1876
|
+
checked: "peer-checked:bg-indigo-600 peer-checked:border-indigo-500 peer-checked:hover:bg-indigo-500 peer-checked:active:bg-indigo-400",
|
|
1877
|
+
checkedAfter: "peer-checked:after:bg-indigo-500 peer-checked:after:border-indigo-400 peer-checked:after:hover:bg-indigo-400 peer-checked:after:active:bg-indigo-300"
|
|
1878
|
+
},
|
|
1879
|
+
violet: {
|
|
1880
|
+
checked: "peer-checked:bg-violet-600 peer-checked:border-violet-500 peer-checked:hover:bg-violet-500 peer-checked:active:bg-violet-400",
|
|
1881
|
+
checkedAfter: "peer-checked:after:bg-violet-500 peer-checked:after:border-violet-400 peer-checked:after:hover:bg-violet-400 peer-checked:after:active:bg-violet-300"
|
|
1882
|
+
},
|
|
1883
|
+
purple: {
|
|
1884
|
+
checked: "peer-checked:bg-purple-600 peer-checked:border-purple-500 peer-checked:hover:bg-purple-500 peer-checked:active:bg-purple-400",
|
|
1885
|
+
checkedAfter: "peer-checked:after:bg-purple-500 peer-checked:after:border-purple-400 peer-checked:after:hover:bg-purple-400 peer-checked:after:active:bg-purple-300"
|
|
1886
|
+
},
|
|
1887
|
+
fuchsia: {
|
|
1888
|
+
checked: "peer-checked:bg-fuchsia-600 peer-checked:border-fuchsia-500 peer-checked:hover:bg-fuchsia-500 peer-checked:active:bg-fuchsia-400",
|
|
1889
|
+
checkedAfter: "peer-checked:after:bg-fuchsia-500 peer-checked:after:border-fuchsia-400 peer-checked:after:hover:bg-fuchsia-400 peer-checked:after:active:bg-fuchsia-300"
|
|
1890
|
+
},
|
|
1891
|
+
pink: {
|
|
1892
|
+
checked: "peer-checked:bg-pink-600 peer-checked:border-pink-500 peer-checked:hover:bg-pink-500 peer-checked:active:bg-pink-400",
|
|
1893
|
+
checkedAfter: "peer-checked:after:bg-pink-500 peer-checked:after:border-pink-400 peer-checked:after:hover:bg-pink-400 peer-checked:after:active:bg-pink-300"
|
|
1894
|
+
},
|
|
1895
|
+
rose: {
|
|
1896
|
+
checked: "peer-checked:bg-rose-600 peer-checked:border-rose-500 peer-checked:hover:bg-rose-500 peer-checked:active:bg-rose-400",
|
|
1897
|
+
checkedAfter: "peer-checked:after:bg-rose-500 peer-checked:after:border-rose-400 peer-checked:after:hover:bg-rose-400 peer-checked:after:active:bg-rose-300"
|
|
1898
|
+
}
|
|
1899
|
+
};
|
|
1900
|
+
const toggleOffColorClasses = {
|
|
1901
|
+
slate: {
|
|
1902
|
+
unchecked: "bg-slate-700 border-slate-600 hover:bg-slate-600 active:bg-slate-500",
|
|
1903
|
+
uncheckedAfter: "after:bg-slate-600 after:border-slate-500 after:hover:bg-slate-500 after:active:bg-slate-400"
|
|
1904
|
+
},
|
|
1905
|
+
gray: {
|
|
1906
|
+
unchecked: "bg-gray-700 border-gray-600 hover:bg-gray-600 active:bg-gray-500",
|
|
1907
|
+
uncheckedAfter: "after:bg-gray-600 after:border-gray-500 after:hover:bg-gray-500 after:active:bg-gray-400"
|
|
1908
|
+
},
|
|
1909
|
+
darkgray: {
|
|
1910
|
+
unchecked: "bg-gray-800 border-gray-700 hover:bg-gray-700 active:bg-gray-600",
|
|
1911
|
+
uncheckedAfter: "after:bg-gray-700 after:border-gray-600 after:hover:bg-gray-600 after:active:bg-gray-500"
|
|
1912
|
+
},
|
|
1913
|
+
darkergray: {
|
|
1914
|
+
unchecked: "bg-gray-900 border-gray-800 hover:bg-gray-800 active:bg-gray-700",
|
|
1915
|
+
uncheckedAfter: "after:bg-gray-800 after:border-gray-700 after:hover:bg-gray-700 after:active:bg-gray-600"
|
|
1916
|
+
},
|
|
1917
|
+
zinc: {
|
|
1918
|
+
unchecked: "bg-zinc-700 border-zinc-600 hover:bg-zinc-600 active:bg-zinc-500",
|
|
1919
|
+
uncheckedAfter: "after:bg-zinc-600 after:border-zinc-500 after:hover:bg-zinc-500 after:active:bg-zinc-400"
|
|
1920
|
+
},
|
|
1921
|
+
neutral: {
|
|
1922
|
+
unchecked: "bg-neutral-700 border-neutral-600 hover:bg-neutral-600 active:bg-neutral-500",
|
|
1923
|
+
uncheckedAfter: "after:bg-neutral-600 after:border-neutral-500 after:hover:bg-neutral-500 after:active:bg-neutral-400"
|
|
1924
|
+
},
|
|
1925
|
+
stone: {
|
|
1926
|
+
unchecked: "bg-stone-700 border-stone-600 hover:bg-stone-600 active:bg-stone-500",
|
|
1927
|
+
uncheckedAfter: "after:bg-stone-600 after:border-stone-500 after:hover:bg-stone-500 after:active:bg-stone-400"
|
|
1928
|
+
},
|
|
1929
|
+
red: {
|
|
1930
|
+
unchecked: "bg-red-700 border-red-600 hover:bg-red-600 active:bg-red-500",
|
|
1931
|
+
uncheckedAfter: "after:bg-red-600 after:border-red-500 after:hover:bg-red-500 after:active:bg-red-400"
|
|
1932
|
+
},
|
|
1933
|
+
orange: {
|
|
1934
|
+
unchecked: "bg-orange-700 border-orange-600 hover:bg-orange-600 active:bg-orange-500",
|
|
1935
|
+
uncheckedAfter: "after:bg-orange-600 after:border-orange-500 after:hover:bg-orange-500 after:active:bg-orange-400"
|
|
1936
|
+
},
|
|
1937
|
+
amber: {
|
|
1938
|
+
unchecked: "bg-amber-700 border-amber-600 hover:bg-amber-600 active:bg-amber-500",
|
|
1939
|
+
uncheckedAfter: "after:bg-amber-600 after:border-amber-500 after:hover:bg-amber-500 after:active:bg-amber-400"
|
|
1940
|
+
},
|
|
1941
|
+
yellow: {
|
|
1942
|
+
unchecked: "bg-yellow-700 border-yellow-600 hover:bg-yellow-600 active:bg-yellow-500",
|
|
1943
|
+
uncheckedAfter: "after:bg-yellow-600 after:border-yellow-500 after:hover:bg-yellow-500 after:active:bg-yellow-400"
|
|
1944
|
+
},
|
|
1945
|
+
lime: {
|
|
1946
|
+
unchecked: "bg-lime-700 border-lime-600 hover:bg-lime-600 active:bg-lime-500",
|
|
1947
|
+
uncheckedAfter: "after:bg-lime-600 after:border-lime-500 after:hover:bg-lime-500 after:active:bg-lime-400"
|
|
1948
|
+
},
|
|
1949
|
+
green: {
|
|
1950
|
+
unchecked: "bg-green-700 border-green-600 hover:bg-green-600 active:bg-green-500",
|
|
1951
|
+
uncheckedAfter: "after:bg-green-600 after:border-green-500 after:hover:bg-green-500 after:active:bg-green-400"
|
|
1952
|
+
},
|
|
1953
|
+
emerald: {
|
|
1954
|
+
unchecked: "bg-emerald-700 border-emerald-600 hover:bg-emerald-600 active:bg-emerald-500",
|
|
1955
|
+
uncheckedAfter: "after:bg-emerald-600 after:border-emerald-500 after:hover:bg-emerald-500 after:active:bg-emerald-400"
|
|
1956
|
+
},
|
|
1957
|
+
teal: {
|
|
1958
|
+
unchecked: "bg-teal-700 border-teal-600 hover:bg-teal-600 active:bg-teal-500",
|
|
1959
|
+
uncheckedAfter: "after:bg-teal-600 after:border-teal-500 after:hover:bg-teal-500 after:active:bg-teal-400"
|
|
1960
|
+
},
|
|
1961
|
+
cyan: {
|
|
1962
|
+
unchecked: "bg-cyan-700 border-cyan-600 hover:bg-cyan-600 active:bg-cyan-500",
|
|
1963
|
+
uncheckedAfter: "after:bg-cyan-600 after:border-cyan-500 after:hover:bg-cyan-500 after:active:bg-cyan-400"
|
|
1964
|
+
},
|
|
1965
|
+
sky: {
|
|
1966
|
+
unchecked: "bg-sky-700 border-sky-600 hover:bg-sky-600 active:bg-sky-500",
|
|
1967
|
+
uncheckedAfter: "after:bg-sky-600 after:border-sky-500 after:hover:bg-sky-500 after:active:bg-sky-400"
|
|
1968
|
+
},
|
|
1969
|
+
blue: {
|
|
1970
|
+
unchecked: "bg-blue-700 border-blue-600 hover:bg-blue-600 active:bg-blue-500",
|
|
1971
|
+
uncheckedAfter: "after:bg-blue-600 after:border-blue-500 after:hover:bg-blue-500 after:active:bg-blue-400"
|
|
1972
|
+
},
|
|
1973
|
+
indigo: {
|
|
1974
|
+
unchecked: "bg-indigo-700 border-indigo-600 hover:bg-indigo-600 active:bg-indigo-500",
|
|
1975
|
+
uncheckedAfter: "after:bg-indigo-600 after:border-indigo-500 after:hover:bg-indigo-500 after:active:bg-indigo-400"
|
|
1976
|
+
},
|
|
1977
|
+
violet: {
|
|
1978
|
+
unchecked: "bg-violet-700 border-violet-600 hover:bg-violet-600 active:bg-violet-500",
|
|
1979
|
+
uncheckedAfter: "after:bg-violet-600 after:border-violet-500 after:hover:bg-violet-500 after:active:bg-violet-400"
|
|
1980
|
+
},
|
|
1981
|
+
purple: {
|
|
1982
|
+
unchecked: "bg-purple-700 border-purple-600 hover:bg-purple-600 active:bg-purple-500",
|
|
1983
|
+
uncheckedAfter: "after:bg-purple-600 after:border-purple-500 after:hover:bg-purple-500 after:active:bg-purple-400"
|
|
1984
|
+
},
|
|
1985
|
+
fuchsia: {
|
|
1986
|
+
unchecked: "bg-fuchsia-700 border-fuchsia-600 hover:bg-fuchsia-600 active:bg-fuchsia-500",
|
|
1987
|
+
uncheckedAfter: "after:bg-fuchsia-600 after:border-fuchsia-500 after:hover:bg-fuchsia-500 after:active:bg-fuchsia-400"
|
|
1988
|
+
},
|
|
1989
|
+
pink: {
|
|
1990
|
+
unchecked: "bg-pink-700 border-pink-600 hover:bg-pink-600 active:bg-pink-500",
|
|
1991
|
+
uncheckedAfter: "after:bg-pink-600 after:border-pink-500 after:hover:bg-pink-500 after:active:bg-pink-400"
|
|
1992
|
+
},
|
|
1993
|
+
rose: {
|
|
1994
|
+
unchecked: "bg-rose-700 border-rose-600 hover:bg-rose-600 active:bg-rose-500",
|
|
1995
|
+
uncheckedAfter: "after:bg-rose-600 after:border-rose-500 after:hover:bg-rose-500 after:active:bg-rose-400"
|
|
1996
|
+
}
|
|
1997
|
+
};
|
|
1468
1998
|
const Toggle = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1469
1999
|
const props1 = _restProps(props, [
|
|
1470
2000
|
"center",
|
|
1471
|
-
"label"
|
|
2001
|
+
"label",
|
|
2002
|
+
"onColor",
|
|
2003
|
+
"offColor"
|
|
1472
2004
|
]);
|
|
1473
2005
|
return /* @__PURE__ */ _jsxQ("div", null, {
|
|
1474
2006
|
class: _fnSignal((p0) => ({
|
|
@@ -1482,24 +2014,26 @@ const Toggle = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) =
|
|
|
1482
2014
|
class: "inline-flex relative items-center cursor-pointer"
|
|
1483
2015
|
}, [
|
|
1484
2016
|
/* @__PURE__ */ _jsxS("input", {
|
|
2017
|
+
type: "checkbox",
|
|
1485
2018
|
...props1,
|
|
1486
2019
|
class: {
|
|
1487
2020
|
"sr-only peer": true,
|
|
1488
2021
|
...props1.class
|
|
1489
2022
|
}
|
|
1490
2023
|
}, {
|
|
1491
|
-
type:
|
|
2024
|
+
type: _IMMUTABLE
|
|
1492
2025
|
}, 0, null),
|
|
1493
|
-
/* @__PURE__ */ _jsxQ("div",
|
|
2026
|
+
/* @__PURE__ */ _jsxQ("div", {
|
|
1494
2027
|
class: {
|
|
1495
2028
|
"motion-safe:transition ease-in-out w-12 h-7 rounded-md peer border hover:shadow-lg": true,
|
|
1496
|
-
"
|
|
1497
|
-
"
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
2029
|
+
"after:content-[''] after:absolute after:top-[4px] after:left-[4px] after:border after:rounded-[0.2rem] after:h-5 after:w-5 after:motion-safe:transition-all after:ease-in-out": true,
|
|
2030
|
+
"peer-checked:after:translate-x-full": true,
|
|
2031
|
+
[toggleOnColorClasses[props.onColor ?? "blue"].checked]: true,
|
|
2032
|
+
[toggleOnColorClasses[props.onColor ?? "blue"].checkedAfter]: true,
|
|
2033
|
+
[toggleOffColorClasses[props.offColor ?? "darkgray"].unchecked]: true,
|
|
2034
|
+
[toggleOffColorClasses[props.offColor ?? "darkgray"].uncheckedAfter]: true
|
|
1501
2035
|
}
|
|
1502
|
-
}, null, 3, null)
|
|
2036
|
+
}, null, null, 3, null)
|
|
1503
2037
|
], 1, null),
|
|
1504
2038
|
props.label && /* @__PURE__ */ _jsxQ("label", {
|
|
1505
2039
|
for: _wrapSignal(props1, "id")
|
|
@@ -1516,15 +2050,22 @@ const LogoBirdflop = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pr
|
|
|
1516
2050
|
"fillGradient"
|
|
1517
2051
|
]);
|
|
1518
2052
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
2053
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2054
|
+
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
2055
|
+
viewBox: "0 0 1080 1080",
|
|
1519
2056
|
...props1,
|
|
2057
|
+
get height() {
|
|
2058
|
+
return props1.width;
|
|
2059
|
+
},
|
|
2060
|
+
height: _wrapSignal(props1, "width"),
|
|
1520
2061
|
children: [
|
|
1521
2062
|
/* @__PURE__ */ _jsxQ("defs", null, null, [
|
|
1522
2063
|
props.fillGradient && /* @__PURE__ */ _jsxQ("linearGradient", null, {
|
|
1523
|
-
gradientUnits: "objectBoundingBox",
|
|
1524
2064
|
id: "linear-gradient",
|
|
1525
2065
|
x1: "0.5",
|
|
1526
2066
|
x2: "0.5",
|
|
1527
|
-
y2: "1"
|
|
2067
|
+
y2: "1",
|
|
2068
|
+
gradientUnits: "objectBoundingBox"
|
|
1528
2069
|
}, props.fillGradient.map((color, i) => /* @__PURE__ */ _jsxQ("stop", {
|
|
1529
2070
|
offset: i / (props.fillGradient.length - 1),
|
|
1530
2071
|
"stop-color": color
|
|
@@ -1532,28 +2073,28 @@ const LogoBirdflop = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pr
|
|
|
1532
2073
|
/* @__PURE__ */ _jsxQ("clipPath", null, {
|
|
1533
2074
|
id: "clip-bf_3"
|
|
1534
2075
|
}, /* @__PURE__ */ _jsxQ("rect", null, {
|
|
1535
|
-
|
|
1536
|
-
|
|
2076
|
+
width: "1080",
|
|
2077
|
+
height: "1080"
|
|
1537
2078
|
}, null, 3, null), 3, null)
|
|
1538
2079
|
], 1, null),
|
|
1539
2080
|
/* @__PURE__ */ _jsxQ("g", null, {
|
|
1540
|
-
|
|
2081
|
+
id: "bf_3",
|
|
1541
2082
|
"data-name": "bf - 3",
|
|
1542
|
-
|
|
1543
|
-
|
|
2083
|
+
"clip-path": "url(#clip-bf_3)",
|
|
2084
|
+
fill: "currentColor"
|
|
1544
2085
|
}, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1545
|
-
|
|
2086
|
+
id: "Union_26",
|
|
1546
2087
|
"data-name": "Union 26",
|
|
2088
|
+
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",
|
|
2089
|
+
transform: "translate(2479.9 1169.7)",
|
|
1547
2090
|
fill: _fnSignal((p0) => p0.fillGradient ? "url(#linear-gradient)" : "", [
|
|
1548
2091
|
props
|
|
1549
|
-
], 'p0.fillGradient?"url(#linear-gradient)":""')
|
|
1550
|
-
id: "Union_26",
|
|
1551
|
-
transform: "translate(2479.9 1169.7)"
|
|
2092
|
+
], 'p0.fillGradient?"url(#linear-gradient)":""')
|
|
1552
2093
|
}, null, 3, null), 3, null),
|
|
1553
2094
|
props.confused && /* @__PURE__ */ _jsxQ("g", null, {
|
|
1554
|
-
|
|
2095
|
+
style: "transform: translate(595px, 460px) scale(0.375)",
|
|
1555
2096
|
stroke: "#1E2837",
|
|
1556
|
-
|
|
2097
|
+
fill: "#1E2837"
|
|
1557
2098
|
}, [
|
|
1558
2099
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1559
2100
|
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",
|
|
@@ -1569,89 +2110,124 @@ const LogoBirdflop = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pr
|
|
|
1569
2110
|
style: "transform: translate(0, 30px)"
|
|
1570
2111
|
}, null, 3, null)
|
|
1571
2112
|
], 3, "Ie_1")
|
|
1572
|
-
]
|
|
1573
|
-
height: _wrapSignal(props1, "width")
|
|
2113
|
+
]
|
|
1574
2114
|
}, {
|
|
1575
|
-
|
|
1576
|
-
xmlns:
|
|
1577
|
-
|
|
2115
|
+
xmlns: _IMMUTABLE,
|
|
2116
|
+
"xmlns:xlink": _IMMUTABLE,
|
|
2117
|
+
viewBox: _IMMUTABLE
|
|
1578
2118
|
}, 0, "Ie_2");
|
|
1579
2119
|
}, "LogoBirdflop_component_mKG3xZaEE5w"));
|
|
1580
2120
|
const LogoDiscord = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1581
2121
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
2122
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2123
|
+
viewBox: "0 0 127.14 96.36",
|
|
2124
|
+
fill: "currentColor",
|
|
1582
2125
|
...props,
|
|
2126
|
+
get height() {
|
|
2127
|
+
return props.width;
|
|
2128
|
+
},
|
|
1583
2129
|
children: /* @__PURE__ */ _jsxQ("path", null, {
|
|
1584
2130
|
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"
|
|
1585
2131
|
}, null, 3, null)
|
|
1586
2132
|
}, {
|
|
1587
|
-
|
|
2133
|
+
xmlns: _IMMUTABLE,
|
|
2134
|
+
viewBox: _IMMUTABLE,
|
|
2135
|
+
fill: _IMMUTABLE,
|
|
1588
2136
|
height: _fnSignal((p0) => p0.width, [
|
|
1589
2137
|
props
|
|
1590
|
-
], "p0.width")
|
|
1591
|
-
viewBox: "0 0 127.14 96.36",
|
|
1592
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
2138
|
+
], "p0.width")
|
|
1593
2139
|
}, 0, "V4_0");
|
|
1594
2140
|
}, "LogoDiscord_component_pyJvo9cIDdU"));
|
|
1595
2141
|
const LogoFabric = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1596
2142
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
2143
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2144
|
+
"xml:space": "preserve",
|
|
2145
|
+
"fill-rule": "evenodd",
|
|
2146
|
+
"stroke-linecap": "round",
|
|
2147
|
+
"stroke-linejoin": "round",
|
|
2148
|
+
"clip-rule": "evenodd",
|
|
2149
|
+
viewBox: "0 0 24 24",
|
|
1597
2150
|
...props,
|
|
2151
|
+
get height() {
|
|
2152
|
+
return props.width;
|
|
2153
|
+
},
|
|
1598
2154
|
children: [
|
|
1599
2155
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1600
|
-
|
|
1601
|
-
|
|
2156
|
+
fill: "none",
|
|
2157
|
+
d: "M0 0h24v24H0z"
|
|
1602
2158
|
}, null, 3, null),
|
|
1603
2159
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1604
|
-
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",
|
|
1605
2160
|
fill: "none",
|
|
1606
2161
|
stroke: "currentColor",
|
|
1607
2162
|
"stroke-width": "23",
|
|
2163
|
+
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",
|
|
1608
2164
|
transform: "matrix(.08671 0 0 .0867 -49.8 -56)"
|
|
1609
2165
|
}, null, 3, null)
|
|
1610
2166
|
]
|
|
1611
2167
|
}, {
|
|
1612
|
-
|
|
1613
|
-
"
|
|
2168
|
+
xmlns: _IMMUTABLE,
|
|
2169
|
+
"xml:space": _IMMUTABLE,
|
|
2170
|
+
"fill-rule": _IMMUTABLE,
|
|
2171
|
+
"stroke-linecap": _IMMUTABLE,
|
|
2172
|
+
"stroke-linejoin": _IMMUTABLE,
|
|
2173
|
+
"clip-rule": _IMMUTABLE,
|
|
2174
|
+
viewBox: _IMMUTABLE,
|
|
1614
2175
|
height: _fnSignal((p0) => p0.width, [
|
|
1615
2176
|
props
|
|
1616
|
-
], "p0.width")
|
|
1617
|
-
"stroke-linecap": "round",
|
|
1618
|
-
"stroke-linejoin": "round",
|
|
1619
|
-
viewBox: "0 0 24 24",
|
|
1620
|
-
"xml:space": "preserve",
|
|
1621
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
2177
|
+
], "p0.width")
|
|
1622
2178
|
}, 0, "W4_0");
|
|
1623
2179
|
}, "LogoFabric_component_bOPyyyFEHuI"));
|
|
1624
2180
|
const LogoForge = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1625
2181
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
2182
|
+
"xml:space": "preserve",
|
|
2183
|
+
"fill-rule": "evenodd",
|
|
2184
|
+
"stroke-linecap": "round",
|
|
2185
|
+
"stroke-linejoin": "round",
|
|
2186
|
+
"stroke-miterlimit": "1.5",
|
|
2187
|
+
"clip-rule": "evenodd",
|
|
2188
|
+
viewBox: "0 0 24 24",
|
|
1626
2189
|
...props,
|
|
2190
|
+
get height() {
|
|
2191
|
+
return props.width;
|
|
2192
|
+
},
|
|
1627
2193
|
children: [
|
|
1628
2194
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1629
|
-
|
|
1630
|
-
|
|
2195
|
+
fill: "none",
|
|
2196
|
+
d: "M0 0h24v24H0z"
|
|
1631
2197
|
}, null, 3, null),
|
|
1632
2198
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1633
|
-
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",
|
|
1634
2199
|
fill: "none",
|
|
1635
2200
|
stroke: "currentColor",
|
|
1636
|
-
"stroke-width": "2"
|
|
2201
|
+
"stroke-width": "2",
|
|
2202
|
+
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"
|
|
1637
2203
|
}, null, 3, null)
|
|
1638
2204
|
]
|
|
1639
2205
|
}, {
|
|
1640
|
-
"
|
|
1641
|
-
"fill-rule":
|
|
2206
|
+
"xml:space": _IMMUTABLE,
|
|
2207
|
+
"fill-rule": _IMMUTABLE,
|
|
2208
|
+
"stroke-linecap": _IMMUTABLE,
|
|
2209
|
+
"stroke-linejoin": _IMMUTABLE,
|
|
2210
|
+
"stroke-miterlimit": _IMMUTABLE,
|
|
2211
|
+
"clip-rule": _IMMUTABLE,
|
|
2212
|
+
viewBox: _IMMUTABLE,
|
|
1642
2213
|
height: _fnSignal((p0) => p0.width, [
|
|
1643
2214
|
props
|
|
1644
|
-
], "p0.width")
|
|
1645
|
-
"stroke-linecap": "round",
|
|
1646
|
-
"stroke-linejoin": "round",
|
|
1647
|
-
"stroke-miterlimit": "1.5",
|
|
1648
|
-
viewBox: "0 0 24 24",
|
|
1649
|
-
"xml:space": "preserve"
|
|
2215
|
+
], "p0.width")
|
|
1650
2216
|
}, 0, "6E_0");
|
|
1651
2217
|
}, "LogoForge_component_mRpm0rEP3vY"));
|
|
1652
2218
|
const LogoLuminescent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1653
2219
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
2220
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2221
|
+
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
2222
|
+
zoomAndPan: "magnify",
|
|
2223
|
+
viewBox: "80 80 220 220",
|
|
2224
|
+
preserveAspectRatio: "xMidYMid meet",
|
|
2225
|
+
version: "1.0",
|
|
2226
|
+
fill: "currentColor",
|
|
1654
2227
|
...props,
|
|
2228
|
+
get height() {
|
|
2229
|
+
return props.width;
|
|
2230
|
+
},
|
|
1655
2231
|
children: /* @__PURE__ */ _jsxQ("g", null, {
|
|
1656
2232
|
"fill-opacity": "1"
|
|
1657
2233
|
}, /* @__PURE__ */ _jsxQ("g", null, {
|
|
@@ -1660,20 +2236,27 @@ const LogoLuminescent = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
1660
2236
|
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 "
|
|
1661
2237
|
}, null, 3, null), 3, null), 3, null)
|
|
1662
2238
|
}, {
|
|
1663
|
-
|
|
2239
|
+
xmlns: _IMMUTABLE,
|
|
2240
|
+
"xmlns:xlink": _IMMUTABLE,
|
|
2241
|
+
zoomAndPan: _IMMUTABLE,
|
|
2242
|
+
viewBox: _IMMUTABLE,
|
|
2243
|
+
preserveAspectRatio: _IMMUTABLE,
|
|
2244
|
+
version: _IMMUTABLE,
|
|
2245
|
+
fill: _IMMUTABLE,
|
|
1664
2246
|
height: _fnSignal((p0) => p0.width, [
|
|
1665
2247
|
props
|
|
1666
|
-
], "p0.width")
|
|
1667
|
-
preserveAspectRatio: "xMidYMid meet",
|
|
1668
|
-
version: "1.0",
|
|
1669
|
-
viewBox: "80 80 220 220",
|
|
1670
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1671
|
-
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
1672
|
-
zoomAndPan: "magnify"
|
|
2248
|
+
], "p0.width")
|
|
1673
2249
|
}, 0, "Jv_0");
|
|
1674
2250
|
}, "LogoLuminescent_component_2ppcIednMJs"));
|
|
1675
2251
|
const LogoLuminescentFull = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1676
2252
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
2253
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2254
|
+
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
2255
|
+
zoomAndPan: "magnify",
|
|
2256
|
+
viewBox: "30 60 1160 200",
|
|
2257
|
+
preserveAspectRatio: "xMidYMid meet",
|
|
2258
|
+
version: "1.0",
|
|
2259
|
+
fill: "currentColor",
|
|
1677
2260
|
...props,
|
|
1678
2261
|
children: [
|
|
1679
2262
|
/* @__PURE__ */ _jsxQ("g", null, {
|
|
@@ -1755,59 +2338,76 @@ const LogoLuminescentFull = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlined
|
|
|
1755
2338
|
}, null, 3, null), 3, null), 3, null)
|
|
1756
2339
|
]
|
|
1757
2340
|
}, {
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
viewBox:
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
2341
|
+
xmlns: _IMMUTABLE,
|
|
2342
|
+
"xmlns:xlink": _IMMUTABLE,
|
|
2343
|
+
zoomAndPan: _IMMUTABLE,
|
|
2344
|
+
viewBox: _IMMUTABLE,
|
|
2345
|
+
preserveAspectRatio: _IMMUTABLE,
|
|
2346
|
+
version: _IMMUTABLE,
|
|
2347
|
+
fill: _IMMUTABLE
|
|
1765
2348
|
}, 0, "Jv_1");
|
|
1766
2349
|
}, "LogoLuminescentFull_component_UNzyq3QUKpA"));
|
|
1767
2350
|
const LogoPaper = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1768
2351
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
2352
|
+
"xml:space": "preserve",
|
|
2353
|
+
"fill-rule": "evenodd",
|
|
2354
|
+
"stroke-linecap": "round",
|
|
2355
|
+
"stroke-linejoin": "round",
|
|
2356
|
+
"stroke-miterlimit": "1.5",
|
|
2357
|
+
"clip-rule": "evenodd",
|
|
2358
|
+
viewBox: "0 0 24 24",
|
|
1769
2359
|
...props,
|
|
2360
|
+
get height() {
|
|
2361
|
+
return props.width;
|
|
2362
|
+
},
|
|
1770
2363
|
children: [
|
|
1771
2364
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1772
|
-
|
|
1773
|
-
|
|
2365
|
+
fill: "none",
|
|
2366
|
+
d: "M0 0h24v24H0z"
|
|
1774
2367
|
}, null, 3, null),
|
|
1775
2368
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1776
|
-
d: "m12 18 6 2 3-17L2 14l6 2",
|
|
1777
2369
|
fill: "none",
|
|
1778
2370
|
stroke: "currentColor",
|
|
1779
|
-
"stroke-width": "2"
|
|
2371
|
+
"stroke-width": "2",
|
|
2372
|
+
d: "m12 18 6 2 3-17L2 14l6 2"
|
|
1780
2373
|
}, null, 3, null),
|
|
1781
2374
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1782
|
-
d: "m9 21-1-5 4 2-3 3Z",
|
|
1783
2375
|
stroke: "currentColor",
|
|
1784
|
-
"stroke-width": "2"
|
|
2376
|
+
"stroke-width": "2",
|
|
2377
|
+
d: "m9 21-1-5 4 2-3 3Z"
|
|
1785
2378
|
}, null, 3, null),
|
|
1786
2379
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1787
|
-
|
|
1788
|
-
|
|
2380
|
+
fill: "currentColor",
|
|
2381
|
+
d: "m12 18-4-2 10-9-6 11Z"
|
|
1789
2382
|
}, null, 3, null)
|
|
1790
2383
|
]
|
|
1791
2384
|
}, {
|
|
1792
|
-
"
|
|
1793
|
-
"fill-rule":
|
|
2385
|
+
"xml:space": _IMMUTABLE,
|
|
2386
|
+
"fill-rule": _IMMUTABLE,
|
|
2387
|
+
"stroke-linecap": _IMMUTABLE,
|
|
2388
|
+
"stroke-linejoin": _IMMUTABLE,
|
|
2389
|
+
"stroke-miterlimit": _IMMUTABLE,
|
|
2390
|
+
"clip-rule": _IMMUTABLE,
|
|
2391
|
+
viewBox: _IMMUTABLE,
|
|
1794
2392
|
height: _fnSignal((p0) => p0.width, [
|
|
1795
2393
|
props
|
|
1796
|
-
], "p0.width")
|
|
1797
|
-
"stroke-linecap": "round",
|
|
1798
|
-
"stroke-linejoin": "round",
|
|
1799
|
-
"stroke-miterlimit": "1.5",
|
|
1800
|
-
viewBox: "0 0 24 24",
|
|
1801
|
-
"xml:space": "preserve"
|
|
2394
|
+
], "p0.width")
|
|
1802
2395
|
}, 0, "2r_0");
|
|
1803
2396
|
}, "LogoPaper_component_pBDmaKNS7m4"));
|
|
1804
2397
|
const LogoPterodactyl = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1805
2398
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
2399
|
+
version: "1.0",
|
|
2400
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2401
|
+
viewBox: "0 0 180 180",
|
|
2402
|
+
preserveAspectRatio: "xMidYMid meet",
|
|
1806
2403
|
...props,
|
|
2404
|
+
get height() {
|
|
2405
|
+
return props.width;
|
|
2406
|
+
},
|
|
1807
2407
|
children: /* @__PURE__ */ _jsxQ("g", null, {
|
|
2408
|
+
transform: "translate(0,180) scale(0.100000,-0.100000)",
|
|
1808
2409
|
fill: "currentColor",
|
|
1809
|
-
stroke: "none"
|
|
1810
|
-
transform: "translate(0,180) scale(0.100000,-0.100000)"
|
|
2410
|
+
stroke: "none"
|
|
1811
2411
|
}, [
|
|
1812
2412
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1813
2413
|
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"
|
|
@@ -1823,89 +2423,104 @@ const LogoPterodactyl = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl(
|
|
|
1823
2423
|
}, null, 3, null)
|
|
1824
2424
|
], 3, null)
|
|
1825
2425
|
}, {
|
|
2426
|
+
version: _IMMUTABLE,
|
|
2427
|
+
xmlns: _IMMUTABLE,
|
|
2428
|
+
viewBox: _IMMUTABLE,
|
|
2429
|
+
preserveAspectRatio: _IMMUTABLE,
|
|
1826
2430
|
height: _fnSignal((p0) => p0.width, [
|
|
1827
2431
|
props
|
|
1828
|
-
], "p0.width")
|
|
1829
|
-
preserveAspectRatio: "xMidYMid meet",
|
|
1830
|
-
version: "1.0",
|
|
1831
|
-
viewBox: "0 0 180 180",
|
|
1832
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
2432
|
+
], "p0.width")
|
|
1833
2433
|
}, 0, "DN_0");
|
|
1834
2434
|
}, "LogoPterodactyl_component_wVJW9cHcHoo"));
|
|
1835
2435
|
const LogoPurpur = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1836
2436
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
2437
|
+
"xml:space": "preserve",
|
|
2438
|
+
"fill-rule": "evenodd",
|
|
2439
|
+
"stroke-linecap": "round",
|
|
2440
|
+
"stroke-linejoin": "round",
|
|
2441
|
+
"stroke-miterlimit": "1.5",
|
|
2442
|
+
"clip-rule": "evenodd",
|
|
2443
|
+
viewBox: "0 0 24 24",
|
|
1837
2444
|
...props,
|
|
2445
|
+
get height() {
|
|
2446
|
+
return props.width;
|
|
2447
|
+
},
|
|
1838
2448
|
children: [
|
|
1839
2449
|
/* @__PURE__ */ _jsxQ("defs", null, null, /* @__PURE__ */ _jsxQ("path", null, {
|
|
1840
|
-
d: "m264 41.95 8-4v8l-8 4v-8Z",
|
|
1841
|
-
fill: "none",
|
|
1842
2450
|
id: "purpur",
|
|
2451
|
+
fill: "none",
|
|
1843
2452
|
stroke: "currentColor",
|
|
1844
|
-
"stroke-width": "1.68"
|
|
2453
|
+
"stroke-width": "1.68",
|
|
2454
|
+
d: "m264 41.95 8-4v8l-8 4v-8Z"
|
|
1845
2455
|
}, null, 3, null), 3, null),
|
|
1846
2456
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1847
|
-
|
|
1848
|
-
|
|
2457
|
+
fill: "none",
|
|
2458
|
+
d: "M0 0h24v24H0z"
|
|
1849
2459
|
}, null, 3, null),
|
|
1850
2460
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1851
|
-
d: "m264 29.95-8 4 8 4.42 8-4.42-8-4Z",
|
|
1852
2461
|
fill: "none",
|
|
1853
2462
|
stroke: "currentColor",
|
|
1854
2463
|
"stroke-width": "1.77",
|
|
2464
|
+
d: "m264 29.95-8 4 8 4.42 8-4.42-8-4Z",
|
|
1855
2465
|
transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
|
|
1856
2466
|
}, null, 3, null),
|
|
1857
2467
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1858
|
-
d: "m272 38.37-8 4.42-8-4.42",
|
|
1859
2468
|
fill: "none",
|
|
1860
2469
|
stroke: "currentColor",
|
|
1861
2470
|
"stroke-width": "1.77",
|
|
2471
|
+
d: "m272 38.37-8 4.42-8-4.42",
|
|
1862
2472
|
transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
|
|
1863
2473
|
}, null, 3, null),
|
|
1864
2474
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1865
|
-
d: "m260 31.95 8 4.21V45",
|
|
1866
2475
|
fill: "none",
|
|
1867
2476
|
stroke: "currentColor",
|
|
1868
2477
|
"stroke-width": "1.77",
|
|
2478
|
+
d: "m260 31.95 8 4.21V45",
|
|
1869
2479
|
transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
|
|
1870
2480
|
}, null, 3, null),
|
|
1871
2481
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1872
|
-
d: "M260 45v-8.84l8-4.21",
|
|
1873
2482
|
fill: "none",
|
|
1874
2483
|
stroke: "currentColor",
|
|
1875
2484
|
"stroke-width": "1.77",
|
|
2485
|
+
d: "M260 45v-8.84l8-4.21",
|
|
1876
2486
|
transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
|
|
1877
2487
|
}, null, 3, null),
|
|
1878
2488
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1879
|
-
d: "m264 41.95 8-4v8l-8 4v-8Z",
|
|
1880
2489
|
fill: "none",
|
|
1881
2490
|
stroke: "currentColor",
|
|
1882
2491
|
"stroke-width": "1.68",
|
|
2492
|
+
d: "m264 41.95 8-4v8l-8 4v-8Z",
|
|
1883
2493
|
transform: "matrix(1.125 0 0 1.2569 -285 -40.78)"
|
|
1884
2494
|
}, null, 3, null),
|
|
1885
2495
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1886
|
-
d: "m264 41.95 8-4v8l-8 4v-8Z",
|
|
1887
2496
|
fill: "none",
|
|
1888
2497
|
stroke: "currentColor",
|
|
1889
2498
|
"stroke-width": "1.68",
|
|
2499
|
+
d: "m264 41.95 8-4v8l-8 4v-8Z",
|
|
1890
2500
|
transform: "matrix(-1.125 0 0 1.2569 309 -40.78)"
|
|
1891
2501
|
}, null, 3, null)
|
|
1892
2502
|
]
|
|
1893
2503
|
}, {
|
|
1894
|
-
"
|
|
1895
|
-
"fill-rule":
|
|
2504
|
+
"xml:space": _IMMUTABLE,
|
|
2505
|
+
"fill-rule": _IMMUTABLE,
|
|
2506
|
+
"stroke-linecap": _IMMUTABLE,
|
|
2507
|
+
"stroke-linejoin": _IMMUTABLE,
|
|
2508
|
+
"stroke-miterlimit": _IMMUTABLE,
|
|
2509
|
+
"clip-rule": _IMMUTABLE,
|
|
2510
|
+
viewBox: _IMMUTABLE,
|
|
1896
2511
|
height: _fnSignal((p0) => p0.width, [
|
|
1897
2512
|
props
|
|
1898
|
-
], "p0.width")
|
|
1899
|
-
"stroke-linecap": "round",
|
|
1900
|
-
"stroke-linejoin": "round",
|
|
1901
|
-
"stroke-miterlimit": "1.5",
|
|
1902
|
-
viewBox: "0 0 24 24",
|
|
1903
|
-
"xml:space": "preserve"
|
|
2513
|
+
], "p0.width")
|
|
1904
2514
|
}, 0, "Xw_0");
|
|
1905
2515
|
}, "LogoPurpur_component_sVHzeC1GCZ4"));
|
|
1906
2516
|
const LogoVelocity = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1907
2517
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
2518
|
+
viewBox: "0 0 500 500",
|
|
2519
|
+
fill: "currentColor",
|
|
1908
2520
|
...props,
|
|
2521
|
+
get height() {
|
|
2522
|
+
return props.width;
|
|
2523
|
+
},
|
|
1909
2524
|
children: [
|
|
1910
2525
|
/* @__PURE__ */ _jsxQ("path", null, {
|
|
1911
2526
|
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"
|
|
@@ -1920,29 +2535,38 @@ const LogoVelocity = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((pr
|
|
|
1920
2535
|
}, null, 3, null)
|
|
1921
2536
|
]
|
|
1922
2537
|
}, {
|
|
1923
|
-
|
|
2538
|
+
viewBox: _IMMUTABLE,
|
|
2539
|
+
fill: _IMMUTABLE,
|
|
1924
2540
|
height: _fnSignal((p0) => p0.width, [
|
|
1925
2541
|
props
|
|
1926
|
-
], "p0.width")
|
|
1927
|
-
viewBox: "0 0 500 500"
|
|
2542
|
+
], "p0.width")
|
|
1928
2543
|
}, 0, "Ea_0");
|
|
1929
2544
|
}, "LogoVelocity_component_SNoCdG0zr0s"));
|
|
1930
2545
|
const LogoWaterfall = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
|
|
1931
2546
|
return /* @__PURE__ */ _jsxS("svg", {
|
|
2547
|
+
viewBox: "0 0 24 24",
|
|
2548
|
+
fill: "none",
|
|
2549
|
+
stroke: "currentColor",
|
|
2550
|
+
"stroke-width": "2",
|
|
2551
|
+
"stroke-linecap": "round",
|
|
2552
|
+
"stroke-linejoin": "round",
|
|
1932
2553
|
...props,
|
|
2554
|
+
get height() {
|
|
2555
|
+
return props.width;
|
|
2556
|
+
},
|
|
1933
2557
|
children: /* @__PURE__ */ _jsxQ("path", null, {
|
|
1934
2558
|
d: "M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"
|
|
1935
2559
|
}, null, 3, null)
|
|
1936
2560
|
}, {
|
|
1937
|
-
|
|
2561
|
+
viewBox: _IMMUTABLE,
|
|
2562
|
+
fill: _IMMUTABLE,
|
|
2563
|
+
stroke: _IMMUTABLE,
|
|
2564
|
+
"stroke-width": _IMMUTABLE,
|
|
2565
|
+
"stroke-linecap": _IMMUTABLE,
|
|
2566
|
+
"stroke-linejoin": _IMMUTABLE,
|
|
1938
2567
|
height: _fnSignal((p0) => p0.width, [
|
|
1939
2568
|
props
|
|
1940
|
-
], "p0.width")
|
|
1941
|
-
stroke: "currentColor",
|
|
1942
|
-
"stroke-linecap": "round",
|
|
1943
|
-
"stroke-linejoin": "round",
|
|
1944
|
-
"stroke-width": "2",
|
|
1945
|
-
viewBox: "0 0 24 24"
|
|
2569
|
+
], "p0.width")
|
|
1946
2570
|
}, 0, "Pt_0");
|
|
1947
2571
|
}, "LogoWaterfall_component_1hFl8GlECLI"));
|
|
1948
2572
|
export {
|
|
@@ -1957,6 +2581,7 @@ export {
|
|
|
1957
2581
|
DropdownRaw,
|
|
1958
2582
|
Header,
|
|
1959
2583
|
InputClasses,
|
|
2584
|
+
InputColorClasses,
|
|
1960
2585
|
LoadingIcon,
|
|
1961
2586
|
LogoBirdflop,
|
|
1962
2587
|
LogoDiscord,
|
|
@@ -1983,5 +2608,7 @@ export {
|
|
|
1983
2608
|
buttonColorClasses,
|
|
1984
2609
|
cardColorClasses,
|
|
1985
2610
|
navColorClasses,
|
|
1986
|
-
sizeClasses
|
|
2611
|
+
sizeClasses,
|
|
2612
|
+
toggleOffColorClasses,
|
|
2613
|
+
toggleOnColorClasses
|
|
1987
2614
|
};
|