@apolitical/component-library 6.6.4 → 6.6.6
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/form/components/form/index.d.ts +1 -0
- package/index.js +31 -31
- package/index.mjs +301 -292
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/base/form/_checkbox.scss +1 -1
- package/styles/base/form/_index.scss +1 -1
- package/styles/base/form/_radio.scss +34 -0
- package/styles/variables/colors/theme/_form.scss +1 -0
package/index.mjs
CHANGED
|
@@ -75,7 +75,7 @@ var id = { exports: {} };
|
|
|
75
75
|
})();
|
|
76
76
|
})(id);
|
|
77
77
|
var Jm = id.exports;
|
|
78
|
-
const
|
|
78
|
+
const U = /* @__PURE__ */ qn(Jm), Xm = ({
|
|
79
79
|
element: e = "span",
|
|
80
80
|
showOnFocus: t = !0,
|
|
81
81
|
children: n,
|
|
@@ -83,7 +83,7 @@ const V = /* @__PURE__ */ qn(Jm), Xm = ({
|
|
|
83
83
|
...i
|
|
84
84
|
}) => ie.createElement(e, {
|
|
85
85
|
...i,
|
|
86
|
-
className:
|
|
86
|
+
className: U("hidden", r, { "show-on-focus": t }),
|
|
87
87
|
children: n
|
|
88
88
|
}), qe = rn(Xm), eh = ({
|
|
89
89
|
element: e = "span",
|
|
@@ -220,14 +220,14 @@ function nh() {
|
|
|
220
220
|
}
|
|
221
221
|
return null;
|
|
222
222
|
}
|
|
223
|
-
var T = Object.assign, R = 0, q,
|
|
223
|
+
var T = Object.assign, R = 0, q, V, re, ne, D, J, G;
|
|
224
224
|
function E() {
|
|
225
225
|
}
|
|
226
226
|
E.__reactDisabledLog = !0;
|
|
227
227
|
function S() {
|
|
228
228
|
{
|
|
229
229
|
if (R === 0) {
|
|
230
|
-
q = console.log,
|
|
230
|
+
q = console.log, V = console.info, re = console.warn, ne = console.error, D = console.group, J = console.groupCollapsed, G = console.groupEnd;
|
|
231
231
|
var P = {
|
|
232
232
|
configurable: !0,
|
|
233
233
|
enumerable: !0,
|
|
@@ -260,7 +260,7 @@ function nh() {
|
|
|
260
260
|
value: q
|
|
261
261
|
}),
|
|
262
262
|
info: T({}, P, {
|
|
263
|
-
value:
|
|
263
|
+
value: V
|
|
264
264
|
}),
|
|
265
265
|
warn: T({}, P, {
|
|
266
266
|
value: re
|
|
@@ -943,12 +943,12 @@ const cu = {}, xr = so(
|
|
|
943
943
|
const I = {
|
|
944
944
|
className: "content"
|
|
945
945
|
};
|
|
946
|
-
return _ ? I.className =
|
|
946
|
+
return _ ? I.className = U("content", { hidden: f === "hidden" }) : I.hidden = f === "hidden", /* @__PURE__ */ c.jsx(
|
|
947
947
|
"aside",
|
|
948
948
|
{
|
|
949
949
|
ref: v,
|
|
950
950
|
id: h,
|
|
951
|
-
className:
|
|
951
|
+
className: U("tooltip text-medium", f, a, {
|
|
952
952
|
loading: r,
|
|
953
953
|
"extra-padding": g,
|
|
954
954
|
"has-pointer": y,
|
|
@@ -1747,7 +1747,7 @@ const Se = ({
|
|
|
1747
1747
|
typeof t == "string" && g.push(t), r && (g.push("icon"), typeof r == "object" ? (g.push(r.icon), r.position ? g.push(r.position) : g.push("left"), r.hover && g.push(`hover_${r.hover}`), r.animate && (g.push("animate"), typeof r.animate == "string" && g.push(r.animate))) : (g.push(r), !r.includes("right") && !r.includes("left") && g.push("left")));
|
|
1748
1748
|
const y = {
|
|
1749
1749
|
...h,
|
|
1750
|
-
className:
|
|
1750
|
+
className: U(e, o, g, {
|
|
1751
1751
|
"no-text": !m,
|
|
1752
1752
|
disabled: l,
|
|
1753
1753
|
button: i,
|
|
@@ -1782,14 +1782,14 @@ const Se = ({
|
|
|
1782
1782
|
return i === "p" ? /* @__PURE__ */ c.jsx(Se, { ...s }, o) : /* @__PURE__ */ c.jsx("li", { className: ((l = t[o]) == null ? void 0 : l.className) || "", children: /* @__PURE__ */ c.jsx(Se, { ...s }) }, o);
|
|
1783
1783
|
});
|
|
1784
1784
|
return ie.createElement(i, {
|
|
1785
|
-
className:
|
|
1785
|
+
className: U("button-wrapper", n),
|
|
1786
1786
|
...r,
|
|
1787
1787
|
children: a
|
|
1788
1788
|
});
|
|
1789
1789
|
};
|
|
1790
1790
|
const tn = ({ className: e = "", maxWidth: t = !1 }) => {
|
|
1791
1791
|
const n = t ? { "--max-width": `${t / 16}rem` } : {};
|
|
1792
|
-
return /* @__PURE__ */ c.jsx("hr", { className:
|
|
1792
|
+
return /* @__PURE__ */ c.jsx("hr", { className: U(e, { "has-max-width": t }), style: n });
|
|
1793
1793
|
}, mu = {
|
|
1794
1794
|
card: {
|
|
1795
1795
|
range: [
|
|
@@ -2001,7 +2001,7 @@ const Nk = ({ image: e, className: t = "", testId: n }) => /* @__PURE__ */ c.jsx
|
|
|
2001
2001
|
}) => {
|
|
2002
2002
|
if (e) {
|
|
2003
2003
|
const l = { ...o };
|
|
2004
|
-
return i && (l.onClick = i), a && (l["data-gtm-event-context"] = a), s && (l["data-gtm-event-type"] = s), /* @__PURE__ */ c.jsx("a", { href: e, className:
|
|
2004
|
+
return i && (l.onClick = i), a && (l["data-gtm-event-context"] = a), s && (l["data-gtm-event-type"] = s), /* @__PURE__ */ c.jsx("a", { href: e, className: U("gtm-trackable", r), ...l, children: t });
|
|
2005
2005
|
}
|
|
2006
2006
|
return n ? ie.createElement(n, { children: t, className: r, ...o }) : /* @__PURE__ */ c.jsx(c.Fragment, { children: t });
|
|
2007
2007
|
};
|
|
@@ -2012,7 +2012,7 @@ const kh = so(
|
|
|
2012
2012
|
"aside",
|
|
2013
2013
|
{
|
|
2014
2014
|
ref: i,
|
|
2015
|
-
className:
|
|
2015
|
+
className: U("popover", e),
|
|
2016
2016
|
"aria-live": "polite",
|
|
2017
2017
|
children: t
|
|
2018
2018
|
}
|
|
@@ -2042,7 +2042,7 @@ const Mk = ({
|
|
|
2042
2042
|
/* @__PURE__ */ c.jsx(
|
|
2043
2043
|
"div",
|
|
2044
2044
|
{
|
|
2045
|
-
className:
|
|
2045
|
+
className: U("dot", {
|
|
2046
2046
|
active: i === e,
|
|
2047
2047
|
completed: i < e
|
|
2048
2048
|
}),
|
|
@@ -2052,7 +2052,7 @@ const Mk = ({
|
|
|
2052
2052
|
/* @__PURE__ */ c.jsx(
|
|
2053
2053
|
"div",
|
|
2054
2054
|
{
|
|
2055
|
-
className:
|
|
2055
|
+
className: U("line", {
|
|
2056
2056
|
active: i < e
|
|
2057
2057
|
})
|
|
2058
2058
|
}
|
|
@@ -2082,7 +2082,7 @@ const Rk = ({ elementId: e, offset: t = 20 }) => {
|
|
|
2082
2082
|
}
|
|
2083
2083
|
);
|
|
2084
2084
|
};
|
|
2085
|
-
const $k = ({ items: e, className: t = "", ...n }) => /* @__PURE__ */ c.jsx("ul", { className:
|
|
2085
|
+
const $k = ({ items: e, className: t = "", ...n }) => /* @__PURE__ */ c.jsx("ul", { className: U("buckets", t), ...n, children: e.map(({ title: r, text: i, link: a, ...s }, o) => /* @__PURE__ */ c.jsx("li", { className: "bucket text-medium", children: /* @__PURE__ */ c.jsxs("a", { href: a, ...s, children: [
|
|
2086
2086
|
/* @__PURE__ */ c.jsx("p", { className: "title", children: r }),
|
|
2087
2087
|
/* @__PURE__ */ c.jsx("p", { children: i })
|
|
2088
2088
|
] }) }, o)) }), hu = 300, pu = "ease-in-out";
|
|
@@ -2145,7 +2145,7 @@ const mo = ({
|
|
|
2145
2145
|
"details",
|
|
2146
2146
|
{
|
|
2147
2147
|
ref: a,
|
|
2148
|
-
className:
|
|
2148
|
+
className: U("collapsible-section", t, {
|
|
2149
2149
|
"should-animate": r
|
|
2150
2150
|
}),
|
|
2151
2151
|
children: [
|
|
@@ -2182,7 +2182,7 @@ const vu = {
|
|
|
2182
2182
|
return !n && !s ? null : /* @__PURE__ */ c.jsx(
|
|
2183
2183
|
"small",
|
|
2184
2184
|
{
|
|
2185
|
-
className:
|
|
2185
|
+
className: U(
|
|
2186
2186
|
"content-type-label text-small",
|
|
2187
2187
|
e in vu ? vu[e] : e,
|
|
2188
2188
|
r,
|
|
@@ -2208,7 +2208,7 @@ const zt = ({
|
|
|
2208
2208
|
return /* @__PURE__ */ c.jsx(
|
|
2209
2209
|
"div",
|
|
2210
2210
|
{
|
|
2211
|
-
className:
|
|
2211
|
+
className: U("highlighted-text-box", e, r, {
|
|
2212
2212
|
"has-icon": t,
|
|
2213
2213
|
"show-highlight": s,
|
|
2214
2214
|
[o]: o !== "default"
|
|
@@ -2241,7 +2241,7 @@ const Vn = ({
|
|
|
2241
2241
|
zt,
|
|
2242
2242
|
{
|
|
2243
2243
|
variant: "subtle",
|
|
2244
|
-
className:
|
|
2244
|
+
className: U("empty-state-box", e, r),
|
|
2245
2245
|
children: /* @__PURE__ */ c.jsxs(c.Fragment, { children: [
|
|
2246
2246
|
t && typeof t == "string" ? /* @__PURE__ */ c.jsx(en, { options: { forceBlock: !0 }, children: t }) : t,
|
|
2247
2247
|
i && typeof n == "object" && (u || /* @__PURE__ */ c.jsx(
|
|
@@ -2265,7 +2265,7 @@ const Sh = ({
|
|
|
2265
2265
|
heading: n = !1,
|
|
2266
2266
|
children: r,
|
|
2267
2267
|
...i
|
|
2268
|
-
}) => /* @__PURE__ */ c.jsxs("div", { ...i, className:
|
|
2268
|
+
}) => /* @__PURE__ */ c.jsxs("div", { ...i, className: U("helper-text-box text-small", e, t), children: [
|
|
2269
2269
|
n && /* @__PURE__ */ c.jsx("p", { className: "title", children: n }),
|
|
2270
2270
|
typeof r == "string" ? /* @__PURE__ */ c.jsx(
|
|
2271
2271
|
en,
|
|
@@ -2317,14 +2317,14 @@ const jh = ({
|
|
|
2317
2317
|
zt,
|
|
2318
2318
|
{
|
|
2319
2319
|
variant: "subtle",
|
|
2320
|
-
className:
|
|
2320
|
+
className: U("hide-show-text-box", t),
|
|
2321
2321
|
children: [
|
|
2322
2322
|
/* @__PURE__ */ c.jsx(
|
|
2323
2323
|
"div",
|
|
2324
2324
|
{
|
|
2325
2325
|
ref: u,
|
|
2326
2326
|
id: e,
|
|
2327
|
-
className:
|
|
2327
|
+
className: U("content", h, s),
|
|
2328
2328
|
children: i ? /* @__PURE__ */ c.jsxs(c.Fragment, { children: [
|
|
2329
2329
|
/* @__PURE__ */ c.jsx(en, { options: { forceBlock: !0, ...a }, children: h === "closed" ? d : i }),
|
|
2330
2330
|
h !== "closed" && o
|
|
@@ -2337,7 +2337,7 @@ const jh = ({
|
|
|
2337
2337
|
variant: "tertiary",
|
|
2338
2338
|
icon: { icon: "navigation_arrow", position: "left", animate: !0 },
|
|
2339
2339
|
styling: { muted: !0 },
|
|
2340
|
-
className:
|
|
2340
|
+
className: U({ "rotate-180": f }),
|
|
2341
2341
|
onClick: () => {
|
|
2342
2342
|
p(f ? "ready-to-close" : "opening");
|
|
2343
2343
|
},
|
|
@@ -2360,7 +2360,7 @@ const Ik = ({
|
|
|
2360
2360
|
}) => {
|
|
2361
2361
|
const { hasBorder: s = !1, zebraStriping: o = !1 } = i;
|
|
2362
2362
|
return ie.createElement(e, {
|
|
2363
|
-
className:
|
|
2363
|
+
className: U("icon-bulleted-list text-medium", n, a, {
|
|
2364
2364
|
"has-border": s,
|
|
2365
2365
|
"has-zebra-stripes": o,
|
|
2366
2366
|
[t]: e !== "dl"
|
|
@@ -2486,7 +2486,7 @@ const Ik = ({
|
|
|
2486
2486
|
"@",
|
|
2487
2487
|
n.formatMessage({ id: "member_deleted" })
|
|
2488
2488
|
] })) : a ? (r = { ...r, className: "button primary medium" }, /* @__PURE__ */ c.jsx("p", { className: "center", children: /* @__PURE__ */ c.jsx(Se, { variant: "primary", size: "medium", ...r, children: i }) })) : /* @__PURE__ */ c.jsx("a", { ...r, children: i });
|
|
2489
|
-
}, yu = ({ children: e, ...t }) => /* @__PURE__ */ c.jsx("span", { className:
|
|
2489
|
+
}, yu = ({ children: e, ...t }) => /* @__PURE__ */ c.jsx("span", { className: U({ url: t == null ? void 0 : t.href }), children: e });
|
|
2490
2490
|
const Lh = {
|
|
2491
2491
|
default: {
|
|
2492
2492
|
a: Ih,
|
|
@@ -2538,7 +2538,7 @@ const Lh = {
|
|
|
2538
2538
|
};
|
|
2539
2539
|
let l = Lh[i];
|
|
2540
2540
|
return n.overrides && (l = { ...l, ...n.overrides }), ie.createElement(e, {
|
|
2541
|
-
className:
|
|
2541
|
+
className: U("markdown-text", t, {
|
|
2542
2542
|
"highlight-titles": s
|
|
2543
2543
|
}),
|
|
2544
2544
|
children: /* @__PURE__ */ c.jsx(en, { options: { ...o, ...n, overrides: l }, children: r })
|
|
@@ -2553,9 +2553,9 @@ const zh = ({
|
|
|
2553
2553
|
ctaButton: a
|
|
2554
2554
|
}) => {
|
|
2555
2555
|
const s = e ? { "--max-width": `${e / 16}rem` } : {};
|
|
2556
|
-
return /* @__PURE__ */ c.jsxs("section", { className:
|
|
2557
|
-
/* @__PURE__ */ c.jsxs("div", { className:
|
|
2558
|
-
/* @__PURE__ */ c.jsxs("div", { className:
|
|
2556
|
+
return /* @__PURE__ */ c.jsxs("section", { className: U("page-heading", i), children: [
|
|
2557
|
+
/* @__PURE__ */ c.jsxs("div", { className: U("content", { "has-max-width": e }), style: s, children: [
|
|
2558
|
+
/* @__PURE__ */ c.jsxs("div", { className: U("content-wrapper", { "has-max-width": e }), children: [
|
|
2559
2559
|
t && t.text && ie.createElement(t.element || "h1", { className: "title" }, t.text),
|
|
2560
2560
|
n && n.text && ie.createElement(
|
|
2561
2561
|
n.element || "h2",
|
|
@@ -2567,7 +2567,7 @@ const zh = ({
|
|
|
2567
2567
|
Se,
|
|
2568
2568
|
{
|
|
2569
2569
|
...a,
|
|
2570
|
-
className:
|
|
2570
|
+
className: U("cta-button", "gtm-trackable"),
|
|
2571
2571
|
"data-gtm-event-context": "CreateNewArticle",
|
|
2572
2572
|
"data-gtm-event-type": "create-article-click",
|
|
2573
2573
|
children: a.text
|
|
@@ -2592,7 +2592,7 @@ const cn = ({
|
|
|
2592
2592
|
}, { showTooltip: u, tooltipProps: d } = ud(!!i), m = {}, h = i ? typeof i == "string" ? `tooltip-${window.btoa(i)}` : i.id : void 0, p = i ? typeof i == "string" ? i : i.text : void 0;
|
|
2593
2593
|
i && h && (m["aria-describedby"] = h);
|
|
2594
2594
|
const v = ie.createElement(i ? "button" : s, {
|
|
2595
|
-
className:
|
|
2595
|
+
className: U("pill", e, t, n, {
|
|
2596
2596
|
"has-icon": r
|
|
2597
2597
|
}),
|
|
2598
2598
|
style: l,
|
|
@@ -2619,7 +2619,7 @@ const Zr = ({
|
|
|
2619
2619
|
e,
|
|
2620
2620
|
{
|
|
2621
2621
|
...r,
|
|
2622
|
-
className:
|
|
2622
|
+
className: U("status-banner text-small", n),
|
|
2623
2623
|
"aria-live": "assertive"
|
|
2624
2624
|
},
|
|
2625
2625
|
t
|
|
@@ -2739,7 +2739,7 @@ const ep = ({ slug: e }) => {
|
|
|
2739
2739
|
return /* @__PURE__ */ c.jsx(
|
|
2740
2740
|
cn,
|
|
2741
2741
|
{
|
|
2742
|
-
className:
|
|
2742
|
+
className: U("user-badge", a == null ? void 0 : a.toLowerCase()),
|
|
2743
2743
|
icon: i && Xh[i],
|
|
2744
2744
|
element: "li",
|
|
2745
2745
|
tooltip: s,
|
|
@@ -2775,7 +2775,7 @@ const np = ({
|
|
|
2775
2775
|
return /* @__PURE__ */ c.jsx(
|
|
2776
2776
|
"span",
|
|
2777
2777
|
{
|
|
2778
|
-
className:
|
|
2778
|
+
className: U(`progress-bar section-${u}`, s, r, {
|
|
2779
2779
|
[o]: o !== "default",
|
|
2780
2780
|
[l !== "default" ? l : ""]: l !== "default"
|
|
2781
2781
|
}),
|
|
@@ -2808,7 +2808,7 @@ const Ta = "loadingBlock_", rp = ({
|
|
|
2808
2808
|
return /* @__PURE__ */ c.jsxs(
|
|
2809
2809
|
zt,
|
|
2810
2810
|
{
|
|
2811
|
-
className:
|
|
2811
|
+
className: U("loading-block", n, {
|
|
2812
2812
|
"has-icon": i && t[i].icon
|
|
2813
2813
|
}),
|
|
2814
2814
|
variant: "subtle",
|
|
@@ -2824,7 +2824,7 @@ const Zt = ({ element: e = "div", className: t = "", ...n }) => /* @__PURE__ */
|
|
|
2824
2824
|
lo,
|
|
2825
2825
|
{
|
|
2826
2826
|
element: e,
|
|
2827
|
-
className:
|
|
2827
|
+
className: U("loading-placeholder", t),
|
|
2828
2828
|
...n
|
|
2829
2829
|
}
|
|
2830
2830
|
);
|
|
@@ -2878,7 +2878,7 @@ const js = {
|
|
|
2878
2878
|
"course-navigation": ["button", "button"],
|
|
2879
2879
|
"course-lesson-page": ["breadcrumb", "course-navigation", "text-page"],
|
|
2880
2880
|
"course-lesson-quiz": ["text-page", "quiz-box"]
|
|
2881
|
-
}, yd = (e, t) => e in js ? /* @__PURE__ */ c.jsx("div", { className: e, children: js[e].map((n, r) => yd(n, r)) }, t) : /* @__PURE__ */ c.jsx(Zt, { className: e }, t), po = ({ layout: e = "overview-page", ...t }) => /* @__PURE__ */ c.jsx("div", { className:
|
|
2881
|
+
}, yd = (e, t) => e in js ? /* @__PURE__ */ c.jsx("div", { className: e, children: js[e].map((n, r) => yd(n, r)) }, t) : /* @__PURE__ */ c.jsx(Zt, { className: e }, t), po = ({ layout: e = "overview-page", ...t }) => /* @__PURE__ */ c.jsx("div", { className: U("loading-state", e), ...t, children: js[e].map((n, r) => yd(n, r)) }), xd = (e) => {
|
|
2882
2882
|
const t = e && e.toUpperCase().trim().split(" ");
|
|
2883
2883
|
return Array.isArray(t) && t.length > 1 && t[0] !== "" ? t[1] === "" ? t[0][0] : t[0][0] + t[t.length - 1][0] : e ? e.substr(0, 1) : "";
|
|
2884
2884
|
}, di = ["#5AB6A3", "#A2D7AF", "#806056", "#3962B3"], ap = (e) => {
|
|
@@ -2915,7 +2915,7 @@ const xu = 256, kn = ({
|
|
|
2915
2915
|
return t && t !== "" && !l && (t.includes("http") || t.includes("//")) && (h = !0), /* @__PURE__ */ c.jsx(
|
|
2916
2916
|
"figure",
|
|
2917
2917
|
{
|
|
2918
|
-
className:
|
|
2918
|
+
className: U("profile-picture", e, { error: l }),
|
|
2919
2919
|
...o,
|
|
2920
2920
|
children: h ? /* @__PURE__ */ c.jsx(
|
|
2921
2921
|
"img",
|
|
@@ -2976,7 +2976,7 @@ const En = ({
|
|
|
2976
2976
|
badges: u,
|
|
2977
2977
|
...d
|
|
2978
2978
|
}) => {
|
|
2979
|
-
var k, T, R, q,
|
|
2979
|
+
var k, T, R, q, V;
|
|
2980
2980
|
const m = de(), { profile: h, ...p } = a, {
|
|
2981
2981
|
size: v = "medium",
|
|
2982
2982
|
variant: f = "inline",
|
|
@@ -2992,7 +2992,7 @@ const En = ({
|
|
|
2992
2992
|
const L = sp(_), I = r && r.createdAt ? Ts(r.createdAt) : !1, A = r && r.createdAt ? dd(r.createdAt) : "";
|
|
2993
2993
|
return ie.createElement(e, {
|
|
2994
2994
|
...d,
|
|
2995
|
-
className:
|
|
2995
|
+
className: U("member text-medium", v, f, l, {
|
|
2996
2996
|
"has-profile-link": w
|
|
2997
2997
|
}),
|
|
2998
2998
|
...p,
|
|
@@ -3020,7 +3020,7 @@ const En = ({
|
|
|
3020
3020
|
/* @__PURE__ */ c.jsxs(
|
|
3021
3021
|
"div",
|
|
3022
3022
|
{
|
|
3023
|
-
className:
|
|
3023
|
+
className: U("name", { "new-line": g }),
|
|
3024
3024
|
"data-testid": "member-name",
|
|
3025
3025
|
children: [
|
|
3026
3026
|
/* @__PURE__ */ c.jsx("span", { children: B }),
|
|
@@ -3028,7 +3028,7 @@ const En = ({
|
|
|
3028
3028
|
r && /* @__PURE__ */ c.jsxs(
|
|
3029
3029
|
"span",
|
|
3030
3030
|
{
|
|
3031
|
-
className:
|
|
3031
|
+
className: U("additional-content", {
|
|
3032
3032
|
"new-line": g
|
|
3033
3033
|
}),
|
|
3034
3034
|
children: [
|
|
@@ -3054,7 +3054,7 @@ const En = ({
|
|
|
3054
3054
|
{ id: `dates_${I.path}` },
|
|
3055
3055
|
{ number: I.number }
|
|
3056
3056
|
),
|
|
3057
|
-
community: (
|
|
3057
|
+
community: (V = (q = r.customMessage) == null ? void 0 : q.link) == null ? void 0 : V.text,
|
|
3058
3058
|
link: (re) => {
|
|
3059
3059
|
var ne, D;
|
|
3060
3060
|
return /* @__PURE__ */ c.jsx(
|
|
@@ -3078,7 +3078,7 @@ const En = ({
|
|
|
3078
3078
|
L && !g && /* @__PURE__ */ c.jsx(
|
|
3079
3079
|
"small",
|
|
3080
3080
|
{
|
|
3081
|
-
className:
|
|
3081
|
+
className: U({ "text-medium": v === "large" }),
|
|
3082
3082
|
"data-testid": "member-details",
|
|
3083
3083
|
children: b ? L : /* @__PURE__ */ c.jsxs(c.Fragment, { children: [
|
|
3084
3084
|
_.role,
|
|
@@ -3147,7 +3147,7 @@ const wu = {
|
|
|
3147
3147
|
const m = de();
|
|
3148
3148
|
return !n || n.length === 0 ? null : ie.createElement(e, {
|
|
3149
3149
|
...d,
|
|
3150
|
-
className:
|
|
3150
|
+
className: U("contributors", u, i, { "has-gap": a }),
|
|
3151
3151
|
children: /* @__PURE__ */ c.jsxs(c.Fragment, { children: [
|
|
3152
3152
|
/* @__PURE__ */ c.jsx("ul", { children: n.map((h, p) => {
|
|
3153
3153
|
let v, f = "";
|
|
@@ -3169,7 +3169,7 @@ const wu = {
|
|
|
3169
3169
|
v = /* @__PURE__ */ c.jsxs(
|
|
3170
3170
|
"small",
|
|
3171
3171
|
{
|
|
3172
|
-
className:
|
|
3172
|
+
className: U({ "large-number": b > 99 }),
|
|
3173
3173
|
children: [
|
|
3174
3174
|
"+",
|
|
3175
3175
|
xh(b, 0)
|
|
@@ -3177,14 +3177,14 @@ const wu = {
|
|
|
3177
3177
|
}
|
|
3178
3178
|
), f = "number-left";
|
|
3179
3179
|
}
|
|
3180
|
-
return v ? /* @__PURE__ */ c.jsx("li", { className:
|
|
3180
|
+
return v ? /* @__PURE__ */ c.jsx("li", { className: U("contributor", f), children: v }, p) : null;
|
|
3181
3181
|
}) }),
|
|
3182
3182
|
r && /* @__PURE__ */ c.jsx("span", { className: "label", children: typeof r == "string" ? r : n.length === 1 ? typeof n[0] == "string" ? m.formatMessage({ id: `member_${n[0]}` }) : lr(n[0].name || "", 20) : l || null })
|
|
3183
3183
|
] })
|
|
3184
3184
|
});
|
|
3185
3185
|
};
|
|
3186
3186
|
const Dd = ({ element: e = "section", children: t, className: n, ...r }) => ie.createElement(e, {
|
|
3187
|
-
className:
|
|
3187
|
+
className: U("modal", n),
|
|
3188
3188
|
children: typeof t == "string" ? /* @__PURE__ */ c.jsx("p", { children: t }) : t,
|
|
3189
3189
|
...r
|
|
3190
3190
|
});
|
|
@@ -3313,7 +3313,7 @@ function dp() {
|
|
|
3313
3313
|
}
|
|
3314
3314
|
}
|
|
3315
3315
|
}
|
|
3316
|
-
var C = l, _ = u, B = o, $ = s, O = t, L = d, I = r, A = v, k = p, T = n, R = a, q = i,
|
|
3316
|
+
var C = l, _ = u, B = o, $ = s, O = t, L = d, I = r, A = v, k = p, T = n, R = a, q = i, V = m, re = !1;
|
|
3317
3317
|
function ne(Q) {
|
|
3318
3318
|
return re || (re = !0, console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")), D(Q) || F(Q) === l;
|
|
3319
3319
|
}
|
|
@@ -3353,7 +3353,7 @@ function dp() {
|
|
|
3353
3353
|
function oe(Q) {
|
|
3354
3354
|
return F(Q) === m;
|
|
3355
3355
|
}
|
|
3356
|
-
Ke.AsyncMode = C, Ke.ConcurrentMode = _, Ke.ContextConsumer = B, Ke.ContextProvider = $, Ke.Element = O, Ke.ForwardRef = L, Ke.Fragment = I, Ke.Lazy = A, Ke.Memo = k, Ke.Portal = T, Ke.Profiler = R, Ke.StrictMode = q, Ke.Suspense =
|
|
3356
|
+
Ke.AsyncMode = C, Ke.ConcurrentMode = _, Ke.ContextConsumer = B, Ke.ContextProvider = $, Ke.Element = O, Ke.ForwardRef = L, Ke.Fragment = I, Ke.Lazy = A, Ke.Memo = k, Ke.Portal = T, Ke.Profiler = R, Ke.StrictMode = q, Ke.Suspense = V, Ke.isAsyncMode = ne, Ke.isConcurrentMode = D, Ke.isContextConsumer = J, Ke.isContextProvider = G, Ke.isElement = E, Ke.isForwardRef = S, Ke.isFragment = z, Ke.isLazy = j, Ke.isMemo = M, Ke.isPortal = W, Ke.isProfiler = Z, Ke.isStrictMode = ee, Ke.isSuspense = oe, Ke.isValidElementType = w, Ke.typeOf = F;
|
|
3357
3357
|
}()), Ke;
|
|
3358
3358
|
}
|
|
3359
3359
|
var Eu;
|
|
@@ -3554,7 +3554,7 @@ function hp() {
|
|
|
3554
3554
|
function J(G, E, S, z, j, M) {
|
|
3555
3555
|
var W = G[E], Z = q(W);
|
|
3556
3556
|
if (Z !== D) {
|
|
3557
|
-
var ee =
|
|
3557
|
+
var ee = V(W);
|
|
3558
3558
|
return new f(
|
|
3559
3559
|
"Invalid " + z + " `" + j + "` of type " + ("`" + ee + "` supplied to `" + S + "`, expected ") + ("`" + D + "`."),
|
|
3560
3560
|
{ expectedType: D }
|
|
@@ -3627,7 +3627,7 @@ function hp() {
|
|
|
3627
3627
|
if (v(M, D[W]))
|
|
3628
3628
|
return null;
|
|
3629
3629
|
var Z = JSON.stringify(D, function(oe, Q) {
|
|
3630
|
-
var be =
|
|
3630
|
+
var be = V(Q);
|
|
3631
3631
|
return be === "symbol" ? String(Q) : Q;
|
|
3632
3632
|
});
|
|
3633
3633
|
return new f("Invalid " + z + " `" + j + "` of value `" + String(M) + "` " + ("supplied to `" + S + "`, expected one of " + Z + "."));
|
|
@@ -3692,7 +3692,7 @@ function hp() {
|
|
|
3692
3692
|
for (var Z in D) {
|
|
3693
3693
|
var ee = D[Z];
|
|
3694
3694
|
if (typeof ee != "function")
|
|
3695
|
-
return I(S, z, j, Z,
|
|
3695
|
+
return I(S, z, j, Z, V(ee));
|
|
3696
3696
|
var oe = ee(M, Z, S, z, j + "." + Z, n);
|
|
3697
3697
|
if (oe)
|
|
3698
3698
|
return oe;
|
|
@@ -3710,7 +3710,7 @@ function hp() {
|
|
|
3710
3710
|
for (var ee in Z) {
|
|
3711
3711
|
var oe = D[ee];
|
|
3712
3712
|
if (r(D, ee) && typeof oe != "function")
|
|
3713
|
-
return I(S, z, j, ee,
|
|
3713
|
+
return I(S, z, j, ee, V(oe));
|
|
3714
3714
|
if (!oe)
|
|
3715
3715
|
return new f(
|
|
3716
3716
|
"Invalid " + z + " `" + j + "` key `" + ee + "` supplied to `" + S + "`.\nBad object: " + JSON.stringify(G[E], null, " ") + `
|
|
@@ -3764,7 +3764,7 @@ Valid keys: ` + JSON.stringify(Object.keys(D), null, " ")
|
|
|
3764
3764
|
var J = typeof D;
|
|
3765
3765
|
return Array.isArray(D) ? "array" : D instanceof RegExp ? "object" : R(J, D) ? "symbol" : J;
|
|
3766
3766
|
}
|
|
3767
|
-
function
|
|
3767
|
+
function V(D) {
|
|
3768
3768
|
if (typeof D > "u" || D === null)
|
|
3769
3769
|
return "" + D;
|
|
3770
3770
|
var J = q(D);
|
|
@@ -3777,7 +3777,7 @@ Valid keys: ` + JSON.stringify(Object.keys(D), null, " ")
|
|
|
3777
3777
|
return J;
|
|
3778
3778
|
}
|
|
3779
3779
|
function re(D) {
|
|
3780
|
-
var J =
|
|
3780
|
+
var J = V(D);
|
|
3781
3781
|
switch (J) {
|
|
3782
3782
|
case "array":
|
|
3783
3783
|
case "object":
|
|
@@ -4187,12 +4187,12 @@ var Pu = {
|
|
|
4187
4187
|
}, u = function(A, k) {
|
|
4188
4188
|
var T = typeof (k == null ? void 0 : k.composedPath) == "function" ? k.composedPath() : void 0;
|
|
4189
4189
|
return s.containerGroups.findIndex(function(R) {
|
|
4190
|
-
var q = R.container,
|
|
4190
|
+
var q = R.container, V = R.tabbableNodes;
|
|
4191
4191
|
return q.contains(A) || // fall back to explicit tabbable search which will take into consideration any
|
|
4192
4192
|
// web components if the `tabbableOptions.getShadowRoot` option was used for
|
|
4193
4193
|
// the trap, enabling shadow DOM support in tabbable (`Node.contains()` doesn't
|
|
4194
4194
|
// look inside web components even if open)
|
|
4195
|
-
(T == null ? void 0 : T.includes(q)) ||
|
|
4195
|
+
(T == null ? void 0 : T.includes(q)) || V.find(function(re) {
|
|
4196
4196
|
return re === A;
|
|
4197
4197
|
});
|
|
4198
4198
|
});
|
|
@@ -4208,10 +4208,10 @@ var Pu = {
|
|
|
4208
4208
|
return k;
|
|
4209
4209
|
throw new Error("`".concat(A, "` was specified but was not a node, or did not return a node"));
|
|
4210
4210
|
}
|
|
4211
|
-
var
|
|
4212
|
-
if (typeof k == "string" && (
|
|
4211
|
+
var V = k;
|
|
4212
|
+
if (typeof k == "string" && (V = r.querySelector(k), !V))
|
|
4213
4213
|
throw new Error("`".concat(A, "` as selector refers to no known node"));
|
|
4214
|
-
return
|
|
4214
|
+
return V;
|
|
4215
4215
|
}, m = function() {
|
|
4216
4216
|
var A = d("initialFocus");
|
|
4217
4217
|
if (A === !1)
|
|
@@ -4228,7 +4228,7 @@ var Pu = {
|
|
|
4228
4228
|
return A;
|
|
4229
4229
|
}, h = function() {
|
|
4230
4230
|
if (s.containerGroups = s.containers.map(function(A) {
|
|
4231
|
-
var k = Sd(A, a.tabbableOptions), T = jd(A, a.tabbableOptions), R = k.length > 0 ? k[0] : void 0, q = k.length > 0 ? k[k.length - 1] : void 0,
|
|
4231
|
+
var k = Sd(A, a.tabbableOptions), T = jd(A, a.tabbableOptions), R = k.length > 0 ? k[0] : void 0, q = k.length > 0 ? k[k.length - 1] : void 0, V = T.find(function(D) {
|
|
4232
4232
|
return Tn(D);
|
|
4233
4233
|
}), re = T.slice().reverse().find(function(D) {
|
|
4234
4234
|
return Tn(D);
|
|
@@ -4253,7 +4253,7 @@ var Pu = {
|
|
|
4253
4253
|
// "close enough most of the time" alternative for positive tabindexes which should generally
|
|
4254
4254
|
// be avoided anyway...
|
|
4255
4255
|
/** First tabbable node in container, __DOM__ order; `undefined` if none. */
|
|
4256
|
-
firstDomTabbableNode:
|
|
4256
|
+
firstDomTabbableNode: V,
|
|
4257
4257
|
/** Last tabbable node in container, __DOM__ order; `undefined` if none. */
|
|
4258
4258
|
lastDomTabbableNode: re,
|
|
4259
4259
|
/**
|
|
@@ -4301,11 +4301,11 @@ var Pu = {
|
|
|
4301
4301
|
}, b = function(A) {
|
|
4302
4302
|
var k = A.target, T = A.event, R = A.isBackward, q = R === void 0 ? !1 : R;
|
|
4303
4303
|
k = k || hi(T), h();
|
|
4304
|
-
var
|
|
4304
|
+
var V = null;
|
|
4305
4305
|
if (s.tabbableGroups.length > 0) {
|
|
4306
4306
|
var re = u(k, T), ne = re >= 0 ? s.containerGroups[re] : void 0;
|
|
4307
4307
|
if (re < 0)
|
|
4308
|
-
q ?
|
|
4308
|
+
q ? V = s.tabbableGroups[s.tabbableGroups.length - 1].lastTabbableNode : V = s.tabbableGroups[0].firstTabbableNode;
|
|
4309
4309
|
else if (q) {
|
|
4310
4310
|
var D = Mu(s.tabbableGroups, function(j) {
|
|
4311
4311
|
var M = j.firstTabbableNode;
|
|
@@ -4313,9 +4313,9 @@ var Pu = {
|
|
|
4313
4313
|
});
|
|
4314
4314
|
if (D < 0 && (ne.container === k || Ni(k, a.tabbableOptions) && !Tn(k, a.tabbableOptions) && !ne.nextTabbableNode(k, !1)) && (D = re), D >= 0) {
|
|
4315
4315
|
var J = D === 0 ? s.tabbableGroups.length - 1 : D - 1, G = s.tabbableGroups[J];
|
|
4316
|
-
|
|
4316
|
+
V = wn(k) >= 0 ? G.lastTabbableNode : G.lastDomTabbableNode;
|
|
4317
4317
|
} else
|
|
4318
|
-
$r(T) || (
|
|
4318
|
+
$r(T) || (V = ne.nextTabbableNode(k, !1));
|
|
4319
4319
|
} else {
|
|
4320
4320
|
var E = Mu(s.tabbableGroups, function(j) {
|
|
4321
4321
|
var M = j.lastTabbableNode;
|
|
@@ -4323,13 +4323,13 @@ var Pu = {
|
|
|
4323
4323
|
});
|
|
4324
4324
|
if (E < 0 && (ne.container === k || Ni(k, a.tabbableOptions) && !Tn(k, a.tabbableOptions) && !ne.nextTabbableNode(k)) && (E = re), E >= 0) {
|
|
4325
4325
|
var S = E === s.tabbableGroups.length - 1 ? 0 : E + 1, z = s.tabbableGroups[S];
|
|
4326
|
-
|
|
4326
|
+
V = wn(k) >= 0 ? z.firstTabbableNode : z.firstDomTabbableNode;
|
|
4327
4327
|
} else
|
|
4328
|
-
$r(T) || (
|
|
4328
|
+
$r(T) || (V = ne.nextTabbableNode(k));
|
|
4329
4329
|
}
|
|
4330
4330
|
} else
|
|
4331
|
-
|
|
4332
|
-
return
|
|
4331
|
+
V = d("fallbackFocus");
|
|
4332
|
+
return V;
|
|
4333
4333
|
}, g = function(A) {
|
|
4334
4334
|
var k = hi(A);
|
|
4335
4335
|
if (!(u(k, A) >= 0)) {
|
|
@@ -4356,7 +4356,7 @@ var Pu = {
|
|
|
4356
4356
|
var R, q = !0;
|
|
4357
4357
|
if (s.mostRecentlyFocusedNode)
|
|
4358
4358
|
if (wn(s.mostRecentlyFocusedNode) > 0) {
|
|
4359
|
-
var
|
|
4359
|
+
var V = u(s.mostRecentlyFocusedNode), re = s.containerGroups[V].tabbableNodes;
|
|
4360
4360
|
if (re.length > 0) {
|
|
4361
4361
|
var ne = re.findIndex(function(D) {
|
|
4362
4362
|
return D === s.mostRecentlyFocusedNode;
|
|
@@ -4458,14 +4458,14 @@ var Pu = {
|
|
|
4458
4458
|
checkCanReturnFocus: a.checkCanReturnFocus
|
|
4459
4459
|
}, A);
|
|
4460
4460
|
clearTimeout(s.delayInitialFocusTimer), s.delayInitialFocusTimer = void 0, B(), s.active = !1, s.paused = !1, L(), Pu.deactivateTrap(i, o);
|
|
4461
|
-
var T = l(k, "onDeactivate"), R = l(k, "onPostDeactivate"), q = l(k, "checkCanReturnFocus"),
|
|
4461
|
+
var T = l(k, "onDeactivate"), R = l(k, "onPostDeactivate"), q = l(k, "checkCanReturnFocus"), V = l(k, "returnFocus", "returnFocusOnDeactivate");
|
|
4462
4462
|
T == null || T();
|
|
4463
4463
|
var re = function() {
|
|
4464
4464
|
Nu(function() {
|
|
4465
|
-
|
|
4465
|
+
V && v(f(s.nodeFocusedBeforeActivation)), R == null || R();
|
|
4466
4466
|
});
|
|
4467
4467
|
};
|
|
4468
|
-
return
|
|
4468
|
+
return V && q ? (q(f(s.nodeFocusedBeforeActivation)).then(re, re), this) : (re(), this);
|
|
4469
4469
|
},
|
|
4470
4470
|
pause: function(A) {
|
|
4471
4471
|
if (s.paused || !s.active)
|
|
@@ -4877,7 +4877,7 @@ const An = ({
|
|
|
4877
4877
|
{
|
|
4878
4878
|
id: `${e}-overlay`,
|
|
4879
4879
|
ref: w,
|
|
4880
|
-
className:
|
|
4880
|
+
className: U("overlay", {
|
|
4881
4881
|
open: f,
|
|
4882
4882
|
"in-portal": d.includes("in-portal")
|
|
4883
4883
|
}),
|
|
@@ -4886,7 +4886,7 @@ const An = ({
|
|
|
4886
4886
|
Dd,
|
|
4887
4887
|
{
|
|
4888
4888
|
id: e,
|
|
4889
|
-
className:
|
|
4889
|
+
className: U("overlay-modal", d, {
|
|
4890
4890
|
"has-max-width": r
|
|
4891
4891
|
}),
|
|
4892
4892
|
hidden: !f,
|
|
@@ -4965,7 +4965,7 @@ const Br = "joinCommunityButton", Pd = ({
|
|
|
4965
4965
|
await y();
|
|
4966
4966
|
}, 500), m(!d);
|
|
4967
4967
|
},
|
|
4968
|
-
className:
|
|
4968
|
+
className: U("join-community-button", h, {
|
|
4969
4969
|
active: h === "joining"
|
|
4970
4970
|
}),
|
|
4971
4971
|
disabled: u,
|
|
@@ -4986,7 +4986,7 @@ const Ra = "communityDetails_", zk = ({
|
|
|
4986
4986
|
functions: { invite: s, ...o }
|
|
4987
4987
|
}) => {
|
|
4988
4988
|
const l = de(), { id: u } = ze(mt), d = u, m = 5, h = i || a.length, p = a.length ? a : Array(m).fill({}), v = `/communities/${r}/members` === window.location.pathname, f = t || n, b = !n && !t;
|
|
4989
|
-
return /* @__PURE__ */ c.jsxs("div", { className:
|
|
4989
|
+
return /* @__PURE__ */ c.jsxs("div", { className: U("community-details", e), children: [
|
|
4990
4990
|
f ? /* @__PURE__ */ c.jsxs("div", { className: "member-details", children: [
|
|
4991
4991
|
/* @__PURE__ */ c.jsxs("div", { className: "top", children: [
|
|
4992
4992
|
/* @__PURE__ */ c.jsxs("h4", { children: [
|
|
@@ -5041,7 +5041,7 @@ const Ji = ({
|
|
|
5041
5041
|
}) => /* @__PURE__ */ c.jsx(
|
|
5042
5042
|
Se,
|
|
5043
5043
|
{
|
|
5044
|
-
className:
|
|
5044
|
+
className: U("action-button", t),
|
|
5045
5045
|
variant: "tertiary",
|
|
5046
5046
|
icon: e,
|
|
5047
5047
|
...n
|
|
@@ -5758,7 +5758,7 @@ const Ag = ({
|
|
|
5758
5758
|
/* @__PURE__ */ c.jsx(
|
|
5759
5759
|
Ji,
|
|
5760
5760
|
{
|
|
5761
|
-
className:
|
|
5761
|
+
className: U(
|
|
5762
5762
|
"discussion-button text-medium action-button likes-button",
|
|
5763
5763
|
{
|
|
5764
5764
|
"show-spinner": w,
|
|
@@ -6262,7 +6262,7 @@ const Ig = 280, Ud = async (e, t, n, r = () => Promise.resolve([])) => {
|
|
|
6262
6262
|
unpin: T,
|
|
6263
6263
|
createPoll: R,
|
|
6264
6264
|
createVote: q,
|
|
6265
|
-
removeVote:
|
|
6265
|
+
removeVote: V,
|
|
6266
6266
|
removePoll: re
|
|
6267
6267
|
}
|
|
6268
6268
|
} = jg({
|
|
@@ -6446,7 +6446,7 @@ const Ig = 280, Ud = async (e, t, n, r = () => Promise.resolve([])) => {
|
|
|
6446
6446
|
},
|
|
6447
6447
|
polls: {
|
|
6448
6448
|
createVote: ({ reactionId: ke }) => q({ activityId: S, reactionId: ke }),
|
|
6449
|
-
removeVote: ({ reactionId: ke }) =>
|
|
6449
|
+
removeVote: ({ reactionId: ke }) => V({ activityId: S, reactionId: ke }),
|
|
6450
6450
|
removePoll: () => re({ activityId: S })
|
|
6451
6451
|
},
|
|
6452
6452
|
form: s
|
|
@@ -7445,46 +7445,46 @@ function ev({
|
|
|
7445
7445
|
body: o,
|
|
7446
7446
|
data: l,
|
|
7447
7447
|
likeId: u,
|
|
7448
|
-
|
|
7449
|
-
|
|
7450
|
-
|
|
7451
|
-
|
|
7452
|
-
|
|
7453
|
-
|
|
7448
|
+
likes: d,
|
|
7449
|
+
peopleWhoLiked: m,
|
|
7450
|
+
replyId: h,
|
|
7451
|
+
createdAt: p,
|
|
7452
|
+
user: v,
|
|
7453
|
+
userLiked: f
|
|
7454
7454
|
} = s, { edit: b, like: g, remove: y, unlike: w } = e.mutations;
|
|
7455
7455
|
return /* @__PURE__ */ c.jsx(k_, { children: /* @__PURE__ */ c.jsx(
|
|
7456
7456
|
Ca,
|
|
7457
7457
|
{
|
|
7458
7458
|
isCommunity: !0,
|
|
7459
7459
|
content: {
|
|
7460
|
-
id:
|
|
7460
|
+
id: h,
|
|
7461
7461
|
type: Te.Reply,
|
|
7462
7462
|
body: o,
|
|
7463
7463
|
canLike: i,
|
|
7464
|
-
createdAt:
|
|
7464
|
+
createdAt: p,
|
|
7465
7465
|
slugs: {
|
|
7466
7466
|
question: `${n}/${a}`,
|
|
7467
7467
|
answer: t,
|
|
7468
|
-
reply:
|
|
7468
|
+
reply: h
|
|
7469
7469
|
},
|
|
7470
|
-
slug:
|
|
7471
|
-
author: si(
|
|
7472
|
-
userLiked:
|
|
7473
|
-
likes:
|
|
7474
|
-
peopleWhoLiked:
|
|
7470
|
+
slug: h,
|
|
7471
|
+
author: si(v),
|
|
7472
|
+
userLiked: f,
|
|
7473
|
+
likes: d,
|
|
7474
|
+
peopleWhoLiked: m,
|
|
7475
7475
|
data: l
|
|
7476
7476
|
},
|
|
7477
7477
|
functions: {
|
|
7478
7478
|
content: {
|
|
7479
7479
|
createContent: () => null,
|
|
7480
|
-
deleteContent: () => y({ replyId:
|
|
7480
|
+
deleteContent: () => y({ replyId: h }),
|
|
7481
7481
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
7482
|
-
updateContent: (F, { body: C }) => b({ replyId:
|
|
7482
|
+
updateContent: (F, { body: C }) => b({ replyId: h, content: C })
|
|
7483
7483
|
},
|
|
7484
7484
|
likes: {
|
|
7485
|
-
createLike: () => g({ replyId:
|
|
7486
|
-
deleteLike: () => w({ replyId:
|
|
7487
|
-
listLikes: (F) => e.likes.list({ replyId:
|
|
7485
|
+
createLike: () => g({ replyId: h }),
|
|
7486
|
+
deleteLike: () => w({ replyId: h, reactionId: u }),
|
|
7487
|
+
listLikes: (F) => e.likes.list({ replyId: h, ...F })
|
|
7488
7488
|
},
|
|
7489
7489
|
comments: {},
|
|
7490
7490
|
form: e.form
|
|
@@ -7508,7 +7508,7 @@ function ev({
|
|
|
7508
7508
|
basePath: n,
|
|
7509
7509
|
parentId: a,
|
|
7510
7510
|
activityId: t,
|
|
7511
|
-
replyId:
|
|
7511
|
+
replyId: h,
|
|
7512
7512
|
isMember: i,
|
|
7513
7513
|
functions: e
|
|
7514
7514
|
}
|
|
@@ -7518,8 +7518,8 @@ function ev({
|
|
|
7518
7518
|
basePath: n,
|
|
7519
7519
|
parentId: a
|
|
7520
7520
|
},
|
|
7521
|
-
|
|
7522
|
-
) },
|
|
7521
|
+
h
|
|
7522
|
+
) }, h);
|
|
7523
7523
|
}
|
|
7524
7524
|
const tv = ({
|
|
7525
7525
|
activityId: e,
|
|
@@ -7671,7 +7671,7 @@ const av = ({
|
|
|
7671
7671
|
functions: {
|
|
7672
7672
|
onClose: t
|
|
7673
7673
|
},
|
|
7674
|
-
className:
|
|
7674
|
+
className: U("profile-modal in-portal", i, {
|
|
7675
7675
|
open: e
|
|
7676
7676
|
}),
|
|
7677
7677
|
maxWidth: 600,
|
|
@@ -7795,7 +7795,7 @@ const ov = 3e3, uv = ({
|
|
|
7795
7795
|
/* @__PURE__ */ c.jsx(
|
|
7796
7796
|
xr,
|
|
7797
7797
|
{
|
|
7798
|
-
className:
|
|
7798
|
+
className: U({
|
|
7799
7799
|
copied: i.isCopied
|
|
7800
7800
|
}),
|
|
7801
7801
|
isOpen: i.isOpen,
|
|
@@ -7839,7 +7839,7 @@ const Yn = "discussion_", lv = ({
|
|
|
7839
7839
|
}), /* @__PURE__ */ c.jsxs(
|
|
7840
7840
|
"ul",
|
|
7841
7841
|
{
|
|
7842
|
-
className:
|
|
7842
|
+
className: U("actions text-medium", e),
|
|
7843
7843
|
"data-testid": `${n}-actions`,
|
|
7844
7844
|
children: [
|
|
7845
7845
|
r ? /* @__PURE__ */ c.jsx(
|
|
@@ -7926,7 +7926,7 @@ const Wk = ({ breadcrumbs: e, cutoff: t = 20, className: n = "" }) => {
|
|
|
7926
7926
|
children: r.formatMessage({ id: "breadcrumbs_label" })
|
|
7927
7927
|
}
|
|
7928
7928
|
),
|
|
7929
|
-
/* @__PURE__ */ c.jsx("ul", { className:
|
|
7929
|
+
/* @__PURE__ */ c.jsx("ul", { className: U("breadcrumbs text-small", n), children: e.map(
|
|
7930
7930
|
({ text: i, href: a, current: s = !1 }, o) => {
|
|
7931
7931
|
const l = {};
|
|
7932
7932
|
return s && (l["aria-current"] = "location"), /* @__PURE__ */ c.jsxs("li", { children: [
|
|
@@ -7954,7 +7954,7 @@ const Hd = ({
|
|
|
7954
7954
|
return /* @__PURE__ */ c.jsxs(
|
|
7955
7955
|
"aside",
|
|
7956
7956
|
{
|
|
7957
|
-
className:
|
|
7957
|
+
className: U("enriched-url gtm-trackable", {
|
|
7958
7958
|
"has-image": t,
|
|
7959
7959
|
[e]: e !== "default"
|
|
7960
7960
|
}),
|
|
@@ -8008,7 +8008,7 @@ const cv = ({
|
|
|
8008
8008
|
let b = [];
|
|
8009
8009
|
u.includes(v) && !a ? b = u.filter((g) => g !== v) : v === "all" ? b = ["all"] : r ? b = [...u.filter((g) => g !== "all"), v] : b = [v], d((g) => (i && typeof i == "function" && i({ current: b, previous: g }), b)), f && typeof f == "function" && f();
|
|
8010
8010
|
};
|
|
8011
|
-
return /* @__PURE__ */ c.jsx("ul", { className:
|
|
8011
|
+
return /* @__PURE__ */ c.jsx("ul", { className: U("filters", s), children: l.map(
|
|
8012
8012
|
({ id: v, text: f, disabled: b = !1, callback: g = () => {
|
|
8013
8013
|
} }, y) => {
|
|
8014
8014
|
let w = {
|
|
@@ -8023,7 +8023,7 @@ const cv = ({
|
|
|
8023
8023
|
}), /* @__PURE__ */ c.jsx("li", { children: /* @__PURE__ */ c.jsx(
|
|
8024
8024
|
"button",
|
|
8025
8025
|
{
|
|
8026
|
-
className:
|
|
8026
|
+
className: U(v, {
|
|
8027
8027
|
selected: u.includes(v)
|
|
8028
8028
|
}),
|
|
8029
8029
|
onClick: (F) => {
|
|
@@ -8082,7 +8082,7 @@ const gi = "languageSwitcher_", Hk = ({
|
|
|
8082
8082
|
))
|
|
8083
8083
|
return null;
|
|
8084
8084
|
const v = Object.keys(r), f = m !== e;
|
|
8085
|
-
return /* @__PURE__ */ c.jsxs("div", { className:
|
|
8085
|
+
return /* @__PURE__ */ c.jsxs("div", { className: U("language-switcher text-small", s, l), children: [
|
|
8086
8086
|
/* @__PURE__ */ c.jsxs("nav", { children: [
|
|
8087
8087
|
s !== "short" && /* @__PURE__ */ c.jsx("p", { children: o || u.formatMessage({ id: `${gi}label` }) }),
|
|
8088
8088
|
/* @__PURE__ */ c.jsx("ul", { children: v.map((b) => {
|
|
@@ -8157,7 +8157,7 @@ const za = Um({ locale: "en", messages: wr }), ha = ({
|
|
|
8157
8157
|
v instanceof Error ? m(v.message) : m("Unknown error");
|
|
8158
8158
|
}
|
|
8159
8159
|
};
|
|
8160
|
-
return !d && !e && !o.endOfFeed ? null : /* @__PURE__ */ c.jsx("footer", { className:
|
|
8160
|
+
return !d && !e && !o.endOfFeed ? null : /* @__PURE__ */ c.jsx("footer", { className: U("load-more", l), children: !d && e ? /* @__PURE__ */ c.jsx(
|
|
8161
8161
|
Se,
|
|
8162
8162
|
{
|
|
8163
8163
|
variant: r,
|
|
@@ -8183,7 +8183,7 @@ const Kd = ({
|
|
|
8183
8183
|
"a",
|
|
8184
8184
|
{
|
|
8185
8185
|
href: "/home/",
|
|
8186
|
-
className:
|
|
8186
|
+
className: U("logo", e, t, n),
|
|
8187
8187
|
...r,
|
|
8188
8188
|
children: /* @__PURE__ */ c.jsx(qe, { children: /* @__PURE__ */ c.jsx(ft, { id: "apolitical" }) })
|
|
8189
8189
|
}
|
|
@@ -8204,7 +8204,7 @@ const fv = ({
|
|
|
8204
8204
|
document.removeEventListener("click", l, !0);
|
|
8205
8205
|
})), ie.createElement(e, {
|
|
8206
8206
|
ref: a,
|
|
8207
|
-
className:
|
|
8207
|
+
className: U("more-menu text-medium", r),
|
|
8208
8208
|
children: /* @__PURE__ */ c.jsxs(c.Fragment, { children: [
|
|
8209
8209
|
/* @__PURE__ */ c.jsx(
|
|
8210
8210
|
Se,
|
|
@@ -8276,7 +8276,7 @@ const hv = vr(() => Promise.resolve().then(() => lp)), pv = [
|
|
|
8276
8276
|
return /* @__PURE__ */ c.jsxs("ul", { id: "navigation-menu", className: "text-medium", children: [
|
|
8277
8277
|
pv.map(({ key: a, href: s }) => {
|
|
8278
8278
|
const o = mv(s, e), l = {};
|
|
8279
|
-
return o && (l["aria-current"] = "page"), /* @__PURE__ */ c.jsx("li", { className:
|
|
8279
|
+
return o && (l["aria-current"] = "page"), /* @__PURE__ */ c.jsx("li", { className: U(a, { active: o }), children: /* @__PURE__ */ c.jsx(
|
|
8280
8280
|
"a",
|
|
8281
8281
|
{
|
|
8282
8282
|
href: s,
|
|
@@ -8356,7 +8356,7 @@ const bv = "shareLinks_", Kk = ({
|
|
|
8356
8356
|
className: s = ""
|
|
8357
8357
|
}) => {
|
|
8358
8358
|
const o = de(), l = vv({ title: e, link: t, referrer: n });
|
|
8359
|
-
return /* @__PURE__ */ c.jsxs("aside", { className:
|
|
8359
|
+
return /* @__PURE__ */ c.jsxs("aside", { className: U("share-links", i, a, s), children: [
|
|
8360
8360
|
/* @__PURE__ */ c.jsx("p", { className: "text-small", children: o.formatMessage({ id: "shareLinks_label" }) }),
|
|
8361
8361
|
/* @__PURE__ */ c.jsx("ul", { children: l.map(({ key: u, icon: d, url: m, shouldRender: h = !0, onClick: p }) => {
|
|
8362
8362
|
if (typeof h == "function" && !h())
|
|
@@ -8454,7 +8454,7 @@ const Zk = ({ tabs: e, className: t = "", preventLocationChange: n }) => {
|
|
|
8454
8454
|
href: y || `#${f}`,
|
|
8455
8455
|
id: `tab-${f}`,
|
|
8456
8456
|
"aria-controls": f,
|
|
8457
|
-
className:
|
|
8457
|
+
className: U({ selected: _ }),
|
|
8458
8458
|
role: "tab",
|
|
8459
8459
|
tabIndex: _ ? 0 : -1,
|
|
8460
8460
|
"aria-selected": _,
|
|
@@ -8465,7 +8465,7 @@ const Zk = ({ tabs: e, className: t = "", preventLocationChange: n }) => {
|
|
|
8465
8465
|
) }, `tab-${f}`)
|
|
8466
8466
|
);
|
|
8467
8467
|
}
|
|
8468
|
-
), /* @__PURE__ */ c.jsxs("div", { className:
|
|
8468
|
+
), /* @__PURE__ */ c.jsxs("div", { className: U("tabs-wrapper", t), children: [
|
|
8469
8469
|
/* @__PURE__ */ c.jsx("ul", { className: "tabs", role: "tablist", children: h }),
|
|
8470
8470
|
/* @__PURE__ */ c.jsx("div", { className: "tab-content", children: p })
|
|
8471
8471
|
] });
|
|
@@ -8486,7 +8486,7 @@ const yv = {
|
|
|
8486
8486
|
return ie.Children.count(i) === 1 && (s = ie.Children.toArray(i)[0], s.props && (s = s.props.children)), /* @__PURE__ */ c.jsx(
|
|
8487
8487
|
"section",
|
|
8488
8488
|
{
|
|
8489
|
-
className:
|
|
8489
|
+
className: U("columns", `layout-${e}`, r, {
|
|
8490
8490
|
"has-containers": n
|
|
8491
8491
|
}),
|
|
8492
8492
|
children: ie.Children.map(s, (o, l) => t !== !1 && l === t && a && a < yv[e] ? null : o)
|
|
@@ -8508,7 +8508,7 @@ const Zd = ({
|
|
|
8508
8508
|
"small",
|
|
8509
8509
|
{
|
|
8510
8510
|
id: e,
|
|
8511
|
-
className:
|
|
8511
|
+
className: U("character-limit", {
|
|
8512
8512
|
"near-limit": l,
|
|
8513
8513
|
"approaching-limit": u
|
|
8514
8514
|
}),
|
|
@@ -8707,7 +8707,7 @@ const bi = "emailHelperTextBox_", Dv = ({
|
|
|
8707
8707
|
...h,
|
|
8708
8708
|
id: n,
|
|
8709
8709
|
name: a,
|
|
8710
|
-
className:
|
|
8710
|
+
className: U(e, t, { autoresize: f }),
|
|
8711
8711
|
value: l,
|
|
8712
8712
|
placeholder: s,
|
|
8713
8713
|
autoFocus: u,
|
|
@@ -8832,7 +8832,7 @@ const Gn = {
|
|
|
8832
8832
|
..._,
|
|
8833
8833
|
activePredictionIndex: C
|
|
8834
8834
|
})),
|
|
8835
|
-
className:
|
|
8835
|
+
className: U("predictions-list-item", {
|
|
8836
8836
|
active: C === p
|
|
8837
8837
|
}),
|
|
8838
8838
|
children: F.description
|
|
@@ -8874,7 +8874,15 @@ const Yd = ({
|
|
|
8874
8874
|
tabIndex: -1
|
|
8875
8875
|
}
|
|
8876
8876
|
),
|
|
8877
|
-
/* @__PURE__ */ c.jsx(
|
|
8877
|
+
/* @__PURE__ */ c.jsx(
|
|
8878
|
+
"span",
|
|
8879
|
+
{
|
|
8880
|
+
className: U("pretty-checkbox", {
|
|
8881
|
+
radio: u === "radio"
|
|
8882
|
+
}),
|
|
8883
|
+
"data-testid": "pretty-checkbox"
|
|
8884
|
+
}
|
|
8885
|
+
),
|
|
8878
8886
|
/* @__PURE__ */ c.jsx(
|
|
8879
8887
|
"label",
|
|
8880
8888
|
{
|
|
@@ -8918,7 +8926,7 @@ const Yd = ({
|
|
|
8918
8926
|
break;
|
|
8919
8927
|
}
|
|
8920
8928
|
} : void 0,
|
|
8921
|
-
className:
|
|
8929
|
+
className: U(i, "checkbox-wrapper", e, {
|
|
8922
8930
|
"is-checked": d
|
|
8923
8931
|
}),
|
|
8924
8932
|
...h,
|
|
@@ -8933,7 +8941,7 @@ const _v = rn(function({
|
|
|
8933
8941
|
return /* @__PURE__ */ c.jsx(
|
|
8934
8942
|
lo,
|
|
8935
8943
|
{
|
|
8936
|
-
className:
|
|
8944
|
+
className: U("rotating-chevron", `direction-${t}`)
|
|
8937
8945
|
}
|
|
8938
8946
|
);
|
|
8939
8947
|
});
|
|
@@ -8969,7 +8977,7 @@ const kv = ({
|
|
|
8969
8977
|
} else
|
|
8970
8978
|
b([]), y && y([]);
|
|
8971
8979
|
};
|
|
8972
|
-
return /* @__PURE__ */ c.jsxs("div", { className:
|
|
8980
|
+
return /* @__PURE__ */ c.jsxs("div", { className: U("dropdown-wrapper", e), children: [
|
|
8973
8981
|
/* @__PURE__ */ c.jsxs(
|
|
8974
8982
|
"button",
|
|
8975
8983
|
{
|
|
@@ -9054,7 +9062,7 @@ const kv = ({
|
|
|
9054
9062
|
return /* @__PURE__ */ c.jsx("li", { "data-testid": "dropdown-options", children: /* @__PURE__ */ c.jsxs(
|
|
9055
9063
|
"button",
|
|
9056
9064
|
{
|
|
9057
|
-
className:
|
|
9065
|
+
className: U("gtm-trackable", {
|
|
9058
9066
|
selected: $,
|
|
9059
9067
|
"selected-single": $ && !o
|
|
9060
9068
|
}),
|
|
@@ -9068,7 +9076,7 @@ const kv = ({
|
|
|
9068
9076
|
"data-testid": $ ? "current-selection" : "",
|
|
9069
9077
|
children: [
|
|
9070
9078
|
o && /* @__PURE__ */ c.jsx("span", { className: "pretty-checkbox", "data-testid": "pretty-checkbox" }),
|
|
9071
|
-
/* @__PURE__ */ c.jsx("span", { className:
|
|
9079
|
+
/* @__PURE__ */ c.jsx("span", { className: U({ "menu-option-label": o }), children: B.label })
|
|
9072
9080
|
]
|
|
9073
9081
|
}
|
|
9074
9082
|
) }, B.id);
|
|
@@ -9154,14 +9162,14 @@ const Av = ({
|
|
|
9154
9162
|
return;
|
|
9155
9163
|
const T = It(l);
|
|
9156
9164
|
T && e && (T.forEach((R) => {
|
|
9157
|
-
const { condition: q, error:
|
|
9165
|
+
const { condition: q, error: V } = R;
|
|
9158
9166
|
if (typeof q == "function")
|
|
9159
9167
|
R.condition = (re) => {
|
|
9160
9168
|
var J;
|
|
9161
9169
|
let ne = (J = re == null ? void 0 : re[e]) == null ? void 0 : J[k];
|
|
9162
9170
|
ne || (re[e] && !Array.isArray(re[e]) ? ne = re[e] : ne = "");
|
|
9163
9171
|
const D = It(re);
|
|
9164
|
-
return D[e] = ne, typeof q == "function" && q(D) ?
|
|
9172
|
+
return D[e] = ne, typeof q == "function" && q(D) ? V : !1;
|
|
9165
9173
|
};
|
|
9166
9174
|
else {
|
|
9167
9175
|
const re = q;
|
|
@@ -9170,16 +9178,16 @@ const Av = ({
|
|
|
9170
9178
|
let D = (J = ne == null ? void 0 : ne[e]) == null ? void 0 : J[k];
|
|
9171
9179
|
switch (D || (ne[e] && !Array.isArray(ne[e]) ? D = ne[e] : D = ""), re) {
|
|
9172
9180
|
case "required":
|
|
9173
|
-
|
|
9181
|
+
V || (R.error = h == null ? void 0 : h.formatMessage({ id: "form_error_required" }));
|
|
9174
9182
|
break;
|
|
9175
9183
|
case "no-numbers":
|
|
9176
|
-
|
|
9184
|
+
V || (R.error = h == null ? void 0 : h.formatMessage({ id: "form_error_numbers" }));
|
|
9177
9185
|
break;
|
|
9178
9186
|
case "valid-email":
|
|
9179
|
-
|
|
9187
|
+
V || (R.error = V || (h == null ? void 0 : h.formatMessage({ id: "form_error_email" })));
|
|
9180
9188
|
break;
|
|
9181
9189
|
case "valid-url":
|
|
9182
|
-
|
|
9190
|
+
V || (R.error = h == null ? void 0 : h.formatMessage({ id: "form_error_url" }));
|
|
9183
9191
|
break;
|
|
9184
9192
|
default:
|
|
9185
9193
|
console.warn("WARNING! No field validation condition has been set");
|
|
@@ -9210,7 +9218,7 @@ const Av = ({
|
|
|
9210
9218
|
return /* @__PURE__ */ c.jsxs(
|
|
9211
9219
|
"fieldset",
|
|
9212
9220
|
{
|
|
9213
|
-
className:
|
|
9221
|
+
className: U("multiple-inputs field-wrapper", {
|
|
9214
9222
|
"has-button": g,
|
|
9215
9223
|
"has-legend": t
|
|
9216
9224
|
}),
|
|
@@ -9324,7 +9332,7 @@ const Hu = ({
|
|
|
9324
9332
|
"ul",
|
|
9325
9333
|
{
|
|
9326
9334
|
...p,
|
|
9327
|
-
className:
|
|
9335
|
+
className: U("options-wrapper", e, {
|
|
9328
9336
|
"with-pills filters": h
|
|
9329
9337
|
}),
|
|
9330
9338
|
"data-testid": `ul-${r}`,
|
|
@@ -9388,7 +9396,7 @@ const Fv = ({
|
|
|
9388
9396
|
"button",
|
|
9389
9397
|
{
|
|
9390
9398
|
type: "button",
|
|
9391
|
-
className:
|
|
9399
|
+
className: U("show-password gtm-trackable", {
|
|
9392
9400
|
"password-visible": l
|
|
9393
9401
|
}),
|
|
9394
9402
|
"data-gtm-event-context": n,
|
|
@@ -9490,7 +9498,7 @@ const Qn = {
|
|
|
9490
9498
|
{
|
|
9491
9499
|
...$,
|
|
9492
9500
|
label: L,
|
|
9493
|
-
className:
|
|
9501
|
+
className: U("field-wrapper", i)
|
|
9494
9502
|
}
|
|
9495
9503
|
),
|
|
9496
9504
|
/* @__PURE__ */ c.jsx(I, { as: "p" })
|
|
@@ -9504,7 +9512,7 @@ const Qn = {
|
|
|
9504
9512
|
return /* @__PURE__ */ c.jsx(c.Fragment, { children: ie.createElement(
|
|
9505
9513
|
w ? "fieldset" : "div",
|
|
9506
9514
|
{
|
|
9507
|
-
className:
|
|
9515
|
+
className: U(
|
|
9508
9516
|
"field-wrapper text-medium",
|
|
9509
9517
|
i,
|
|
9510
9518
|
`${u}-wrapper`,
|
|
@@ -9700,7 +9708,7 @@ const hn = ({
|
|
|
9700
9708
|
formSubmitted: !1,
|
|
9701
9709
|
errors: {},
|
|
9702
9710
|
values: T
|
|
9703
|
-
}), { errors:
|
|
9711
|
+
}), { errors: V, isSubmitting: re, formSubmitted: ne, values: D } = R;
|
|
9704
9712
|
fe(() => {
|
|
9705
9713
|
C && ne && (Ua = setTimeout(() => {
|
|
9706
9714
|
q({
|
|
@@ -9792,7 +9800,7 @@ const hn = ({
|
|
|
9792
9800
|
{
|
|
9793
9801
|
...y,
|
|
9794
9802
|
icon: ne ? { icon: "tick", position: "left" } : !1,
|
|
9795
|
-
className:
|
|
9803
|
+
className: U("gtm-trackable", y.className),
|
|
9796
9804
|
onClick: z,
|
|
9797
9805
|
disabled: re || ne || s.disabled,
|
|
9798
9806
|
"data-gtm-event-context": d.context,
|
|
@@ -9802,7 +9810,7 @@ const hn = ({
|
|
|
9802
9810
|
];
|
|
9803
9811
|
return F && j.unshift({
|
|
9804
9812
|
...o,
|
|
9805
|
-
className:
|
|
9813
|
+
className: U("gtm-trackable", o.className),
|
|
9806
9814
|
"data-gtm-event-context": d.context,
|
|
9807
9815
|
"data-gtm-event-type": d.event,
|
|
9808
9816
|
disabled: re || ne,
|
|
@@ -9814,11 +9822,11 @@ const hn = ({
|
|
|
9814
9822
|
{
|
|
9815
9823
|
...h,
|
|
9816
9824
|
id: r,
|
|
9817
|
-
className:
|
|
9825
|
+
className: U("form", n),
|
|
9818
9826
|
ref: G
|
|
9819
9827
|
},
|
|
9820
9828
|
/* @__PURE__ */ c.jsxs(c.Fragment, { children: [
|
|
9821
|
-
|
|
9829
|
+
V != null && V.general ? /* @__PURE__ */ c.jsx(
|
|
9822
9830
|
Vn,
|
|
9823
9831
|
{
|
|
9824
9832
|
variant: "error",
|
|
@@ -9851,7 +9859,7 @@ const hn = ({
|
|
|
9851
9859
|
...M,
|
|
9852
9860
|
showRequiredLabels: B,
|
|
9853
9861
|
value: be,
|
|
9854
|
-
error: M.type === "multiple-inputs" ?
|
|
9862
|
+
error: M.type === "multiple-inputs" ? V : V == null ? void 0 : V[Z],
|
|
9855
9863
|
functions: me,
|
|
9856
9864
|
fieldData: {
|
|
9857
9865
|
fields: v.fieldsToValidate,
|
|
@@ -9866,7 +9874,7 @@ const hn = ({
|
|
|
9866
9874
|
g ? null : (re || ne) && b ? b : /* @__PURE__ */ c.jsx(
|
|
9867
9875
|
ri,
|
|
9868
9876
|
{
|
|
9869
|
-
className:
|
|
9877
|
+
className: U("cta", {
|
|
9870
9878
|
center: re || ne,
|
|
9871
9879
|
submitted: ne
|
|
9872
9880
|
}),
|
|
@@ -9891,13 +9899,13 @@ const yi = "passwordRules_", Qd = "isMoreThanEightCharacters", Jd = "includesNum
|
|
|
9891
9899
|
className: t = ""
|
|
9892
9900
|
}) => {
|
|
9893
9901
|
const n = de();
|
|
9894
|
-
return /* @__PURE__ */ c.jsxs("aside", { className:
|
|
9902
|
+
return /* @__PURE__ */ c.jsxs("aside", { className: U("password-rules", t), children: [
|
|
9895
9903
|
/* @__PURE__ */ c.jsx("small", { children: n.formatMessage({ id: `${yi}intro` }) }),
|
|
9896
9904
|
/* @__PURE__ */ c.jsx("ul", { children: [Qd, Jd, Xd].map(
|
|
9897
9905
|
(r) => /* @__PURE__ */ c.jsxs(
|
|
9898
9906
|
"li",
|
|
9899
9907
|
{
|
|
9900
|
-
className:
|
|
9908
|
+
className: U({ matches: e[r] }),
|
|
9901
9909
|
children: [
|
|
9902
9910
|
/* @__PURE__ */ c.jsxs(qe, { children: [
|
|
9903
9911
|
n.formatMessage({ id: `${yi}rule_label` }),
|
|
@@ -9966,14 +9974,14 @@ const Yk = ({
|
|
|
9966
9974
|
u((y) => ({ ...y, disabled: !1 }));
|
|
9967
9975
|
}
|
|
9968
9976
|
};
|
|
9969
|
-
return /* @__PURE__ */ c.jsxs("div", { className:
|
|
9977
|
+
return /* @__PURE__ */ c.jsxs("div", { className: U("rating", a), children: [
|
|
9970
9978
|
/* @__PURE__ */ c.jsx("span", { className: "label", children: f[h ? "success" : "text"] }),
|
|
9971
9979
|
/* @__PURE__ */ c.jsx("ol", { children: Array.from(new Array(t).keys()).map((g) => {
|
|
9972
9980
|
const y = g + 1;
|
|
9973
9981
|
return /* @__PURE__ */ c.jsx(
|
|
9974
9982
|
"li",
|
|
9975
9983
|
{
|
|
9976
|
-
className:
|
|
9984
|
+
className: U({ selected: h && y <= h }),
|
|
9977
9985
|
children: /* @__PURE__ */ c.jsx(
|
|
9978
9986
|
Se,
|
|
9979
9987
|
{
|
|
@@ -10228,26 +10236,26 @@ const Vb = /* @__PURE__ */ qn(Ub), Xu = (e) => typeof e == "object" && e != null
|
|
|
10228
10236
|
v != null && v === document.body && Wa(v) && !Wa(document.documentElement) || v != null && Wa(v, d) && p.push(v);
|
|
10229
10237
|
}
|
|
10230
10238
|
const f = (r = (n = window.visualViewport) == null ? void 0 : n.width) != null ? r : innerWidth, b = (a = (i = window.visualViewport) == null ? void 0 : i.height) != null ? a : innerHeight, { scrollX: g, scrollY: y } = window, { height: w, width: F, top: C, right: _, bottom: B, left: $ } = e.getBoundingClientRect(), { top: O, right: L, bottom: I, left: A } = ((q) => {
|
|
10231
|
-
const
|
|
10232
|
-
return { top: parseFloat(
|
|
10239
|
+
const V = window.getComputedStyle(q);
|
|
10240
|
+
return { top: parseFloat(V.scrollMarginTop) || 0, right: parseFloat(V.scrollMarginRight) || 0, bottom: parseFloat(V.scrollMarginBottom) || 0, left: parseFloat(V.scrollMarginLeft) || 0 };
|
|
10233
10241
|
})(e);
|
|
10234
10242
|
let k = o === "start" || o === "nearest" ? C - O : o === "end" ? B + I : C + w / 2 - O + I, T = l === "center" ? $ + F / 2 - A + L : l === "end" ? _ + L : $ - A;
|
|
10235
10243
|
const R = [];
|
|
10236
10244
|
for (let q = 0; q < p.length; q++) {
|
|
10237
|
-
const
|
|
10245
|
+
const V = p[q], { height: re, width: ne, top: D, right: J, bottom: G, left: E } = V.getBoundingClientRect();
|
|
10238
10246
|
if (s === "if-needed" && C >= 0 && $ >= 0 && B <= b && _ <= f && C >= D && B <= G && $ >= E && _ <= J)
|
|
10239
10247
|
return R;
|
|
10240
|
-
const S = getComputedStyle(
|
|
10248
|
+
const S = getComputedStyle(V), z = parseInt(S.borderLeftWidth, 10), j = parseInt(S.borderTopWidth, 10), M = parseInt(S.borderRightWidth, 10), W = parseInt(S.borderBottomWidth, 10);
|
|
10241
10249
|
let Z = 0, ee = 0;
|
|
10242
|
-
const oe = "offsetWidth" in
|
|
10243
|
-
if (h ===
|
|
10250
|
+
const oe = "offsetWidth" in V ? V.offsetWidth - V.clientWidth - z - M : 0, Q = "offsetHeight" in V ? V.offsetHeight - V.clientHeight - j - W : 0, be = "offsetWidth" in V ? V.offsetWidth === 0 ? 0 : ne / V.offsetWidth : 0, me = "offsetHeight" in V ? V.offsetHeight === 0 ? 0 : re / V.offsetHeight : 0;
|
|
10251
|
+
if (h === V)
|
|
10244
10252
|
Z = o === "start" ? k : o === "end" ? k - b : o === "nearest" ? xi(y, y + b, b, j, W, y + k, y + k + w, w) : k - b / 2, ee = l === "start" ? T : l === "center" ? T - f / 2 : l === "end" ? T - f : xi(g, g + f, f, z, M, g + T, g + T + F, F), Z = Math.max(0, Z + y), ee = Math.max(0, ee + g);
|
|
10245
10253
|
else {
|
|
10246
10254
|
Z = o === "start" ? k - D - j : o === "end" ? k - G + W + Q : o === "nearest" ? xi(D, G, re, j, W + Q, k, k + w, w) : k - (D + re / 2) + Q / 2, ee = l === "start" ? T - E - z : l === "center" ? T - (E + ne / 2) + oe / 2 : l === "end" ? T - J + M + oe : xi(E, J, ne, z, M + oe, T, T + F, F);
|
|
10247
|
-
const { scrollLeft: we, scrollTop: je } =
|
|
10248
|
-
Z = me === 0 ? 0 : Math.max(0, Math.min(je + Z / me,
|
|
10255
|
+
const { scrollLeft: we, scrollTop: je } = V;
|
|
10256
|
+
Z = me === 0 ? 0 : Math.max(0, Math.min(je + Z / me, V.scrollHeight - re / me + Q)), ee = be === 0 ? 0 : Math.max(0, Math.min(we + ee / be, V.scrollWidth - ne / be + oe)), k += je - Z, T += we - ee;
|
|
10249
10257
|
}
|
|
10250
|
-
R.push({ el:
|
|
10258
|
+
R.push({ el: V, top: Z, left: ee });
|
|
10251
10259
|
}
|
|
10252
10260
|
return R;
|
|
10253
10261
|
}, Hb = (e) => e === !1 ? { block: "end", inline: "nearest" } : ((t) => t === Object(t) && Object.keys(t).length !== 0)(e) ? e : { block: "start", inline: "nearest" };
|
|
@@ -11076,8 +11084,8 @@ var c0 = (e, t, n) => {
|
|
|
11076
11084
|
A.children.splice(k, 1);
|
|
11077
11085
|
var T = N.transform(O, n), R = le.get(e, N.parent(T)), q = T[T.length - 1];
|
|
11078
11086
|
if (R.children.splice(q, 0, I), t)
|
|
11079
|
-
for (var [
|
|
11080
|
-
t[re] = Pe.transform(
|
|
11087
|
+
for (var [V, re] of Y.points(t))
|
|
11088
|
+
t[re] = Pe.transform(V, n);
|
|
11081
11089
|
break;
|
|
11082
11090
|
}
|
|
11083
11091
|
case "remove_node": {
|
|
@@ -13409,7 +13417,7 @@ var Qy = (e, t) => {
|
|
|
13409
13417
|
var [R, q] = T;
|
|
13410
13418
|
k && N.compare(q, k) === 0 || (!l && pe.isElement(R) && (x.isVoid(t, R) || x.isElementReadOnly(t, R)) || !N.isCommon(q, y.path) && !N.isCommon(q, w.path)) && (A.push(T), k = q);
|
|
13411
13419
|
}
|
|
13412
|
-
var
|
|
13420
|
+
var V = Array.from(A, (me) => {
|
|
13413
13421
|
var [, we] = me;
|
|
13414
13422
|
return x.pathRef(t, we);
|
|
13415
13423
|
}), re = x.pointRef(t, y), ne = x.pointRef(t, w), D = "";
|
|
@@ -13426,7 +13434,7 @@ var Qy = (e, t) => {
|
|
|
13426
13434
|
text: z
|
|
13427
13435
|
}), D = z);
|
|
13428
13436
|
}
|
|
13429
|
-
if (
|
|
13437
|
+
if (V.reverse().map((me) => me.unref()).filter((me) => me !== null).forEach((me) => X.removeNodes(t, {
|
|
13430
13438
|
at: me,
|
|
13431
13439
|
voids: l
|
|
13432
13440
|
})), !O) {
|
|
@@ -13524,7 +13532,7 @@ var Qy = (e, t) => {
|
|
|
13524
13532
|
match: (z) => ve.isText(z) || x.isInline(t, z),
|
|
13525
13533
|
mode: "highest",
|
|
13526
13534
|
voids: a
|
|
13527
|
-
}), [,
|
|
13535
|
+
}), [, V] = q, re = x.isStart(t, s, V), ne = x.isEnd(t, s, V), D = x.pathRef(t, g && !A.length ? N.next(f) : f), J = x.pathRef(t, ne ? N.next(V) : V);
|
|
13528
13536
|
X.splitNodes(t, {
|
|
13529
13537
|
at: s,
|
|
13530
13538
|
match: (z) => T ? pe.isElement(z) && x.isBlock(t, z) : ve.isText(z) || x.isInline(t, z),
|
|
@@ -13532,7 +13540,7 @@ var Qy = (e, t) => {
|
|
|
13532
13540
|
always: T && (!b || L.length > 0) && (!g || A.length > 0),
|
|
13533
13541
|
voids: a
|
|
13534
13542
|
});
|
|
13535
|
-
var G = x.pathRef(t, !re || re && ne ? N.next(
|
|
13543
|
+
var G = x.pathRef(t, !re || re && ne ? N.next(V) : V);
|
|
13536
13544
|
if (X.insertNodes(t, L, {
|
|
13537
13545
|
at: G.current,
|
|
13538
13546
|
match: (z) => ve.isText(z) || x.isInline(t, z),
|
|
@@ -14147,8 +14155,8 @@ var l1 = function(t, n) {
|
|
|
14147
14155
|
L = A[A.length - 1] + (k || R ? 1 : 0);
|
|
14148
14156
|
}
|
|
14149
14157
|
if (n.at == null) {
|
|
14150
|
-
var
|
|
14151
|
-
X.select(t,
|
|
14158
|
+
var V = p.current || x.end(t, []);
|
|
14159
|
+
X.select(t, V);
|
|
14152
14160
|
}
|
|
14153
14161
|
} finally {
|
|
14154
14162
|
var re;
|
|
@@ -15906,8 +15914,8 @@ function kx(e) {
|
|
|
15906
15914
|
});
|
|
15907
15915
|
ln.set(t, t.marks), Ex("flush", yn.get(t), kt.get(t));
|
|
15908
15916
|
for (var k = F(), T; T = (R = kt.get(t)) === null || R === void 0 ? void 0 : R[0]; ) {
|
|
15909
|
-
var R, q,
|
|
15910
|
-
|
|
15917
|
+
var R, q, V = Ht.get(t);
|
|
15918
|
+
V !== void 0 && (Ht.delete(t), t.marks = V), V && u === !1 && (u = null);
|
|
15911
15919
|
var re = xx(T);
|
|
15912
15920
|
(!t.selection || !Y.equals(t.selection, re)) && X.select(t, re), T.diff.text ? x.insertText(t, T.diff.text) : x.deleteFragment(t), kt.set(t, (q = kt.get(t)) === null || q === void 0 ? void 0 : q.filter((J) => {
|
|
15913
15921
|
var {
|
|
@@ -15942,8 +15950,8 @@ function kx(e) {
|
|
|
15942
15950
|
}, b = (A, k) => {
|
|
15943
15951
|
var T, R = (T = kt.get(t)) !== null && T !== void 0 ? T : [];
|
|
15944
15952
|
kt.set(t, R);
|
|
15945
|
-
var q = le.leaf(t, A),
|
|
15946
|
-
if (
|
|
15953
|
+
var q = le.leaf(t, A), V = R.findIndex((D) => N.equals(D.path, A));
|
|
15954
|
+
if (V < 0) {
|
|
15947
15955
|
var re = Rf(q.text, k);
|
|
15948
15956
|
re && R.push({
|
|
15949
15957
|
path: A,
|
|
@@ -15952,12 +15960,12 @@ function kx(e) {
|
|
|
15952
15960
|
}), f();
|
|
15953
15961
|
return;
|
|
15954
15962
|
}
|
|
15955
|
-
var ne = yx(q.text, R[
|
|
15963
|
+
var ne = yx(q.text, R[V].diff, k);
|
|
15956
15964
|
if (!ne) {
|
|
15957
|
-
R.splice(
|
|
15965
|
+
R.splice(V, 1), f();
|
|
15958
15966
|
return;
|
|
15959
15967
|
}
|
|
15960
|
-
R[
|
|
15968
|
+
R[V] = ki(ki({}, R[V]), {}, {
|
|
15961
15969
|
diff: ne
|
|
15962
15970
|
});
|
|
15963
15971
|
}, g = function(k) {
|
|
@@ -15975,13 +15983,13 @@ function kx(e) {
|
|
|
15975
15983
|
inputType: T
|
|
15976
15984
|
} = A, R = null, q = A.dataTransfer || A.data || void 0;
|
|
15977
15985
|
u !== !1 && T !== "insertText" && T !== "insertCompositionText" && (u = !1);
|
|
15978
|
-
var [
|
|
15979
|
-
|
|
15986
|
+
var [V] = A.getTargetRanges();
|
|
15987
|
+
V && (R = te.toSlateRange(t, V, {
|
|
15980
15988
|
exactMatch: !1,
|
|
15981
15989
|
suppressThrow: !0
|
|
15982
15990
|
}));
|
|
15983
15991
|
var re = te.getWindow(t), ne = re.getSelection();
|
|
15984
|
-
if (!R && ne && (
|
|
15992
|
+
if (!R && ne && (V = ne, R = te.toSlateRange(t, ne, {
|
|
15985
15993
|
exactMatch: !1,
|
|
15986
15994
|
suppressThrow: !0
|
|
15987
15995
|
})), R = (k = R) !== null && k !== void 0 ? k : t.selection, !!R) {
|
|
@@ -16052,7 +16060,7 @@ function kx(e) {
|
|
|
16052
16060
|
case "deleteContentBackward": {
|
|
16053
16061
|
var Ue, {
|
|
16054
16062
|
anchor: Le
|
|
16055
|
-
} = R, tt = Hs(
|
|
16063
|
+
} = R, tt = Hs(V) ? V.isCollapsed : !!((Ue = V) !== null && Ue !== void 0 && Ue.collapsed);
|
|
16056
16064
|
return D && tt && Y.isCollapsed(R) && Le.offset > 0 ? b(Le.path, {
|
|
16057
16065
|
text: "",
|
|
16058
16066
|
start: Le.offset - 1,
|
|
@@ -17044,7 +17052,7 @@ var lw = (e) => /* @__PURE__ */ ie.createElement(ie.Fragment, null, qf(e)), cw =
|
|
|
17044
17052
|
S.document.removeEventListener("selectionchange", A);
|
|
17045
17053
|
};
|
|
17046
17054
|
}, [A]);
|
|
17047
|
-
var R = r([f, []]), q = a && f.children.length === 1 && Array.from(le.texts(f)).length === 1 && le.string(f) === "" && !b,
|
|
17055
|
+
var R = r([f, []]), q = a && f.children.length === 1 && Array.from(le.texts(f)).length === 1 && le.string(f) === "" && !b, V = Ie((S) => {
|
|
17048
17056
|
if (S && q) {
|
|
17049
17057
|
var z;
|
|
17050
17058
|
C((z = S.getBoundingClientRect()) === null || z === void 0 ? void 0 : z.height);
|
|
@@ -17056,7 +17064,7 @@ var lw = (e) => /* @__PURE__ */ ie.createElement(ie.Fragment, null, qf(e)), cw =
|
|
|
17056
17064
|
R.push({
|
|
17057
17065
|
[gr]: !0,
|
|
17058
17066
|
placeholder: a,
|
|
17059
|
-
onPlaceholderResize:
|
|
17067
|
+
onPlaceholderResize: V,
|
|
17060
17068
|
anchor: re,
|
|
17061
17069
|
focus: re
|
|
17062
17070
|
});
|
|
@@ -20447,7 +20455,7 @@ function HD(e, t, n) {
|
|
|
20447
20455
|
return E === null || Ce(E) ? A(E) : We(E) ? (e.consume(E), I) : n(E);
|
|
20448
20456
|
}
|
|
20449
20457
|
function A(E) {
|
|
20450
|
-
return E === 45 && i === 2 ? (e.consume(E), q) : E === 60 && i === 1 ? (e.consume(E),
|
|
20458
|
+
return E === 45 && i === 2 ? (e.consume(E), q) : E === 60 && i === 1 ? (e.consume(E), V) : E === 62 && i === 4 ? (e.consume(E), J) : E === 63 && i === 3 ? (e.consume(E), D) : E === 93 && i === 5 ? (e.consume(E), ne) : Ce(E) && (i === 6 || i === 7) ? (e.exit("htmlFlowData"), e.check(UD, G, k)(E)) : E === null || Ce(E) ? (e.exit("htmlFlowData"), k(E)) : (e.consume(E), A);
|
|
20451
20459
|
}
|
|
20452
20460
|
function k(E) {
|
|
20453
20461
|
return e.check(VD, T, G)(E);
|
|
@@ -20461,7 +20469,7 @@ function HD(e, t, n) {
|
|
|
20461
20469
|
function q(E) {
|
|
20462
20470
|
return E === 45 ? (e.consume(E), D) : A(E);
|
|
20463
20471
|
}
|
|
20464
|
-
function
|
|
20472
|
+
function V(E) {
|
|
20465
20473
|
return E === 47 ? (e.consume(E), s = "", re) : A(E);
|
|
20466
20474
|
}
|
|
20467
20475
|
function re(E) {
|
|
@@ -20521,7 +20529,7 @@ function GD(e, t, n) {
|
|
|
20521
20529
|
return D === 45 ? (e.consume(D), p) : n(D);
|
|
20522
20530
|
}
|
|
20523
20531
|
function m(D) {
|
|
20524
|
-
return D === null ? n(D) : D === 45 ? (e.consume(D), h) : Ce(D) ? (s = m,
|
|
20532
|
+
return D === null ? n(D) : D === 45 ? (e.consume(D), h) : Ce(D) ? (s = m, V(D)) : (e.consume(D), m);
|
|
20525
20533
|
}
|
|
20526
20534
|
function h(D) {
|
|
20527
20535
|
return D === 45 ? (e.consume(D), p) : m(D);
|
|
@@ -20534,7 +20542,7 @@ function GD(e, t, n) {
|
|
|
20534
20542
|
return D === J.charCodeAt(a++) ? (e.consume(D), a === J.length ? f : v) : n(D);
|
|
20535
20543
|
}
|
|
20536
20544
|
function f(D) {
|
|
20537
|
-
return D === null ? n(D) : D === 93 ? (e.consume(D), b) : Ce(D) ? (s = f,
|
|
20545
|
+
return D === null ? n(D) : D === 93 ? (e.consume(D), b) : Ce(D) ? (s = f, V(D)) : (e.consume(D), f);
|
|
20538
20546
|
}
|
|
20539
20547
|
function b(D) {
|
|
20540
20548
|
return D === 93 ? (e.consume(D), g) : f(D);
|
|
@@ -20543,10 +20551,10 @@ function GD(e, t, n) {
|
|
|
20543
20551
|
return D === 62 ? q(D) : D === 93 ? (e.consume(D), g) : f(D);
|
|
20544
20552
|
}
|
|
20545
20553
|
function y(D) {
|
|
20546
|
-
return D === null || D === 62 ? q(D) : Ce(D) ? (s = y,
|
|
20554
|
+
return D === null || D === 62 ? q(D) : Ce(D) ? (s = y, V(D)) : (e.consume(D), y);
|
|
20547
20555
|
}
|
|
20548
20556
|
function w(D) {
|
|
20549
|
-
return D === null ? n(D) : D === 63 ? (e.consume(D), F) : Ce(D) ? (s = w,
|
|
20557
|
+
return D === null ? n(D) : D === 63 ? (e.consume(D), F) : Ce(D) ? (s = w, V(D)) : (e.consume(D), w);
|
|
20550
20558
|
}
|
|
20551
20559
|
function F(D) {
|
|
20552
20560
|
return D === 62 ? q(D) : w(D);
|
|
@@ -20558,25 +20566,25 @@ function GD(e, t, n) {
|
|
|
20558
20566
|
return D === 45 || Kt(D) ? (e.consume(D), _) : B(D);
|
|
20559
20567
|
}
|
|
20560
20568
|
function B(D) {
|
|
20561
|
-
return Ce(D) ? (s = B,
|
|
20569
|
+
return Ce(D) ? (s = B, V(D)) : We(D) ? (e.consume(D), B) : q(D);
|
|
20562
20570
|
}
|
|
20563
20571
|
function $(D) {
|
|
20564
20572
|
return D === 45 || Kt(D) ? (e.consume(D), $) : D === 47 || D === 62 || Ft(D) ? O(D) : n(D);
|
|
20565
20573
|
}
|
|
20566
20574
|
function O(D) {
|
|
20567
|
-
return D === 47 ? (e.consume(D), q) : D === 58 || D === 95 || Jt(D) ? (e.consume(D), L) : Ce(D) ? (s = O,
|
|
20575
|
+
return D === 47 ? (e.consume(D), q) : D === 58 || D === 95 || Jt(D) ? (e.consume(D), L) : Ce(D) ? (s = O, V(D)) : We(D) ? (e.consume(D), O) : q(D);
|
|
20568
20576
|
}
|
|
20569
20577
|
function L(D) {
|
|
20570
20578
|
return D === 45 || D === 46 || D === 58 || D === 95 || Kt(D) ? (e.consume(D), L) : I(D);
|
|
20571
20579
|
}
|
|
20572
20580
|
function I(D) {
|
|
20573
|
-
return D === 61 ? (e.consume(D), A) : Ce(D) ? (s = I,
|
|
20581
|
+
return D === 61 ? (e.consume(D), A) : Ce(D) ? (s = I, V(D)) : We(D) ? (e.consume(D), I) : O(D);
|
|
20574
20582
|
}
|
|
20575
20583
|
function A(D) {
|
|
20576
|
-
return D === null || D === 60 || D === 61 || D === 62 || D === 96 ? n(D) : D === 34 || D === 39 ? (e.consume(D), i = D, k) : Ce(D) ? (s = A,
|
|
20584
|
+
return D === null || D === 60 || D === 61 || D === 62 || D === 96 ? n(D) : D === 34 || D === 39 ? (e.consume(D), i = D, k) : Ce(D) ? (s = A, V(D)) : We(D) ? (e.consume(D), A) : (e.consume(D), T);
|
|
20577
20585
|
}
|
|
20578
20586
|
function k(D) {
|
|
20579
|
-
return D === i ? (e.consume(D), i = void 0, R) : D === null ? n(D) : Ce(D) ? (s = k,
|
|
20587
|
+
return D === i ? (e.consume(D), i = void 0, R) : D === null ? n(D) : Ce(D) ? (s = k, V(D)) : (e.consume(D), k);
|
|
20580
20588
|
}
|
|
20581
20589
|
function T(D) {
|
|
20582
20590
|
return D === null || D === 34 || D === 39 || D === 60 || D === 61 || D === 96 ? n(D) : D === 47 || D === 62 || Ft(D) ? O(D) : (e.consume(D), T);
|
|
@@ -20587,7 +20595,7 @@ function GD(e, t, n) {
|
|
|
20587
20595
|
function q(D) {
|
|
20588
20596
|
return D === 62 ? (e.consume(D), e.exit("htmlTextData"), e.exit("htmlText"), t) : n(D);
|
|
20589
20597
|
}
|
|
20590
|
-
function
|
|
20598
|
+
function V(D) {
|
|
20591
20599
|
return e.exit("htmlTextData"), e.enter("lineEnding"), e.consume(D), e.exit("lineEnding"), re;
|
|
20592
20600
|
}
|
|
20593
20601
|
function re(D) {
|
|
@@ -21141,7 +21149,7 @@ function AC(e, t, n) {
|
|
|
21141
21149
|
function B(I, A) {
|
|
21142
21150
|
return k;
|
|
21143
21151
|
function k(T, R, q) {
|
|
21144
|
-
let
|
|
21152
|
+
let V, re, ne, D;
|
|
21145
21153
|
return Array.isArray(T) ? G(T) : "tokenize" in T ? (
|
|
21146
21154
|
// @ts-expect-error Looks like a construct.
|
|
21147
21155
|
G([T])
|
|
@@ -21159,7 +21167,7 @@ function AC(e, t, n) {
|
|
|
21159
21167
|
}
|
|
21160
21168
|
}
|
|
21161
21169
|
function G(j) {
|
|
21162
|
-
return
|
|
21170
|
+
return V = j, re = 0, j.length === 0 ? q : E(j[re]);
|
|
21163
21171
|
}
|
|
21164
21172
|
function E(j) {
|
|
21165
21173
|
return M;
|
|
@@ -21179,7 +21187,7 @@ function AC(e, t, n) {
|
|
|
21179
21187
|
return I(ne, D), R;
|
|
21180
21188
|
}
|
|
21181
21189
|
function z(j) {
|
|
21182
|
-
return D.restore(), ++re <
|
|
21190
|
+
return D.restore(), ++re < V.length ? E(V[re]) : q;
|
|
21183
21191
|
}
|
|
21184
21192
|
}
|
|
21185
21193
|
}
|
|
@@ -21488,7 +21496,7 @@ function KC(e) {
|
|
|
21488
21496
|
htmlFlowData: L,
|
|
21489
21497
|
htmlText: l(T),
|
|
21490
21498
|
htmlTextData: L,
|
|
21491
|
-
image: l(
|
|
21499
|
+
image: l(V),
|
|
21492
21500
|
label: ne,
|
|
21493
21501
|
labelText: re,
|
|
21494
21502
|
lineEnding: I,
|
|
@@ -21771,7 +21779,7 @@ function KC(e) {
|
|
|
21771
21779
|
delete K.identifier, delete K.label;
|
|
21772
21780
|
this.data.referenceType = void 0;
|
|
21773
21781
|
}
|
|
21774
|
-
function
|
|
21782
|
+
function V() {
|
|
21775
21783
|
const K = this.stack[this.stack.length - 1];
|
|
21776
21784
|
if (this.data.inReference) {
|
|
21777
21785
|
const se = this.data.referenceType || "shortcut";
|
|
@@ -22418,7 +22426,7 @@ const aE = ({
|
|
|
22418
22426
|
En,
|
|
22419
22427
|
{
|
|
22420
22428
|
element: "li",
|
|
22421
|
-
className:
|
|
22429
|
+
className: U({ selected: f === u }),
|
|
22422
22430
|
member: { id: p, ...v, link: !1 },
|
|
22423
22431
|
functions: {
|
|
22424
22432
|
onClick: (b) => {
|
|
@@ -22439,7 +22447,7 @@ const aE = ({
|
|
|
22439
22447
|
En,
|
|
22440
22448
|
{
|
|
22441
22449
|
element: "li",
|
|
22442
|
-
className:
|
|
22450
|
+
className: U("fallback", {
|
|
22443
22451
|
selected: d.length === u
|
|
22444
22452
|
}),
|
|
22445
22453
|
member: {
|
|
@@ -22509,7 +22517,7 @@ const fm = ({ formID: e, label: t, showLabel: n }) => {
|
|
|
22509
22517
|
"li",
|
|
22510
22518
|
{
|
|
22511
22519
|
id: `${d}-${e}`,
|
|
22512
|
-
className:
|
|
22520
|
+
className: U(e, { "has-divider": n }),
|
|
22513
22521
|
onMouseEnter: () => {
|
|
22514
22522
|
v([{ type: "openTooltip", value: e }]);
|
|
22515
22523
|
},
|
|
@@ -22536,7 +22544,7 @@ const fm = ({ formID: e, label: t, showLabel: n }) => {
|
|
|
22536
22544
|
{
|
|
22537
22545
|
...o,
|
|
22538
22546
|
...f,
|
|
22539
|
-
className:
|
|
22547
|
+
className: U(e, i, { active: t }),
|
|
22540
22548
|
onClick: (b) => {
|
|
22541
22549
|
b.stopPropagation(), b.preventDefault();
|
|
22542
22550
|
},
|
|
@@ -22839,7 +22847,7 @@ const lE = () => {
|
|
|
22839
22847
|
{
|
|
22840
22848
|
element: "fieldset",
|
|
22841
22849
|
id: `${n}-link-editor`,
|
|
22842
|
-
className:
|
|
22850
|
+
className: U({ "show-labels": m }),
|
|
22843
22851
|
meta: { shouldReset: !0, showRequiredLabels: !1 },
|
|
22844
22852
|
functions: {
|
|
22845
22853
|
onSuccess: async (C) => {
|
|
@@ -23844,7 +23852,7 @@ const _m = ({
|
|
|
23844
23852
|
hasInteracted: T,
|
|
23845
23853
|
hasLoaded: R,
|
|
23846
23854
|
enrichedUrl: q,
|
|
23847
|
-
mentionPopover:
|
|
23855
|
+
mentionPopover: V
|
|
23848
23856
|
} = _, re = (j) => {
|
|
23849
23857
|
j && B([{ type: "tabbableOption", value: j || oa[0] }]);
|
|
23850
23858
|
}, ne = async (j) => {
|
|
@@ -23954,8 +23962,8 @@ const _m = ({
|
|
|
23954
23962
|
const z = ad(() => {
|
|
23955
23963
|
nE({
|
|
23956
23964
|
editor: E,
|
|
23957
|
-
isShowing:
|
|
23958
|
-
numberOfUsers:
|
|
23965
|
+
isShowing: V.show,
|
|
23966
|
+
numberOfUsers: V.numberOfUsers,
|
|
23959
23967
|
listMembers: p,
|
|
23960
23968
|
dispatch: B
|
|
23961
23969
|
});
|
|
@@ -24018,7 +24026,7 @@ const _m = ({
|
|
|
24018
24026
|
},
|
|
24019
24027
|
onKeyDown: (j) => {
|
|
24020
24028
|
if (j.key === "Enter") {
|
|
24021
|
-
|
|
24029
|
+
V.show && (j.preventDefault(), j.stopPropagation(), lm(E, V, B, D));
|
|
24022
24030
|
const { selection: M } = E;
|
|
24023
24031
|
if (M) {
|
|
24024
24032
|
const W = Y.isCollapsed(M), [Z, ee] = x.node(E, M, { depth: 1 });
|
|
@@ -24058,20 +24066,20 @@ const _m = ({
|
|
|
24058
24066
|
}
|
|
24059
24067
|
}
|
|
24060
24068
|
} else if (j.key === "Escape") {
|
|
24061
|
-
if (
|
|
24069
|
+
if (V.show) {
|
|
24062
24070
|
j.preventDefault(), j.stopPropagation(), B([
|
|
24063
|
-
{ type: "mentionPopover", value: { ...
|
|
24071
|
+
{ type: "mentionPopover", value: { ...V, show: !1 } }
|
|
24064
24072
|
]);
|
|
24065
24073
|
return;
|
|
24066
24074
|
}
|
|
24067
|
-
} else if (["ArrowUp", "ArrowDown"].includes(j.key) &&
|
|
24075
|
+
} else if (["ArrowUp", "ArrowDown"].includes(j.key) && V.show) {
|
|
24068
24076
|
j.preventDefault(), j.stopPropagation();
|
|
24069
|
-
const { selectedUser: M, possibleUsers: W } =
|
|
24077
|
+
const { selectedUser: M, possibleUsers: W } = V;
|
|
24070
24078
|
let Z = j.key === "ArrowUp" ? M - 1 : M + 1;
|
|
24071
24079
|
Z < 0 && (Z = W.length - 1), Z >= W.length + 1 && (Z = 0), B([
|
|
24072
24080
|
{
|
|
24073
24081
|
type: "mentionPopover",
|
|
24074
|
-
value: { ...
|
|
24082
|
+
value: { ...V, selectedUser: Z }
|
|
24075
24083
|
}
|
|
24076
24084
|
]);
|
|
24077
24085
|
}
|
|
@@ -24167,7 +24175,7 @@ const Gk = ({
|
|
|
24167
24175
|
return /* @__PURE__ */ c.jsxs(
|
|
24168
24176
|
"div",
|
|
24169
24177
|
{
|
|
24170
|
-
className:
|
|
24178
|
+
className: U("toggle", s),
|
|
24171
24179
|
onClick: (d) => {
|
|
24172
24180
|
d.preventDefault(), d.stopPropagation(), u(o === n[0].value ? n[1].value : n[0].value);
|
|
24173
24181
|
},
|
|
@@ -24176,7 +24184,7 @@ const Gk = ({
|
|
|
24176
24184
|
/* @__PURE__ */ c.jsx(
|
|
24177
24185
|
"ul",
|
|
24178
24186
|
{
|
|
24179
|
-
className:
|
|
24187
|
+
className: U("toggle-options", {
|
|
24180
24188
|
disabled: a,
|
|
24181
24189
|
on: o === n[1].value
|
|
24182
24190
|
}),
|
|
@@ -24235,7 +24243,7 @@ function e_({
|
|
|
24235
24243
|
change: y = o.formatMessage({ id: `${l}cta_change` }),
|
|
24236
24244
|
uploading: w = o.formatMessage({ id: `${l}cta_uploading` })
|
|
24237
24245
|
} = (a == null ? void 0 : a.text) || {};
|
|
24238
|
-
return /* @__PURE__ */ c.jsxs("div", { className:
|
|
24246
|
+
return /* @__PURE__ */ c.jsxs("div", { className: U("profile-image-change-figure", e), children: [
|
|
24239
24247
|
/* @__PURE__ */ c.jsx(
|
|
24240
24248
|
kn,
|
|
24241
24249
|
{
|
|
@@ -24832,7 +24840,7 @@ const s_ = ({
|
|
|
24832
24840
|
"form",
|
|
24833
24841
|
{
|
|
24834
24842
|
onSubmit: d,
|
|
24835
|
-
className:
|
|
24843
|
+
className: U("search-form gtm-trackable", t),
|
|
24836
24844
|
role: "search",
|
|
24837
24845
|
"data-gtm-event-context": i,
|
|
24838
24846
|
"data-gtm-event-type": a,
|
|
@@ -25115,7 +25123,7 @@ const s_ = ({
|
|
|
25115
25123
|
const c_ = ({ className: e = "" }) => /* @__PURE__ */ c.jsxs(
|
|
25116
25124
|
"div",
|
|
25117
25125
|
{
|
|
25118
|
-
className:
|
|
25126
|
+
className: U("success-message", e),
|
|
25119
25127
|
"data-testid": "success-message",
|
|
25120
25128
|
children: [
|
|
25121
25129
|
/* @__PURE__ */ c.jsx("p", { className: "success-title", children: /* @__PURE__ */ c.jsx(ft, { id: "signup_success_title" }) }),
|
|
@@ -25215,7 +25223,7 @@ const d_ = {
|
|
|
25215
25223
|
return v.successMessage && C ? /* @__PURE__ */ c.jsx(c_, { className: e }) : /* @__PURE__ */ c.jsxs(
|
|
25216
25224
|
"fieldset",
|
|
25217
25225
|
{
|
|
25218
|
-
className:
|
|
25226
|
+
className: U("signup-form-fieldset", e),
|
|
25219
25227
|
"data-testid": "signup-form",
|
|
25220
25228
|
children: [
|
|
25221
25229
|
v.title && /* @__PURE__ */ c.jsx("p", { className: "signup-title", children: /* @__PURE__ */ c.jsx(ft, { id: "signup_title" }) }),
|
|
@@ -25296,7 +25304,7 @@ const Hn = ({
|
|
|
25296
25304
|
return /* @__PURE__ */ c.jsx(
|
|
25297
25305
|
"section",
|
|
25298
25306
|
{
|
|
25299
|
-
className:
|
|
25307
|
+
className: U("full-width-section", t, {
|
|
25300
25308
|
[i]: i !== "default",
|
|
25301
25309
|
[a]: a !== "none"
|
|
25302
25310
|
}),
|
|
@@ -25321,7 +25329,7 @@ const eA = ({ text: e, buttons: t, className: n = "" }) => {
|
|
|
25321
25329
|
}), /* @__PURE__ */ c.jsx(
|
|
25322
25330
|
Hn,
|
|
25323
25331
|
{
|
|
25324
|
-
className:
|
|
25332
|
+
className: U("download-section", n),
|
|
25325
25333
|
styling: { background: "dark" },
|
|
25326
25334
|
children: /* @__PURE__ */ c.jsxs("div", { className: "content-default", children: [
|
|
25327
25335
|
ie.createElement(
|
|
@@ -25389,7 +25397,7 @@ const f_ = ({
|
|
|
25389
25397
|
r.props.functions.onCancel && r.props.functions.onCancel(), p();
|
|
25390
25398
|
}
|
|
25391
25399
|
}
|
|
25392
|
-
})), /* @__PURE__ */ c.jsxs("section", { className:
|
|
25400
|
+
})), /* @__PURE__ */ c.jsxs("section", { className: U("edit-section", t), children: [
|
|
25393
25401
|
v && /* @__PURE__ */ c.jsx(
|
|
25394
25402
|
An,
|
|
25395
25403
|
{
|
|
@@ -25398,7 +25406,7 @@ const f_ = ({
|
|
|
25398
25406
|
showDivider: !1,
|
|
25399
25407
|
showIcon: !1,
|
|
25400
25408
|
functions: { onClose: p },
|
|
25401
|
-
className:
|
|
25409
|
+
className: U("edit-section-modal"),
|
|
25402
25410
|
children: b || (n ? /* @__PURE__ */ c.jsx(
|
|
25403
25411
|
hn,
|
|
25404
25412
|
{
|
|
@@ -25422,7 +25430,7 @@ const f_ = ({
|
|
|
25422
25430
|
) : /* @__PURE__ */ c.jsx(c.Fragment, {}))
|
|
25423
25431
|
}
|
|
25424
25432
|
),
|
|
25425
|
-
/* @__PURE__ */ c.jsxs("div", { className:
|
|
25433
|
+
/* @__PURE__ */ c.jsxs("div", { className: U("edit-section-header", { "no-title": !s }), children: [
|
|
25426
25434
|
s && /* @__PURE__ */ c.jsx("h2", { className: "edit-section-header-title", children: a }),
|
|
25427
25435
|
f && /* @__PURE__ */ c.jsx(
|
|
25428
25436
|
Se,
|
|
@@ -25466,21 +25474,21 @@ const nA = ({
|
|
|
25466
25474
|
return /* @__PURE__ */ c.jsxs(
|
|
25467
25475
|
"div",
|
|
25468
25476
|
{
|
|
25469
|
-
className:
|
|
25477
|
+
className: U("logos", i, `align-${l}`, {
|
|
25470
25478
|
[u]: u !== "block",
|
|
25471
25479
|
"wrap-logos": o
|
|
25472
25480
|
}),
|
|
25473
25481
|
children: [
|
|
25474
25482
|
e && ie.createElement(
|
|
25475
25483
|
s.element,
|
|
25476
|
-
{ className:
|
|
25484
|
+
{ className: U("title", s.className) },
|
|
25477
25485
|
s.text
|
|
25478
25486
|
),
|
|
25479
25487
|
t && /* @__PURE__ */ c.jsx("p", { children: t }),
|
|
25480
25488
|
/* @__PURE__ */ c.jsx(
|
|
25481
25489
|
"ul",
|
|
25482
25490
|
{
|
|
25483
|
-
className:
|
|
25491
|
+
className: U({
|
|
25484
25492
|
"two-col": a === 2 || a === 4,
|
|
25485
25493
|
"three-col": a === 5 || a <= 10 && a % 3 === 0
|
|
25486
25494
|
}),
|
|
@@ -26071,7 +26079,7 @@ const sr = "footer_", la = "SiteFooter", Zc = ({ group: e }) => {
|
|
|
26071
26079
|
return /* @__PURE__ */ c.jsxs(
|
|
26072
26080
|
"li",
|
|
26073
26081
|
{
|
|
26074
|
-
className:
|
|
26082
|
+
className: U({
|
|
26075
26083
|
[o.className]: o.className,
|
|
26076
26084
|
"has-submenu": p,
|
|
26077
26085
|
parent: v,
|
|
@@ -26102,7 +26110,7 @@ const sr = "footer_", la = "SiteFooter", Zc = ({ group: e }) => {
|
|
|
26102
26110
|
return o[w].order ? /* @__PURE__ */ c.jsxs(
|
|
26103
26111
|
"li",
|
|
26104
26112
|
{
|
|
26105
|
-
className:
|
|
26113
|
+
className: U({
|
|
26106
26114
|
[o[w].className]: o[w].className
|
|
26107
26115
|
}),
|
|
26108
26116
|
children: [
|
|
@@ -26324,7 +26332,7 @@ const Fm = ({ showNavigation: e = !0 }) => {
|
|
|
26324
26332
|
"nav",
|
|
26325
26333
|
{
|
|
26326
26334
|
id: "header",
|
|
26327
|
-
className:
|
|
26335
|
+
className: U({
|
|
26328
26336
|
"logged-in": i,
|
|
26329
26337
|
"logged-out": !i,
|
|
26330
26338
|
visible: l
|
|
@@ -26398,7 +26406,7 @@ const Fm = ({ showNavigation: e = !0 }) => {
|
|
|
26398
26406
|
/* @__PURE__ */ c.jsx(
|
|
26399
26407
|
"div",
|
|
26400
26408
|
{
|
|
26401
|
-
className:
|
|
26409
|
+
className: U("overlay", {
|
|
26402
26410
|
open: u[
|
|
26403
26411
|
"site-navigation"
|
|
26404
26412
|
/* SITE */
|
|
@@ -26457,14 +26465,14 @@ const p_ = () => {
|
|
|
26457
26465
|
"div",
|
|
26458
26466
|
{
|
|
26459
26467
|
id: "wrapper",
|
|
26460
|
-
className:
|
|
26468
|
+
className: U(s, C, { "has-footer": u }),
|
|
26461
26469
|
children: [
|
|
26462
26470
|
/* @__PURE__ */ c.jsx(Fm, { showNavigation: l }),
|
|
26463
26471
|
/* @__PURE__ */ c.jsxs("main", { id: "content-wrapper", children: [
|
|
26464
26472
|
w && /* @__PURE__ */ c.jsx(
|
|
26465
26473
|
"div",
|
|
26466
26474
|
{
|
|
26467
|
-
className:
|
|
26475
|
+
className: U("additional-content prepended", {
|
|
26468
26476
|
"large-modal": p === "large"
|
|
26469
26477
|
}),
|
|
26470
26478
|
children: w
|
|
@@ -26473,7 +26481,7 @@ const p_ = () => {
|
|
|
26473
26481
|
ie.createElement(d === "bold" ? Dd : "div", {
|
|
26474
26482
|
id: "content",
|
|
26475
26483
|
children: y,
|
|
26476
|
-
className:
|
|
26484
|
+
className: U({ "large-modal": p === "large" })
|
|
26477
26485
|
})
|
|
26478
26486
|
] }),
|
|
26479
26487
|
F && /* @__PURE__ */ c.jsx("div", { className: "additional-content appended", children: F }),
|
|
@@ -26544,7 +26552,7 @@ const aA = ({
|
|
|
26544
26552
|
}), l.length < 1 ? null : /* @__PURE__ */ c.jsx(
|
|
26545
26553
|
"ul",
|
|
26546
26554
|
{
|
|
26547
|
-
className:
|
|
26555
|
+
className: U("tags text-small", t, i, {
|
|
26548
26556
|
"one-line": n
|
|
26549
26557
|
}),
|
|
26550
26558
|
children: l.map((u) => {
|
|
@@ -26578,7 +26586,7 @@ const b_ = 25, y_ = ({
|
|
|
26578
26586
|
className: m = ""
|
|
26579
26587
|
}) => {
|
|
26580
26588
|
const h = de(), p = "membersList", v = ze(mt), [f, b] = ce(!1);
|
|
26581
|
-
return e.length === 0 && !d ? null : /* @__PURE__ */ c.jsxs("div", { className:
|
|
26589
|
+
return e.length === 0 && !d ? null : /* @__PURE__ */ c.jsxs("div", { className: U("members-list", m), children: [
|
|
26582
26590
|
u ? /* @__PURE__ */ c.jsxs("h1", { children: [
|
|
26583
26591
|
h.formatMessage({ id: p }),
|
|
26584
26592
|
/* @__PURE__ */ c.jsx("span", { className: "count", children: t })
|
|
@@ -26756,7 +26764,7 @@ const et = "discussion_form_", Da = ({
|
|
|
26756
26764
|
} = i || {}, {
|
|
26757
26765
|
onChange: q = () => {
|
|
26758
26766
|
},
|
|
26759
|
-
create:
|
|
26767
|
+
create: V = () => {
|
|
26760
26768
|
},
|
|
26761
26769
|
createPoll: re = () => {
|
|
26762
26770
|
},
|
|
@@ -26825,7 +26833,7 @@ const et = "discussion_form_", Da = ({
|
|
|
26825
26833
|
let ye;
|
|
26826
26834
|
switch (v) {
|
|
26827
26835
|
case Te.Post:
|
|
26828
|
-
ye = await
|
|
26836
|
+
ye = await V({
|
|
26829
26837
|
title: ae.title,
|
|
26830
26838
|
content: ae.body,
|
|
26831
26839
|
categories: ae.categories,
|
|
@@ -26836,7 +26844,7 @@ const et = "discussion_form_", Da = ({
|
|
|
26836
26844
|
ye = await re(C_(ae));
|
|
26837
26845
|
break;
|
|
26838
26846
|
case Te.Question:
|
|
26839
|
-
ye = await
|
|
26847
|
+
ye = await V({
|
|
26840
26848
|
title: ae.body,
|
|
26841
26849
|
authorId: p && p.id,
|
|
26842
26850
|
data: ae.data,
|
|
@@ -26844,7 +26852,7 @@ const et = "discussion_form_", Da = ({
|
|
|
26844
26852
|
});
|
|
26845
26853
|
break;
|
|
26846
26854
|
case Te.Response:
|
|
26847
|
-
ye = await
|
|
26855
|
+
ye = await V(
|
|
26848
26856
|
{ questionSlug: n.slugs.question },
|
|
26849
26857
|
{
|
|
26850
26858
|
body: ae.body,
|
|
@@ -26855,7 +26863,7 @@ const et = "discussion_form_", Da = ({
|
|
|
26855
26863
|
);
|
|
26856
26864
|
break;
|
|
26857
26865
|
case Te.Reply:
|
|
26858
|
-
ye = await
|
|
26866
|
+
ye = await V(
|
|
26859
26867
|
{ questionSlug: n.slugs.question, answerSlug: n.slugs.answer },
|
|
26860
26868
|
{
|
|
26861
26869
|
body: ae.body,
|
|
@@ -27038,7 +27046,7 @@ const et = "discussion_form_", Da = ({
|
|
|
27038
27046
|
hn,
|
|
27039
27047
|
{
|
|
27040
27048
|
id: we,
|
|
27041
|
-
className:
|
|
27049
|
+
className: U("discussion-card discussion-form", {
|
|
27042
27050
|
"no-styling": w && _
|
|
27043
27051
|
}),
|
|
27044
27052
|
meta: {
|
|
@@ -27157,7 +27165,7 @@ function A_({
|
|
|
27157
27165
|
didEdit: r.didEdit,
|
|
27158
27166
|
customMessage: d
|
|
27159
27167
|
},
|
|
27160
|
-
className:
|
|
27168
|
+
className: U({
|
|
27161
27169
|
highlighted: typeof e != "string" && e.id === t
|
|
27162
27170
|
}),
|
|
27163
27171
|
styling: {
|
|
@@ -27178,7 +27186,7 @@ const Es = ({
|
|
|
27178
27186
|
}) => {
|
|
27179
27187
|
const r = {
|
|
27180
27188
|
...n,
|
|
27181
|
-
class:
|
|
27189
|
+
class: U("subtle", t)
|
|
27182
27190
|
};
|
|
27183
27191
|
return /* @__PURE__ */ c.jsx("blockquote", { ...r, children: e });
|
|
27184
27192
|
};
|
|
@@ -27227,7 +27235,7 @@ const S_ = ({
|
|
|
27227
27235
|
g.stopPropagation(), p && (l == null || l.createVote(t), d(!0));
|
|
27228
27236
|
}, f = {
|
|
27229
27237
|
htmlFor: t.id,
|
|
27230
|
-
className:
|
|
27238
|
+
className: U({
|
|
27231
27239
|
"can-vote": p
|
|
27232
27240
|
}),
|
|
27233
27241
|
tabIndex: o && p ? 0 : -1,
|
|
@@ -27263,7 +27271,7 @@ const S_ = ({
|
|
|
27263
27271
|
{
|
|
27264
27272
|
"data-testid": "poll-option",
|
|
27265
27273
|
style: h,
|
|
27266
|
-
className:
|
|
27274
|
+
className: U("poll-option text-small", {
|
|
27267
27275
|
selected: t.hasUserVoted
|
|
27268
27276
|
}),
|
|
27269
27277
|
children: [
|
|
@@ -27464,7 +27472,7 @@ const Ca = ({
|
|
|
27464
27472
|
},
|
|
27465
27473
|
removeVote: q = () => {
|
|
27466
27474
|
},
|
|
27467
|
-
removePoll:
|
|
27475
|
+
removePoll: V = () => {
|
|
27468
27476
|
}
|
|
27469
27477
|
} = o.polls || {}, {
|
|
27470
27478
|
author: re,
|
|
@@ -27564,7 +27572,7 @@ const Ca = ({
|
|
|
27564
27572
|
}, Re = async () => {
|
|
27565
27573
|
me(!1);
|
|
27566
27574
|
try {
|
|
27567
|
-
t.type === Te.Poll ? (await
|
|
27575
|
+
t.type === Te.Poll ? (await V(), window.location.href = `${b}/${g}`) : await B(Vu(t.slugs));
|
|
27568
27576
|
} catch {
|
|
27569
27577
|
Ye("delete-error");
|
|
27570
27578
|
}
|
|
@@ -27596,7 +27604,7 @@ const Ca = ({
|
|
|
27596
27604
|
"data-gtm-event-context": d,
|
|
27597
27605
|
"data-gtm-event-type": `edit-${t.type}-click`
|
|
27598
27606
|
}), p && ((K = ee == null ? void 0 : ee.current) == null || K.focus(), (se = ee == null ? void 0 : ee.current) == null || se.scrollIntoView({ behavior: "smooth" })), ie.createElement(e, {
|
|
27599
|
-
className:
|
|
27607
|
+
className: U("discussion-post", u, {
|
|
27600
27608
|
[we]: !u || !u.includes("highlighted-text-box"),
|
|
27601
27609
|
"has-link": l.post && !oe.isEditing,
|
|
27602
27610
|
"is-pinned": (t == null ? void 0 : t.pinned) || !1
|
|
@@ -27621,7 +27629,7 @@ const Ca = ({
|
|
|
27621
27629
|
"div",
|
|
27622
27630
|
{
|
|
27623
27631
|
id: J || t.slug,
|
|
27624
|
-
className:
|
|
27632
|
+
className: U("discussion-card", t.type, {
|
|
27625
27633
|
editing: oe.isEditing,
|
|
27626
27634
|
"has-link": l.post && !oe.isEditing
|
|
27627
27635
|
}),
|
|
@@ -27882,7 +27890,7 @@ const M_ = vr(
|
|
|
27882
27890
|
/* @__PURE__ */ c.jsxs(
|
|
27883
27891
|
"button",
|
|
27884
27892
|
{
|
|
27885
|
-
className:
|
|
27893
|
+
className: U("discussion-form-card", n),
|
|
27886
27894
|
onClick: (b) => {
|
|
27887
27895
|
b.preventDefault(), b.stopPropagation(), m((g) => ({ ...g, form: !0 }));
|
|
27888
27896
|
},
|
|
@@ -27892,7 +27900,7 @@ const M_ = vr(
|
|
|
27892
27900
|
/* @__PURE__ */ c.jsx(
|
|
27893
27901
|
cr,
|
|
27894
27902
|
{
|
|
27895
|
-
className:
|
|
27903
|
+
className: U("input", { placeholder: !h.showCachedText }),
|
|
27896
27904
|
element: "span",
|
|
27897
27905
|
options: {
|
|
27898
27906
|
forceInline: !0,
|
|
@@ -28078,7 +28086,7 @@ const z_ = ({
|
|
|
28078
28086
|
return /* @__PURE__ */ c.jsxs(
|
|
28079
28087
|
"div",
|
|
28080
28088
|
{
|
|
28081
|
-
className:
|
|
28089
|
+
className: U("thread-wrapper", {
|
|
28082
28090
|
"empty-thread": !o
|
|
28083
28091
|
}),
|
|
28084
28092
|
children: [
|
|
@@ -28316,7 +28324,7 @@ const sA = ({
|
|
|
28316
28324
|
latest_reactions: T,
|
|
28317
28325
|
mentioned_users: R,
|
|
28318
28326
|
additional_data: q
|
|
28319
|
-
} = y,
|
|
28327
|
+
} = y, V = (((G = T == null ? void 0 : T.like) == null ? void 0 : G.length) || 0) > 0, re = (((E = A == null ? void 0 : A.like) == null ? void 0 : E.length) || 0) > 0, ne = re ? A == null ? void 0 : A.like[0].id : "", D = V ? (S = T == null ? void 0 : T.like) == null ? void 0 : S.map((me) => {
|
|
28320
28328
|
var we, je, Fe;
|
|
28321
28329
|
return {
|
|
28322
28330
|
id: (we = me == null ? void 0 : me.user) == null ? void 0 : we.id,
|
|
@@ -28460,7 +28468,7 @@ const J_ = ({
|
|
|
28460
28468
|
(h !== "" || p !== "") && l((b) => ({ ...b, showCachedText: !0 })), o();
|
|
28461
28469
|
}
|
|
28462
28470
|
},
|
|
28463
|
-
className:
|
|
28471
|
+
className: U("discussion-form-modal", i),
|
|
28464
28472
|
children: /* @__PURE__ */ c.jsx(
|
|
28465
28473
|
Da,
|
|
28466
28474
|
{
|
|
@@ -28545,7 +28553,7 @@ const oA = ({
|
|
|
28545
28553
|
showDivider: !1,
|
|
28546
28554
|
showIcon: o,
|
|
28547
28555
|
functions: { onClose: l },
|
|
28548
|
-
className:
|
|
28556
|
+
className: U("invite-modal", e, { success: !!n }),
|
|
28549
28557
|
children: /* @__PURE__ */ c.jsx(
|
|
28550
28558
|
r_,
|
|
28551
28559
|
{
|
|
@@ -28586,7 +28594,7 @@ const ek = ({
|
|
|
28586
28594
|
functions: {
|
|
28587
28595
|
onClose: d
|
|
28588
28596
|
},
|
|
28589
|
-
className:
|
|
28597
|
+
className: U("profile-modal", s, { success: !!t }),
|
|
28590
28598
|
maxWidth: 700,
|
|
28591
28599
|
children: /* @__PURE__ */ c.jsxs(c.Fragment, { children: [
|
|
28592
28600
|
t && n || r ? /* @__PURE__ */ c.jsxs("div", { className: "intro", children: [
|
|
@@ -28665,13 +28673,13 @@ const nk = ({
|
|
|
28665
28673
|
content: n,
|
|
28666
28674
|
member: r,
|
|
28667
28675
|
className: i = ""
|
|
28668
|
-
}) => /* @__PURE__ */ c.jsxs("blockquote", { className:
|
|
28676
|
+
}) => /* @__PURE__ */ c.jsxs("blockquote", { className: U("testimonial-block", i), children: [
|
|
28669
28677
|
/* @__PURE__ */ c.jsx(en, { className: "testimonial", children: n }),
|
|
28670
28678
|
r ? /* @__PURE__ */ c.jsx(En, { member: r, styling: { size: "large" } }) : /* @__PURE__ */ c.jsxs(c.Fragment, { children: [
|
|
28671
28679
|
e && /* @__PURE__ */ c.jsx(
|
|
28672
28680
|
"p",
|
|
28673
28681
|
{
|
|
28674
|
-
className:
|
|
28682
|
+
className: U("author", {
|
|
28675
28683
|
"text-small": !i.includes("new")
|
|
28676
28684
|
}),
|
|
28677
28685
|
children: e
|
|
@@ -28680,7 +28688,7 @@ const nk = ({
|
|
|
28680
28688
|
t && /* @__PURE__ */ c.jsx(
|
|
28681
28689
|
"p",
|
|
28682
28690
|
{
|
|
28683
|
-
className:
|
|
28691
|
+
className: U("author-cite", {
|
|
28684
28692
|
"text-small": !i.includes("new")
|
|
28685
28693
|
}),
|
|
28686
28694
|
children: /* @__PURE__ */ c.jsx("cite", { children: t })
|
|
@@ -28712,7 +28720,7 @@ const cA = ({
|
|
|
28712
28720
|
zt,
|
|
28713
28721
|
{
|
|
28714
28722
|
variant: "subtle",
|
|
28715
|
-
className:
|
|
28723
|
+
className: U("table-of-contents", n),
|
|
28716
28724
|
children: [
|
|
28717
28725
|
/* @__PURE__ */ c.jsx("h2", { children: r.formatMessage({ id: "tableOfContents" }) }),
|
|
28718
28726
|
/* @__PURE__ */ c.jsx("nav", { children: /* @__PURE__ */ c.jsx("ul", { children: i.map(({ id: s, text: o }) => /* @__PURE__ */ c.jsx("li", { children: /* @__PURE__ */ c.jsx("a", { href: `#${s}`, children: o }) }, s)) }) })
|
|
@@ -28754,7 +28762,7 @@ const tu = ({
|
|
|
28754
28762
|
{ early: u, late: m }
|
|
28755
28763
|
);
|
|
28756
28764
|
}
|
|
28757
|
-
return n && (u = `${n} ${u}`, l = `${n} ${l}`), r && (u = `${u} ${r}`, l = `${l} ${r}`), /* @__PURE__ */ c.jsx("span", { className:
|
|
28765
|
+
return n && (u = `${n} ${u}`, l = `${n} ${l}`), r && (u = `${u} ${r}`, l = `${l} ${r}`), /* @__PURE__ */ c.jsx("span", { className: U("time-to-complete", i), "aria-label": u, children: l });
|
|
28758
28766
|
};
|
|
28759
28767
|
const dA = ({ className: e = "", image: t, ...n }) => t ? (typeof t == "string" && (t = {
|
|
28760
28768
|
width: 1080,
|
|
@@ -28769,7 +28777,7 @@ const dA = ({ className: e = "", image: t, ...n }) => t ? (typeof t == "string"
|
|
|
28769
28777
|
Dr,
|
|
28770
28778
|
{
|
|
28771
28779
|
...n,
|
|
28772
|
-
className:
|
|
28780
|
+
className: U("banner", e),
|
|
28773
28781
|
image: { ...t, aspect: "banner" }
|
|
28774
28782
|
}
|
|
28775
28783
|
)) : null;
|
|
@@ -28840,7 +28848,7 @@ const rk = [
|
|
|
28840
28848
|
}), /* @__PURE__ */ c.jsx(
|
|
28841
28849
|
Hn,
|
|
28842
28850
|
{
|
|
28843
|
-
className:
|
|
28851
|
+
className: U("banner-section", r, i, e, {
|
|
28844
28852
|
"has-image": n,
|
|
28845
28853
|
"image-full-width": n && u.imageFullWidth,
|
|
28846
28854
|
"image-inline": n && !u.imageFullWidth,
|
|
@@ -28864,7 +28872,7 @@ const rk = [
|
|
|
28864
28872
|
size: { mobile: "medium", 768: "large" },
|
|
28865
28873
|
href: o.link,
|
|
28866
28874
|
...o.props,
|
|
28867
|
-
className:
|
|
28875
|
+
className: U({
|
|
28868
28876
|
new: r === "subtle",
|
|
28869
28877
|
[(v = o.props) == null ? void 0 : v.className]: (f = o.props) == null ? void 0 : f.className
|
|
28870
28878
|
}),
|
|
@@ -28895,7 +28903,7 @@ const mA = ({
|
|
|
28895
28903
|
return e && (i["--image"] = `url(${e})`), /* @__PURE__ */ c.jsx(
|
|
28896
28904
|
Hn,
|
|
28897
28905
|
{
|
|
28898
|
-
className:
|
|
28906
|
+
className: U("custom-content-banner", t, r, {
|
|
28899
28907
|
"has-image": e
|
|
28900
28908
|
}),
|
|
28901
28909
|
style: i,
|
|
@@ -28910,11 +28918,11 @@ const ak = ({
|
|
|
28910
28918
|
image: r
|
|
28911
28919
|
}) => {
|
|
28912
28920
|
const i = typeof n == "string" ? /* @__PURE__ */ c.jsx(cr, { children: n }) : n;
|
|
28913
|
-
return /* @__PURE__ */ c.jsxs(Hn, { className:
|
|
28921
|
+
return /* @__PURE__ */ c.jsxs(Hn, { className: U("highlight-section", t), children: [
|
|
28914
28922
|
r && /* @__PURE__ */ c.jsx(
|
|
28915
28923
|
"div",
|
|
28916
28924
|
{
|
|
28917
|
-
className:
|
|
28925
|
+
className: U("highlight-container highlight-image", {
|
|
28918
28926
|
[`highlight-image-${e}`]: e === "right"
|
|
28919
28927
|
}),
|
|
28920
28928
|
children: /* @__PURE__ */ c.jsx(
|
|
@@ -28933,13 +28941,13 @@ const ak = ({
|
|
|
28933
28941
|
/* @__PURE__ */ c.jsx(
|
|
28934
28942
|
"div",
|
|
28935
28943
|
{
|
|
28936
|
-
className:
|
|
28944
|
+
className: U("highlight-container highlight-content-wrapper", {
|
|
28937
28945
|
"no-image": !r
|
|
28938
28946
|
}),
|
|
28939
28947
|
children: /* @__PURE__ */ c.jsx(
|
|
28940
28948
|
"div",
|
|
28941
28949
|
{
|
|
28942
|
-
className:
|
|
28950
|
+
className: U("highlight-content", {
|
|
28943
28951
|
"highlight-content-right": e === "left"
|
|
28944
28952
|
}),
|
|
28945
28953
|
children: r ? i : /* @__PURE__ */ c.jsx("div", { className: "content-default", children: i })
|
|
@@ -28955,7 +28963,7 @@ const pA = ({
|
|
|
28955
28963
|
title: n,
|
|
28956
28964
|
text: r,
|
|
28957
28965
|
gtmContext: i
|
|
28958
|
-
}) => !n && !r ? null : /* @__PURE__ */ c.jsxs("aside", { className:
|
|
28966
|
+
}) => !n && !r ? null : /* @__PURE__ */ c.jsxs("aside", { className: U("marketing-block", e), children: [
|
|
28959
28967
|
n && /* @__PURE__ */ c.jsx("p", { className: "title", children: n }),
|
|
28960
28968
|
r && /* @__PURE__ */ c.jsx("p", { children: r }),
|
|
28961
28969
|
t && /* @__PURE__ */ c.jsx(
|
|
@@ -29147,7 +29155,7 @@ const pA = ({
|
|
|
29147
29155
|
return /* @__PURE__ */ c.jsx(
|
|
29148
29156
|
"p",
|
|
29149
29157
|
{
|
|
29150
|
-
className:
|
|
29158
|
+
className: U("cta-wrapper", {
|
|
29151
29159
|
"has-member-section": e == null ? void 0 : e.members
|
|
29152
29160
|
}),
|
|
29153
29161
|
children: /* @__PURE__ */ c.jsx(
|
|
@@ -29269,7 +29277,7 @@ const Sm = ({
|
|
|
29269
29277
|
}, (k = v == null ? void 0 : v.current) == null || k.focus(), (T = v == null ? void 0 : v.current) == null || T.scrollIntoView({ behavior: "smooth" })), /* @__PURE__ */ c.jsx(
|
|
29270
29278
|
"li",
|
|
29271
29279
|
{
|
|
29272
|
-
className:
|
|
29280
|
+
className: U("card-wrapper text-medium", C, t, {
|
|
29273
29281
|
"has-link": $,
|
|
29274
29282
|
"no-link": !$,
|
|
29275
29283
|
"has-image": g.banner
|
|
@@ -29328,10 +29336,10 @@ const Sm = ({
|
|
|
29328
29336
|
const q = g[R];
|
|
29329
29337
|
if (!q)
|
|
29330
29338
|
return null;
|
|
29331
|
-
const
|
|
29339
|
+
const V = sh(R), re = {
|
|
29332
29340
|
key: R,
|
|
29333
|
-
className:
|
|
29334
|
-
"data-testid":
|
|
29341
|
+
className: V,
|
|
29342
|
+
"data-testid": V
|
|
29335
29343
|
}, ne = {
|
|
29336
29344
|
wrapper: "p",
|
|
29337
29345
|
forceWrapper: !0,
|
|
@@ -29355,7 +29363,7 @@ const Sm = ({
|
|
|
29355
29363
|
}
|
|
29356
29364
|
);
|
|
29357
29365
|
};
|
|
29358
|
-
const ck = ({ cards: e, cardTypes: t, className: n = "", ...r }) => /* @__PURE__ */ c.jsx("ul", { className:
|
|
29366
|
+
const ck = ({ cards: e, cardTypes: t, className: n = "", ...r }) => /* @__PURE__ */ c.jsx("ul", { className: U("card-block", n), children: e.map((i, a) => {
|
|
29359
29367
|
const s = i.slug ? `${i.slug}-${t[a]}` : `${t[a]}-${a}`;
|
|
29360
29368
|
return /* @__PURE__ */ c.jsx(
|
|
29361
29369
|
Sm,
|
|
@@ -29379,7 +29387,7 @@ const ck = ({ cards: e, cardTypes: t, className: n = "", ...r }) => /* @__PURE__
|
|
|
29379
29387
|
return null;
|
|
29380
29388
|
const { text: r, element: i = "h2", variant: a = "default", size: s = "medium", link: o } = t;
|
|
29381
29389
|
return ie.createElement(i, {
|
|
29382
|
-
className:
|
|
29390
|
+
className: U("title", a, s, {
|
|
29383
29391
|
"highlighted-title": a === "highlighted"
|
|
29384
29392
|
}),
|
|
29385
29393
|
children: /* @__PURE__ */ c.jsxs(c.Fragment, { children: [
|
|
@@ -29449,8 +29457,8 @@ const mk = ({
|
|
|
29449
29457
|
loadedPages: [.../* @__PURE__ */ new Set([...g, T])]
|
|
29450
29458
|
}));
|
|
29451
29459
|
const R = () => {
|
|
29452
|
-
const q = T * d.cardsPerPage,
|
|
29453
|
-
return t.slice(q,
|
|
29460
|
+
const q = T * d.cardsPerPage, V = q + d.cardsPerPage;
|
|
29461
|
+
return t.slice(q, V).length;
|
|
29454
29462
|
};
|
|
29455
29463
|
As = setTimeout(() => {
|
|
29456
29464
|
w(
|
|
@@ -29492,7 +29500,7 @@ const mk = ({
|
|
|
29492
29500
|
"section",
|
|
29493
29501
|
{
|
|
29494
29502
|
ref: _,
|
|
29495
|
-
className:
|
|
29503
|
+
className: U("carousel-wrapper", a),
|
|
29496
29504
|
"data-testid": "carousel",
|
|
29497
29505
|
children: [
|
|
29498
29506
|
/* @__PURE__ */ c.jsx(fk, { id: e, title: i }),
|
|
@@ -29506,13 +29514,13 @@ const mk = ({
|
|
|
29506
29514
|
"data-testid": "carousel-list",
|
|
29507
29515
|
children: t.map((k, T) => {
|
|
29508
29516
|
let R = A(k, T);
|
|
29509
|
-
const { inView: q, isLoaded:
|
|
29517
|
+
const { inView: q, isLoaded: V } = dk(
|
|
29510
29518
|
T,
|
|
29511
29519
|
h,
|
|
29512
29520
|
b,
|
|
29513
29521
|
g
|
|
29514
29522
|
);
|
|
29515
|
-
return R && (q ||
|
|
29523
|
+
return R && (q || V) ? /* @__PURE__ */ c.jsx(
|
|
29516
29524
|
Sm,
|
|
29517
29525
|
{
|
|
29518
29526
|
id: R,
|
|
@@ -29559,7 +29567,7 @@ const mk = ({
|
|
|
29559
29567
|
children: /* @__PURE__ */ c.jsx(
|
|
29560
29568
|
"button",
|
|
29561
29569
|
{
|
|
29562
|
-
className:
|
|
29570
|
+
className: U("page-indicator", {
|
|
29563
29571
|
selected: T === b
|
|
29564
29572
|
}),
|
|
29565
29573
|
onClick: (R) => {
|
|
@@ -29643,7 +29651,7 @@ const vA = ({
|
|
|
29643
29651
|
"data-gtm-event-context": `${r}-NarrowCard`,
|
|
29644
29652
|
"data-gtm-event-type": `${r}-click`
|
|
29645
29653
|
}), ie.createElement(e, {
|
|
29646
|
-
className:
|
|
29654
|
+
className: U("narrow-card", t, {
|
|
29647
29655
|
"has-link": l,
|
|
29648
29656
|
"gtm-trackable": l,
|
|
29649
29657
|
"no-link": !l
|
|
@@ -29653,7 +29661,7 @@ const vA = ({
|
|
|
29653
29661
|
/* @__PURE__ */ c.jsx(
|
|
29654
29662
|
"div",
|
|
29655
29663
|
{
|
|
29656
|
-
className:
|
|
29664
|
+
className: U("img", {
|
|
29657
29665
|
private: o,
|
|
29658
29666
|
"no-image": !i
|
|
29659
29667
|
}),
|
|
@@ -29683,7 +29691,7 @@ const bA = ({
|
|
|
29683
29691
|
u > 99 ? u = 100 : u < 1 && (u = 0);
|
|
29684
29692
|
const { highlightPercentage: d = !1 } = s;
|
|
29685
29693
|
return ie.createElement(e, {
|
|
29686
|
-
className:
|
|
29694
|
+
className: U("course-progression", o, {
|
|
29687
29695
|
"highlight-percentage": d,
|
|
29688
29696
|
"has-circle-graph": a === "circle"
|
|
29689
29697
|
}),
|
|
@@ -29722,7 +29730,7 @@ const hk = ({
|
|
|
29722
29730
|
title: r,
|
|
29723
29731
|
className: i = ""
|
|
29724
29732
|
}) => ie.createElement(e, {
|
|
29725
|
-
className:
|
|
29733
|
+
className: U("lesson-name", i),
|
|
29726
29734
|
"data-number": `${t}.${n}`,
|
|
29727
29735
|
children: r
|
|
29728
29736
|
});
|
|
@@ -29735,8 +29743,8 @@ const pk = ({
|
|
|
29735
29743
|
children: a
|
|
29736
29744
|
}) => {
|
|
29737
29745
|
const s = de(), o = co(`lessonType_${i}`) ? s.formatMessage({ id: `lessonType_${i}` }) : uh(i || "");
|
|
29738
|
-
return /* @__PURE__ */ c.jsxs("small", { className:
|
|
29739
|
-
/* @__PURE__ */ c.jsx("span", { className:
|
|
29746
|
+
return /* @__PURE__ */ c.jsxs("small", { className: U("content-type", { [e]: e !== "default" }), children: [
|
|
29747
|
+
/* @__PURE__ */ c.jsx("span", { className: U("type", n), children: o }),
|
|
29740
29748
|
" ",
|
|
29741
29749
|
t > 0 && !r && /* @__PURE__ */ c.jsx(tu, { time: t }),
|
|
29742
29750
|
" ",
|
|
@@ -29801,7 +29809,7 @@ const yA = ({
|
|
|
29801
29809
|
return y && (L.style = { "--image": `url(${y})` }), /* @__PURE__ */ c.jsx(
|
|
29802
29810
|
"li",
|
|
29803
29811
|
{
|
|
29804
|
-
className:
|
|
29812
|
+
className: U({
|
|
29805
29813
|
article: b === ci.ARTICLE,
|
|
29806
29814
|
discussion: b === ci.DISCUSSION,
|
|
29807
29815
|
quiz: b === ci.QUIZ,
|
|
@@ -29866,7 +29874,7 @@ const xA = ({
|
|
|
29866
29874
|
hover: "check-inside-circle_no-overlap_inverted"
|
|
29867
29875
|
},
|
|
29868
29876
|
onClick: t,
|
|
29869
|
-
className:
|
|
29877
|
+
className: U("mark-complete-button center gtm-trackable", {
|
|
29870
29878
|
completed: e
|
|
29871
29879
|
}),
|
|
29872
29880
|
"data-gtm-event-type": "mark-as-complete",
|
|
@@ -29985,6 +29993,7 @@ export {
|
|
|
29985
29993
|
ck as CardBlock,
|
|
29986
29994
|
gA as Carousel,
|
|
29987
29995
|
Zd as CharacterLimit,
|
|
29996
|
+
Yd as Checkbox,
|
|
29988
29997
|
mo as CollapsibleSection,
|
|
29989
29998
|
xv as Columns,
|
|
29990
29999
|
zk as CommunityDetails,
|