@luminescent/ui 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/LICENSE +661 -0
  2. package/README.md +1 -0
  3. package/lib/index.qwik.cjs +1328 -0
  4. package/lib/index.qwik.mjs +1328 -0
  5. package/lib-types/components/elements/Button.d.ts +31 -0
  6. package/lib-types/components/elements/Card.d.ts +99 -0
  7. package/lib-types/components/elements/ColorInput.d.ts +9 -0
  8. package/lib-types/components/elements/LoadingIcon.d.ts +8 -0
  9. package/lib-types/components/elements/NumberInput.d.ts +26 -0
  10. package/lib-types/components/elements/OutputField.d.ts +20 -0
  11. package/lib-types/components/elements/SelectInput.d.ts +14 -0
  12. package/lib-types/components/elements/TextAreaInput.d.ts +13 -0
  13. package/lib-types/components/elements/TextInput.d.ts +15 -0
  14. package/lib-types/components/elements/Toggle.d.ts +12 -0
  15. package/lib-types/components/elements.d.ts +9 -0
  16. package/lib-types/components/logos/Birdflop.d.ts +6 -0
  17. package/lib-types/components/logos/Discord.d.ts +2 -0
  18. package/lib-types/components/logos/Fabric.d.ts +2 -0
  19. package/lib-types/components/logos/Forge.d.ts +2 -0
  20. package/lib-types/components/logos/IconProps.d.ts +3 -0
  21. package/lib-types/components/logos/LoadingIcon.d.ts +8 -0
  22. package/lib-types/components/logos/Paper.d.ts +2 -0
  23. package/lib-types/components/logos/Pterodactyl.d.ts +2 -0
  24. package/lib-types/components/logos/Purpur.d.ts +2 -0
  25. package/lib-types/components/logos/Velocity.d.ts +2 -0
  26. package/lib-types/components/logos/Waterfall.d.ts +2 -0
  27. package/lib-types/components/logos.d.ts +10 -0
  28. package/lib-types/entry.dev.d.ts +2 -0
  29. package/lib-types/entry.ssr.d.ts +14 -0
  30. package/lib-types/index.d.ts +2 -0
  31. package/lib-types/root.d.ts +3 -0
  32. package/package.json +61 -0
