@liketysplit/react-luna 0.1.3 → 0.1.5
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/dist/components/index.d.ts +14 -0
- package/dist/components/layout-shared.d.ts +18 -0
- package/dist/components/luna-autocomplete/LunaAutocomplete.d.ts +16 -0
- package/dist/components/luna-autocomplete/LunaAutocomplete.props.d.ts +19 -0
- package/dist/components/luna-autocomplete/index.d.ts +2 -0
- package/dist/components/luna-card/LunaCard.d.ts +18 -0
- package/dist/components/luna-card/LunaCard.props.d.ts +18 -0
- package/dist/components/luna-card/index.d.ts +2 -0
- package/dist/components/luna-checkbox/LunaCheckbox.d.ts +9 -0
- package/dist/components/luna-checkbox/LunaCheckbox.props.d.ts +8 -0
- package/dist/components/luna-checkbox/index.d.ts +2 -0
- package/dist/components/luna-column/LunaColumn.d.ts +10 -0
- package/dist/components/luna-column/LunaColumn.props.d.ts +10 -0
- package/dist/components/luna-column/index.d.ts +2 -0
- package/dist/components/luna-divider/LunaDivider.d.ts +13 -0
- package/dist/components/luna-divider/LunaDivider.props.d.ts +16 -0
- package/dist/components/luna-divider/index.d.ts +2 -0
- package/dist/components/luna-grid/LunaGrid.d.ts +11 -0
- package/dist/components/luna-grid/LunaGrid.props.d.ts +11 -0
- package/dist/components/luna-grid/index.d.ts +2 -0
- package/dist/components/luna-header/LunaHeader.d.ts +10 -0
- package/dist/components/luna-header/LunaHeader.props.d.ts +11 -0
- package/dist/components/luna-header/index.d.ts +2 -0
- package/dist/components/luna-input/LunaInput.d.ts +12 -0
- package/dist/components/luna-input/LunaInput.props.d.ts +11 -0
- package/dist/components/luna-input/index.d.ts +2 -0
- package/dist/components/luna-multiselect/LunaMultiselect.d.ts +16 -0
- package/dist/components/luna-multiselect/LunaMultiselect.props.d.ts +19 -0
- package/dist/components/luna-multiselect/index.d.ts +2 -0
- package/dist/components/luna-radio/LunaRadio.d.ts +8 -0
- package/dist/components/luna-radio/LunaRadio.props.d.ts +7 -0
- package/dist/components/luna-radio/index.d.ts +2 -0
- package/dist/components/luna-row/LunaRow.d.ts +11 -0
- package/dist/components/luna-row/LunaRow.props.d.ts +11 -0
- package/dist/components/luna-row/index.d.ts +2 -0
- package/dist/components/luna-select/LunaSelect.d.ts +13 -0
- package/dist/components/luna-select/LunaSelect.props.d.ts +16 -0
- package/dist/components/luna-select/index.d.ts +2 -0
- package/dist/components/luna-text/LunaText.d.ts +15 -0
- package/dist/components/luna-text/LunaText.props.d.ts +16 -0
- package/dist/components/luna-text/index.d.ts +2 -0
- package/dist/components/luna-textarea/LunaTextarea.d.ts +16 -0
- package/dist/components/luna-textarea/LunaTextarea.props.d.ts +15 -0
- package/dist/components/luna-textarea/index.d.ts +2 -0
- package/dist/components/useParentBackgroundVar.d.ts +2 -0
- package/dist/index.js +2501 -560
- package/dist/style.css +1 -1
- package/dist/theme/base.test.d.ts +1 -0
- package/dist/theme/types.d.ts +101 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
const
|
|
1
|
+
import d from "react";
|
|
2
|
+
const Wn = {
|
|
3
3
|
colors: {
|
|
4
4
|
scale: {
|
|
5
5
|
primary: {
|
|
@@ -222,10 +222,216 @@ const gr = {
|
|
|
222
222
|
fg: "#ffffff"
|
|
223
223
|
}
|
|
224
224
|
}
|
|
225
|
+
},
|
|
226
|
+
text: {
|
|
227
|
+
defaultVariant: "body",
|
|
228
|
+
modes: {
|
|
229
|
+
light: {
|
|
230
|
+
fg: "neutral.900",
|
|
231
|
+
mutedFg: "neutral.500",
|
|
232
|
+
surfaceBg: "neutral.100",
|
|
233
|
+
surfaceBorder: "neutral.200"
|
|
234
|
+
},
|
|
235
|
+
dark: {
|
|
236
|
+
fg: "neutral.50",
|
|
237
|
+
mutedFg: "neutral.400",
|
|
238
|
+
surfaceBg: "neutral.800",
|
|
239
|
+
surfaceBorder: "neutral.700"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
variants: {
|
|
243
|
+
body: {
|
|
244
|
+
fontSize: "md",
|
|
245
|
+
fontWeight: "regular",
|
|
246
|
+
lineHeight: "relaxed"
|
|
247
|
+
},
|
|
248
|
+
"body-small": {
|
|
249
|
+
fontSize: "sm",
|
|
250
|
+
fontWeight: "regular",
|
|
251
|
+
lineHeight: "relaxed"
|
|
252
|
+
},
|
|
253
|
+
caption: {
|
|
254
|
+
fontSize: "xs",
|
|
255
|
+
fontWeight: "medium",
|
|
256
|
+
lineHeight: "normal",
|
|
257
|
+
letterSpacing: "0.01em"
|
|
258
|
+
},
|
|
259
|
+
label: {
|
|
260
|
+
fontSize: "sm",
|
|
261
|
+
fontWeight: "semibold",
|
|
262
|
+
lineHeight: "normal",
|
|
263
|
+
letterSpacing: "0.01em"
|
|
264
|
+
},
|
|
265
|
+
title: {
|
|
266
|
+
fontSize: "xl",
|
|
267
|
+
fontWeight: "semibold",
|
|
268
|
+
lineHeight: "tight"
|
|
269
|
+
},
|
|
270
|
+
display: {
|
|
271
|
+
fontSize: "xxl",
|
|
272
|
+
fontWeight: "bold",
|
|
273
|
+
lineHeight: "tight",
|
|
274
|
+
letterSpacing: "-0.02em"
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
card: {
|
|
279
|
+
defaultPadding: "4",
|
|
280
|
+
defaultGap: "4",
|
|
281
|
+
radius: "lg",
|
|
282
|
+
modes: {
|
|
283
|
+
light: {
|
|
284
|
+
bg: "neutral.50",
|
|
285
|
+
fg: "neutral.900",
|
|
286
|
+
border: "neutral.200",
|
|
287
|
+
shadow: "sm",
|
|
288
|
+
elevatedShadow: "md",
|
|
289
|
+
hoverBorder: "neutral.300",
|
|
290
|
+
hoverShadow: "md"
|
|
291
|
+
},
|
|
292
|
+
dark: {
|
|
293
|
+
bg: "neutral.800",
|
|
294
|
+
fg: "neutral.50",
|
|
295
|
+
border: "neutral.700",
|
|
296
|
+
shadow: "sm",
|
|
297
|
+
elevatedShadow: "md",
|
|
298
|
+
hoverBorder: "neutral.500",
|
|
299
|
+
hoverShadow: "md"
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
divider: {
|
|
304
|
+
defaultSpacing: "4",
|
|
305
|
+
defaultInset: "4",
|
|
306
|
+
modes: {
|
|
307
|
+
light: {
|
|
308
|
+
default: "neutral.200",
|
|
309
|
+
muted: "neutral.100",
|
|
310
|
+
strong: "neutral.400",
|
|
311
|
+
labelBg: "neutral.50",
|
|
312
|
+
labelFg: "neutral.500"
|
|
313
|
+
},
|
|
314
|
+
dark: {
|
|
315
|
+
default: "neutral.700",
|
|
316
|
+
muted: "neutral.800",
|
|
317
|
+
strong: "neutral.500",
|
|
318
|
+
labelBg: "neutral.900",
|
|
319
|
+
labelFg: "neutral.400"
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
},
|
|
323
|
+
input: {
|
|
324
|
+
defaultSize: "md",
|
|
325
|
+
radius: "md",
|
|
326
|
+
sizes: {
|
|
327
|
+
sm: {
|
|
328
|
+
minHeight: "2rem",
|
|
329
|
+
paddingX: "2",
|
|
330
|
+
paddingY: "1",
|
|
331
|
+
fontSize: "xs",
|
|
332
|
+
gap: "1"
|
|
333
|
+
},
|
|
334
|
+
md: {
|
|
335
|
+
minHeight: "2.5rem",
|
|
336
|
+
paddingX: "4",
|
|
337
|
+
paddingY: "2",
|
|
338
|
+
fontSize: "sm",
|
|
339
|
+
gap: "2"
|
|
340
|
+
},
|
|
341
|
+
lg: {
|
|
342
|
+
minHeight: "3rem",
|
|
343
|
+
paddingX: "5",
|
|
344
|
+
paddingY: "2",
|
|
345
|
+
fontSize: "md",
|
|
346
|
+
gap: "2"
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
modes: {
|
|
350
|
+
light: {
|
|
351
|
+
bg: "neutral.50",
|
|
352
|
+
fg: "neutral.900",
|
|
353
|
+
border: "neutral.300",
|
|
354
|
+
hoverBorder: "neutral.400",
|
|
355
|
+
focusBorder: "primary.500",
|
|
356
|
+
focusRing: "rgba(99, 102, 241, 0.18)",
|
|
357
|
+
placeholder: "neutral.400",
|
|
358
|
+
disabledBg: "neutral.100",
|
|
359
|
+
disabledFg: "neutral.500",
|
|
360
|
+
disabledBorder: "neutral.200",
|
|
361
|
+
errorBorder: "danger.500",
|
|
362
|
+
errorFocusRing: "rgba(239, 68, 68, 0.18)",
|
|
363
|
+
helpFg: "neutral.500",
|
|
364
|
+
errorFg: "danger.600",
|
|
365
|
+
labelFg: "neutral.800"
|
|
366
|
+
},
|
|
367
|
+
dark: {
|
|
368
|
+
bg: "neutral.800",
|
|
369
|
+
fg: "neutral.50",
|
|
370
|
+
border: "neutral.600",
|
|
371
|
+
hoverBorder: "neutral.500",
|
|
372
|
+
focusBorder: "primary.300",
|
|
373
|
+
focusRing: "rgba(129, 140, 248, 0.22)",
|
|
374
|
+
placeholder: "neutral.500",
|
|
375
|
+
disabledBg: "neutral.900",
|
|
376
|
+
disabledFg: "neutral.500",
|
|
377
|
+
disabledBorder: "neutral.700",
|
|
378
|
+
errorBorder: "danger.400",
|
|
379
|
+
errorFocusRing: "rgba(248, 113, 113, 0.2)",
|
|
380
|
+
helpFg: "neutral.400",
|
|
381
|
+
errorFg: "danger.300",
|
|
382
|
+
labelFg: "neutral.100"
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
checkbox: {
|
|
387
|
+
radius: "sm",
|
|
388
|
+
boxSize: "1.125rem",
|
|
389
|
+
gap: "2",
|
|
390
|
+
offsetY: "0.125rem",
|
|
391
|
+
modes: {
|
|
392
|
+
light: {
|
|
393
|
+
bg: "neutral.50",
|
|
394
|
+
border: "neutral.300",
|
|
395
|
+
hoverBorder: "neutral.400",
|
|
396
|
+
checkedBg: "primary.600",
|
|
397
|
+
checkedBorder: "primary.600",
|
|
398
|
+
checkFg: "#ffffff",
|
|
399
|
+
focusBorder: "primary.500",
|
|
400
|
+
focusRing: "rgba(99, 102, 241, 0.18)",
|
|
401
|
+
disabledBg: "neutral.100",
|
|
402
|
+
disabledBorder: "neutral.200",
|
|
403
|
+
disabledFg: "neutral.500",
|
|
404
|
+
errorBorder: "danger.500",
|
|
405
|
+
helpFg: "neutral.500",
|
|
406
|
+
errorFg: "danger.600",
|
|
407
|
+
labelFg: "neutral.900",
|
|
408
|
+
descriptionFg: "neutral.500",
|
|
409
|
+
disabledLabelFg: "neutral.500"
|
|
410
|
+
},
|
|
411
|
+
dark: {
|
|
412
|
+
bg: "neutral.800",
|
|
413
|
+
border: "neutral.600",
|
|
414
|
+
hoverBorder: "neutral.500",
|
|
415
|
+
checkedBg: "primary.400",
|
|
416
|
+
checkedBorder: "primary.400",
|
|
417
|
+
checkFg: "#ffffff",
|
|
418
|
+
focusBorder: "primary.300",
|
|
419
|
+
focusRing: "rgba(129, 140, 248, 0.22)",
|
|
420
|
+
disabledBg: "neutral.900",
|
|
421
|
+
disabledBorder: "neutral.700",
|
|
422
|
+
disabledFg: "neutral.500",
|
|
423
|
+
errorBorder: "danger.400",
|
|
424
|
+
helpFg: "neutral.400",
|
|
425
|
+
errorFg: "danger.300",
|
|
426
|
+
labelFg: "neutral.50",
|
|
427
|
+
descriptionFg: "neutral.400",
|
|
428
|
+
disabledLabelFg: "neutral.500"
|
|
429
|
+
}
|
|
430
|
+
}
|
|
225
431
|
}
|
|
226
432
|
}
|
|
227
433
|
};
|
|
228
|
-
var
|
|
434
|
+
var Ze = { exports: {} }, Le = {};
|
|
229
435
|
/**
|
|
230
436
|
* @license React
|
|
231
437
|
* react-jsx-runtime.production.min.js
|
|
@@ -235,21 +441,21 @@ var Ee = { exports: {} }, q = {};
|
|
|
235
441
|
* This source code is licensed under the MIT license found in the
|
|
236
442
|
* LICENSE file in the root directory of this source tree.
|
|
237
443
|
*/
|
|
238
|
-
var
|
|
239
|
-
function
|
|
240
|
-
if (
|
|
241
|
-
|
|
242
|
-
var
|
|
243
|
-
function
|
|
244
|
-
var
|
|
245
|
-
|
|
246
|
-
for (
|
|
247
|
-
if (
|
|
248
|
-
return { $$typeof:
|
|
444
|
+
var cn;
|
|
445
|
+
function Vn() {
|
|
446
|
+
if (cn) return Le;
|
|
447
|
+
cn = 1;
|
|
448
|
+
var e = d, t = Symbol.for("react.element"), a = Symbol.for("react.fragment"), u = Object.prototype.hasOwnProperty, i = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, r = { key: !0, ref: !0, __self: !0, __source: !0 };
|
|
449
|
+
function _(p, f, h) {
|
|
450
|
+
var b, m = {}, w = null, o = null;
|
|
451
|
+
h !== void 0 && (w = "" + h), f.key !== void 0 && (w = "" + f.key), f.ref !== void 0 && (o = f.ref);
|
|
452
|
+
for (b in f) u.call(f, b) && !r.hasOwnProperty(b) && (m[b] = f[b]);
|
|
453
|
+
if (p && p.defaultProps) for (b in f = p.defaultProps, f) m[b] === void 0 && (m[b] = f[b]);
|
|
454
|
+
return { $$typeof: t, type: p, key: w, ref: o, props: m, _owner: i.current };
|
|
249
455
|
}
|
|
250
|
-
return
|
|
456
|
+
return Le.Fragment = a, Le.jsx = _, Le.jsxs = _, Le;
|
|
251
457
|
}
|
|
252
|
-
var
|
|
458
|
+
var De = {};
|
|
253
459
|
/**
|
|
254
460
|
* @license React
|
|
255
461
|
* react-jsx-runtime.development.js
|
|
@@ -259,91 +465,91 @@ var G = {};
|
|
|
259
465
|
* This source code is licensed under the MIT license found in the
|
|
260
466
|
* LICENSE file in the root directory of this source tree.
|
|
261
467
|
*/
|
|
262
|
-
var
|
|
263
|
-
function
|
|
264
|
-
return
|
|
265
|
-
var
|
|
266
|
-
function
|
|
267
|
-
if (
|
|
468
|
+
var dn;
|
|
469
|
+
function Yn() {
|
|
470
|
+
return dn || (dn = 1, process.env.NODE_ENV !== "production" && function() {
|
|
471
|
+
var e = d, t = Symbol.for("react.element"), a = Symbol.for("react.portal"), u = Symbol.for("react.fragment"), i = Symbol.for("react.strict_mode"), r = Symbol.for("react.profiler"), _ = Symbol.for("react.provider"), p = Symbol.for("react.context"), f = Symbol.for("react.forward_ref"), h = Symbol.for("react.suspense"), b = Symbol.for("react.suspense_list"), m = Symbol.for("react.memo"), w = Symbol.for("react.lazy"), o = Symbol.for("react.offscreen"), x = Symbol.iterator, s = "@@iterator";
|
|
472
|
+
function y(n) {
|
|
473
|
+
if (n === null || typeof n != "object")
|
|
268
474
|
return null;
|
|
269
|
-
var
|
|
270
|
-
return typeof
|
|
475
|
+
var c = x && n[x] || n[s];
|
|
476
|
+
return typeof c == "function" ? c : null;
|
|
271
477
|
}
|
|
272
|
-
var
|
|
273
|
-
function
|
|
478
|
+
var I = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
479
|
+
function k(n) {
|
|
274
480
|
{
|
|
275
|
-
for (var
|
|
276
|
-
|
|
277
|
-
|
|
481
|
+
for (var c = arguments.length, S = new Array(c > 1 ? c - 1 : 0), C = 1; C < c; C++)
|
|
482
|
+
S[C - 1] = arguments[C];
|
|
483
|
+
J("error", n, S);
|
|
278
484
|
}
|
|
279
485
|
}
|
|
280
|
-
function
|
|
486
|
+
function J(n, c, S) {
|
|
281
487
|
{
|
|
282
|
-
var
|
|
283
|
-
|
|
284
|
-
var
|
|
285
|
-
return String(
|
|
488
|
+
var C = I.ReactDebugCurrentFrame, Y = C.getStackAddendum();
|
|
489
|
+
Y !== "" && (c += "%s", S = S.concat([Y]));
|
|
490
|
+
var G = S.map(function(L) {
|
|
491
|
+
return String(L);
|
|
286
492
|
});
|
|
287
|
-
|
|
493
|
+
G.unshift("Warning: " + c), Function.prototype.apply.call(console[n], console, G);
|
|
288
494
|
}
|
|
289
495
|
}
|
|
290
|
-
var
|
|
291
|
-
|
|
292
|
-
function
|
|
293
|
-
return !!(typeof
|
|
496
|
+
var z = !1, A = !1, F = !1, g = !1, ee = !1, K;
|
|
497
|
+
K = Symbol.for("react.module.reference");
|
|
498
|
+
function U(n) {
|
|
499
|
+
return !!(typeof n == "string" || typeof n == "function" || n === u || n === r || ee || n === i || n === h || n === b || g || n === o || z || A || F || typeof n == "object" && n !== null && (n.$$typeof === w || n.$$typeof === m || n.$$typeof === _ || n.$$typeof === p || n.$$typeof === f || // This needs to include all possible module reference object
|
|
294
500
|
// types supported by any Flight configuration anywhere since
|
|
295
501
|
// we don't know which Flight build this will end up being used
|
|
296
502
|
// with.
|
|
297
|
-
|
|
503
|
+
n.$$typeof === K || n.getModuleId !== void 0));
|
|
298
504
|
}
|
|
299
|
-
function
|
|
300
|
-
var
|
|
301
|
-
if (
|
|
302
|
-
return
|
|
303
|
-
var
|
|
304
|
-
return
|
|
505
|
+
function le(n, c, S) {
|
|
506
|
+
var C = n.displayName;
|
|
507
|
+
if (C)
|
|
508
|
+
return C;
|
|
509
|
+
var Y = c.displayName || c.name || "";
|
|
510
|
+
return Y !== "" ? S + "(" + Y + ")" : S;
|
|
305
511
|
}
|
|
306
|
-
function
|
|
307
|
-
return
|
|
512
|
+
function q(n) {
|
|
513
|
+
return n.displayName || "Context";
|
|
308
514
|
}
|
|
309
|
-
function
|
|
310
|
-
if (
|
|
515
|
+
function Q(n) {
|
|
516
|
+
if (n == null)
|
|
311
517
|
return null;
|
|
312
|
-
if (typeof
|
|
313
|
-
return
|
|
314
|
-
if (typeof
|
|
315
|
-
return
|
|
316
|
-
switch (
|
|
317
|
-
case
|
|
518
|
+
if (typeof n.tag == "number" && k("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof n == "function")
|
|
519
|
+
return n.displayName || n.name || null;
|
|
520
|
+
if (typeof n == "string")
|
|
521
|
+
return n;
|
|
522
|
+
switch (n) {
|
|
523
|
+
case u:
|
|
318
524
|
return "Fragment";
|
|
319
525
|
case a:
|
|
320
526
|
return "Portal";
|
|
321
|
-
case
|
|
527
|
+
case r:
|
|
322
528
|
return "Profiler";
|
|
323
|
-
case
|
|
529
|
+
case i:
|
|
324
530
|
return "StrictMode";
|
|
325
|
-
case
|
|
531
|
+
case h:
|
|
326
532
|
return "Suspense";
|
|
327
|
-
case
|
|
533
|
+
case b:
|
|
328
534
|
return "SuspenseList";
|
|
329
535
|
}
|
|
330
|
-
if (typeof
|
|
331
|
-
switch (
|
|
332
|
-
case
|
|
333
|
-
var
|
|
334
|
-
return
|
|
536
|
+
if (typeof n == "object")
|
|
537
|
+
switch (n.$$typeof) {
|
|
538
|
+
case p:
|
|
539
|
+
var c = n;
|
|
540
|
+
return q(c) + ".Consumer";
|
|
541
|
+
case _:
|
|
542
|
+
var S = n;
|
|
543
|
+
return q(S._context) + ".Provider";
|
|
544
|
+
case f:
|
|
545
|
+
return le(n, n.render, "ForwardRef");
|
|
335
546
|
case m:
|
|
336
|
-
var
|
|
337
|
-
return
|
|
338
|
-
case
|
|
339
|
-
|
|
340
|
-
case h:
|
|
341
|
-
var u = e.displayName || null;
|
|
342
|
-
return u !== null ? u : P(e.type) || "Memo";
|
|
343
|
-
case C: {
|
|
344
|
-
var v = e, p = v._payload, c = v._init;
|
|
547
|
+
var C = n.displayName || null;
|
|
548
|
+
return C !== null ? C : Q(n.type) || "Memo";
|
|
549
|
+
case w: {
|
|
550
|
+
var Y = n, G = Y._payload, L = Y._init;
|
|
345
551
|
try {
|
|
346
|
-
return
|
|
552
|
+
return Q(L(G));
|
|
347
553
|
} catch {
|
|
348
554
|
return null;
|
|
349
555
|
}
|
|
@@ -351,739 +557,2474 @@ function mr() {
|
|
|
351
557
|
}
|
|
352
558
|
return null;
|
|
353
559
|
}
|
|
354
|
-
var
|
|
355
|
-
function
|
|
560
|
+
var ae = Object.assign, ie = 0, te, ge, ce, oe, ve, P, $;
|
|
561
|
+
function B() {
|
|
356
562
|
}
|
|
357
|
-
|
|
358
|
-
function
|
|
563
|
+
B.__reactDisabledLog = !0;
|
|
564
|
+
function X() {
|
|
359
565
|
{
|
|
360
|
-
if (
|
|
361
|
-
|
|
362
|
-
var
|
|
566
|
+
if (ie === 0) {
|
|
567
|
+
te = console.log, ge = console.info, ce = console.warn, oe = console.error, ve = console.group, P = console.groupCollapsed, $ = console.groupEnd;
|
|
568
|
+
var n = {
|
|
363
569
|
configurable: !0,
|
|
364
570
|
enumerable: !0,
|
|
365
|
-
value:
|
|
571
|
+
value: B,
|
|
366
572
|
writable: !0
|
|
367
573
|
};
|
|
368
574
|
Object.defineProperties(console, {
|
|
369
|
-
info:
|
|
370
|
-
log:
|
|
371
|
-
warn:
|
|
372
|
-
error:
|
|
373
|
-
group:
|
|
374
|
-
groupCollapsed:
|
|
375
|
-
groupEnd:
|
|
575
|
+
info: n,
|
|
576
|
+
log: n,
|
|
577
|
+
warn: n,
|
|
578
|
+
error: n,
|
|
579
|
+
group: n,
|
|
580
|
+
groupCollapsed: n,
|
|
581
|
+
groupEnd: n
|
|
376
582
|
});
|
|
377
583
|
}
|
|
378
|
-
|
|
584
|
+
ie++;
|
|
379
585
|
}
|
|
380
586
|
}
|
|
381
|
-
function
|
|
587
|
+
function pe() {
|
|
382
588
|
{
|
|
383
|
-
if (
|
|
384
|
-
var
|
|
589
|
+
if (ie--, ie === 0) {
|
|
590
|
+
var n = {
|
|
385
591
|
configurable: !0,
|
|
386
592
|
enumerable: !0,
|
|
387
593
|
writable: !0
|
|
388
594
|
};
|
|
389
595
|
Object.defineProperties(console, {
|
|
390
|
-
log:
|
|
391
|
-
value:
|
|
596
|
+
log: ae({}, n, {
|
|
597
|
+
value: te
|
|
392
598
|
}),
|
|
393
|
-
info:
|
|
394
|
-
value:
|
|
599
|
+
info: ae({}, n, {
|
|
600
|
+
value: ge
|
|
395
601
|
}),
|
|
396
|
-
warn:
|
|
397
|
-
value:
|
|
602
|
+
warn: ae({}, n, {
|
|
603
|
+
value: ce
|
|
398
604
|
}),
|
|
399
|
-
error:
|
|
400
|
-
value:
|
|
605
|
+
error: ae({}, n, {
|
|
606
|
+
value: oe
|
|
401
607
|
}),
|
|
402
|
-
group:
|
|
403
|
-
value:
|
|
608
|
+
group: ae({}, n, {
|
|
609
|
+
value: ve
|
|
404
610
|
}),
|
|
405
|
-
groupCollapsed:
|
|
406
|
-
value:
|
|
611
|
+
groupCollapsed: ae({}, n, {
|
|
612
|
+
value: P
|
|
407
613
|
}),
|
|
408
|
-
groupEnd:
|
|
409
|
-
value:
|
|
614
|
+
groupEnd: ae({}, n, {
|
|
615
|
+
value: $
|
|
410
616
|
})
|
|
411
617
|
});
|
|
412
618
|
}
|
|
413
|
-
|
|
619
|
+
ie < 0 && k("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
|
414
620
|
}
|
|
415
621
|
}
|
|
416
|
-
var
|
|
417
|
-
function
|
|
622
|
+
var Z = I.ReactCurrentDispatcher, ne;
|
|
623
|
+
function de(n, c, S) {
|
|
418
624
|
{
|
|
419
|
-
if (
|
|
625
|
+
if (ne === void 0)
|
|
420
626
|
try {
|
|
421
627
|
throw Error();
|
|
422
|
-
} catch (
|
|
423
|
-
var
|
|
424
|
-
|
|
628
|
+
} catch (Y) {
|
|
629
|
+
var C = Y.stack.trim().match(/\n( *(at )?)/);
|
|
630
|
+
ne = C && C[1] || "";
|
|
425
631
|
}
|
|
426
632
|
return `
|
|
427
|
-
` +
|
|
633
|
+
` + ne + n;
|
|
428
634
|
}
|
|
429
635
|
}
|
|
430
|
-
var
|
|
636
|
+
var be = !1, re;
|
|
431
637
|
{
|
|
432
|
-
var
|
|
433
|
-
|
|
638
|
+
var H = typeof WeakMap == "function" ? WeakMap : Map;
|
|
639
|
+
re = new H();
|
|
434
640
|
}
|
|
435
|
-
function
|
|
436
|
-
if (!
|
|
641
|
+
function V(n, c) {
|
|
642
|
+
if (!n || be)
|
|
437
643
|
return "";
|
|
438
644
|
{
|
|
439
|
-
var
|
|
440
|
-
if (
|
|
441
|
-
return
|
|
645
|
+
var S = re.get(n);
|
|
646
|
+
if (S !== void 0)
|
|
647
|
+
return S;
|
|
442
648
|
}
|
|
443
|
-
var
|
|
444
|
-
|
|
445
|
-
var
|
|
649
|
+
var C;
|
|
650
|
+
be = !0;
|
|
651
|
+
var Y = Error.prepareStackTrace;
|
|
446
652
|
Error.prepareStackTrace = void 0;
|
|
447
|
-
var
|
|
448
|
-
|
|
653
|
+
var G;
|
|
654
|
+
G = Z.current, Z.current = null, X();
|
|
449
655
|
try {
|
|
450
|
-
if (
|
|
451
|
-
var
|
|
656
|
+
if (c) {
|
|
657
|
+
var L = function() {
|
|
452
658
|
throw Error();
|
|
453
659
|
};
|
|
454
|
-
if (Object.defineProperty(
|
|
660
|
+
if (Object.defineProperty(L.prototype, "props", {
|
|
455
661
|
set: function() {
|
|
456
662
|
throw Error();
|
|
457
663
|
}
|
|
458
664
|
}), typeof Reflect == "object" && Reflect.construct) {
|
|
459
665
|
try {
|
|
460
|
-
Reflect.construct(
|
|
461
|
-
} catch (
|
|
462
|
-
|
|
666
|
+
Reflect.construct(L, []);
|
|
667
|
+
} catch (we) {
|
|
668
|
+
C = we;
|
|
463
669
|
}
|
|
464
|
-
Reflect.construct(
|
|
670
|
+
Reflect.construct(n, [], L);
|
|
465
671
|
} else {
|
|
466
672
|
try {
|
|
467
|
-
|
|
468
|
-
} catch (
|
|
469
|
-
|
|
673
|
+
L.call();
|
|
674
|
+
} catch (we) {
|
|
675
|
+
C = we;
|
|
470
676
|
}
|
|
471
|
-
|
|
677
|
+
n.call(L.prototype);
|
|
472
678
|
}
|
|
473
679
|
} else {
|
|
474
680
|
try {
|
|
475
681
|
throw Error();
|
|
476
|
-
} catch (
|
|
477
|
-
|
|
682
|
+
} catch (we) {
|
|
683
|
+
C = we;
|
|
478
684
|
}
|
|
479
|
-
|
|
685
|
+
n();
|
|
480
686
|
}
|
|
481
|
-
} catch (
|
|
482
|
-
if (
|
|
483
|
-
for (var
|
|
484
|
-
`),
|
|
485
|
-
`),
|
|
486
|
-
|
|
487
|
-
for (;
|
|
488
|
-
if (
|
|
489
|
-
if (
|
|
687
|
+
} catch (we) {
|
|
688
|
+
if (we && C && typeof we.stack == "string") {
|
|
689
|
+
for (var T = we.stack.split(`
|
|
690
|
+
`), ye = C.stack.split(`
|
|
691
|
+
`), se = T.length - 1, ue = ye.length - 1; se >= 1 && ue >= 0 && T[se] !== ye[ue]; )
|
|
692
|
+
ue--;
|
|
693
|
+
for (; se >= 1 && ue >= 0; se--, ue--)
|
|
694
|
+
if (T[se] !== ye[ue]) {
|
|
695
|
+
if (se !== 1 || ue !== 1)
|
|
490
696
|
do
|
|
491
|
-
if (
|
|
492
|
-
var
|
|
493
|
-
` +
|
|
494
|
-
return
|
|
697
|
+
if (se--, ue--, ue < 0 || T[se] !== ye[ue]) {
|
|
698
|
+
var Re = `
|
|
699
|
+
` + T[se].replace(" at new ", " at ");
|
|
700
|
+
return n.displayName && Re.includes("<anonymous>") && (Re = Re.replace("<anonymous>", n.displayName)), typeof n == "function" && re.set(n, Re), Re;
|
|
495
701
|
}
|
|
496
|
-
while (
|
|
702
|
+
while (se >= 1 && ue >= 0);
|
|
497
703
|
break;
|
|
498
704
|
}
|
|
499
705
|
}
|
|
500
706
|
} finally {
|
|
501
|
-
|
|
707
|
+
be = !1, Z.current = G, pe(), Error.prepareStackTrace = Y;
|
|
502
708
|
}
|
|
503
|
-
var
|
|
504
|
-
return typeof
|
|
709
|
+
var Te = n ? n.displayName || n.name : "", Be = Te ? de(Te) : "";
|
|
710
|
+
return typeof n == "function" && re.set(n, Be), Be;
|
|
505
711
|
}
|
|
506
|
-
function
|
|
507
|
-
return
|
|
712
|
+
function he(n, c, S) {
|
|
713
|
+
return V(n, !1);
|
|
508
714
|
}
|
|
509
|
-
function
|
|
510
|
-
var
|
|
511
|
-
return !!(
|
|
715
|
+
function _e(n) {
|
|
716
|
+
var c = n.prototype;
|
|
717
|
+
return !!(c && c.isReactComponent);
|
|
512
718
|
}
|
|
513
|
-
function
|
|
514
|
-
if (
|
|
719
|
+
function fe(n, c, S) {
|
|
720
|
+
if (n == null)
|
|
515
721
|
return "";
|
|
516
|
-
if (typeof
|
|
517
|
-
return
|
|
518
|
-
if (typeof
|
|
519
|
-
return
|
|
520
|
-
switch (
|
|
521
|
-
case
|
|
522
|
-
return
|
|
523
|
-
case
|
|
524
|
-
return
|
|
722
|
+
if (typeof n == "function")
|
|
723
|
+
return V(n, _e(n));
|
|
724
|
+
if (typeof n == "string")
|
|
725
|
+
return de(n);
|
|
726
|
+
switch (n) {
|
|
727
|
+
case h:
|
|
728
|
+
return de("Suspense");
|
|
729
|
+
case b:
|
|
730
|
+
return de("SuspenseList");
|
|
525
731
|
}
|
|
526
|
-
if (typeof
|
|
527
|
-
switch (
|
|
528
|
-
case
|
|
529
|
-
return
|
|
530
|
-
case
|
|
531
|
-
return
|
|
532
|
-
case
|
|
533
|
-
var
|
|
732
|
+
if (typeof n == "object")
|
|
733
|
+
switch (n.$$typeof) {
|
|
734
|
+
case f:
|
|
735
|
+
return he(n.render);
|
|
736
|
+
case m:
|
|
737
|
+
return fe(n.type, c, S);
|
|
738
|
+
case w: {
|
|
739
|
+
var C = n, Y = C._payload, G = C._init;
|
|
534
740
|
try {
|
|
535
|
-
return
|
|
741
|
+
return fe(G(Y), c, S);
|
|
536
742
|
} catch {
|
|
537
743
|
}
|
|
538
744
|
}
|
|
539
745
|
}
|
|
540
746
|
return "";
|
|
541
747
|
}
|
|
542
|
-
var
|
|
543
|
-
function
|
|
544
|
-
if (
|
|
545
|
-
var
|
|
546
|
-
|
|
748
|
+
var xe = Object.prototype.hasOwnProperty, Ie = {}, Se = I.ReactDebugCurrentFrame;
|
|
749
|
+
function Fe(n) {
|
|
750
|
+
if (n) {
|
|
751
|
+
var c = n._owner, S = fe(n.type, n._source, c ? c.type : null);
|
|
752
|
+
Se.setExtraStackFrame(S);
|
|
547
753
|
} else
|
|
548
|
-
|
|
754
|
+
Se.setExtraStackFrame(null);
|
|
549
755
|
}
|
|
550
|
-
function
|
|
756
|
+
function $e(n, c, S, C, Y) {
|
|
551
757
|
{
|
|
552
|
-
var
|
|
553
|
-
for (var
|
|
554
|
-
if (
|
|
555
|
-
var
|
|
758
|
+
var G = Function.call.bind(xe);
|
|
759
|
+
for (var L in n)
|
|
760
|
+
if (G(n, L)) {
|
|
761
|
+
var T = void 0;
|
|
556
762
|
try {
|
|
557
|
-
if (typeof
|
|
558
|
-
var
|
|
559
|
-
throw
|
|
763
|
+
if (typeof n[L] != "function") {
|
|
764
|
+
var ye = Error((C || "React class") + ": " + S + " type `" + L + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof n[L] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
|
765
|
+
throw ye.name = "Invariant Violation", ye;
|
|
560
766
|
}
|
|
561
|
-
|
|
562
|
-
} catch (
|
|
563
|
-
|
|
767
|
+
T = n[L](c, L, C, S, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
768
|
+
} catch (se) {
|
|
769
|
+
T = se;
|
|
564
770
|
}
|
|
565
|
-
|
|
771
|
+
T && !(T instanceof Error) && (Fe(Y), k("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", C || "React class", S, L, typeof T), Fe(null)), T instanceof Error && !(T.message in Ie) && (Ie[T.message] = !0, Fe(Y), k("Failed %s type: %s", S, T.message), Fe(null));
|
|
566
772
|
}
|
|
567
773
|
}
|
|
568
774
|
}
|
|
569
|
-
var
|
|
570
|
-
function
|
|
571
|
-
return
|
|
775
|
+
var Ne = Array.isArray;
|
|
776
|
+
function Ce(n) {
|
|
777
|
+
return Ne(n);
|
|
572
778
|
}
|
|
573
|
-
function
|
|
779
|
+
function ke(n) {
|
|
574
780
|
{
|
|
575
|
-
var
|
|
576
|
-
return
|
|
781
|
+
var c = typeof Symbol == "function" && Symbol.toStringTag, S = c && n[Symbol.toStringTag] || n.constructor.name || "Object";
|
|
782
|
+
return S;
|
|
577
783
|
}
|
|
578
784
|
}
|
|
579
|
-
function
|
|
785
|
+
function E(n) {
|
|
580
786
|
try {
|
|
581
|
-
return
|
|
787
|
+
return O(n), !1;
|
|
582
788
|
} catch {
|
|
583
789
|
return !0;
|
|
584
790
|
}
|
|
585
791
|
}
|
|
586
|
-
function
|
|
587
|
-
return "" +
|
|
792
|
+
function O(n) {
|
|
793
|
+
return "" + n;
|
|
588
794
|
}
|
|
589
|
-
function
|
|
590
|
-
if (
|
|
591
|
-
return
|
|
795
|
+
function me(n) {
|
|
796
|
+
if (E(n))
|
|
797
|
+
return k("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", ke(n)), O(n);
|
|
592
798
|
}
|
|
593
|
-
var
|
|
799
|
+
var N = I.ReactCurrentOwner, v = {
|
|
594
800
|
key: !0,
|
|
595
801
|
ref: !0,
|
|
596
802
|
__self: !0,
|
|
597
803
|
__source: !0
|
|
598
|
-
},
|
|
599
|
-
function
|
|
600
|
-
if (
|
|
601
|
-
var
|
|
602
|
-
if (
|
|
804
|
+
}, R, M;
|
|
805
|
+
function je(n) {
|
|
806
|
+
if (xe.call(n, "ref")) {
|
|
807
|
+
var c = Object.getOwnPropertyDescriptor(n, "ref").get;
|
|
808
|
+
if (c && c.isReactWarning)
|
|
603
809
|
return !1;
|
|
604
810
|
}
|
|
605
|
-
return
|
|
811
|
+
return n.ref !== void 0;
|
|
606
812
|
}
|
|
607
|
-
function
|
|
608
|
-
if (
|
|
609
|
-
var
|
|
610
|
-
if (
|
|
813
|
+
function ze(n) {
|
|
814
|
+
if (xe.call(n, "key")) {
|
|
815
|
+
var c = Object.getOwnPropertyDescriptor(n, "key").get;
|
|
816
|
+
if (c && c.isReactWarning)
|
|
611
817
|
return !1;
|
|
612
818
|
}
|
|
613
|
-
return
|
|
819
|
+
return n.key !== void 0;
|
|
614
820
|
}
|
|
615
|
-
function
|
|
616
|
-
typeof
|
|
821
|
+
function In(n, c) {
|
|
822
|
+
typeof n.ref == "string" && N.current;
|
|
617
823
|
}
|
|
618
|
-
function
|
|
824
|
+
function Nn(n, c) {
|
|
619
825
|
{
|
|
620
|
-
var
|
|
621
|
-
|
|
826
|
+
var S = function() {
|
|
827
|
+
R || (R = !0, k("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", c));
|
|
622
828
|
};
|
|
623
|
-
|
|
624
|
-
get:
|
|
829
|
+
S.isReactWarning = !0, Object.defineProperty(n, "key", {
|
|
830
|
+
get: S,
|
|
625
831
|
configurable: !0
|
|
626
832
|
});
|
|
627
833
|
}
|
|
628
834
|
}
|
|
629
|
-
function
|
|
835
|
+
function Fn(n, c) {
|
|
630
836
|
{
|
|
631
|
-
var
|
|
632
|
-
|
|
837
|
+
var S = function() {
|
|
838
|
+
M || (M = !0, k("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", c));
|
|
633
839
|
};
|
|
634
|
-
|
|
635
|
-
get:
|
|
840
|
+
S.isReactWarning = !0, Object.defineProperty(n, "ref", {
|
|
841
|
+
get: S,
|
|
636
842
|
configurable: !0
|
|
637
843
|
});
|
|
638
844
|
}
|
|
639
845
|
}
|
|
640
|
-
var
|
|
641
|
-
var
|
|
846
|
+
var Cn = function(n, c, S, C, Y, G, L) {
|
|
847
|
+
var T = {
|
|
642
848
|
// This tag allows us to uniquely identify this as a React Element
|
|
643
|
-
$$typeof:
|
|
849
|
+
$$typeof: t,
|
|
644
850
|
// Built-in properties that belong on the element
|
|
645
|
-
type:
|
|
646
|
-
key:
|
|
647
|
-
ref:
|
|
648
|
-
props:
|
|
851
|
+
type: n,
|
|
852
|
+
key: c,
|
|
853
|
+
ref: S,
|
|
854
|
+
props: L,
|
|
649
855
|
// Record the component responsible for creating this element.
|
|
650
|
-
_owner:
|
|
856
|
+
_owner: G
|
|
651
857
|
};
|
|
652
|
-
return
|
|
858
|
+
return T._store = {}, Object.defineProperty(T._store, "validated", {
|
|
653
859
|
configurable: !1,
|
|
654
860
|
enumerable: !1,
|
|
655
861
|
writable: !0,
|
|
656
862
|
value: !1
|
|
657
|
-
}), Object.defineProperty(
|
|
863
|
+
}), Object.defineProperty(T, "_self", {
|
|
658
864
|
configurable: !1,
|
|
659
865
|
enumerable: !1,
|
|
660
866
|
writable: !1,
|
|
661
|
-
value:
|
|
662
|
-
}), Object.defineProperty(
|
|
867
|
+
value: C
|
|
868
|
+
}), Object.defineProperty(T, "_source", {
|
|
663
869
|
configurable: !1,
|
|
664
870
|
enumerable: !1,
|
|
665
871
|
writable: !1,
|
|
666
|
-
value:
|
|
667
|
-
}), Object.freeze && (Object.freeze(
|
|
872
|
+
value: Y
|
|
873
|
+
}), Object.freeze && (Object.freeze(T.props), Object.freeze(T)), T;
|
|
668
874
|
};
|
|
669
|
-
function
|
|
875
|
+
function kn(n, c, S, C, Y) {
|
|
670
876
|
{
|
|
671
|
-
var
|
|
672
|
-
|
|
673
|
-
for (
|
|
674
|
-
|
|
675
|
-
if (
|
|
676
|
-
var
|
|
677
|
-
for (
|
|
678
|
-
|
|
877
|
+
var G, L = {}, T = null, ye = null;
|
|
878
|
+
S !== void 0 && (me(S), T = "" + S), ze(c) && (me(c.key), T = "" + c.key), je(c) && (ye = c.ref, In(c, Y));
|
|
879
|
+
for (G in c)
|
|
880
|
+
xe.call(c, G) && !v.hasOwnProperty(G) && (L[G] = c[G]);
|
|
881
|
+
if (n && n.defaultProps) {
|
|
882
|
+
var se = n.defaultProps;
|
|
883
|
+
for (G in se)
|
|
884
|
+
L[G] === void 0 && (L[G] = se[G]);
|
|
679
885
|
}
|
|
680
|
-
if (
|
|
681
|
-
var
|
|
682
|
-
|
|
886
|
+
if (T || ye) {
|
|
887
|
+
var ue = typeof n == "function" ? n.displayName || n.name || "Unknown" : n;
|
|
888
|
+
T && Nn(L, ue), ye && Fn(L, ue);
|
|
683
889
|
}
|
|
684
|
-
return
|
|
890
|
+
return Cn(n, T, ye, Y, C, N.current, L);
|
|
685
891
|
}
|
|
686
892
|
}
|
|
687
|
-
var
|
|
688
|
-
function
|
|
689
|
-
if (
|
|
690
|
-
var
|
|
691
|
-
|
|
893
|
+
var We = I.ReactCurrentOwner, an = I.ReactDebugCurrentFrame;
|
|
894
|
+
function Oe(n) {
|
|
895
|
+
if (n) {
|
|
896
|
+
var c = n._owner, S = fe(n.type, n._source, c ? c.type : null);
|
|
897
|
+
an.setExtraStackFrame(S);
|
|
692
898
|
} else
|
|
693
|
-
|
|
899
|
+
an.setExtraStackFrame(null);
|
|
694
900
|
}
|
|
695
|
-
var
|
|
696
|
-
|
|
697
|
-
function
|
|
698
|
-
return typeof
|
|
901
|
+
var Ve;
|
|
902
|
+
Ve = !1;
|
|
903
|
+
function Ye(n) {
|
|
904
|
+
return typeof n == "object" && n !== null && n.$$typeof === t;
|
|
699
905
|
}
|
|
700
|
-
function
|
|
906
|
+
function tn() {
|
|
701
907
|
{
|
|
702
|
-
if (
|
|
703
|
-
var
|
|
704
|
-
if (
|
|
908
|
+
if (We.current) {
|
|
909
|
+
var n = Q(We.current.type);
|
|
910
|
+
if (n)
|
|
705
911
|
return `
|
|
706
912
|
|
|
707
|
-
Check the render method of \`` +
|
|
913
|
+
Check the render method of \`` + n + "`.";
|
|
708
914
|
}
|
|
709
915
|
return "";
|
|
710
916
|
}
|
|
711
917
|
}
|
|
712
|
-
function
|
|
918
|
+
function zn(n) {
|
|
713
919
|
return "";
|
|
714
920
|
}
|
|
715
|
-
var
|
|
716
|
-
function
|
|
921
|
+
var rn = {};
|
|
922
|
+
function $n(n) {
|
|
717
923
|
{
|
|
718
|
-
var
|
|
719
|
-
if (!
|
|
720
|
-
var
|
|
721
|
-
|
|
924
|
+
var c = tn();
|
|
925
|
+
if (!c) {
|
|
926
|
+
var S = typeof n == "string" ? n : n.displayName || n.name;
|
|
927
|
+
S && (c = `
|
|
722
928
|
|
|
723
|
-
Check the top-level render call using <` +
|
|
929
|
+
Check the top-level render call using <` + S + ">.");
|
|
724
930
|
}
|
|
725
|
-
return
|
|
931
|
+
return c;
|
|
726
932
|
}
|
|
727
933
|
}
|
|
728
|
-
function
|
|
934
|
+
function ln(n, c) {
|
|
729
935
|
{
|
|
730
|
-
if (!
|
|
936
|
+
if (!n._store || n._store.validated || n.key != null)
|
|
731
937
|
return;
|
|
732
|
-
|
|
733
|
-
var
|
|
734
|
-
if (
|
|
938
|
+
n._store.validated = !0;
|
|
939
|
+
var S = $n(c);
|
|
940
|
+
if (rn[S])
|
|
735
941
|
return;
|
|
736
|
-
|
|
737
|
-
var
|
|
738
|
-
|
|
942
|
+
rn[S] = !0;
|
|
943
|
+
var C = "";
|
|
944
|
+
n && n._owner && n._owner !== We.current && (C = " It was passed a child from " + Q(n._owner.type) + "."), Oe(n), k('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', S, C), Oe(null);
|
|
739
945
|
}
|
|
740
946
|
}
|
|
741
|
-
function
|
|
947
|
+
function sn(n, c) {
|
|
742
948
|
{
|
|
743
|
-
if (typeof
|
|
949
|
+
if (typeof n != "object")
|
|
744
950
|
return;
|
|
745
|
-
if (
|
|
746
|
-
for (var
|
|
747
|
-
var
|
|
748
|
-
|
|
951
|
+
if (Ce(n))
|
|
952
|
+
for (var S = 0; S < n.length; S++) {
|
|
953
|
+
var C = n[S];
|
|
954
|
+
Ye(C) && ln(C, c);
|
|
749
955
|
}
|
|
750
|
-
else if (
|
|
751
|
-
|
|
752
|
-
else if (
|
|
753
|
-
var
|
|
754
|
-
if (typeof
|
|
755
|
-
for (var
|
|
756
|
-
|
|
956
|
+
else if (Ye(n))
|
|
957
|
+
n._store && (n._store.validated = !0);
|
|
958
|
+
else if (n) {
|
|
959
|
+
var Y = y(n);
|
|
960
|
+
if (typeof Y == "function" && Y !== n.entries)
|
|
961
|
+
for (var G = Y.call(n), L; !(L = G.next()).done; )
|
|
962
|
+
Ye(L.value) && ln(L.value, c);
|
|
757
963
|
}
|
|
758
964
|
}
|
|
759
965
|
}
|
|
760
|
-
function
|
|
966
|
+
function Bn(n) {
|
|
761
967
|
{
|
|
762
|
-
var
|
|
763
|
-
if (
|
|
968
|
+
var c = n.type;
|
|
969
|
+
if (c == null || typeof c == "string")
|
|
764
970
|
return;
|
|
765
|
-
var
|
|
766
|
-
if (typeof
|
|
767
|
-
|
|
768
|
-
else if (typeof
|
|
971
|
+
var S;
|
|
972
|
+
if (typeof c == "function")
|
|
973
|
+
S = c.propTypes;
|
|
974
|
+
else if (typeof c == "object" && (c.$$typeof === f || // Note: Memo only checks outer props here.
|
|
769
975
|
// Inner props are checked in the reconciler.
|
|
770
|
-
|
|
771
|
-
|
|
976
|
+
c.$$typeof === m))
|
|
977
|
+
S = c.propTypes;
|
|
772
978
|
else
|
|
773
979
|
return;
|
|
774
|
-
if (
|
|
775
|
-
var
|
|
776
|
-
|
|
777
|
-
} else if (
|
|
778
|
-
|
|
779
|
-
var
|
|
780
|
-
|
|
980
|
+
if (S) {
|
|
981
|
+
var C = Q(c);
|
|
982
|
+
$e(S, n.props, "prop", C, n);
|
|
983
|
+
} else if (c.PropTypes !== void 0 && !Ve) {
|
|
984
|
+
Ve = !0;
|
|
985
|
+
var Y = Q(c);
|
|
986
|
+
k("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", Y || "Unknown");
|
|
781
987
|
}
|
|
782
|
-
typeof
|
|
988
|
+
typeof c.getDefaultProps == "function" && !c.getDefaultProps.isReactClassApproved && k("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
|
|
783
989
|
}
|
|
784
990
|
}
|
|
785
|
-
function
|
|
991
|
+
function On(n) {
|
|
786
992
|
{
|
|
787
|
-
for (var
|
|
788
|
-
var
|
|
789
|
-
if (
|
|
790
|
-
|
|
993
|
+
for (var c = Object.keys(n.props), S = 0; S < c.length; S++) {
|
|
994
|
+
var C = c[S];
|
|
995
|
+
if (C !== "children" && C !== "key") {
|
|
996
|
+
Oe(n), k("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", C), Oe(null);
|
|
791
997
|
break;
|
|
792
998
|
}
|
|
793
999
|
}
|
|
794
|
-
|
|
1000
|
+
n.ref !== null && (Oe(n), k("Invalid attribute `ref` supplied to `React.Fragment`."), Oe(null));
|
|
795
1001
|
}
|
|
796
1002
|
}
|
|
797
|
-
var
|
|
798
|
-
function
|
|
1003
|
+
var on = {};
|
|
1004
|
+
function un(n, c, S, C, Y, G) {
|
|
799
1005
|
{
|
|
800
|
-
var
|
|
801
|
-
if (!
|
|
802
|
-
var
|
|
803
|
-
(
|
|
804
|
-
var
|
|
805
|
-
|
|
806
|
-
var
|
|
807
|
-
|
|
1006
|
+
var L = U(n);
|
|
1007
|
+
if (!L) {
|
|
1008
|
+
var T = "";
|
|
1009
|
+
(n === void 0 || typeof n == "object" && n !== null && Object.keys(n).length === 0) && (T += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");
|
|
1010
|
+
var ye = zn();
|
|
1011
|
+
ye ? T += ye : T += tn();
|
|
1012
|
+
var se;
|
|
1013
|
+
n === null ? se = "null" : Ce(n) ? se = "array" : n !== void 0 && n.$$typeof === t ? (se = "<" + (Q(n.type) || "Unknown") + " />", T = " Did you accidentally export a JSX literal instead of a component?") : se = typeof n, k("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", se, T);
|
|
808
1014
|
}
|
|
809
|
-
var
|
|
810
|
-
if (
|
|
811
|
-
return
|
|
812
|
-
if (
|
|
813
|
-
var
|
|
814
|
-
if (
|
|
815
|
-
if (
|
|
816
|
-
if (
|
|
817
|
-
for (var
|
|
818
|
-
|
|
819
|
-
Object.freeze && Object.freeze(
|
|
1015
|
+
var ue = kn(n, c, S, Y, G);
|
|
1016
|
+
if (ue == null)
|
|
1017
|
+
return ue;
|
|
1018
|
+
if (L) {
|
|
1019
|
+
var Re = c.children;
|
|
1020
|
+
if (Re !== void 0)
|
|
1021
|
+
if (C)
|
|
1022
|
+
if (Ce(Re)) {
|
|
1023
|
+
for (var Te = 0; Te < Re.length; Te++)
|
|
1024
|
+
sn(Re[Te], n);
|
|
1025
|
+
Object.freeze && Object.freeze(Re);
|
|
820
1026
|
} else
|
|
821
|
-
|
|
1027
|
+
k("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
|
|
822
1028
|
else
|
|
823
|
-
|
|
1029
|
+
sn(Re, n);
|
|
824
1030
|
}
|
|
825
|
-
if (
|
|
826
|
-
var
|
|
827
|
-
return
|
|
828
|
-
}),
|
|
829
|
-
if (
|
|
830
|
-
var
|
|
831
|
-
|
|
1031
|
+
if (xe.call(c, "key")) {
|
|
1032
|
+
var Be = Q(n), we = Object.keys(c).filter(function(Hn) {
|
|
1033
|
+
return Hn !== "key";
|
|
1034
|
+
}), Ue = we.length > 0 ? "{key: someKey, " + we.join(": ..., ") + ": ...}" : "{key: someKey}";
|
|
1035
|
+
if (!on[Be + Ue]) {
|
|
1036
|
+
var Pn = we.length > 0 ? "{" + we.join(": ..., ") + ": ...}" : "{}";
|
|
1037
|
+
k(`A props object containing a "key" prop is being spread into JSX:
|
|
832
1038
|
let props = %s;
|
|
833
1039
|
<%s {...props} />
|
|
834
1040
|
React keys must be passed directly to JSX without using spread:
|
|
835
1041
|
let props = %s;
|
|
836
|
-
<%s key={someKey} {...props} />`,
|
|
1042
|
+
<%s key={someKey} {...props} />`, Ue, Be, Pn, Be), on[Be + Ue] = !0;
|
|
837
1043
|
}
|
|
838
1044
|
}
|
|
839
|
-
return
|
|
1045
|
+
return n === u ? On(ue) : Bn(ue), ue;
|
|
840
1046
|
}
|
|
841
1047
|
}
|
|
842
|
-
function
|
|
843
|
-
return
|
|
1048
|
+
function Tn(n, c, S) {
|
|
1049
|
+
return un(n, c, S, !0);
|
|
844
1050
|
}
|
|
845
|
-
function
|
|
846
|
-
return
|
|
1051
|
+
function Ln(n, c, S) {
|
|
1052
|
+
return un(n, c, S, !1);
|
|
847
1053
|
}
|
|
848
|
-
var
|
|
849
|
-
|
|
850
|
-
}()),
|
|
1054
|
+
var Dn = Ln, An = Tn;
|
|
1055
|
+
De.Fragment = u, De.jsx = Dn, De.jsxs = An;
|
|
1056
|
+
}()), De;
|
|
851
1057
|
}
|
|
852
|
-
process.env.NODE_ENV === "production" ?
|
|
853
|
-
var
|
|
854
|
-
function
|
|
855
|
-
if (!
|
|
856
|
-
return
|
|
857
|
-
if (Array.isArray(
|
|
858
|
-
return
|
|
859
|
-
const a = { ...
|
|
860
|
-
for (const
|
|
861
|
-
const
|
|
862
|
-
if (Array.isArray(
|
|
863
|
-
a[
|
|
1058
|
+
process.env.NODE_ENV === "production" ? Ze.exports = Vn() : Ze.exports = Yn();
|
|
1059
|
+
var l = Ze.exports;
|
|
1060
|
+
function Sn(e, t) {
|
|
1061
|
+
if (!t)
|
|
1062
|
+
return e;
|
|
1063
|
+
if (Array.isArray(e) || typeof e != "object" || e === null)
|
|
1064
|
+
return t ?? e;
|
|
1065
|
+
const a = { ...e }, u = t;
|
|
1066
|
+
for (const i of Object.keys(u)) {
|
|
1067
|
+
const r = e[i], _ = u[i];
|
|
1068
|
+
if (Array.isArray(r)) {
|
|
1069
|
+
a[i] = _ ?? r;
|
|
864
1070
|
continue;
|
|
865
1071
|
}
|
|
866
|
-
if (typeof
|
|
867
|
-
a[
|
|
1072
|
+
if (typeof r == "object" && r !== null && typeof _ == "object" && _ !== null) {
|
|
1073
|
+
a[i] = Sn(r, _);
|
|
868
1074
|
continue;
|
|
869
1075
|
}
|
|
870
|
-
a[
|
|
1076
|
+
a[i] = _ ?? r;
|
|
871
1077
|
}
|
|
872
1078
|
return a;
|
|
873
1079
|
}
|
|
874
|
-
const
|
|
875
|
-
function
|
|
876
|
-
if (!
|
|
1080
|
+
const Un = [/^#/, /^rgb/, /^hsl/, /^var\(/], Xn = [50, 100, 200, 300, 400, 500, 600, 700, 800, 900];
|
|
1081
|
+
function Kn(e) {
|
|
1082
|
+
if (!e)
|
|
877
1083
|
return;
|
|
878
|
-
const
|
|
879
|
-
if (
|
|
880
|
-
return
|
|
1084
|
+
const t = Number(e);
|
|
1085
|
+
if (Xn.includes(t))
|
|
1086
|
+
return t;
|
|
881
1087
|
}
|
|
882
|
-
function
|
|
883
|
-
return
|
|
1088
|
+
function Gn(e) {
|
|
1089
|
+
return Un.some((t) => t.test(e));
|
|
884
1090
|
}
|
|
885
|
-
function
|
|
886
|
-
if (
|
|
887
|
-
return
|
|
888
|
-
if (
|
|
889
|
-
return
|
|
890
|
-
const [a,
|
|
891
|
-
if (
|
|
892
|
-
const
|
|
893
|
-
return
|
|
1091
|
+
function j(e, t) {
|
|
1092
|
+
if (Gn(t))
|
|
1093
|
+
return t;
|
|
1094
|
+
if (e.colors.custom[t])
|
|
1095
|
+
return e.colors.custom[t];
|
|
1096
|
+
const [a, u] = t.split("."), i = e.colors.scale[a];
|
|
1097
|
+
if (i) {
|
|
1098
|
+
const r = Kn(u);
|
|
1099
|
+
return r ? i[r] : i[600];
|
|
894
1100
|
}
|
|
895
|
-
return
|
|
1101
|
+
return t;
|
|
896
1102
|
}
|
|
897
|
-
function
|
|
898
|
-
const a =
|
|
1103
|
+
function Jn(e, t) {
|
|
1104
|
+
const a = e.modes[t];
|
|
899
1105
|
return {
|
|
900
|
-
background:
|
|
901
|
-
foreground:
|
|
902
|
-
surface:
|
|
903
|
-
border:
|
|
904
|
-
muted:
|
|
1106
|
+
background: j(e, a.background),
|
|
1107
|
+
foreground: j(e, a.foreground),
|
|
1108
|
+
surface: j(e, a.surface),
|
|
1109
|
+
border: j(e, a.border),
|
|
1110
|
+
muted: j(e, a.muted)
|
|
905
1111
|
};
|
|
906
1112
|
}
|
|
907
|
-
function
|
|
908
|
-
if (
|
|
909
|
-
return
|
|
1113
|
+
function D(e, t) {
|
|
1114
|
+
if (t)
|
|
1115
|
+
return e[t] ?? t;
|
|
910
1116
|
}
|
|
911
|
-
function
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
for (const [
|
|
923
|
-
a[`--luna-
|
|
924
|
-
for (const [
|
|
925
|
-
a[`--luna-
|
|
926
|
-
for (const [
|
|
927
|
-
a[`--luna-
|
|
928
|
-
const
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
1117
|
+
function qn(e, t) {
|
|
1118
|
+
if (t !== void 0)
|
|
1119
|
+
return String(typeof t == "number" ? t : e.typography.weights[t] ?? t);
|
|
1120
|
+
}
|
|
1121
|
+
function Qn(e, t) {
|
|
1122
|
+
var y, I, k, J, z, A;
|
|
1123
|
+
const a = {}, u = Jn(e, t);
|
|
1124
|
+
a["--luna-background"] = u.background, a["--luna-foreground"] = u.foreground, a["--luna-surface"] = u.surface, a["--luna-border"] = u.border, a["--luna-muted"] = u.muted, a["--luna-font-family"] = e.typography.fontFamily;
|
|
1125
|
+
for (const [F, g] of Object.entries(e.colors.scale))
|
|
1126
|
+
for (const [ee, K] of Object.entries(g))
|
|
1127
|
+
a[`--luna-color-${F}-${ee}`] = K;
|
|
1128
|
+
for (const [F, g] of Object.entries(e.colors.custom))
|
|
1129
|
+
a[`--luna-color-${F}`] = j(e, g);
|
|
1130
|
+
for (const [F, g] of Object.entries(e.spacing))
|
|
1131
|
+
a[`--luna-space-${F}`] = g;
|
|
1132
|
+
for (const [F, g] of Object.entries(e.radii))
|
|
1133
|
+
a[`--luna-radius-${F}`] = g;
|
|
1134
|
+
for (const [F, g] of Object.entries(e.shadows))
|
|
1135
|
+
a[`--luna-shadow-${F}`] = g;
|
|
1136
|
+
for (const [F, g] of Object.entries(e.motion))
|
|
1137
|
+
a[`--luna-motion-${F}`] = g;
|
|
1138
|
+
const i = e.components.button;
|
|
1139
|
+
i != null && i.defaultSize && (a["--luna-btn-size-default"] = i.defaultSize), i != null && i.defaultIconDirection && (a["--luna-btn-icon-direction-default"] = i.defaultIconDirection), i != null && i.radius && (a["--luna-btn-radius"] = D(e.radii, i.radius) ?? i.radius), i != null && i.fontWeight && (a["--luna-btn-font-weight"] = String(i.fontWeight));
|
|
1140
|
+
const r = (y = i == null ? void 0 : i.modes) == null ? void 0 : y[t];
|
|
1141
|
+
if (r != null && r.bg && (a["--luna-btn-bg-default"] = j(e, r.bg)), r != null && r.fg && (a["--luna-btn-fg-default"] = j(e, r.fg)), r != null && r.hoverBg && (a["--luna-btn-hover-bg"] = j(e, r.hoverBg)), r != null && r.outlineFg && (a["--luna-btn-outline-fg"] = j(e, r.outlineFg)), r != null && r.outlineBorder && (a["--luna-btn-outline-border"] = j(e, r.outlineBorder)), r != null && r.outlineHoverBg && (a["--luna-btn-outline-hover-bg"] = j(e, r.outlineHoverBg)), r != null && r.flatFg && (a["--luna-btn-flat-fg"] = j(e, r.flatFg)), r != null && r.infoFg && (a["--luna-btn-info-fg"] = j(e, r.infoFg)), r != null && r.infoHoverFg && (a["--luna-btn-info-hover-fg"] = j(e, r.infoHoverFg)), i != null && i.sizes)
|
|
1142
|
+
for (const [F, g] of Object.entries(i.sizes))
|
|
1143
|
+
g.paddingX && (a[`--luna-btn-size-${F}-padding-x`] = D(e.spacing, g.paddingX) ?? g.paddingX), g.paddingY && (a[`--luna-btn-size-${F}-padding-y`] = D(e.spacing, g.paddingY) ?? g.paddingY), g.fontSize && (a[`--luna-btn-size-${F}-font-size`] = D(e.typography.sizes, g.fontSize) ?? g.fontSize), g.minHeight && (a[`--luna-btn-size-${F}-min-height`] = D(e.spacing, g.minHeight) ?? g.minHeight), g.gap && (a[`--luna-btn-size-${F}-gap`] = D(e.spacing, g.gap) ?? g.gap), g.iconSize && (a[`--luna-btn-size-${F}-icon-size`] = D(e.typography.sizes, g.iconSize) ?? g.iconSize);
|
|
1144
|
+
const _ = e.components.text;
|
|
1145
|
+
_ != null && _.defaultVariant && (a["--luna-text-variant-default"] = _.defaultVariant);
|
|
1146
|
+
const p = (I = _ == null ? void 0 : _.modes) == null ? void 0 : I[t];
|
|
1147
|
+
if (p != null && p.fg && (a["--luna-text-fg"] = j(e, p.fg)), p != null && p.mutedFg && (a["--luna-text-muted-fg"] = j(e, p.mutedFg)), p != null && p.surfaceBg && (a["--luna-text-surface-bg"] = j(e, p.surfaceBg)), p != null && p.surfaceBorder && (a["--luna-text-surface-border"] = j(e, p.surfaceBorder)), _ != null && _.variants)
|
|
1148
|
+
for (const [F, g] of Object.entries(_.variants))
|
|
1149
|
+
g.fontSize && (a[`--luna-text-variant-${F}-font-size`] = D(e.typography.sizes, g.fontSize) ?? g.fontSize), g.fontWeight !== void 0 && (a[`--luna-text-variant-${F}-font-weight`] = qn(e, g.fontWeight) ?? String(g.fontWeight)), g.lineHeight && (a[`--luna-text-variant-${F}-line-height`] = D(e.typography.lineHeights, g.lineHeight) ?? g.lineHeight), g.letterSpacing && (a[`--luna-text-variant-${F}-letter-spacing`] = g.letterSpacing), g.textTransform && (a[`--luna-text-variant-${F}-text-transform`] = g.textTransform);
|
|
1150
|
+
const f = e.components.card;
|
|
1151
|
+
f != null && f.defaultPadding && (a["--luna-card-padding-default"] = D(e.spacing, f.defaultPadding) ?? f.defaultPadding), f != null && f.defaultGap && (a["--luna-card-gap-default"] = D(e.spacing, f.defaultGap) ?? f.defaultGap), f != null && f.radius && (a["--luna-card-radius"] = D(e.radii, f.radius) ?? f.radius);
|
|
1152
|
+
const h = (k = f == null ? void 0 : f.modes) == null ? void 0 : k[t];
|
|
1153
|
+
h != null && h.bg && (a["--luna-card-bg"] = j(e, h.bg)), h != null && h.fg && (a["--luna-card-fg"] = j(e, h.fg)), h != null && h.border && (a["--luna-card-border"] = j(e, h.border)), h != null && h.shadow && (a["--luna-card-shadow"] = D(e.shadows, h.shadow) ?? j(e, h.shadow)), h != null && h.elevatedShadow && (a["--luna-card-elevated-shadow"] = D(e.shadows, h.elevatedShadow) ?? j(e, h.elevatedShadow)), h != null && h.hoverBorder && (a["--luna-card-hover-border"] = j(e, h.hoverBorder)), h != null && h.hoverShadow && (a["--luna-card-hover-shadow"] = D(e.shadows, h.hoverShadow) ?? j(e, h.hoverShadow));
|
|
1154
|
+
const b = e.components.divider;
|
|
1155
|
+
b != null && b.defaultSpacing && (a["--luna-divider-spacing-default"] = D(e.spacing, b.defaultSpacing) ?? b.defaultSpacing), b != null && b.defaultInset && (a["--luna-divider-inset-default"] = D(e.spacing, b.defaultInset) ?? b.defaultInset);
|
|
1156
|
+
const m = (J = b == null ? void 0 : b.modes) == null ? void 0 : J[t];
|
|
1157
|
+
m != null && m.default && (a["--luna-divider-default"] = j(e, m.default)), m != null && m.muted && (a["--luna-divider-muted"] = j(e, m.muted)), m != null && m.strong && (a["--luna-divider-strong"] = j(e, m.strong)), m != null && m.labelBg && (a["--luna-divider-label-bg"] = j(e, m.labelBg)), m != null && m.labelFg && (a["--luna-divider-label-fg"] = j(e, m.labelFg));
|
|
1158
|
+
const w = e.components.input;
|
|
1159
|
+
w != null && w.defaultSize && (a["--luna-input-size-default"] = w.defaultSize), w != null && w.radius && (a["--luna-input-radius"] = D(e.radii, w.radius) ?? w.radius);
|
|
1160
|
+
const o = (z = w == null ? void 0 : w.modes) == null ? void 0 : z[t];
|
|
1161
|
+
if (o != null && o.bg && (a["--luna-input-bg"] = j(e, o.bg)), o != null && o.fg && (a["--luna-input-fg"] = j(e, o.fg)), o != null && o.border && (a["--luna-input-border"] = j(e, o.border)), o != null && o.hoverBorder && (a["--luna-input-hover-border"] = j(e, o.hoverBorder)), o != null && o.focusBorder && (a["--luna-input-focus-border"] = j(e, o.focusBorder)), o != null && o.focusRing && (a["--luna-input-focus-ring"] = o.focusRing), o != null && o.placeholder && (a["--luna-input-placeholder"] = j(e, o.placeholder)), o != null && o.disabledBg && (a["--luna-input-disabled-bg"] = j(e, o.disabledBg)), o != null && o.disabledFg && (a["--luna-input-disabled-fg"] = j(e, o.disabledFg)), o != null && o.disabledBorder && (a["--luna-input-disabled-border"] = j(e, o.disabledBorder)), o != null && o.errorBorder && (a["--luna-input-error-border"] = j(e, o.errorBorder)), o != null && o.errorFocusRing && (a["--luna-input-error-focus-ring"] = o.errorFocusRing), o != null && o.helpFg && (a["--luna-input-help-fg"] = j(e, o.helpFg)), o != null && o.errorFg && (a["--luna-input-error-fg"] = j(e, o.errorFg)), o != null && o.labelFg && (a["--luna-input-label-fg"] = j(e, o.labelFg)), w != null && w.sizes)
|
|
1162
|
+
for (const [F, g] of Object.entries(w.sizes))
|
|
1163
|
+
g.minHeight && (a[`--luna-input-size-${F}-min-height`] = D(e.spacing, g.minHeight) ?? g.minHeight), g.paddingX && (a[`--luna-input-size-${F}-padding-x`] = D(e.spacing, g.paddingX) ?? g.paddingX), g.paddingY && (a[`--luna-input-size-${F}-padding-y`] = D(e.spacing, g.paddingY) ?? g.paddingY), g.fontSize && (a[`--luna-input-size-${F}-font-size`] = D(e.typography.sizes, g.fontSize) ?? g.fontSize), g.gap && (a[`--luna-input-size-${F}-gap`] = D(e.spacing, g.gap) ?? g.gap);
|
|
1164
|
+
const x = e.components.checkbox;
|
|
1165
|
+
x != null && x.radius && (a["--luna-checkbox-radius"] = D(e.radii, x.radius) ?? x.radius), x != null && x.boxSize && (a["--luna-checkbox-current-box-size"] = D(e.spacing, x.boxSize) ?? x.boxSize), x != null && x.gap && (a["--luna-checkbox-current-gap"] = D(e.spacing, x.gap) ?? x.gap), x != null && x.offsetY && (a["--luna-checkbox-current-offset-y"] = D(e.spacing, x.offsetY) ?? x.offsetY);
|
|
1166
|
+
const s = (A = x == null ? void 0 : x.modes) == null ? void 0 : A[t];
|
|
1167
|
+
return s != null && s.bg && (a["--luna-checkbox-bg"] = j(e, s.bg)), s != null && s.border && (a["--luna-checkbox-border"] = j(e, s.border)), s != null && s.hoverBorder && (a["--luna-checkbox-hover-border"] = j(e, s.hoverBorder)), s != null && s.checkedBg && (a["--luna-checkbox-checked-bg"] = j(e, s.checkedBg)), s != null && s.checkedBorder && (a["--luna-checkbox-checked-border"] = j(e, s.checkedBorder)), s != null && s.checkFg && (a["--luna-checkbox-check-fg"] = j(e, s.checkFg)), s != null && s.focusBorder && (a["--luna-checkbox-focus-border"] = j(e, s.focusBorder)), s != null && s.focusRing && (a["--luna-checkbox-focus-ring"] = s.focusRing), s != null && s.disabledBg && (a["--luna-checkbox-disabled-bg"] = j(e, s.disabledBg)), s != null && s.disabledBorder && (a["--luna-checkbox-disabled-border"] = j(e, s.disabledBorder)), s != null && s.disabledFg && (a["--luna-checkbox-disabled-fg"] = j(e, s.disabledFg)), s != null && s.errorBorder && (a["--luna-checkbox-error-border"] = j(e, s.errorBorder)), s != null && s.helpFg && (a["--luna-checkbox-help-fg"] = j(e, s.helpFg)), s != null && s.errorFg && (a["--luna-checkbox-error-fg"] = j(e, s.errorFg)), s != null && s.labelFg && (a["--luna-checkbox-label-fg"] = j(e, s.labelFg)), s != null && s.descriptionFg && (a["--luna-checkbox-description-fg"] = j(e, s.descriptionFg)), s != null && s.disabledLabelFg && (a["--luna-checkbox-disabled-label-fg"] = j(
|
|
1168
|
+
e,
|
|
1169
|
+
s.disabledLabelFg
|
|
1170
|
+
)), a;
|
|
935
1171
|
}
|
|
936
|
-
const
|
|
937
|
-
function
|
|
938
|
-
children:
|
|
939
|
-
mode:
|
|
1172
|
+
const jn = d.createContext(void 0);
|
|
1173
|
+
function Ca({
|
|
1174
|
+
children: e,
|
|
1175
|
+
mode: t,
|
|
940
1176
|
theme: a,
|
|
941
|
-
colors:
|
|
942
|
-
className:
|
|
943
|
-
style:
|
|
1177
|
+
colors: u,
|
|
1178
|
+
className: i,
|
|
1179
|
+
style: r
|
|
944
1180
|
}) {
|
|
945
|
-
const [
|
|
946
|
-
|
|
1181
|
+
const [_, p] = d.useState(
|
|
1182
|
+
t ?? "light"
|
|
947
1183
|
);
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
}, [
|
|
951
|
-
const
|
|
952
|
-
const
|
|
953
|
-
return !
|
|
954
|
-
...
|
|
1184
|
+
d.useEffect(() => {
|
|
1185
|
+
t && p(t);
|
|
1186
|
+
}, [t]);
|
|
1187
|
+
const f = d.useMemo(() => {
|
|
1188
|
+
const m = Sn(Wn, a);
|
|
1189
|
+
return !u || Object.keys(u).length === 0 ? m : {
|
|
1190
|
+
...m,
|
|
955
1191
|
colors: {
|
|
956
|
-
...
|
|
1192
|
+
...m.colors,
|
|
957
1193
|
custom: {
|
|
958
|
-
...
|
|
959
|
-
...
|
|
1194
|
+
...m.colors.custom,
|
|
1195
|
+
...u
|
|
960
1196
|
}
|
|
961
1197
|
}
|
|
962
1198
|
};
|
|
963
|
-
}, [a,
|
|
964
|
-
() =>
|
|
965
|
-
[
|
|
966
|
-
),
|
|
967
|
-
() => ({ theme:
|
|
968
|
-
[
|
|
1199
|
+
}, [a, u]), h = d.useMemo(
|
|
1200
|
+
() => Qn(f, _),
|
|
1201
|
+
[f, _]
|
|
1202
|
+
), b = d.useMemo(
|
|
1203
|
+
() => ({ theme: f, mode: _, vars: h, setMode: p }),
|
|
1204
|
+
[f, _, h]
|
|
969
1205
|
);
|
|
970
|
-
return /* @__PURE__ */
|
|
1206
|
+
return /* @__PURE__ */ l.jsx(jn.Provider, { value: b, children: /* @__PURE__ */ l.jsx("div", { "data-luna-theme": !0, "data-luna-mode": _, className: i, style: { ...h, ...r }, children: e }) });
|
|
971
1207
|
}
|
|
972
|
-
function
|
|
973
|
-
const
|
|
974
|
-
if (!
|
|
1208
|
+
function Ee() {
|
|
1209
|
+
const e = d.useContext(jn);
|
|
1210
|
+
if (!e)
|
|
975
1211
|
throw new Error("useTheme must be used within ThemeProvider");
|
|
976
|
-
return
|
|
1212
|
+
return e;
|
|
977
1213
|
}
|
|
978
|
-
const
|
|
1214
|
+
const Zn = {
|
|
979
1215
|
bounce: "bounce 3s infinite",
|
|
980
1216
|
wiggle: "wiggle 4s infinite",
|
|
981
1217
|
pulse: "pulse 2s infinite"
|
|
982
1218
|
};
|
|
983
|
-
function
|
|
984
|
-
return
|
|
1219
|
+
function Mn(e) {
|
|
1220
|
+
return e.filter(Boolean).join(" ");
|
|
985
1221
|
}
|
|
986
|
-
function
|
|
987
|
-
if (
|
|
988
|
-
return
|
|
1222
|
+
function ea(e, t) {
|
|
1223
|
+
if (e)
|
|
1224
|
+
return j(t, e);
|
|
989
1225
|
}
|
|
990
|
-
function
|
|
991
|
-
if (!
|
|
1226
|
+
function na(e) {
|
|
1227
|
+
if (!e)
|
|
992
1228
|
return;
|
|
993
|
-
const a = (
|
|
994
|
-
return !
|
|
1229
|
+
const a = (Zn[e] ?? e).trim(), [u, ...i] = a.split(/\s+/);
|
|
1230
|
+
return !u || i.length < 2 ? void 0 : [u === "lunarPulse" ? "luna-button-lunar-pulse" : `luna-button-${u}`, ...i].join(" ");
|
|
995
1231
|
}
|
|
996
|
-
const
|
|
1232
|
+
const ka = d.forwardRef(
|
|
997
1233
|
function({
|
|
998
|
-
absolute:
|
|
1234
|
+
absolute: t,
|
|
999
1235
|
animation: a,
|
|
1000
|
-
block:
|
|
1001
|
-
bottom:
|
|
1002
|
-
children:
|
|
1003
|
-
className:
|
|
1004
|
-
color:
|
|
1005
|
-
dark:
|
|
1006
|
-
depressed:
|
|
1007
|
-
disabled:
|
|
1008
|
-
fab:
|
|
1009
|
-
fixed:
|
|
1010
|
-
flat:
|
|
1011
|
-
icon:
|
|
1012
|
-
iconDirection:
|
|
1013
|
-
iconName:
|
|
1014
|
-
info:
|
|
1015
|
-
left:
|
|
1016
|
-
light:
|
|
1017
|
-
loading:
|
|
1018
|
-
loadingAnimation:
|
|
1019
|
-
outline:
|
|
1020
|
-
right:
|
|
1021
|
-
rounded:
|
|
1022
|
-
size:
|
|
1023
|
-
style:
|
|
1024
|
-
top:
|
|
1025
|
-
type:
|
|
1026
|
-
value:
|
|
1027
|
-
...
|
|
1028
|
-
},
|
|
1029
|
-
var
|
|
1030
|
-
const { theme:
|
|
1236
|
+
block: u,
|
|
1237
|
+
bottom: i,
|
|
1238
|
+
children: r,
|
|
1239
|
+
className: _,
|
|
1240
|
+
color: p,
|
|
1241
|
+
dark: f,
|
|
1242
|
+
depressed: h,
|
|
1243
|
+
disabled: b,
|
|
1244
|
+
fab: m,
|
|
1245
|
+
fixed: w,
|
|
1246
|
+
flat: o,
|
|
1247
|
+
icon: x,
|
|
1248
|
+
iconDirection: s,
|
|
1249
|
+
iconName: y,
|
|
1250
|
+
info: I,
|
|
1251
|
+
left: k,
|
|
1252
|
+
light: J,
|
|
1253
|
+
loading: z,
|
|
1254
|
+
loadingAnimation: A = "lunar",
|
|
1255
|
+
outline: F,
|
|
1256
|
+
right: g,
|
|
1257
|
+
rounded: ee,
|
|
1258
|
+
size: K,
|
|
1259
|
+
style: U,
|
|
1260
|
+
top: le,
|
|
1261
|
+
type: q = "button",
|
|
1262
|
+
value: Q,
|
|
1263
|
+
...ae
|
|
1264
|
+
}, ie) {
|
|
1265
|
+
var ne, de;
|
|
1266
|
+
const { theme: te } = Ee(), ge = K ?? ((ne = te.components.button) == null ? void 0 : ne.defaultSize) ?? "medium", ce = s ?? ((de = te.components.button) == null ? void 0 : de.defaultIconDirection) ?? "right", oe = ea(p, te), ve = na(a), P = x ?? (y ? /* @__PURE__ */ l.jsx("span", { children: y }) : null), $ = r ?? Q, B = P && ce === "left", X = P && ce === "right", pe = Mn([
|
|
1031
1267
|
"luna-button",
|
|
1032
|
-
|
|
1033
|
-
!
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
!
|
|
1037
|
-
!
|
|
1038
|
-
!
|
|
1039
|
-
!
|
|
1040
|
-
!
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
]),
|
|
1045
|
-
...
|
|
1046
|
-
...
|
|
1047
|
-
...
|
|
1268
|
+
w && "luna-button--fixed",
|
|
1269
|
+
!w && t && "luna-button--absolute",
|
|
1270
|
+
u && "luna-button--block",
|
|
1271
|
+
I && "luna-button--info",
|
|
1272
|
+
!I && F && "luna-button--outline",
|
|
1273
|
+
!I && o && "luna-button--flat",
|
|
1274
|
+
!I && h && "luna-button--depressed",
|
|
1275
|
+
!I && !m && ee && "luna-button--rounded",
|
|
1276
|
+
!I && m && "luna-button--fab",
|
|
1277
|
+
J && "luna-button--light",
|
|
1278
|
+
f && "luna-button--dark",
|
|
1279
|
+
_
|
|
1280
|
+
]), Z = {
|
|
1281
|
+
...ve ? { animation: ve } : {},
|
|
1282
|
+
...oe ? I ? { "--luna-btn-info-color": oe } : { "--luna-btn-bg": oe } : {},
|
|
1283
|
+
...U
|
|
1048
1284
|
};
|
|
1049
|
-
return /* @__PURE__ */
|
|
1285
|
+
return /* @__PURE__ */ l.jsxs(
|
|
1050
1286
|
"button",
|
|
1051
1287
|
{
|
|
1052
|
-
...
|
|
1053
|
-
ref:
|
|
1054
|
-
type:
|
|
1055
|
-
className:
|
|
1056
|
-
"aria-busy":
|
|
1057
|
-
"data-disabled":
|
|
1058
|
-
"data-icon-direction":
|
|
1059
|
-
"data-loading":
|
|
1060
|
-
"data-loading-animation":
|
|
1061
|
-
"data-size":
|
|
1062
|
-
disabled:
|
|
1063
|
-
style:
|
|
1288
|
+
...ae,
|
|
1289
|
+
ref: ie,
|
|
1290
|
+
type: q,
|
|
1291
|
+
className: pe,
|
|
1292
|
+
"aria-busy": z ? "true" : void 0,
|
|
1293
|
+
"data-disabled": b ? "true" : void 0,
|
|
1294
|
+
"data-icon-direction": ce,
|
|
1295
|
+
"data-loading": z ? "true" : void 0,
|
|
1296
|
+
"data-loading-animation": z ? A : void 0,
|
|
1297
|
+
"data-size": ge,
|
|
1298
|
+
disabled: b,
|
|
1299
|
+
style: Z,
|
|
1064
1300
|
children: [
|
|
1065
|
-
|
|
1066
|
-
/* @__PURE__ */
|
|
1067
|
-
|
|
1068
|
-
/* @__PURE__ */
|
|
1069
|
-
/* @__PURE__ */
|
|
1070
|
-
/* @__PURE__ */
|
|
1071
|
-
/* @__PURE__ */
|
|
1072
|
-
/* @__PURE__ */
|
|
1301
|
+
B ? /* @__PURE__ */ l.jsx("span", { className: "luna-button__icon", children: P }) : null,
|
|
1302
|
+
/* @__PURE__ */ l.jsx("span", { className: "luna-button__content", children: $ }),
|
|
1303
|
+
z ? /* @__PURE__ */ l.jsx("span", { "aria-hidden": "true", className: "luna-button__loader", children: A === "loading-star" ? /* @__PURE__ */ l.jsx("span", { className: "luna-button__loader-star" }) : /* @__PURE__ */ l.jsxs("span", { className: "luna-button__loader-phases", children: [
|
|
1304
|
+
/* @__PURE__ */ l.jsx("span", { className: "luna-button__moon luna-button__moon--new" }),
|
|
1305
|
+
/* @__PURE__ */ l.jsx("span", { className: "luna-button__moon luna-button__moon--waxing" }),
|
|
1306
|
+
/* @__PURE__ */ l.jsx("span", { className: "luna-button__moon luna-button__moon--full" }),
|
|
1307
|
+
/* @__PURE__ */ l.jsx("span", { className: "luna-button__moon luna-button__moon--waning" }),
|
|
1308
|
+
/* @__PURE__ */ l.jsx("span", { className: "luna-button__moon luna-button__moon--faint" })
|
|
1073
1309
|
] }) }) : null,
|
|
1074
|
-
|
|
1310
|
+
X ? /* @__PURE__ */ l.jsx("span", { className: "luna-button__icon", children: P }) : null
|
|
1311
|
+
]
|
|
1312
|
+
}
|
|
1313
|
+
);
|
|
1314
|
+
}
|
|
1315
|
+
), fn = ["xs", "sm", "md", "lg", "xl"], gn = {
|
|
1316
|
+
mobile: "xs",
|
|
1317
|
+
tablet: "md",
|
|
1318
|
+
desktop: "lg"
|
|
1319
|
+
}, aa = {
|
|
1320
|
+
start: "flex-start",
|
|
1321
|
+
center: "center",
|
|
1322
|
+
end: "flex-end",
|
|
1323
|
+
between: "space-between",
|
|
1324
|
+
around: "space-around",
|
|
1325
|
+
evenly: "space-evenly"
|
|
1326
|
+
}, ta = {
|
|
1327
|
+
start: "flex-start",
|
|
1328
|
+
center: "center",
|
|
1329
|
+
end: "flex-end",
|
|
1330
|
+
stretch: "stretch",
|
|
1331
|
+
baseline: "baseline"
|
|
1332
|
+
};
|
|
1333
|
+
function Me(e) {
|
|
1334
|
+
return e.filter(Boolean).join(" ");
|
|
1335
|
+
}
|
|
1336
|
+
function en(e, t) {
|
|
1337
|
+
if (e)
|
|
1338
|
+
return D(t.spacing, e) ?? e;
|
|
1339
|
+
}
|
|
1340
|
+
function ra(e) {
|
|
1341
|
+
if (typeof e == "number" || e === "auto")
|
|
1342
|
+
return { xs: e, sm: e, md: e, lg: e, xl: e };
|
|
1343
|
+
if (!e)
|
|
1344
|
+
return { xs: 12, sm: 12, md: 12, lg: 12, xl: 12 };
|
|
1345
|
+
const t = {};
|
|
1346
|
+
for (const [i, r] of Object.entries(e)) {
|
|
1347
|
+
if (typeof r != "number" && r !== "auto")
|
|
1348
|
+
continue;
|
|
1349
|
+
const _ = i in gn ? gn[i] : i;
|
|
1350
|
+
fn.includes(_) && (t[_] = r);
|
|
1351
|
+
}
|
|
1352
|
+
let a = t.xs ?? 12;
|
|
1353
|
+
const u = {
|
|
1354
|
+
xs: a,
|
|
1355
|
+
sm: a,
|
|
1356
|
+
md: a,
|
|
1357
|
+
lg: a,
|
|
1358
|
+
xl: a
|
|
1359
|
+
};
|
|
1360
|
+
for (const i of fn)
|
|
1361
|
+
t[i] !== void 0 && (a = t[i]), u[i] = a;
|
|
1362
|
+
return u;
|
|
1363
|
+
}
|
|
1364
|
+
function la(e, t) {
|
|
1365
|
+
if (!d.isValidElement(e))
|
|
1366
|
+
return t;
|
|
1367
|
+
const a = e.props;
|
|
1368
|
+
return a.colSpan ?? a["data-col-span"] ?? t;
|
|
1369
|
+
}
|
|
1370
|
+
function ia(e) {
|
|
1371
|
+
if (!d.isValidElement(e))
|
|
1372
|
+
return e;
|
|
1373
|
+
const t = e.props;
|
|
1374
|
+
if (!("colSpan" in t) && !("data-col-span" in t))
|
|
1375
|
+
return e;
|
|
1376
|
+
const a = { ...t };
|
|
1377
|
+
return delete a.colSpan, delete a["data-col-span"], d.cloneElement(e, a);
|
|
1378
|
+
}
|
|
1379
|
+
function He(e) {
|
|
1380
|
+
const t = ra(e);
|
|
1381
|
+
return {
|
|
1382
|
+
"--luna-layout-span-xs": String(t.xs),
|
|
1383
|
+
"--luna-layout-span-sm": String(t.sm),
|
|
1384
|
+
"--luna-layout-span-md": String(t.md),
|
|
1385
|
+
"--luna-layout-span-lg": String(t.lg),
|
|
1386
|
+
"--luna-layout-span-xl": String(t.xl)
|
|
1387
|
+
};
|
|
1388
|
+
}
|
|
1389
|
+
function wn(e) {
|
|
1390
|
+
if (e)
|
|
1391
|
+
return ta[e];
|
|
1392
|
+
}
|
|
1393
|
+
function En(e) {
|
|
1394
|
+
if (e)
|
|
1395
|
+
return aa[e];
|
|
1396
|
+
}
|
|
1397
|
+
function nn(e, t, a) {
|
|
1398
|
+
return d.Children.map(e, (u, i) => u == null || typeof u == "boolean" ? u : /* @__PURE__ */ l.jsx(
|
|
1399
|
+
"div",
|
|
1400
|
+
{
|
|
1401
|
+
className: t,
|
|
1402
|
+
style: He(la(u, a)),
|
|
1403
|
+
children: ia(u)
|
|
1404
|
+
},
|
|
1405
|
+
i
|
|
1406
|
+
));
|
|
1407
|
+
}
|
|
1408
|
+
const mn = d.forwardRef(function({ as: t, align: a, children: u, className: i, colSpan: r, gap: _, inline: p, justify: f, style: h, ...b }, m) {
|
|
1409
|
+
const { theme: w } = Ee(), o = t ?? "div", x = {
|
|
1410
|
+
...He(r),
|
|
1411
|
+
..._ ? { "--luna-layout-gap": en(_, w) } : {},
|
|
1412
|
+
...a ? { "--luna-layout-align": wn(a) } : {},
|
|
1413
|
+
...f ? { "--luna-layout-justify": En(f) } : {},
|
|
1414
|
+
...h
|
|
1415
|
+
};
|
|
1416
|
+
return /* @__PURE__ */ l.jsx(
|
|
1417
|
+
o,
|
|
1418
|
+
{
|
|
1419
|
+
...b,
|
|
1420
|
+
ref: m,
|
|
1421
|
+
className: Me(["luna-column", p && "luna-column--inline", i]),
|
|
1422
|
+
style: x,
|
|
1423
|
+
children: nn(u, "luna-column__item")
|
|
1424
|
+
}
|
|
1425
|
+
);
|
|
1426
|
+
}), sa = d.forwardRef(function({ as: t, align: a, children: u, className: i, colSpan: r, gap: _, inline: p, justify: f, style: h, wrap: b = !0, ...m }, w) {
|
|
1427
|
+
const { theme: o } = Ee(), x = t ?? "div", s = {
|
|
1428
|
+
...He(r),
|
|
1429
|
+
..._ ? { "--luna-layout-gap": en(_, o) } : {},
|
|
1430
|
+
...a ? { "--luna-layout-align": wn(a) } : {},
|
|
1431
|
+
...f ? { "--luna-layout-justify": En(f) } : {},
|
|
1432
|
+
...h
|
|
1433
|
+
};
|
|
1434
|
+
return /* @__PURE__ */ l.jsx(
|
|
1435
|
+
x,
|
|
1436
|
+
{
|
|
1437
|
+
...m,
|
|
1438
|
+
ref: w,
|
|
1439
|
+
className: Me([
|
|
1440
|
+
"luna-row",
|
|
1441
|
+
p && "luna-row--inline",
|
|
1442
|
+
!b && "luna-row--no-wrap",
|
|
1443
|
+
i
|
|
1444
|
+
]),
|
|
1445
|
+
style: s,
|
|
1446
|
+
children: nn(u, "luna-row__item", "auto")
|
|
1447
|
+
}
|
|
1448
|
+
);
|
|
1449
|
+
});
|
|
1450
|
+
function oa(e) {
|
|
1451
|
+
return e.filter(Boolean).join(" ");
|
|
1452
|
+
}
|
|
1453
|
+
function ua(e, t) {
|
|
1454
|
+
if (e)
|
|
1455
|
+
return j(t, e);
|
|
1456
|
+
}
|
|
1457
|
+
function Xe(e, t) {
|
|
1458
|
+
if (e)
|
|
1459
|
+
return D(t.spacing, e) ?? e;
|
|
1460
|
+
}
|
|
1461
|
+
function Rn(e) {
|
|
1462
|
+
return d.Children.toArray(e).flatMap((t) => d.isValidElement(t) && t.type === d.Fragment ? Rn(t.props.children) : [t]);
|
|
1463
|
+
}
|
|
1464
|
+
const za = d.forwardRef(function({
|
|
1465
|
+
actions: t,
|
|
1466
|
+
actionsAlign: a = "left",
|
|
1467
|
+
actionsGap: u = "2",
|
|
1468
|
+
as: i,
|
|
1469
|
+
bodyAlign: r = "left",
|
|
1470
|
+
children: _,
|
|
1471
|
+
className: p,
|
|
1472
|
+
color: f,
|
|
1473
|
+
elevated: h,
|
|
1474
|
+
flat: b,
|
|
1475
|
+
gap: m,
|
|
1476
|
+
header: w,
|
|
1477
|
+
interactive: o,
|
|
1478
|
+
outlined: x,
|
|
1479
|
+
padding: s,
|
|
1480
|
+
rounded: y,
|
|
1481
|
+
style: I,
|
|
1482
|
+
...k
|
|
1483
|
+
}, J) {
|
|
1484
|
+
const { theme: z } = Ee(), A = i ?? "section", F = ua(f, z), g = Xe(m, z), ee = Xe(s, z), K = Xe(u, z), U = oa([
|
|
1485
|
+
"luna-card",
|
|
1486
|
+
x && "luna-card--outlined",
|
|
1487
|
+
!b && h && "luna-card--elevated",
|
|
1488
|
+
b && "luna-card--flat",
|
|
1489
|
+
y && "luna-card--rounded",
|
|
1490
|
+
o && "luna-card--interactive",
|
|
1491
|
+
p
|
|
1492
|
+
]), le = {
|
|
1493
|
+
...F ? { "--luna-card-bg-override": F } : {},
|
|
1494
|
+
...g ? { "--luna-card-gap": g } : {},
|
|
1495
|
+
...ee ? { "--luna-card-padding": ee } : {},
|
|
1496
|
+
...I
|
|
1497
|
+
};
|
|
1498
|
+
return /* @__PURE__ */ l.jsxs(A, { ...k, ref: J, className: U, style: le, children: [
|
|
1499
|
+
w ? /* @__PURE__ */ l.jsx(mn, { className: "luna-card__header", align: "start", gap: "2", children: /* @__PURE__ */ l.jsx("div", { className: "luna-card__header-content", children: w }) }) : null,
|
|
1500
|
+
_ ? /* @__PURE__ */ l.jsx(mn, { className: "luna-card__body", align: r === "center" ? "center" : r === "right" ? "end" : "start", gap: "2", children: _ }) : null,
|
|
1501
|
+
t ? /* @__PURE__ */ l.jsx(
|
|
1502
|
+
sa,
|
|
1503
|
+
{
|
|
1504
|
+
className: "luna-card__actions",
|
|
1505
|
+
align: "center",
|
|
1506
|
+
gap: K,
|
|
1507
|
+
justify: a === "center" ? "center" : a === "right" ? "end" : "start",
|
|
1508
|
+
wrap: !1,
|
|
1509
|
+
children: Rn(t).map(
|
|
1510
|
+
(q, Q) => q == null || typeof q == "boolean" ? q : /* @__PURE__ */ l.jsx("div", { "data-col-span": "auto", children: q }, Q)
|
|
1511
|
+
)
|
|
1512
|
+
}
|
|
1513
|
+
) : null
|
|
1514
|
+
] });
|
|
1515
|
+
}), ca = /* @__PURE__ */ new Set(["span", "strong", "em", "small", "label", "b", "i", "u"]);
|
|
1516
|
+
function da(e) {
|
|
1517
|
+
return e.filter(Boolean).join(" ");
|
|
1518
|
+
}
|
|
1519
|
+
function fa(e, t) {
|
|
1520
|
+
if (e)
|
|
1521
|
+
return j(t, e);
|
|
1522
|
+
}
|
|
1523
|
+
const W = d.forwardRef(function({
|
|
1524
|
+
as: t,
|
|
1525
|
+
align: a,
|
|
1526
|
+
children: u,
|
|
1527
|
+
className: i,
|
|
1528
|
+
color: r,
|
|
1529
|
+
inline: _,
|
|
1530
|
+
italic: p,
|
|
1531
|
+
muted: f,
|
|
1532
|
+
surface: h,
|
|
1533
|
+
style: b,
|
|
1534
|
+
truncate: m,
|
|
1535
|
+
underline: w,
|
|
1536
|
+
variant: o,
|
|
1537
|
+
weight: x,
|
|
1538
|
+
...s
|
|
1539
|
+
}, y) {
|
|
1540
|
+
var g;
|
|
1541
|
+
const { theme: I } = Ee(), k = t ?? "p", J = o ?? ((g = I.components.text) == null ? void 0 : g.defaultVariant) ?? "body", z = fa(r, I), A = _ === !0 || _ !== !1 && typeof k == "string" && ca.has(k), F = {
|
|
1542
|
+
...a ? { "--luna-text-align": a } : {},
|
|
1543
|
+
...z ? { "--luna-text-color": z } : {},
|
|
1544
|
+
...x !== void 0 ? { fontWeight: x } : {},
|
|
1545
|
+
...b
|
|
1546
|
+
};
|
|
1547
|
+
return /* @__PURE__ */ l.jsx(
|
|
1548
|
+
k,
|
|
1549
|
+
{
|
|
1550
|
+
...s,
|
|
1551
|
+
ref: y,
|
|
1552
|
+
className: da([
|
|
1553
|
+
"luna-text",
|
|
1554
|
+
A && "luna-text--inline",
|
|
1555
|
+
f && "luna-text--muted",
|
|
1556
|
+
m && "luna-text--truncate",
|
|
1557
|
+
h && "luna-text--surface",
|
|
1558
|
+
p && "luna-text--italic",
|
|
1559
|
+
w && "luna-text--underline",
|
|
1560
|
+
i
|
|
1561
|
+
]),
|
|
1562
|
+
"data-variant": J,
|
|
1563
|
+
style: F,
|
|
1564
|
+
children: u
|
|
1565
|
+
}
|
|
1566
|
+
);
|
|
1567
|
+
});
|
|
1568
|
+
function ga(e) {
|
|
1569
|
+
return e.filter(Boolean).join(" ");
|
|
1570
|
+
}
|
|
1571
|
+
const $a = d.forwardRef(
|
|
1572
|
+
function({
|
|
1573
|
+
className: t,
|
|
1574
|
+
description: a,
|
|
1575
|
+
disabled: u,
|
|
1576
|
+
error: i,
|
|
1577
|
+
helpText: r,
|
|
1578
|
+
id: _,
|
|
1579
|
+
indeterminate: p = !1,
|
|
1580
|
+
label: f,
|
|
1581
|
+
onChange: h,
|
|
1582
|
+
checked: b,
|
|
1583
|
+
...m
|
|
1584
|
+
}, w) {
|
|
1585
|
+
const o = d.useId(), x = _ ?? `luna-checkbox-${o.replace(/:/g, "")}`, s = i || r ? `${x}-message` : void 0, y = a ? `${x}-description` : void 0, I = d.useRef(null), k = i != null;
|
|
1586
|
+
d.useImperativeHandle(w, () => I.current, []), d.useEffect(() => {
|
|
1587
|
+
I.current && (I.current.indeterminate = p);
|
|
1588
|
+
}, [p]);
|
|
1589
|
+
function J(z) {
|
|
1590
|
+
I.current && (I.current.indeterminate = !1), h == null || h(z);
|
|
1591
|
+
}
|
|
1592
|
+
return /* @__PURE__ */ l.jsxs(
|
|
1593
|
+
"div",
|
|
1594
|
+
{
|
|
1595
|
+
className: ga([
|
|
1596
|
+
"luna-checkbox-field",
|
|
1597
|
+
u && "luna-checkbox-field--disabled",
|
|
1598
|
+
k && "luna-checkbox-field--invalid",
|
|
1599
|
+
t
|
|
1600
|
+
]),
|
|
1601
|
+
children: [
|
|
1602
|
+
/* @__PURE__ */ l.jsxs("label", { htmlFor: x, className: "luna-checkbox-field__main", children: [
|
|
1603
|
+
/* @__PURE__ */ l.jsx(
|
|
1604
|
+
"input",
|
|
1605
|
+
{
|
|
1606
|
+
...m,
|
|
1607
|
+
ref: I,
|
|
1608
|
+
id: x,
|
|
1609
|
+
className: "luna-checkbox",
|
|
1610
|
+
type: "checkbox",
|
|
1611
|
+
checked: b,
|
|
1612
|
+
disabled: u,
|
|
1613
|
+
onChange: J,
|
|
1614
|
+
"data-indeterminate": p ? "true" : "false",
|
|
1615
|
+
"aria-invalid": k ? !0 : m["aria-invalid"],
|
|
1616
|
+
"aria-checked": p ? "mixed" : m["aria-checked"],
|
|
1617
|
+
"aria-describedby": [y, s].filter(Boolean).join(" ") || void 0
|
|
1618
|
+
}
|
|
1619
|
+
),
|
|
1620
|
+
/* @__PURE__ */ l.jsx("span", { className: "luna-checkbox__box", "aria-hidden": "true" }),
|
|
1621
|
+
/* @__PURE__ */ l.jsxs("span", { className: "luna-checkbox-field__text", children: [
|
|
1622
|
+
f != null ? /* @__PURE__ */ l.jsx(W, { as: "span", variant: "label", className: "luna-checkbox-field__label", children: f }) : null,
|
|
1623
|
+
a != null ? /* @__PURE__ */ l.jsx(
|
|
1624
|
+
W,
|
|
1625
|
+
{
|
|
1626
|
+
id: y,
|
|
1627
|
+
as: "span",
|
|
1628
|
+
variant: "body-small",
|
|
1629
|
+
className: "luna-checkbox-field__description",
|
|
1630
|
+
children: a
|
|
1631
|
+
}
|
|
1632
|
+
) : null
|
|
1633
|
+
] })
|
|
1634
|
+
] }),
|
|
1635
|
+
k ? /* @__PURE__ */ l.jsx(
|
|
1636
|
+
W,
|
|
1637
|
+
{
|
|
1638
|
+
id: s,
|
|
1639
|
+
variant: "caption",
|
|
1640
|
+
className: "luna-checkbox-field__message luna-checkbox-field__message--error",
|
|
1641
|
+
children: i
|
|
1642
|
+
}
|
|
1643
|
+
) : r != null ? /* @__PURE__ */ l.jsx(
|
|
1644
|
+
W,
|
|
1645
|
+
{
|
|
1646
|
+
id: s,
|
|
1647
|
+
variant: "caption",
|
|
1648
|
+
className: "luna-checkbox-field__message luna-checkbox-field__message--help",
|
|
1649
|
+
children: r
|
|
1650
|
+
}
|
|
1651
|
+
) : null
|
|
1075
1652
|
]
|
|
1076
1653
|
}
|
|
1077
1654
|
);
|
|
1078
1655
|
}
|
|
1079
1656
|
);
|
|
1657
|
+
function ma(e) {
|
|
1658
|
+
return e.filter(Boolean).join(" ");
|
|
1659
|
+
}
|
|
1660
|
+
const Ba = d.forwardRef(function({ checked: t, className: a, description: u, disabled: i, error: r, helpText: _, id: p, label: f, ...h }, b) {
|
|
1661
|
+
const m = d.useId(), w = p ?? `luna-radio-${m.replace(/:/g, "")}`, o = r || _ ? `${w}-message` : void 0, x = u ? `${w}-description` : void 0, s = r != null;
|
|
1662
|
+
return /* @__PURE__ */ l.jsxs(
|
|
1663
|
+
"div",
|
|
1664
|
+
{
|
|
1665
|
+
className: ma([
|
|
1666
|
+
"luna-radio-field",
|
|
1667
|
+
i && "luna-radio-field--disabled",
|
|
1668
|
+
s && "luna-radio-field--invalid",
|
|
1669
|
+
a
|
|
1670
|
+
]),
|
|
1671
|
+
children: [
|
|
1672
|
+
/* @__PURE__ */ l.jsxs("label", { htmlFor: w, className: "luna-radio-field__main", children: [
|
|
1673
|
+
/* @__PURE__ */ l.jsx(
|
|
1674
|
+
"input",
|
|
1675
|
+
{
|
|
1676
|
+
...h,
|
|
1677
|
+
ref: b,
|
|
1678
|
+
id: w,
|
|
1679
|
+
className: "luna-radio",
|
|
1680
|
+
type: "radio",
|
|
1681
|
+
checked: t,
|
|
1682
|
+
disabled: i,
|
|
1683
|
+
"aria-invalid": s ? !0 : h["aria-invalid"],
|
|
1684
|
+
"aria-describedby": [x, o].filter(Boolean).join(" ") || void 0
|
|
1685
|
+
}
|
|
1686
|
+
),
|
|
1687
|
+
/* @__PURE__ */ l.jsx("span", { className: "luna-radio__control", "aria-hidden": "true" }),
|
|
1688
|
+
/* @__PURE__ */ l.jsxs("span", { className: "luna-radio-field__text", children: [
|
|
1689
|
+
f != null ? /* @__PURE__ */ l.jsx(W, { as: "span", variant: "label", className: "luna-radio-field__label", children: f }) : null,
|
|
1690
|
+
u != null ? /* @__PURE__ */ l.jsx(
|
|
1691
|
+
W,
|
|
1692
|
+
{
|
|
1693
|
+
id: x,
|
|
1694
|
+
as: "span",
|
|
1695
|
+
variant: "body-small",
|
|
1696
|
+
className: "luna-radio-field__description",
|
|
1697
|
+
children: u
|
|
1698
|
+
}
|
|
1699
|
+
) : null
|
|
1700
|
+
] })
|
|
1701
|
+
] }),
|
|
1702
|
+
s ? /* @__PURE__ */ l.jsx(
|
|
1703
|
+
W,
|
|
1704
|
+
{
|
|
1705
|
+
id: o,
|
|
1706
|
+
variant: "caption",
|
|
1707
|
+
className: "luna-radio-field__message luna-radio-field__message--error",
|
|
1708
|
+
children: r
|
|
1709
|
+
}
|
|
1710
|
+
) : _ != null ? /* @__PURE__ */ l.jsx(
|
|
1711
|
+
W,
|
|
1712
|
+
{
|
|
1713
|
+
id: o,
|
|
1714
|
+
variant: "caption",
|
|
1715
|
+
className: "luna-radio-field__message luna-radio-field__message--help",
|
|
1716
|
+
children: _
|
|
1717
|
+
}
|
|
1718
|
+
) : null
|
|
1719
|
+
]
|
|
1720
|
+
}
|
|
1721
|
+
);
|
|
1722
|
+
});
|
|
1723
|
+
function va(e) {
|
|
1724
|
+
return e.filter(Boolean).join(" ");
|
|
1725
|
+
}
|
|
1726
|
+
function vn(e, t) {
|
|
1727
|
+
if (e)
|
|
1728
|
+
return D(t.spacing, e) ?? e;
|
|
1729
|
+
}
|
|
1730
|
+
const Oa = d.forwardRef(function({
|
|
1731
|
+
as: t,
|
|
1732
|
+
className: a,
|
|
1733
|
+
decorative: u,
|
|
1734
|
+
inset: i,
|
|
1735
|
+
label: r,
|
|
1736
|
+
labelAlign: _ = "center",
|
|
1737
|
+
orientation: p = "horizontal",
|
|
1738
|
+
spacing: f,
|
|
1739
|
+
style: h,
|
|
1740
|
+
tone: b = "default",
|
|
1741
|
+
...m
|
|
1742
|
+
}, w) {
|
|
1743
|
+
const { theme: o } = Ee(), x = vn(f, o), s = typeof i == "string" ? vn(i, o) : i ? "var(--luna-divider-inset-default)" : void 0, y = p === "horizontal" && r !== void 0 && r !== null, I = t ?? (p === "vertical" || y ? "div" : "hr"), k = {
|
|
1744
|
+
...x ? { "--luna-divider-spacing": x } : {},
|
|
1745
|
+
...s ? { "--luna-divider-inset": s } : {},
|
|
1746
|
+
...h
|
|
1747
|
+
}, J = va([
|
|
1748
|
+
"luna-divider",
|
|
1749
|
+
p === "vertical" ? "luna-divider--vertical" : "luna-divider--horizontal",
|
|
1750
|
+
b === "muted" && "luna-divider--muted",
|
|
1751
|
+
b === "strong" && "luna-divider--strong",
|
|
1752
|
+
i && "luna-divider--inset",
|
|
1753
|
+
y && "luna-divider--labeled",
|
|
1754
|
+
y && `luna-divider--label-${_}`,
|
|
1755
|
+
a
|
|
1756
|
+
]), z = p === "vertical" ? u ? { "aria-hidden": !0 } : { role: "separator", "aria-orientation": "vertical" } : y ? u ? { "aria-hidden": !0 } : { role: "separator", "aria-orientation": "horizontal" } : u ? { "aria-hidden": !0 } : {};
|
|
1757
|
+
return /* @__PURE__ */ l.jsx(
|
|
1758
|
+
I,
|
|
1759
|
+
{
|
|
1760
|
+
...m,
|
|
1761
|
+
...z,
|
|
1762
|
+
ref: w,
|
|
1763
|
+
className: J,
|
|
1764
|
+
style: k,
|
|
1765
|
+
children: y ? /* @__PURE__ */ l.jsx(W, { as: "span", variant: "caption", className: "luna-divider__label", children: r }) : null
|
|
1766
|
+
}
|
|
1767
|
+
);
|
|
1768
|
+
});
|
|
1769
|
+
function pa(e) {
|
|
1770
|
+
return e.filter(Boolean).join(" ");
|
|
1771
|
+
}
|
|
1772
|
+
function ba(e, t) {
|
|
1773
|
+
if (e)
|
|
1774
|
+
return D(t.spacing, e) ?? e;
|
|
1775
|
+
}
|
|
1776
|
+
function ha(e) {
|
|
1777
|
+
return e === "center" ? { item: "center", text: "center" } : e === "right" ? { item: "end", text: "right" } : { item: "start", text: "left" };
|
|
1778
|
+
}
|
|
1779
|
+
function _a(e) {
|
|
1780
|
+
return e === "sm" ? {
|
|
1781
|
+
title: "label",
|
|
1782
|
+
subtitle: "caption"
|
|
1783
|
+
} : e === "lg" ? {
|
|
1784
|
+
title: "display",
|
|
1785
|
+
subtitle: "body"
|
|
1786
|
+
} : {
|
|
1787
|
+
title: "title",
|
|
1788
|
+
subtitle: "body-small"
|
|
1789
|
+
};
|
|
1790
|
+
}
|
|
1791
|
+
const Ta = d.forwardRef(function({ align: t = "left", as: a, className: u, gap: i, size: r = "md", style: _, subtitle: p, title: f, ...h }, b) {
|
|
1792
|
+
const { theme: m } = Ee(), w = a ?? "div", o = ba(i, m), x = ha(t), s = _a(r), y = {
|
|
1793
|
+
...o ? { "--luna-header-gap": o } : {},
|
|
1794
|
+
"--luna-header-align": x.item,
|
|
1795
|
+
"--luna-header-text-align": x.text,
|
|
1796
|
+
..._
|
|
1797
|
+
};
|
|
1798
|
+
return /* @__PURE__ */ l.jsxs(
|
|
1799
|
+
w,
|
|
1800
|
+
{
|
|
1801
|
+
...h,
|
|
1802
|
+
ref: b,
|
|
1803
|
+
className: pa(["luna-header", u]),
|
|
1804
|
+
style: y,
|
|
1805
|
+
children: [
|
|
1806
|
+
f != null ? typeof f == "string" ? /* @__PURE__ */ l.jsx(
|
|
1807
|
+
W,
|
|
1808
|
+
{
|
|
1809
|
+
as: "h2",
|
|
1810
|
+
variant: s.title,
|
|
1811
|
+
className: "luna-header__title",
|
|
1812
|
+
"data-size": r,
|
|
1813
|
+
children: f
|
|
1814
|
+
}
|
|
1815
|
+
) : /* @__PURE__ */ l.jsx("div", { className: "luna-header__title", "data-size": r, children: f }) : null,
|
|
1816
|
+
p != null ? typeof p == "string" ? /* @__PURE__ */ l.jsx(
|
|
1817
|
+
W,
|
|
1818
|
+
{
|
|
1819
|
+
variant: s.subtitle,
|
|
1820
|
+
muted: !0,
|
|
1821
|
+
className: "luna-header__subtitle",
|
|
1822
|
+
"data-size": r,
|
|
1823
|
+
children: p
|
|
1824
|
+
}
|
|
1825
|
+
) : /* @__PURE__ */ l.jsx("div", { className: "luna-header__subtitle", "data-size": r, children: p }) : null
|
|
1826
|
+
]
|
|
1827
|
+
}
|
|
1828
|
+
);
|
|
1829
|
+
});
|
|
1830
|
+
function xa(e) {
|
|
1831
|
+
return e === "transparent" || e === "rgba(0, 0, 0, 0)";
|
|
1832
|
+
}
|
|
1833
|
+
function ya(e) {
|
|
1834
|
+
let t = (e == null ? void 0 : e.parentElement) ?? null;
|
|
1835
|
+
for (; t; ) {
|
|
1836
|
+
const a = window.getComputedStyle(t).backgroundColor;
|
|
1837
|
+
if (a && !xa(a))
|
|
1838
|
+
return a;
|
|
1839
|
+
t = t.parentElement;
|
|
1840
|
+
}
|
|
1841
|
+
return "";
|
|
1842
|
+
}
|
|
1843
|
+
function Pe(e = []) {
|
|
1844
|
+
const t = d.useRef(null);
|
|
1845
|
+
return d.useLayoutEffect(() => {
|
|
1846
|
+
const a = t.current;
|
|
1847
|
+
if (!a)
|
|
1848
|
+
return;
|
|
1849
|
+
const u = ya(a);
|
|
1850
|
+
if (u) {
|
|
1851
|
+
a.style.setProperty("--luna-container-bg", u);
|
|
1852
|
+
return;
|
|
1853
|
+
}
|
|
1854
|
+
a.style.removeProperty("--luna-container-bg");
|
|
1855
|
+
}, e), t;
|
|
1856
|
+
}
|
|
1857
|
+
function Sa(e) {
|
|
1858
|
+
return e.filter(Boolean).join(" ");
|
|
1859
|
+
}
|
|
1860
|
+
const La = d.forwardRef(function({
|
|
1861
|
+
onBlur: t,
|
|
1862
|
+
onChange: a,
|
|
1863
|
+
placeholder: u,
|
|
1864
|
+
className: i,
|
|
1865
|
+
defaultValue: r,
|
|
1866
|
+
disabled: _,
|
|
1867
|
+
error: p,
|
|
1868
|
+
externalLabel: f = !1,
|
|
1869
|
+
fullWidth: h,
|
|
1870
|
+
helpText: b,
|
|
1871
|
+
id: m,
|
|
1872
|
+
inputSize: w,
|
|
1873
|
+
label: o,
|
|
1874
|
+
leading: x,
|
|
1875
|
+
trailing: s,
|
|
1876
|
+
value: y,
|
|
1877
|
+
...I
|
|
1878
|
+
}, k) {
|
|
1879
|
+
var ve;
|
|
1880
|
+
const { theme: J } = Ee(), z = d.useId(), A = m ?? `luna-input-${z.replace(/:/g, "")}`, F = p || b ? `${A}-message` : void 0, g = w ?? ((ve = J.components.input) == null ? void 0 : ve.defaultSize) ?? "md", ee = p != null, K = o != null && f, U = o != null && !f, le = typeof u == "string" && u.length > 0, q = Pe([J]), [Q, ae] = d.useState(!1), [ie, te] = d.useState(
|
|
1881
|
+
y !== void 0 ? String(y).length > 0 : r !== void 0 ? String(r).length > 0 : !1
|
|
1882
|
+
);
|
|
1883
|
+
d.useEffect(() => {
|
|
1884
|
+
y !== void 0 && te(String(y).length > 0);
|
|
1885
|
+
}, [y]);
|
|
1886
|
+
function ge(P) {
|
|
1887
|
+
y === void 0 && te(P.currentTarget.value.length > 0), a == null || a(P);
|
|
1888
|
+
}
|
|
1889
|
+
function ce(P) {
|
|
1890
|
+
var $;
|
|
1891
|
+
ae(!0), ($ = I.onFocus) == null || $.call(I, P);
|
|
1892
|
+
}
|
|
1893
|
+
function oe(P) {
|
|
1894
|
+
ae(!1), y === void 0 && te(P.currentTarget.value.length > 0), t == null || t(P);
|
|
1895
|
+
}
|
|
1896
|
+
return /* @__PURE__ */ l.jsxs(
|
|
1897
|
+
"div",
|
|
1898
|
+
{
|
|
1899
|
+
ref: q,
|
|
1900
|
+
className: Sa([
|
|
1901
|
+
"luna-input-field",
|
|
1902
|
+
h && "luna-input-field--full-width",
|
|
1903
|
+
U && "luna-input-field--inset-label",
|
|
1904
|
+
U && (Q || ie || le) && "luna-input-field--inset-label-active",
|
|
1905
|
+
_ && "luna-input-field--disabled",
|
|
1906
|
+
ee && "luna-input-field--invalid",
|
|
1907
|
+
i
|
|
1908
|
+
]),
|
|
1909
|
+
"data-size": g,
|
|
1910
|
+
children: [
|
|
1911
|
+
K ? /* @__PURE__ */ l.jsx("label", { htmlFor: A, className: "luna-input-field__label", children: /* @__PURE__ */ l.jsx(W, { as: "span", variant: "label", children: o }) }) : null,
|
|
1912
|
+
/* @__PURE__ */ l.jsxs("div", { className: "luna-input-field__control", children: [
|
|
1913
|
+
U ? /* @__PURE__ */ l.jsx("label", { htmlFor: A, className: "luna-input-field__label luna-input-field__label--inset", children: /* @__PURE__ */ l.jsx(W, { as: "span", variant: "caption", children: o }) }) : null,
|
|
1914
|
+
x != null ? /* @__PURE__ */ l.jsx("div", { className: "luna-input-field__leading", children: x }) : null,
|
|
1915
|
+
/* @__PURE__ */ l.jsx("div", { className: "luna-input-field__content", children: /* @__PURE__ */ l.jsx(
|
|
1916
|
+
"input",
|
|
1917
|
+
{
|
|
1918
|
+
...I,
|
|
1919
|
+
id: A,
|
|
1920
|
+
ref: k,
|
|
1921
|
+
className: "luna-input",
|
|
1922
|
+
value: y,
|
|
1923
|
+
defaultValue: r,
|
|
1924
|
+
placeholder: u,
|
|
1925
|
+
disabled: _,
|
|
1926
|
+
onChange: ge,
|
|
1927
|
+
onFocus: ce,
|
|
1928
|
+
onBlur: oe,
|
|
1929
|
+
"aria-invalid": ee ? !0 : I["aria-invalid"],
|
|
1930
|
+
"aria-describedby": F ?? I["aria-describedby"]
|
|
1931
|
+
}
|
|
1932
|
+
) }),
|
|
1933
|
+
s != null ? /* @__PURE__ */ l.jsx("div", { className: "luna-input-field__trailing", children: s }) : null
|
|
1934
|
+
] }),
|
|
1935
|
+
ee ? /* @__PURE__ */ l.jsx(
|
|
1936
|
+
W,
|
|
1937
|
+
{
|
|
1938
|
+
id: F,
|
|
1939
|
+
variant: "caption",
|
|
1940
|
+
className: "luna-input-field__message luna-input-field__message--error",
|
|
1941
|
+
children: p
|
|
1942
|
+
}
|
|
1943
|
+
) : b != null ? /* @__PURE__ */ l.jsx(
|
|
1944
|
+
W,
|
|
1945
|
+
{
|
|
1946
|
+
id: F,
|
|
1947
|
+
variant: "caption",
|
|
1948
|
+
className: "luna-input-field__message luna-input-field__message--help",
|
|
1949
|
+
children: b
|
|
1950
|
+
}
|
|
1951
|
+
) : null
|
|
1952
|
+
]
|
|
1953
|
+
}
|
|
1954
|
+
);
|
|
1955
|
+
});
|
|
1956
|
+
function ja(e) {
|
|
1957
|
+
return e.filter(Boolean).join(" ");
|
|
1958
|
+
}
|
|
1959
|
+
function pn(e, t) {
|
|
1960
|
+
if (e)
|
|
1961
|
+
return D(t.spacing, e) ?? e;
|
|
1962
|
+
}
|
|
1963
|
+
const Da = d.forwardRef(
|
|
1964
|
+
function({
|
|
1965
|
+
className: t,
|
|
1966
|
+
defaultValue: a,
|
|
1967
|
+
disabled: u,
|
|
1968
|
+
error: i,
|
|
1969
|
+
externalLabel: r = !1,
|
|
1970
|
+
fullWidth: _,
|
|
1971
|
+
helpText: p,
|
|
1972
|
+
id: f,
|
|
1973
|
+
inputSize: h,
|
|
1974
|
+
label: b,
|
|
1975
|
+
maxRows: m,
|
|
1976
|
+
minHeight: w,
|
|
1977
|
+
minRows: o,
|
|
1978
|
+
height: x,
|
|
1979
|
+
onBlur: s,
|
|
1980
|
+
onChange: y,
|
|
1981
|
+
placeholder: I,
|
|
1982
|
+
resize: k = "none",
|
|
1983
|
+
rows: J,
|
|
1984
|
+
value: z,
|
|
1985
|
+
autoGrow: A,
|
|
1986
|
+
style: F,
|
|
1987
|
+
...g
|
|
1988
|
+
}, ee) {
|
|
1989
|
+
var re;
|
|
1990
|
+
const { theme: K } = Ee(), U = d.useId(), le = f ?? `luna-textarea-${U.replace(/:/g, "")}`, q = i || p ? `${le}-message` : void 0, Q = h ?? ((re = K.components.input) == null ? void 0 : re.defaultSize) ?? "md", ae = i != null, ie = b != null && r, te = b != null && !r, ge = typeof I == "string" && I.length > 0, ce = Pe([K]), [oe, ve] = d.useState(!1), [P, $] = d.useState(
|
|
1991
|
+
z !== void 0 ? String(z).length > 0 : a !== void 0 ? String(a).length > 0 : !1
|
|
1992
|
+
), B = d.useRef(null);
|
|
1993
|
+
d.useImperativeHandle(ee, () => B.current, []), d.useEffect(() => {
|
|
1994
|
+
z !== void 0 && $(String(z).length > 0);
|
|
1995
|
+
}, [z]);
|
|
1996
|
+
const X = d.useCallback(() => {
|
|
1997
|
+
const H = B.current;
|
|
1998
|
+
if (!A || !H)
|
|
1999
|
+
return;
|
|
2000
|
+
H.style.height = "auto";
|
|
2001
|
+
const V = window.getComputedStyle(H), he = Number.parseFloat(V.lineHeight || "0") || 24, _e = Number.parseFloat(V.borderTopWidth || "0") + Number.parseFloat(V.borderBottomWidth || "0"), fe = Number.parseFloat(V.paddingTop || "0") + Number.parseFloat(V.paddingBottom || "0"), xe = o ? he * o + _e + fe : 0, Ie = m ? he * m + _e + fe : void 0, Se = Math.max(H.scrollHeight, xe || 0);
|
|
2002
|
+
H.style.height = `${Ie ? Math.min(Se, Ie) : Se}px`;
|
|
2003
|
+
}, [A, m, o]);
|
|
2004
|
+
d.useLayoutEffect(() => {
|
|
2005
|
+
X();
|
|
2006
|
+
}, [X, z, a]);
|
|
2007
|
+
function pe(H) {
|
|
2008
|
+
z === void 0 && $(H.currentTarget.value.length > 0), y == null || y(H), A && X();
|
|
2009
|
+
}
|
|
2010
|
+
function Z(H) {
|
|
2011
|
+
var V;
|
|
2012
|
+
ve(!0), (V = g.onFocus) == null || V.call(g, H);
|
|
2013
|
+
}
|
|
2014
|
+
function ne(H) {
|
|
2015
|
+
ve(!1), z === void 0 && $(H.currentTarget.value.length > 0), s == null || s(H);
|
|
2016
|
+
}
|
|
2017
|
+
const de = {
|
|
2018
|
+
...w ? { "--luna-textarea-min-height": pn(w, K) } : {},
|
|
2019
|
+
...x ? { "--luna-textarea-height": pn(x, K) } : {},
|
|
2020
|
+
"--luna-textarea-resize": k,
|
|
2021
|
+
...F
|
|
2022
|
+
}, be = J ?? o ?? 3;
|
|
2023
|
+
return /* @__PURE__ */ l.jsxs(
|
|
2024
|
+
"div",
|
|
2025
|
+
{
|
|
2026
|
+
ref: ce,
|
|
2027
|
+
className: ja([
|
|
2028
|
+
"luna-textarea-field",
|
|
2029
|
+
_ && "luna-textarea-field--full-width",
|
|
2030
|
+
te && "luna-textarea-field--inset-label",
|
|
2031
|
+
te && (oe || P || ge) && "luna-textarea-field--inset-label-active",
|
|
2032
|
+
u && "luna-textarea-field--disabled",
|
|
2033
|
+
ae && "luna-textarea-field--invalid",
|
|
2034
|
+
t
|
|
2035
|
+
]),
|
|
2036
|
+
"data-size": Q,
|
|
2037
|
+
children: [
|
|
2038
|
+
ie ? /* @__PURE__ */ l.jsx("label", { htmlFor: le, className: "luna-textarea-field__label", children: /* @__PURE__ */ l.jsx(W, { as: "span", variant: "label", children: b }) }) : null,
|
|
2039
|
+
/* @__PURE__ */ l.jsxs("div", { className: "luna-textarea-field__control", style: de, children: [
|
|
2040
|
+
te ? /* @__PURE__ */ l.jsx(
|
|
2041
|
+
"label",
|
|
2042
|
+
{
|
|
2043
|
+
htmlFor: le,
|
|
2044
|
+
className: "luna-textarea-field__label luna-textarea-field__label--inset",
|
|
2045
|
+
children: /* @__PURE__ */ l.jsx(W, { as: "span", variant: "caption", children: b })
|
|
2046
|
+
}
|
|
2047
|
+
) : null,
|
|
2048
|
+
/* @__PURE__ */ l.jsx(
|
|
2049
|
+
"textarea",
|
|
2050
|
+
{
|
|
2051
|
+
...g,
|
|
2052
|
+
id: le,
|
|
2053
|
+
ref: B,
|
|
2054
|
+
className: "luna-textarea",
|
|
2055
|
+
value: z,
|
|
2056
|
+
defaultValue: a,
|
|
2057
|
+
placeholder: I,
|
|
2058
|
+
disabled: u,
|
|
2059
|
+
rows: be,
|
|
2060
|
+
onChange: pe,
|
|
2061
|
+
onFocus: Z,
|
|
2062
|
+
onBlur: ne,
|
|
2063
|
+
"aria-invalid": ae ? !0 : g["aria-invalid"],
|
|
2064
|
+
"aria-describedby": q ?? g["aria-describedby"],
|
|
2065
|
+
style: {
|
|
2066
|
+
minHeight: "var(--luna-textarea-min-height, auto)",
|
|
2067
|
+
height: A ? void 0 : "var(--luna-textarea-height, auto)"
|
|
2068
|
+
}
|
|
2069
|
+
}
|
|
2070
|
+
)
|
|
2071
|
+
] }),
|
|
2072
|
+
ae ? /* @__PURE__ */ l.jsx(
|
|
2073
|
+
W,
|
|
2074
|
+
{
|
|
2075
|
+
id: q,
|
|
2076
|
+
variant: "caption",
|
|
2077
|
+
className: "luna-textarea-field__message luna-textarea-field__message--error",
|
|
2078
|
+
children: i
|
|
2079
|
+
}
|
|
2080
|
+
) : p != null ? /* @__PURE__ */ l.jsx(
|
|
2081
|
+
W,
|
|
2082
|
+
{
|
|
2083
|
+
id: q,
|
|
2084
|
+
variant: "caption",
|
|
2085
|
+
className: "luna-textarea-field__message luna-textarea-field__message--help",
|
|
2086
|
+
children: p
|
|
2087
|
+
}
|
|
2088
|
+
) : null
|
|
2089
|
+
]
|
|
2090
|
+
}
|
|
2091
|
+
);
|
|
2092
|
+
}
|
|
2093
|
+
);
|
|
2094
|
+
function Ke(e) {
|
|
2095
|
+
return e.filter(Boolean).join(" ");
|
|
2096
|
+
}
|
|
2097
|
+
function wa(e, t) {
|
|
2098
|
+
return typeof e == "string" ? e : typeof t == "string" ? t : "";
|
|
2099
|
+
}
|
|
2100
|
+
function Ea(e, t) {
|
|
2101
|
+
return e.find((a) => a.value === t);
|
|
2102
|
+
}
|
|
2103
|
+
function Ge(e) {
|
|
2104
|
+
return e.findIndex((t) => !t.disabled);
|
|
2105
|
+
}
|
|
2106
|
+
function bn(e, t, a) {
|
|
2107
|
+
var i;
|
|
2108
|
+
if (!e.length)
|
|
2109
|
+
return -1;
|
|
2110
|
+
let u = t;
|
|
2111
|
+
for (let r = 0; r < e.length; r += 1)
|
|
2112
|
+
if (u = (u + a + e.length) % e.length, !((i = e[u]) != null && i.disabled))
|
|
2113
|
+
return u;
|
|
2114
|
+
return -1;
|
|
2115
|
+
}
|
|
2116
|
+
const Aa = d.forwardRef(function({
|
|
2117
|
+
className: t,
|
|
2118
|
+
defaultValue: a,
|
|
2119
|
+
disabled: u,
|
|
2120
|
+
error: i,
|
|
2121
|
+
externalLabel: r = !1,
|
|
2122
|
+
fullWidth: _,
|
|
2123
|
+
helpText: p,
|
|
2124
|
+
id: f,
|
|
2125
|
+
inputSize: h,
|
|
2126
|
+
label: b,
|
|
2127
|
+
name: m,
|
|
2128
|
+
onBlur: w,
|
|
2129
|
+
onChange: o,
|
|
2130
|
+
onFocus: x,
|
|
2131
|
+
placeholder: s,
|
|
2132
|
+
options: y,
|
|
2133
|
+
required: I,
|
|
2134
|
+
value: k,
|
|
2135
|
+
autoFocus: J,
|
|
2136
|
+
...z
|
|
2137
|
+
}, A) {
|
|
2138
|
+
var ke;
|
|
2139
|
+
const { theme: F } = Ee(), g = d.useId(), ee = f ?? `luna-select-${g.replace(/:/g, "")}`, K = `${ee}-label`, U = `${ee}-value`, le = `${ee}-listbox`, q = i || p ? `${ee}-message` : void 0, Q = h ?? ((ke = F.components.input) == null ? void 0 : ke.defaultSize) ?? "md", ae = i != null, ie = b != null && r, te = b != null && !r, ge = typeof s == "string" && s.length > 0, ce = typeof k == "string", [oe, ve] = d.useState(
|
|
2140
|
+
wa(k, a)
|
|
2141
|
+
), P = ce ? String(k ?? "") : oe, $ = Ea(y, P), [B, X] = d.useState(!1), [pe, Z] = d.useState(!1), [ne, de] = d.useState(() => {
|
|
2142
|
+
const E = y.findIndex((O) => O.value === P);
|
|
2143
|
+
return E >= 0 ? E : Ge(y);
|
|
2144
|
+
}), be = d.useRef(null), re = d.useRef(null), H = Pe([F]);
|
|
2145
|
+
d.useImperativeHandle(A, () => re.current, []), d.useEffect(() => {
|
|
2146
|
+
if (ce) {
|
|
2147
|
+
const E = y.findIndex((O) => O.value === P);
|
|
2148
|
+
de(
|
|
2149
|
+
E >= 0 ? E : Ge(y)
|
|
2150
|
+
);
|
|
2151
|
+
}
|
|
2152
|
+
}, [ce, y, P]), d.useEffect(() => {
|
|
2153
|
+
var E;
|
|
2154
|
+
J && ((E = be.current) == null || E.focus());
|
|
2155
|
+
}, [J]), d.useEffect(() => {
|
|
2156
|
+
if (!B)
|
|
2157
|
+
return;
|
|
2158
|
+
function E(O) {
|
|
2159
|
+
var N;
|
|
2160
|
+
const me = O.target;
|
|
2161
|
+
(N = H.current) != null && N.contains(me) || X(!1);
|
|
2162
|
+
}
|
|
2163
|
+
return document.addEventListener("mousedown", E), () => {
|
|
2164
|
+
document.removeEventListener("mousedown", E);
|
|
2165
|
+
};
|
|
2166
|
+
}, [B]);
|
|
2167
|
+
function V(E) {
|
|
2168
|
+
ce || ve(E), re.current && (re.current.value = E), o && o({
|
|
2169
|
+
target: { value: E, name: m },
|
|
2170
|
+
currentTarget: { value: E, name: m }
|
|
2171
|
+
});
|
|
2172
|
+
}
|
|
2173
|
+
function he(E) {
|
|
2174
|
+
var O;
|
|
2175
|
+
E.disabled || (V(E.value), X(!1), (O = be.current) == null || O.focus());
|
|
2176
|
+
}
|
|
2177
|
+
function _e() {
|
|
2178
|
+
var E;
|
|
2179
|
+
V(""), X(!1), (E = be.current) == null || E.focus();
|
|
2180
|
+
}
|
|
2181
|
+
function fe() {
|
|
2182
|
+
if (u)
|
|
2183
|
+
return;
|
|
2184
|
+
const E = y.findIndex((O) => O.value === P);
|
|
2185
|
+
de(
|
|
2186
|
+
E >= 0 ? E : Ge(y)
|
|
2187
|
+
), X(!0);
|
|
2188
|
+
}
|
|
2189
|
+
function xe() {
|
|
2190
|
+
if (B) {
|
|
2191
|
+
X(!1);
|
|
2192
|
+
return;
|
|
2193
|
+
}
|
|
2194
|
+
fe();
|
|
2195
|
+
}
|
|
2196
|
+
function Ie(E) {
|
|
2197
|
+
var me;
|
|
2198
|
+
if (u)
|
|
2199
|
+
return;
|
|
2200
|
+
const O = E.target;
|
|
2201
|
+
O != null && O.closest(".luna-select__listbox") || O != null && O.closest(".luna-select__clear") || (E.preventDefault(), (me = be.current) == null || me.focus(), xe());
|
|
2202
|
+
}
|
|
2203
|
+
function Se(E) {
|
|
2204
|
+
if (!u)
|
|
2205
|
+
switch (E.key) {
|
|
2206
|
+
case "ArrowDown": {
|
|
2207
|
+
if (E.preventDefault(), !B) {
|
|
2208
|
+
fe();
|
|
2209
|
+
return;
|
|
2210
|
+
}
|
|
2211
|
+
de(
|
|
2212
|
+
(O) => bn(y, O < 0 ? -1 : O, 1)
|
|
2213
|
+
);
|
|
2214
|
+
break;
|
|
2215
|
+
}
|
|
2216
|
+
case "ArrowUp": {
|
|
2217
|
+
if (E.preventDefault(), !B) {
|
|
2218
|
+
fe();
|
|
2219
|
+
return;
|
|
2220
|
+
}
|
|
2221
|
+
de(
|
|
2222
|
+
(O) => bn(y, O < 0 ? y.length : O, -1)
|
|
2223
|
+
);
|
|
2224
|
+
break;
|
|
2225
|
+
}
|
|
2226
|
+
case "Enter":
|
|
2227
|
+
case " ": {
|
|
2228
|
+
if (E.preventDefault(), !B) {
|
|
2229
|
+
fe();
|
|
2230
|
+
return;
|
|
2231
|
+
}
|
|
2232
|
+
const O = y[ne];
|
|
2233
|
+
O && he(O);
|
|
2234
|
+
break;
|
|
2235
|
+
}
|
|
2236
|
+
case "Escape": {
|
|
2237
|
+
B && (E.preventDefault(), X(!1));
|
|
2238
|
+
break;
|
|
2239
|
+
}
|
|
2240
|
+
}
|
|
2241
|
+
}
|
|
2242
|
+
function Fe(E) {
|
|
2243
|
+
Z(!0), x == null || x(E);
|
|
2244
|
+
}
|
|
2245
|
+
function $e(E) {
|
|
2246
|
+
var me;
|
|
2247
|
+
const O = E.relatedTarget;
|
|
2248
|
+
(me = H.current) != null && me.contains(O) || (Z(!1), X(!1), w == null || w(E));
|
|
2249
|
+
}
|
|
2250
|
+
const Ne = P.length > 0, Ce = te && (pe || B || Ne || ge);
|
|
2251
|
+
return /* @__PURE__ */ l.jsxs(
|
|
2252
|
+
"div",
|
|
2253
|
+
{
|
|
2254
|
+
ref: H,
|
|
2255
|
+
className: Ke([
|
|
2256
|
+
"luna-select-field",
|
|
2257
|
+
_ && "luna-select-field--full-width",
|
|
2258
|
+
te && "luna-select-field--inset-label",
|
|
2259
|
+
Ce && "luna-select-field--inset-label-active",
|
|
2260
|
+
Ne && "luna-select-field--has-selection",
|
|
2261
|
+
B && "luna-select-field--open",
|
|
2262
|
+
u && "luna-select-field--disabled",
|
|
2263
|
+
ae && "luna-select-field--invalid",
|
|
2264
|
+
t
|
|
2265
|
+
]),
|
|
2266
|
+
"data-size": Q,
|
|
2267
|
+
children: [
|
|
2268
|
+
ie ? /* @__PURE__ */ l.jsx("div", { id: K, className: "luna-select-field__label", children: /* @__PURE__ */ l.jsx(W, { as: "span", variant: "label", children: b }) }) : null,
|
|
2269
|
+
/* @__PURE__ */ l.jsxs("div", { className: "luna-select-field__control", onMouseDown: Ie, children: [
|
|
2270
|
+
te ? /* @__PURE__ */ l.jsx("div", { id: K, className: "luna-select-field__label luna-select-field__label--inset", children: /* @__PURE__ */ l.jsx(W, { as: "span", variant: "caption", children: b }) }) : null,
|
|
2271
|
+
/* @__PURE__ */ l.jsx(
|
|
2272
|
+
"button",
|
|
2273
|
+
{
|
|
2274
|
+
...z,
|
|
2275
|
+
ref: be,
|
|
2276
|
+
id: ee,
|
|
2277
|
+
type: "button",
|
|
2278
|
+
className: "luna-select",
|
|
2279
|
+
disabled: u,
|
|
2280
|
+
"aria-invalid": ae ? !0 : z["aria-invalid"],
|
|
2281
|
+
"aria-describedby": q ?? z["aria-describedby"],
|
|
2282
|
+
"aria-labelledby": b ? `${K} ${U}` : U,
|
|
2283
|
+
"aria-haspopup": "listbox",
|
|
2284
|
+
"aria-expanded": B,
|
|
2285
|
+
"aria-controls": B ? le : void 0,
|
|
2286
|
+
onKeyDown: Se,
|
|
2287
|
+
onFocus: Fe,
|
|
2288
|
+
onBlur: $e,
|
|
2289
|
+
children: /* @__PURE__ */ l.jsx(
|
|
2290
|
+
"span",
|
|
2291
|
+
{
|
|
2292
|
+
id: U,
|
|
2293
|
+
className: Ke([
|
|
2294
|
+
"luna-select__value",
|
|
2295
|
+
!Ne && s && "luna-select__value--placeholder"
|
|
2296
|
+
]),
|
|
2297
|
+
children: Ne ? ($ == null ? void 0 : $.label) ?? P : s ?? (te ? "" : "Select an option")
|
|
2298
|
+
}
|
|
2299
|
+
)
|
|
2300
|
+
}
|
|
2301
|
+
),
|
|
2302
|
+
Ne && !u ? /* @__PURE__ */ l.jsx(
|
|
2303
|
+
"button",
|
|
2304
|
+
{
|
|
2305
|
+
type: "button",
|
|
2306
|
+
className: "luna-select__clear",
|
|
2307
|
+
"aria-label": "Clear selection",
|
|
2308
|
+
onMouseDown: (E) => E.preventDefault(),
|
|
2309
|
+
onClick: _e
|
|
2310
|
+
}
|
|
2311
|
+
) : null,
|
|
2312
|
+
/* @__PURE__ */ l.jsxs(
|
|
2313
|
+
"select",
|
|
2314
|
+
{
|
|
2315
|
+
ref: re,
|
|
2316
|
+
tabIndex: -1,
|
|
2317
|
+
"aria-hidden": "true",
|
|
2318
|
+
className: "luna-select__native",
|
|
2319
|
+
name: m,
|
|
2320
|
+
required: I,
|
|
2321
|
+
disabled: u,
|
|
2322
|
+
value: P,
|
|
2323
|
+
onChange: () => {
|
|
2324
|
+
},
|
|
2325
|
+
children: [
|
|
2326
|
+
s ? /* @__PURE__ */ l.jsx("option", { value: "", children: s }) : null,
|
|
2327
|
+
y.map((E) => /* @__PURE__ */ l.jsx("option", { value: E.value, disabled: E.disabled, children: E.label }, E.value))
|
|
2328
|
+
]
|
|
2329
|
+
}
|
|
2330
|
+
),
|
|
2331
|
+
B ? /* @__PURE__ */ l.jsx("div", { className: "luna-select__listbox", id: le, role: "listbox", "aria-labelledby": K, children: y.map((E, O) => {
|
|
2332
|
+
const me = E.value === P, N = O === ne;
|
|
2333
|
+
return /* @__PURE__ */ l.jsx(
|
|
2334
|
+
"div",
|
|
2335
|
+
{
|
|
2336
|
+
role: "option",
|
|
2337
|
+
"aria-selected": me,
|
|
2338
|
+
"aria-disabled": E.disabled ? !0 : void 0,
|
|
2339
|
+
className: Ke([
|
|
2340
|
+
"luna-select__option",
|
|
2341
|
+
me && "luna-select__option--selected",
|
|
2342
|
+
N && "luna-select__option--highlighted",
|
|
2343
|
+
E.disabled && "luna-select__option--disabled"
|
|
2344
|
+
]),
|
|
2345
|
+
onMouseDown: (v) => v.preventDefault(),
|
|
2346
|
+
onClick: () => he(E),
|
|
2347
|
+
children: E.label
|
|
2348
|
+
},
|
|
2349
|
+
E.value
|
|
2350
|
+
);
|
|
2351
|
+
}) }) : null
|
|
2352
|
+
] }),
|
|
2353
|
+
ae ? /* @__PURE__ */ l.jsx(
|
|
2354
|
+
W,
|
|
2355
|
+
{
|
|
2356
|
+
id: q,
|
|
2357
|
+
variant: "caption",
|
|
2358
|
+
className: "luna-select-field__message luna-select-field__message--error",
|
|
2359
|
+
children: i
|
|
2360
|
+
}
|
|
2361
|
+
) : p != null ? /* @__PURE__ */ l.jsx(
|
|
2362
|
+
W,
|
|
2363
|
+
{
|
|
2364
|
+
id: q,
|
|
2365
|
+
variant: "caption",
|
|
2366
|
+
className: "luna-select-field__message luna-select-field__message--help",
|
|
2367
|
+
children: p
|
|
2368
|
+
}
|
|
2369
|
+
) : null
|
|
2370
|
+
]
|
|
2371
|
+
}
|
|
2372
|
+
);
|
|
2373
|
+
});
|
|
2374
|
+
function Je(e) {
|
|
2375
|
+
return e.filter(Boolean).join(" ");
|
|
2376
|
+
}
|
|
2377
|
+
function qe(e, t) {
|
|
2378
|
+
return Array.isArray(e) ? e.map(String) : Array.isArray(t) ? t.map(String) : [];
|
|
2379
|
+
}
|
|
2380
|
+
function Qe(e) {
|
|
2381
|
+
return e.findIndex((t) => !t.disabled);
|
|
2382
|
+
}
|
|
2383
|
+
function hn(e, t, a) {
|
|
2384
|
+
var i;
|
|
2385
|
+
if (!e.length)
|
|
2386
|
+
return -1;
|
|
2387
|
+
let u = t;
|
|
2388
|
+
for (let r = 0; r < e.length; r += 1)
|
|
2389
|
+
if (u = (u + a + e.length) % e.length, !((i = e[u]) != null && i.disabled))
|
|
2390
|
+
return u;
|
|
2391
|
+
return -1;
|
|
2392
|
+
}
|
|
2393
|
+
function Ra(e, t, a) {
|
|
2394
|
+
var i;
|
|
2395
|
+
if (!t.length)
|
|
2396
|
+
return a ?? "";
|
|
2397
|
+
const u = ((i = e.find((r) => r.value === t[0])) == null ? void 0 : i.label) ?? t[0];
|
|
2398
|
+
return t.length === 1 ? u : `${u} (+${t.length - 1})`;
|
|
2399
|
+
}
|
|
2400
|
+
const Pa = d.forwardRef(
|
|
2401
|
+
function({
|
|
2402
|
+
autoFocus: t,
|
|
2403
|
+
className: a,
|
|
2404
|
+
defaultValue: u,
|
|
2405
|
+
disabled: i,
|
|
2406
|
+
error: r,
|
|
2407
|
+
externalLabel: _ = !1,
|
|
2408
|
+
fullWidth: p,
|
|
2409
|
+
helpText: f,
|
|
2410
|
+
id: h,
|
|
2411
|
+
inputSize: b,
|
|
2412
|
+
label: m,
|
|
2413
|
+
name: w,
|
|
2414
|
+
onBlur: o,
|
|
2415
|
+
onFocus: x,
|
|
2416
|
+
onChange: s,
|
|
2417
|
+
options: y,
|
|
2418
|
+
placeholder: I,
|
|
2419
|
+
required: k,
|
|
2420
|
+
style: J,
|
|
2421
|
+
value: z,
|
|
2422
|
+
...A
|
|
2423
|
+
}, F) {
|
|
2424
|
+
var N;
|
|
2425
|
+
const { theme: g } = Ee(), ee = d.useId(), K = h ?? `luna-multiselect-${ee.replace(/:/g, "")}`, U = `${K}-label`, le = `${K}-value`, q = `${K}-listbox`, Q = r || f ? `${K}-message` : void 0, ae = b ?? ((N = g.components.input) == null ? void 0 : N.defaultSize) ?? "md", ie = r != null, te = m != null && _, ge = m != null && !_, ce = typeof I == "string" && I.length > 0, oe = Array.isArray(z), [ve, P] = d.useState(
|
|
2426
|
+
() => qe(z, u)
|
|
2427
|
+
), $ = oe ? qe(z, u) : ve, [B, X] = d.useState(!1), [pe, Z] = d.useState(!1), [ne, de] = d.useState(null), [be, re] = d.useState(() => {
|
|
2428
|
+
const v = y.findIndex((R) => $.includes(R.value));
|
|
2429
|
+
return v >= 0 ? v : Qe(y);
|
|
2430
|
+
}), H = d.useRef(null), V = d.useRef(null), he = d.useRef(null), _e = Pe([g]);
|
|
2431
|
+
d.useImperativeHandle(F, () => V.current, []), d.useEffect(() => {
|
|
2432
|
+
if (oe) {
|
|
2433
|
+
const v = qe(z, u), R = y.findIndex((M) => v.includes(M.value));
|
|
2434
|
+
re(
|
|
2435
|
+
R >= 0 ? R : Qe(y)
|
|
2436
|
+
);
|
|
2437
|
+
}
|
|
2438
|
+
}, [u, oe, y, z]), d.useEffect(() => {
|
|
2439
|
+
if (!V.current)
|
|
2440
|
+
return;
|
|
2441
|
+
const v = new Set($);
|
|
2442
|
+
for (const R of V.current.options)
|
|
2443
|
+
R.selected = v.has(R.value);
|
|
2444
|
+
}, [$]), d.useEffect(() => {
|
|
2445
|
+
var v;
|
|
2446
|
+
t && ((v = H.current) == null || v.focus());
|
|
2447
|
+
}, [t]), d.useEffect(() => {
|
|
2448
|
+
var R;
|
|
2449
|
+
if (!B) {
|
|
2450
|
+
de(null);
|
|
2451
|
+
return;
|
|
2452
|
+
}
|
|
2453
|
+
de(((R = he.current) == null ? void 0 : R.offsetWidth) ?? null);
|
|
2454
|
+
function v(M) {
|
|
2455
|
+
var ze;
|
|
2456
|
+
const je = M.target;
|
|
2457
|
+
(ze = _e.current) != null && ze.contains(je) || X(!1);
|
|
2458
|
+
}
|
|
2459
|
+
return document.addEventListener("mousedown", v), () => {
|
|
2460
|
+
document.removeEventListener("mousedown", v);
|
|
2461
|
+
};
|
|
2462
|
+
}, [B, _e]);
|
|
2463
|
+
function fe(v) {
|
|
2464
|
+
oe || P(v), s == null || s(v);
|
|
2465
|
+
}
|
|
2466
|
+
function xe(v) {
|
|
2467
|
+
var je;
|
|
2468
|
+
if (v.disabled)
|
|
2469
|
+
return;
|
|
2470
|
+
const M = $.includes(v.value) ? $.filter((ze) => ze !== v.value) : [...$, v.value];
|
|
2471
|
+
fe(M), (je = H.current) == null || je.focus();
|
|
2472
|
+
}
|
|
2473
|
+
function Ie() {
|
|
2474
|
+
var v;
|
|
2475
|
+
fe([]), X(!1), (v = H.current) == null || v.focus();
|
|
2476
|
+
}
|
|
2477
|
+
function Se() {
|
|
2478
|
+
if (i)
|
|
2479
|
+
return;
|
|
2480
|
+
const v = y.findIndex((R) => $.includes(R.value));
|
|
2481
|
+
re(
|
|
2482
|
+
v >= 0 ? v : Qe(y)
|
|
2483
|
+
), X(!0);
|
|
2484
|
+
}
|
|
2485
|
+
function Fe() {
|
|
2486
|
+
if (B) {
|
|
2487
|
+
X(!1);
|
|
2488
|
+
return;
|
|
2489
|
+
}
|
|
2490
|
+
Se();
|
|
2491
|
+
}
|
|
2492
|
+
function $e(v) {
|
|
2493
|
+
var M;
|
|
2494
|
+
if (i)
|
|
2495
|
+
return;
|
|
2496
|
+
const R = v.target;
|
|
2497
|
+
R != null && R.closest(".luna-multiselect__listbox") || R != null && R.closest(".luna-multiselect__clear") || (v.preventDefault(), (M = H.current) == null || M.focus(), Fe());
|
|
2498
|
+
}
|
|
2499
|
+
function Ne(v) {
|
|
2500
|
+
if (!i)
|
|
2501
|
+
switch (v.key) {
|
|
2502
|
+
case "ArrowDown": {
|
|
2503
|
+
if (v.preventDefault(), !B) {
|
|
2504
|
+
Se();
|
|
2505
|
+
return;
|
|
2506
|
+
}
|
|
2507
|
+
re(
|
|
2508
|
+
(R) => hn(y, R < 0 ? -1 : R, 1)
|
|
2509
|
+
);
|
|
2510
|
+
break;
|
|
2511
|
+
}
|
|
2512
|
+
case "ArrowUp": {
|
|
2513
|
+
if (v.preventDefault(), !B) {
|
|
2514
|
+
Se();
|
|
2515
|
+
return;
|
|
2516
|
+
}
|
|
2517
|
+
re(
|
|
2518
|
+
(R) => hn(y, R < 0 ? y.length : R, -1)
|
|
2519
|
+
);
|
|
2520
|
+
break;
|
|
2521
|
+
}
|
|
2522
|
+
case "Enter":
|
|
2523
|
+
case " ": {
|
|
2524
|
+
if (v.preventDefault(), !B) {
|
|
2525
|
+
Se();
|
|
2526
|
+
return;
|
|
2527
|
+
}
|
|
2528
|
+
const R = y[be];
|
|
2529
|
+
R && xe(R);
|
|
2530
|
+
break;
|
|
2531
|
+
}
|
|
2532
|
+
case "Escape": {
|
|
2533
|
+
B && (v.preventDefault(), X(!1));
|
|
2534
|
+
break;
|
|
2535
|
+
}
|
|
2536
|
+
}
|
|
2537
|
+
}
|
|
2538
|
+
function Ce(v) {
|
|
2539
|
+
Z(!0), x == null || x(v);
|
|
2540
|
+
}
|
|
2541
|
+
function ke(v) {
|
|
2542
|
+
var M;
|
|
2543
|
+
const R = v.relatedTarget;
|
|
2544
|
+
(M = _e.current) != null && M.contains(R) || (Z(!1), X(!1), o == null || o(v));
|
|
2545
|
+
}
|
|
2546
|
+
const E = $.length > 0, O = ge && (pe || B || E || ce), me = Ra(y, $, I);
|
|
2547
|
+
return /* @__PURE__ */ l.jsxs(
|
|
2548
|
+
"div",
|
|
2549
|
+
{
|
|
2550
|
+
ref: _e,
|
|
2551
|
+
className: Je([
|
|
2552
|
+
"luna-multiselect-field",
|
|
2553
|
+
p && "luna-multiselect-field--full-width",
|
|
2554
|
+
ge && "luna-multiselect-field--inset-label",
|
|
2555
|
+
O && "luna-multiselect-field--inset-label-active",
|
|
2556
|
+
E && "luna-multiselect-field--has-selection",
|
|
2557
|
+
B && "luna-multiselect-field--open",
|
|
2558
|
+
i && "luna-multiselect-field--disabled",
|
|
2559
|
+
ie && "luna-multiselect-field--invalid",
|
|
2560
|
+
a
|
|
2561
|
+
]),
|
|
2562
|
+
"data-size": ae,
|
|
2563
|
+
style: {
|
|
2564
|
+
...J,
|
|
2565
|
+
...ne ? { width: `${ne}px` } : null
|
|
2566
|
+
},
|
|
2567
|
+
children: [
|
|
2568
|
+
te ? /* @__PURE__ */ l.jsx("div", { id: U, className: "luna-multiselect-field__label", children: /* @__PURE__ */ l.jsx(W, { as: "span", variant: "label", children: m }) }) : null,
|
|
2569
|
+
/* @__PURE__ */ l.jsxs(
|
|
2570
|
+
"div",
|
|
2571
|
+
{
|
|
2572
|
+
ref: he,
|
|
2573
|
+
className: "luna-multiselect-field__control",
|
|
2574
|
+
onMouseDown: $e,
|
|
2575
|
+
children: [
|
|
2576
|
+
ge ? /* @__PURE__ */ l.jsx(
|
|
2577
|
+
"div",
|
|
2578
|
+
{
|
|
2579
|
+
id: U,
|
|
2580
|
+
className: "luna-multiselect-field__label luna-multiselect-field__label--inset",
|
|
2581
|
+
children: /* @__PURE__ */ l.jsx(W, { as: "span", variant: "caption", children: m })
|
|
2582
|
+
}
|
|
2583
|
+
) : null,
|
|
2584
|
+
/* @__PURE__ */ l.jsx(
|
|
2585
|
+
"button",
|
|
2586
|
+
{
|
|
2587
|
+
...A,
|
|
2588
|
+
ref: H,
|
|
2589
|
+
id: K,
|
|
2590
|
+
type: "button",
|
|
2591
|
+
className: "luna-multiselect",
|
|
2592
|
+
disabled: i,
|
|
2593
|
+
"aria-invalid": ie ? !0 : A["aria-invalid"],
|
|
2594
|
+
"aria-describedby": Q ?? A["aria-describedby"],
|
|
2595
|
+
"aria-labelledby": m ? `${U} ${le}` : le,
|
|
2596
|
+
"aria-haspopup": "listbox",
|
|
2597
|
+
"aria-expanded": B,
|
|
2598
|
+
"aria-controls": B ? q : void 0,
|
|
2599
|
+
onKeyDown: Ne,
|
|
2600
|
+
onFocus: Ce,
|
|
2601
|
+
onBlur: ke,
|
|
2602
|
+
children: /* @__PURE__ */ l.jsx(
|
|
2603
|
+
"span",
|
|
2604
|
+
{
|
|
2605
|
+
id: le,
|
|
2606
|
+
className: Je([
|
|
2607
|
+
"luna-multiselect__value",
|
|
2608
|
+
!E && I && "luna-multiselect__value--placeholder"
|
|
2609
|
+
]),
|
|
2610
|
+
children: me
|
|
2611
|
+
}
|
|
2612
|
+
)
|
|
2613
|
+
}
|
|
2614
|
+
),
|
|
2615
|
+
E && !i ? /* @__PURE__ */ l.jsx(
|
|
2616
|
+
"button",
|
|
2617
|
+
{
|
|
2618
|
+
type: "button",
|
|
2619
|
+
className: "luna-multiselect__clear",
|
|
2620
|
+
"aria-label": "Clear selection",
|
|
2621
|
+
onMouseDown: (v) => v.preventDefault(),
|
|
2622
|
+
onClick: Ie
|
|
2623
|
+
}
|
|
2624
|
+
) : null,
|
|
2625
|
+
/* @__PURE__ */ l.jsx(
|
|
2626
|
+
"select",
|
|
2627
|
+
{
|
|
2628
|
+
ref: V,
|
|
2629
|
+
tabIndex: -1,
|
|
2630
|
+
"aria-hidden": "true",
|
|
2631
|
+
className: "luna-multiselect__native",
|
|
2632
|
+
name: w,
|
|
2633
|
+
required: k,
|
|
2634
|
+
disabled: i,
|
|
2635
|
+
multiple: !0,
|
|
2636
|
+
value: $,
|
|
2637
|
+
onChange: () => {
|
|
2638
|
+
},
|
|
2639
|
+
children: y.map((v) => /* @__PURE__ */ l.jsx("option", { value: v.value, disabled: v.disabled, children: v.label }, v.value))
|
|
2640
|
+
}
|
|
2641
|
+
),
|
|
2642
|
+
B ? /* @__PURE__ */ l.jsx(
|
|
2643
|
+
"div",
|
|
2644
|
+
{
|
|
2645
|
+
className: "luna-multiselect__listbox",
|
|
2646
|
+
id: q,
|
|
2647
|
+
role: "listbox",
|
|
2648
|
+
"aria-labelledby": U,
|
|
2649
|
+
"aria-multiselectable": "true",
|
|
2650
|
+
children: y.map((v, R) => {
|
|
2651
|
+
const M = $.includes(v.value), je = R === be;
|
|
2652
|
+
return /* @__PURE__ */ l.jsxs(
|
|
2653
|
+
"div",
|
|
2654
|
+
{
|
|
2655
|
+
role: "option",
|
|
2656
|
+
"aria-selected": M,
|
|
2657
|
+
"aria-disabled": v.disabled ? !0 : void 0,
|
|
2658
|
+
className: Je([
|
|
2659
|
+
"luna-multiselect__option",
|
|
2660
|
+
M && "luna-multiselect__option--selected",
|
|
2661
|
+
je && "luna-multiselect__option--highlighted",
|
|
2662
|
+
v.disabled && "luna-multiselect__option--disabled"
|
|
2663
|
+
]),
|
|
2664
|
+
onMouseDown: (ze) => ze.preventDefault(),
|
|
2665
|
+
onClick: () => xe(v),
|
|
2666
|
+
children: [
|
|
2667
|
+
/* @__PURE__ */ l.jsx("span", { className: "luna-multiselect__option-label", children: v.label }),
|
|
2668
|
+
/* @__PURE__ */ l.jsx("span", { className: "luna-multiselect__option-indicator", "aria-hidden": "true" })
|
|
2669
|
+
]
|
|
2670
|
+
},
|
|
2671
|
+
v.value
|
|
2672
|
+
);
|
|
2673
|
+
})
|
|
2674
|
+
}
|
|
2675
|
+
) : null
|
|
2676
|
+
]
|
|
2677
|
+
}
|
|
2678
|
+
),
|
|
2679
|
+
ie ? /* @__PURE__ */ l.jsx(
|
|
2680
|
+
W,
|
|
2681
|
+
{
|
|
2682
|
+
id: Q,
|
|
2683
|
+
variant: "caption",
|
|
2684
|
+
className: "luna-multiselect-field__message luna-multiselect-field__message--error",
|
|
2685
|
+
children: r
|
|
2686
|
+
}
|
|
2687
|
+
) : f != null ? /* @__PURE__ */ l.jsx(
|
|
2688
|
+
W,
|
|
2689
|
+
{
|
|
2690
|
+
id: Q,
|
|
2691
|
+
variant: "caption",
|
|
2692
|
+
className: "luna-multiselect-field__message luna-multiselect-field__message--help",
|
|
2693
|
+
children: f
|
|
2694
|
+
}
|
|
2695
|
+
) : null
|
|
2696
|
+
]
|
|
2697
|
+
}
|
|
2698
|
+
);
|
|
2699
|
+
}
|
|
2700
|
+
);
|
|
2701
|
+
function _n(e) {
|
|
2702
|
+
return e.filter(Boolean).join(" ");
|
|
2703
|
+
}
|
|
2704
|
+
function Ia(e, t) {
|
|
2705
|
+
return typeof e == "string" ? e : typeof t == "string" ? t : "";
|
|
2706
|
+
}
|
|
2707
|
+
function Ae(e, t) {
|
|
2708
|
+
return e.find((a) => a.value === t);
|
|
2709
|
+
}
|
|
2710
|
+
function Na(e, t) {
|
|
2711
|
+
const a = t.trim().toLowerCase();
|
|
2712
|
+
return a ? e.filter((u) => u.label.toLowerCase().includes(a)) : e;
|
|
2713
|
+
}
|
|
2714
|
+
function xn(e) {
|
|
2715
|
+
return e.findIndex((t) => !t.disabled);
|
|
2716
|
+
}
|
|
2717
|
+
function yn(e, t, a) {
|
|
2718
|
+
var i;
|
|
2719
|
+
if (!e.length)
|
|
2720
|
+
return -1;
|
|
2721
|
+
let u = t;
|
|
2722
|
+
for (let r = 0; r < e.length; r += 1)
|
|
2723
|
+
if (u = (u + a + e.length) % e.length, !((i = e[u]) != null && i.disabled))
|
|
2724
|
+
return u;
|
|
2725
|
+
return -1;
|
|
2726
|
+
}
|
|
2727
|
+
const Ha = d.forwardRef(
|
|
2728
|
+
function({
|
|
2729
|
+
autoFocus: t,
|
|
2730
|
+
className: a,
|
|
2731
|
+
defaultValue: u,
|
|
2732
|
+
disabled: i,
|
|
2733
|
+
error: r,
|
|
2734
|
+
externalLabel: _ = !1,
|
|
2735
|
+
fullWidth: p,
|
|
2736
|
+
helpText: f,
|
|
2737
|
+
id: h,
|
|
2738
|
+
inputSize: b,
|
|
2739
|
+
label: m,
|
|
2740
|
+
name: w,
|
|
2741
|
+
noResultsText: o = "No results",
|
|
2742
|
+
onBlur: x,
|
|
2743
|
+
onChange: s,
|
|
2744
|
+
onFocus: y,
|
|
2745
|
+
options: I,
|
|
2746
|
+
placeholder: k,
|
|
2747
|
+
required: J,
|
|
2748
|
+
style: z,
|
|
2749
|
+
value: A,
|
|
2750
|
+
...F
|
|
2751
|
+
}, g) {
|
|
2752
|
+
var me;
|
|
2753
|
+
const { theme: ee } = Ee(), K = d.useId(), U = h ?? `luna-autocomplete-${K.replace(/:/g, "")}`, le = `${U}-label`, q = `${U}-listbox`, Q = r || f ? `${U}-message` : void 0, ae = b ?? ((me = ee.components.input) == null ? void 0 : me.defaultSize) ?? "md", ie = r != null, te = m != null && _, ge = m != null && !_, ce = typeof k == "string" && k.length > 0, oe = typeof A == "string", [ve, P] = d.useState(
|
|
2754
|
+
Ia(A, u)
|
|
2755
|
+
), $ = oe ? String(A ?? "") : ve, B = Ae(I, $), [X, pe] = d.useState((B == null ? void 0 : B.label) ?? ""), [Z, ne] = d.useState(!1), [de, be] = d.useState(!1), re = Pe([ee]), H = d.useRef(null), V = d.useMemo(() => Na(I, X), [I, X]), [he, _e] = d.useState(
|
|
2756
|
+
() => xn(V)
|
|
2757
|
+
);
|
|
2758
|
+
d.useImperativeHandle(g, () => H.current, []), d.useEffect(() => {
|
|
2759
|
+
const N = Ae(I, $);
|
|
2760
|
+
pe((N == null ? void 0 : N.label) ?? "");
|
|
2761
|
+
}, [I, $]), d.useEffect(() => {
|
|
2762
|
+
var N;
|
|
2763
|
+
t && ((N = H.current) == null || N.focus());
|
|
2764
|
+
}, [t]), d.useEffect(() => {
|
|
2765
|
+
const N = V.findIndex(
|
|
2766
|
+
(v) => v.value === $ && !v.disabled
|
|
2767
|
+
);
|
|
2768
|
+
_e(
|
|
2769
|
+
N >= 0 ? N : xn(V)
|
|
2770
|
+
);
|
|
2771
|
+
}, [V, $]), d.useEffect(() => {
|
|
2772
|
+
if (!Z)
|
|
2773
|
+
return;
|
|
2774
|
+
function N(v) {
|
|
2775
|
+
var M;
|
|
2776
|
+
const R = v.target;
|
|
2777
|
+
if (!((M = re.current) != null && M.contains(R))) {
|
|
2778
|
+
ne(!1);
|
|
2779
|
+
const je = Ae(I, $);
|
|
2780
|
+
pe((je == null ? void 0 : je.label) ?? "");
|
|
2781
|
+
}
|
|
2782
|
+
}
|
|
2783
|
+
return document.addEventListener("mousedown", N), () => {
|
|
2784
|
+
document.removeEventListener("mousedown", N);
|
|
2785
|
+
};
|
|
2786
|
+
}, [Z, I, re, $]);
|
|
2787
|
+
function fe(N) {
|
|
2788
|
+
oe || P(N), s == null || s(N);
|
|
2789
|
+
}
|
|
2790
|
+
function xe(N) {
|
|
2791
|
+
N.disabled || (fe(N.value), pe(N.label), ne(!1));
|
|
2792
|
+
}
|
|
2793
|
+
function Ie() {
|
|
2794
|
+
var N;
|
|
2795
|
+
fe(""), pe(""), ne(!1), (N = H.current) == null || N.focus();
|
|
2796
|
+
}
|
|
2797
|
+
function Se(N) {
|
|
2798
|
+
be(!0), ne(!0), y == null || y(N);
|
|
2799
|
+
}
|
|
2800
|
+
function Fe(N) {
|
|
2801
|
+
var R;
|
|
2802
|
+
const v = N.relatedTarget;
|
|
2803
|
+
if (!((R = re.current) != null && R.contains(v))) {
|
|
2804
|
+
be(!1), ne(!1);
|
|
2805
|
+
const M = Ae(I, $);
|
|
2806
|
+
pe((M == null ? void 0 : M.label) ?? ""), x == null || x(N);
|
|
2807
|
+
}
|
|
2808
|
+
}
|
|
2809
|
+
function $e(N) {
|
|
2810
|
+
const v = N.currentTarget.value;
|
|
2811
|
+
pe(v), ne(!0), $ && fe("");
|
|
2812
|
+
}
|
|
2813
|
+
function Ne(N) {
|
|
2814
|
+
var v;
|
|
2815
|
+
if (!i) {
|
|
2816
|
+
switch (N.key) {
|
|
2817
|
+
case "ArrowDown": {
|
|
2818
|
+
if (N.preventDefault(), !Z) {
|
|
2819
|
+
ne(!0);
|
|
2820
|
+
return;
|
|
2821
|
+
}
|
|
2822
|
+
_e(
|
|
2823
|
+
(R) => yn(V, R < 0 ? -1 : R, 1)
|
|
2824
|
+
);
|
|
2825
|
+
break;
|
|
2826
|
+
}
|
|
2827
|
+
case "ArrowUp": {
|
|
2828
|
+
if (N.preventDefault(), !Z) {
|
|
2829
|
+
ne(!0);
|
|
2830
|
+
return;
|
|
2831
|
+
}
|
|
2832
|
+
_e(
|
|
2833
|
+
(R) => yn(
|
|
2834
|
+
V,
|
|
2835
|
+
R < 0 ? V.length : R,
|
|
2836
|
+
-1
|
|
2837
|
+
)
|
|
2838
|
+
);
|
|
2839
|
+
break;
|
|
2840
|
+
}
|
|
2841
|
+
case "Enter": {
|
|
2842
|
+
if (!Z)
|
|
2843
|
+
break;
|
|
2844
|
+
N.preventDefault();
|
|
2845
|
+
const R = V[he];
|
|
2846
|
+
R && xe(R);
|
|
2847
|
+
break;
|
|
2848
|
+
}
|
|
2849
|
+
case "Escape": {
|
|
2850
|
+
if (Z) {
|
|
2851
|
+
N.preventDefault(), ne(!1);
|
|
2852
|
+
const R = Ae(I, $);
|
|
2853
|
+
pe((R == null ? void 0 : R.label) ?? "");
|
|
2854
|
+
}
|
|
2855
|
+
break;
|
|
2856
|
+
}
|
|
2857
|
+
}
|
|
2858
|
+
(v = F.onKeyDown) == null || v.call(F, N);
|
|
2859
|
+
}
|
|
2860
|
+
}
|
|
2861
|
+
function Ce(N) {
|
|
2862
|
+
var R;
|
|
2863
|
+
if (i)
|
|
2864
|
+
return;
|
|
2865
|
+
const v = N.target;
|
|
2866
|
+
v != null && v.closest(".luna-autocomplete__listbox") || v != null && v.closest(".luna-autocomplete__clear") || (N.preventDefault(), (R = H.current) == null || R.focus(), ne(!0));
|
|
2867
|
+
}
|
|
2868
|
+
const ke = X.length > 0, E = ge && (de || Z || ke || ce), O = Z && he >= 0 ? `${U}-option-${he}` : void 0;
|
|
2869
|
+
return /* @__PURE__ */ l.jsxs(
|
|
2870
|
+
"div",
|
|
2871
|
+
{
|
|
2872
|
+
ref: re,
|
|
2873
|
+
className: _n([
|
|
2874
|
+
"luna-autocomplete-field",
|
|
2875
|
+
p && "luna-autocomplete-field--full-width",
|
|
2876
|
+
ge && "luna-autocomplete-field--inset-label",
|
|
2877
|
+
E && "luna-autocomplete-field--inset-label-active",
|
|
2878
|
+
$ && "luna-autocomplete-field--has-selection",
|
|
2879
|
+
X && "luna-autocomplete-field--has-query",
|
|
2880
|
+
Z && "luna-autocomplete-field--open",
|
|
2881
|
+
i && "luna-autocomplete-field--disabled",
|
|
2882
|
+
ie && "luna-autocomplete-field--invalid",
|
|
2883
|
+
a
|
|
2884
|
+
]),
|
|
2885
|
+
"data-size": ae,
|
|
2886
|
+
style: z,
|
|
2887
|
+
children: [
|
|
2888
|
+
te ? /* @__PURE__ */ l.jsx("label", { htmlFor: U, className: "luna-autocomplete-field__label", children: /* @__PURE__ */ l.jsx(W, { as: "span", variant: "label", children: m }) }) : null,
|
|
2889
|
+
/* @__PURE__ */ l.jsxs("div", { className: "luna-autocomplete-field__control", onMouseDown: Ce, children: [
|
|
2890
|
+
ge ? /* @__PURE__ */ l.jsx(
|
|
2891
|
+
"label",
|
|
2892
|
+
{
|
|
2893
|
+
htmlFor: U,
|
|
2894
|
+
id: le,
|
|
2895
|
+
className: "luna-autocomplete-field__label luna-autocomplete-field__label--inset",
|
|
2896
|
+
children: /* @__PURE__ */ l.jsx(W, { as: "span", variant: "caption", children: m })
|
|
2897
|
+
}
|
|
2898
|
+
) : null,
|
|
2899
|
+
/* @__PURE__ */ l.jsx(
|
|
2900
|
+
"input",
|
|
2901
|
+
{
|
|
2902
|
+
...F,
|
|
2903
|
+
ref: H,
|
|
2904
|
+
id: U,
|
|
2905
|
+
className: "luna-autocomplete",
|
|
2906
|
+
type: "text",
|
|
2907
|
+
value: X,
|
|
2908
|
+
placeholder: k,
|
|
2909
|
+
disabled: i,
|
|
2910
|
+
onChange: $e,
|
|
2911
|
+
onFocus: Se,
|
|
2912
|
+
onBlur: Fe,
|
|
2913
|
+
onKeyDown: Ne,
|
|
2914
|
+
"aria-invalid": ie ? !0 : F["aria-invalid"],
|
|
2915
|
+
"aria-describedby": Q ?? F["aria-describedby"],
|
|
2916
|
+
"aria-labelledby": m ? le : void 0,
|
|
2917
|
+
"aria-controls": Z ? q : void 0,
|
|
2918
|
+
"aria-expanded": Z,
|
|
2919
|
+
"aria-autocomplete": "list",
|
|
2920
|
+
"aria-activedescendant": O,
|
|
2921
|
+
role: "combobox"
|
|
2922
|
+
}
|
|
2923
|
+
),
|
|
2924
|
+
($ || X) && !i ? /* @__PURE__ */ l.jsx(
|
|
2925
|
+
"button",
|
|
2926
|
+
{
|
|
2927
|
+
type: "button",
|
|
2928
|
+
className: "luna-autocomplete__clear",
|
|
2929
|
+
"aria-label": "Clear value",
|
|
2930
|
+
onMouseDown: (N) => N.preventDefault(),
|
|
2931
|
+
onClick: Ie
|
|
2932
|
+
}
|
|
2933
|
+
) : null,
|
|
2934
|
+
/* @__PURE__ */ l.jsx(
|
|
2935
|
+
"input",
|
|
2936
|
+
{
|
|
2937
|
+
type: "hidden",
|
|
2938
|
+
className: "luna-autocomplete__hidden",
|
|
2939
|
+
name: w,
|
|
2940
|
+
value: $,
|
|
2941
|
+
required: J,
|
|
2942
|
+
readOnly: !0
|
|
2943
|
+
}
|
|
2944
|
+
),
|
|
2945
|
+
Z ? /* @__PURE__ */ l.jsx("div", { className: "luna-autocomplete__listbox", id: q, role: "listbox", children: V.length ? V.map((N, v) => {
|
|
2946
|
+
const R = N.value === $, M = v === he;
|
|
2947
|
+
return /* @__PURE__ */ l.jsx(
|
|
2948
|
+
"div",
|
|
2949
|
+
{
|
|
2950
|
+
id: `${U}-option-${v}`,
|
|
2951
|
+
role: "option",
|
|
2952
|
+
"aria-selected": R,
|
|
2953
|
+
"aria-disabled": N.disabled ? !0 : void 0,
|
|
2954
|
+
className: _n([
|
|
2955
|
+
"luna-autocomplete__option",
|
|
2956
|
+
R && "luna-autocomplete__option--selected",
|
|
2957
|
+
M && "luna-autocomplete__option--highlighted",
|
|
2958
|
+
N.disabled && "luna-autocomplete__option--disabled"
|
|
2959
|
+
]),
|
|
2960
|
+
onMouseDown: (je) => je.preventDefault(),
|
|
2961
|
+
onClick: () => xe(N),
|
|
2962
|
+
children: N.label
|
|
2963
|
+
},
|
|
2964
|
+
N.value
|
|
2965
|
+
);
|
|
2966
|
+
}) : /* @__PURE__ */ l.jsx("div", { className: "luna-autocomplete__empty", children: o }) }) : null
|
|
2967
|
+
] }),
|
|
2968
|
+
ie ? /* @__PURE__ */ l.jsx(
|
|
2969
|
+
W,
|
|
2970
|
+
{
|
|
2971
|
+
id: Q,
|
|
2972
|
+
variant: "caption",
|
|
2973
|
+
className: "luna-autocomplete-field__message luna-autocomplete-field__message--error",
|
|
2974
|
+
children: r
|
|
2975
|
+
}
|
|
2976
|
+
) : f != null ? /* @__PURE__ */ l.jsx(
|
|
2977
|
+
W,
|
|
2978
|
+
{
|
|
2979
|
+
id: Q,
|
|
2980
|
+
variant: "caption",
|
|
2981
|
+
className: "luna-autocomplete-field__message luna-autocomplete-field__message--help",
|
|
2982
|
+
children: f
|
|
2983
|
+
}
|
|
2984
|
+
) : null
|
|
2985
|
+
]
|
|
2986
|
+
}
|
|
2987
|
+
);
|
|
2988
|
+
}
|
|
2989
|
+
), Wa = d.forwardRef(function({ as: t, children: a, className: u, colSpan: i, columns: r = 12, gap: _, inline: p, style: f, ...h }, b) {
|
|
2990
|
+
const { theme: m } = Ee(), w = t ?? "div", o = {
|
|
2991
|
+
...He(i),
|
|
2992
|
+
"--luna-grid-columns": String(r),
|
|
2993
|
+
..._ ? { "--luna-layout-gap": en(_, m) } : {},
|
|
2994
|
+
...f
|
|
2995
|
+
};
|
|
2996
|
+
return /* @__PURE__ */ l.jsx(
|
|
2997
|
+
w,
|
|
2998
|
+
{
|
|
2999
|
+
...h,
|
|
3000
|
+
ref: b,
|
|
3001
|
+
className: Me(["luna-grid", p && "luna-grid--inline", u]),
|
|
3002
|
+
style: o,
|
|
3003
|
+
children: nn(a, "luna-grid__item")
|
|
3004
|
+
}
|
|
3005
|
+
);
|
|
3006
|
+
});
|
|
1080
3007
|
export {
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
3008
|
+
Ha as LunaAutocomplete,
|
|
3009
|
+
ka as LunaButton,
|
|
3010
|
+
za as LunaCard,
|
|
3011
|
+
$a as LunaCheckbox,
|
|
3012
|
+
mn as LunaColumn,
|
|
3013
|
+
Oa as LunaDivider,
|
|
3014
|
+
Wa as LunaGrid,
|
|
3015
|
+
Ta as LunaHeader,
|
|
3016
|
+
La as LunaInput,
|
|
3017
|
+
Pa as LunaMultiselect,
|
|
3018
|
+
Ba as LunaRadio,
|
|
3019
|
+
sa as LunaRow,
|
|
3020
|
+
Aa as LunaSelect,
|
|
3021
|
+
W as LunaText,
|
|
3022
|
+
Da as LunaTextarea,
|
|
3023
|
+
Ca as ThemeProvider,
|
|
3024
|
+
Gn as isRawColor,
|
|
3025
|
+
Wn as lunarTheme,
|
|
3026
|
+
Jn as resolveModeTokens,
|
|
3027
|
+
D as resolveScaleValue,
|
|
3028
|
+
j as resolveTokenValue,
|
|
3029
|
+
Ee as useTheme
|
|
1089
3030
|
};
|