@pathscale/ui 0.0.53 → 0.0.54
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/index.js +515 -108
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3,6 +3,20 @@ import * as __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__ from "solid-js";
|
|
|
3
3
|
import * as __WEBPACK_EXTERNAL_MODULE__felte_solid_6a709b1d__ from "@felte/solid";
|
|
4
4
|
import * as __WEBPACK_EXTERNAL_MODULE__felte_validator_zod_bb07151a__ from "@felte/validator-zod";
|
|
5
5
|
import * as __WEBPACK_EXTERNAL_MODULE__tanstack_solid_table_1239d047__ from "@tanstack/solid-table";
|
|
6
|
+
function clsx_r(e) {
|
|
7
|
+
var t, f, n = "";
|
|
8
|
+
if ("string" == typeof e || "number" == typeof e) n += e;
|
|
9
|
+
else if ("object" == typeof e) if (Array.isArray(e)) {
|
|
10
|
+
var o = e.length;
|
|
11
|
+
for(t = 0; t < o; t++)e[t] && (f = clsx_r(e[t])) && (n && (n += " "), n += f);
|
|
12
|
+
} else for(f in e)e[f] && (n && (n += " "), n += f);
|
|
13
|
+
return n;
|
|
14
|
+
}
|
|
15
|
+
function clsx() {
|
|
16
|
+
for(var e, t, f = 0, n = "", o = arguments.length; f < o; f++)(e = arguments[f]) && (t = clsx_r(e)) && (n && (n += " "), n += t);
|
|
17
|
+
return n;
|
|
18
|
+
}
|
|
19
|
+
const dist_clsx = clsx;
|
|
6
20
|
const CLASS_PART_SEPARATOR = '-';
|
|
7
21
|
const createClassGroupUtils = (config)=>{
|
|
8
22
|
const classMap = createClassMap(config);
|
|
@@ -3402,20 +3416,6 @@ const getDefaultConfig = ()=>{
|
|
|
3402
3416
|
};
|
|
3403
3417
|
};
|
|
3404
3418
|
const twMerge = /*#__PURE__*/ createTailwindMerge(getDefaultConfig);
|
|
3405
|
-
function clsx_r(e) {
|
|
3406
|
-
var t, f, n = "";
|
|
3407
|
-
if ("string" == typeof e || "number" == typeof e) n += e;
|
|
3408
|
-
else if ("object" == typeof e) if (Array.isArray(e)) {
|
|
3409
|
-
var o = e.length;
|
|
3410
|
-
for(t = 0; t < o; t++)e[t] && (f = clsx_r(e[t])) && (n && (n += " "), n += f);
|
|
3411
|
-
} else for(f in e)e[f] && (n && (n += " "), n += f);
|
|
3412
|
-
return n;
|
|
3413
|
-
}
|
|
3414
|
-
function clsx() {
|
|
3415
|
-
for(var e, t, f = 0, n = "", o = arguments.length; f < o; f++)(e = arguments[f]) && (t = clsx_r(e)) && (n && (n += " "), n += t);
|
|
3416
|
-
return n;
|
|
3417
|
-
}
|
|
3418
|
-
const dist_clsx = clsx;
|
|
3419
3419
|
var _tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>"), _tmpl$2 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<summary>");
|
|
3420
3420
|
const classesFn = ({ className })=>twMerge("collapse-title", className);
|
|
3421
3421
|
function CollapseTitle(props) {
|
|
@@ -3455,11 +3455,13 @@ function CollapseContent(props) {
|
|
|
3455
3455
|
return _el$;
|
|
3456
3456
|
})();
|
|
3457
3457
|
}
|
|
3458
|
-
var Accordion_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>"), Accordion_tmpl$2 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<input>")
|
|
3458
|
+
var Accordion_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div role=region>"), Accordion_tmpl$2 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<input>");
|
|
3459
|
+
const accordionGroups = new Map();
|
|
3459
3460
|
const Accordion = (props)=>{
|
|
3460
3461
|
const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
3461
3462
|
"name",
|
|
3462
3463
|
"icon",
|
|
3464
|
+
"checked",
|
|
3463
3465
|
"dataTheme",
|
|
3464
3466
|
"class",
|
|
3465
3467
|
"className",
|
|
@@ -3467,14 +3469,50 @@ const Accordion = (props)=>{
|
|
|
3467
3469
|
"mode",
|
|
3468
3470
|
"expanded",
|
|
3469
3471
|
"onToggle",
|
|
3470
|
-
"children"
|
|
3472
|
+
"children",
|
|
3473
|
+
"aria-label",
|
|
3474
|
+
"aria-describedby",
|
|
3475
|
+
"aria-labelledby"
|
|
3471
3476
|
]);
|
|
3472
|
-
const
|
|
3473
|
-
const
|
|
3474
|
-
const
|
|
3477
|
+
const uniqueId = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createUniqueId)();
|
|
3478
|
+
const contentId = `accordion-content-${uniqueId}`;
|
|
3479
|
+
const titleId = `accordion-title-${uniqueId}`;
|
|
3480
|
+
const isControlled = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>"controlled" === local.mode);
|
|
3481
|
+
const [isExpanded, setIsExpanded] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createSignal)(local.checked || local.expanded || false);
|
|
3482
|
+
const expanded = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>{
|
|
3483
|
+
if (isControlled()) return local.expanded ?? false;
|
|
3484
|
+
return isExpanded();
|
|
3485
|
+
});
|
|
3486
|
+
const groupName = ()=>local.name ?? "accordion";
|
|
3487
|
+
const isRadioMode = ()=>"checkbox" !== local.mode && "controlled" !== local.mode;
|
|
3488
|
+
const closeAccordion = ()=>{
|
|
3489
|
+
if (!isControlled()) setIsExpanded(false);
|
|
3490
|
+
};
|
|
3491
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createEffect)(()=>{
|
|
3492
|
+
if (isRadioMode()) {
|
|
3493
|
+
const name = groupName();
|
|
3494
|
+
if (!accordionGroups.has(name)) accordionGroups.set(name, new Set());
|
|
3495
|
+
const group = accordionGroups.get(name);
|
|
3496
|
+
group.add(closeAccordion);
|
|
3497
|
+
return ()=>{
|
|
3498
|
+
group.delete(closeAccordion);
|
|
3499
|
+
if (0 === group.size) accordionGroups.delete(name);
|
|
3500
|
+
};
|
|
3501
|
+
}
|
|
3502
|
+
});
|
|
3475
3503
|
const handleToggle = ()=>{
|
|
3476
|
-
|
|
3477
|
-
if (
|
|
3504
|
+
const wasExpanded = expanded();
|
|
3505
|
+
if (!isControlled()) {
|
|
3506
|
+
if (isRadioMode() && !wasExpanded) {
|
|
3507
|
+
const group = accordionGroups.get(groupName());
|
|
3508
|
+
if (group) group.forEach((closeFunc)=>{
|
|
3509
|
+
if (closeFunc !== closeAccordion) closeFunc();
|
|
3510
|
+
});
|
|
3511
|
+
setIsExpanded(true);
|
|
3512
|
+
} else if ("checkbox" === local.mode) setIsExpanded(!wasExpanded);
|
|
3513
|
+
else if (isRadioMode() && wasExpanded) setIsExpanded(false);
|
|
3514
|
+
}
|
|
3515
|
+
local.onToggle?.();
|
|
3478
3516
|
};
|
|
3479
3517
|
const classes = ()=>twMerge("collapse", clsx({
|
|
3480
3518
|
"collapse-arrow": "arrow" === local.icon,
|
|
@@ -3482,6 +3520,44 @@ const Accordion = (props)=>{
|
|
|
3482
3520
|
"collapse-open": expanded(),
|
|
3483
3521
|
"collapse-close": !expanded()
|
|
3484
3522
|
}), local.class, local.className);
|
|
3523
|
+
const resolvedChildren = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.children)(()=>local.children);
|
|
3524
|
+
const childrenWithAria = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>{
|
|
3525
|
+
const children = resolvedChildren();
|
|
3526
|
+
const arr = Array.isArray(children) ? children : [
|
|
3527
|
+
children
|
|
3528
|
+
];
|
|
3529
|
+
return arr.map((child)=>{
|
|
3530
|
+
if (null == child || "object" != typeof child || !("props" in child)) return child;
|
|
3531
|
+
if (child.props && "object" == typeof child.props && "class" in child.props && "string" == typeof child.props.class && child.props.class.includes("collapse-title")) return {
|
|
3532
|
+
...child,
|
|
3533
|
+
props: {
|
|
3534
|
+
...child.props,
|
|
3535
|
+
id: titleId,
|
|
3536
|
+
role: "button",
|
|
3537
|
+
tabIndex: 0,
|
|
3538
|
+
"aria-expanded": expanded(),
|
|
3539
|
+
"aria-controls": contentId,
|
|
3540
|
+
onClick: handleToggle,
|
|
3541
|
+
onKeyDown: (e)=>{
|
|
3542
|
+
if ("Enter" === e.key || " " === e.key) {
|
|
3543
|
+
e.preventDefault();
|
|
3544
|
+
handleToggle();
|
|
3545
|
+
}
|
|
3546
|
+
const origOnKeyDown = child.props && child.props.onKeyDown;
|
|
3547
|
+
if ("function" == typeof origOnKeyDown) origOnKeyDown(e);
|
|
3548
|
+
}
|
|
3549
|
+
}
|
|
3550
|
+
};
|
|
3551
|
+
if (child.props && "object" == typeof child.props && "class" in child.props && "string" == typeof child.props.class && child.props.class.includes("collapse-content")) return {
|
|
3552
|
+
...child,
|
|
3553
|
+
props: {
|
|
3554
|
+
...child.props,
|
|
3555
|
+
id: contentId
|
|
3556
|
+
}
|
|
3557
|
+
};
|
|
3558
|
+
return child;
|
|
3559
|
+
});
|
|
3560
|
+
});
|
|
3485
3561
|
return (()=>{
|
|
3486
3562
|
var _el$ = Accordion_tmpl$();
|
|
3487
3563
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, (()=>{
|
|
@@ -3489,49 +3565,53 @@ const Accordion = (props)=>{
|
|
|
3489
3565
|
return ()=>_c$() && (()=>{
|
|
3490
3566
|
var _el$2 = Accordion_tmpl$2();
|
|
3491
3567
|
_el$2.addEventListener("change", handleToggle);
|
|
3568
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.setAttribute)(_el$2, "aria-controls", contentId);
|
|
3492
3569
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$2, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)({
|
|
3493
3570
|
get type () {
|
|
3494
3571
|
return "checkbox" === local.mode ? "checkbox" : "radio";
|
|
3495
3572
|
},
|
|
3496
3573
|
get name () {
|
|
3497
|
-
return
|
|
3574
|
+
return groupName();
|
|
3498
3575
|
},
|
|
3499
3576
|
get checked () {
|
|
3500
3577
|
return expanded();
|
|
3578
|
+
},
|
|
3579
|
+
get ["aria-expanded"] () {
|
|
3580
|
+
return expanded();
|
|
3581
|
+
},
|
|
3582
|
+
get ["aria-checked"] () {
|
|
3583
|
+
return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.memo)(()=>!!("checkbox" === local.mode || "radio" === local.mode))() ? expanded() : void 0;
|
|
3501
3584
|
}
|
|
3502
3585
|
}, others), false, false);
|
|
3503
3586
|
return _el$2;
|
|
3504
3587
|
})();
|
|
3505
3588
|
})(), null);
|
|
3506
|
-
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$,
|
|
3507
|
-
var _c$2 = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.memo)(()=>"controlled" === local.mode);
|
|
3508
|
-
return ()=>_c$2() && (()=>{
|
|
3509
|
-
var _el$3 = _tmpl$3();
|
|
3510
|
-
_el$3.$$click = handleToggle;
|
|
3511
|
-
return _el$3;
|
|
3512
|
-
})();
|
|
3513
|
-
})(), null);
|
|
3514
|
-
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, ()=>local.children, null);
|
|
3589
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, childrenWithAria, null);
|
|
3515
3590
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.effect)((_p$)=>{
|
|
3516
|
-
var _v$ = classes(), _v$2 = local.dataTheme, _v$3 = local.style;
|
|
3591
|
+
var _v$ = classes(), _v$2 = local.dataTheme, _v$3 = local.style, _v$4 = local["aria-label"], _v$5 = local["aria-describedby"], _v$6 = local["aria-labelledby"] || titleId;
|
|
3517
3592
|
_v$ !== _p$.e && (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.className)(_el$, _p$.e = _v$);
|
|
3518
3593
|
_v$2 !== _p$.t && (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.setAttribute)(_el$, "data-theme", _p$.t = _v$2);
|
|
3519
3594
|
_p$.a = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.style)(_el$, _v$3, _p$.a);
|
|
3595
|
+
_v$4 !== _p$.o && (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.setAttribute)(_el$, "aria-label", _p$.o = _v$4);
|
|
3596
|
+
_v$5 !== _p$.i && (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.setAttribute)(_el$, "aria-describedby", _p$.i = _v$5);
|
|
3597
|
+
_v$6 !== _p$.n && (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.setAttribute)(_el$, "aria-labelledby", _p$.n = _v$6);
|
|
3520
3598
|
return _p$;
|
|
3521
3599
|
}, {
|
|
3522
3600
|
e: void 0,
|
|
3523
3601
|
t: void 0,
|
|
3524
|
-
a: void 0
|
|
3602
|
+
a: void 0,
|
|
3603
|
+
o: void 0,
|
|
3604
|
+
i: void 0,
|
|
3605
|
+
n: void 0
|
|
3525
3606
|
});
|
|
3526
3607
|
return _el$;
|
|
3527
3608
|
})();
|
|
3528
3609
|
};
|
|
3529
|
-
|
|
3530
|
-
|
|
3610
|
+
const AccordionTitle = CollapseTitle;
|
|
3611
|
+
const AccordionContent = CollapseContent;
|
|
3612
|
+
Accordion.Title = AccordionTitle;
|
|
3613
|
+
Accordion.Content = AccordionContent;
|
|
3531
3614
|
const accordion_Accordion = Accordion;
|
|
3532
|
-
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.delegateEvents)([
|
|
3533
|
-
"click"
|
|
3534
|
-
]);
|
|
3535
3615
|
var Alert_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div role=alert>");
|
|
3536
3616
|
const Alert = (props)=>{
|
|
3537
3617
|
const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
@@ -3542,9 +3622,14 @@ const Alert = (props)=>{
|
|
|
3542
3622
|
"dataTheme",
|
|
3543
3623
|
"class",
|
|
3544
3624
|
"className",
|
|
3545
|
-
"style"
|
|
3625
|
+
"style",
|
|
3626
|
+
"aria-atomic",
|
|
3627
|
+
"aria-live",
|
|
3628
|
+
"aria-relevant",
|
|
3629
|
+
"aria-label",
|
|
3630
|
+
"aria-labelledby"
|
|
3546
3631
|
]);
|
|
3547
|
-
const classes = ()=>twMerge("alert", local.class, local.className, clsx({
|
|
3632
|
+
const classes = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>twMerge("alert", local.class, local.className, clsx({
|
|
3548
3633
|
"alert-vertical": "vertical" === local.layout,
|
|
3549
3634
|
"alert-horizontal": "horizontal" === local.layout,
|
|
3550
3635
|
"alert-info": "info" === local.status,
|
|
@@ -3554,7 +3639,12 @@ const Alert = (props)=>{
|
|
|
3554
3639
|
"alert-soft": "soft" === local.variant,
|
|
3555
3640
|
"alert-dash": "dash" === local.variant,
|
|
3556
3641
|
"alert-outline": "outline" === local.variant
|
|
3557
|
-
}));
|
|
3642
|
+
})));
|
|
3643
|
+
const ariaAtomic = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>void 0 === local["aria-atomic"] ? true : local["aria-atomic"]);
|
|
3644
|
+
const ariaLive = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>local["aria-live"] || "assertive");
|
|
3645
|
+
const ariaRelevant = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>local["aria-relevant"]);
|
|
3646
|
+
const ariaLabel = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>local["aria-label"]);
|
|
3647
|
+
const ariaLabelledby = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>local["aria-labelledby"]);
|
|
3558
3648
|
return (()=>{
|
|
3559
3649
|
var _el$ = Alert_tmpl$();
|
|
3560
3650
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(others, {
|
|
@@ -3566,6 +3656,21 @@ const Alert = (props)=>{
|
|
|
3566
3656
|
},
|
|
3567
3657
|
get style () {
|
|
3568
3658
|
return local.style;
|
|
3659
|
+
},
|
|
3660
|
+
get ["aria-atomic"] () {
|
|
3661
|
+
return ariaAtomic();
|
|
3662
|
+
},
|
|
3663
|
+
get ["aria-live"] () {
|
|
3664
|
+
return ariaLive();
|
|
3665
|
+
},
|
|
3666
|
+
get ["aria-relevant"] () {
|
|
3667
|
+
return ariaRelevant();
|
|
3668
|
+
},
|
|
3669
|
+
get ["aria-label"] () {
|
|
3670
|
+
return ariaLabel();
|
|
3671
|
+
},
|
|
3672
|
+
get ["aria-labelledby"] () {
|
|
3673
|
+
return ariaLabelledby();
|
|
3569
3674
|
}
|
|
3570
3675
|
}), false, true);
|
|
3571
3676
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, ()=>local.icon, null);
|
|
@@ -3659,7 +3764,7 @@ const AvatarGroup_AvatarGroup = (props)=>{
|
|
|
3659
3764
|
}));
|
|
3660
3765
|
};
|
|
3661
3766
|
const AvatarGroup = AvatarGroup_AvatarGroup;
|
|
3662
|
-
var Avatar_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div><img>"), Avatar_tmpl$2 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div><span>"),
|
|
3767
|
+
var Avatar_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div><img>"), Avatar_tmpl$2 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div><span>"), _tmpl$3 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>");
|
|
3663
3768
|
const Avatar_VoidElementList = [
|
|
3664
3769
|
"area",
|
|
3665
3770
|
"base",
|
|
@@ -3762,7 +3867,7 @@ const Avatar_Avatar = (props)=>{
|
|
|
3762
3867
|
});
|
|
3763
3868
|
return _el$3;
|
|
3764
3869
|
})() : (()=>{
|
|
3765
|
-
var _el$5 =
|
|
3870
|
+
var _el$5 = _tmpl$3();
|
|
3766
3871
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$5, ()=>local.children);
|
|
3767
3872
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.effect)((_p$)=>{
|
|
3768
3873
|
var _v$6 = imgClasses(), _v$7 = customSizeStyle;
|
|
@@ -3833,7 +3938,11 @@ const Badge_Badge = (props)=>{
|
|
|
3833
3938
|
"dataTheme",
|
|
3834
3939
|
"class",
|
|
3835
3940
|
"className",
|
|
3836
|
-
"style"
|
|
3941
|
+
"style",
|
|
3942
|
+
"aria-label",
|
|
3943
|
+
"aria-describedby",
|
|
3944
|
+
"aria-labelledby",
|
|
3945
|
+
"role"
|
|
3837
3946
|
]);
|
|
3838
3947
|
const classes = ()=>twMerge("badge", local.class, local.className, clsx({
|
|
3839
3948
|
"badge-xl": "xl" === local.size,
|
|
@@ -3867,7 +3976,21 @@ const Badge_Badge = (props)=>{
|
|
|
3867
3976
|
get style () {
|
|
3868
3977
|
return local.style;
|
|
3869
3978
|
},
|
|
3870
|
-
|
|
3979
|
+
get role () {
|
|
3980
|
+
return local.role || "status";
|
|
3981
|
+
},
|
|
3982
|
+
get ["aria-label"] () {
|
|
3983
|
+
return local["aria-label"];
|
|
3984
|
+
},
|
|
3985
|
+
get ["aria-describedby"] () {
|
|
3986
|
+
return local["aria-describedby"];
|
|
3987
|
+
},
|
|
3988
|
+
get ["aria-labelledby"] () {
|
|
3989
|
+
return local["aria-labelledby"];
|
|
3990
|
+
},
|
|
3991
|
+
get ["aria-hidden"] () {
|
|
3992
|
+
return "presentation" === local.role || "none" === local.role ? true : void 0;
|
|
3993
|
+
}
|
|
3871
3994
|
}), false, true);
|
|
3872
3995
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, ()=>props.children);
|
|
3873
3996
|
return _el$;
|
|
@@ -3991,7 +4114,12 @@ const Loading = (props)=>{
|
|
|
3991
4114
|
"dataTheme",
|
|
3992
4115
|
"class",
|
|
3993
4116
|
"className",
|
|
3994
|
-
"style"
|
|
4117
|
+
"style",
|
|
4118
|
+
"aria-label",
|
|
4119
|
+
"aria-describedby",
|
|
4120
|
+
"aria-live",
|
|
4121
|
+
"aria-busy",
|
|
4122
|
+
"role"
|
|
3995
4123
|
]);
|
|
3996
4124
|
const classes = ()=>twMerge("loading", local.class, local.className, clsx({
|
|
3997
4125
|
"loading-xl": "xl" === local.size,
|
|
@@ -4025,6 +4153,21 @@ const Loading = (props)=>{
|
|
|
4025
4153
|
},
|
|
4026
4154
|
get style () {
|
|
4027
4155
|
return local.style;
|
|
4156
|
+
},
|
|
4157
|
+
get role () {
|
|
4158
|
+
return local.role || "status";
|
|
4159
|
+
},
|
|
4160
|
+
get ["aria-label"] () {
|
|
4161
|
+
return local["aria-label"] || "Loading";
|
|
4162
|
+
},
|
|
4163
|
+
get ["aria-describedby"] () {
|
|
4164
|
+
return local["aria-describedby"];
|
|
4165
|
+
},
|
|
4166
|
+
get ["aria-live"] () {
|
|
4167
|
+
return local["aria-live"] || "polite";
|
|
4168
|
+
},
|
|
4169
|
+
get ["aria-busy"] () {
|
|
4170
|
+
return local["aria-busy"] ?? true;
|
|
4028
4171
|
}
|
|
4029
4172
|
}), false, false);
|
|
4030
4173
|
return _el$;
|
|
@@ -5652,7 +5795,11 @@ const Card = (props)=>{
|
|
|
5652
5795
|
"class",
|
|
5653
5796
|
"className",
|
|
5654
5797
|
"dataTheme",
|
|
5655
|
-
"style"
|
|
5798
|
+
"style",
|
|
5799
|
+
"aria-label",
|
|
5800
|
+
"aria-describedby",
|
|
5801
|
+
"aria-labelledby",
|
|
5802
|
+
"role"
|
|
5656
5803
|
]);
|
|
5657
5804
|
const classes = twMerge("card", clsx({
|
|
5658
5805
|
"card-xl": "xl" === local.size,
|
|
@@ -5668,13 +5815,24 @@ const Card = (props)=>{
|
|
|
5668
5815
|
return (()=>{
|
|
5669
5816
|
var _el$ = Card_tmpl$();
|
|
5670
5817
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(others, {
|
|
5671
|
-
"aria-label": "Card",
|
|
5672
5818
|
class: classes,
|
|
5673
5819
|
get ["data-theme"] () {
|
|
5674
5820
|
return local.dataTheme;
|
|
5675
5821
|
},
|
|
5676
5822
|
get style () {
|
|
5677
5823
|
return local.style;
|
|
5824
|
+
},
|
|
5825
|
+
get role () {
|
|
5826
|
+
return local.role;
|
|
5827
|
+
},
|
|
5828
|
+
get ["aria-label"] () {
|
|
5829
|
+
return local["aria-label"];
|
|
5830
|
+
},
|
|
5831
|
+
get ["aria-describedby"] () {
|
|
5832
|
+
return local["aria-describedby"];
|
|
5833
|
+
},
|
|
5834
|
+
get ["aria-labelledby"] () {
|
|
5835
|
+
return local["aria-labelledby"];
|
|
5678
5836
|
}
|
|
5679
5837
|
}), false, false);
|
|
5680
5838
|
return _el$;
|
|
@@ -5686,48 +5844,90 @@ Card.Title = CardTitle;
|
|
|
5686
5844
|
Card.Image = CardImage;
|
|
5687
5845
|
const card_Card = Card;
|
|
5688
5846
|
var CarouselItem_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>");
|
|
5689
|
-
const
|
|
5847
|
+
const CarouselItem = (props)=>{
|
|
5690
5848
|
const [local, rest] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
5691
5849
|
"class",
|
|
5692
|
-
"children"
|
|
5850
|
+
"children",
|
|
5851
|
+
"aria-current"
|
|
5693
5852
|
]);
|
|
5694
5853
|
const classes = twMerge("carousel-item", local.class);
|
|
5695
5854
|
return (()=>{
|
|
5696
5855
|
var _el$ = CarouselItem_tmpl$();
|
|
5697
5856
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(rest, {
|
|
5698
|
-
class: classes
|
|
5857
|
+
class: classes,
|
|
5858
|
+
role: "group",
|
|
5859
|
+
"aria-roledescription": "slide",
|
|
5860
|
+
get ["aria-current"] () {
|
|
5861
|
+
return local["aria-current"];
|
|
5862
|
+
}
|
|
5699
5863
|
}), false, true);
|
|
5700
5864
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, ()=>local.children);
|
|
5701
5865
|
return _el$;
|
|
5702
5866
|
})();
|
|
5703
5867
|
};
|
|
5704
|
-
const
|
|
5705
|
-
var Carousel_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>");
|
|
5868
|
+
const carousel_CarouselItem = CarouselItem;
|
|
5869
|
+
var Carousel_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div><div class=carousel-content>");
|
|
5706
5870
|
const Carousel = (props)=>{
|
|
5707
5871
|
const [local, rest] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
5708
5872
|
"class",
|
|
5709
5873
|
"children",
|
|
5710
5874
|
"snap",
|
|
5711
|
-
"direction"
|
|
5875
|
+
"direction",
|
|
5876
|
+
"aria-label",
|
|
5877
|
+
"aria-roledescription",
|
|
5878
|
+
"aria-describedby",
|
|
5879
|
+
"aria-labelledby",
|
|
5880
|
+
"aria-live",
|
|
5881
|
+
"aria-atomic"
|
|
5712
5882
|
]);
|
|
5713
|
-
const classes = twMerge("carousel", local.class, dist_clsx({
|
|
5714
|
-
|
|
5715
|
-
|
|
5716
|
-
|
|
5717
|
-
|
|
5718
|
-
|
|
5719
|
-
|
|
5883
|
+
const classes = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>twMerge("carousel", local.class, dist_clsx({
|
|
5884
|
+
"carousel-start": "start" === local.snap || !local.snap,
|
|
5885
|
+
"carousel-center": "center" === local.snap,
|
|
5886
|
+
"carousel-end": "end" === local.snap,
|
|
5887
|
+
"carousel-vertical": "vertical" === local.direction,
|
|
5888
|
+
"carousel-horizontal": "horizontal" === local.direction
|
|
5889
|
+
})));
|
|
5890
|
+
const ariaRoleDescription = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>local["aria-roledescription"] || "carousel");
|
|
5891
|
+
const ariaLabel = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>local["aria-label"]);
|
|
5892
|
+
const ariaDescribedby = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>local["aria-describedby"]);
|
|
5893
|
+
const ariaLabelledby = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>local["aria-labelledby"]);
|
|
5894
|
+
const ariaLive = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>local["aria-live"] || "polite");
|
|
5895
|
+
const ariaAtomic = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>local["aria-atomic"] || false);
|
|
5720
5896
|
return (()=>{
|
|
5721
|
-
var _el$ = Carousel_tmpl$();
|
|
5897
|
+
var _el$ = Carousel_tmpl$(), _el$2 = _el$.firstChild;
|
|
5722
5898
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(rest, {
|
|
5723
|
-
class
|
|
5899
|
+
get ["class"] () {
|
|
5900
|
+
return classes();
|
|
5901
|
+
},
|
|
5902
|
+
role: "region",
|
|
5903
|
+
get ["aria-roledescription"] () {
|
|
5904
|
+
return ariaRoleDescription();
|
|
5905
|
+
},
|
|
5906
|
+
get ["aria-label"] () {
|
|
5907
|
+
return ariaLabel();
|
|
5908
|
+
},
|
|
5909
|
+
get ["aria-describedby"] () {
|
|
5910
|
+
return ariaDescribedby();
|
|
5911
|
+
},
|
|
5912
|
+
get ["aria-labelledby"] () {
|
|
5913
|
+
return ariaLabelledby();
|
|
5914
|
+
}
|
|
5724
5915
|
}), false, true);
|
|
5725
|
-
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el
|
|
5916
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$2, ()=>local.children);
|
|
5917
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.effect)((_p$)=>{
|
|
5918
|
+
var _v$ = ariaLive(), _v$2 = ariaAtomic();
|
|
5919
|
+
_v$ !== _p$.e && (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.setAttribute)(_el$2, "aria-live", _p$.e = _v$);
|
|
5920
|
+
_v$2 !== _p$.t && (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.setAttribute)(_el$2, "aria-atomic", _p$.t = _v$2);
|
|
5921
|
+
return _p$;
|
|
5922
|
+
}, {
|
|
5923
|
+
e: void 0,
|
|
5924
|
+
t: void 0
|
|
5925
|
+
});
|
|
5726
5926
|
return _el$;
|
|
5727
5927
|
})();
|
|
5728
5928
|
};
|
|
5729
5929
|
const carousel_Carousel = Object.assign(Carousel, {
|
|
5730
|
-
Item:
|
|
5930
|
+
Item: carousel_CarouselItem
|
|
5731
5931
|
});
|
|
5732
5932
|
var ChatBubbleHeader_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>");
|
|
5733
5933
|
const ChatBubbleHeader_ChatBubbleHeader = (props)=>(()=>{
|
|
@@ -6487,20 +6687,32 @@ const Drawer = Drawer_Drawer;
|
|
|
6487
6687
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.delegateEvents)([
|
|
6488
6688
|
"click"
|
|
6489
6689
|
]);
|
|
6490
|
-
var DropdownToggle_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<label tabindex=0>");
|
|
6690
|
+
var DropdownToggle_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<label tabindex=0>"), DropdownToggle_tmpl$2 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<summary>");
|
|
6491
6691
|
const DropdownToggle = (props)=>{
|
|
6492
6692
|
const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
6493
6693
|
"children",
|
|
6494
6694
|
"color",
|
|
6495
6695
|
"size",
|
|
6496
6696
|
"button",
|
|
6697
|
+
"disabled",
|
|
6497
6698
|
"dataTheme",
|
|
6498
6699
|
"class",
|
|
6499
|
-
"
|
|
6700
|
+
"id",
|
|
6701
|
+
"role",
|
|
6702
|
+
"aria-haspopup",
|
|
6703
|
+
"aria-expanded",
|
|
6704
|
+
"aria-controls"
|
|
6500
6705
|
]);
|
|
6706
|
+
const commonAriaProps = {
|
|
6707
|
+
id: local.id,
|
|
6708
|
+
role: local.role,
|
|
6709
|
+
"aria-haspopup": local["aria-haspopup"],
|
|
6710
|
+
"aria-expanded": local["aria-expanded"],
|
|
6711
|
+
"aria-controls": local["aria-controls"]
|
|
6712
|
+
};
|
|
6501
6713
|
return (()=>{
|
|
6502
6714
|
var _el$ = DropdownToggle_tmpl$();
|
|
6503
|
-
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(others, {
|
|
6715
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(others, commonAriaProps, {
|
|
6504
6716
|
get ["class"] () {
|
|
6505
6717
|
return local.class;
|
|
6506
6718
|
}
|
|
@@ -6513,7 +6725,7 @@ const DropdownToggle = (props)=>{
|
|
|
6513
6725
|
return local.children;
|
|
6514
6726
|
},
|
|
6515
6727
|
get children () {
|
|
6516
|
-
return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(button_Button, {
|
|
6728
|
+
return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(button_Button, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)({
|
|
6517
6729
|
type: "button",
|
|
6518
6730
|
get dataTheme () {
|
|
6519
6731
|
return local.dataTheme;
|
|
@@ -6526,19 +6738,23 @@ const DropdownToggle = (props)=>{
|
|
|
6526
6738
|
},
|
|
6527
6739
|
get disabled () {
|
|
6528
6740
|
return local.disabled;
|
|
6529
|
-
}
|
|
6741
|
+
}
|
|
6742
|
+
}, commonAriaProps, {
|
|
6530
6743
|
get children () {
|
|
6531
6744
|
return local.children;
|
|
6532
6745
|
}
|
|
6533
|
-
});
|
|
6746
|
+
}));
|
|
6534
6747
|
}
|
|
6535
6748
|
}));
|
|
6536
6749
|
return _el$;
|
|
6537
6750
|
})();
|
|
6538
6751
|
};
|
|
6539
|
-
const DropdownToggle_Summary = (props)=>(
|
|
6540
|
-
|
|
6541
|
-
|
|
6752
|
+
const DropdownToggle_Summary = (props)=>(()=>{
|
|
6753
|
+
var _el$2 = DropdownToggle_tmpl$2();
|
|
6754
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$2, props, false, true);
|
|
6755
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$2, ()=>props.children);
|
|
6756
|
+
return _el$2;
|
|
6757
|
+
})();
|
|
6542
6758
|
const dropdown_DropdownToggle = DropdownToggle;
|
|
6543
6759
|
var DropdownDetails_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<details role=listbox>");
|
|
6544
6760
|
const Details = (props)=>{
|
|
@@ -6578,18 +6794,49 @@ const Details = (props)=>{
|
|
|
6578
6794
|
const DropdownDetails = Object.assign(Details, {
|
|
6579
6795
|
Toggle: DropdownToggle_Summary
|
|
6580
6796
|
});
|
|
6797
|
+
var DropdownItem_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<li role=menuitem>"), DropdownItem_tmpl$2 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<a>");
|
|
6798
|
+
const DropdownItem = (props)=>{
|
|
6799
|
+
const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
6800
|
+
"anchor",
|
|
6801
|
+
"children",
|
|
6802
|
+
"aria-selected"
|
|
6803
|
+
]);
|
|
6804
|
+
return (()=>{
|
|
6805
|
+
var _el$ = DropdownItem_tmpl$();
|
|
6806
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, (()=>{
|
|
6807
|
+
var _c$ = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.memo)(()=>!!(local.anchor ?? true));
|
|
6808
|
+
return ()=>_c$() ? (()=>{
|
|
6809
|
+
var _el$2 = DropdownItem_tmpl$2();
|
|
6810
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$2, others, false, true);
|
|
6811
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$2, ()=>local.children);
|
|
6812
|
+
return _el$2;
|
|
6813
|
+
})() : local.children;
|
|
6814
|
+
})());
|
|
6815
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.effect)(()=>(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.setAttribute)(_el$, "aria-selected", local["aria-selected"]));
|
|
6816
|
+
return _el$;
|
|
6817
|
+
})();
|
|
6818
|
+
};
|
|
6819
|
+
const dropdown_DropdownItem = DropdownItem;
|
|
6581
6820
|
var DropdownMenu_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<ul>");
|
|
6582
6821
|
const DropdownMenu = (props)=>{
|
|
6583
6822
|
const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
6584
6823
|
"class",
|
|
6585
6824
|
"className",
|
|
6586
6825
|
"data-theme",
|
|
6587
|
-
"style"
|
|
6826
|
+
"style",
|
|
6827
|
+
"id",
|
|
6828
|
+
"aria-labelledby"
|
|
6588
6829
|
]);
|
|
6589
6830
|
const classes = ()=>twMerge("dropdown-content menu p-2 shadow bg-base-100 rounded-box", local.class, local.className);
|
|
6590
6831
|
return (()=>{
|
|
6591
6832
|
var _el$ = DropdownMenu_tmpl$();
|
|
6592
6833
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(others, {
|
|
6834
|
+
get id () {
|
|
6835
|
+
return local.id;
|
|
6836
|
+
},
|
|
6837
|
+
get ["aria-labelledby"] () {
|
|
6838
|
+
return local["aria-labelledby"];
|
|
6839
|
+
},
|
|
6593
6840
|
tabindex: 0,
|
|
6594
6841
|
get ["data-theme"] () {
|
|
6595
6842
|
return local["data-theme"];
|
|
@@ -6606,28 +6853,7 @@ const DropdownMenu = (props)=>{
|
|
|
6606
6853
|
})();
|
|
6607
6854
|
};
|
|
6608
6855
|
const dropdown_DropdownMenu = DropdownMenu;
|
|
6609
|
-
var
|
|
6610
|
-
const DropdownItem = (props)=>{
|
|
6611
|
-
const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
6612
|
-
"anchor",
|
|
6613
|
-
"children"
|
|
6614
|
-
]);
|
|
6615
|
-
return (()=>{
|
|
6616
|
-
var _el$ = DropdownItem_tmpl$();
|
|
6617
|
-
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, (()=>{
|
|
6618
|
-
var _c$ = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.memo)(()=>!!(local.anchor ?? true));
|
|
6619
|
-
return ()=>_c$() ? (()=>{
|
|
6620
|
-
var _el$2 = DropdownItem_tmpl$2();
|
|
6621
|
-
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$2, others, false, true);
|
|
6622
|
-
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$2, ()=>local.children);
|
|
6623
|
-
return _el$2;
|
|
6624
|
-
})() : local.children;
|
|
6625
|
-
})());
|
|
6626
|
-
return _el$;
|
|
6627
|
-
})();
|
|
6628
|
-
};
|
|
6629
|
-
const dropdown_DropdownItem = DropdownItem;
|
|
6630
|
-
var Dropdown_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<label tabindex=0>"), Dropdown_tmpl$2 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<ul class=dropdown-content>"), Dropdown_tmpl$3 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div role=listbox>");
|
|
6856
|
+
var Dropdown_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<label tabindex=0>"), Dropdown_tmpl$2 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<ul class=dropdown-content role=listbox>"), Dropdown_tmpl$3 = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>");
|
|
6631
6857
|
const Dropdown_classesFn = ({ className, horizontal, vertical, end, hover, open })=>twMerge("dropdown", className, clsx({
|
|
6632
6858
|
"dropdown-left": "left" === horizontal,
|
|
6633
6859
|
"dropdown-right": "right" === horizontal,
|
|
@@ -6647,7 +6873,12 @@ const Dropdown = (props)=>{
|
|
|
6647
6873
|
"end",
|
|
6648
6874
|
"hover",
|
|
6649
6875
|
"open",
|
|
6650
|
-
"dataTheme"
|
|
6876
|
+
"dataTheme",
|
|
6877
|
+
"aria-label",
|
|
6878
|
+
"aria-describedby",
|
|
6879
|
+
"aria-expanded",
|
|
6880
|
+
"aria-haspopup",
|
|
6881
|
+
"aria-labelledby"
|
|
6651
6882
|
]);
|
|
6652
6883
|
const classes = ()=>Dropdown_classesFn({
|
|
6653
6884
|
className: local.className,
|
|
@@ -6659,12 +6890,31 @@ const Dropdown = (props)=>{
|
|
|
6659
6890
|
});
|
|
6660
6891
|
return (()=>{
|
|
6661
6892
|
var _el$ = Dropdown_tmpl$3();
|
|
6662
|
-
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(
|
|
6893
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)({
|
|
6894
|
+
get role () {
|
|
6895
|
+
return local.item ? "combobox" : "listbox";
|
|
6896
|
+
}
|
|
6897
|
+
}, others, {
|
|
6663
6898
|
get ["data-theme"] () {
|
|
6664
6899
|
return local.dataTheme;
|
|
6665
6900
|
},
|
|
6666
6901
|
get ["class"] () {
|
|
6667
6902
|
return classes();
|
|
6903
|
+
},
|
|
6904
|
+
get ["aria-label"] () {
|
|
6905
|
+
return local["aria-label"];
|
|
6906
|
+
},
|
|
6907
|
+
get ["aria-describedby"] () {
|
|
6908
|
+
return local["aria-describedby"];
|
|
6909
|
+
},
|
|
6910
|
+
get ["aria-expanded"] () {
|
|
6911
|
+
return local["aria-expanded"] ?? local.open;
|
|
6912
|
+
},
|
|
6913
|
+
get ["aria-haspopup"] () {
|
|
6914
|
+
return true === local["aria-haspopup"] ? "true" : false === local["aria-haspopup"] ? "false" : local["aria-haspopup"] || (local.item ? "listbox" : "true");
|
|
6915
|
+
},
|
|
6916
|
+
get ["aria-labelledby"] () {
|
|
6917
|
+
return local["aria-labelledby"];
|
|
6668
6918
|
}
|
|
6669
6919
|
}), false, true);
|
|
6670
6920
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(__WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.Show, {
|
|
@@ -6778,6 +7028,21 @@ function mapResponsiveProp(prop, classMap) {
|
|
|
6778
7028
|
];
|
|
6779
7029
|
});
|
|
6780
7030
|
}
|
|
7031
|
+
function useDesktop(breakpoint = 1024) {
|
|
7032
|
+
const [isDesktop, setIsDesktop] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createSignal)(false);
|
|
7033
|
+
const checkIfDesktop = ()=>{
|
|
7034
|
+
const width = window.innerWidth;
|
|
7035
|
+
setIsDesktop(width >= breakpoint);
|
|
7036
|
+
};
|
|
7037
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.onMount)(()=>{
|
|
7038
|
+
checkIfDesktop();
|
|
7039
|
+
window.addEventListener("resize", checkIfDesktop);
|
|
7040
|
+
});
|
|
7041
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.onCleanup)(()=>{
|
|
7042
|
+
window.removeEventListener("resize", checkIfDesktop);
|
|
7043
|
+
});
|
|
7044
|
+
return isDesktop;
|
|
7045
|
+
}
|
|
6781
7046
|
const directionMap = {
|
|
6782
7047
|
row: "flex-row",
|
|
6783
7048
|
col: "flex-col",
|
|
@@ -7915,6 +8180,84 @@ const NavbarSection = (props)=>{
|
|
|
7915
8180
|
})();
|
|
7916
8181
|
};
|
|
7917
8182
|
const navbar_NavbarSection = NavbarSection;
|
|
8183
|
+
var NavbarStack_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>");
|
|
8184
|
+
const NavbarStack_NavbarStack = (props)=>{
|
|
8185
|
+
const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
8186
|
+
"children",
|
|
8187
|
+
"sticky",
|
|
8188
|
+
"container",
|
|
8189
|
+
"class",
|
|
8190
|
+
"className",
|
|
8191
|
+
"style",
|
|
8192
|
+
"dataTheme"
|
|
8193
|
+
]);
|
|
8194
|
+
const resolvedChildren = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.children)(()=>local.children);
|
|
8195
|
+
const classes = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>twMerge("navbar-stack", local.class, local.className, clsx({
|
|
8196
|
+
"sticky top-0 z-30": local.sticky,
|
|
8197
|
+
"max-w-screen-xl mx-auto px-4": local.container
|
|
8198
|
+
})));
|
|
8199
|
+
return (()=>{
|
|
8200
|
+
var _el$ = NavbarStack_tmpl$();
|
|
8201
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)({
|
|
8202
|
+
get ["class"] () {
|
|
8203
|
+
return classes();
|
|
8204
|
+
},
|
|
8205
|
+
get style () {
|
|
8206
|
+
return local.style;
|
|
8207
|
+
},
|
|
8208
|
+
get ["data-theme"] () {
|
|
8209
|
+
return local.dataTheme;
|
|
8210
|
+
}
|
|
8211
|
+
}, others), false, true);
|
|
8212
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, resolvedChildren);
|
|
8213
|
+
return _el$;
|
|
8214
|
+
})();
|
|
8215
|
+
};
|
|
8216
|
+
const NavbarStack = NavbarStack_NavbarStack;
|
|
8217
|
+
var NavbarRow_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<div>");
|
|
8218
|
+
const NavbarRow = (props)=>{
|
|
8219
|
+
const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
8220
|
+
"children",
|
|
8221
|
+
"bordered",
|
|
8222
|
+
"padded",
|
|
8223
|
+
"color",
|
|
8224
|
+
"class",
|
|
8225
|
+
"className",
|
|
8226
|
+
"style",
|
|
8227
|
+
"dataTheme"
|
|
8228
|
+
]);
|
|
8229
|
+
const resolvedChildren = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.children)(()=>local.children);
|
|
8230
|
+
const classes = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>twMerge("flex items-center", local.class, local.className, clsx({
|
|
8231
|
+
"border-b border-gray-200": true === local.bordered,
|
|
8232
|
+
"px-4 py-2": false !== local.padded,
|
|
8233
|
+
"bg-base-100": !local.color || "ghost" === local.color,
|
|
8234
|
+
"bg-neutral text-neutral-content": "neutral" === local.color,
|
|
8235
|
+
"bg-primary text-primary-content": "primary" === local.color,
|
|
8236
|
+
"bg-secondary text-secondary-content": "secondary" === local.color,
|
|
8237
|
+
"bg-accent text-accent-content": "accent" === local.color,
|
|
8238
|
+
"bg-info text-info-content": "info" === local.color,
|
|
8239
|
+
"bg-success text-success-content": "success" === local.color,
|
|
8240
|
+
"bg-warning text-warning-content": "warning" === local.color,
|
|
8241
|
+
"bg-error text-error-content": "error" === local.color
|
|
8242
|
+
})));
|
|
8243
|
+
return (()=>{
|
|
8244
|
+
var _el$ = NavbarRow_tmpl$();
|
|
8245
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)({
|
|
8246
|
+
get ["class"] () {
|
|
8247
|
+
return classes();
|
|
8248
|
+
},
|
|
8249
|
+
get style () {
|
|
8250
|
+
return local.style;
|
|
8251
|
+
},
|
|
8252
|
+
get ["data-theme"] () {
|
|
8253
|
+
return local.dataTheme;
|
|
8254
|
+
}
|
|
8255
|
+
}, others), false, true);
|
|
8256
|
+
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.insert)(_el$, resolvedChildren);
|
|
8257
|
+
return _el$;
|
|
8258
|
+
})();
|
|
8259
|
+
};
|
|
8260
|
+
const navbar_NavbarRow = NavbarRow;
|
|
7918
8261
|
const Navbar = (props)=>{
|
|
7919
8262
|
const [local, others] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
7920
8263
|
"as",
|
|
@@ -7957,7 +8300,9 @@ const NavbarEnd = (props)=>(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__
|
|
|
7957
8300
|
const navbar_Navbar = Object.assign(Navbar, {
|
|
7958
8301
|
Start: NavbarStart,
|
|
7959
8302
|
Center: NavbarCenter,
|
|
7960
|
-
End: NavbarEnd
|
|
8303
|
+
End: NavbarEnd,
|
|
8304
|
+
Stack: NavbarStack,
|
|
8305
|
+
Row: navbar_NavbarRow
|
|
7961
8306
|
});
|
|
7962
8307
|
const Pagination = join_Join;
|
|
7963
8308
|
const pagination_Pagination = Pagination;
|
|
@@ -8006,7 +8351,14 @@ const Progress_Progress = (props)=>{
|
|
|
8006
8351
|
"color",
|
|
8007
8352
|
"class",
|
|
8008
8353
|
"className",
|
|
8009
|
-
"dataTheme"
|
|
8354
|
+
"dataTheme",
|
|
8355
|
+
"aria-label",
|
|
8356
|
+
"aria-describedby",
|
|
8357
|
+
"aria-valuenow",
|
|
8358
|
+
"aria-valuemin",
|
|
8359
|
+
"aria-valuemax",
|
|
8360
|
+
"aria-valuetext",
|
|
8361
|
+
"aria-labelledby"
|
|
8010
8362
|
]);
|
|
8011
8363
|
const classes = twMerge("progress", dist_clsx({
|
|
8012
8364
|
"progress-primary": "primary" === local.color,
|
|
@@ -8018,12 +8370,39 @@ const Progress_Progress = (props)=>{
|
|
|
8018
8370
|
"progress-error": "error" === local.color,
|
|
8019
8371
|
"progress-ghost": "ghost" === local.color
|
|
8020
8372
|
}), local.class, local.className);
|
|
8373
|
+
const getAriaValueNow = ()=>{
|
|
8374
|
+
if (void 0 !== local["aria-valuenow"]) return local["aria-valuenow"];
|
|
8375
|
+
const value = others.value;
|
|
8376
|
+
if ('number' == typeof value || 'string' == typeof value) return value;
|
|
8377
|
+
};
|
|
8021
8378
|
return (()=>{
|
|
8022
8379
|
var _el$ = Progress_tmpl$();
|
|
8023
8380
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(others, {
|
|
8024
8381
|
class: classes,
|
|
8025
8382
|
get ["data-theme"] () {
|
|
8026
8383
|
return local.dataTheme;
|
|
8384
|
+
},
|
|
8385
|
+
role: "progressbar",
|
|
8386
|
+
get ["aria-label"] () {
|
|
8387
|
+
return local["aria-label"];
|
|
8388
|
+
},
|
|
8389
|
+
get ["aria-describedby"] () {
|
|
8390
|
+
return local["aria-describedby"];
|
|
8391
|
+
},
|
|
8392
|
+
get ["aria-valuenow"] () {
|
|
8393
|
+
return getAriaValueNow();
|
|
8394
|
+
},
|
|
8395
|
+
get ["aria-valuemin"] () {
|
|
8396
|
+
return local["aria-valuemin"] || 0;
|
|
8397
|
+
},
|
|
8398
|
+
get ["aria-valuemax"] () {
|
|
8399
|
+
return local["aria-valuemax"] || others.max || 100;
|
|
8400
|
+
},
|
|
8401
|
+
get ["aria-valuetext"] () {
|
|
8402
|
+
return local["aria-valuetext"];
|
|
8403
|
+
},
|
|
8404
|
+
get ["aria-labelledby"] () {
|
|
8405
|
+
return local["aria-labelledby"];
|
|
8027
8406
|
}
|
|
8028
8407
|
}), false, false);
|
|
8029
8408
|
return _el$;
|
|
@@ -8555,12 +8934,15 @@ const Sidenav = (props)=>{
|
|
|
8555
8934
|
"class",
|
|
8556
8935
|
"className",
|
|
8557
8936
|
"dataTheme",
|
|
8558
|
-
"style"
|
|
8937
|
+
"style",
|
|
8938
|
+
"desktopBreakpoint"
|
|
8559
8939
|
]);
|
|
8560
8940
|
const resolvedChildren = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.children)(()=>local.children);
|
|
8941
|
+
const isDesktop = useDesktop(local.desktopBreakpoint || 1024);
|
|
8561
8942
|
const classes = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.createMemo)(()=>twMerge("sidenav", local.class, local.className, clsx({
|
|
8562
8943
|
"sidenav-collapsed": local.collapsed,
|
|
8563
|
-
"sidenav-closed": !local.isOpen
|
|
8944
|
+
"sidenav-closed": !local.isOpen,
|
|
8945
|
+
"sidenav-desktop": isDesktop()
|
|
8564
8946
|
})));
|
|
8565
8947
|
return (()=>{
|
|
8566
8948
|
var _el$ = Sidenav_tmpl$3(), _el$4 = _el$.firstChild;
|
|
@@ -9463,7 +9845,7 @@ const TableHeadCell = (props)=>{
|
|
|
9463
9845
|
};
|
|
9464
9846
|
const table_TableHeadCell = TableHeadCell;
|
|
9465
9847
|
var TableHead_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<thead><tr>");
|
|
9466
|
-
const
|
|
9848
|
+
const TableHead = (props)=>{
|
|
9467
9849
|
const [local, rest] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
9468
9850
|
"children",
|
|
9469
9851
|
"noCell",
|
|
@@ -9496,7 +9878,7 @@ const TableHead_TableHead = (props)=>{
|
|
|
9496
9878
|
return _el$;
|
|
9497
9879
|
})();
|
|
9498
9880
|
};
|
|
9499
|
-
const
|
|
9881
|
+
const table_TableHead = TableHead;
|
|
9500
9882
|
var TableBody_tmpl$ = /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.template)("<tbody>");
|
|
9501
9883
|
const TableBody = (props)=>{
|
|
9502
9884
|
const [local, rest] = (0, __WEBPACK_EXTERNAL_MODULE_solid_js_aeefcc6d__.splitProps)(props, [
|
|
@@ -9803,7 +10185,7 @@ const Table = (props)=>{
|
|
|
9803
10185
|
})();
|
|
9804
10186
|
};
|
|
9805
10187
|
const table_Table = Object.assign(Table, {
|
|
9806
|
-
Head:
|
|
10188
|
+
Head: table_TableHead,
|
|
9807
10189
|
Body: table_TableBody,
|
|
9808
10190
|
Row: table_TableRow,
|
|
9809
10191
|
Footer: table_TableFooter,
|
|
@@ -10195,7 +10577,13 @@ const Toggle = (props)=>{
|
|
|
10195
10577
|
"dataTheme",
|
|
10196
10578
|
"class",
|
|
10197
10579
|
"className",
|
|
10198
|
-
"style"
|
|
10580
|
+
"style",
|
|
10581
|
+
"aria-label",
|
|
10582
|
+
"aria-describedby",
|
|
10583
|
+
"aria-invalid",
|
|
10584
|
+
"aria-required",
|
|
10585
|
+
"aria-labelledby",
|
|
10586
|
+
"aria-checked"
|
|
10199
10587
|
]);
|
|
10200
10588
|
const classes = ()=>twMerge("toggle", local.class, local.className, clsx({
|
|
10201
10589
|
"toggle-xl": "xl" === local.size,
|
|
@@ -10216,6 +10604,7 @@ const Toggle = (props)=>{
|
|
|
10216
10604
|
var _el$ = Toggle_tmpl$();
|
|
10217
10605
|
(0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.spread)(_el$, (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.mergeProps)(others, {
|
|
10218
10606
|
type: "checkbox",
|
|
10607
|
+
role: "switch",
|
|
10219
10608
|
get ["data-theme"] () {
|
|
10220
10609
|
return local.dataTheme;
|
|
10221
10610
|
},
|
|
@@ -10224,6 +10613,24 @@ const Toggle = (props)=>{
|
|
|
10224
10613
|
},
|
|
10225
10614
|
get style () {
|
|
10226
10615
|
return local.style;
|
|
10616
|
+
},
|
|
10617
|
+
get ["aria-label"] () {
|
|
10618
|
+
return local["aria-label"];
|
|
10619
|
+
},
|
|
10620
|
+
get ["aria-describedby"] () {
|
|
10621
|
+
return local["aria-describedby"];
|
|
10622
|
+
},
|
|
10623
|
+
get ["aria-invalid"] () {
|
|
10624
|
+
return local["aria-invalid"];
|
|
10625
|
+
},
|
|
10626
|
+
get ["aria-required"] () {
|
|
10627
|
+
return local["aria-required"];
|
|
10628
|
+
},
|
|
10629
|
+
get ["aria-labelledby"] () {
|
|
10630
|
+
return local["aria-labelledby"];
|
|
10631
|
+
},
|
|
10632
|
+
get ["aria-checked"] () {
|
|
10633
|
+
return local["aria-checked"];
|
|
10227
10634
|
}
|
|
10228
10635
|
}), false, false);
|
|
10229
10636
|
return _el$;
|
|
@@ -10358,4 +10765,4 @@ const WindowMockup = (props)=>{
|
|
|
10358
10765
|
})();
|
|
10359
10766
|
};
|
|
10360
10767
|
const windowmockup_WindowMockup = WindowMockup;
|
|
10361
|
-
export { accordion_Accordion as Accordion, alert_Alert as Alert, artboard_Artboard as Artboard, avatar as Avatar, background_Background as Background, Badge, Breadcrumbs, breadcrumbs_BreadcrumbsItem as BreadcrumbsItem, browsermockup_BrowserMockup as BrowserMockup, button_Button as Button, Calendar, card_Card as Card, carousel_Carousel as Carousel, chatbubble_ChatBubble as ChatBubble, checkbox_Checkbox as Checkbox, codemockup_CodeMockup as CodeMockup, CodeMockupLine, collapse_Collapse as Collapse, CollapseContent, CollapseDetails, CollapseTitle, copy_button_CopyButton as CopyButton, countdown_Countdown as Countdown, diff_Diff as Diff, divider as Divider, dock as Dock, Drawer, dropdown as Dropdown, FileInput, flex_Flex as Flex, footer_Footer as Footer, form_Form as Form, Grid, hero_Hero as Hero, icon_Icon as Icon, indicator_Indicator as Indicator, input_Input as Input, join_Join as Join, kbd_Kbd as Kbd, link_Link as Link, loading_Loading as Loading, mask as Mask, menu_Menu as Menu, modal_Modal as Modal, navbar_Navbar as Navbar, pagination_Pagination as Pagination, phonemockup_PhoneMockup as PhoneMockup, Progress, props_table_PropsTable as PropsTable, radialprogress_RadialProgress as RadialProgress, radio_Radio as Radio, range_Range as Range, Rating, select_Select as Select, showcase_ShowcaseBlock as ShowcaseBlock, ShowcaseSection, sidenav_Sidenav as Sidenav, sidenav_SidenavButton as SidenavButton, sidenav_SidenavGroup as SidenavGroup, sidenav_SidenavItem as SidenavItem, sidenav_SidenavLink as SidenavLink, sidenav_SidenavMenu as SidenavMenu, skeleton_Skeleton as Skeleton, Stack, stats_Stats as Stats, status_Status as Status, steps as Steps, Summary, SvgBackground, Swap, table_Table as Table, tabs_Tabs as Tabs, textarea_Textarea as Textarea, Timeline, timeline_TimelineEnd as TimelineEnd, timeline_TimelineItem as TimelineItem, timeline_TimelineMiddle as TimelineMiddle, timeline_TimelineStart as TimelineStart, toast_Toast as Toast, toggle_Toggle as Toggle, tooltip_Tooltip as Tooltip, windowmockup_WindowMockup as WindowMockup, useFormValidation };
|
|
10768
|
+
export { accordion_Accordion as Accordion, alert_Alert as Alert, artboard_Artboard as Artboard, avatar as Avatar, background_Background as Background, Badge, Breadcrumbs, breadcrumbs_BreadcrumbsItem as BreadcrumbsItem, browsermockup_BrowserMockup as BrowserMockup, button_Button as Button, Calendar, card_Card as Card, carousel_Carousel as Carousel, chatbubble_ChatBubble as ChatBubble, checkbox_Checkbox as Checkbox, codemockup_CodeMockup as CodeMockup, CodeMockupLine, collapse_Collapse as Collapse, CollapseContent, CollapseDetails, CollapseTitle, copy_button_CopyButton as CopyButton, countdown_Countdown as Countdown, diff_Diff as Diff, divider as Divider, dock as Dock, Drawer, dropdown as Dropdown, FileInput, flex_Flex as Flex, footer_Footer as Footer, form_Form as Form, Grid, hero_Hero as Hero, icon_Icon as Icon, indicator_Indicator as Indicator, input_Input as Input, join_Join as Join, kbd_Kbd as Kbd, link_Link as Link, loading_Loading as Loading, mask as Mask, menu_Menu as Menu, modal_Modal as Modal, navbar_Navbar as Navbar, pagination_Pagination as Pagination, phonemockup_PhoneMockup as PhoneMockup, Progress, props_table_PropsTable as PropsTable, radialprogress_RadialProgress as RadialProgress, radio_Radio as Radio, range_Range as Range, Rating, select_Select as Select, showcase_ShowcaseBlock as ShowcaseBlock, ShowcaseSection, sidenav_Sidenav as Sidenav, sidenav_SidenavButton as SidenavButton, sidenav_SidenavGroup as SidenavGroup, sidenav_SidenavItem as SidenavItem, sidenav_SidenavLink as SidenavLink, sidenav_SidenavMenu as SidenavMenu, skeleton_Skeleton as Skeleton, Stack, stats_Stats as Stats, status_Status as Status, steps as Steps, Summary, SvgBackground, Swap, table_Table as Table, tabs_Tabs as Tabs, textarea_Textarea as Textarea, Timeline, timeline_TimelineEnd as TimelineEnd, timeline_TimelineItem as TimelineItem, timeline_TimelineMiddle as TimelineMiddle, timeline_TimelineStart as TimelineStart, toast_Toast as Toast, toggle_Toggle as Toggle, tooltip_Tooltip as Tooltip, windowmockup_WindowMockup as WindowMockup, useDesktop, useFormValidation };
|