@@ -0,0 +1,1328 @@
1
+ import { componentQrl, inlinedQrl, _restProps, _jsxS, _jsxC, Slot, _jsxQ, _fnSignal, _jsxBranch, _IMMUTABLE, useStylesQrl, useStore, _wrapSignal, useLexicalScope } from "@builder.io/qwik";
2
+ import { isServer } from "@builder.io/qwik/build";
3
+ import { Fragment } from "@builder.io/qwik/jsx-runtime";
4
+ const buttonColorClasses = {
5
+ blue: "bg-blue-600/90 border-blue-500 hover:bg-blue-500 focus:bg-blue-500",
6
+ purple: "bg-purple-600/90 border-purple-500 hover:bg-purple-500 focus:bg-purple-500",
7
+ pink: "bg-pink-600/90 border-pink-500 hover:bg-pink-500 focus:bg-pink-500",
8
+ gray: "bg-gray-800/90 border-gray-700 hover:bg-gray-700 focus:bg-gray-700",
9
+ red: "bg-red-700/90 border-red-600 hover:bg-red-600 focus:bg-red-600",
10
+ green: "bg-green-700/90 border-green-600 hover:bg-green-600 focus:bg-green-600",
11
+ yellow: "bg-yellow-700/90 border-yellow-600 hover:bg-yellow-600 focus:bg-yellow-600"
12
+ };
13
+ const sizeClasses = {
14
+ sm: "text-sm px-2 py-1 rounded-md gap-2",
15
+ md: "text-base px-4 py-2 rounded-md gap-3",
16
+ lg: "text-base px-6 py-3 rounded-lg gap-3",
17
+ xl: "text-base px-8 py-4 rounded-xl gap-4"
18
+ };
19
+ const buttonClass = "relative flex items-center gap-3 transition ease-in-out border text-gray-50 fill-gray-50 disabled:opacity-50";
20
+ const Button = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
21
+ const props1 = _restProps(props, [
22
+ "color",
23
+ "size"
24
+ ]);
25
+ props1.class = {
26
+ [buttonClass]: true,
27
+ [buttonColorClasses[props.color ?? "gray"]]: true,
28
+ [sizeClasses[props.size ?? "md"]]: true,
29
+ ...props1.class
30
+ };
31
+ return /* @__PURE__ */ _jsxS("button", {
32
+ ...props1,
33
+ children: /* @__PURE__ */ _jsxC(Slot, null, 3, "IU_0")
34
+ }, null, 0, "IU_1");
35
+ }, "Button_component_pNnu9oueddE"));
36
+ const ButtonAnchor = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
37
+ const props1 = _restProps(props, [
38
+ "color",
39
+ "size"
40
+ ]);
41
+ props1.class = {
42
+ [buttonClass]: true,
43
+ [buttonColorClasses[props.color ?? "gray"]]: true,
44
+ [sizeClasses[props.size ?? "md"]]: true,
45
+ ...props1.class
46
+ };
47
+ return /* @__PURE__ */ _jsxS("a", {
48
+ ...props1,
49
+ children: /* @__PURE__ */ _jsxC(Slot, null, 3, "IU_2")
50
+ }, null, 0, "IU_3");
51
+ }, "ButtonAnchor_component_hLA0X8fdWzI"));
52
+ const LoadingIcon = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
53
+ return /* @__PURE__ */ _jsxS("svg", {
54
+ ...props,
55
+ children: [
56
+ /* @__PURE__ */ _jsxQ("circle", null, {
57
+ class: "opacity-25",
58
+ cx: "12",
59
+ cy: "12",
60
+ r: "10",
61
+ stroke: "currentColor",
62
+ "stroke-width": "4"
63
+ }, null, 3, null),
64
+ /* @__PURE__ */ _jsxQ("path", null, {
65
+ class: "opacity-75",
66
+ d: "M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z",
67
+ fill: "currentColor"
68
+ }, null, 3, null)
69
+ ]
70
+ }, {
71
+ class: _fnSignal((p0) => ({
72
+ "animate-spin": true,
73
+ ...p0.class
74
+ }), [
75
+ props
76
+ ], '{"animate-spin":true,...p0.class}'),
77
+ fill: "none",
78
+ viewBox: "0 0 24 24",
79
+ xmlns: "http://www.w3.org/2000/svg"
80
+ }, 0, "RF_0");
81
+ }, "LoadingIcon_component_EnZ0n0lcr7s"));
82
+ const cardColorClasses = {
83
+ pink: {
84
+ card: {
85
+ bg_blobs: "bg-pink-400/10 border-pink-400/20",
86
+ bg: "bg-pink-400/60 border-pink-400",
87
+ hover: "hover:bg-pink-400/20"
88
+ },
89
+ blobs: [
90
+ "bg-pink-400",
91
+ "bg-pink-500",
92
+ "bg-pink-600"
93
+ ]
94
+ },
95
+ red: {
96
+ card: {
97
+ bg_blobs: "bg-purple-400/10 border-purple-400/20",
98
+ bg: "bg-red-400/60 border-red-400",
99
+ hover: "hover:bg-purple-400/20"
100
+ },
101
+ blobs: [
102
+ "bg-red-400",
103
+ "bg-red-500",
104
+ "bg-red-600"
105
+ ]
106
+ },
107
+ orange: {
108
+ card: {
109
+ bg_blobs: "bg-orange-400/10 border-orange-400/20",
110
+ bg: "bg-orange-400/60 border-orange-400",
111
+ hover: "hover:bg-orange-400/20"
112
+ },
113
+ blobs: [
114
+ "bg-orange-400",
115
+ "bg-orange-500",
116
+ "bg-orange-600"
117
+ ]
118
+ },
119
+ yellow: {
120
+ card: {
121
+ bg_blobs: "bg-yellow-400/10 border-yellow-400/20",
122
+ bg: "bg-yellow-400/60 border-yellow-400",
123
+ hover: "hover:bg-yellow-400/20"
124
+ },
125
+ blobs: [
126
+ "bg-yellow-400",
127
+ "bg-yellow-500",
128
+ "bg-yellow-600"
129
+ ]
130
+ },
131
+ green: {
132
+ card: {
133
+ bg_blobs: "bg-green-400/10 border-green-400/20",
134
+ bg: "bg-green-400/60 border-green-400",
135
+ hover: "hover:bg-green-400/20"
136
+ },
137
+ blobs: [
138
+ "bg-green-400",
139
+ "bg-green-500",
140
+ "bg-green-600"
141
+ ]
142
+ },
143
+ blue: {
144
+ card: {
145
+ bg_blobs: "bg-blue-400/10 border-blue-400/20",
146
+ bg: "bg-blue-400/60 border-blue-400",
147
+ hover: "hover:bg-blue-400/20"
148
+ },
149
+ blobs: [
150
+ "bg-blue-400",
151
+ "bg-blue-500",
152
+ "bg-blue-600"
153
+ ]
154
+ },
155
+ purple: {
156
+ card: {
157
+ bg_blobs: "bg-purple-400/10 border-purple-400/20",
158
+ bg: "bg-purple-400/60 border-purple-400",
159
+ hover: "hover:bg-purple-400/20"
160
+ },
161
+ blobs: [
162
+ "bg-purple-400",
163
+ "bg-purple-500",
164
+ "bg-purple-600"
165
+ ]
166
+ },
167
+ gray: {
168
+ card: {
169
+ bg_blobs: "bg-gray-400/10 border-gray-400/20",
170
+ bg: "bg-gray-400/60 border-gray-400",
171
+ hover: "hover:bg-gray-400/20"
172
+ },
173
+ blobs: [
174
+ "bg-gray-400",
175
+ "bg-gray-500",
176
+ "bg-gray-600"
177
+ ]
178
+ },
179
+ darkgray: {
180
+ card: {
181
+ bg_blobs: "bg-gray-800/10 border-gray-800/20",
182
+ bg: "bg-gray-800/60 border-gray-800",
183
+ hover: "hover:bg-gray-800/20"
184
+ },
185
+ blobs: [
186
+ "bg-gray-400",
187
+ "bg-gray-500",
188
+ "bg-gray-600"
189
+ ]
190
+ },
191
+ darkergray: {
192
+ card: {
193
+ bg_blobs: "bg-gray-900/10 border-gray-900/20",
194
+ bg: "bg-gray-900/60 border-gray-900",
195
+ hover: "hover:bg-gray-900/20"
196
+ },
197
+ blobs: [
198
+ "bg-gray-400",
199
+ "bg-gray-500",
200
+ "bg-gray-600"
201
+ ]
202
+ }
203
+ };
204
+ const blobClasses = [
205
+ "animate-blob",
206
+ "animate-blob1",
207
+ "animate-blob2",
208
+ "animate-blob3",
209
+ "animate-blob4",
210
+ "animate-blob5",
211
+ "animate-blob6"
212
+ ];
213
+ const Card = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
214
+ const props1 = _restProps(props, [
215
+ "color",
216
+ "hoverable",
217
+ "row",
218
+ "blobs"
219
+ ]);
220
+ const blob = Math.round(Math.random() * 6);
221
+ const button = !!props1.onClick$ || props.hoverable;
222
+ return /* @__PURE__ */ _jsxS("div", {
223
+ ...props1,
224
+ children: /* @__PURE__ */ _jsxQ("div", null, {
225
+ class: {
226
+ "p-8": true
227
+ }
228
+ }, [
229
+ /* @__PURE__ */ _jsxQ("div", null, {
230
+ class: "relative z-10"
231
+ }, /* @__PURE__ */ _jsxQ("div", null, {
232
+ class: _fnSignal((p0) => ({
233
+ "flex gap-4": true,
234
+ "flex-col": !p0.row,
235
+ "flex-row items-center": p0.row
236
+ }), [
237
+ props
238
+ ], '{"flex gap-4":true,"flex-col":!p0.row,"flex-row items-center":p0.row}')
239
+ }, /* @__PURE__ */ _jsxC(Slot, null, 3, "8Z_0"), 1, null), 1, null),
240
+ props.blobs && /* @__PURE__ */ _jsxQ("div", null, {
241
+ class: "absolute -z-10 inset-0 w-full h-full transition-all overflow-clip",
242
+ style: {
243
+ containerType: "size"
244
+ }
245
+ }, [
246
+ /* @__PURE__ */ _jsxQ("div", {
247
+ class: {
248
+ "absolute top-0 w-[30cqw] h-[30cqw] rounded-full opacity-20 ease-in-out blur-xl": true,
249
+ [blobClasses[blob]]: true,
250
+ [cardColorClasses[props.color ?? "darkgray"].blobs[0]]: true
251
+ }
252
+ }, null, null, 3, null),
253
+ /* @__PURE__ */ _jsxQ("div", {
254
+ class: {
255
+ "absolute top-0 w-[30cqw] h-[30cqw] rounded-full opacity-20 ease-in-out blur-xl": true,
256
+ "-animation-delay-5": true,
257
+ [blobClasses[blob]]: true,
258
+ [cardColorClasses[props.color ?? "darkgray"].blobs[1]]: true
259
+ }
260
+ }, null, null, 3, null),
261
+ /* @__PURE__ */ _jsxQ("div", {
262
+ class: {
263
+ "absolute top-0 w-[30cqw] h-[30cqw] rounded-full opacity-20 ease-in-out blur-xl": true,
264
+ "-animation-delay-10": true,
265
+ [blobClasses[blob]]: true,
266
+ [cardColorClasses[props.color ?? "darkgray"].blobs[2]]: true
267
+ }
268
+ }, null, null, 3, null)
269
+ ], 1, "8Z_1")
270
+ ], 1, null),
271
+ class: {
272
+ "flex-1 relative border rounded-lg group transition-all": true,
273
+ [cardColorClasses[props.color ?? "darkgray"].card.bg]: !props.blobs,
274
+ [cardColorClasses[props.color ?? "darkgray"].card.bg_blobs]: props.blobs,
275
+ [cardColorClasses[props.color ?? "darkgray"].card.hover]: props.hoverable,
276
+ "hover:shadow-lg cursor-pointer": button,
277
+ ...props1.class
278
+ }
279
+ }, null, 0, "8Z_2");
280
+ }, "Card_component_QpjNtv3LuRY"));
281
+ const CardHeader = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
282
+ _jsxBranch();
283
+ return /* @__PURE__ */ _jsxQ("h1", null, {
284
+ class: "flex font-bold text-gray-100 text-2xl"
285
+ }, [
286
+ props.id && /* @__PURE__ */ _jsxQ("span", null, {
287
+ class: "block h-32 -mt-32",
288
+ id: _fnSignal((p0) => p0.id, [
289
+ props
290
+ ], "p0.id")
291
+ }, null, 3, "8Z_3"),
292
+ /* @__PURE__ */ _jsxQ("div", null, {
293
+ class: "flex flex-1"
294
+ }, /* @__PURE__ */ _jsxQ("div", null, {
295
+ class: "flex flex-col"
296
+ }, [
297
+ /* @__PURE__ */ _jsxQ("div", null, {
298
+ class: "flex items-center gap-3"
299
+ }, /* @__PURE__ */ _jsxC(Slot, null, 3, "8Z_4"), 1, null),
300
+ /* @__PURE__ */ _jsxC(Slot, {
301
+ name: "subheader",
302
+ [_IMMUTABLE]: {
303
+ name: _IMMUTABLE
304
+ }
305
+ }, 3, "8Z_5")
306
+ ], 1, null), 1, null),
307
+ (props.loading ?? false) && /* @__PURE__ */ _jsxQ("div", null, {
308
+ class: _fnSignal((p0) => ({
309
+ "transition-all": true,
310
+ "opacity-0": !(p0.loading ?? false),
311
+ "opacity-100": p0.loading ?? false
312
+ }), [
313
+ props
314
+ ], '{"transition-all":true,"opacity-0":!(p0.loading??false),"opacity-100":p0.loading??false}')
315
+ }, /* @__PURE__ */ _jsxC(LoadingIcon, {
316
+ class: {
317
+ "text-white": true
318
+ },
319
+ width: 20,
320
+ [_IMMUTABLE]: {
321
+ class: _IMMUTABLE,
322
+ width: _IMMUTABLE
323
+ }
324
+ }, 3, "8Z_6"), 1, "8Z_7")
325
+ ], 1, "8Z_8");
326
+ }, "CardHeader_component_T5lE20o8i0g"));
327
+ var insertCss$1 = { exports: {} };
328
+ var containers = [];
329
+ var styleElements = [];
330
+ var usage = "insert-css: You need to provide a CSS string. Usage: insertCss(cssString[, options]).";
331
+ function insertCss(css, options) {
332
+ options = options || {};
333
+ if (css === void 0) {
334
+ throw new Error(usage);
335
+ }
336
+ var position = options.prepend === true ? "prepend" : "append";
337
+ var container = options.container !== void 0 ? options.container : document.querySelector("head");
338
+ var containerId = containers.indexOf(container);
339
+ if (containerId === -1) {
340
+ containerId = containers.push(container) - 1;
341
+ styleElements[containerId] = {};
342
+ }
343
+ var styleElement;
344
+ if (styleElements[containerId] !== void 0 && styleElements[containerId][position] !== void 0) {
345
+ styleElement = styleElements[containerId][position];
346
+ } else {
347
+ styleElement = styleElements[containerId][position] = createStyleElement();
348
+ if (position === "prepend") {
349
+ container.insertBefore(styleElement, container.childNodes[0]);
350
+ } else {
351
+ container.appendChild(styleElement);
352
+ }
353
+ }
354
+ if (css.charCodeAt(0) === 65279) {
355
+ css = css.substr(1, css.length);
356
+ }
357
+ if (styleElement.styleSheet) {
358
+ styleElement.styleSheet.cssText += css;
359
+ } else {
360
+ styleElement.textContent += css;
361
+ }
362
+ return styleElement;
363
+ }
364
+ function createStyleElement() {
365
+ var styleElement = document.createElement("style");
366
+ styleElement.setAttribute("type", "text/css");
367
+ return styleElement;
368
+ }
369
+ insertCss$1.exports = insertCss;
370
+ var insertCss_2 = insertCss$1.exports.insertCss = insertCss;
371
+ function e(t, e2) {
372
+ for (var i2 = 0; i2 < e2.length; i2++) {
373
+ var o2 = e2[i2];
374
+ o2.enumerable = o2.enumerable || false, o2.configurable = true, "value" in o2 && (o2.writable = true), Object.defineProperty(t, o2.key, o2);
375
+ }
376
+ }
377
+ function i(t, i2, o2) {
378
+ return i2 && e(t.prototype, i2), o2 && e(t, o2), t;
379
+ }
380
+ function o(t) {
381
+ return "number" == typeof t && !isNaN(t);
382
+ }
383
+ function s(t, e2, i2) {
384
+ return Math.min(Math.max(t, e2), i2);
385
+ }
386
+ function n(t) {
387
+ if (0 === t.type.indexOf("touch")) {
388
+ var e2 = t.touches[0];
389
+ return { x: e2.clientX, y: e2.clientY };
390
+ }
391
+ return { x: t.clientX, y: t.clientY };
392
+ }
393
+ function r(t) {
394
+ return 1 == t.length ? "0" + t : "" + t;
395
+ }
396
+ var h = function() {
397
+ function t(t2) {
398
+ this._rgba = { r: 0, g: 0, b: 0, a: 1 }, this._hsva = { h: 0, s: 0, v: 0, a: 1 }, this.fromHex(t2);
399
+ }
400
+ var e2 = t.prototype;
401
+ return e2.fromHex = function(t2) {
402
+ t2 || (t2 = 0), o(t2) ? (this._hexNumber = t2, this._hexString = function(t3) {
403
+ return "#" + ("00000" + (0 | t3).toString(16)).substr(-6).toUpperCase();
404
+ }(this._hexNumber)) : (this._hexString = t2.toUpperCase(), this._hexNumber = u(this._hexString));
405
+ var e3 = function(t3) {
406
+ return { r: (t3 >> 16 & 255) / 255, g: (t3 >> 8 & 255) / 255, b: (255 & t3) / 255 };
407
+ }(this._hexNumber), i2 = e3.g, s2 = e3.b;
408
+ this._rgba.r = e3.r, this._rgba.g = i2, this._rgba.b = s2;
409
+ var n2 = function(t3) {
410
+ var e4, i3 = t3.r, o2 = t3.g, s3 = t3.b, n3 = Math.max(i3, o2, s3), r3 = Math.min(i3, o2, s3), h3 = n3 - r3, u2 = 0 === n3 ? 0 : h3 / n3, a2 = n3;
411
+ if (n3 == r3)
412
+ e4 = 0;
413
+ else {
414
+ switch (n3) {
415
+ case i3:
416
+ e4 = (o2 - s3) / h3 + (o2 < s3 ? 6 : 0);
417
+ break;
418
+ case o2:
419
+ e4 = (s3 - i3) / h3 + 2;
420
+ break;
421
+ case s3:
422
+ e4 = (i3 - o2) / h3 + 4;
423
+ }
424
+ e4 /= 6;
425
+ }
426
+ return { h: e4, s: u2, v: a2 };
427
+ }(this._rgba), r2 = n2.s, h2 = n2.v;
428
+ this._hsva.h = n2.h, this._hsva.s = r2, this._hsva.v = h2, this._updateBrightness();
429
+ }, e2.fromHsv = function(t2) {
430
+ var e3 = t2.s, i2 = t2.v;
431
+ this._hsva.h = t2.h, this._hsva.s = e3, this._hsva.v = i2;
432
+ var o2 = function(t3) {
433
+ var e4 = t3.h, i3 = t3.s, o3 = t3.v;
434
+ e4 *= 6;
435
+ var s3 = Math.floor(e4), n3 = e4 - s3, r2 = o3 * (1 - i3), h2 = o3 * (1 - n3 * i3), u2 = o3 * (1 - (1 - n3) * i3), a2 = s3 % 6;
436
+ return { r: [o3, h2, r2, r2, u2, o3][a2], g: [u2, o3, o3, h2, r2, r2][a2], b: [r2, r2, u2, o3, o3, h2][a2] };
437
+ }(this._hsva), s2 = o2.g, n2 = o2.b;
438
+ this._rgba.r = o2.r, this._rgba.g = s2, this._rgba.b = n2, this._hexString = function(t3) {
439
+ var e4 = t3.g, i3 = t3.b;
440
+ return ["#", r(Math.round(255 * t3.r).toString(16)), r(Math.round(255 * e4).toString(16)), r(Math.round(255 * i3).toString(16))].join("").toUpperCase();
441
+ }(this._rgba), this._hexNumber = u(this._hexString), this._updateBrightness();
442
+ }, e2._updateBrightness = function() {
443
+ var t2 = this._rgba;
444
+ this._brightness = (299 * t2.r + 587 * t2.g + 114 * t2.b) / 1e3, this._isDark = this._brightness < 0.5, this._isLight = !this._isDark;
445
+ }, i(t, [{ key: "rgb", get: function() {
446
+ return this._rgba;
447
+ } }, { key: "hsv", get: function() {
448
+ return this._hsva;
449
+ } }, { key: "hex", get: function() {
450
+ return this._hexNumber;
451
+ } }, { key: "hexString", get: function() {
452
+ return this._hexString;
453
+ } }, { key: "brightness", get: function() {
454
+ return this._brightness;
455
+ } }, { key: "isDark", get: function() {
456
+ return this._isDark;
457
+ } }, { key: "isLight", get: function() {
458
+ return this._isLight;
459
+ } }]), t;
460
+ }();
461
+ function u(t) {
462
+ return parseInt(t.replace("#", ""), 16);
463
+ }
464
+ var a = function() {
465
+ function t(t2) {
466
+ var e3 = this;
467
+ void 0 === t2 && (t2 = {}), this._widthUnits = "px", this._heightUnits = "px", this._huePosition = 0, this._hueHeight = 0, this._maxHue = 0, this._inputIsNumber = false, this._saturationWidth = 0, this._isChoosing = false, this._callbacks = [], this.width = 0, this.height = 0, this.hue = 0, this.position = { x: 0, y: 0 }, this.color = new h(0), this.backgroundColor = new h(0), this.hueColor = new h(0), this._onSaturationMouseDown = function(t3) {
468
+ var i2 = e3.$saturation.getBoundingClientRect(), o2 = n(t3), s2 = o2.x, r2 = o2.y;
469
+ e3._isChoosing = true, e3._moveSelectorTo(s2 - i2.left, r2 - i2.top), e3._updateColorFromPosition(), e3._window.addEventListener("mouseup", e3._onSaturationMouseUp), e3._window.addEventListener("touchend", e3._onSaturationMouseUp), e3._window.addEventListener("mousemove", e3._onSaturationMouseMove), e3._window.addEventListener("touchmove", e3._onSaturationMouseMove), t3.preventDefault();
470
+ }, this._onSaturationMouseMove = function(t3) {
471
+ var i2 = e3.$saturation.getBoundingClientRect(), o2 = n(t3);
472
+ e3._moveSelectorTo(o2.x - i2.left, o2.y - i2.top), e3._updateColorFromPosition();
473
+ }, this._onSaturationMouseUp = function() {
474
+ e3._isChoosing = false, e3._window.removeEventListener("mouseup", e3._onSaturationMouseUp), e3._window.removeEventListener("touchend", e3._onSaturationMouseUp), e3._window.removeEventListener("mousemove", e3._onSaturationMouseMove), e3._window.removeEventListener("touchmove", e3._onSaturationMouseMove);
475
+ }, this._onHueMouseDown = function(t3) {
476
+ var i2 = e3.$hue.getBoundingClientRect(), o2 = n(t3).y;
477
+ e3._isChoosing = true, e3._moveHueTo(o2 - i2.top), e3._updateHueFromPosition(), e3._window.addEventListener("mouseup", e3._onHueMouseUp), e3._window.addEventListener("touchend", e3._onHueMouseUp), e3._window.addEventListener("mousemove", e3._onHueMouseMove), e3._window.addEventListener("touchmove", e3._onHueMouseMove), t3.preventDefault();
478
+ }, this._onHueMouseMove = function(t3) {
479
+ var i2 = e3.$hue.getBoundingClientRect(), o2 = n(t3);
480
+ e3._moveHueTo(o2.y - i2.top), e3._updateHueFromPosition();
481
+ }, this._onHueMouseUp = function() {
482
+ e3._isChoosing = false, e3._window.removeEventListener("mouseup", e3._onHueMouseUp), e3._window.removeEventListener("touchend", e3._onHueMouseUp), e3._window.removeEventListener("mousemove", e3._onHueMouseMove), e3._window.removeEventListener("touchmove", e3._onHueMouseMove);
483
+ }, this._window = t2.window || window, this._document = this._window.document, this.$el = this._document.createElement("div"), this.$el.className = "Scp", this.$el.innerHTML = '\n <div class="Scp-saturation">\n <div class="Scp-brightness"></div>\n <div class="Scp-sbSelector"></div>\n </div>\n <div class="Scp-hue">\n <div class="Scp-hSelector"></div>\n </div>\n ', this.$saturation = this.$el.querySelector(".Scp-saturation"), this.$hue = this.$el.querySelector(".Scp-hue"), this.$sbSelector = this.$el.querySelector(".Scp-sbSelector"), this.$hSelector = this.$el.querySelector(".Scp-hSelector"), this.$saturation.addEventListener("mousedown", this._onSaturationMouseDown), this.$saturation.addEventListener("touchstart", this._onSaturationMouseDown), this.$hue.addEventListener("mousedown", this._onHueMouseDown), this.$hue.addEventListener("touchstart", this._onHueMouseDown), t2.el && this.appendTo(t2.el), t2.background && this.setBackgroundColor(t2.background), t2.widthUnits && (this._widthUnits = t2.widthUnits), t2.heightUnits && (this._heightUnits = t2.heightUnits), this.setSize(t2.width || 175, t2.height || 150), this.setColor(t2.color);
484
+ }
485
+ var e2 = t.prototype;
486
+ return e2.appendTo = function(t2) {
487
+ return "string" == typeof t2 ? document.querySelector(t2).appendChild(this.$el) : t2.appendChild(this.$el), this;
488
+ }, e2.remove = function() {
489
+ this._callbacks = [], this._onSaturationMouseUp(), this._onHueMouseUp(), this.$saturation.removeEventListener("mousedown", this._onSaturationMouseDown), this.$saturation.removeEventListener("touchstart", this._onSaturationMouseDown), this.$hue.removeEventListener("mousedown", this._onHueMouseDown), this.$hue.removeEventListener("touchstart", this._onHueMouseDown), this.$el.parentNode && this.$el.parentNode.removeChild(this.$el);
490
+ }, e2.setColor = function(t2) {
491
+ this._inputIsNumber = o(t2), this.color.fromHex(t2);
492
+ var e3 = this.color.hsv, i2 = e3.h, s2 = e3.s, n2 = e3.v;
493
+ return isNaN(i2) || (this.hue = i2), this._moveSelectorTo(this._saturationWidth * s2, (1 - n2) * this._hueHeight), this._moveHueTo((1 - this.hue) * this._hueHeight), this._updateHue(), this;
494
+ }, e2.setSize = function(t2, e3) {
495
+ return this.width = t2, this.height = e3, this.$el.style.width = this.width + this._widthUnits, this.$el.style.height = this.height + this._heightUnits, this._saturationWidth = this.width - 25, this.$saturation.style.width = this._saturationWidth + "px", this._hueHeight = this.height, this._maxHue = this._hueHeight - 2, this;
496
+ }, e2.setBackgroundColor = function(t2) {
497
+ return this.backgroundColor.fromHex(t2), this.$el.style.padding = "5px", this.$el.style.background = this.backgroundColor.hexString, this;
498
+ }, e2.setNoBackground = function() {
499
+ return this.$el.style.padding = "0px", this.$el.style.background = "none", this;
500
+ }, e2.onChange = function(t2) {
501
+ return this._callbacks.indexOf(t2) < 0 && (this._callbacks.push(t2), t2(this.getHexString())), this;
502
+ }, e2.getColor = function() {
503
+ return this._inputIsNumber ? this.getHexNumber() : this.getHexString();
504
+ }, e2.getHexString = function() {
505
+ return this.color.hexString.toUpperCase();
506
+ }, e2.getHexNumber = function() {
507
+ return this.color.hex;
508
+ }, e2.getRGB = function() {
509
+ return this.color.rgb;
510
+ }, e2.getHSV = function() {
511
+ return this.color.hsv;
512
+ }, e2.isDark = function() {
513
+ return this.color.isDark;
514
+ }, e2.isLight = function() {
515
+ return this.color.isLight;
516
+ }, e2._moveSelectorTo = function(t2, e3) {
517
+ this.position.x = s(t2, 0, this._saturationWidth), this.position.y = s(e3, 0, this._hueHeight), this.$sbSelector.style.transform = "translate(" + this.position.x + "px, " + this.position.y + "px)";
518
+ }, e2._updateColorFromPosition = function() {
519
+ this.color.fromHsv({ h: this.hue, s: this.position.x / this._saturationWidth, v: 1 - this.position.y / this._hueHeight }), this._updateColor();
520
+ }, e2._moveHueTo = function(t2) {
521
+ this._huePosition = s(t2, 0, this._maxHue), this.$hSelector.style.transform = "translateY(" + this._huePosition + "px)";
522
+ }, e2._updateHueFromPosition = function() {
523
+ var t2 = this.getHSV();
524
+ this.hue = 1 - this._huePosition / this._maxHue, this.color.fromHsv({ h: this.hue, s: t2.s, v: t2.v }), this._updateHue();
525
+ }, e2._updateHue = function() {
526
+ this.hueColor.fromHsv({ h: this.hue, s: 1, v: 1 }), this.$saturation.style.background = "linear-gradient(to right, #fff, " + this.hueColor.hexString + ")", this._updateColor();
527
+ }, e2._updateColor = function() {
528
+ this.$sbSelector.style.background = this.getHexString(), this.$sbSelector.style.borderColor = this.isDark() ? "#fff" : "#000", this._triggerChange();
529
+ }, e2._triggerChange = function() {
530
+ var t2 = this;
531
+ this._callbacks.forEach(function(e3) {
532
+ return e3(t2.getHexString());
533
+ });
534
+ }, i(t, [{ key: "isChoosing", get: function() {
535
+ return this._isChoosing;
536
+ } }]), t;
537
+ }();
538
+ insertCss_2(".Scp{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.Scp-saturation{position:relative;height:100%;background:linear-gradient(90deg,#fff,red);float:left;margin-right:5px}.Scp-brightness{width:100%;height:100%;background:linear-gradient(hsla(0,0%,100%,0),#000)}.Scp-sbSelector{border:2px solid #fff;position:absolute;width:14px;height:14px;background:#fff;border-radius:10px;top:-7px;left:-7px;box-sizing:border-box;z-index:10}.Scp-hue{width:20px;height:100%;position:relative;float:left;background:linear-gradient(red,#f0f 17%,#00f 34%,#0ff 50%,#0f0 67%,#ff0 84%,red)}.Scp-hSelector{position:absolute;background:#fff;border-bottom:1px solid #000;right:-3px;width:10px;height:2px}");
539
+ const TextInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
540
+ return /* @__PURE__ */ _jsxQ("div", null, {
541
+ class: "flex flex-col"
542
+ }, [
543
+ /* @__PURE__ */ _jsxQ("label", null, {
544
+ class: "mb-2",
545
+ for: _fnSignal((p0) => p0.id, [
546
+ props
547
+ ], "p0.id")
548
+ }, _fnSignal((p0) => p0.label, [
549
+ props
550
+ ], "p0.label"), 3, null),
551
+ /* @__PURE__ */ _jsxC(TextInputRaw, {
552
+ ...props,
553
+ children: void 0
554
+ }, 0, "Lu_0")
555
+ ], 1, "Lu_1");
556
+ }, "TextInput_component_tuo5ZbXE4fU"));
557
+ const TextInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
558
+ return /* @__PURE__ */ _jsxS("input", {
559
+ ...props,
560
+ class: {
561
+ "transition ease-in-out text-lg border border-gray-700 bg-gray-800 text-gray-50 hover:bg-gray-700 focus:bg-gray-700 rounded-md px-3 py-2": true,
562
+ ...props.class
563
+ }
564
+ }, null, 0, "Lu_2");
565
+ }, "TextInputRaw_component_VPutIQQcf7s"));
566
+ const ColorInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
567
+ const props1 = _restProps(props, [
568
+ "onInput$",
569
+ "value"
570
+ ]);
571
+ useStylesQrl(/* @__PURE__ */ inlinedQrl(`
572
+ .Scp {
573
+ display: flex;
574
+ height: 170px !important;
575
+ width: 170px !important;
576
+ padding: 10px !important;
577
+ border-radius: 0.375rem;
578
+ border: hsl(0, 27%, 76%);
579
+ border-width: 1px;
580
+ }
581
+ `, "ColorInput_component_useStyles_kQnXj16wVw4"));
582
+ const store = useStore({
583
+ value: (props.value ?? "#FFFFFF") || "#FFFFFF"
584
+ });
585
+ return /* @__PURE__ */ _jsxQ("div", null, null, [
586
+ props1.label && /* @__PURE__ */ _jsxQ("label", {
587
+ for: _wrapSignal(props1, "id")
588
+ }, {
589
+ class: "mb-2 flex"
590
+ }, _wrapSignal(props1, "label"), 1, "LJ_0"),
591
+ /* @__PURE__ */ _jsxC(TextInputRaw, {
592
+ ...props1,
593
+ get value() {
594
+ return store.value;
595
+ },
596
+ onBlur$: /* @__PURE__ */ inlinedQrl(() => {
597
+ const [props12] = useLexicalScope();
598
+ const pickerDiv = document.getElementById(`${props12.id}-color-picker`);
599
+ pickerDiv.style.display = "none";
600
+ }, "ColorInput_component_div_TextInputRaw_onBlur_SNMoVbOuZ0M", [
601
+ props1
602
+ ]),
603
+ onFocus$: /* @__PURE__ */ inlinedQrl((event, element) => {
604
+ const [props12, props2, store2] = useLexicalScope();
605
+ const pickerDiv = document.getElementById(`${props12.id}-color-picker`);
606
+ if (!pickerDiv.children.length) {
607
+ if (isServer)
608
+ return;
609
+ const picker = new a({
610
+ el: pickerDiv,
611
+ color: store2.value,
612
+ background: "#1D1D1D",
613
+ width: 150,
614
+ height: 150
615
+ });
616
+ picker.onChange((color) => {
617
+ store2.value = color;
618
+ if (props2.onInput$)
619
+ props2.onInput$(color, element);
620
+ });
621
+ element.addEventListener("input", () => {
622
+ if (!/^#[0-9A-F]{6}$/i.test(element.value))
623
+ return;
624
+ picker.setColor(element.value);
625
+ });
626
+ }
627
+ pickerDiv.style.display = "block";
628
+ }, "ColorInput_component_div_TextInputRaw_onFocus_jGNFOc0h7YQ", [
629
+ props1,
630
+ props,
631
+ store
632
+ ]),
633
+ get style() {
634
+ return {
635
+ borderLeft: `40px solid ${store.value}`
636
+ };
637
+ },
638
+ [_IMMUTABLE]: {
639
+ style: _fnSignal((p0) => ({
640
+ borderLeft: `40px solid ${p0.value}`
641
+ }), [
642
+ store
643
+ ], "{borderLeft:`40px solid ${p0.value}`}"),
644
+ value: _fnSignal((p0) => p0.value, [
645
+ store
646
+ ], "p0.value")
647
+ }
648
+ }, 0, "LJ_1"),
649
+ /* @__PURE__ */ _jsxQ("div", {
650
+ id: `${props1.id}-color-picker`
651
+ }, {
652
+ class: "hidden absolute mt-2"
653
+ }, null, 3, null)
654
+ ], 1, "LJ_2");
655
+ }, "ColorInput_component_gefBssfHK44"));
656
+ const Add = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((rawProps) => {
657
+ const props = {
658
+ ...rawProps
659
+ };
660
+ props.class = ((props.class ?? "") + " ionicon").trim();
661
+ return /* @__PURE__ */ _jsxS("svg", {
662
+ ...props,
663
+ children: [
664
+ /* @__PURE__ */ _jsxQ("line", null, {
665
+ x1: "256",
666
+ y1: "112",
667
+ x2: "256",
668
+ y2: "400",
669
+ style: "fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:32px"
670
+ }, null, 3, null),
671
+ /* @__PURE__ */ _jsxQ("line", null, {
672
+ x1: "400",
673
+ y1: "256",
674
+ x2: "112",
675
+ y2: "256",
676
+ style: "fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:32px"
677
+ }, null, 3, null)
678
+ ]
679
+ }, {
680
+ xmlns: "http://www.w3.org/2000/svg",
681
+ viewBox: "0 0 512 512"
682
+ }, 0, "Oz_0");
683
+ }, "Add_component_V0yTYgKwUXY"));
684
+ const Remove = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((rawProps) => {
685
+ const props = {
686
+ ...rawProps
687
+ };
688
+ props.class = ((props.class ?? "") + " ionicon").trim();
689
+ return /* @__PURE__ */ _jsxS("svg", {
690
+ ...props,
691
+ children: /* @__PURE__ */ _jsxQ("line", null, {
692
+ x1: "400",
693
+ y1: "256",
694
+ x2: "112",
695
+ y2: "256",
696
+ style: "fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:32px"
697
+ }, null, 3, null)
698
+ }, {
699
+ xmlns: "http://www.w3.org/2000/svg",
700
+ viewBox: "0 0 512 512"
701
+ }, 0, "yE_0");
702
+ }, "Remove_component_JljE09jA0yc"));
703
+ const NumberInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
704
+ return /* @__PURE__ */ _jsxQ("div", null, {
705
+ class: "flex flex-col"
706
+ }, [
707
+ /* @__PURE__ */ _jsxQ("label", null, {
708
+ class: "mb-2",
709
+ for: _fnSignal((p0) => p0.id, [
710
+ props
711
+ ], "p0.id")
712
+ }, _fnSignal((p0) => p0.label, [
713
+ props
714
+ ], "p0.label"), 3, null),
715
+ /* @__PURE__ */ _jsxC(NumberInputRaw, {
716
+ ...props
717
+ }, 0, "s2_0")
718
+ ], 1, "s2_1");
719
+ }, "NumberInput_component_24VCzPxvTvU"));
720
+ const NumberInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
721
+ const props1 = _restProps(props, [
722
+ "input",
723
+ "onDecrement$",
724
+ "onIncrement$",
725
+ "value",
726
+ "step"
727
+ ]);
728
+ const store = useStore({
729
+ value: props.value ?? 0
730
+ });
731
+ return /* @__PURE__ */ _jsxQ("div", null, {
732
+ class: _fnSignal((p0) => ({
733
+ "flex text-gray-50": true,
734
+ "gap-2": !p0.input
735
+ }), [
736
+ props
737
+ ], '{"flex text-gray-50":true,"gap-2":!p0.input}')
738
+ }, [
739
+ /* @__PURE__ */ _jsxQ("button", {
740
+ class: {
741
+ "flex justify-center items-center transition ease-in-out border border-gray-700 bg-gray-800 text-2xl hover:bg-gray-600 h-full py-1.5 cursor-pointer": true,
742
+ "px-3 rounded-l-md border-r-0": props.input,
743
+ "w-[50%] rounded-md": !props.input,
744
+ "opacity-50 pointer-events-none": props1.min ? store.value <= props1.min : false
745
+ },
746
+ disabled: props1.min ? store.value <= props1.min : false
747
+ }, {
748
+ "aria-label": "Decrement",
749
+ "data-action": "decrement",
750
+ onClick$: /* @__PURE__ */ inlinedQrl((event, element) => {
751
+ const [props2, store2] = useLexicalScope();
752
+ store2.value = store2.value - (props2.step ?? 1);
753
+ props2.onDecrement$(event, element, store2);
754
+ }, "NumberInputRaw_component_div_button_onClick_jSJobSwAZdw", [
755
+ props,
756
+ store
757
+ ])
758
+ }, /* @__PURE__ */ _jsxC(Remove, {
759
+ class: "fill-current",
760
+ width: "24",
761
+ [_IMMUTABLE]: {
762
+ class: _IMMUTABLE,
763
+ width: _IMMUTABLE
764
+ }
765
+ }, 3, "s2_2"), 1, null),
766
+ props.input && /* @__PURE__ */ _jsxS("input", {
767
+ ...props1,
768
+ class: {
769
+ "transition ease-in-out text-lg text-center border border-gray-600 bg-gray-700 hover:bg-gray-600 focus:bg-gray-500 px-3 py-1 w-full": true,
770
+ ...props1.class
771
+ }
772
+ }, {
773
+ step: _fnSignal((p0) => p0.step ?? 1, [
774
+ props
775
+ ], "p0.step??1"),
776
+ type: "number",
777
+ value: _fnSignal((p0) => p0.value, [
778
+ store
779
+ ], "p0.value")
780
+ }, 0, "s2_3"),
781
+ /* @__PURE__ */ _jsxQ("button", {
782
+ class: {
783
+ "flex justify-center items-center transition ease-in-out border border-gray-700 bg-gray-800 text-2xl hover:bg-gray-600 h-full py-1.5 cursor-pointer": true,
784
+ "px-3 rounded-r-md border-l-0": props.input,
785
+ "w-[50%] rounded-md": !props.input,
786
+ "opacity-50 pointer-events-none": props1.max ? store.value >= props1.max : false
787
+ },
788
+ disabled: props1.max ? store.value >= props1.max : false
789
+ }, {
790
+ "aria-label": "Increment",
791
+ "data-action": "increment",
792
+ onClick$: /* @__PURE__ */ inlinedQrl((event, element) => {
793
+ const [props2, store2] = useLexicalScope();
794
+ store2.value = store2.value + (props2.step ?? 1);
795
+ props2.onIncrement$(event, element, store2);
796
+ }, "NumberInputRaw_component_div_button_onClick_1_VgNSQtzeCMk", [
797
+ props,
798
+ store
799
+ ])
800
+ }, /* @__PURE__ */ _jsxC(Add, {
801
+ class: "fill-current",
802
+ width: "24",
803
+ [_IMMUTABLE]: {
804
+ class: _IMMUTABLE,
805
+ width: _IMMUTABLE
806
+ }
807
+ }, 3, "s2_4"), 1, null)
808
+ ], 1, "s2_5");
809
+ }, "NumberInputRaw_component_VntJOtwvmM0"));
810
+ const OutputField = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
811
+ return /* @__PURE__ */ _jsxQ("div", null, {
812
+ class: "flex flex-col"
813
+ }, [
814
+ /* @__PURE__ */ _jsxQ("label", null, {
815
+ class: "mb-2",
816
+ for: _fnSignal((p0) => p0.id, [
817
+ props
818
+ ], "p0.id")
819
+ }, _fnSignal((p0) => p0.label, [
820
+ props
821
+ ], "p0.label"), 3, null),
822
+ /* @__PURE__ */ _jsxC(OutputFieldRaw, {
823
+ ...props
824
+ }, 0, "eT_0")
825
+ ], 1, "eT_1");
826
+ }, "OutputField_component_aZz1x0PsR68"));
827
+ const OutputFieldRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
828
+ const props1 = _restProps(props, [
829
+ "onChange$"
830
+ ]);
831
+ const alertsStore = useStore({
832
+ alerts: []
833
+ }, {
834
+ deep: true
835
+ });
836
+ return /* @__PURE__ */ _jsxC(Fragment, {
837
+ children: [
838
+ /* @__PURE__ */ _jsxS("textarea", {
839
+ ...props1,
840
+ class: {
841
+ "transition ease-in-out cursor-pointer text-lg border border-gray-700 bg-gray-800 text-gray-50 hover:bg-gray-700 focus:bg-gray-700 rounded-md px-3 py-2 break-words": true,
842
+ ...props1.class
843
+ },
844
+ onChange$: /* @__PURE__ */ inlinedQrl((event, element) => {
845
+ const [alertsStore2, props2] = useLexicalScope();
846
+ if (props2.onChange$)
847
+ props2.onChange$(event, element, alertsStore2);
848
+ }, "OutputFieldRaw_component__Fragment_textarea_onChange_xDB4MqWPYJE", [
849
+ alertsStore,
850
+ props
851
+ ]),
852
+ onClick$: /* @__PURE__ */ inlinedQrl((event, element) => {
853
+ const [alertsStore2] = useLexicalScope();
854
+ navigator.clipboard.writeText(element.value);
855
+ const alert = {
856
+ class: "text-green-500",
857
+ text: "Copied to clipboard!"
858
+ };
859
+ alertsStore2.alerts.push(alert);
860
+ setTimeout(() => {
861
+ alertsStore2.alerts.splice(alertsStore2.alerts.indexOf(alert), 1);
862
+ }, 1e3);
863
+ }, "OutputFieldRaw_component__Fragment_textarea_onClick_3cKznleAw7k", [
864
+ alertsStore
865
+ ])
866
+ }, null, 0, null),
867
+ alertsStore.alerts.map((alert, i2) => /* @__PURE__ */ _jsxQ("p", {
868
+ class: _wrapSignal(alert, "class"),
869
+ dangerouslySetInnerHTML: _wrapSignal(alert, "text")
870
+ }, null, null, 3, `output-alert${i2}`))
871
+ ]
872
+ }, 1, "eT_2");
873
+ }, "OutputFieldRaw_component_01qlrYqVLxg"));
874
+ const SelectInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
875
+ return /* @__PURE__ */ _jsxQ("div", null, {
876
+ class: "flex flex-col"
877
+ }, [
878
+ /* @__PURE__ */ _jsxQ("label", null, {
879
+ class: "mb-2",
880
+ for: _fnSignal((p0) => p0.id, [
881
+ props
882
+ ], "p0.id")
883
+ }, _fnSignal((p0) => p0.label, [
884
+ props
885
+ ], "p0.label"), 3, null),
886
+ /* @__PURE__ */ _jsxC(SelectInputRaw, {
887
+ ...props,
888
+ children: /* @__PURE__ */ _jsxC(Slot, null, 3, "Ng_0")
889
+ }, 0, "Ng_1")
890
+ ], 1, "Ng_2");
891
+ }, "SelectInput_component_tsmPxDHgsg4"));
892
+ const SelectInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
893
+ const props1 = _restProps(props, [
894
+ "transparent"
895
+ ]);
896
+ return /* @__PURE__ */ _jsxS("select", {
897
+ ...props1,
898
+ children: /* @__PURE__ */ _jsxC(Slot, null, 3, "Ng_3"),
899
+ class: {
900
+ "transition ease-in-out text-lg border border-gray-700 bg-gray-800 text-gray-50 hover:bg-gray-700 focus:bg-gray-700 rounded-md px-2 py-3": true,
901
+ "border-0 bg-transparent": props.transparent,
902
+ ...props1.class
903
+ }
904
+ }, null, 0, "Ng_4");
905
+ }, "SelectInputRaw_component_shUb6XV81ac"));
906
+ const TextAreaInput = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
907
+ return /* @__PURE__ */ _jsxQ("div", null, {
908
+ class: "flex flex-col"
909
+ }, [
910
+ /* @__PURE__ */ _jsxQ("label", null, {
911
+ class: "mb-2",
912
+ for: _fnSignal((p0) => p0.id, [
913
+ props
914
+ ], "p0.id")
915
+ }, _fnSignal((p0) => p0.label, [
916
+ props
917
+ ], "p0.label"), 3, null),
918
+ /* @__PURE__ */ _jsxC(TextAreaInputRaw, {
919
+ ...props
920
+ }, 0, "QH_0")
921
+ ], 1, "QH_1");
922
+ }, "TextAreaInput_component_1Be04zWHPB4"));
923
+ const TextAreaInputRaw = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
924
+ return /* @__PURE__ */ _jsxS("textarea", {
925
+ ...props,
926
+ class: {
927
+ "transition ease-in-out text-lg border border-gray-700 bg-gray-800 text-gray-50 hover:bg-gray-700 focus:bg-gray-700 rounded-md px-3 py-2 resize-y w-full h-32": true,
928
+ ...props.class
929
+ }
930
+ }, null, 0, "QH_2");
931
+ }, "TextAreaInputRaw_component_0LDqWcPUVoM"));
932
+ const Toggle = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
933
+ const props1 = _restProps(props, [
934
+ "label",
935
+ "center"
936
+ ]);
937
+ return /* @__PURE__ */ _jsxQ("div", null, {
938
+ class: _fnSignal((p0) => ({
939
+ "flex gap-3 items-center": true,
940
+ "justify-center": p0.center
941
+ }), [
942
+ props
943
+ ], '{"flex gap-3 items-center":true,"justify-center":p0.center}')
944
+ }, [
945
+ /* @__PURE__ */ _jsxQ("label", null, {
946
+ class: "inline-flex relative items-center cursor-pointer"
947
+ }, [
948
+ /* @__PURE__ */ _jsxS("input", {
949
+ ...props1,
950
+ class: {
951
+ "sr-only peer": true,
952
+ ...props1.class
953
+ }
954
+ }, {
955
+ type: "checkbox"
956
+ }, 0, null),
957
+ /* @__PURE__ */ _jsxQ("div", null, {
958
+ class: {
959
+ "transition ease-in-out w-12 h-7 rounded-md peer bg-gray-800 border border-gray-700 hover:bg-gray-700": true,
960
+ "peer-checked:bg-blue-700 peer-checked:border-blue-600 peer-checked:hover:bg-blue-600": true,
961
+ "after:content-[''] after:absolute after:top-[4px] after:left-[4px] after:bg-gray-700 after:border after:border-gray-600 hover:after:bg-gray-600 after:rounded-md after:h-5 after:w-5 after:transition-all after:ease-in-out": true,
962
+ "peer-checked:after:translate-x-full peer-checked:after:bg-blue-500 peer-checked:after:border-blue-400 peer-checked:hover:after:bg-blue-400": true
963
+ }
964
+ }, null, 3, null)
965
+ ], 1, null),
966
+ props.label && /* @__PURE__ */ _jsxQ("label", {
967
+ for: _wrapSignal(props1, "id")
968
+ }, {
969
+ class: "text-gray-100"
970
+ }, _fnSignal((p0) => p0.label, [
971
+ props
972
+ ], "p0.label"), 3, "qv_0")
973
+ ], 1, "qv_1");
974
+ }, "Toggle_component_9jluhzRll9k"));
975
+ const LogoBirdflop = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
976
+ const props1 = _restProps(props, [
977
+ "confused"
978
+ ]);
979
+ return /* @__PURE__ */ _jsxS("svg", {
980
+ ...props1,
981
+ children: [
982
+ /* @__PURE__ */ _jsxQ("defs", null, null, [
983
+ /* @__PURE__ */ _jsxQ("linearGradient", null, {
984
+ gradientUnits: "objectBoundingBox",
985
+ id: "linear-gradient",
986
+ x1: "0.5",
987
+ x2: "0.5",
988
+ y2: "1"
989
+ }, [
990
+ /* @__PURE__ */ _jsxQ("stop", null, {
991
+ offset: "0",
992
+ "stop-color": "#54daf4"
993
+ }, null, 3, null),
994
+ /* @__PURE__ */ _jsxQ("stop", null, {
995
+ offset: "1",
996
+ "stop-color": "#545eb6"
997
+ }, null, 3, null)
998
+ ], 3, null),
999
+ /* @__PURE__ */ _jsxQ("clipPath", null, {
1000
+ id: "clip-bf_3"
1001
+ }, /* @__PURE__ */ _jsxQ("rect", null, {
1002
+ height: "1080",
1003
+ width: "1080"
1004
+ }, null, 3, null), 3, null)
1005
+ ], 3, null),
1006
+ /* @__PURE__ */ _jsxQ("g", null, {
1007
+ "clip-path": "url(#clip-bf_3)",
1008
+ "data-name": "bf - 3",
1009
+ id: "bf_3"
1010
+ }, /* @__PURE__ */ _jsxQ("path", null, {
1011
+ 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",
1012
+ "data-name": "Union 26",
1013
+ fill: "url(#linear-gradient)",
1014
+ id: "Union_26",
1015
+ transform: "translate(2479.9 1169.7)"
1016
+ }, null, 3, null), 3, null),
1017
+ props.confused && /* @__PURE__ */ _jsxQ("g", null, {
1018
+ fill: "#1E2837",
1019
+ stroke: "#1E2837",
1020
+ style: "transform: translate(595px, 460px) scale(0.375)"
1021
+ }, [
1022
+ /* @__PURE__ */ _jsxQ("path", null, {
1023
+ 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",
1024
+ fill: "none",
1025
+ "stroke-linecap": "round",
1026
+ "stroke-miterlimit": "10",
1027
+ "stroke-width": "80"
1028
+ }, null, 3, null),
1029
+ /* @__PURE__ */ _jsxQ("circle", null, {
1030
+ cx: "248",
1031
+ cy: "399.99",
1032
+ r: "40",
1033
+ style: "transform: translate(0, 30px)"
1034
+ }, null, 3, null)
1035
+ ], 3, "V8_0")
1036
+ ],
1037
+ height: _wrapSignal(props1, "width")
1038
+ }, {
1039
+ viewBox: "0 0 1080 1080",
1040
+ xmlns: "http://www.w3.org/2000/svg",
1041
+ "xmlns:xlink": "http://www.w3.org/1999/xlink"
1042
+ }, 0, "V8_1");
1043
+ }, "LogoBirdflop_component_xs4c0ltbdlQ"));
1044
+ const LogoDiscord = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
1045
+ return /* @__PURE__ */ _jsxS("svg", {
1046
+ ...props,
1047
+ children: /* @__PURE__ */ _jsxQ("path", null, {
1048
+ 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"
1049
+ }, null, 3, null)
1050
+ }, {
1051
+ height: _fnSignal((p0) => p0.width, [
1052
+ props
1053
+ ], "p0.width"),
1054
+ viewBox: "0 0 127.14 96.36",
1055
+ xmlns: "http://www.w3.org/2000/svg"
1056
+ }, 0, "zl_0");
1057
+ }, "LogoDiscord_component_AmOcFZoZxss"));
1058
+ const LogoFabric = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
1059
+ return /* @__PURE__ */ _jsxS("svg", {
1060
+ ...props,
1061
+ children: [
1062
+ /* @__PURE__ */ _jsxQ("path", null, {
1063
+ d: "M0 0h24v24H0z",
1064
+ fill: "none"
1065
+ }, null, 3, null),
1066
+ /* @__PURE__ */ _jsxQ("path", null, {
1067
+ 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",
1068
+ fill: "none",
1069
+ stroke: "currentColor",
1070
+ "stroke-width": "23",
1071
+ transform: "matrix(.08671 0 0 .0867 -49.8 -56)"
1072
+ }, null, 3, null)
1073
+ ]
1074
+ }, {
1075
+ "clip-rule": "evenodd",
1076
+ "fill-rule": "evenodd",
1077
+ height: _fnSignal((p0) => p0.width, [
1078
+ props
1079
+ ], "p0.width"),
1080
+ "stroke-linecap": "round",
1081
+ "stroke-linejoin": "round",
1082
+ viewBox: "0 0 24 24",
1083
+ "xml:space": "preserve",
1084
+ xmlns: "http://www.w3.org/2000/svg"
1085
+ }, 0, "MX_0");
1086
+ }, "LogoFabric_component_b4TU1XWJcXA"));
1087
+ const LogoForge = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
1088
+ return /* @__PURE__ */ _jsxS("svg", {
1089
+ ...props,
1090
+ children: [
1091
+ /* @__PURE__ */ _jsxQ("path", null, {
1092
+ d: "M0 0h24v24H0z",
1093
+ fill: "none"
1094
+ }, null, 3, null),
1095
+ /* @__PURE__ */ _jsxQ("path", null, {
1096
+ 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",
1097
+ fill: "none",
1098
+ stroke: "currentColor",
1099
+ "stroke-width": "2"
1100
+ }, null, 3, null)
1101
+ ]
1102
+ }, {
1103
+ "clip-rule": "evenodd",
1104
+ "fill-rule": "evenodd",
1105
+ height: _fnSignal((p0) => p0.width, [
1106
+ props
1107
+ ], "p0.width"),
1108
+ "stroke-linecap": "round",
1109
+ "stroke-linejoin": "round",
1110
+ "stroke-miterlimit": "1.5",
1111
+ viewBox: "0 0 24 24",
1112
+ "xml:space": "preserve"
1113
+ }, 0, "AC_0");
1114
+ }, "LogoForge_component_fCGFug6ct1Q"));
1115
+ const LogoPaper = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
1116
+ return /* @__PURE__ */ _jsxS("svg", {
1117
+ ...props,
1118
+ children: [
1119
+ /* @__PURE__ */ _jsxQ("path", null, {
1120
+ d: "M0 0h24v24H0z",
1121
+ fill: "none"
1122
+ }, null, 3, null),
1123
+ /* @__PURE__ */ _jsxQ("path", null, {
1124
+ d: "m12 18 6 2 3-17L2 14l6 2",
1125
+ fill: "none",
1126
+ stroke: "currentColor",
1127
+ "stroke-width": "2"
1128
+ }, null, 3, null),
1129
+ /* @__PURE__ */ _jsxQ("path", null, {
1130
+ d: "m9 21-1-5 4 2-3 3Z",
1131
+ stroke: "currentColor",
1132
+ "stroke-width": "2"
1133
+ }, null, 3, null),
1134
+ /* @__PURE__ */ _jsxQ("path", null, {
1135
+ d: "m12 18-4-2 10-9-6 11Z",
1136
+ fill: "currentColor"
1137
+ }, null, 3, null)
1138
+ ]
1139
+ }, {
1140
+ "clip-rule": "evenodd",
1141
+ "fill-rule": "evenodd",
1142
+ height: _fnSignal((p0) => p0.width, [
1143
+ props
1144
+ ], "p0.width"),
1145
+ "stroke-linecap": "round",
1146
+ "stroke-linejoin": "round",
1147
+ "stroke-miterlimit": "1.5",
1148
+ viewBox: "0 0 24 24",
1149
+ "xml:space": "preserve"
1150
+ }, 0, "CY_0");
1151
+ }, "LogoPaper_component_ngpMW0V9Km8"));
1152
+ const LogoPterodactyl = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
1153
+ return /* @__PURE__ */ _jsxS("svg", {
1154
+ ...props,
1155
+ children: /* @__PURE__ */ _jsxQ("g", null, {
1156
+ fill: "currentColor",
1157
+ stroke: "none",
1158
+ transform: "translate(0,180) scale(0.100000,-0.100000)"
1159
+ }, [
1160
+ /* @__PURE__ */ _jsxQ("path", null, {
1161
+ 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"
1162
+ }, null, 3, null),
1163
+ /* @__PURE__ */ _jsxQ("path", null, {
1164
+ d: "M1149 1320 c-147 -23 -282 -103 -431 -254 -103 -104 -143 -125 -65 -34 48 56 188 261 182 266 -6 7 -191 -71 -265 -111 -245 -132 -410 -289 -502 -474 -27 -56 -48 -107 -46 -112 1 -5 41 20 88 56 120 93 200 146 200 133 0 -6 -46 -59 -103 -117 -56 -59 -95 -104 -87 -101 8 3 89 36 180 73 150 61 165 66 175 50 64 -109 121 -158 225 -194 103 -36 259 -47 366 -26 13 3 42 -11 80 -39 32 -24 78 -49 101 -55 27 -7 44 -19 48 -31 8 -27 41 -43 71 -36 28 7 32 26 5 26 -24 0 -44 24 -39 47 2 10 18 25 35 34 18 9 30 19 26 23 -13 13 -58 5 -79 -15 -15 -14 -29 -18 -48 -13 -29 7 -79 60 -73 78 2 6 29 20 60 31 31 11 57 23 57 27 0 13 -181 96 -248 114 l-64 18 6 40 c11 71 63 162 132 231 101 101 239 159 582 246 28 7 52 15 52 19 0 7 -209 64 -310 84 -99 19 -241 27 -311 16z m-819 -401 c-13 -22 -37 -35 -48 -24 -7 7 34 45 49 45 6 0 5 -9 -1 -21z"
1165
+ }, null, 3, null),
1166
+ /* @__PURE__ */ _jsxQ("path", null, {
1167
+ d: "M1224 496 c-14 -11 -16 -17 -7 -26 9 -10 17 -8 37 6 14 11 26 22 26 27 0 12 -35 8 -56 -7z"
1168
+ }, null, 3, null),
1169
+ /* @__PURE__ */ _jsxQ("path", null, {
1170
+ d: "M1012 441 c-19 -11 64 -51 106 -51 39 0 40 4 5 35 -29 25 -85 33 -111 16z"
1171
+ }, null, 3, null)
1172
+ ], 3, null)
1173
+ }, {
1174
+ height: _fnSignal((p0) => p0.width, [
1175
+ props
1176
+ ], "p0.width"),
1177
+ preserveAspectRatio: "xMidYMid meet",
1178
+ version: "1.0",
1179
+ viewBox: "0 0 180 180",
1180
+ xmlns: "http://www.w3.org/2000/svg"
1181
+ }, 0, "QM_0");
1182
+ }, "LogoPterodactyl_component_TnaGzuDx6YY"));
1183
+ const LogoPurpur = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
1184
+ return /* @__PURE__ */ _jsxS("svg", {
1185
+ ...props,
1186
+ children: [
1187
+ /* @__PURE__ */ _jsxQ("defs", null, null, /* @__PURE__ */ _jsxQ("path", null, {
1188
+ d: "m264 41.95 8-4v8l-8 4v-8Z",
1189
+ fill: "none",
1190
+ id: "purpur",
1191
+ stroke: "currentColor",
1192
+ "stroke-width": "1.68"
1193
+ }, null, 3, null), 3, null),
1194
+ /* @__PURE__ */ _jsxQ("path", null, {
1195
+ d: "M0 0h24v24H0z",
1196
+ fill: "none"
1197
+ }, null, 3, null),
1198
+ /* @__PURE__ */ _jsxQ("path", null, {
1199
+ d: "m264 29.95-8 4 8 4.42 8-4.42-8-4Z",
1200
+ fill: "none",
1201
+ stroke: "currentColor",
1202
+ "stroke-width": "1.77",
1203
+ transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1204
+ }, null, 3, null),
1205
+ /* @__PURE__ */ _jsxQ("path", null, {
1206
+ d: "m272 38.37-8 4.42-8-4.42",
1207
+ fill: "none",
1208
+ stroke: "currentColor",
1209
+ "stroke-width": "1.77",
1210
+ transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1211
+ }, null, 3, null),
1212
+ /* @__PURE__ */ _jsxQ("path", null, {
1213
+ d: "m260 31.95 8 4.21V45",
1214
+ fill: "none",
1215
+ stroke: "currentColor",
1216
+ "stroke-width": "1.77",
1217
+ transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1218
+ }, null, 3, null),
1219
+ /* @__PURE__ */ _jsxQ("path", null, {
1220
+ d: "M260 45v-8.84l8-4.21",
1221
+ fill: "none",
1222
+ stroke: "currentColor",
1223
+ "stroke-width": "1.77",
1224
+ transform: "matrix(1.125 0 0 1.1372 -285 -31.69)"
1225
+ }, null, 3, null),
1226
+ /* @__PURE__ */ _jsxQ("path", null, {
1227
+ d: "m264 41.95 8-4v8l-8 4v-8Z",
1228
+ fill: "none",
1229
+ stroke: "currentColor",
1230
+ "stroke-width": "1.68",
1231
+ transform: "matrix(1.125 0 0 1.2569 -285 -40.78)"
1232
+ }, null, 3, null),
1233
+ /* @__PURE__ */ _jsxQ("path", null, {
1234
+ d: "m264 41.95 8-4v8l-8 4v-8Z",
1235
+ fill: "none",
1236
+ stroke: "currentColor",
1237
+ "stroke-width": "1.68",
1238
+ transform: "matrix(-1.125 0 0 1.2569 309 -40.78)"
1239
+ }, null, 3, null)
1240
+ ]
1241
+ }, {
1242
+ "clip-rule": "evenodd",
1243
+ "fill-rule": "evenodd",
1244
+ height: _fnSignal((p0) => p0.width, [
1245
+ props
1246
+ ], "p0.width"),
1247
+ "stroke-linecap": "round",
1248
+ "stroke-linejoin": "round",
1249
+ "stroke-miterlimit": "1.5",
1250
+ viewBox: "0 0 24 24",
1251
+ "xml:space": "preserve"
1252
+ }, 0, "cF_0");
1253
+ }, "LogoPurpur_component_rScmHYvBb0A"));
1254
+ const LogoVelocity = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
1255
+ return /* @__PURE__ */ _jsxS("svg", {
1256
+ ...props,
1257
+ children: [
1258
+ /* @__PURE__ */ _jsxQ("path", null, {
1259
+ 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"
1260
+ }, null, 3, null),
1261
+ /* @__PURE__ */ _jsxQ("circle", null, {
1262
+ cx: "416.44",
1263
+ cy: "236.11",
1264
+ r: "9.83"
1265
+ }, null, 3, null),
1266
+ /* @__PURE__ */ _jsxQ("path", null, {
1267
+ d: "M458.29 265.6H280.52a9.83 9.83 0 110-19.66h106.22a9.84 9.84 0 000-19.67h-70.2a9.83 9.83 0 110-19.66H422.9a9.84 9.84 0 000-19.67H202.83l33.42 45.61a11.86 11.86 0 01.81 12.75l-42.78 77.3a11.75 11.75 0 01-1.4 2h212.29a9.83 9.83 0 100-19.66h-53.53a9.84 9.84 0 110-19.67h106.65a9.84 9.84 0 100-19.67z"
1268
+ }, null, 3, null)
1269
+ ]
1270
+ }, {
1271
+ fill: "currentColor",
1272
+ height: _fnSignal((p0) => p0.width, [
1273
+ props
1274
+ ], "p0.width"),
1275
+ viewBox: "0 0 500 500"
1276
+ }, 0, "vY_0");
1277
+ }, "LogoVelocity_component_0O15KZhC134"));
1278
+ const LogoWaterfall = /* @__PURE__ */ componentQrl(/* @__PURE__ */ inlinedQrl((props) => {
1279
+ return /* @__PURE__ */ _jsxS("svg", {
1280
+ ...props,
1281
+ children: /* @__PURE__ */ _jsxQ("path", null, {
1282
+ d: "M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"
1283
+ }, null, 3, null)
1284
+ }, {
1285
+ fill: "none",
1286
+ height: _fnSignal((p0) => p0.width, [
1287
+ props
1288
+ ], "p0.width"),
1289
+ stroke: "currentColor",
1290
+ "stroke-linecap": "round",
1291
+ "stroke-linejoin": "round",
1292
+ "stroke-width": "2",
1293
+ viewBox: "0 0 24 24"
1294
+ }, 0, "fo_0");
1295
+ }, "LogoWaterfall_component_k4x97LWls04"));
1296
+ export {
1297
+ Button,
1298
+ ButtonAnchor,
1299
+ Card,
1300
+ CardHeader,
1301
+ ColorInput,
1302
+ LoadingIcon,
1303
+ LogoBirdflop,
1304
+ LogoDiscord,
1305
+ LogoFabric,
1306
+ LogoForge,
1307
+ LogoPaper,
1308
+ LogoPterodactyl,
1309
+ LogoPurpur,
1310
+ LogoVelocity,
1311
+ LogoWaterfall,
1312
+ NumberInput,
1313
+ NumberInputRaw,
1314
+ OutputField,
1315
+ OutputFieldRaw,
1316
+ SelectInput,
1317
+ SelectInputRaw,
1318
+ TextAreaInput,
1319
+ TextAreaInputRaw,
1320
+ TextInput,
1321
+ TextInputRaw,
1322
+ Toggle,
1323
+ blobClasses as _auto_blobClasses,
1324
+ buttonClass as _auto_buttonClass,
1325
+ buttonColorClasses,
1326
+ cardColorClasses,
1327
+ sizeClasses
1328
+ };