@monospaced/set-core 0.7.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/logo/logo.d.ts +3 -1
- package/dist/components/logo/logo.d.ts.map +1 -1
- package/dist/components/logo/logos-animated.d.ts +6 -0
- package/dist/components/logo/logos-animated.d.ts.map +1 -0
- package/dist/components/stack/stack.d.ts +1 -1
- package/dist/components/stack/stack.d.ts.map +1 -1
- package/dist/core.css +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +572 -497
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
const ft = /* @__PURE__ */ new Set([
|
|
2
2
|
"area",
|
|
3
3
|
"base",
|
|
4
4
|
"br",
|
|
@@ -16,14 +16,14 @@ const bt = /* @__PURE__ */ new Set([
|
|
|
16
16
|
function ot(t) {
|
|
17
17
|
return t.replaceAll("&", "&").replaceAll("<", "<").replaceAll(">", ">").replaceAll('"', """).replaceAll("'", "'");
|
|
18
18
|
}
|
|
19
|
-
function
|
|
19
|
+
function yt(t) {
|
|
20
20
|
return Object.entries(t).flatMap(([n, e]) => e === !1 || e == null ? [] : e === !0 ? [n] : [`${n}="${ot(String(e))}"`]).join(" ");
|
|
21
21
|
}
|
|
22
22
|
function h(t) {
|
|
23
23
|
if (t.kind === "text") return ot(t.value);
|
|
24
24
|
if (t.kind === "raw") return t.html;
|
|
25
|
-
const n =
|
|
26
|
-
if (
|
|
25
|
+
const n = yt(t.attrs), e = n ? `<${t.tag} ${n}>` : `<${t.tag}>`;
|
|
26
|
+
if (ft.has(t.tag)) return e;
|
|
27
27
|
const i = t.children.map(h).join("");
|
|
28
28
|
return `${e}${i}</${t.tag}>`;
|
|
29
29
|
}
|
|
@@ -775,7 +775,7 @@ const dt = {
|
|
|
775
775
|
]
|
|
776
776
|
}
|
|
777
777
|
]
|
|
778
|
-
},
|
|
778
|
+
}, We = Object.keys(dt);
|
|
779
779
|
function st(t) {
|
|
780
780
|
return t.map((n) => ({
|
|
781
781
|
kind: "element",
|
|
@@ -795,23 +795,23 @@ function H({
|
|
|
795
795
|
const d = dt[i];
|
|
796
796
|
if (!d)
|
|
797
797
|
throw new Error(`Unknown icon name: ${i}`);
|
|
798
|
-
const o = g(n),
|
|
799
|
-
if (!t && !
|
|
798
|
+
const o = g(n), s = a?.trim();
|
|
799
|
+
if (!t && !s)
|
|
800
800
|
throw new Error("title must be non-empty when ariaHidden is false.");
|
|
801
801
|
if (!t && !o)
|
|
802
802
|
throw new Error("id must be provided when ariaHidden is false.");
|
|
803
|
-
const
|
|
803
|
+
const l = t ? void 0 : `${o}-title`, p = [];
|
|
804
804
|
return t || p.push({
|
|
805
805
|
kind: "element",
|
|
806
806
|
tag: "title",
|
|
807
|
-
attrs: { id:
|
|
808
|
-
children: [{ kind: "text", value:
|
|
807
|
+
attrs: { id: l },
|
|
808
|
+
children: [{ kind: "text", value: s }]
|
|
809
809
|
}), p.push(...st(d)), {
|
|
810
810
|
kind: "element",
|
|
811
811
|
tag: "svg",
|
|
812
812
|
attrs: {
|
|
813
813
|
"aria-hidden": t ? "true" : void 0,
|
|
814
|
-
"aria-labelledby":
|
|
814
|
+
"aria-labelledby": l,
|
|
815
815
|
class: "set-icon",
|
|
816
816
|
"data-mirrored": e,
|
|
817
817
|
"data-size": r,
|
|
@@ -827,10 +827,10 @@ function H({
|
|
|
827
827
|
children: p
|
|
828
828
|
};
|
|
829
829
|
}
|
|
830
|
-
function
|
|
830
|
+
function wt(t) {
|
|
831
831
|
return h(H(t));
|
|
832
832
|
}
|
|
833
|
-
const
|
|
833
|
+
const Ue = {
|
|
834
834
|
name: "icon",
|
|
835
835
|
description: "Use `icon` to render a Set icon.",
|
|
836
836
|
output: { element: "svg", class: "set-icon" },
|
|
@@ -953,8 +953,8 @@ function tt(t) {
|
|
|
953
953
|
form: a,
|
|
954
954
|
haspopup: d,
|
|
955
955
|
id: o,
|
|
956
|
-
icon:
|
|
957
|
-
iconMirrored:
|
|
956
|
+
icon: s,
|
|
957
|
+
iconMirrored: l,
|
|
958
958
|
iconPlacement: p = "start",
|
|
959
959
|
label: c,
|
|
960
960
|
labelVisibility: u = "visible",
|
|
@@ -963,7 +963,7 @@ function tt(t) {
|
|
|
963
963
|
tone: m = "default",
|
|
964
964
|
type: f,
|
|
965
965
|
value: E
|
|
966
|
-
} = t, S =
|
|
966
|
+
} = t, S = s || void 0, v = !!S;
|
|
967
967
|
if (u !== "visible" && !v)
|
|
968
968
|
throw new Error("labelVisibility requires icon when label is not visible.");
|
|
969
969
|
const y = v && S ? {
|
|
@@ -973,9 +973,9 @@ function tt(t) {
|
|
|
973
973
|
children: [
|
|
974
974
|
{
|
|
975
975
|
kind: "raw",
|
|
976
|
-
html:
|
|
976
|
+
html: wt({
|
|
977
977
|
ariaHidden: !0,
|
|
978
|
-
mirrored:
|
|
978
|
+
mirrored: l,
|
|
979
979
|
name: S,
|
|
980
980
|
size: "fill"
|
|
981
981
|
})
|
|
@@ -1012,7 +1012,7 @@ function tt(t) {
|
|
|
1012
1012
|
function et(t) {
|
|
1013
1013
|
return h(tt(t));
|
|
1014
1014
|
}
|
|
1015
|
-
const
|
|
1015
|
+
const $e = {
|
|
1016
1016
|
name: "button",
|
|
1017
1017
|
description: "Use `button` to let users trigger actions.",
|
|
1018
1018
|
output: { element: "button", class: "set-button" },
|
|
@@ -1195,8 +1195,8 @@ const De = {
|
|
|
1195
1195
|
}
|
|
1196
1196
|
]
|
|
1197
1197
|
}
|
|
1198
|
-
}, P = "set-alert", lt = "set-alert-before-dismiss", pt = "set-alert-dismiss",
|
|
1199
|
-
function
|
|
1198
|
+
}, P = "set-alert", lt = "set-alert-before-dismiss", pt = "set-alert-dismiss", V = "Dismiss alert";
|
|
1199
|
+
function St(t, n) {
|
|
1200
1200
|
const e = n.createElement("div");
|
|
1201
1201
|
return e.setAttribute("data-part", "close"), e.innerHTML = et({
|
|
1202
1202
|
appearance: "text",
|
|
@@ -1207,7 +1207,7 @@ function yt(t, n) {
|
|
|
1207
1207
|
tone: "neutral"
|
|
1208
1208
|
}), e;
|
|
1209
1209
|
}
|
|
1210
|
-
function
|
|
1210
|
+
function xt(t) {
|
|
1211
1211
|
switch (t) {
|
|
1212
1212
|
case "success":
|
|
1213
1213
|
return "check-circle";
|
|
@@ -1221,12 +1221,12 @@ function wt(t) {
|
|
|
1221
1221
|
return "sticky-note";
|
|
1222
1222
|
}
|
|
1223
1223
|
}
|
|
1224
|
-
function
|
|
1224
|
+
function Et(t) {
|
|
1225
1225
|
return t === "warning" || t === "error" ? "alert" : "status";
|
|
1226
1226
|
}
|
|
1227
|
-
function
|
|
1227
|
+
function zt({
|
|
1228
1228
|
dismissible: t,
|
|
1229
|
-
dismissibleLabel: n =
|
|
1229
|
+
dismissibleLabel: n = V,
|
|
1230
1230
|
id: e,
|
|
1231
1231
|
inlineSize: i = "full",
|
|
1232
1232
|
message: r,
|
|
@@ -1234,7 +1234,7 @@ function xt({
|
|
|
1234
1234
|
tone: d,
|
|
1235
1235
|
title: o
|
|
1236
1236
|
}) {
|
|
1237
|
-
const
|
|
1237
|
+
const s = g(e), l = n.trim() === "" ? V : n, p = [];
|
|
1238
1238
|
return o && p.push({
|
|
1239
1239
|
kind: "element",
|
|
1240
1240
|
tag: "p",
|
|
@@ -1251,12 +1251,12 @@ function xt({
|
|
|
1251
1251
|
attrs: {
|
|
1252
1252
|
class: "set-alert",
|
|
1253
1253
|
"data-dismissible": t,
|
|
1254
|
-
"data-dismissible-label": t ?
|
|
1254
|
+
"data-dismissible-label": t ? l : void 0,
|
|
1255
1255
|
"data-inline-size": i === "fit" ? "fit" : void 0,
|
|
1256
1256
|
"data-size": a,
|
|
1257
1257
|
"data-tone": d || void 0,
|
|
1258
|
-
id:
|
|
1259
|
-
role:
|
|
1258
|
+
id: s,
|
|
1259
|
+
role: Et(d)
|
|
1260
1260
|
},
|
|
1261
1261
|
children: [
|
|
1262
1262
|
{
|
|
@@ -1266,7 +1266,7 @@ function xt({
|
|
|
1266
1266
|
children: [
|
|
1267
1267
|
H({
|
|
1268
1268
|
ariaHidden: !0,
|
|
1269
|
-
name:
|
|
1269
|
+
name: xt(d),
|
|
1270
1270
|
size: a
|
|
1271
1271
|
})
|
|
1272
1272
|
]
|
|
@@ -1280,10 +1280,10 @@ function xt({
|
|
|
1280
1280
|
]
|
|
1281
1281
|
};
|
|
1282
1282
|
}
|
|
1283
|
-
function
|
|
1284
|
-
return h(
|
|
1283
|
+
function Ge(t) {
|
|
1284
|
+
return h(zt(t));
|
|
1285
1285
|
}
|
|
1286
|
-
function
|
|
1286
|
+
function Ct() {
|
|
1287
1287
|
if (customElements.get(P)) return;
|
|
1288
1288
|
class t extends HTMLElement {
|
|
1289
1289
|
#t = (e) => {
|
|
@@ -1310,8 +1310,8 @@ function Et() {
|
|
|
1310
1310
|
}
|
|
1311
1311
|
#e() {
|
|
1312
1312
|
this.querySelector('[data-part="close"]') || this.append(
|
|
1313
|
-
|
|
1314
|
-
this.getAttribute("data-dismissible-label") ??
|
|
1313
|
+
St(
|
|
1314
|
+
this.getAttribute("data-dismissible-label") ?? V,
|
|
1315
1315
|
this.ownerDocument
|
|
1316
1316
|
)
|
|
1317
1317
|
);
|
|
@@ -1319,7 +1319,7 @@ function Et() {
|
|
|
1319
1319
|
}
|
|
1320
1320
|
customElements.define(P, t);
|
|
1321
1321
|
}
|
|
1322
|
-
const
|
|
1322
|
+
const Ze = {
|
|
1323
1323
|
name: "alert",
|
|
1324
1324
|
description: "Use `alert` to surface short, important messages.",
|
|
1325
1325
|
output: {
|
|
@@ -1340,7 +1340,7 @@ const Ne = {
|
|
|
1340
1340
|
type: { kind: "boolean" }
|
|
1341
1341
|
},
|
|
1342
1342
|
dismissibleLabel: {
|
|
1343
|
-
default:
|
|
1343
|
+
default: V,
|
|
1344
1344
|
description: "Accessible label for the dismiss control.",
|
|
1345
1345
|
ignoredWhen: "`dismissible` is false",
|
|
1346
1346
|
type: { kind: "string" }
|
|
@@ -1445,7 +1445,7 @@ const Ne = {
|
|
|
1445
1445
|
}
|
|
1446
1446
|
]
|
|
1447
1447
|
},
|
|
1448
|
-
value: { kind: "literal", text:
|
|
1448
|
+
value: { kind: "literal", text: V }
|
|
1449
1449
|
},
|
|
1450
1450
|
{
|
|
1451
1451
|
target: { on: "host" },
|
|
@@ -1468,7 +1468,7 @@ const Ne = {
|
|
|
1468
1468
|
]
|
|
1469
1469
|
}
|
|
1470
1470
|
};
|
|
1471
|
-
function
|
|
1471
|
+
function Lt(t) {
|
|
1472
1472
|
if (t)
|
|
1473
1473
|
return t === !0 ? !0 : t;
|
|
1474
1474
|
}
|
|
@@ -1481,17 +1481,17 @@ function ct(t) {
|
|
|
1481
1481
|
id: a,
|
|
1482
1482
|
icon: d,
|
|
1483
1483
|
iconPlacement: o = "start",
|
|
1484
|
-
label:
|
|
1485
|
-
labelVisibility:
|
|
1484
|
+
label: s,
|
|
1485
|
+
labelVisibility: l = "visible",
|
|
1486
1486
|
rel: p,
|
|
1487
1487
|
size: c = "md",
|
|
1488
1488
|
target: u,
|
|
1489
1489
|
tone: k = "default",
|
|
1490
1490
|
underline: b
|
|
1491
1491
|
} = t, m = g(a), f = d?.trim() || void 0;
|
|
1492
|
-
if (
|
|
1492
|
+
if (l !== "visible" && !!!f)
|
|
1493
1493
|
throw new Error("labelVisibility requires icon when label is not visible.");
|
|
1494
|
-
const S =
|
|
1494
|
+
const S = Lt(i), v = f ? {
|
|
1495
1495
|
kind: "element",
|
|
1496
1496
|
tag: "span",
|
|
1497
1497
|
attrs: { class: "icon-wrapper" },
|
|
@@ -1500,7 +1500,7 @@ function ct(t) {
|
|
|
1500
1500
|
kind: "element",
|
|
1501
1501
|
tag: "span",
|
|
1502
1502
|
attrs: { class: "label" },
|
|
1503
|
-
children: [{ kind: "text", value:
|
|
1503
|
+
children: [{ kind: "text", value: s }]
|
|
1504
1504
|
};
|
|
1505
1505
|
return {
|
|
1506
1506
|
kind: "element",
|
|
@@ -1509,7 +1509,7 @@ function ct(t) {
|
|
|
1509
1509
|
"aria-current": e,
|
|
1510
1510
|
class: "set-link",
|
|
1511
1511
|
"data-appearance": n === "text" ? void 0 : n,
|
|
1512
|
-
"data-label-visibility":
|
|
1512
|
+
"data-label-visibility": l === "visible" ? void 0 : l,
|
|
1513
1513
|
"data-size": c,
|
|
1514
1514
|
"data-tone": k === "neutral" ? "neutral" : void 0,
|
|
1515
1515
|
"data-underline": b && n === "text" ? !0 : void 0,
|
|
@@ -1522,10 +1522,10 @@ function ct(t) {
|
|
|
1522
1522
|
children: v ? o === "end" ? [y, v] : [v, y] : [y]
|
|
1523
1523
|
};
|
|
1524
1524
|
}
|
|
1525
|
-
function
|
|
1525
|
+
function Fe(t) {
|
|
1526
1526
|
return h(ct(t));
|
|
1527
1527
|
}
|
|
1528
|
-
const
|
|
1528
|
+
const je = {
|
|
1529
1529
|
name: "link",
|
|
1530
1530
|
description: "Use `link` to navigate to another page or resource.",
|
|
1531
1531
|
output: { element: "a", class: "set-link" },
|
|
@@ -1713,7 +1713,7 @@ const Oe = {
|
|
|
1713
1713
|
]
|
|
1714
1714
|
}
|
|
1715
1715
|
}, B = "set-banner", ut = "set-banner-before-dismiss", ht = "set-banner-dismiss", R = "Dismiss banner";
|
|
1716
|
-
function
|
|
1716
|
+
function Mt(t, n) {
|
|
1717
1717
|
const e = n.createElement("div");
|
|
1718
1718
|
return e.setAttribute("data-part", "close"), e.innerHTML = et({
|
|
1719
1719
|
appearance: "text",
|
|
@@ -1724,7 +1724,7 @@ function Ct(t, n) {
|
|
|
1724
1724
|
tone: "neutral"
|
|
1725
1725
|
}), e;
|
|
1726
1726
|
}
|
|
1727
|
-
function
|
|
1727
|
+
function qt({
|
|
1728
1728
|
actionHref: t,
|
|
1729
1729
|
actionLabel: n,
|
|
1730
1730
|
dismissible: e = !0,
|
|
@@ -1735,8 +1735,8 @@ function Lt({
|
|
|
1735
1735
|
}) {
|
|
1736
1736
|
if (!!t != !!n)
|
|
1737
1737
|
throw new Error("actionHref and actionLabel must be provided together.");
|
|
1738
|
-
const o = g(r),
|
|
1739
|
-
return t && n && (
|
|
1738
|
+
const o = g(r), s = i.trim() === "" ? R : i, l = [{ kind: "text", value: a }];
|
|
1739
|
+
return t && n && (l.push({ kind: "text", value: " " }), l.push(
|
|
1740
1740
|
ct({
|
|
1741
1741
|
href: t,
|
|
1742
1742
|
label: n,
|
|
@@ -1750,7 +1750,7 @@ function Lt({
|
|
|
1750
1750
|
"data-set-content-theme": "dark",
|
|
1751
1751
|
"data-set-surface": "default",
|
|
1752
1752
|
"data-dismissible": e,
|
|
1753
|
-
"data-dismissible-label": e ?
|
|
1753
|
+
"data-dismissible-label": e ? s : void 0,
|
|
1754
1754
|
"data-tone": d || void 0,
|
|
1755
1755
|
id: o
|
|
1756
1756
|
},
|
|
@@ -1759,15 +1759,15 @@ function Lt({
|
|
|
1759
1759
|
kind: "element",
|
|
1760
1760
|
tag: "p",
|
|
1761
1761
|
attrs: { class: "message" },
|
|
1762
|
-
children:
|
|
1762
|
+
children: l
|
|
1763
1763
|
}
|
|
1764
1764
|
]
|
|
1765
1765
|
};
|
|
1766
1766
|
}
|
|
1767
|
-
function
|
|
1768
|
-
return h(
|
|
1767
|
+
function Ke(t) {
|
|
1768
|
+
return h(qt(t));
|
|
1769
1769
|
}
|
|
1770
|
-
function
|
|
1770
|
+
function It() {
|
|
1771
1771
|
if (customElements.get(B)) return;
|
|
1772
1772
|
class t extends HTMLElement {
|
|
1773
1773
|
#t = (e) => {
|
|
@@ -1794,7 +1794,7 @@ function Mt() {
|
|
|
1794
1794
|
}
|
|
1795
1795
|
#e() {
|
|
1796
1796
|
this.querySelector('[data-part="close"]') || this.append(
|
|
1797
|
-
|
|
1797
|
+
Mt(
|
|
1798
1798
|
this.getAttribute("data-dismissible-label") ?? R,
|
|
1799
1799
|
this.ownerDocument
|
|
1800
1800
|
)
|
|
@@ -1803,7 +1803,7 @@ function Mt() {
|
|
|
1803
1803
|
}
|
|
1804
1804
|
customElements.define(B, t);
|
|
1805
1805
|
}
|
|
1806
|
-
const
|
|
1806
|
+
const Xe = {
|
|
1807
1807
|
name: "banner",
|
|
1808
1808
|
description: "Use `banner` to display a prominent site-wide message.",
|
|
1809
1809
|
output: { element: B, class: "set-banner" },
|
|
@@ -1891,11 +1891,11 @@ const Be = {
|
|
|
1891
1891
|
}
|
|
1892
1892
|
]
|
|
1893
1893
|
}
|
|
1894
|
-
}, W = "set-lightswitch", mt = "set-lightswitch-change", K = "set-theme",
|
|
1895
|
-
function
|
|
1894
|
+
}, W = "set-lightswitch", mt = "set-lightswitch-change", K = "set-theme", X = "Switch to dark theme", Q = "Switch to light theme";
|
|
1895
|
+
function Tt(t) {
|
|
1896
1896
|
return t === "dark" ? "light" : "dark";
|
|
1897
1897
|
}
|
|
1898
|
-
function
|
|
1898
|
+
function At(t) {
|
|
1899
1899
|
return t === "dark" ? "moon" : "sunny";
|
|
1900
1900
|
}
|
|
1901
1901
|
function nt(t, n) {
|
|
@@ -1911,7 +1911,7 @@ function nt(t, n) {
|
|
|
1911
1911
|
children: [
|
|
1912
1912
|
H({
|
|
1913
1913
|
ariaHidden: !0,
|
|
1914
|
-
name:
|
|
1914
|
+
name: At(t),
|
|
1915
1915
|
size: "fill"
|
|
1916
1916
|
})
|
|
1917
1917
|
]
|
|
@@ -1925,14 +1925,14 @@ function nt(t, n) {
|
|
|
1925
1925
|
]
|
|
1926
1926
|
};
|
|
1927
1927
|
}
|
|
1928
|
-
function
|
|
1928
|
+
function _t({
|
|
1929
1929
|
appearance: t = "text",
|
|
1930
1930
|
id: n,
|
|
1931
|
-
labelDark: e =
|
|
1932
|
-
labelLight: i =
|
|
1931
|
+
labelDark: e = X,
|
|
1932
|
+
labelLight: i = Q,
|
|
1933
1933
|
size: r = "md"
|
|
1934
1934
|
}) {
|
|
1935
|
-
const a = g(n), d = e.trim() === "" ?
|
|
1935
|
+
const a = g(n), d = e.trim() === "" ? X : e, o = i.trim() === "" ? Q : i;
|
|
1936
1936
|
return {
|
|
1937
1937
|
kind: "element",
|
|
1938
1938
|
tag: W,
|
|
@@ -1958,16 +1958,16 @@ function Tt({
|
|
|
1958
1958
|
]
|
|
1959
1959
|
};
|
|
1960
1960
|
}
|
|
1961
|
-
function
|
|
1962
|
-
return h(
|
|
1961
|
+
function Qe(t) {
|
|
1962
|
+
return h(_t(t));
|
|
1963
1963
|
}
|
|
1964
|
-
function
|
|
1964
|
+
function Dt() {
|
|
1965
1965
|
if (customElements.get(W)) return;
|
|
1966
1966
|
class t extends HTMLElement {
|
|
1967
1967
|
#t = (e) => {
|
|
1968
1968
|
const i = e.target;
|
|
1969
1969
|
if (!(i instanceof Element) || !i.closest("button")) return;
|
|
1970
|
-
const r =
|
|
1970
|
+
const r = Tt(this.#u());
|
|
1971
1971
|
r === this.#r() ? this.#d() : this.#n(r), this.#a(), this.dispatchEvent(
|
|
1972
1972
|
new CustomEvent(mt, {
|
|
1973
1973
|
bubbles: !0,
|
|
@@ -2031,7 +2031,7 @@ function At() {
|
|
|
2031
2031
|
}
|
|
2032
2032
|
customElements.define(W, t);
|
|
2033
2033
|
}
|
|
2034
|
-
const
|
|
2034
|
+
const Ye = {
|
|
2035
2035
|
name: "lightswitch",
|
|
2036
2036
|
description: "Use `lightswitch` to let users toggle between light and dark themes.",
|
|
2037
2037
|
output: { element: W, class: "set-lightswitch" },
|
|
@@ -2047,12 +2047,12 @@ const We = {
|
|
|
2047
2047
|
type: { kind: "string" }
|
|
2048
2048
|
},
|
|
2049
2049
|
labelDark: {
|
|
2050
|
-
default:
|
|
2050
|
+
default: X,
|
|
2051
2051
|
description: "Accessible label of the switch-to-dark action.",
|
|
2052
2052
|
type: { kind: "string" }
|
|
2053
2053
|
},
|
|
2054
2054
|
labelLight: {
|
|
2055
|
-
default:
|
|
2055
|
+
default: Q,
|
|
2056
2056
|
description: "Accessible label of the switch-to-light action.",
|
|
2057
2057
|
type: { kind: "string" }
|
|
2058
2058
|
},
|
|
@@ -2103,7 +2103,7 @@ const We = {
|
|
|
2103
2103
|
]
|
|
2104
2104
|
}
|
|
2105
2105
|
}, U = "set-menu", kt = "set-menu-choose";
|
|
2106
|
-
function
|
|
2106
|
+
function Ht({
|
|
2107
2107
|
align: t = "start",
|
|
2108
2108
|
id: n,
|
|
2109
2109
|
items: e,
|
|
@@ -2112,18 +2112,18 @@ function _t({
|
|
|
2112
2112
|
triggerIconMirrored: a,
|
|
2113
2113
|
triggerIconPlacement: d,
|
|
2114
2114
|
triggerLabel: o,
|
|
2115
|
-
triggerLabelVisibility:
|
|
2115
|
+
triggerLabelVisibility: s
|
|
2116
2116
|
}) {
|
|
2117
|
-
const
|
|
2118
|
-
if (!
|
|
2117
|
+
const l = n.trim();
|
|
2118
|
+
if (!l)
|
|
2119
2119
|
throw new Error("id must be a non-empty string.");
|
|
2120
|
-
if (!I(
|
|
2120
|
+
if (!I(l))
|
|
2121
2121
|
throw new Error(
|
|
2122
2122
|
"id must start with a letter and contain only letters, numbers, '_', '-', or ':'."
|
|
2123
2123
|
);
|
|
2124
2124
|
if (!Array.isArray(e))
|
|
2125
2125
|
throw new Error("items must be an array.");
|
|
2126
|
-
const p = `${
|
|
2126
|
+
const p = `${l}-button`, c = `${l}-popup`, u = e.map((k) => ({
|
|
2127
2127
|
kind: "element",
|
|
2128
2128
|
tag: "button",
|
|
2129
2129
|
attrs: {
|
|
@@ -2142,7 +2142,7 @@ function _t({
|
|
|
2142
2142
|
class: "set-menu",
|
|
2143
2143
|
"data-align": t === "start" ? void 0 : t,
|
|
2144
2144
|
"data-size": i,
|
|
2145
|
-
id:
|
|
2145
|
+
id: l
|
|
2146
2146
|
},
|
|
2147
2147
|
children: [
|
|
2148
2148
|
{
|
|
@@ -2160,7 +2160,7 @@ function _t({
|
|
|
2160
2160
|
iconPlacement: d,
|
|
2161
2161
|
id: p,
|
|
2162
2162
|
label: o,
|
|
2163
|
-
labelVisibility:
|
|
2163
|
+
labelVisibility: s,
|
|
2164
2164
|
size: i,
|
|
2165
2165
|
tone: "neutral",
|
|
2166
2166
|
type: "button"
|
|
@@ -2182,10 +2182,10 @@ function _t({
|
|
|
2182
2182
|
]
|
|
2183
2183
|
};
|
|
2184
2184
|
}
|
|
2185
|
-
function
|
|
2186
|
-
return h(
|
|
2185
|
+
function Je(t) {
|
|
2186
|
+
return h(Ht(t));
|
|
2187
2187
|
}
|
|
2188
|
-
function
|
|
2188
|
+
function Vt() {
|
|
2189
2189
|
if (customElements.get(U)) return;
|
|
2190
2190
|
class t extends HTMLElement {
|
|
2191
2191
|
#t;
|
|
@@ -2300,7 +2300,7 @@ function Dt() {
|
|
|
2300
2300
|
}
|
|
2301
2301
|
customElements.define(U, t);
|
|
2302
2302
|
}
|
|
2303
|
-
const
|
|
2303
|
+
const ti = {
|
|
2304
2304
|
name: "menu",
|
|
2305
2305
|
description: "Use `menu` to show a list of actions from a trigger button.",
|
|
2306
2306
|
output: {
|
|
@@ -2439,7 +2439,7 @@ const $e = {
|
|
|
2439
2439
|
]
|
|
2440
2440
|
}
|
|
2441
2441
|
}, Y = "Menu";
|
|
2442
|
-
function
|
|
2442
|
+
function Nt({
|
|
2443
2443
|
controlsId: t,
|
|
2444
2444
|
expanded: n,
|
|
2445
2445
|
id: e,
|
|
@@ -2481,10 +2481,10 @@ function Ht({
|
|
|
2481
2481
|
]
|
|
2482
2482
|
};
|
|
2483
2483
|
}
|
|
2484
|
-
function
|
|
2485
|
-
return h(
|
|
2484
|
+
function Ot(t = {}) {
|
|
2485
|
+
return h(Nt(t));
|
|
2486
2486
|
}
|
|
2487
|
-
const
|
|
2487
|
+
const ei = {
|
|
2488
2488
|
name: "expander",
|
|
2489
2489
|
description: "Use `expander` as a toggle for disclosure regions such as menus.",
|
|
2490
2490
|
output: { element: "button", class: "set-expander" },
|
|
@@ -2550,7 +2550,7 @@ const Ge = {
|
|
|
2550
2550
|
]
|
|
2551
2551
|
}
|
|
2552
2552
|
}, $ = "set-nav", rt = "data-set-scroll-locked";
|
|
2553
|
-
function
|
|
2553
|
+
function Pt({
|
|
2554
2554
|
collapsible: t,
|
|
2555
2555
|
contentId: n,
|
|
2556
2556
|
expanderLabel: e,
|
|
@@ -2560,7 +2560,7 @@ function Vt({
|
|
|
2560
2560
|
label: d,
|
|
2561
2561
|
size: o = "md"
|
|
2562
2562
|
}) {
|
|
2563
|
-
const
|
|
2563
|
+
const s = g(r), l = e?.trim() || void 0, p = n?.trim();
|
|
2564
2564
|
if (t && !p)
|
|
2565
2565
|
throw new Error(
|
|
2566
2566
|
"contentId must be a non-empty string when collapsible is set."
|
|
@@ -2592,10 +2592,10 @@ function Vt({
|
|
|
2592
2592
|
attrs: {
|
|
2593
2593
|
class: "set-nav",
|
|
2594
2594
|
"data-collapsible": t,
|
|
2595
|
-
"data-expander-label": t &&
|
|
2595
|
+
"data-expander-label": t && l ? l : void 0,
|
|
2596
2596
|
"data-expander-position": t ? i : void 0,
|
|
2597
2597
|
"data-size": o,
|
|
2598
|
-
id:
|
|
2598
|
+
id: s
|
|
2599
2599
|
},
|
|
2600
2600
|
children: [
|
|
2601
2601
|
{
|
|
@@ -2627,10 +2627,10 @@ function Vt({
|
|
|
2627
2627
|
]
|
|
2628
2628
|
};
|
|
2629
2629
|
}
|
|
2630
|
-
function
|
|
2631
|
-
return h(
|
|
2630
|
+
function ii(t) {
|
|
2631
|
+
return h(Pt(t));
|
|
2632
2632
|
}
|
|
2633
|
-
function
|
|
2633
|
+
function Bt() {
|
|
2634
2634
|
if (customElements.get($)) return;
|
|
2635
2635
|
class t extends HTMLElement {
|
|
2636
2636
|
#t;
|
|
@@ -2657,7 +2657,7 @@ function Ot() {
|
|
|
2657
2657
|
const i = e.querySelector(".content");
|
|
2658
2658
|
i && e.insertAdjacentHTML(
|
|
2659
2659
|
"afterbegin",
|
|
2660
|
-
`<div data-part="expander">${
|
|
2660
|
+
`<div data-part="expander">${Ot({
|
|
2661
2661
|
controlsId: i.id || void 0,
|
|
2662
2662
|
label: this.getAttribute("data-expander-label") || void 0,
|
|
2663
2663
|
size: this.getAttribute("data-size") === "sm" ? "md" : "lg"
|
|
@@ -2709,7 +2709,7 @@ function Ot() {
|
|
|
2709
2709
|
}
|
|
2710
2710
|
customElements.define($, t);
|
|
2711
2711
|
}
|
|
2712
|
-
const
|
|
2712
|
+
const ni = {
|
|
2713
2713
|
name: "nav",
|
|
2714
2714
|
description: "Use `nav` to render a primary navigation list.",
|
|
2715
2715
|
output: { element: $, class: "set-nav" },
|
|
@@ -2825,7 +2825,7 @@ const Fe = {
|
|
|
2825
2825
|
]
|
|
2826
2826
|
}
|
|
2827
2827
|
}, G = "set-range";
|
|
2828
|
-
function
|
|
2828
|
+
function Rt({
|
|
2829
2829
|
description: t,
|
|
2830
2830
|
disabled: n,
|
|
2831
2831
|
id: e,
|
|
@@ -2834,8 +2834,8 @@ function Pt({
|
|
|
2834
2834
|
max: a,
|
|
2835
2835
|
min: d,
|
|
2836
2836
|
name: o,
|
|
2837
|
-
size:
|
|
2838
|
-
step:
|
|
2837
|
+
size: s = "md",
|
|
2838
|
+
step: l,
|
|
2839
2839
|
value: p
|
|
2840
2840
|
}) {
|
|
2841
2841
|
const c = e.trim(), u = t?.trim(), k = o?.trim();
|
|
@@ -2876,7 +2876,7 @@ function Pt({
|
|
|
2876
2876
|
max: a != null ? String(a) : void 0,
|
|
2877
2877
|
min: d != null ? String(d) : void 0,
|
|
2878
2878
|
name: k || void 0,
|
|
2879
|
-
step:
|
|
2879
|
+
step: l != null ? String(l) : void 0,
|
|
2880
2880
|
type: "range",
|
|
2881
2881
|
value: p != null ? String(p) : void 0
|
|
2882
2882
|
},
|
|
@@ -2894,15 +2894,15 @@ function Pt({
|
|
|
2894
2894
|
attrs: {
|
|
2895
2895
|
class: "set-range",
|
|
2896
2896
|
"data-inline-size": i === "fit" ? "fit" : void 0,
|
|
2897
|
-
"data-size":
|
|
2897
|
+
"data-size": s
|
|
2898
2898
|
},
|
|
2899
2899
|
children: m
|
|
2900
2900
|
};
|
|
2901
2901
|
}
|
|
2902
|
-
function
|
|
2903
|
-
return h(
|
|
2902
|
+
function ri(t) {
|
|
2903
|
+
return h(Rt(t));
|
|
2904
2904
|
}
|
|
2905
|
-
function
|
|
2905
|
+
function Wt() {
|
|
2906
2906
|
if (customElements.get(G)) return;
|
|
2907
2907
|
class t extends HTMLElement {
|
|
2908
2908
|
#t;
|
|
@@ -2959,7 +2959,7 @@ function Bt() {
|
|
|
2959
2959
|
}
|
|
2960
2960
|
customElements.define(G, t);
|
|
2961
2961
|
}
|
|
2962
|
-
const
|
|
2962
|
+
const ai = {
|
|
2963
2963
|
name: "range",
|
|
2964
2964
|
description: "Use `range` to let users pick a numeric value along a scale.",
|
|
2965
2965
|
output: { element: G, class: "set-range" },
|
|
@@ -3091,8 +3091,8 @@ const Ke = {
|
|
|
3091
3091
|
}
|
|
3092
3092
|
]
|
|
3093
3093
|
}
|
|
3094
|
-
}, Z = "set-sidebar",
|
|
3095
|
-
function
|
|
3094
|
+
}, Z = "set-sidebar", Ut = "(min-width: 68em)", _ = "Collapse sidebar", J = "Open sidebar";
|
|
3095
|
+
function $t(t, n) {
|
|
3096
3096
|
return `<div data-part="close">${et({
|
|
3097
3097
|
appearance: "text",
|
|
3098
3098
|
icon: "panel-left",
|
|
@@ -3104,7 +3104,7 @@ function Wt(t, n) {
|
|
|
3104
3104
|
type: "button"
|
|
3105
3105
|
})}</div>`;
|
|
3106
3106
|
}
|
|
3107
|
-
function
|
|
3107
|
+
function Gt({
|
|
3108
3108
|
aboveNotebook: t = "persistent",
|
|
3109
3109
|
buttonSize: n = "md",
|
|
3110
3110
|
children: e,
|
|
@@ -3113,12 +3113,12 @@ function Ut({
|
|
|
3113
3113
|
header: a,
|
|
3114
3114
|
id: d,
|
|
3115
3115
|
surface: o,
|
|
3116
|
-
triggerLabel:
|
|
3116
|
+
triggerLabel: s = J
|
|
3117
3117
|
}) {
|
|
3118
|
-
const
|
|
3119
|
-
if (!
|
|
3118
|
+
const l = d.trim(), p = i.trim() || _, c = s.trim() || J;
|
|
3119
|
+
if (!l)
|
|
3120
3120
|
throw new Error("id must be a non-empty string.");
|
|
3121
|
-
if (!I(
|
|
3121
|
+
if (!I(l))
|
|
3122
3122
|
throw new Error(
|
|
3123
3123
|
"id must start with a letter and contain only letters, numbers, '_', '-', or ':'."
|
|
3124
3124
|
);
|
|
@@ -3142,7 +3142,7 @@ function Ut({
|
|
|
3142
3142
|
attrs: { class: "footer" },
|
|
3143
3143
|
children: [{ kind: "raw", html: r }]
|
|
3144
3144
|
});
|
|
3145
|
-
const k = `${
|
|
3145
|
+
const k = `${l}-panel`;
|
|
3146
3146
|
return {
|
|
3147
3147
|
kind: "element",
|
|
3148
3148
|
tag: Z,
|
|
@@ -3151,7 +3151,7 @@ function Ut({
|
|
|
3151
3151
|
"data-above-notebook": t,
|
|
3152
3152
|
"data-collapse-label": p !== _ ? p : void 0,
|
|
3153
3153
|
"data-button-size": n,
|
|
3154
|
-
id:
|
|
3154
|
+
id: l
|
|
3155
3155
|
},
|
|
3156
3156
|
children: [
|
|
3157
3157
|
{
|
|
@@ -3193,10 +3193,10 @@ function Ut({
|
|
|
3193
3193
|
]
|
|
3194
3194
|
};
|
|
3195
3195
|
}
|
|
3196
|
-
function
|
|
3197
|
-
return h(
|
|
3196
|
+
function oi(t) {
|
|
3197
|
+
return h(Gt(t));
|
|
3198
3198
|
}
|
|
3199
|
-
function
|
|
3199
|
+
function Zt() {
|
|
3200
3200
|
if (customElements.get(Z)) return;
|
|
3201
3201
|
class t extends HTMLElement {
|
|
3202
3202
|
#t;
|
|
@@ -3244,7 +3244,7 @@ function $t() {
|
|
|
3244
3244
|
const i = e.querySelector(".header"), r = this.getAttribute("data-collapse-label") || _, a = this.getAttribute("data-button-size") ?? "md";
|
|
3245
3245
|
i?.insertAdjacentHTML(
|
|
3246
3246
|
"beforeend",
|
|
3247
|
-
|
|
3247
|
+
$t(r, a)
|
|
3248
3248
|
);
|
|
3249
3249
|
}
|
|
3250
3250
|
#o() {
|
|
@@ -3319,7 +3319,7 @@ function $t() {
|
|
|
3319
3319
|
}
|
|
3320
3320
|
#f() {
|
|
3321
3321
|
const e = this.ownerDocument.defaultView;
|
|
3322
|
-
e && (typeof e.matchMedia == "function" && (this.#t = e.matchMedia(
|
|
3322
|
+
e && (typeof e.matchMedia == "function" && (this.#t = e.matchMedia(Ut), this.#n = () => {
|
|
3323
3323
|
this.#g();
|
|
3324
3324
|
}, this.#t.addEventListener("change", this.#n), this.#g()), this.#e = (i) => {
|
|
3325
3325
|
const r = i.target;
|
|
@@ -3348,7 +3348,7 @@ function $t() {
|
|
|
3348
3348
|
}
|
|
3349
3349
|
customElements.define(Z, t);
|
|
3350
3350
|
}
|
|
3351
|
-
const
|
|
3351
|
+
const di = {
|
|
3352
3352
|
name: "sidebar",
|
|
3353
3353
|
description: "Use `sidebar` for a side panel alongside main content.",
|
|
3354
3354
|
output: {
|
|
@@ -3473,7 +3473,7 @@ const Xe = {
|
|
|
3473
3473
|
]
|
|
3474
3474
|
}
|
|
3475
3475
|
}, F = "set-video";
|
|
3476
|
-
function
|
|
3476
|
+
function Ft({
|
|
3477
3477
|
autoPlay: t,
|
|
3478
3478
|
controls: n,
|
|
3479
3479
|
fit: e = "intrinsic",
|
|
@@ -3482,12 +3482,12 @@ function Gt({
|
|
|
3482
3482
|
loop: a,
|
|
3483
3483
|
muted: d,
|
|
3484
3484
|
playsInline: o,
|
|
3485
|
-
poster:
|
|
3486
|
-
preload:
|
|
3485
|
+
poster: s,
|
|
3486
|
+
preload: l,
|
|
3487
3487
|
src: p,
|
|
3488
3488
|
width: c
|
|
3489
3489
|
}) {
|
|
3490
|
-
const u = g(r), k = p.trim(), b =
|
|
3490
|
+
const u = g(r), k = p.trim(), b = s?.trim();
|
|
3491
3491
|
if (!k)
|
|
3492
3492
|
throw new Error("src must be a non-empty string.");
|
|
3493
3493
|
const m = {
|
|
@@ -3502,7 +3502,7 @@ function Gt({
|
|
|
3502
3502
|
muted: !!d,
|
|
3503
3503
|
playsinline: !!o,
|
|
3504
3504
|
poster: b || void 0,
|
|
3505
|
-
preload:
|
|
3505
|
+
preload: l,
|
|
3506
3506
|
src: k,
|
|
3507
3507
|
width: c ? String(c) : void 0
|
|
3508
3508
|
},
|
|
@@ -3519,11 +3519,11 @@ function Gt({
|
|
|
3519
3519
|
children: [m]
|
|
3520
3520
|
};
|
|
3521
3521
|
}
|
|
3522
|
-
function
|
|
3523
|
-
return h(
|
|
3522
|
+
function si(t) {
|
|
3523
|
+
return h(Ft(t));
|
|
3524
3524
|
}
|
|
3525
|
-
const
|
|
3526
|
-
function
|
|
3525
|
+
const jt = "(prefers-reduced-motion: reduce)";
|
|
3526
|
+
function Kt() {
|
|
3527
3527
|
if (customElements.get(F)) return;
|
|
3528
3528
|
class t extends HTMLElement {
|
|
3529
3529
|
#t = !1;
|
|
@@ -3533,7 +3533,7 @@ function Ft() {
|
|
|
3533
3533
|
const e = this.querySelector("video");
|
|
3534
3534
|
if (!e || (this.#t ||= e.hasAttribute("autoplay"), !this.#t)) return;
|
|
3535
3535
|
const i = this.ownerDocument.defaultView;
|
|
3536
|
-
!i || typeof i.matchMedia != "function" || (this.#e = i.matchMedia(
|
|
3536
|
+
!i || typeof i.matchMedia != "function" || (this.#e = i.matchMedia(jt), this.#i = () => {
|
|
3537
3537
|
this.#n();
|
|
3538
3538
|
}, this.#e.addEventListener("change", this.#i), this.#n());
|
|
3539
3539
|
}
|
|
@@ -3548,7 +3548,7 @@ function Ft() {
|
|
|
3548
3548
|
}
|
|
3549
3549
|
customElements.define(F, t);
|
|
3550
3550
|
}
|
|
3551
|
-
const
|
|
3551
|
+
const li = {
|
|
3552
3552
|
name: "video",
|
|
3553
3553
|
description: "Use `video` to render a video with intrinsic or fluid fit and native playback behavior.",
|
|
3554
3554
|
output: { element: F, class: "set-video" },
|
|
@@ -3676,17 +3676,17 @@ const Je = {
|
|
|
3676
3676
|
]
|
|
3677
3677
|
}
|
|
3678
3678
|
};
|
|
3679
|
-
function
|
|
3679
|
+
function Xt(t) {
|
|
3680
3680
|
return t ? /[A-Za-z]/.test(t) : !1;
|
|
3681
3681
|
}
|
|
3682
|
-
function
|
|
3682
|
+
function Qt(t) {
|
|
3683
3683
|
return /^[a-z]/.test(t);
|
|
3684
3684
|
}
|
|
3685
3685
|
function T(t) {
|
|
3686
3686
|
const n = t.charAt(0);
|
|
3687
|
-
return
|
|
3687
|
+
return Xt(n) ? n : void 0;
|
|
3688
3688
|
}
|
|
3689
|
-
function
|
|
3689
|
+
function Yt(t) {
|
|
3690
3690
|
const n = D(t);
|
|
3691
3691
|
if (!n) return;
|
|
3692
3692
|
const e = n.split(" "), i = T(e[0]);
|
|
@@ -3694,7 +3694,7 @@ function Qt(t) {
|
|
|
3694
3694
|
const r = [i.toUpperCase()];
|
|
3695
3695
|
if (e.length === 1)
|
|
3696
3696
|
return r[0];
|
|
3697
|
-
const a = e.slice(1).find(
|
|
3697
|
+
const a = e.slice(1).find(Qt);
|
|
3698
3698
|
if (a) {
|
|
3699
3699
|
const o = T(a);
|
|
3700
3700
|
return o ? `${r[0]}${o}` : void 0;
|
|
@@ -3703,22 +3703,22 @@ function Qt(t) {
|
|
|
3703
3703
|
const o = T(e[1]);
|
|
3704
3704
|
if (!o) return;
|
|
3705
3705
|
r.push(o);
|
|
3706
|
-
const
|
|
3707
|
-
if (
|
|
3708
|
-
const
|
|
3709
|
-
|
|
3706
|
+
const s = e[1].split("-").filter(Boolean);
|
|
3707
|
+
if (s.length === 2) {
|
|
3708
|
+
const l = T(s[1]);
|
|
3709
|
+
l && r.push(l);
|
|
3710
3710
|
}
|
|
3711
3711
|
return r.slice(0, 3).join("");
|
|
3712
3712
|
}
|
|
3713
3713
|
if (e.length === 3) {
|
|
3714
|
-
const o = T(e[1]),
|
|
3715
|
-
return !o || !
|
|
3714
|
+
const o = T(e[1]), s = T(e[2]);
|
|
3715
|
+
return !o || !s ? void 0 : (r.push(o, s), r.slice(0, 3).join(""));
|
|
3716
3716
|
}
|
|
3717
3717
|
const d = T(e.at(-1) || "");
|
|
3718
3718
|
if (d)
|
|
3719
3719
|
return r.push(d), r.slice(0, 3).join("");
|
|
3720
3720
|
}
|
|
3721
|
-
const
|
|
3721
|
+
const Jt = {
|
|
3722
3722
|
bot: "robot-1",
|
|
3723
3723
|
organization: "city-6",
|
|
3724
3724
|
person: "user-1",
|
|
@@ -3734,13 +3734,13 @@ const Xt = {
|
|
|
3734
3734
|
"08",
|
|
3735
3735
|
"09"
|
|
3736
3736
|
];
|
|
3737
|
-
function
|
|
3737
|
+
function te(t) {
|
|
3738
3738
|
let n = 5381;
|
|
3739
3739
|
for (const e of t)
|
|
3740
3740
|
n = n * 33 ^ e.charCodeAt(0);
|
|
3741
3741
|
return n >>> 0;
|
|
3742
3742
|
}
|
|
3743
|
-
function
|
|
3743
|
+
function ee(t) {
|
|
3744
3744
|
if (t == null) return;
|
|
3745
3745
|
const n = D(t);
|
|
3746
3746
|
if (n) {
|
|
@@ -3751,7 +3751,7 @@ function Jt(t) {
|
|
|
3751
3751
|
return n;
|
|
3752
3752
|
}
|
|
3753
3753
|
}
|
|
3754
|
-
function
|
|
3754
|
+
function ie({
|
|
3755
3755
|
alt: t,
|
|
3756
3756
|
ariaHidden: n,
|
|
3757
3757
|
name: e
|
|
@@ -3759,18 +3759,18 @@ function te({
|
|
|
3759
3759
|
if (!n)
|
|
3760
3760
|
return D(t) || D(e) || "Avatar";
|
|
3761
3761
|
}
|
|
3762
|
-
function
|
|
3762
|
+
function ne({
|
|
3763
3763
|
color: t,
|
|
3764
3764
|
name: n
|
|
3765
3765
|
}) {
|
|
3766
3766
|
if (t) return t;
|
|
3767
3767
|
if (n) {
|
|
3768
|
-
const e =
|
|
3768
|
+
const e = te(n) % at.length;
|
|
3769
3769
|
return at[e];
|
|
3770
3770
|
}
|
|
3771
3771
|
return "neutral";
|
|
3772
3772
|
}
|
|
3773
|
-
function
|
|
3773
|
+
function re({
|
|
3774
3774
|
alt: t,
|
|
3775
3775
|
ariaHidden: n,
|
|
3776
3776
|
color: e,
|
|
@@ -3779,13 +3779,13 @@ function ie({
|
|
|
3779
3779
|
initials: a,
|
|
3780
3780
|
name: d,
|
|
3781
3781
|
size: o = "md",
|
|
3782
|
-
src:
|
|
3782
|
+
src: s
|
|
3783
3783
|
}) {
|
|
3784
|
-
const
|
|
3784
|
+
const l = g(r), p = ee(a), c = D(d), u = D(s), k = ie({
|
|
3785
3785
|
alt: t,
|
|
3786
3786
|
ariaHidden: n,
|
|
3787
3787
|
name: c
|
|
3788
|
-
}), b = p ||
|
|
3788
|
+
}), b = p || Yt(c), m = !!u, f = ne({
|
|
3789
3789
|
color: e,
|
|
3790
3790
|
name: c
|
|
3791
3791
|
}), E = {
|
|
@@ -3795,7 +3795,7 @@ function ie({
|
|
|
3795
3795
|
"data-color": f === "neutral" ? void 0 : f,
|
|
3796
3796
|
"data-entity": i === "person" ? void 0 : i,
|
|
3797
3797
|
"data-size": o,
|
|
3798
|
-
id:
|
|
3798
|
+
id: l,
|
|
3799
3799
|
role: !n && !m ? "img" : void 0
|
|
3800
3800
|
};
|
|
3801
3801
|
let S;
|
|
@@ -3820,7 +3820,7 @@ function ie({
|
|
|
3820
3820
|
children: [
|
|
3821
3821
|
H({
|
|
3822
3822
|
ariaHidden: !0,
|
|
3823
|
-
name:
|
|
3823
|
+
name: Jt[i],
|
|
3824
3824
|
size: "fill"
|
|
3825
3825
|
})
|
|
3826
3826
|
]
|
|
@@ -3831,10 +3831,10 @@ function ie({
|
|
|
3831
3831
|
children: [S]
|
|
3832
3832
|
};
|
|
3833
3833
|
}
|
|
3834
|
-
function
|
|
3835
|
-
return h(
|
|
3834
|
+
function pi(t) {
|
|
3835
|
+
return h(re(t));
|
|
3836
3836
|
}
|
|
3837
|
-
const
|
|
3837
|
+
const ci = {
|
|
3838
3838
|
name: "avatar",
|
|
3839
3839
|
description: "Use `avatar` to visually represent a person, team, or entity.",
|
|
3840
3840
|
output: { element: "span", class: "set-avatar" },
|
|
@@ -3941,7 +3941,7 @@ const ei = {
|
|
|
3941
3941
|
]
|
|
3942
3942
|
}
|
|
3943
3943
|
};
|
|
3944
|
-
function
|
|
3944
|
+
function ae({
|
|
3945
3945
|
floating: t,
|
|
3946
3946
|
id: n,
|
|
3947
3947
|
label: e,
|
|
@@ -3962,10 +3962,10 @@ function ne({
|
|
|
3962
3962
|
children: [{ kind: "text", value: e }]
|
|
3963
3963
|
};
|
|
3964
3964
|
}
|
|
3965
|
-
function
|
|
3966
|
-
return h(
|
|
3965
|
+
function ui(t) {
|
|
3966
|
+
return h(ae(t));
|
|
3967
3967
|
}
|
|
3968
|
-
const
|
|
3968
|
+
const hi = {
|
|
3969
3969
|
name: "badge",
|
|
3970
3970
|
description: "Use `badge` to annotate content with a short label.",
|
|
3971
3971
|
output: { element: "span", class: "set-badge" },
|
|
@@ -4043,8 +4043,8 @@ function j({
|
|
|
4043
4043
|
measured: a,
|
|
4044
4044
|
monospaced: d,
|
|
4045
4045
|
responsive: o,
|
|
4046
|
-
size:
|
|
4047
|
-
tone:
|
|
4046
|
+
size: s = "md",
|
|
4047
|
+
tone: l = "default"
|
|
4048
4048
|
}) {
|
|
4049
4049
|
const p = g(i), c = n === "p" ? "p" : "span", u = c === "p", k = u ? t ?? "start" : void 0;
|
|
4050
4050
|
return {
|
|
@@ -4057,17 +4057,17 @@ function j({
|
|
|
4057
4057
|
"data-measured": u ? a ?? !0 : void 0,
|
|
4058
4058
|
"data-monospaced": d,
|
|
4059
4059
|
"data-responsive": o,
|
|
4060
|
-
"data-size":
|
|
4061
|
-
"data-tone":
|
|
4060
|
+
"data-size": s,
|
|
4061
|
+
"data-tone": l === "muted" ? "muted" : void 0,
|
|
4062
4062
|
id: p
|
|
4063
4063
|
},
|
|
4064
4064
|
children: [{ kind: "raw", html: e }]
|
|
4065
4065
|
};
|
|
4066
4066
|
}
|
|
4067
|
-
function
|
|
4067
|
+
function mi(t) {
|
|
4068
4068
|
return h(j(t));
|
|
4069
4069
|
}
|
|
4070
|
-
const
|
|
4070
|
+
const ki = {
|
|
4071
4071
|
name: "text",
|
|
4072
4072
|
description: "Use `text` for inline or paragraph body copy.",
|
|
4073
4073
|
output: {
|
|
@@ -4191,7 +4191,7 @@ const ai = {
|
|
|
4191
4191
|
]
|
|
4192
4192
|
}
|
|
4193
4193
|
};
|
|
4194
|
-
function
|
|
4194
|
+
function oe({
|
|
4195
4195
|
align: t = "start",
|
|
4196
4196
|
attribution: n,
|
|
4197
4197
|
id: e,
|
|
@@ -4241,10 +4241,10 @@ function re({
|
|
|
4241
4241
|
]
|
|
4242
4242
|
};
|
|
4243
4243
|
}
|
|
4244
|
-
function
|
|
4245
|
-
return h(
|
|
4244
|
+
function gi(t) {
|
|
4245
|
+
return h(oe(t));
|
|
4246
4246
|
}
|
|
4247
|
-
const
|
|
4247
|
+
const bi = {
|
|
4248
4248
|
name: "blockquote",
|
|
4249
4249
|
description: "Use `blockquote` to display a quote with attribution.",
|
|
4250
4250
|
output: { element: "figure", class: "set-blockquote" },
|
|
@@ -4313,7 +4313,7 @@ const di = {
|
|
|
4313
4313
|
]
|
|
4314
4314
|
}
|
|
4315
4315
|
};
|
|
4316
|
-
function
|
|
4316
|
+
function de({
|
|
4317
4317
|
background: t = "default",
|
|
4318
4318
|
border: n,
|
|
4319
4319
|
children: e,
|
|
@@ -4322,9 +4322,9 @@ function ae({
|
|
|
4322
4322
|
paddingInline: a = "md",
|
|
4323
4323
|
radius: d,
|
|
4324
4324
|
responsive: o,
|
|
4325
|
-
surface:
|
|
4325
|
+
surface: s
|
|
4326
4326
|
}) {
|
|
4327
|
-
const
|
|
4327
|
+
const l = g(i);
|
|
4328
4328
|
return {
|
|
4329
4329
|
kind: "element",
|
|
4330
4330
|
tag: "div",
|
|
@@ -4332,20 +4332,20 @@ function ae({
|
|
|
4332
4332
|
class: "set-box",
|
|
4333
4333
|
"data-background": t === "default" ? void 0 : t,
|
|
4334
4334
|
"data-border": n,
|
|
4335
|
-
"data-set-surface":
|
|
4335
|
+
"data-set-surface": s,
|
|
4336
4336
|
"data-padding-block": r,
|
|
4337
4337
|
"data-padding-inline": a,
|
|
4338
4338
|
"data-radius": d,
|
|
4339
4339
|
"data-responsive": o,
|
|
4340
|
-
id:
|
|
4340
|
+
id: l
|
|
4341
4341
|
},
|
|
4342
4342
|
children: e ? [{ kind: "raw", html: e }] : []
|
|
4343
4343
|
};
|
|
4344
4344
|
}
|
|
4345
|
-
function
|
|
4346
|
-
return h(
|
|
4345
|
+
function vi(t) {
|
|
4346
|
+
return h(de(t));
|
|
4347
4347
|
}
|
|
4348
|
-
const
|
|
4348
|
+
const fi = {
|
|
4349
4349
|
name: "box",
|
|
4350
4350
|
description: "Use `box` to inset content.",
|
|
4351
4351
|
output: { element: "div", class: "set-box" },
|
|
@@ -4458,7 +4458,7 @@ const li = {
|
|
|
4458
4458
|
]
|
|
4459
4459
|
}
|
|
4460
4460
|
};
|
|
4461
|
-
function
|
|
4461
|
+
function se({
|
|
4462
4462
|
description: t,
|
|
4463
4463
|
headingLevel: n,
|
|
4464
4464
|
href: e,
|
|
@@ -4467,7 +4467,7 @@ function oe({
|
|
|
4467
4467
|
surface: a,
|
|
4468
4468
|
title: d
|
|
4469
4469
|
}) {
|
|
4470
|
-
const o = g(i),
|
|
4470
|
+
const o = g(i), s = n ? `h${n}` : "div", l = e ? [
|
|
4471
4471
|
{
|
|
4472
4472
|
kind: "element",
|
|
4473
4473
|
tag: "a",
|
|
@@ -4497,9 +4497,9 @@ function oe({
|
|
|
4497
4497
|
},
|
|
4498
4498
|
{
|
|
4499
4499
|
kind: "element",
|
|
4500
|
-
tag:
|
|
4500
|
+
tag: s,
|
|
4501
4501
|
attrs: { class: "title" },
|
|
4502
|
-
children:
|
|
4502
|
+
children: l
|
|
4503
4503
|
},
|
|
4504
4504
|
{
|
|
4505
4505
|
kind: "element",
|
|
@@ -4524,10 +4524,10 @@ function oe({
|
|
|
4524
4524
|
children: c
|
|
4525
4525
|
};
|
|
4526
4526
|
}
|
|
4527
|
-
function
|
|
4528
|
-
return h(
|
|
4527
|
+
function yi(t) {
|
|
4528
|
+
return h(se(t));
|
|
4529
4529
|
}
|
|
4530
|
-
const
|
|
4530
|
+
const wi = {
|
|
4531
4531
|
name: "card",
|
|
4532
4532
|
description: "Use `card` to display a summary for a single topic.",
|
|
4533
4533
|
output: {
|
|
@@ -4595,7 +4595,7 @@ const ci = {
|
|
|
4595
4595
|
]
|
|
4596
4596
|
}
|
|
4597
4597
|
};
|
|
4598
|
-
function
|
|
4598
|
+
function le({
|
|
4599
4599
|
checked: t,
|
|
4600
4600
|
description: n,
|
|
4601
4601
|
disabled: e,
|
|
@@ -4604,8 +4604,8 @@ function de({
|
|
|
4604
4604
|
label: a,
|
|
4605
4605
|
name: d,
|
|
4606
4606
|
required: o,
|
|
4607
|
-
size:
|
|
4608
|
-
value:
|
|
4607
|
+
size: s = "md",
|
|
4608
|
+
value: l
|
|
4609
4609
|
}) {
|
|
4610
4610
|
const p = g(i), c = n?.trim();
|
|
4611
4611
|
if (c && !p)
|
|
@@ -4629,7 +4629,7 @@ function de({
|
|
|
4629
4629
|
name: d || void 0,
|
|
4630
4630
|
required: !!o,
|
|
4631
4631
|
type: "checkbox",
|
|
4632
|
-
value:
|
|
4632
|
+
value: l || void 0
|
|
4633
4633
|
},
|
|
4634
4634
|
children: []
|
|
4635
4635
|
},
|
|
@@ -4650,14 +4650,14 @@ function de({
|
|
|
4650
4650
|
}), {
|
|
4651
4651
|
kind: "element",
|
|
4652
4652
|
tag: "div",
|
|
4653
|
-
attrs: { class: "set-checkbox", "data-size":
|
|
4653
|
+
attrs: { class: "set-checkbox", "data-size": s },
|
|
4654
4654
|
children: m
|
|
4655
4655
|
};
|
|
4656
4656
|
}
|
|
4657
|
-
function
|
|
4658
|
-
return h(
|
|
4657
|
+
function Si(t) {
|
|
4658
|
+
return h(le(t));
|
|
4659
4659
|
}
|
|
4660
|
-
const
|
|
4660
|
+
const xi = {
|
|
4661
4661
|
name: "checkbox",
|
|
4662
4662
|
description: "Use `checkbox` to let users toggle a single option on or off.",
|
|
4663
4663
|
output: { element: "div", class: "set-checkbox" },
|
|
@@ -4787,7 +4787,7 @@ const hi = {
|
|
|
4787
4787
|
]
|
|
4788
4788
|
}
|
|
4789
4789
|
};
|
|
4790
|
-
function
|
|
4790
|
+
function pe({
|
|
4791
4791
|
children: t,
|
|
4792
4792
|
gutter: n = "default",
|
|
4793
4793
|
id: e,
|
|
@@ -4806,10 +4806,10 @@ function se({
|
|
|
4806
4806
|
children: t ? [{ kind: "raw", html: t }] : []
|
|
4807
4807
|
};
|
|
4808
4808
|
}
|
|
4809
|
-
function
|
|
4810
|
-
return h(
|
|
4809
|
+
function Ei(t) {
|
|
4810
|
+
return h(pe(t));
|
|
4811
4811
|
}
|
|
4812
|
-
const
|
|
4812
|
+
const zi = {
|
|
4813
4813
|
name: "container",
|
|
4814
4814
|
description: "Use `container` to wrap page-level content.",
|
|
4815
4815
|
output: { element: "div", class: "set-container" },
|
|
@@ -4866,7 +4866,7 @@ const ki = {
|
|
|
4866
4866
|
]
|
|
4867
4867
|
}
|
|
4868
4868
|
};
|
|
4869
|
-
function
|
|
4869
|
+
function ce({
|
|
4870
4870
|
children: t,
|
|
4871
4871
|
id: n,
|
|
4872
4872
|
open: e,
|
|
@@ -4918,10 +4918,10 @@ function le({
|
|
|
4918
4918
|
]
|
|
4919
4919
|
};
|
|
4920
4920
|
}
|
|
4921
|
-
function
|
|
4922
|
-
return h(
|
|
4921
|
+
function Ci(t) {
|
|
4922
|
+
return h(ce(t));
|
|
4923
4923
|
}
|
|
4924
|
-
const
|
|
4924
|
+
const Li = {
|
|
4925
4925
|
name: "details",
|
|
4926
4926
|
description: "Use `details` to let users expand and collapse a section of content.",
|
|
4927
4927
|
output: { element: "details", class: "set-details" },
|
|
@@ -4980,7 +4980,7 @@ const bi = {
|
|
|
4980
4980
|
]
|
|
4981
4981
|
}
|
|
4982
4982
|
};
|
|
4983
|
-
function
|
|
4983
|
+
function ue({
|
|
4984
4984
|
id: t,
|
|
4985
4985
|
orientation: n = "horizontal",
|
|
4986
4986
|
tone: e = "default"
|
|
@@ -4999,10 +4999,10 @@ function pe({
|
|
|
4999
4999
|
children: []
|
|
5000
5000
|
};
|
|
5001
5001
|
}
|
|
5002
|
-
function
|
|
5003
|
-
return h(
|
|
5002
|
+
function Mi(t = {}) {
|
|
5003
|
+
return h(ue(t));
|
|
5004
5004
|
}
|
|
5005
|
-
const
|
|
5005
|
+
const qi = {
|
|
5006
5006
|
name: "divider",
|
|
5007
5007
|
description: "Use `divider` to separate sections with a rule.",
|
|
5008
5008
|
output: {
|
|
@@ -5073,14 +5073,14 @@ function gt({
|
|
|
5073
5073
|
legend: a,
|
|
5074
5074
|
inlineSize: d = "full"
|
|
5075
5075
|
}) {
|
|
5076
|
-
const o = n?.trim(),
|
|
5077
|
-
if (!
|
|
5076
|
+
const o = n?.trim(), s = i.trim();
|
|
5077
|
+
if (!s)
|
|
5078
5078
|
throw new Error("id must be a non-empty string.");
|
|
5079
|
-
if (!I(
|
|
5079
|
+
if (!I(s))
|
|
5080
5080
|
throw new Error(
|
|
5081
5081
|
"id must start with a letter and contain only letters, numbers, '_', '-', or ':'."
|
|
5082
5082
|
);
|
|
5083
|
-
const
|
|
5083
|
+
const l = o ? `${s}-description` : void 0, p = !!e, c = !p && !!r, u = [
|
|
5084
5084
|
{
|
|
5085
5085
|
kind: "element",
|
|
5086
5086
|
tag: "legend",
|
|
@@ -5091,26 +5091,26 @@ function gt({
|
|
|
5091
5091
|
return o && u.push({
|
|
5092
5092
|
kind: "element",
|
|
5093
5093
|
tag: "p",
|
|
5094
|
-
attrs: { class: "description", id:
|
|
5094
|
+
attrs: { class: "description", id: l },
|
|
5095
5095
|
children: [{ kind: "text", value: o }]
|
|
5096
5096
|
}), t && u.push({ kind: "raw", html: t }), {
|
|
5097
5097
|
kind: "element",
|
|
5098
5098
|
tag: "fieldset",
|
|
5099
5099
|
attrs: {
|
|
5100
|
-
"aria-describedby": o ?
|
|
5100
|
+
"aria-describedby": o ? l : void 0,
|
|
5101
5101
|
"aria-invalid": c ? "true" : void 0,
|
|
5102
5102
|
class: "set-fieldset",
|
|
5103
5103
|
"data-inline-size": d === "fit" ? "fit" : void 0,
|
|
5104
5104
|
disabled: p,
|
|
5105
|
-
id:
|
|
5105
|
+
id: s
|
|
5106
5106
|
},
|
|
5107
5107
|
children: u
|
|
5108
5108
|
};
|
|
5109
5109
|
}
|
|
5110
|
-
function
|
|
5110
|
+
function Ii(t) {
|
|
5111
5111
|
return h(gt(t));
|
|
5112
5112
|
}
|
|
5113
|
-
const
|
|
5113
|
+
const Ti = {
|
|
5114
5114
|
name: "fieldset",
|
|
5115
5115
|
description: "Use `fieldset` to group related form controls under a legend.",
|
|
5116
5116
|
output: { element: "fieldset", class: "set-fieldset" },
|
|
@@ -5198,7 +5198,7 @@ const wi = {
|
|
|
5198
5198
|
]
|
|
5199
5199
|
}
|
|
5200
5200
|
};
|
|
5201
|
-
function
|
|
5201
|
+
function he({
|
|
5202
5202
|
align: t = "start",
|
|
5203
5203
|
caption: n,
|
|
5204
5204
|
children: e,
|
|
@@ -5232,10 +5232,10 @@ function ce({
|
|
|
5232
5232
|
]
|
|
5233
5233
|
};
|
|
5234
5234
|
}
|
|
5235
|
-
function
|
|
5236
|
-
return h(
|
|
5235
|
+
function Ai(t) {
|
|
5236
|
+
return h(he(t));
|
|
5237
5237
|
}
|
|
5238
|
-
const
|
|
5238
|
+
const _i = {
|
|
5239
5239
|
name: "figure",
|
|
5240
5240
|
description: "Use `figure` to present media with a caption.",
|
|
5241
5241
|
output: { element: "figure", class: "set-figure" },
|
|
@@ -5297,7 +5297,7 @@ const xi = {
|
|
|
5297
5297
|
if (t !== void 0)
|
|
5298
5298
|
return String(t);
|
|
5299
5299
|
};
|
|
5300
|
-
function
|
|
5300
|
+
function me({
|
|
5301
5301
|
children: t,
|
|
5302
5302
|
gap: n = "default",
|
|
5303
5303
|
id: e
|
|
@@ -5321,10 +5321,10 @@ function ue({
|
|
|
5321
5321
|
]
|
|
5322
5322
|
};
|
|
5323
5323
|
}
|
|
5324
|
-
function
|
|
5325
|
-
return h(
|
|
5324
|
+
function Di(t) {
|
|
5325
|
+
return h(me(t));
|
|
5326
5326
|
}
|
|
5327
|
-
function
|
|
5327
|
+
function ke({
|
|
5328
5328
|
align: t,
|
|
5329
5329
|
children: n,
|
|
5330
5330
|
colSpan: e,
|
|
@@ -5333,8 +5333,8 @@ function he({
|
|
|
5333
5333
|
colStart: a,
|
|
5334
5334
|
colStartNarrow: d,
|
|
5335
5335
|
colStartWide: o,
|
|
5336
|
-
id:
|
|
5337
|
-
justify:
|
|
5336
|
+
id: s,
|
|
5337
|
+
justify: l,
|
|
5338
5338
|
rowSpan: p,
|
|
5339
5339
|
rowSpanNarrow: c,
|
|
5340
5340
|
rowSpanWide: u,
|
|
@@ -5342,14 +5342,14 @@ function he({
|
|
|
5342
5342
|
rowStartNarrow: b,
|
|
5343
5343
|
rowStartWide: m
|
|
5344
5344
|
}) {
|
|
5345
|
-
const f = g(
|
|
5345
|
+
const f = g(s);
|
|
5346
5346
|
return {
|
|
5347
5347
|
kind: "element",
|
|
5348
5348
|
tag: "div",
|
|
5349
5349
|
attrs: {
|
|
5350
5350
|
class: "set-grid-item",
|
|
5351
5351
|
"data-align": t,
|
|
5352
|
-
"data-justify":
|
|
5352
|
+
"data-justify": l,
|
|
5353
5353
|
"data-col-span-narrow": L(i),
|
|
5354
5354
|
"data-col-start-narrow": L(d),
|
|
5355
5355
|
"data-col-span": L(e),
|
|
@@ -5367,10 +5367,10 @@ function he({
|
|
|
5367
5367
|
children: n ? [{ kind: "raw", html: n }] : []
|
|
5368
5368
|
};
|
|
5369
5369
|
}
|
|
5370
|
-
function
|
|
5371
|
-
return h(
|
|
5370
|
+
function Hi(t) {
|
|
5371
|
+
return h(ke(t));
|
|
5372
5372
|
}
|
|
5373
|
-
const
|
|
5373
|
+
const Vi = {
|
|
5374
5374
|
name: "grid",
|
|
5375
5375
|
description: "Use `grid` to lay out content in a 12-column responsive grid.",
|
|
5376
5376
|
output: { element: "div", class: "set-grid" },
|
|
@@ -5416,7 +5416,7 @@ const Ci = {
|
|
|
5416
5416
|
min: 1,
|
|
5417
5417
|
max: 12,
|
|
5418
5418
|
integer: !0
|
|
5419
|
-
},
|
|
5419
|
+
}, Ni = {
|
|
5420
5420
|
name: "grid-item",
|
|
5421
5421
|
description: "Use `grid-item` to place content within a `grid` layout.",
|
|
5422
5422
|
output: { element: "div", class: "set-grid-item" },
|
|
@@ -5583,7 +5583,7 @@ const Ci = {
|
|
|
5583
5583
|
]
|
|
5584
5584
|
}
|
|
5585
5585
|
};
|
|
5586
|
-
function
|
|
5586
|
+
function ge({
|
|
5587
5587
|
align: t = "start",
|
|
5588
5588
|
id: n,
|
|
5589
5589
|
level: e,
|
|
@@ -5607,10 +5607,10 @@ function me({
|
|
|
5607
5607
|
children: [{ kind: "text", value: d }]
|
|
5608
5608
|
};
|
|
5609
5609
|
}
|
|
5610
|
-
function
|
|
5611
|
-
return h(
|
|
5610
|
+
function Oi(t) {
|
|
5611
|
+
return h(ge(t));
|
|
5612
5612
|
}
|
|
5613
|
-
const
|
|
5613
|
+
const Pi = {
|
|
5614
5614
|
name: "heading",
|
|
5615
5615
|
description: "Use `heading` to render heading text with consistent type.",
|
|
5616
5616
|
output: {
|
|
@@ -5705,7 +5705,7 @@ const qi = {
|
|
|
5705
5705
|
]
|
|
5706
5706
|
}
|
|
5707
5707
|
};
|
|
5708
|
-
function
|
|
5708
|
+
function be({
|
|
5709
5709
|
alt: t = "",
|
|
5710
5710
|
aspectRatio: n,
|
|
5711
5711
|
fit: e = "intrinsic",
|
|
@@ -5714,8 +5714,8 @@ function ke({
|
|
|
5714
5714
|
id: a,
|
|
5715
5715
|
lazy: d,
|
|
5716
5716
|
priority: o,
|
|
5717
|
-
radius:
|
|
5718
|
-
shadow:
|
|
5717
|
+
radius: s,
|
|
5718
|
+
shadow: l,
|
|
5719
5719
|
sizes: p,
|
|
5720
5720
|
sources: c,
|
|
5721
5721
|
src: u,
|
|
@@ -5723,12 +5723,12 @@ function ke({
|
|
|
5723
5723
|
width: b
|
|
5724
5724
|
}) {
|
|
5725
5725
|
const m = e === "cover", f = g(a), E = u.trim(), S = k?.trim(), v = p?.trim(), y = c?.map((z, C) => {
|
|
5726
|
-
const A = z.srcSet.trim(),
|
|
5726
|
+
const A = z.srcSet.trim(), N = z.media?.trim(), it = z.type?.trim(), O = z.sizes?.trim();
|
|
5727
5727
|
if (!A)
|
|
5728
5728
|
throw new Error(`sources[${C}].srcSet must be non-empty.`);
|
|
5729
5729
|
return {
|
|
5730
5730
|
height: z.height,
|
|
5731
|
-
media:
|
|
5731
|
+
media: N || void 0,
|
|
5732
5732
|
sizes: O || void 0,
|
|
5733
5733
|
srcSet: A,
|
|
5734
5734
|
type: it || void 0,
|
|
@@ -5785,19 +5785,19 @@ function ke({
|
|
|
5785
5785
|
"data-aspect-ratio": m && !r ? n : void 0,
|
|
5786
5786
|
"data-fluid": e === "fluid",
|
|
5787
5787
|
"data-gravity": m && i !== "C" ? i : void 0,
|
|
5788
|
-
"data-shadow": !!
|
|
5788
|
+
"data-shadow": !!l,
|
|
5789
5789
|
"data-object-fit": m ? "cover" : void 0,
|
|
5790
|
-
"data-radius": !!
|
|
5790
|
+
"data-radius": !!s,
|
|
5791
5791
|
id: f,
|
|
5792
5792
|
style: q.length > 0 ? q.join("; ") : void 0
|
|
5793
5793
|
},
|
|
5794
5794
|
children: [x]
|
|
5795
5795
|
};
|
|
5796
5796
|
}
|
|
5797
|
-
function
|
|
5798
|
-
return h(
|
|
5797
|
+
function ve(t) {
|
|
5798
|
+
return h(be(t));
|
|
5799
5799
|
}
|
|
5800
|
-
const
|
|
5800
|
+
const Bi = {
|
|
5801
5801
|
name: "image",
|
|
5802
5802
|
description: "Use `image` to render a responsive image with intrinsic, fluid, or cover fit, and optional art-directed `sources`.",
|
|
5803
5803
|
output: { element: "div", class: "set-image" },
|
|
@@ -5985,7 +5985,7 @@ const Ii = {
|
|
|
5985
5985
|
]
|
|
5986
5986
|
}
|
|
5987
5987
|
};
|
|
5988
|
-
function
|
|
5988
|
+
function fe({
|
|
5989
5989
|
align: t = "center",
|
|
5990
5990
|
as: n = "div",
|
|
5991
5991
|
children: e,
|
|
@@ -6009,10 +6009,10 @@ function be({
|
|
|
6009
6009
|
children: e ? [{ kind: "raw", html: e }] : []
|
|
6010
6010
|
};
|
|
6011
6011
|
}
|
|
6012
|
-
function
|
|
6013
|
-
return h(
|
|
6012
|
+
function Ri(t) {
|
|
6013
|
+
return h(fe(t));
|
|
6014
6014
|
}
|
|
6015
|
-
const
|
|
6015
|
+
const Wi = {
|
|
6016
6016
|
name: "inline",
|
|
6017
6017
|
description: "Use `inline` to lay out content in a horizontal row.",
|
|
6018
6018
|
output: {
|
|
@@ -6097,7 +6097,7 @@ const Ai = {
|
|
|
6097
6097
|
]
|
|
6098
6098
|
}
|
|
6099
6099
|
};
|
|
6100
|
-
function
|
|
6100
|
+
function ye({
|
|
6101
6101
|
autocomplete: t,
|
|
6102
6102
|
description: n,
|
|
6103
6103
|
disabled: e,
|
|
@@ -6106,8 +6106,8 @@ function ve({
|
|
|
6106
6106
|
label: a,
|
|
6107
6107
|
name: d,
|
|
6108
6108
|
pattern: o,
|
|
6109
|
-
readOnly:
|
|
6110
|
-
required:
|
|
6109
|
+
readOnly: s,
|
|
6110
|
+
required: l,
|
|
6111
6111
|
size: p = "md",
|
|
6112
6112
|
spellcheck: c,
|
|
6113
6113
|
type: u = "text",
|
|
@@ -6121,7 +6121,7 @@ function ve({
|
|
|
6121
6121
|
throw new Error(
|
|
6122
6122
|
"id must start with a letter and contain only letters, numbers, '_', '-', or ':'."
|
|
6123
6123
|
);
|
|
6124
|
-
const w = f ? `${m}-description` : void 0, x = u === "numeric", q = x ? "text" : u, z = v || (x ? "^[0-9]*$" : void 0), C = c === void 0 && x ? !1 : c, A = !!e,
|
|
6124
|
+
const w = f ? `${m}-description` : void 0, x = u === "numeric", q = x ? "text" : u, z = v || (x ? "^[0-9]*$" : void 0), C = c === void 0 && x ? !1 : c, A = !!e, N = !A && !!s, O = [
|
|
6125
6125
|
{
|
|
6126
6126
|
kind: "element",
|
|
6127
6127
|
tag: "label",
|
|
@@ -6133,7 +6133,7 @@ function ve({
|
|
|
6133
6133
|
tag: "input",
|
|
6134
6134
|
attrs: {
|
|
6135
6135
|
"aria-describedby": w,
|
|
6136
|
-
"aria-invalid": !A && !
|
|
6136
|
+
"aria-invalid": !A && !N && !!r ? "true" : void 0,
|
|
6137
6137
|
autocomplete: E === !1 ? "off" : E || void 0,
|
|
6138
6138
|
class: "input",
|
|
6139
6139
|
disabled: A,
|
|
@@ -6141,8 +6141,8 @@ function ve({
|
|
|
6141
6141
|
inputmode: x ? "numeric" : void 0,
|
|
6142
6142
|
name: S || void 0,
|
|
6143
6143
|
pattern: z,
|
|
6144
|
-
readonly:
|
|
6145
|
-
required: !!
|
|
6144
|
+
readonly: N,
|
|
6145
|
+
required: !!l,
|
|
6146
6146
|
spellcheck: C === void 0 ? void 0 : String(C),
|
|
6147
6147
|
type: q,
|
|
6148
6148
|
value: y
|
|
@@ -6166,10 +6166,10 @@ function ve({
|
|
|
6166
6166
|
children: O
|
|
6167
6167
|
};
|
|
6168
6168
|
}
|
|
6169
|
-
function
|
|
6170
|
-
return h(
|
|
6169
|
+
function Ui(t) {
|
|
6170
|
+
return h(ye(t));
|
|
6171
6171
|
}
|
|
6172
|
-
const
|
|
6172
|
+
const $i = {
|
|
6173
6173
|
name: "input",
|
|
6174
6174
|
description: "Use `input` to collect a single line of text from users.",
|
|
6175
6175
|
output: { element: "div", class: "set-input" },
|
|
@@ -6364,44 +6364,104 @@ const Di = {
|
|
|
6364
6364
|
}
|
|
6365
6365
|
]
|
|
6366
6366
|
}
|
|
6367
|
-
}
|
|
6368
|
-
|
|
6369
|
-
|
|
6370
|
-
|
|
6371
|
-
|
|
6372
|
-
|
|
6373
|
-
|
|
6367
|
+
}, we = "0 0 6714.6 1200", Se = "0 0 600 1200", xe = [
|
|
6368
|
+
{ x: 0, y: 0 },
|
|
6369
|
+
{ x: 300, y: 0 },
|
|
6370
|
+
{ x: 150, y: 300 },
|
|
6371
|
+
{ x: 450, y: 300 },
|
|
6372
|
+
{ x: 0, y: 600 },
|
|
6373
|
+
{ x: 300, y: 600 },
|
|
6374
|
+
{ x: 150, y: 900 },
|
|
6375
|
+
{ x: 450, y: 900 }
|
|
6376
|
+
], Ee = "M0 956h98V571L87 391h2l124 320h89l123-320h3l-11 180v385h98V276H384L260 608h-5L131 276H0zm879.94 10c184 0 223-46 223-272 0-225-39-271-223-271-186 0-224 46-224 271 0 226 38 272 224 272m0-93c-102 0-123-30-123-179 0-147 21-177 123-177 100 0 121 30 121 177 0 149-21 179-121 179m361.44 83h103V686c0-141 20-169 112-169 73 0 88 18 88 107v332h103V624c0-167-28-202-163-202-95 0-120 16-147 92h-5v-82h-91zm769.16 10c184 0 223-46 223-272 0-225-39-271-223-271-186 0-224 46-224 271 0 226 38 272 224 272m0-93c-102 0-123-30-123-179 0-147 21-177 123-177 100 0 121 30 121 177 0 149-21 179-121 179m363.25-65c-4 132 30 158 202 158 173 0 208-25 208-150 0-118-33-146-191-170-94-14-114-26-114-74 0-50 18-60 103-60 76 0 92 9 96 52h97c-3-118-36-142-194-142-166 0-201 25-201 146 0 114 31 141 182 162 101 13 122 28 122 82 0 53-18 64-103 64-88 0-107-11-110-68zm558.97 363h102V902h5c20 54 41 64 123 64 160 0 193-45 193-270 0-227-34-274-198-274-83 0-105 11-123 65h-4v-55h-98zm209-298c-93 0-112-30-112-179 0-148 19-178 112-178s113 30 113 179c0 148-20 178-113 178m656.46 83h88V610c0-156-34-187-197-187-150 0-181 27-179 157h97c1-61 15-74 85-74 82 0 99 18 99 105v24h-72c-187 0-226 30-226 179 0 126 28 152 162 152 92 0 116-13 138-74h5zm-8-243c-1 135-22 163-119 163-65 0-79-13-79-75 0-74 18-88 107-88zm551.75 95c-10 56-26 67-89 67-100 0-121-31-121-181s20-181 117-181c65 0 81 14 91 79h101c-4-141-37-170-188-170-185 0-224 46-224 272s39 272 226 272c147 0 179-26 186-158zm547.03 9c-15 48-31 58-96 58-96 0-117-23-123-136h324c5-263-32-317-214-317-172 0-207 46-207 271 0 227 38 273 223 273 139 0 172-25 190-149zm-218-160c4-122 24-146 114-146 88 0 108 24 112 146zm787.56 299h93l-1-734h-102l1 266h-5c-19-54-40-65-120-65-162 0-196 46-196 272s35 271 200 271c84 0 105-11 125-65h5zm-115-82c-94 0-114-30-114-180s20-180 114-180c93 0 112 30 112 180s-19 180-112 180", ze = 1163, bt = () => ({
|
|
6377
|
+
kind: "element",
|
|
6378
|
+
tag: "g",
|
|
6379
|
+
attrs: { class: "mark" },
|
|
6380
|
+
children: xe.map(({ x: t, y: n }) => ({
|
|
6381
|
+
kind: "element",
|
|
6382
|
+
tag: "rect",
|
|
6383
|
+
attrs: {
|
|
6384
|
+
height: "300",
|
|
6385
|
+
width: "150",
|
|
6386
|
+
x: String(t),
|
|
6387
|
+
y: String(n)
|
|
6388
|
+
},
|
|
6389
|
+
children: []
|
|
6390
|
+
}))
|
|
6391
|
+
}), Ce = () => ({
|
|
6392
|
+
kind: "element",
|
|
6393
|
+
tag: "g",
|
|
6394
|
+
attrs: { class: "word", transform: `translate(${ze} 0)` },
|
|
6395
|
+
children: [
|
|
6396
|
+
{
|
|
6397
|
+
kind: "element",
|
|
6398
|
+
tag: "path",
|
|
6399
|
+
attrs: { d: Ee },
|
|
6400
|
+
children: []
|
|
6401
|
+
}
|
|
6402
|
+
]
|
|
6403
|
+
}), vt = (t, n) => ({
|
|
6404
|
+
kind: "element",
|
|
6405
|
+
tag: "svg",
|
|
6406
|
+
attrs: {
|
|
6407
|
+
"aria-hidden": "true",
|
|
6408
|
+
viewBox: t,
|
|
6409
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
6410
|
+
},
|
|
6411
|
+
children: n
|
|
6412
|
+
});
|
|
6413
|
+
function Le() {
|
|
6414
|
+
return vt(we, [bt(), Ce()]);
|
|
6415
|
+
}
|
|
6416
|
+
function Me() {
|
|
6417
|
+
return vt(Se, [bt()]);
|
|
6418
|
+
}
|
|
6419
|
+
function qe({
|
|
6420
|
+
animated: t,
|
|
6421
|
+
id: n,
|
|
6422
|
+
label: e,
|
|
6423
|
+
size: i = "md",
|
|
6424
|
+
tone: r = "default",
|
|
6425
|
+
variant: a = "primary"
|
|
6374
6426
|
}) {
|
|
6375
|
-
const
|
|
6376
|
-
|
|
6427
|
+
const d = g(n), o = !!t && (a === "primary" || a === "graphic"), s = [
|
|
6428
|
+
{
|
|
6429
|
+
kind: "element",
|
|
6430
|
+
tag: "span",
|
|
6431
|
+
attrs: { class: "visually-hidden" },
|
|
6432
|
+
children: [{ kind: "text", value: e }]
|
|
6433
|
+
}
|
|
6434
|
+
];
|
|
6435
|
+
return o && s.push(
|
|
6436
|
+
a === "graphic" ? Me() : Le()
|
|
6437
|
+
), {
|
|
6377
6438
|
kind: "element",
|
|
6378
6439
|
tag: "div",
|
|
6379
6440
|
attrs: {
|
|
6380
6441
|
class: "set-logo",
|
|
6381
|
-
"data-
|
|
6382
|
-
"data-
|
|
6383
|
-
"data-
|
|
6384
|
-
|
|
6442
|
+
"data-animated": o,
|
|
6443
|
+
"data-size": i,
|
|
6444
|
+
"data-tone": r === "neutral" ? "neutral" : void 0,
|
|
6445
|
+
"data-variant": a === "primary" ? void 0 : a,
|
|
6446
|
+
id: d
|
|
6385
6447
|
},
|
|
6386
|
-
children:
|
|
6387
|
-
{
|
|
6388
|
-
kind: "element",
|
|
6389
|
-
tag: "span",
|
|
6390
|
-
attrs: { class: "visually-hidden" },
|
|
6391
|
-
children: [{ kind: "text", value: n }]
|
|
6392
|
-
}
|
|
6393
|
-
]
|
|
6448
|
+
children: s
|
|
6394
6449
|
};
|
|
6395
6450
|
}
|
|
6396
|
-
function
|
|
6397
|
-
return h(
|
|
6451
|
+
function Gi(t) {
|
|
6452
|
+
return h(qe(t));
|
|
6398
6453
|
}
|
|
6399
|
-
const
|
|
6454
|
+
const Zi = {
|
|
6400
6455
|
name: "logo",
|
|
6401
6456
|
description: "Use `logo` to display the brand mark.",
|
|
6402
6457
|
output: { element: "div", class: "set-logo" },
|
|
6403
6458
|
content: { kind: "text", prop: "label" },
|
|
6404
6459
|
props: {
|
|
6460
|
+
animated: {
|
|
6461
|
+
default: !1,
|
|
6462
|
+
description: "Plays the logo's boot animation once on render. Animates the `primary` and `graphic` variants; others render static.",
|
|
6463
|
+
type: { kind: "boolean" }
|
|
6464
|
+
},
|
|
6405
6465
|
id: {
|
|
6406
6466
|
description: "DOM id.",
|
|
6407
6467
|
type: { kind: "string" }
|
|
@@ -6433,6 +6493,21 @@ const Ni = {
|
|
|
6433
6493
|
events: {},
|
|
6434
6494
|
rules: {
|
|
6435
6495
|
attributes: [
|
|
6496
|
+
{
|
|
6497
|
+
target: { on: "host" },
|
|
6498
|
+
attribute: "data-animated",
|
|
6499
|
+
condition: {
|
|
6500
|
+
kind: "all",
|
|
6501
|
+
of: [
|
|
6502
|
+
{ kind: "when-truthy", prop: "animated" },
|
|
6503
|
+
{
|
|
6504
|
+
kind: "when-in",
|
|
6505
|
+
prop: "variant",
|
|
6506
|
+
values: ["primary", "graphic"]
|
|
6507
|
+
}
|
|
6508
|
+
]
|
|
6509
|
+
}
|
|
6510
|
+
},
|
|
6436
6511
|
{
|
|
6437
6512
|
target: { on: "host" },
|
|
6438
6513
|
attribute: "data-size",
|
|
@@ -6464,7 +6539,7 @@ const Ni = {
|
|
|
6464
6539
|
]
|
|
6465
6540
|
}
|
|
6466
6541
|
};
|
|
6467
|
-
function
|
|
6542
|
+
function Ie({
|
|
6468
6543
|
banner: t,
|
|
6469
6544
|
centerMain: n,
|
|
6470
6545
|
children: e,
|
|
@@ -6473,9 +6548,9 @@ function ye({
|
|
|
6473
6548
|
headerBorder: a,
|
|
6474
6549
|
headerSize: d = "md",
|
|
6475
6550
|
id: o,
|
|
6476
|
-
stickyHeader:
|
|
6551
|
+
stickyHeader: s
|
|
6477
6552
|
}) {
|
|
6478
|
-
const
|
|
6553
|
+
const l = g(o), p = [];
|
|
6479
6554
|
return t && p.push({ kind: "raw", html: t }), p.push({
|
|
6480
6555
|
kind: "element",
|
|
6481
6556
|
tag: "header",
|
|
@@ -6499,16 +6574,16 @@ function ye({
|
|
|
6499
6574
|
"data-center-main": n,
|
|
6500
6575
|
"data-header-border": a,
|
|
6501
6576
|
"data-header-size": d,
|
|
6502
|
-
"data-sticky-header":
|
|
6503
|
-
id:
|
|
6577
|
+
"data-sticky-header": s,
|
|
6578
|
+
id: l
|
|
6504
6579
|
},
|
|
6505
6580
|
children: p
|
|
6506
6581
|
};
|
|
6507
6582
|
}
|
|
6508
|
-
function
|
|
6509
|
-
return h(
|
|
6583
|
+
function Fi(t) {
|
|
6584
|
+
return h(Ie(t));
|
|
6510
6585
|
}
|
|
6511
|
-
const
|
|
6586
|
+
const ji = {
|
|
6512
6587
|
name: "page",
|
|
6513
6588
|
description: "Use `page` as the primary layout for header, main, and footer regions.",
|
|
6514
6589
|
output: { element: "div", class: "set-page" },
|
|
@@ -6598,7 +6673,7 @@ const Oi = {
|
|
|
6598
6673
|
]
|
|
6599
6674
|
}
|
|
6600
6675
|
};
|
|
6601
|
-
function
|
|
6676
|
+
function Te({
|
|
6602
6677
|
children: t,
|
|
6603
6678
|
id: n,
|
|
6604
6679
|
padding: e = "md",
|
|
@@ -6617,10 +6692,10 @@ function we({
|
|
|
6617
6692
|
children: t ? [{ kind: "raw", html: t }] : []
|
|
6618
6693
|
};
|
|
6619
6694
|
}
|
|
6620
|
-
function
|
|
6621
|
-
return h(
|
|
6695
|
+
function Ki(t) {
|
|
6696
|
+
return h(Te(t));
|
|
6622
6697
|
}
|
|
6623
|
-
const
|
|
6698
|
+
const Xi = {
|
|
6624
6699
|
name: "panel",
|
|
6625
6700
|
description: "Use `panel` to group related content in a contained region.",
|
|
6626
6701
|
output: { element: "div", class: "set-panel" },
|
|
@@ -6671,7 +6746,7 @@ const Bi = {
|
|
|
6671
6746
|
]
|
|
6672
6747
|
}
|
|
6673
6748
|
};
|
|
6674
|
-
function
|
|
6749
|
+
function Ae({
|
|
6675
6750
|
children: t,
|
|
6676
6751
|
id: n,
|
|
6677
6752
|
size: e = "md",
|
|
@@ -6692,10 +6767,10 @@ function Se({
|
|
|
6692
6767
|
children: t ? [{ kind: "raw", html: t }] : []
|
|
6693
6768
|
};
|
|
6694
6769
|
}
|
|
6695
|
-
function
|
|
6696
|
-
return h(
|
|
6770
|
+
function Qi(t = {}) {
|
|
6771
|
+
return h(Ae(t));
|
|
6697
6772
|
}
|
|
6698
|
-
const
|
|
6773
|
+
const Yi = {
|
|
6699
6774
|
name: "pattern",
|
|
6700
6775
|
description: "Use `pattern` to render repeated visual language components behind content.",
|
|
6701
6776
|
output: { element: "div", class: "set-pattern" },
|
|
@@ -6762,15 +6837,15 @@ const Wi = {
|
|
|
6762
6837
|
]
|
|
6763
6838
|
}
|
|
6764
6839
|
};
|
|
6765
|
-
function
|
|
6766
|
-
return
|
|
6840
|
+
function Ji(t) {
|
|
6841
|
+
return ve({
|
|
6767
6842
|
...t,
|
|
6768
6843
|
alt: "",
|
|
6769
6844
|
fit: "cover",
|
|
6770
6845
|
priority: !0
|
|
6771
6846
|
});
|
|
6772
6847
|
}
|
|
6773
|
-
function
|
|
6848
|
+
function _e({
|
|
6774
6849
|
children: t,
|
|
6775
6850
|
contentTheme: n,
|
|
6776
6851
|
id: e,
|
|
@@ -6802,10 +6877,10 @@ function xe({
|
|
|
6802
6877
|
children: o
|
|
6803
6878
|
};
|
|
6804
6879
|
}
|
|
6805
|
-
function
|
|
6806
|
-
return h(
|
|
6880
|
+
function tn(t) {
|
|
6881
|
+
return h(_e(t));
|
|
6807
6882
|
}
|
|
6808
|
-
const
|
|
6883
|
+
const en = {
|
|
6809
6884
|
name: "poster",
|
|
6810
6885
|
description: "Use `poster` to layer content over background media.",
|
|
6811
6886
|
output: { element: "div", class: "set-poster" },
|
|
@@ -6875,7 +6950,7 @@ const Gi = {
|
|
|
6875
6950
|
]
|
|
6876
6951
|
}
|
|
6877
6952
|
};
|
|
6878
|
-
function
|
|
6953
|
+
function De({
|
|
6879
6954
|
align: t = "start",
|
|
6880
6955
|
children: n,
|
|
6881
6956
|
hangingPunctuation: e,
|
|
@@ -6885,7 +6960,7 @@ function Ee({
|
|
|
6885
6960
|
monospaced: d,
|
|
6886
6961
|
responsive: o
|
|
6887
6962
|
}) {
|
|
6888
|
-
const
|
|
6963
|
+
const s = g(i);
|
|
6889
6964
|
return {
|
|
6890
6965
|
kind: "element",
|
|
6891
6966
|
tag: "div",
|
|
@@ -6897,15 +6972,15 @@ function Ee({
|
|
|
6897
6972
|
"data-measured": a,
|
|
6898
6973
|
"data-monospaced": d,
|
|
6899
6974
|
"data-responsive": o,
|
|
6900
|
-
id:
|
|
6975
|
+
id: s
|
|
6901
6976
|
},
|
|
6902
6977
|
children: [{ kind: "raw", html: n }]
|
|
6903
6978
|
};
|
|
6904
6979
|
}
|
|
6905
|
-
function
|
|
6906
|
-
return h(
|
|
6980
|
+
function nn(t) {
|
|
6981
|
+
return h(De(t));
|
|
6907
6982
|
}
|
|
6908
|
-
const
|
|
6983
|
+
const rn = {
|
|
6909
6984
|
name: "prose",
|
|
6910
6985
|
description: "Use `prose` to style rich-text markup.",
|
|
6911
6986
|
output: { element: "div", class: "set-prose" },
|
|
@@ -6999,7 +7074,7 @@ const Fi = {
|
|
|
6999
7074
|
]
|
|
7000
7075
|
}
|
|
7001
7076
|
};
|
|
7002
|
-
function
|
|
7077
|
+
function He({
|
|
7003
7078
|
description: t,
|
|
7004
7079
|
disabled: n,
|
|
7005
7080
|
id: e,
|
|
@@ -7008,8 +7083,8 @@ function ze({
|
|
|
7008
7083
|
legend: a,
|
|
7009
7084
|
name: d,
|
|
7010
7085
|
orientation: o = "vertical",
|
|
7011
|
-
required:
|
|
7012
|
-
size:
|
|
7086
|
+
required: s,
|
|
7087
|
+
size: l = "md",
|
|
7013
7088
|
value: p
|
|
7014
7089
|
}) {
|
|
7015
7090
|
const c = e.trim(), u = d.trim(), k = p?.trim();
|
|
@@ -7054,7 +7129,7 @@ function ze({
|
|
|
7054
7129
|
class: "radio",
|
|
7055
7130
|
disabled: y,
|
|
7056
7131
|
name: u,
|
|
7057
|
-
required: !!
|
|
7132
|
+
required: !!s && !f && !y,
|
|
7058
7133
|
type: "radio",
|
|
7059
7134
|
value: v.value
|
|
7060
7135
|
},
|
|
@@ -7088,7 +7163,7 @@ function ze({
|
|
|
7088
7163
|
attrs: {
|
|
7089
7164
|
class: "set-radios",
|
|
7090
7165
|
"data-orientation": o,
|
|
7091
|
-
"data-size":
|
|
7166
|
+
"data-size": l
|
|
7092
7167
|
},
|
|
7093
7168
|
children: E
|
|
7094
7169
|
}),
|
|
@@ -7099,10 +7174,10 @@ function ze({
|
|
|
7099
7174
|
legend: a
|
|
7100
7175
|
});
|
|
7101
7176
|
}
|
|
7102
|
-
function
|
|
7103
|
-
return h(
|
|
7177
|
+
function an(t) {
|
|
7178
|
+
return h(He(t));
|
|
7104
7179
|
}
|
|
7105
|
-
const
|
|
7180
|
+
const on = {
|
|
7106
7181
|
name: "radios",
|
|
7107
7182
|
description: "Use `radios` to let users select one option from a short list.",
|
|
7108
7183
|
output: { element: "fieldset", class: "set-fieldset" },
|
|
@@ -7251,7 +7326,7 @@ const Ki = {
|
|
|
7251
7326
|
]
|
|
7252
7327
|
}
|
|
7253
7328
|
};
|
|
7254
|
-
function
|
|
7329
|
+
function Ve({
|
|
7255
7330
|
appOverscrollBehavior: t,
|
|
7256
7331
|
appRoot: n,
|
|
7257
7332
|
brand: e = "mnsp",
|
|
@@ -7261,7 +7336,7 @@ function Ce({
|
|
|
7261
7336
|
lang: d,
|
|
7262
7337
|
theme: o
|
|
7263
7338
|
}) {
|
|
7264
|
-
const
|
|
7339
|
+
const s = g(a);
|
|
7265
7340
|
return {
|
|
7266
7341
|
kind: "element",
|
|
7267
7342
|
tag: "div",
|
|
@@ -7271,17 +7346,17 @@ function Ce({
|
|
|
7271
7346
|
"data-app-overscroll-behavior": t === "none" ? "none" : void 0,
|
|
7272
7347
|
"data-set-brand": e,
|
|
7273
7348
|
"data-set-theme": o,
|
|
7274
|
-
id:
|
|
7349
|
+
id: s,
|
|
7275
7350
|
lang: d === "" ? void 0 : d,
|
|
7276
7351
|
dir: r
|
|
7277
7352
|
},
|
|
7278
7353
|
children: i ? [{ kind: "raw", html: i }] : []
|
|
7279
7354
|
};
|
|
7280
7355
|
}
|
|
7281
|
-
function
|
|
7282
|
-
return h(
|
|
7356
|
+
function dn(t) {
|
|
7357
|
+
return h(Ve(t));
|
|
7283
7358
|
}
|
|
7284
|
-
const
|
|
7359
|
+
const sn = {
|
|
7285
7360
|
name: "root",
|
|
7286
7361
|
description: "Mandatory top-level `root` wrapper for the Set system.",
|
|
7287
7362
|
output: { element: "div", class: "set" },
|
|
@@ -7374,7 +7449,7 @@ const Xi = {
|
|
|
7374
7449
|
]
|
|
7375
7450
|
}
|
|
7376
7451
|
};
|
|
7377
|
-
function
|
|
7452
|
+
function Ne({
|
|
7378
7453
|
id: t,
|
|
7379
7454
|
label: n,
|
|
7380
7455
|
size: e = "md",
|
|
@@ -7399,13 +7474,13 @@ function Le({
|
|
|
7399
7474
|
[360, 660],
|
|
7400
7475
|
[360, 360],
|
|
7401
7476
|
[360, 60]
|
|
7402
|
-
].map(([o,
|
|
7477
|
+
].map(([o, s]) => ({
|
|
7403
7478
|
kind: "element",
|
|
7404
7479
|
tag: "rect",
|
|
7405
7480
|
attrs: {
|
|
7406
7481
|
class: "cell",
|
|
7407
7482
|
x: String(o),
|
|
7408
|
-
y: String(
|
|
7483
|
+
y: String(s),
|
|
7409
7484
|
width: "180",
|
|
7410
7485
|
height: "180"
|
|
7411
7486
|
},
|
|
@@ -7431,10 +7506,10 @@ function Le({
|
|
|
7431
7506
|
children: d
|
|
7432
7507
|
};
|
|
7433
7508
|
}
|
|
7434
|
-
function
|
|
7435
|
-
return h(
|
|
7509
|
+
function ln(t = {}) {
|
|
7510
|
+
return h(Ne(t));
|
|
7436
7511
|
}
|
|
7437
|
-
const
|
|
7512
|
+
const pn = {
|
|
7438
7513
|
name: "spinner",
|
|
7439
7514
|
description: "Use `spinner` to indicate loading or in-progress state.",
|
|
7440
7515
|
output: { element: "span", class: "set-spinner" },
|
|
@@ -7492,7 +7567,7 @@ const Ji = {
|
|
|
7492
7567
|
]
|
|
7493
7568
|
}
|
|
7494
7569
|
};
|
|
7495
|
-
function
|
|
7570
|
+
function Oe({
|
|
7496
7571
|
align: t = "stretch",
|
|
7497
7572
|
as: n = "div",
|
|
7498
7573
|
children: e,
|
|
@@ -7514,10 +7589,10 @@ function Me({
|
|
|
7514
7589
|
children: e ? [{ kind: "raw", html: e }] : []
|
|
7515
7590
|
};
|
|
7516
7591
|
}
|
|
7517
|
-
function
|
|
7518
|
-
return h(
|
|
7592
|
+
function cn(t) {
|
|
7593
|
+
return h(Oe(t));
|
|
7519
7594
|
}
|
|
7520
|
-
const
|
|
7595
|
+
const un = {
|
|
7521
7596
|
name: "stack",
|
|
7522
7597
|
description: "Use `stack` to lay out content in a vertical column.",
|
|
7523
7598
|
output: {
|
|
@@ -7543,7 +7618,7 @@ const en = {
|
|
|
7543
7618
|
gap: {
|
|
7544
7619
|
default: "md",
|
|
7545
7620
|
description: "Space between children.",
|
|
7546
|
-
type: { kind: "enum", values: ["none", "xs", "sm", "md", "lg"] }
|
|
7621
|
+
type: { kind: "enum", values: ["none", "xs", "sm", "md", "lg", "xl"] }
|
|
7547
7622
|
},
|
|
7548
7623
|
id: {
|
|
7549
7624
|
description: "DOM id.",
|
|
@@ -7588,7 +7663,7 @@ const en = {
|
|
|
7588
7663
|
]
|
|
7589
7664
|
}
|
|
7590
7665
|
};
|
|
7591
|
-
function
|
|
7666
|
+
function Pe({
|
|
7592
7667
|
children: t,
|
|
7593
7668
|
contentTheme: n,
|
|
7594
7669
|
id: e,
|
|
@@ -7607,10 +7682,10 @@ function qe({
|
|
|
7607
7682
|
children: [{ kind: "raw", html: t }]
|
|
7608
7683
|
};
|
|
7609
7684
|
}
|
|
7610
|
-
function
|
|
7611
|
-
return h(
|
|
7685
|
+
function hn(t) {
|
|
7686
|
+
return h(Pe(t));
|
|
7612
7687
|
}
|
|
7613
|
-
const
|
|
7688
|
+
const mn = {
|
|
7614
7689
|
name: "surface",
|
|
7615
7690
|
description: "Use `surface` to set a colour context for nested content.",
|
|
7616
7691
|
output: { element: "div", class: "set-surface" },
|
|
@@ -7662,7 +7737,7 @@ const rn = {
|
|
|
7662
7737
|
]
|
|
7663
7738
|
}
|
|
7664
7739
|
};
|
|
7665
|
-
function
|
|
7740
|
+
function Be({
|
|
7666
7741
|
checked: t,
|
|
7667
7742
|
description: n,
|
|
7668
7743
|
disabled: e,
|
|
@@ -7672,10 +7747,10 @@ function Ie({
|
|
|
7672
7747
|
size: d = "md",
|
|
7673
7748
|
value: o
|
|
7674
7749
|
}) {
|
|
7675
|
-
const
|
|
7676
|
-
if (
|
|
7750
|
+
const s = g(i), l = n?.trim();
|
|
7751
|
+
if (l && !s)
|
|
7677
7752
|
throw new Error("id must be provided when description is provided.");
|
|
7678
|
-
const p =
|
|
7753
|
+
const p = l ? `${s}-description` : void 0, c = [
|
|
7679
7754
|
{
|
|
7680
7755
|
kind: "element",
|
|
7681
7756
|
tag: "label",
|
|
@@ -7689,7 +7764,7 @@ function Ie({
|
|
|
7689
7764
|
checked: !!t,
|
|
7690
7765
|
class: "switch",
|
|
7691
7766
|
disabled: !!e,
|
|
7692
|
-
id:
|
|
7767
|
+
id: s,
|
|
7693
7768
|
name: a || void 0,
|
|
7694
7769
|
role: "switch",
|
|
7695
7770
|
type: "checkbox",
|
|
@@ -7706,11 +7781,11 @@ function Ie({
|
|
|
7706
7781
|
]
|
|
7707
7782
|
}
|
|
7708
7783
|
];
|
|
7709
|
-
return
|
|
7784
|
+
return l && c.push({
|
|
7710
7785
|
kind: "element",
|
|
7711
7786
|
tag: "p",
|
|
7712
7787
|
attrs: { class: "description", id: p },
|
|
7713
|
-
children: [{ kind: "text", value:
|
|
7788
|
+
children: [{ kind: "text", value: l }]
|
|
7714
7789
|
}), {
|
|
7715
7790
|
kind: "element",
|
|
7716
7791
|
tag: "div",
|
|
@@ -7718,10 +7793,10 @@ function Ie({
|
|
|
7718
7793
|
children: c
|
|
7719
7794
|
};
|
|
7720
7795
|
}
|
|
7721
|
-
function
|
|
7722
|
-
return h(
|
|
7796
|
+
function kn(t) {
|
|
7797
|
+
return h(Be(t));
|
|
7723
7798
|
}
|
|
7724
|
-
const
|
|
7799
|
+
const gn = {
|
|
7725
7800
|
name: "switch",
|
|
7726
7801
|
description: "Use `switch` to let users instantly toggle a setting on or off.",
|
|
7727
7802
|
output: { element: "div", class: "set-switch" },
|
|
@@ -7829,7 +7904,7 @@ const on = {
|
|
|
7829
7904
|
]
|
|
7830
7905
|
}
|
|
7831
7906
|
};
|
|
7832
|
-
function
|
|
7907
|
+
function Re({
|
|
7833
7908
|
autocomplete: t,
|
|
7834
7909
|
description: n,
|
|
7835
7910
|
disabled: e,
|
|
@@ -7838,8 +7913,8 @@ function Te({
|
|
|
7838
7913
|
label: a,
|
|
7839
7914
|
name: d,
|
|
7840
7915
|
readOnly: o,
|
|
7841
|
-
required:
|
|
7842
|
-
resize:
|
|
7916
|
+
required: s,
|
|
7917
|
+
resize: l = "vertical",
|
|
7843
7918
|
rows: p = 2,
|
|
7844
7919
|
size: c = "md",
|
|
7845
7920
|
spellcheck: u,
|
|
@@ -7874,7 +7949,7 @@ function Te({
|
|
|
7874
7949
|
id: m,
|
|
7875
7950
|
name: S || void 0,
|
|
7876
7951
|
readonly: x,
|
|
7877
|
-
required: !!
|
|
7952
|
+
required: !!s,
|
|
7878
7953
|
rows: String(p),
|
|
7879
7954
|
spellcheck: u === void 0 ? void 0 : String(u)
|
|
7880
7955
|
},
|
|
@@ -7891,17 +7966,17 @@ function Te({
|
|
|
7891
7966
|
tag: "div",
|
|
7892
7967
|
attrs: {
|
|
7893
7968
|
class: "set-textarea",
|
|
7894
|
-
"data-resize":
|
|
7969
|
+
"data-resize": l === "none" ? "none" : void 0,
|
|
7895
7970
|
"data-size": c,
|
|
7896
7971
|
"data-inline-size": b === "fit" ? "fit" : void 0
|
|
7897
7972
|
},
|
|
7898
7973
|
children: z
|
|
7899
7974
|
};
|
|
7900
7975
|
}
|
|
7901
|
-
function
|
|
7902
|
-
return h(
|
|
7976
|
+
function bn(t) {
|
|
7977
|
+
return h(Re(t));
|
|
7903
7978
|
}
|
|
7904
|
-
const
|
|
7979
|
+
const vn = {
|
|
7905
7980
|
name: "textarea",
|
|
7906
7981
|
description: "Use `textarea` to collect multiple lines of text from users.",
|
|
7907
7982
|
output: { element: "div", class: "set-textarea" },
|
|
@@ -8090,166 +8165,166 @@ const sn = {
|
|
|
8090
8165
|
]
|
|
8091
8166
|
}
|
|
8092
8167
|
};
|
|
8093
|
-
function
|
|
8094
|
-
|
|
8168
|
+
function fn() {
|
|
8169
|
+
Ct(), It(), Dt(), Vt(), Bt(), Wt(), Zt(), Kt();
|
|
8095
8170
|
}
|
|
8096
8171
|
export {
|
|
8097
8172
|
lt as SET_ALERT_EVENT_BEFORE_DISMISS,
|
|
8098
8173
|
pt as SET_ALERT_EVENT_DISMISS,
|
|
8099
|
-
|
|
8174
|
+
Ze as SET_ALERT_SPEC,
|
|
8100
8175
|
P as SET_ALERT_TAG_NAME,
|
|
8101
|
-
|
|
8102
|
-
|
|
8176
|
+
ci as SET_AVATAR_SPEC,
|
|
8177
|
+
hi as SET_BADGE_SPEC,
|
|
8103
8178
|
ut as SET_BANNER_EVENT_BEFORE_DISMISS,
|
|
8104
8179
|
ht as SET_BANNER_EVENT_DISMISS,
|
|
8105
|
-
|
|
8180
|
+
Xe as SET_BANNER_SPEC,
|
|
8106
8181
|
B as SET_BANNER_TAG_NAME,
|
|
8107
|
-
|
|
8108
|
-
|
|
8109
|
-
|
|
8110
|
-
|
|
8111
|
-
|
|
8112
|
-
|
|
8113
|
-
|
|
8114
|
-
|
|
8115
|
-
|
|
8116
|
-
|
|
8117
|
-
|
|
8118
|
-
|
|
8119
|
-
|
|
8120
|
-
|
|
8121
|
-
|
|
8122
|
-
|
|
8123
|
-
|
|
8124
|
-
|
|
8125
|
-
|
|
8182
|
+
bi as SET_BLOCKQUOTE_SPEC,
|
|
8183
|
+
fi as SET_BOX_SPEC,
|
|
8184
|
+
$e as SET_BUTTON_SPEC,
|
|
8185
|
+
wi as SET_CARD_SPEC,
|
|
8186
|
+
xi as SET_CHECKBOX_SPEC,
|
|
8187
|
+
zi as SET_CONTAINER_SPEC,
|
|
8188
|
+
Li as SET_DETAILS_SPEC,
|
|
8189
|
+
qi as SET_DIVIDER_SPEC,
|
|
8190
|
+
ei as SET_EXPANDER_SPEC,
|
|
8191
|
+
Ti as SET_FIELDSET_SPEC,
|
|
8192
|
+
_i as SET_FIGURE_SPEC,
|
|
8193
|
+
Ni as SET_GRID_ITEM_SPEC,
|
|
8194
|
+
Vi as SET_GRID_SPEC,
|
|
8195
|
+
Pi as SET_HEADING_SPEC,
|
|
8196
|
+
We as SET_ICON_NAMES,
|
|
8197
|
+
Ue as SET_ICON_SPEC,
|
|
8198
|
+
Bi as SET_IMAGE_SPEC,
|
|
8199
|
+
Wi as SET_INLINE_SPEC,
|
|
8200
|
+
$i as SET_INPUT_SPEC,
|
|
8126
8201
|
mt as SET_LIGHTSWITCH_EVENT_CHANGE,
|
|
8127
|
-
|
|
8202
|
+
Ye as SET_LIGHTSWITCH_SPEC,
|
|
8128
8203
|
K as SET_LIGHTSWITCH_STORAGE_KEY,
|
|
8129
8204
|
W as SET_LIGHTSWITCH_TAG_NAME,
|
|
8130
|
-
|
|
8131
|
-
|
|
8205
|
+
je as SET_LINK_SPEC,
|
|
8206
|
+
Zi as SET_LOGO_SPEC,
|
|
8132
8207
|
kt as SET_MENU_EVENT_CHOOSE,
|
|
8133
|
-
|
|
8208
|
+
ti as SET_MENU_SPEC,
|
|
8134
8209
|
U as SET_MENU_TAG_NAME,
|
|
8135
|
-
|
|
8210
|
+
ni as SET_NAV_SPEC,
|
|
8136
8211
|
$ as SET_NAV_TAG_NAME,
|
|
8137
|
-
|
|
8138
|
-
|
|
8139
|
-
|
|
8140
|
-
|
|
8141
|
-
|
|
8142
|
-
|
|
8143
|
-
|
|
8212
|
+
ji as SET_PAGE_SPEC,
|
|
8213
|
+
Xi as SET_PANEL_SPEC,
|
|
8214
|
+
Yi as SET_PATTERN_SPEC,
|
|
8215
|
+
en as SET_POSTER_SPEC,
|
|
8216
|
+
rn as SET_PROSE_SPEC,
|
|
8217
|
+
on as SET_RADIOS_SPEC,
|
|
8218
|
+
ai as SET_RANGE_SPEC,
|
|
8144
8219
|
G as SET_RANGE_TAG_NAME,
|
|
8145
|
-
|
|
8146
|
-
|
|
8220
|
+
sn as SET_ROOT_SPEC,
|
|
8221
|
+
di as SET_SIDEBAR_SPEC,
|
|
8147
8222
|
Z as SET_SIDEBAR_TAG_NAME,
|
|
8148
|
-
|
|
8149
|
-
|
|
8150
|
-
|
|
8151
|
-
|
|
8152
|
-
|
|
8153
|
-
|
|
8154
|
-
|
|
8223
|
+
pn as SET_SPINNER_SPEC,
|
|
8224
|
+
un as SET_STACK_SPEC,
|
|
8225
|
+
mn as SET_SURFACE_SPEC,
|
|
8226
|
+
gn as SET_SWITCH_SPEC,
|
|
8227
|
+
vn as SET_TEXTAREA_SPEC,
|
|
8228
|
+
ki as SET_TEXT_SPEC,
|
|
8229
|
+
li as SET_VIDEO_SPEC,
|
|
8155
8230
|
F as SET_VIDEO_TAG_NAME,
|
|
8156
|
-
|
|
8157
|
-
|
|
8158
|
-
|
|
8159
|
-
|
|
8160
|
-
|
|
8161
|
-
|
|
8231
|
+
zt as buildSetAlert,
|
|
8232
|
+
re as buildSetAvatar,
|
|
8233
|
+
ae as buildSetBadge,
|
|
8234
|
+
qt as buildSetBanner,
|
|
8235
|
+
oe as buildSetBlockquote,
|
|
8236
|
+
de as buildSetBox,
|
|
8162
8237
|
tt as buildSetButton,
|
|
8163
|
-
|
|
8164
|
-
|
|
8165
|
-
|
|
8166
|
-
|
|
8167
|
-
|
|
8168
|
-
|
|
8238
|
+
se as buildSetCard,
|
|
8239
|
+
le as buildSetCheckbox,
|
|
8240
|
+
pe as buildSetContainer,
|
|
8241
|
+
ce as buildSetDetails,
|
|
8242
|
+
ue as buildSetDivider,
|
|
8243
|
+
Nt as buildSetExpander,
|
|
8169
8244
|
gt as buildSetFieldset,
|
|
8170
|
-
|
|
8171
|
-
|
|
8172
|
-
|
|
8173
|
-
|
|
8245
|
+
he as buildSetFigure,
|
|
8246
|
+
me as buildSetGrid,
|
|
8247
|
+
ke as buildSetGridItem,
|
|
8248
|
+
ge as buildSetHeading,
|
|
8174
8249
|
H as buildSetIcon,
|
|
8175
|
-
|
|
8176
|
-
|
|
8177
|
-
|
|
8178
|
-
|
|
8250
|
+
be as buildSetImage,
|
|
8251
|
+
fe as buildSetInline,
|
|
8252
|
+
ye as buildSetInput,
|
|
8253
|
+
_t as buildSetLightswitch,
|
|
8179
8254
|
ct as buildSetLink,
|
|
8180
|
-
|
|
8181
|
-
|
|
8182
|
-
|
|
8183
|
-
|
|
8184
|
-
|
|
8185
|
-
|
|
8186
|
-
|
|
8187
|
-
|
|
8188
|
-
|
|
8189
|
-
|
|
8190
|
-
|
|
8191
|
-
|
|
8192
|
-
|
|
8193
|
-
|
|
8194
|
-
|
|
8195
|
-
|
|
8255
|
+
qe as buildSetLogo,
|
|
8256
|
+
Ht as buildSetMenu,
|
|
8257
|
+
Pt as buildSetNav,
|
|
8258
|
+
Ie as buildSetPage,
|
|
8259
|
+
Te as buildSetPanel,
|
|
8260
|
+
Ae as buildSetPattern,
|
|
8261
|
+
_e as buildSetPoster,
|
|
8262
|
+
De as buildSetProse,
|
|
8263
|
+
He as buildSetRadios,
|
|
8264
|
+
Rt as buildSetRange,
|
|
8265
|
+
Ve as buildSetRoot,
|
|
8266
|
+
Gt as buildSetSidebar,
|
|
8267
|
+
Ne as buildSetSpinner,
|
|
8268
|
+
Oe as buildSetStack,
|
|
8269
|
+
Pe as buildSetSurface,
|
|
8270
|
+
Be as buildSetSwitch,
|
|
8196
8271
|
j as buildSetText,
|
|
8197
|
-
|
|
8198
|
-
|
|
8199
|
-
|
|
8200
|
-
|
|
8201
|
-
|
|
8202
|
-
|
|
8203
|
-
|
|
8204
|
-
|
|
8205
|
-
|
|
8206
|
-
|
|
8207
|
-
|
|
8208
|
-
|
|
8209
|
-
|
|
8210
|
-
|
|
8211
|
-
|
|
8212
|
-
|
|
8213
|
-
|
|
8214
|
-
|
|
8272
|
+
Re as buildSetTextarea,
|
|
8273
|
+
Ft as buildSetVideo,
|
|
8274
|
+
Ct as defineSetAlert,
|
|
8275
|
+
It as defineSetBanner,
|
|
8276
|
+
fn as defineSetComponents,
|
|
8277
|
+
Dt as defineSetLightswitch,
|
|
8278
|
+
Vt as defineSetMenu,
|
|
8279
|
+
Bt as defineSetNav,
|
|
8280
|
+
Wt as defineSetRange,
|
|
8281
|
+
Zt as defineSetSidebar,
|
|
8282
|
+
Kt as defineSetVideo,
|
|
8283
|
+
Yt as getSetInitials,
|
|
8284
|
+
Ge as renderSetAlert,
|
|
8285
|
+
pi as renderSetAvatar,
|
|
8286
|
+
ui as renderSetBadge,
|
|
8287
|
+
Ke as renderSetBanner,
|
|
8288
|
+
gi as renderSetBlockquote,
|
|
8289
|
+
vi as renderSetBox,
|
|
8215
8290
|
et as renderSetButton,
|
|
8216
|
-
|
|
8217
|
-
|
|
8218
|
-
|
|
8219
|
-
|
|
8220
|
-
|
|
8221
|
-
|
|
8222
|
-
|
|
8223
|
-
|
|
8224
|
-
|
|
8225
|
-
|
|
8226
|
-
|
|
8227
|
-
|
|
8228
|
-
|
|
8229
|
-
|
|
8230
|
-
|
|
8231
|
-
|
|
8232
|
-
|
|
8233
|
-
|
|
8234
|
-
|
|
8235
|
-
|
|
8236
|
-
|
|
8237
|
-
|
|
8238
|
-
|
|
8239
|
-
|
|
8240
|
-
|
|
8241
|
-
|
|
8242
|
-
|
|
8243
|
-
|
|
8244
|
-
|
|
8245
|
-
|
|
8246
|
-
|
|
8247
|
-
|
|
8248
|
-
|
|
8249
|
-
|
|
8250
|
-
|
|
8251
|
-
|
|
8252
|
-
|
|
8291
|
+
yi as renderSetCard,
|
|
8292
|
+
Si as renderSetCheckbox,
|
|
8293
|
+
Ei as renderSetContainer,
|
|
8294
|
+
Ci as renderSetDetails,
|
|
8295
|
+
Mi as renderSetDivider,
|
|
8296
|
+
Ot as renderSetExpander,
|
|
8297
|
+
Ii as renderSetFieldset,
|
|
8298
|
+
Ai as renderSetFigure,
|
|
8299
|
+
Di as renderSetGrid,
|
|
8300
|
+
Hi as renderSetGridItem,
|
|
8301
|
+
Oi as renderSetHeading,
|
|
8302
|
+
wt as renderSetIcon,
|
|
8303
|
+
ve as renderSetImage,
|
|
8304
|
+
Ri as renderSetInline,
|
|
8305
|
+
Ui as renderSetInput,
|
|
8306
|
+
Qe as renderSetLightswitch,
|
|
8307
|
+
Fe as renderSetLink,
|
|
8308
|
+
Gi as renderSetLogo,
|
|
8309
|
+
Je as renderSetMenu,
|
|
8310
|
+
ii as renderSetNav,
|
|
8311
|
+
Fi as renderSetPage,
|
|
8312
|
+
Ki as renderSetPanel,
|
|
8313
|
+
Qi as renderSetPattern,
|
|
8314
|
+
tn as renderSetPoster,
|
|
8315
|
+
Ji as renderSetPosterImage,
|
|
8316
|
+
nn as renderSetProse,
|
|
8317
|
+
an as renderSetRadios,
|
|
8318
|
+
ri as renderSetRange,
|
|
8319
|
+
dn as renderSetRoot,
|
|
8320
|
+
oi as renderSetSidebar,
|
|
8321
|
+
ln as renderSetSpinner,
|
|
8322
|
+
cn as renderSetStack,
|
|
8323
|
+
hn as renderSetSurface,
|
|
8324
|
+
kn as renderSetSwitch,
|
|
8325
|
+
mi as renderSetText,
|
|
8326
|
+
bn as renderSetTextarea,
|
|
8327
|
+
si as renderSetVideo,
|
|
8253
8328
|
h as serializeSetNode
|
|
8254
8329
|
};
|
|
8255
8330
|
//# sourceMappingURL=index.js.map
|