@uninspired/cookie-banner 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/react/index.cjs +15 -14
- package/dist/react/index.js +20 -19
- package/dist/script/index.cjs +45 -1
- package/dist/script/index.js +2257 -1228
- package/package.json +1 -1
package/dist/react/index.cjs
CHANGED
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
|
3
3
|
const require$$0 = require("react");
|
|
4
4
|
const reactAccordion = require("@radix-ui/react-accordion");
|
|
5
5
|
const lucideReact = require("lucide-react");
|
|
6
|
+
const reactDialog = require("@radix-ui/react-dialog");
|
|
6
7
|
const reactCollapsible = require("@radix-ui/react-collapsible");
|
|
7
8
|
const reactSwitch = require("@radix-ui/react-switch");
|
|
8
9
|
var jsxRuntime = { exports: {} };
|
|
@@ -444,7 +445,7 @@ function requireReactJsxRuntime_development() {
|
|
|
444
445
|
}
|
|
445
446
|
}
|
|
446
447
|
}
|
|
447
|
-
function checkPropTypes(typeSpecs, values,
|
|
448
|
+
function checkPropTypes(typeSpecs, values, location2, componentName, element) {
|
|
448
449
|
{
|
|
449
450
|
var has = Function.call.bind(hasOwnProperty);
|
|
450
451
|
for (var typeSpecName in typeSpecs) {
|
|
@@ -452,23 +453,23 @@ function requireReactJsxRuntime_development() {
|
|
|
452
453
|
var error$1 = void 0;
|
|
453
454
|
try {
|
|
454
455
|
if (typeof typeSpecs[typeSpecName] !== "function") {
|
|
455
|
-
var err = Error((componentName || "React class") + ": " +
|
|
456
|
+
var err = Error((componentName || "React class") + ": " + location2 + " type `" + typeSpecName + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof typeSpecs[typeSpecName] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
|
456
457
|
err.name = "Invariant Violation";
|
|
457
458
|
throw err;
|
|
458
459
|
}
|
|
459
|
-
error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName,
|
|
460
|
+
error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location2, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
460
461
|
} catch (ex) {
|
|
461
462
|
error$1 = ex;
|
|
462
463
|
}
|
|
463
464
|
if (error$1 && !(error$1 instanceof Error)) {
|
|
464
465
|
setCurrentlyValidatingElement(element);
|
|
465
|
-
error("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", componentName || "React class",
|
|
466
|
+
error("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", componentName || "React class", location2, typeSpecName, typeof error$1);
|
|
466
467
|
setCurrentlyValidatingElement(null);
|
|
467
468
|
}
|
|
468
469
|
if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
|
|
469
470
|
loggedTypeFailures[error$1.message] = true;
|
|
470
471
|
setCurrentlyValidatingElement(element);
|
|
471
|
-
error("Failed %s type: %s",
|
|
472
|
+
error("Failed %s type: %s", location2, error$1.message);
|
|
472
473
|
setCurrentlyValidatingElement(null);
|
|
473
474
|
}
|
|
474
475
|
}
|
|
@@ -2074,6 +2075,7 @@ const SelectionProvider = ({
|
|
|
2074
2075
|
}, [items]);
|
|
2075
2076
|
const onSave = require$$0.useCallback(() => {
|
|
2076
2077
|
saveSelection(selection);
|
|
2078
|
+
location.reload();
|
|
2077
2079
|
}, [selection]);
|
|
2078
2080
|
const selectionTaken = require$$0.useMemo(() => {
|
|
2079
2081
|
if (!savedSelection) return false;
|
|
@@ -2179,13 +2181,12 @@ const BannerContent = ({
|
|
|
2179
2181
|
const { onSave, onDeclineAll, selectionTaken } = useSelection();
|
|
2180
2182
|
const [openItem, setOpenItem] = require$$0.useState(void 0);
|
|
2181
2183
|
const [settingsOpen, setSettingsOpen] = require$$0.useState(defaultSettingsOpen);
|
|
2182
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
2183
|
-
|
|
2184
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsx(reactDialog.Root, { open: !selectionTaken, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
2185
|
+
reactDialog.Content,
|
|
2184
2186
|
{
|
|
2185
2187
|
className: clx({
|
|
2186
2188
|
[classes$2.root]: true,
|
|
2187
|
-
[classes$2.noTarget]: noTarget2
|
|
2188
|
-
[classes$2.open]: !selectionTaken
|
|
2189
|
+
[classes$2.noTarget]: noTarget2
|
|
2189
2190
|
}),
|
|
2190
2191
|
children: /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
2191
2192
|
reactCollapsible.Root,
|
|
@@ -2196,8 +2197,8 @@ const BannerContent = ({
|
|
|
2196
2197
|
children: [
|
|
2197
2198
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$2.header, children: [
|
|
2198
2199
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$2.heading, children: [
|
|
2199
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(Text, { weight: "bold", children: heading2 }),
|
|
2200
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(Text, { size: "caption", color: "muted", children: subheading })
|
|
2200
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(reactDialog.Title, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Text, { weight: "bold", children: heading2 }) }),
|
|
2201
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(reactDialog.Description, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Text, { size: "caption", color: "muted", children: subheading }) })
|
|
2201
2202
|
] }),
|
|
2202
2203
|
/* @__PURE__ */ jsxRuntimeExports.jsx(reactCollapsible.Trigger, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsxs(Button, { variant: "ghost", children: [
|
|
2203
2204
|
settingsOpen ? hideLabel : selectLabel,
|
|
@@ -2235,15 +2236,15 @@ const BannerContent = ({
|
|
|
2235
2236
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$2.footer, children: [
|
|
2236
2237
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: classes$2.legal, children: privacyPolicy && /* @__PURE__ */ jsxRuntimeExports.jsx(Text, { size: "caption", children: /* @__PURE__ */ jsxRuntimeExports.jsx("a", { href: privacyPolicy.url, target: "_blank", children: privacyPolicy.label }) }) }),
|
|
2237
2238
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$2.actions, children: [
|
|
2238
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(Button, { variant: "neutral", onClick: () => onDeclineAll(), children: declineLabel }),
|
|
2239
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(Button, { variant: "brand", onClick: () => onSave(), children: saveLabel })
|
|
2239
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(reactDialog.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Button, { variant: "neutral", onClick: () => onDeclineAll(), children: declineLabel }) }),
|
|
2240
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(reactDialog.Close, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Button, { variant: "brand", onClick: () => onSave(), children: saveLabel }) })
|
|
2240
2241
|
] })
|
|
2241
2242
|
] })
|
|
2242
2243
|
]
|
|
2243
2244
|
}
|
|
2244
2245
|
)
|
|
2245
2246
|
}
|
|
2246
|
-
);
|
|
2247
|
+
) });
|
|
2247
2248
|
};
|
|
2248
2249
|
const Banner = ({
|
|
2249
2250
|
localStorageKey = "cb-selection",
|
package/dist/react/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import require$$0, { useMemo, useState, useEffect, useCallback, createContext, useContext } from "react";
|
|
2
|
-
import { Item, Trigger, Content, Root as Root$
|
|
2
|
+
import { Item, Trigger, Content, Root as Root$3 } from "@radix-ui/react-accordion";
|
|
3
3
|
import { ChevronDown, ChevronUp } from "lucide-react";
|
|
4
|
-
import { Root as Root$1,
|
|
4
|
+
import { Root as Root$1, Content as Content$1, Title, Description, Close } from "@radix-ui/react-dialog";
|
|
5
|
+
import { Root as Root$2, Trigger as Trigger$1, Content as Content$2 } from "@radix-ui/react-collapsible";
|
|
5
6
|
import { Root, Thumb } from "@radix-ui/react-switch";
|
|
6
7
|
var jsxRuntime = { exports: {} };
|
|
7
8
|
var reactJsxRuntime_production_min = {};
|
|
@@ -442,7 +443,7 @@ function requireReactJsxRuntime_development() {
|
|
|
442
443
|
}
|
|
443
444
|
}
|
|
444
445
|
}
|
|
445
|
-
function checkPropTypes(typeSpecs, values,
|
|
446
|
+
function checkPropTypes(typeSpecs, values, location2, componentName, element) {
|
|
446
447
|
{
|
|
447
448
|
var has = Function.call.bind(hasOwnProperty);
|
|
448
449
|
for (var typeSpecName in typeSpecs) {
|
|
@@ -450,23 +451,23 @@ function requireReactJsxRuntime_development() {
|
|
|
450
451
|
var error$1 = void 0;
|
|
451
452
|
try {
|
|
452
453
|
if (typeof typeSpecs[typeSpecName] !== "function") {
|
|
453
|
-
var err = Error((componentName || "React class") + ": " +
|
|
454
|
+
var err = Error((componentName || "React class") + ": " + location2 + " type `" + typeSpecName + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof typeSpecs[typeSpecName] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
|
454
455
|
err.name = "Invariant Violation";
|
|
455
456
|
throw err;
|
|
456
457
|
}
|
|
457
|
-
error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName,
|
|
458
|
+
error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location2, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
458
459
|
} catch (ex) {
|
|
459
460
|
error$1 = ex;
|
|
460
461
|
}
|
|
461
462
|
if (error$1 && !(error$1 instanceof Error)) {
|
|
462
463
|
setCurrentlyValidatingElement(element);
|
|
463
|
-
error("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", componentName || "React class",
|
|
464
|
+
error("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", componentName || "React class", location2, typeSpecName, typeof error$1);
|
|
464
465
|
setCurrentlyValidatingElement(null);
|
|
465
466
|
}
|
|
466
467
|
if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
|
|
467
468
|
loggedTypeFailures[error$1.message] = true;
|
|
468
469
|
setCurrentlyValidatingElement(element);
|
|
469
|
-
error("Failed %s type: %s",
|
|
470
|
+
error("Failed %s type: %s", location2, error$1.message);
|
|
470
471
|
setCurrentlyValidatingElement(null);
|
|
471
472
|
}
|
|
472
473
|
}
|
|
@@ -2072,6 +2073,7 @@ const SelectionProvider = ({
|
|
|
2072
2073
|
}, [items]);
|
|
2073
2074
|
const onSave = useCallback(() => {
|
|
2074
2075
|
saveSelection(selection);
|
|
2076
|
+
location.reload();
|
|
2075
2077
|
}, [selection]);
|
|
2076
2078
|
const selectionTaken = useMemo(() => {
|
|
2077
2079
|
if (!savedSelection) return false;
|
|
@@ -2177,16 +2179,15 @@ const BannerContent = ({
|
|
|
2177
2179
|
const { onSave, onDeclineAll, selectionTaken } = useSelection();
|
|
2178
2180
|
const [openItem, setOpenItem] = useState(void 0);
|
|
2179
2181
|
const [settingsOpen, setSettingsOpen] = useState(defaultSettingsOpen);
|
|
2180
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
2181
|
-
|
|
2182
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsx(Root$1, { open: !selectionTaken, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
2183
|
+
Content$1,
|
|
2182
2184
|
{
|
|
2183
2185
|
className: clx({
|
|
2184
2186
|
[classes$2.root]: true,
|
|
2185
|
-
[classes$2.noTarget]: noTarget2
|
|
2186
|
-
[classes$2.open]: !selectionTaken
|
|
2187
|
+
[classes$2.noTarget]: noTarget2
|
|
2187
2188
|
}),
|
|
2188
2189
|
children: /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
2189
|
-
Root$
|
|
2190
|
+
Root$2,
|
|
2190
2191
|
{
|
|
2191
2192
|
open: settingsOpen,
|
|
2192
2193
|
onOpenChange: setSettingsOpen,
|
|
@@ -2194,8 +2195,8 @@ const BannerContent = ({
|
|
|
2194
2195
|
children: [
|
|
2195
2196
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$2.header, children: [
|
|
2196
2197
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$2.heading, children: [
|
|
2197
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(Text, { weight: "bold", children: heading2 }),
|
|
2198
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(Text, { size: "caption", color: "muted", children: subheading })
|
|
2198
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(Title, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Text, { weight: "bold", children: heading2 }) }),
|
|
2199
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(Description, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Text, { size: "caption", color: "muted", children: subheading }) })
|
|
2199
2200
|
] }),
|
|
2200
2201
|
/* @__PURE__ */ jsxRuntimeExports.jsx(Trigger$1, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsxs(Button, { variant: "ghost", children: [
|
|
2201
2202
|
settingsOpen ? hideLabel : selectLabel,
|
|
@@ -2213,13 +2214,13 @@ const BannerContent = ({
|
|
|
2213
2214
|
] }) })
|
|
2214
2215
|
] }),
|
|
2215
2216
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
2216
|
-
Content$
|
|
2217
|
+
Content$2,
|
|
2217
2218
|
{
|
|
2218
2219
|
className: clx({
|
|
2219
2220
|
[classes$2.settings]: true
|
|
2220
2221
|
}),
|
|
2221
2222
|
children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
2222
|
-
Root$
|
|
2223
|
+
Root$3,
|
|
2223
2224
|
{
|
|
2224
2225
|
type: "single",
|
|
2225
2226
|
collapsible: true,
|
|
@@ -2233,15 +2234,15 @@ const BannerContent = ({
|
|
|
2233
2234
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$2.footer, children: [
|
|
2234
2235
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: classes$2.legal, children: privacyPolicy && /* @__PURE__ */ jsxRuntimeExports.jsx(Text, { size: "caption", children: /* @__PURE__ */ jsxRuntimeExports.jsx("a", { href: privacyPolicy.url, target: "_blank", children: privacyPolicy.label }) }) }),
|
|
2235
2236
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$2.actions, children: [
|
|
2236
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(Button, { variant: "neutral", onClick: () => onDeclineAll(), children: declineLabel }),
|
|
2237
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(Button, { variant: "brand", onClick: () => onSave(), children: saveLabel })
|
|
2237
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(Close, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Button, { variant: "neutral", onClick: () => onDeclineAll(), children: declineLabel }) }),
|
|
2238
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(Close, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Button, { variant: "brand", onClick: () => onSave(), children: saveLabel }) })
|
|
2238
2239
|
] })
|
|
2239
2240
|
] })
|
|
2240
2241
|
]
|
|
2241
2242
|
}
|
|
2242
2243
|
)
|
|
2243
2244
|
}
|
|
2244
|
-
);
|
|
2245
|
+
) });
|
|
2245
2246
|
};
|
|
2246
2247
|
const Banner = ({
|
|
2247
2248
|
localStorageKey = "cb-selection",
|
package/dist/script/index.cjs
CHANGED
|
@@ -1 +1,45 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const _=require("preact");var $n=0;function f(e,t,n,o,r,i){t||(t={});var c,s,a=t;if("ref"in a)for(s in a={},t)s=="ref"?c=t[s]:a[s]=t[s];var u={type:e,props:a,key:n,ref:c,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:--$n,__i:-1,__u:0,__source:r,__self:i};if(typeof e=="function"&&(c=e.defaultProps))for(s in c)a[s]===void 0&&(a[s]=c[s]);return _.options.vnode&&_.options.vnode(u),u}var T,w,ke,et,X=0,Pt=[],S=_.options,tt=S.__b,nt=S.__r,ot=S.diffed,rt=S.__c,it=S.unmount,st=S.__;function W(e,t){S.__h&&S.__h(w,e,X||t),X=0;var n=w.__H||(w.__H={__:[],__h:[]});return e>=n.__.length&&n.__.push({}),n.__[e]}function O(e){return X=1,ue(Nt,e)}function ue(e,t,n){var o=W(T++,2);if(o.t=e,!o.__c&&(o.__=[n?n(t):Nt(void 0,t),function(s){var a=o.__N?o.__N[0]:o.__[0],u=o.t(a,s);a!==u&&(o.__N=[u,o.__[1]],o.__c.setState({}))}],o.__c=w,!w.__f)){var r=function(s,a,u){if(!o.__c.__H)return!0;var l=o.__c.__H.__.filter(function(p){return p.__c});if(l.every(function(p){return!p.__N}))return!i||i.call(this,s,a,u);var d=o.__c.props!==s;return l.some(function(p){if(p.__N){var v=p.__[0];p.__=p.__N,p.__N=void 0,v!==p.__[0]&&(d=!0)}}),i&&i.call(this,s,a,u)||d};w.__f=!0;var i=w.shouldComponentUpdate,c=w.componentWillUpdate;w.componentWillUpdate=function(s,a,u){if(this.__e){var l=i;i=void 0,r(s,a,u),i=l}c&&c.call(this,s,a,u)},w.shouldComponentUpdate=r}return o.__N||o.__}function I(e,t){var n=W(T++,3);!S.__s&&Le(n.__H,t)&&(n.__=e,n.u=t,w.__H.__h.push(n))}function q(e,t){var n=W(T++,4);!S.__s&&Le(n.__H,t)&&(n.__=e,n.u=t,w.__h.push(n))}function A(e){return X=5,E(function(){return{current:e}},[])}function De(e,t,n){X=6,q(function(){if(typeof e=="function"){var o=e(t());return function(){e(null),o&&typeof o=="function"&&o()}}if(e)return e.current=t(),function(){return e.current=null}},n==null?n:n.concat(e))}function E(e,t){var n=W(T++,7);return Le(n.__H,t)&&(n.__=e(),n.__H=t,n.__h=e),n.__}function M(e,t){return X=8,E(function(){return e},t)}function ee(e){var t=w.context[e.__c],n=W(T++,9);return n.c=e,t?(n.__==null&&(n.__=!0,t.sub(w)),t.props.value):e.__}function je(e,t){S.useDebugValue&&S.useDebugValue(t?t(e):e)}function xn(e){var t=W(T++,10),n=O();return t.__=e,w.componentDidCatch||(w.componentDidCatch=function(o,r){t.__&&t.__(o,r),n[1](o)}),[n[0],function(){n[1](void 0)}]}function Ue(){var e=W(T++,11);if(!e.__){for(var t=w.__v;t!==null&&!t.__m&&t.__!==null;)t=t.__;var n=t.__m||(t.__m=[0,0]);e.__="P"+n[0]+"-"+n[1]++}return e.__}function Tn(){for(var e;e=Pt.shift();){var t=e.__H;if(e.__P&&t)try{t.__h.some(he),t.__h.some($e),t.__h=[]}catch(n){t.__h=[],S.__e(n,e.__v)}}}S.__b=function(e){w=null,tt&&tt(e)},S.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),st&&st(e,t)},S.__r=function(e){nt&&nt(e),T=0;var t=(w=e.__c).__H;t&&(ke===w?(t.__h=[],w.__h=[],t.__.some(function(n){n.__N&&(n.__=n.__N),n.u=n.__N=void 0})):(t.__h.some(he),t.__h.some($e),t.__h=[],T=0)),ke=w},S.diffed=function(e){ot&&ot(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(Pt.push(t)!==1&&et===S.requestAnimationFrame||((et=S.requestAnimationFrame)||Mn)(Tn)),t.__H.__.some(function(n){n.u&&(n.__H=n.u),n.u=void 0})),ke=w=null},S.__c=function(e,t){t.some(function(n){try{n.__h.some(he),n.__h=n.__h.filter(function(o){return!o.__||$e(o)})}catch(o){t.some(function(r){r.__h&&(r.__h=[])}),t=[],S.__e(o,n.__v)}}),rt&&rt(e,t)},S.unmount=function(e){it&&it(e);var t,n=e.__c;n&&n.__H&&(n.__H.__.some(function(o){try{he(o)}catch(r){t=r}}),n.__H=void 0,t&&S.__e(t,n.__v))};var ct=typeof requestAnimationFrame=="function";function Mn(e){var t,n=function(){clearTimeout(o),ct&&cancelAnimationFrame(t),setTimeout(e)},o=setTimeout(n,35);ct&&(t=requestAnimationFrame(n))}function he(e){var t=w,n=e.__c;typeof n=="function"&&(e.__c=void 0,n()),w=t}function $e(e){var t=w;e.__c=e.__(),w=t}function Le(e,t){return!e||e.length!==t.length||t.some(function(n,o){return n!==e[o]})}function Nt(e,t){return typeof t=="function"?t(e):t}function At(e,t){for(var n in t)e[n]=t[n];return e}function xe(e,t){for(var n in e)if(n!=="__source"&&!(n in t))return!0;for(var o in t)if(o!=="__source"&&e[o]!==t[o])return!0;return!1}function Ze(e,t){var n=t(),o=O({t:{__:n,u:t}}),r=o[0].t,i=o[1];return q(function(){r.__=n,r.u=t,Re(r)&&i({t:r})},[e,n,t]),I(function(){return Re(r)&&i({t:r}),e(function(){Re(r)&&i({t:r})})},[e]),n}function Re(e){try{return!((t=e.__)===(n=e.u())&&(t!==0||1/t==1/n)||t!=t&&n!=n)}catch{return!0}var t,n}function He(e){e()}function Be(e){return e}function Fe(){return[!1,He]}var Ve=q;function ve(e,t){this.props=e,this.context=t}function Et(e,t){function n(r){var i=this.props.ref,c=i==r.ref;return!c&&i&&(i.call?i(null):i.current=null),t?!t(this.props,r)||!c:xe(this.props,r)}function o(r){return this.shouldComponentUpdate=n,_.createElement(e,r)}return o.displayName="Memo("+(e.displayName||e.name)+")",o.prototype.isReactComponent=!0,o.__f=!0,o.type=e,o}(ve.prototype=new _.Component).isPureReactComponent=!0,ve.prototype.shouldComponentUpdate=function(e,t){return xe(this.props,e)||xe(this.state,t)};var at=_.options.__b;_.options.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),at&&at(e)};var Dn=typeof Symbol<"u"&&Symbol.for&&Symbol.for("react.forward_ref")||3911;function z(e){function t(n){var o=At({},n);return delete o.ref,e(o,n.ref||null)}return t.$$typeof=Dn,t.render=e,t.prototype.isReactComponent=t.__f=!0,t.displayName="ForwardRef("+(e.displayName||e.name)+")",t}var ut=function(e,t){return e==null?null:_.toChildArray(_.toChildArray(e).map(t))},L={map:ut,forEach:ut,count:function(e){return e?_.toChildArray(e).length:0},only:function(e){var t=_.toChildArray(e);if(t.length!==1)throw"Children.only";return t[0]},toArray:_.toChildArray},jn=_.options.__e;_.options.__e=function(e,t,n,o){if(e.then){for(var r,i=t;i=i.__;)if((r=i.__c)&&r.__c)return t.__e==null&&(t.__e=n.__e,t.__k=n.__k),r.__c(e,t)}jn(e,t,n,o)};var lt=_.options.unmount;function Ot(e,t,n){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach(function(o){typeof o.__c=="function"&&o.__c()}),e.__c.__H=null),(e=At({},e)).__c!=null&&(e.__c.__P===n&&(e.__c.__P=t),e.__c.__e=!0,e.__c=null),e.__k=e.__k&&e.__k.map(function(o){return Ot(o,t,n)})),e}function zt(e,t,n){return e&&n&&(e.__v=null,e.__k=e.__k&&e.__k.map(function(o){return zt(o,t,n)}),e.__c&&e.__c.__P===t&&(e.__e&&n.appendChild(e.__e),e.__c.__e=!0,e.__c.__P=n)),e}function se(){this.__u=0,this.o=null,this.__b=null}function kt(e){if(!e.__)return null;var t=e.__.__c;return t&&t.__a&&t.__a(e)}function Rt(e){var t,n,o,r=null;function i(c){if(t||(t=e()).then(function(s){s&&(r=s.default||s),o=!0},function(s){n=s,o=!0}),n)throw n;if(!o)throw t;return r?_.createElement(r,c):null}return i.displayName="Lazy",i.__f=!0,i}function Y(){this.i=null,this.l=null}_.options.unmount=function(e){var t=e.__c;t&&(t.__z=!0),t&&t.__R&&t.__R(),t&&32&e.__u&&(e.type=null),lt&<(e)},(se.prototype=new _.Component).__c=function(e,t){var n=t.__c,o=this;o.o==null&&(o.o=[]),o.o.push(n);var r=kt(o.__v),i=!1,c=function(){i||o.__z||(i=!0,n.__R=null,r?r(a):a())};n.__R=c;var s=n.__P;n.__P=null;var a=function(){if(!--o.__u){if(o.state.__a){var u=o.state.__a;o.__v.__k[0]=zt(u,u.__c.__P,u.__c.__O)}var l;for(o.setState({__a:o.__b=null});l=o.o.pop();)l.__P=s,l.forceUpdate()}};o.__u++||32&t.__u||o.setState({__a:o.__b=o.__v.__k[0]}),e.then(c,c)},se.prototype.componentWillUnmount=function(){this.o=[]},se.prototype.render=function(e,t){if(this.__b){if(this.__v.__k){var n=document.createElement("div"),o=this.__v.__k[0].__c;this.__v.__k[0]=Ot(this.__b,n,o.__O=o.__P)}this.__b=null}var r=t.__a&&_.createElement(_.Fragment,null,e.fallback);return r&&(r.__u&=-33),[_.createElement(_.Fragment,null,t.__a?null:e.children),r]};var dt=function(e,t,n){if(++n[1]===n[0]&&e.l.delete(t),e.props.revealOrder&&(e.props.revealOrder[0]!=="t"||!e.l.size))for(n=e.i;n;){for(;n.length>3;)n.pop()();if(n[1]<n[0])break;e.i=n=n[2]}};function Un(e){return this.getChildContext=function(){return e.context},e.children}function Ln(e){var t=this,n=e.h;if(t.componentWillUnmount=function(){_.render(null,t.v),t.v=null,t.h=null},t.h&&t.h!==n&&t.componentWillUnmount(),!t.v){for(var o=t.__v;o!==null&&!o.__m&&o.__!==null;)o=o.__;t.h=n,t.v={nodeType:1,parentNode:n,childNodes:[],__k:{__m:o.__m},contains:function(){return!0},namespaceURI:n.namespaceURI,insertBefore:function(r,i){this.childNodes.push(r),t.h.insertBefore(r,i)},removeChild:function(r){this.childNodes.splice(this.childNodes.indexOf(r)>>>1,1),t.h.removeChild(r)}}}_.render(_.createElement(Un,{context:t.context},e.__v),t.v)}function It(e,t){var n=_.createElement(Ln,{__v:e,h:t});return n.containerInfo=t,n}(Y.prototype=new _.Component).__a=function(e){var t=this,n=kt(t.__v),o=t.l.get(e);return o[0]++,function(r){var i=function(){t.props.revealOrder?(o.push(r),dt(t,e,o)):r()};n?n(i):i()}},Y.prototype.render=function(e){this.i=null,this.l=new Map;var t=_.toChildArray(e.children);e.revealOrder&&e.revealOrder[0]==="b"&&t.reverse();for(var n=t.length;n--;)this.l.set(t[n],this.i=[1,0,this.i]);return e.children},Y.prototype.componentDidUpdate=Y.prototype.componentDidMount=function(){var e=this;this.l.forEach(function(t,n){dt(e,n,t)})};var $t=typeof Symbol<"u"&&Symbol.for&&Symbol.for("react.element")||60103,Zn=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,Hn=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,Bn=/[A-Z0-9]/g,Fn=typeof document<"u",Vn=function(e){return(typeof Symbol<"u"&&typeof Symbol()=="symbol"?/fil|che|rad/:/fil|che|ra/).test(e)};function xt(e,t,n){return t.__k==null&&(t.textContent=""),_.render(e,t),typeof n=="function"&&n(),e?e.__c:null}function Tt(e,t,n){return _.hydrate(e,t),typeof n=="function"&&n(),e?e.__c:null}_.Component.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(e){Object.defineProperty(_.Component.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(t){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:t})}})});var ft=_.options.event;function Wn(){}function qn(){return this.cancelBubble}function Kn(){return this.defaultPrevented}_.options.event=function(e){return ft&&(e=ft(e)),e.persist=Wn,e.isPropagationStopped=qn,e.isDefaultPrevented=Kn,e.nativeEvent=e};var We,Gn={enumerable:!1,configurable:!0,get:function(){return this.class}},_t=_.options.vnode;_.options.vnode=function(e){typeof e.type=="string"&&(function(t){var n=t.props,o=t.type,r={},i=o.indexOf("-")===-1;for(var c in n){var s=n[c];if(!(c==="value"&&"defaultValue"in n&&s==null||Fn&&c==="children"&&o==="noscript"||c==="class"||c==="className")){var a=c.toLowerCase();c==="defaultValue"&&"value"in n&&n.value==null?c="value":c==="download"&&s===!0?s="":a==="translate"&&s==="no"?s=!1:a[0]==="o"&&a[1]==="n"?a==="ondoubleclick"?c="ondblclick":a!=="onchange"||o!=="input"&&o!=="textarea"||Vn(n.type)?a==="onfocus"?c="onfocusin":a==="onblur"?c="onfocusout":Hn.test(c)&&(c=a):a=c="oninput":i&&Zn.test(c)?c=c.replace(Bn,"-$&").toLowerCase():s===null&&(s=void 0),a==="oninput"&&r[c=a]&&(c="oninputCapture"),r[c]=s}}o=="select"&&r.multiple&&Array.isArray(r.value)&&(r.value=_.toChildArray(n.children).forEach(function(u){u.props.selected=r.value.indexOf(u.props.value)!=-1})),o=="select"&&r.defaultValue!=null&&(r.value=_.toChildArray(n.children).forEach(function(u){u.props.selected=r.multiple?r.defaultValue.indexOf(u.props.value)!=-1:r.defaultValue==u.props.value})),n.class&&!n.className?(r.class=n.class,Object.defineProperty(r,"className",Gn)):n.className&&(r.class=r.className=n.className),t.props=r})(e),e.$$typeof=$t,_t&&_t(e)};var pt=_.options.__r;_.options.__r=function(e){pt&&pt(e),We=e.__c};var ht=_.options.diffed;_.options.diffed=function(e){ht&&ht(e);var t=e.props,n=e.__e;n!=null&&e.type==="textarea"&&"value"in t&&t.value!==n.value&&(n.value=t.value==null?"":t.value),We=null};var Mt={ReactCurrentDispatcher:{current:{readContext:function(e){return We.__n[e.__c].props.value},useCallback:M,useContext:ee,useDebugValue:je,useDeferredValue:Be,useEffect:I,useId:Ue,useImperativeHandle:De,useInsertionEffect:Ve,useLayoutEffect:q,useMemo:E,useReducer:ue,useRef:A,useState:O,useSyncExternalStore:Ze,useTransition:Fe}}},Jn="18.3.1";function Dt(e){return _.createElement.bind(null,e)}function D(e){return!!e&&e.$$typeof===$t}function jt(e){return D(e)&&e.type===_.Fragment}function Ut(e){return!!e&&typeof e.displayName=="string"&&e.displayName.startsWith("Memo(")}function le(e){return D(e)?_.cloneElement.apply(null,arguments):e}function Lt(e){return!!e.__k&&(_.render(null,e),!0)}function Zt(e){return e&&(e.base||e.nodeType===1&&e)||null}var Ht=function(e,t){return e(t)},Bt=function(e,t){return e(t)},Ft=_.Fragment,Vt=D,P={useState:O,useId:Ue,useReducer:ue,useEffect:I,useLayoutEffect:q,useInsertionEffect:Ve,useTransition:Fe,useDeferredValue:Be,useSyncExternalStore:Ze,startTransition:He,useRef:A,useImperativeHandle:De,useMemo:E,useCallback:M,useContext:ee,useDebugValue:je,version:"18.3.1",Children:L,render:xt,hydrate:Tt,unmountComponentAtNode:Lt,createPortal:It,createElement:_.createElement,createContext:_.createContext,createFactory:Dt,cloneElement:le,createRef:_.createRef,Fragment:_.Fragment,isValidElement:D,isElement:Vt,isFragment:jt,isMemo:Ut,findDOMNode:Zt,Component:_.Component,PureComponent:ve,memo:Et,forwardRef:z,flushSync:Bt,unstable_batchedUpdates:Ht,StrictMode:Ft,Suspense:se,SuspenseList:Y,lazy:Rt,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:Mt};const Wt=Object.freeze(Object.defineProperty({__proto__:null,Children:L,Component:_.Component,Fragment:_.Fragment,PureComponent:ve,StrictMode:Ft,Suspense:se,SuspenseList:Y,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:Mt,cloneElement:le,createContext:_.createContext,createElement:_.createElement,createFactory:Dt,createPortal:It,createRef:_.createRef,default:P,findDOMNode:Zt,flushSync:Bt,forwardRef:z,hydrate:Tt,isElement:Vt,isFragment:jt,isMemo:Ut,isValidElement:D,lazy:Rt,memo:Et,render:xt,startTransition:He,unmountComponentAtNode:Lt,unstable_batchedUpdates:Ht,useCallback:M,useContext:ee,useDebugValue:je,useDeferredValue:Be,useEffect:I,useErrorBoundary:xn,useId:Ue,useImperativeHandle:De,useInsertionEffect:Ve,useLayoutEffect:q,useMemo:E,useReducer:ue,useRef:A,useState:O,useSyncExternalStore:Ze,useTransition:Fe,version:Jn},Symbol.toStringTag,{value:"Module"}));function qt(...e){return e.filter(Boolean).join(" ")}function me(e){return Object.entries(e).filter(([,t])=>t).map(([t])=>t).join(" ")}const Yn="_root_hw69b_1",Xn="_neutral_hw69b_17",Qn="_brand_hw69b_30",eo="_ghost_hw69b_43",mt={root:Yn,neutral:Xn,brand:Qn,ghost:eo},Ie=({variant:e="neutral",...t})=>f("button",{className:qt(mt.root,mt[e]),...t}),to="_root_14l5h_1",no="_muted_14l5h_4",oo="_body_14l5h_8",ro="_normal_14l5h_14",io="_bold_14l5h_18",so="_caption_14l5h_23",de={root:to,muted:no,body:oo,normal:ro,bold:io,caption:so},F=({as:e="span",size:t="body",weight:n="normal",color:o="default",...r})=>f(e??"span",{className:qt(de.root,de[t],de[n],de[o]),...r}),co="_root_2wcp0_53",ao="_open_2wcp0_66",uo="_noTarget_2wcp0_72",lo="_collapsible_2wcp0_81",fo="_header_2wcp0_84",_o="_heading_2wcp0_91",po="_chevron_2wcp0_97",ho="_settings_2wcp0_108",mo="_footer_2wcp0_122",vo="_legal_2wcp0_129",go="_actions_2wcp0_132",R={root:co,open:ao,noTarget:uo,collapsible:lo,header:fo,heading:_o,chevron:po,settings:ho,footer:mo,legal:vo,actions:go},yo="_root_mqtha_19",bo="_header_mqtha_24",Co="_label_mqtha_33",wo="_actions_mqtha_39",So="_chevron_mqtha_45",Po="_open_mqtha_51",No="_description_mqtha_58",H={root:yo,header:bo,label:Co,actions:wo,chevron:So,open:Po,description:No};function N(e,t,n){function o(s,a){if(s._zod||Object.defineProperty(s,"_zod",{value:{def:a,constr:c,traits:new Set},enumerable:!1}),s._zod.traits.has(e))return;s._zod.traits.add(e),t(s,a);const u=c.prototype,l=Object.keys(u);for(let d=0;d<l.length;d++){const p=l[d];p in s||(s[p]=u[p].bind(s))}}const r=n?.Parent??Object;class i extends r{}Object.defineProperty(i,"name",{value:e});function c(s){var a;const u=n?.Parent?new i:this;o(u,s),(a=u._zod).deferred??(a.deferred=[]);for(const l of u._zod.deferred)l();return u}return Object.defineProperty(c,"init",{value:o}),Object.defineProperty(c,Symbol.hasInstance,{value:s=>n?.Parent&&s instanceof n.Parent?!0:s?._zod?.traits?.has(e)}),Object.defineProperty(c,"name",{value:e}),c}class ce extends Error{constructor(){super("Encountered Promise during synchronous parse. Use .parseAsync() instead.")}}const Ao={};function te(e){return Ao}function Eo(e,t){return typeof t=="bigint"?t.toString():t}function Kt(e){return{get value(){{const t=e();return Object.defineProperty(this,"value",{value:t}),t}}}}function Gt(e){const t=e.startsWith("^")?1:0,n=e.endsWith("$")?e.length-1:e.length;return e.slice(t,n)}const vt=Symbol("evaluating");function x(e,t,n){let o;Object.defineProperty(e,t,{get(){if(o!==vt)return o===void 0&&(o=vt,o=n()),o},set(r){Object.defineProperty(e,t,{value:r})},configurable:!0})}const Jt="captureStackTrace"in Error?Error.captureStackTrace:(...e)=>{};function ge(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)}function Oo(e){if(ge(e)===!1)return!1;const t=e.constructor;if(t===void 0||typeof t!="function")return!0;const n=t.prototype;return!(ge(n)===!1||Object.prototype.hasOwnProperty.call(n,"isPrototypeOf")===!1)}function gt(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function zo(e,t,n){const o=new e._zod.constr(t??e._zod.def);return(!t||n?.parent)&&(o._zod.parent=e),o}function ne(e){return{}}function ko(e){return Object.keys(e).filter(t=>e[t]._zod.optin==="optional"&&e[t]._zod.optout==="optional")}function re(e,t=0){if(e.aborted===!0)return!0;for(let n=t;n<e.issues.length;n++)if(e.issues[n]?.continue!==!0)return!0;return!1}function ie(e,t){return t.map(n=>{var o;return(o=n).path??(o.path=[]),n.path.unshift(e),n})}function fe(e){return typeof e=="string"?e:e?.message}function oe(e,t,n){const o={...e,path:e.path??[]};if(!e.message){const r=fe(e.inst?._zod.def?.error?.(e))??fe(t?.error?.(e))??fe(n.customError?.(e))??fe(n.localeError?.(e))??"Invalid input";o.message=r}return delete o.inst,delete o.continue,t?.reportInput||delete o.input,o}const Yt=(e,t)=>{e.name="$ZodError",Object.defineProperty(e,"_zod",{value:e._zod,enumerable:!1}),Object.defineProperty(e,"issues",{value:t,enumerable:!1}),e.message=JSON.stringify(t,Eo,2),Object.defineProperty(e,"toString",{value:()=>e.message,enumerable:!1})},Ro=N("$ZodError",Yt),Ce=N("$ZodError",Yt,{Parent:Error}),Io=e=>(t,n,o,r)=>{const i=o?Object.assign(o,{async:!1}):{async:!1},c=t._zod.run({value:n,issues:[]},i);if(c instanceof Promise)throw new ce;if(c.issues.length){const s=new(r?.Err??e)(c.issues.map(a=>oe(a,i,te())));throw Jt(s,r?.callee),s}return c.value},$o=Io(Ce),xo=e=>async(t,n,o,r)=>{const i=o?Object.assign(o,{async:!0}):{async:!0};let c=t._zod.run({value:n,issues:[]},i);if(c instanceof Promise&&(c=await c),c.issues.length){const s=new(r?.Err??e)(c.issues.map(a=>oe(a,i,te())));throw Jt(s,r?.callee),s}return c.value},To=xo(Ce),Mo=e=>(t,n,o)=>{const r=o?{...o,async:!1}:{async:!1},i=t._zod.run({value:n,issues:[]},r);if(i instanceof Promise)throw new ce;return i.issues.length?{success:!1,error:new(e??Ro)(i.issues.map(c=>oe(c,r,te())))}:{success:!0,data:i.value}},Xt=Mo(Ce),Do=e=>async(t,n,o)=>{const r=o?Object.assign(o,{async:!0}):{async:!0};let i=t._zod.run({value:n,issues:[]},r);return i instanceof Promise&&(i=await i),i.issues.length?{success:!1,error:new e(i.issues.map(c=>oe(c,r,te())))}:{success:!0,data:i.value}},Qt=Do(Ce),jo=e=>{const t=e?`[\\s\\S]{${e?.minimum??0},${e?.maximum??""}}`:"[\\s\\S]*";return new RegExp(`^${t}$`)},Uo=/^-?\d+(?:\.\d+)?$/,Lo=/^(?:true|false)$/i,Zo={major:4,minor:3,patch:6},Z=N("$ZodType",(e,t)=>{var n;e??(e={}),e._zod.def=t,e._zod.bag=e._zod.bag||{},e._zod.version=Zo;const o=[...e._zod.def.checks??[]];e._zod.traits.has("$ZodCheck")&&o.unshift(e);for(const r of o)for(const i of r._zod.onattach)i(e);if(o.length===0)(n=e._zod).deferred??(n.deferred=[]),e._zod.deferred?.push(()=>{e._zod.run=e._zod.parse});else{const r=(c,s,a)=>{let u=re(c),l;for(const d of s){if(d._zod.def.when){if(!d._zod.def.when(c))continue}else if(u)continue;const p=c.issues.length,v=d._zod.check(c);if(v instanceof Promise&&a?.async===!1)throw new ce;if(l||v instanceof Promise)l=(l??Promise.resolve()).then(async()=>{await v,c.issues.length!==p&&(u||(u=re(c,p)))});else{if(c.issues.length===p)continue;u||(u=re(c,p))}}return l?l.then(()=>c):c},i=(c,s,a)=>{if(re(c))return c.aborted=!0,c;const u=r(s,o,a);if(u instanceof Promise){if(a.async===!1)throw new ce;return u.then(l=>e._zod.parse(l,a))}return e._zod.parse(u,a)};e._zod.run=(c,s)=>{if(s.skipChecks)return e._zod.parse(c,s);if(s.direction==="backward"){const u=e._zod.parse({value:c.value,issues:[]},{...s,skipChecks:!0});return u instanceof Promise?u.then(l=>i(l,c,s)):i(u,c,s)}const a=e._zod.parse(c,s);if(a instanceof Promise){if(s.async===!1)throw new ce;return a.then(u=>r(u,o,s))}return r(a,o,s)}}x(e,"~standard",()=>({validate:r=>{try{const i=Xt(e,r);return i.success?{value:i.data}:{issues:i.error?.issues}}catch{return Qt(e,r).then(c=>c.success?{value:c.data}:{issues:c.error?.issues})}},vendor:"zod",version:1}))}),Ho=N("$ZodString",(e,t)=>{Z.init(e,t),e._zod.pattern=[...e?._zod.bag?.patterns??[]].pop()??jo(e._zod.bag),e._zod.parse=(n,o)=>{if(t.coerce)try{n.value=String(n.value)}catch{}return typeof n.value=="string"||n.issues.push({expected:"string",code:"invalid_type",input:n.value,inst:e}),n}}),Bo=N("$ZodBoolean",(e,t)=>{Z.init(e,t),e._zod.pattern=Lo,e._zod.parse=(n,o)=>{if(t.coerce)try{n.value=!!n.value}catch{}const r=n.value;return typeof r=="boolean"||n.issues.push({expected:"boolean",code:"invalid_type",input:r,inst:e}),n}});function ye(e,t,n,o,r){if(e.issues.length){if(r&&!(n in o))return;t.issues.push(...ie(n,e.issues))}e.value===void 0?n in o&&(t.value[n]=void 0):t.value[n]=e.value}function Fo(e){const t=Object.keys(e.shape);for(const o of t)if(!e.shape?.[o]?._zod?.traits?.has("$ZodType"))throw new Error(`Invalid element at key "${o}": expected a Zod schema`);const n=ko(e.shape);return{...e,keys:t,keySet:new Set(t),numKeys:t.length,optionalKeys:new Set(n)}}function Vo(e,t,n,o,r,i){const c=[],s=r.keySet,a=r.catchall._zod,u=a.def.type,l=a.optout==="optional";for(const d in t){if(s.has(d))continue;if(u==="never"){c.push(d);continue}const p=a.run({value:t[d],issues:[]},o);p instanceof Promise?e.push(p.then(v=>ye(v,n,d,t,l))):ye(p,n,d,t,l)}return c.length&&n.issues.push({code:"unrecognized_keys",keys:c,input:t,inst:i}),e.length?Promise.all(e).then(()=>n):n}const Wo=N("$ZodObject",(e,t)=>{if(Z.init(e,t),!Object.getOwnPropertyDescriptor(t,"shape")?.get){const s=t.shape;Object.defineProperty(t,"shape",{get:()=>{const a={...s};return Object.defineProperty(t,"shape",{value:a}),a}})}const o=Kt(()=>Fo(t));x(e._zod,"propValues",()=>{const s=t.shape,a={};for(const u in s){const l=s[u]._zod;if(l.values){a[u]??(a[u]=new Set);for(const d of l.values)a[u].add(d)}}return a});const r=ge,i=t.catchall;let c;e._zod.parse=(s,a)=>{c??(c=o.value);const u=s.value;if(!r(u))return s.issues.push({expected:"object",code:"invalid_type",input:u,inst:e}),s;s.value={};const l=[],d=c.shape;for(const p of c.keys){const v=d[p],m=v._zod.optout==="optional",g=v._zod.run({value:u[p],issues:[]},a);g instanceof Promise?l.push(g.then(h=>ye(h,s,p,u,m))):ye(g,s,p,u,m)}return i?Vo(l,u,s,a,o.value,e):l.length?Promise.all(l).then(()=>s):s}});function yt(e,t,n,o){for(const i of e)if(i.issues.length===0)return t.value=i.value,t;const r=e.filter(i=>!re(i));return r.length===1?(t.value=r[0].value,r[0]):(t.issues.push({code:"invalid_union",input:t.value,inst:n,errors:e.map(i=>i.issues.map(c=>oe(c,o,te())))}),t)}const qo=N("$ZodUnion",(e,t)=>{Z.init(e,t),x(e._zod,"optin",()=>t.options.some(r=>r._zod.optin==="optional")?"optional":void 0),x(e._zod,"optout",()=>t.options.some(r=>r._zod.optout==="optional")?"optional":void 0),x(e._zod,"values",()=>{if(t.options.every(r=>r._zod.values))return new Set(t.options.flatMap(r=>Array.from(r._zod.values)))}),x(e._zod,"pattern",()=>{if(t.options.every(r=>r._zod.pattern)){const r=t.options.map(i=>i._zod.pattern);return new RegExp(`^(${r.map(i=>Gt(i.source)).join("|")})$`)}});const n=t.options.length===1,o=t.options[0]._zod.run;e._zod.parse=(r,i)=>{if(n)return o(r,i);let c=!1;const s=[];for(const a of t.options){const u=a._zod.run({value:r.value,issues:[]},i);if(u instanceof Promise)s.push(u),c=!0;else{if(u.issues.length===0)return u;s.push(u)}}return c?Promise.all(s).then(a=>yt(a,r,e,i)):yt(s,r,e,i)}}),Ko=N("$ZodDiscriminatedUnion",(e,t)=>{t.inclusive=!1,qo.init(e,t);const n=e._zod.parse;x(e._zod,"propValues",()=>{const r={};for(const i of t.options){const c=i._zod.propValues;if(!c||Object.keys(c).length===0)throw new Error(`Invalid discriminated union option at index "${t.options.indexOf(i)}"`);for(const[s,a]of Object.entries(c)){r[s]||(r[s]=new Set);for(const u of a)r[s].add(u)}}return r});const o=Kt(()=>{const r=t.options,i=new Map;for(const c of r){const s=c._zod.propValues?.[t.discriminator];if(!s||s.size===0)throw new Error(`Invalid discriminated union option at index "${t.options.indexOf(c)}"`);for(const a of s){if(i.has(a))throw new Error(`Duplicate discriminator value "${String(a)}"`);i.set(a,c)}}return i});e._zod.parse=(r,i)=>{const c=r.value;if(!ge(c))return r.issues.push({code:"invalid_type",expected:"object",input:c,inst:e}),r;const s=o.value.get(c?.[t.discriminator]);return s?s._zod.run(r,i):t.unionFallback?n(r,i):(r.issues.push({code:"invalid_union",errors:[],note:"No matching discriminator",discriminator:t.discriminator,input:c,path:[t.discriminator],inst:e}),r)}}),Go=N("$ZodRecord",(e,t)=>{Z.init(e,t),e._zod.parse=(n,o)=>{const r=n.value;if(!Oo(r))return n.issues.push({expected:"record",code:"invalid_type",input:r,inst:e}),n;const i=[],c=t.keyType._zod.values;if(c){n.value={};const s=new Set;for(const u of c)if(typeof u=="string"||typeof u=="number"||typeof u=="symbol"){s.add(typeof u=="number"?u.toString():u);const l=t.valueType._zod.run({value:r[u],issues:[]},o);l instanceof Promise?i.push(l.then(d=>{d.issues.length&&n.issues.push(...ie(u,d.issues)),n.value[u]=d.value})):(l.issues.length&&n.issues.push(...ie(u,l.issues)),n.value[u]=l.value)}let a;for(const u in r)s.has(u)||(a=a??[],a.push(u));a&&a.length>0&&n.issues.push({code:"unrecognized_keys",input:r,inst:e,keys:a})}else{n.value={};for(const s of Reflect.ownKeys(r)){if(s==="__proto__")continue;let a=t.keyType._zod.run({value:s,issues:[]},o);if(a instanceof Promise)throw new Error("Async schemas not supported in object keys currently");if(typeof s=="string"&&Uo.test(s)&&a.issues.length){const d=t.keyType._zod.run({value:Number(s),issues:[]},o);if(d instanceof Promise)throw new Error("Async schemas not supported in object keys currently");d.issues.length===0&&(a=d)}if(a.issues.length){t.mode==="loose"?n.value[s]=r[s]:n.issues.push({code:"invalid_key",origin:"record",issues:a.issues.map(d=>oe(d,o,te())),input:s,path:[s],inst:e});continue}const l=t.valueType._zod.run({value:r[s],issues:[]},o);l instanceof Promise?i.push(l.then(d=>{d.issues.length&&n.issues.push(...ie(s,d.issues)),n.value[a.value]=d.value})):(l.issues.length&&n.issues.push(...ie(s,l.issues)),n.value[a.value]=l.value)}}return i.length?Promise.all(i).then(()=>n):n}}),Jo=N("$ZodLiteral",(e,t)=>{if(Z.init(e,t),t.values.length===0)throw new Error("Cannot create literal schema with no valid values");const n=new Set(t.values);e._zod.values=n,e._zod.pattern=new RegExp(`^(${t.values.map(o=>typeof o=="string"?gt(o):o?gt(o.toString()):String(o)).join("|")})$`),e._zod.parse=(o,r)=>{const i=o.value;return n.has(i)||o.issues.push({code:"invalid_value",values:t.values,input:i,inst:e}),o}});function bt(e,t){return e.issues.length&&t===void 0?{issues:[],value:void 0}:e}const Yo=N("$ZodOptional",(e,t)=>{Z.init(e,t),e._zod.optin="optional",e._zod.optout="optional",x(e._zod,"values",()=>t.innerType._zod.values?new Set([...t.innerType._zod.values,void 0]):void 0),x(e._zod,"pattern",()=>{const n=t.innerType._zod.pattern;return n?new RegExp(`^(${Gt(n.source)})?$`):void 0}),e._zod.parse=(n,o)=>{if(t.innerType._zod.optin==="optional"){const r=t.innerType._zod.run(n,o);return r instanceof Promise?r.then(i=>bt(i,n.value)):bt(r,n.value)}return n.value===void 0?n:t.innerType._zod.run(n,o)}});function Xo(e,t){return new e({type:"string",...ne()})}function Qo(e,t){return new e({type:"boolean",...ne()})}const K=N("ZodMiniType",(e,t)=>{if(!e._zod)throw new Error("Uninitialized schema in ZodMiniType.");Z.init(e,t),e.def=t,e.type=t.type,e.parse=(n,o)=>$o(e,n,o,{callee:e.parse}),e.safeParse=(n,o)=>Xt(e,n,o),e.parseAsync=async(n,o)=>To(e,n,o,{callee:e.parseAsync}),e.safeParseAsync=async(n,o)=>Qt(e,n,o),e.check=(...n)=>e.clone({...t,checks:[...t.checks??[],...n.map(o=>typeof o=="function"?{_zod:{check:o,def:{check:"custom"},onattach:[]}}:o)]},{parent:!0}),e.with=e.check,e.clone=(n,o)=>zo(e,n,o),e.brand=()=>e,e.register=((n,o)=>(n.add(e,o),e)),e.apply=n=>n(e)}),er=N("ZodMiniString",(e,t)=>{Ho.init(e,t),K.init(e,t)});function B(e){return Xo(er)}const tr=N("ZodMiniBoolean",(e,t)=>{Bo.init(e,t),K.init(e,t)});function ae(e){return Qo(tr)}const nr=N("ZodMiniObject",(e,t)=>{Wo.init(e,t),K.init(e,t),x(e,"shape",()=>t.shape)});function en(e,t){const n={type:"object",shape:e??{},...ne()};return new nr(n)}const or=N("ZodMiniDiscriminatedUnion",(e,t)=>{Ko.init(e,t),K.init(e,t)});function rr(e,t,n){return new or({type:"union",options:t,discriminator:e,...ne()})}const ir=N("ZodMiniRecord",(e,t)=>{Go.init(e,t),K.init(e,t)});function sr(e,t,n){return new ir({type:"record",keyType:e,valueType:t,...ne()})}const cr=N("ZodMiniLiteral",(e,t)=>{Jo.init(e,t),K.init(e,t)});function tn(e,t){return new cr({type:"literal",values:Array.isArray(e)?e:[e],...ne()})}const ar=N("ZodMiniOptional",(e,t)=>{Yo.init(e,t),K.init(e,t)});function U(e){return new ar({type:"optional",innerType:e})}const ur=en({variant:tn("remote"),type:U(B()),src:B(),async:U(ae()),defer:U(ae()),crossorigin:U(B()),integrity:U(B())}),lr=en({variant:tn("inline"),type:U(B()),async:U(ae()),defer:U(ae()),content:B()}),dr=rr("variant",[ur,lr]);function we(e,t=[]){let n=[];function o(i,c){const s=_.createContext(c),a=n.length;n=[...n,c];const u=d=>{const{scope:p,children:v,...m}=d,g=p?.[e]?.[a]||s,h=E(()=>m,Object.values(m));return f(g.Provider,{value:h,children:v})};u.displayName=i+"Provider";function l(d,p){const v=p?.[e]?.[a]||s,m=ee(v);if(m)return m;if(c!==void 0)return c;throw new Error(`\`${d}\` must be used within \`${i}\``)}return[u,l]}const r=()=>{const i=n.map(c=>_.createContext(c));return function(s){const a=s?.[e]||i;return E(()=>({[`__scope${e}`]:{...s,[e]:a}}),[s,a])}};return r.scopeName=e,[o,fr(r,...t)]}function fr(...e){const t=e[0];if(e.length===1)return t;const n=()=>{const o=e.map(r=>({useScope:r(),scopeName:r.scopeName}));return function(i){const c=o.reduce((s,{useScope:a,scopeName:u})=>{const d=a(i)[`__scope${u}`];return{...s,...d}},{});return E(()=>({[`__scope${t.scopeName}`]:c}),[c])}};return n.scopeName=t.scopeName,n}function Ct(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}function nn(...e){return t=>{let n=!1;const o=e.map(r=>{const i=Ct(r,t);return!n&&typeof i=="function"&&(n=!0),i});if(n)return()=>{for(let r=0;r<o.length;r++){const i=o[r];typeof i=="function"?i():Ct(e[r],null)}}}}function V(...e){return M(nn(...e),e)}function Te(e){const t=_r(e),n=z((o,r)=>{const{children:i,...c}=o,s=L.toArray(i),a=s.find(hr);if(a){const u=a.props.children,l=s.map(d=>d===a?L.count(u)>1?L.only(null):D(u)?u.props.children:null:d);return f(t,{...c,ref:r,children:D(u)?le(u,void 0,l):null})}return f(t,{...c,ref:r,children:i})});return n.displayName=`${e}.Slot`,n}function _r(e){const t=z((n,o)=>{const{children:r,...i}=n;if(D(r)){const c=vr(r),s=mr(i,r.props);return r.type!==_.Fragment&&(s.ref=o?nn(o,c):c),le(r,s)}return L.count(r)>1?L.only(null):null});return t.displayName=`${e}.SlotClone`,t}var pr=Symbol("radix.slottable");function hr(e){return D(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===pr}function mr(e,t){const n={...t};for(const o in t){const r=e[o],i=t[o];/^on[A-Z]/.test(o)?r&&i?n[o]=(...s)=>{const a=i(...s);return r(...s),a}:r&&(n[o]=r):o==="style"?n[o]={...r,...i}:o==="className"&&(n[o]=[r,i].filter(Boolean).join(" "))}return{...e,...n}}function vr(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,n=t&&"isReactWarning"in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,"ref")?.get,n=t&&"isReactWarning"in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}function gr(e){const t=e+"CollectionProvider",[n,o]=we(t),[r,i]=n(t,{collectionRef:{current:null},itemMap:new Map}),c=g=>{const{scope:h,children:y}=g,b=P.useRef(null),C=P.useRef(new Map).current;return f(r,{scope:h,itemMap:C,collectionRef:b,children:y})};c.displayName=t;const s=e+"CollectionSlot",a=Te(s),u=P.forwardRef((g,h)=>{const{scope:y,children:b}=g,C=i(s,y),k=V(h,C.collectionRef);return f(a,{ref:k,children:b})});u.displayName=s;const l=e+"CollectionItemSlot",d="data-radix-collection-item",p=Te(l),v=P.forwardRef((g,h)=>{const{scope:y,children:b,...C}=g,k=P.useRef(null),J=V(h,k),j=i(l,y);return P.useEffect(()=>(j.itemMap.set(k,{ref:k,...C}),()=>{j.itemMap.delete(k)})),f(p,{[d]:"",ref:J,children:b})});v.displayName=l;function m(g){const h=i(e+"CollectionConsumer",g);return P.useCallback(()=>{const b=h.collectionRef.current;if(!b)return[];const C=Array.from(b.querySelectorAll(`[${d}]`));return Array.from(h.itemMap.values()).sort((j,Oe)=>C.indexOf(j.ref.current)-C.indexOf(Oe.ref.current))},[h.collectionRef,h.itemMap])}return[{Provider:c,Slot:u,ItemSlot:v},m,o]}function qe(e,t,{checkForDefaultPrevented:n=!0}={}){return function(r){if(e?.(r),n===!1||!r.defaultPrevented)return t?.(r)}}var Q=globalThis?.document?q:()=>{},yr=Wt[" useInsertionEffect ".trim().toString()]||Q;function Se({prop:e,defaultProp:t,onChange:n=()=>{},caller:o}){const[r,i,c]=br({defaultProp:t,onChange:n}),s=e!==void 0,a=s?e:r;{const l=A(e!==void 0);I(()=>{const d=l.current;d!==s&&console.warn(`${o} is changing from ${d?"controlled":"uncontrolled"} to ${s?"controlled":"uncontrolled"}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`),l.current=s},[s,o])}const u=M(l=>{if(s){const d=Cr(l)?l(e):l;d!==e&&c.current?.(d)}else i(l)},[s,e,i,c]);return[a,u]}function br({defaultProp:e,onChange:t}){const[n,o]=O(e),r=A(n),i=A(t);return yr(()=>{i.current=t},[t]),I(()=>{r.current!==n&&(i.current?.(n),r.current=n)},[n,r]),[n,o,i]}function Cr(e){return typeof e=="function"}var wr=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],G=wr.reduce((e,t)=>{const n=Te(`Primitive.${t}`),o=z((r,i)=>{const{asChild:c,...s}=r,a=c?n:t;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),f(a,{...s,ref:i})});return o.displayName=`Primitive.${t}`,{...e,[t]:o}},{});function Sr(e,t){return ue((n,o)=>t[n][o]??n,e)}var on=e=>{const{present:t,children:n}=e,o=Pr(t),r=typeof n=="function"?n({present:o.isPresent}):L.only(n),i=V(o.ref,Nr(r));return typeof n=="function"||o.isPresent?le(r,{ref:i}):null};on.displayName="Presence";function Pr(e){const[t,n]=O(),o=A(null),r=A(e),i=A("none"),c=e?"mounted":"unmounted",[s,a]=Sr(c,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return I(()=>{const u=_e(o.current);i.current=s==="mounted"?u:"none"},[s]),Q(()=>{const u=o.current,l=r.current;if(l!==e){const p=i.current,v=_e(u);e?a("MOUNT"):v==="none"||u?.display==="none"?a("UNMOUNT"):a(l&&p!==v?"ANIMATION_OUT":"UNMOUNT"),r.current=e}},[e,a]),Q(()=>{if(t){let u;const l=t.ownerDocument.defaultView??window,d=v=>{const g=_e(o.current).includes(CSS.escape(v.animationName));if(v.target===t&&g&&(a("ANIMATION_END"),!r.current)){const h=t.style.animationFillMode;t.style.animationFillMode="forwards",u=l.setTimeout(()=>{t.style.animationFillMode==="forwards"&&(t.style.animationFillMode=h)})}},p=v=>{v.target===t&&(i.current=_e(o.current))};return t.addEventListener("animationstart",p),t.addEventListener("animationcancel",d),t.addEventListener("animationend",d),()=>{l.clearTimeout(u),t.removeEventListener("animationstart",p),t.removeEventListener("animationcancel",d),t.removeEventListener("animationend",d)}}else a("ANIMATION_END")},[t,a]),{isPresent:["mounted","unmountSuspended"].includes(s),ref:M(u=>{o.current=u?getComputedStyle(u):null,n(u)},[])}}function _e(e){return e?.animationName||"none"}function Nr(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,n=t&&"isReactWarning"in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,"ref")?.get,n=t&&"isReactWarning"in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}var Ar=Wt[" useId ".trim().toString()]||(()=>{}),Er=0;function rn(e){const[t,n]=O(Ar());return Q(()=>{n(o=>o??String(Er++))},[e]),t?`radix-${t}`:""}var Pe="Collapsible",[Or,sn]=we(Pe),[zr,Ke]=Or(Pe),cn=z((e,t)=>{const{__scopeCollapsible:n,open:o,defaultOpen:r,disabled:i,onOpenChange:c,...s}=e,[a,u]=Se({prop:o,defaultProp:r??!1,onChange:c,caller:Pe});return f(zr,{scope:n,disabled:i,contentId:rn(),open:a,onOpenToggle:M(()=>u(l=>!l),[u]),children:f(G.div,{"data-state":Je(a),"data-disabled":i?"":void 0,...s,ref:t})})});cn.displayName=Pe;var an="CollapsibleTrigger",un=z((e,t)=>{const{__scopeCollapsible:n,...o}=e,r=Ke(an,n);return f(G.button,{type:"button","aria-controls":r.contentId,"aria-expanded":r.open||!1,"data-state":Je(r.open),"data-disabled":r.disabled?"":void 0,disabled:r.disabled,...o,ref:t,onClick:qe(e.onClick,r.onOpenToggle)})});un.displayName=an;var Ge="CollapsibleContent",ln=z((e,t)=>{const{forceMount:n,...o}=e,r=Ke(Ge,e.__scopeCollapsible);return f(on,{present:n||r.open,children:({present:i})=>f(kr,{...o,ref:t,present:i})})});ln.displayName=Ge;var kr=z((e,t)=>{const{__scopeCollapsible:n,present:o,children:r,...i}=e,c=Ke(Ge,n),[s,a]=O(o),u=A(null),l=V(t,u),d=A(0),p=d.current,v=A(0),m=v.current,g=c.open||s,h=A(g),y=A(void 0);return I(()=>{const b=requestAnimationFrame(()=>h.current=!1);return()=>cancelAnimationFrame(b)},[]),Q(()=>{const b=u.current;if(b){y.current=y.current||{transitionDuration:b.style.transitionDuration,animationName:b.style.animationName},b.style.transitionDuration="0s",b.style.animationName="none";const C=b.getBoundingClientRect();d.current=C.height,v.current=C.width,h.current||(b.style.transitionDuration=y.current.transitionDuration,b.style.animationName=y.current.animationName),a(o)}},[c.open,o]),f(G.div,{"data-state":Je(c.open),"data-disabled":c.disabled?"":void 0,id:c.contentId,hidden:!g,...i,ref:l,style:{"--radix-collapsible-content-height":p?`${p}px`:void 0,"--radix-collapsible-content-width":m?`${m}px`:void 0,...e.style},children:g&&r})});function Je(e){return e?"open":"closed"}var dn=cn,fn=un,_n=ln,Rr=_.createContext(void 0);function Ir(e){const t=ee(Rr);return e||t||"ltr"}var $="Accordion",$r=["Home","End","ArrowDown","ArrowUp","ArrowLeft","ArrowRight"],[Ye,xr,Tr]=gr($),[Ne]=we($,[Tr,sn]),Xe=sn(),pn=P.forwardRef((e,t)=>{const{type:n,...o}=e,r=o,i=o;return f(Ye.Provider,{scope:e.__scopeAccordion,children:n==="multiple"?f(Ur,{...i,ref:t}):f(jr,{...r,ref:t})})});pn.displayName=$;var[hn,Mr]=Ne($),[mn,Dr]=Ne($,{collapsible:!1}),jr=P.forwardRef((e,t)=>{const{value:n,defaultValue:o,onValueChange:r=()=>{},collapsible:i=!1,...c}=e,[s,a]=Se({prop:n,defaultProp:o??"",onChange:r,caller:$});return f(hn,{scope:e.__scopeAccordion,value:P.useMemo(()=>s?[s]:[],[s]),onItemOpen:a,onItemClose:P.useCallback(()=>i&&a(""),[i,a]),children:f(mn,{scope:e.__scopeAccordion,collapsible:i,children:f(vn,{...c,ref:t})})})}),Ur=P.forwardRef((e,t)=>{const{value:n,defaultValue:o,onValueChange:r=()=>{},...i}=e,[c,s]=Se({prop:n,defaultProp:o??[],onChange:r,caller:$}),a=P.useCallback(l=>s((d=[])=>[...d,l]),[s]),u=P.useCallback(l=>s((d=[])=>d.filter(p=>p!==l)),[s]);return f(hn,{scope:e.__scopeAccordion,value:c,onItemOpen:a,onItemClose:u,children:f(mn,{scope:e.__scopeAccordion,collapsible:!0,children:f(vn,{...i,ref:t})})})}),[Lr,Ae]=Ne($),vn=P.forwardRef((e,t)=>{const{__scopeAccordion:n,disabled:o,dir:r,orientation:i="vertical",...c}=e,s=P.useRef(null),a=V(s,t),u=xr(n),d=Ir(r)==="ltr",p=qe(e.onKeyDown,v=>{if(!$r.includes(v.key))return;const m=v.target,g=u().filter(ze=>!ze.ref.current?.disabled),h=g.findIndex(ze=>ze.ref.current===m),y=g.length;if(h===-1)return;v.preventDefault();let b=h;const C=0,k=y-1,J=()=>{b=h+1,b>k&&(b=C)},j=()=>{b=h-1,b<C&&(b=k)};switch(v.key){case"Home":b=C;break;case"End":b=k;break;case"ArrowRight":i==="horizontal"&&(d?J():j());break;case"ArrowDown":i==="vertical"&&J();break;case"ArrowLeft":i==="horizontal"&&(d?j():J());break;case"ArrowUp":i==="vertical"&&j();break}const Oe=b%y;g[Oe].ref.current?.focus()});return f(Lr,{scope:n,disabled:o,direction:r,orientation:i,children:f(Ye.Slot,{scope:n,children:f(G.div,{...c,"data-orientation":i,ref:a,onKeyDown:o?void 0:p})})})}),be="AccordionItem",[Zr,Qe]=Ne(be),gn=P.forwardRef((e,t)=>{const{__scopeAccordion:n,value:o,...r}=e,i=Ae(be,n),c=Mr(be,n),s=Xe(n),a=rn(),u=o&&c.value.includes(o)||!1,l=i.disabled||e.disabled;return f(Zr,{scope:n,open:u,disabled:l,triggerId:a,children:f(dn,{"data-orientation":i.orientation,"data-state":Sn(u),...s,...r,ref:t,disabled:l,open:u,onOpenChange:d=>{d?c.onItemOpen(o):c.onItemClose(o)}})})});gn.displayName=be;var yn="AccordionHeader",Hr=P.forwardRef((e,t)=>{const{__scopeAccordion:n,...o}=e,r=Ae($,n),i=Qe(yn,n);return f(G.h3,{"data-orientation":r.orientation,"data-state":Sn(i.open),"data-disabled":i.disabled?"":void 0,...o,ref:t})});Hr.displayName=yn;var Me="AccordionTrigger",bn=P.forwardRef((e,t)=>{const{__scopeAccordion:n,...o}=e,r=Ae($,n),i=Qe(Me,n),c=Dr(Me,n),s=Xe(n);return f(Ye.ItemSlot,{scope:n,children:f(fn,{"aria-disabled":i.open&&!c.collapsible||void 0,"data-orientation":r.orientation,id:i.triggerId,...s,...o,ref:t})})});bn.displayName=Me;var Cn="AccordionContent",wn=P.forwardRef((e,t)=>{const{__scopeAccordion:n,...o}=e,r=Ae($,n),i=Qe(Cn,n),c=Xe(n);return f(_n,{role:"region","aria-labelledby":i.triggerId,"data-orientation":r.orientation,...c,...o,ref:t,style:{"--radix-accordion-content-height":"var(--radix-collapsible-content-height)","--radix-accordion-content-width":"var(--radix-collapsible-content-width)",...e.style}})});wn.displayName=Cn;function Sn(e){return e?"open":"closed"}var Br=pn,Fr=gn,wt=bn,Vr=wn;const Pn=(...e)=>e.filter((t,n,o)=>!!t&&t.trim()!==""&&o.indexOf(t)===n).join(" ").trim();const Wr=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase();const qr=e=>e.replace(/^([A-Z])|[\s-_]+(\w)/g,(t,n,o)=>o?o.toUpperCase():n.toLowerCase());const St=e=>{const t=qr(e);return t.charAt(0).toUpperCase()+t.slice(1)};var Kr={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const Gr=e=>{for(const t in e)if(t.startsWith("aria-")||t==="role"||t==="title")return!0;return!1};const Jr=z(({color:e="currentColor",size:t=24,strokeWidth:n=2,absoluteStrokeWidth:o,className:r="",children:i,iconNode:c,...s},a)=>_.createElement("svg",{ref:a,...Kr,width:t,height:t,stroke:e,strokeWidth:o?Number(n)*24/Number(t):n,className:Pn("lucide",r),...!i&&!Gr(s)&&{"aria-hidden":"true"},...s},[...c.map(([u,l])=>_.createElement(u,l)),...Array.isArray(i)?i:[i]]));const Nn=(e,t)=>{const n=z(({className:o,...r},i)=>_.createElement(Jr,{ref:i,iconNode:t,className:Pn(`lucide-${Wr(St(e))}`,`lucide-${e}`,o),...r}));return n.displayName=St(e),n};const Yr=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],Xr=Nn("chevron-down",Yr);const Qr=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],ei=Nn("chevron-up",Qr);function ti(e){const t=A({value:e,previous:e});return E(()=>(t.current.value!==e&&(t.current.previous=t.current.value,t.current.value=e),t.current.previous),[e])}function ni(e){const[t,n]=O(void 0);return Q(()=>{if(e){n({width:e.offsetWidth,height:e.offsetHeight});const o=new ResizeObserver(r=>{if(!Array.isArray(r)||!r.length)return;const i=r[0];let c,s;if("borderBoxSize"in i){const a=i.borderBoxSize,u=Array.isArray(a)?a[0]:a;c=u.inlineSize,s=u.blockSize}else c=e.offsetWidth,s=e.offsetHeight;n({width:c,height:s})});return o.observe(e,{box:"border-box"}),()=>o.unobserve(e)}else n(void 0)},[e]),t}var Ee="Switch",[oi]=we(Ee),[ri,ii]=oi(Ee),An=z((e,t)=>{const{__scopeSwitch:n,name:o,checked:r,defaultChecked:i,required:c,disabled:s,value:a="on",onCheckedChange:u,form:l,...d}=e,[p,v]=O(null),m=V(t,C=>v(C)),g=A(!1),h=p?l||!!p.closest("form"):!0,[y,b]=Se({prop:r,defaultProp:i??!1,onChange:u,caller:Ee});return f(ri,{scope:n,checked:y,disabled:s,children:[f(G.button,{type:"button",role:"switch","aria-checked":y,"aria-required":c,"data-state":kn(y),"data-disabled":s?"":void 0,disabled:s,value:a,...d,ref:m,onClick:qe(e.onClick,C=>{b(k=>!k),h&&(g.current=C.isPropagationStopped(),g.current||C.stopPropagation())})}),h&&f(zn,{control:p,bubbles:!g.current,name:o,value:a,checked:y,required:c,disabled:s,form:l,style:{transform:"translateX(-100%)"}})]})});An.displayName=Ee;var En="SwitchThumb",On=z((e,t)=>{const{__scopeSwitch:n,...o}=e,r=ii(En,n);return f(G.span,{"data-state":kn(r.checked),"data-disabled":r.disabled?"":void 0,...o,ref:t})});On.displayName=En;var si="SwitchBubbleInput",zn=z(({__scopeSwitch:e,control:t,checked:n,bubbles:o=!0,...r},i)=>{const c=A(null),s=V(c,i),a=ti(n),u=ni(t);return I(()=>{const l=c.current;if(!l)return;const d=window.HTMLInputElement.prototype,v=Object.getOwnPropertyDescriptor(d,"checked").set;if(a!==n&&v){const m=new Event("click",{bubbles:o});v.call(l,n),l.dispatchEvent(m)}},[a,n,o]),f("input",{type:"checkbox","aria-hidden":!0,defaultChecked:n,...r,tabIndex:-1,ref:s,style:{...r.style,...u,position:"absolute",pointerEvents:"none",opacity:0,margin:0}})});zn.displayName=si;function kn(e){return e?"checked":"unchecked"}var ci=An,ai=On;const ui="_root_dibqz_1",li="_thumb_dibqz_38",pe={root:ui,switch:"_switch_dibqz_8",thumb:li},di=({label:e,id:t,...n})=>f("div",{className:pe.root,children:[e&&f(F,{className:pe.label,as:"label",htmlFor:t,children:e}),f(ci,{className:pe.switch,...n,children:f(ai,{className:pe.thumb})})]}),fi=sr(B(),ae()),Rn=_.createContext(null),_i=({children:e,items:t,localStorageKey:n})=>{function o(m){const g=localStorage.getItem(m);if(!g)return null;const{success:h,data:y}=fi.safeParse(JSON.parse(g));return h?y:null}const r=E(()=>Object.fromEntries(t.map(m=>[m.value,m.defaultSelected??!1])),[t]),[i,c]=O(o(n)??r),[s,a]=O(o(n));function u(m,g){const h=i?{...i,[m]:g}:{[m]:g};c(h)}I(()=>{let m=[];s!==null&&(m=Object.entries(s).filter(([h,y])=>y).map(([h])=>h));const g=t.filter(h=>m.includes(h.value));for(const h of t){const y=document.head.querySelector(`#${h.value}`);y&&y.remove()}for(const h of g){const y=document.createElement("script");if(y.id=h.value,!h.script){h.required||console.warn("CookieBanner: Missing script for",h.value);continue}const{success:b,data:C}=dr.safeParse(h.script);if(!b){console.error("CookieBanner: Invalid script definition for",h.value);continue}switch(y.type=C.type??"text/javascript",y.async=C.async??!1,y.defer=C.defer??!1,C.variant){case"inline":y.textContent=C.content;break;case"remote":y.src=C.src,y.crossOrigin=C.crossorigin??null,y.integrity=C.integrity??"";break}document.head.appendChild(y)}},[s,t]);function l(m){a(m),localStorage.setItem(n,JSON.stringify(m))}const d=M(()=>{const m=Object.fromEntries(t.map(g=>[g.value,!1]));c(m),l(m)},[t]),p=M(()=>{l(i)},[i]),v=E(()=>{if(!s)return!1;const m=Object.keys(s);return t.map(h=>h.value).every(h=>m.includes(h))},[s,t]);return f(Rn.Provider,{value:{selection:i,toggleSelection:u,onDeclineAll:d,onSave:p,selectionTaken:v},children:e})};function In(){const e=ee(Rn);if(!e)throw new Error("useSelection must be used within a SelectionProvider");return e}const pi=({value:e,label:t,sublabel:n,required:o=!1,description:r,openItem:i})=>{const{toggleSelection:c,selection:s}=In(),a=E(()=>s?.[e]??!1,[s,e]);I(()=>{c(e,a)},[e,a]);const u=E(()=>o?!0:a,[o,a]),l=E(()=>p=>o?()=>{}:c(e,p),[o,c,e]),d=E(()=>o,[o]);return f(Fr,{value:e,className:H.root,children:[f("div",{className:H.header,children:[f(wt,{asChild:!0,children:f("div",{className:H.label,children:[f(F,{weight:"bold",children:t}),n&&f(F,{size:"caption",color:"muted",children:n})]})}),f("div",{className:H.actions,children:[f(di,{checked:u,onCheckedChange:l,disabled:d}),f(wt,{asChild:!0,children:f(Xr,{size:16,className:me({[H.chevron]:!0,[H.open]:i===e})})})]})]}),r&&f(Vr,{className:H.description,children:f(F,{size:"caption",dangerouslySetInnerHTML:{__html:r}})})]})},hi=({noTarget:e=!0,heading:t="We use cookies.",subheading:n="Please define your selection below.",selectLabel:o="Select",hideLabel:r="Hide",saveLabel:i="Save selection",declineLabel:c="Decline all",defaultSettingsOpen:s=!0,privacyPolicy:a,items:u})=>{const{onSave:l,onDeclineAll:d,selectionTaken:p}=In(),[v,m]=O(void 0),[g,h]=O(s);return f("div",{className:me({[R.root]:!0,[R.noTarget]:e,[R.open]:!p}),children:f(dn,{open:g,onOpenChange:h,className:R.collapsible,children:[f("div",{className:R.header,children:[f("div",{className:R.heading,children:[f(F,{weight:"bold",children:t}),f(F,{size:"caption",color:"muted",children:n})]}),f(fn,{asChild:!0,children:f(Ie,{variant:"ghost",children:[g?r:o," ",f(ei,{size:12,className:me({[R.chevron]:!0,[R.open]:g})})]})})]}),f(_n,{className:me({[R.settings]:!0}),children:f(Br,{type:"single",collapsible:!0,value:v,onValueChange:m,children:u.map(y=>f(pi,{...y,openItem:v},y.value))})}),f("div",{className:R.footer,children:[f("div",{className:R.legal,children:a&&f(F,{size:"caption",children:f("a",{href:a.url,target:"_blank",children:a.label})})}),f("div",{className:R.actions,children:[f(Ie,{variant:"neutral",onClick:()=>d(),children:c}),f(Ie,{variant:"brand",onClick:()=>l(),children:i})]})]})]})})},mi=({localStorageKey:e="cb-selection",items:t,...n})=>{const o=E(()=>t.filter(r=>!r.required).map(r=>({value:r.value,script:r.script,defaultSelected:r.defaultSelected,required:r.required})),[t]);return f(_i,{items:o,localStorageKey:e,children:f(hi,{items:t,...n})})};function vi(e,t){const n=t===void 0;let o;if(typeof t=="string"){const r=document.querySelector(t);if(!r)throw new Error(`Element with selector "${t}" not found`);o=r}else o=t;_.render(f(mi,{noTarget:n,...e}),o??document.body)}exports.mountBanner=vi;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const h=require("preact");var Jr=0;function p(e,t,n,r,o,i){t||(t={});var s,c,a=t;if("ref"in a)for(c in a={},t)c=="ref"?s=t[c]:a[c]=t[c];var u={type:e,props:a,key:n,ref:s,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:--Jr,__i:-1,__u:0,__source:o,__self:i};if(typeof e=="function"&&(s=e.defaultProps))for(c in s)a[c]===void 0&&(a[c]=s[c]);return h.options.vnode&&h.options.vnode(u),u}var V,O,tt,zt,de=0,bn=[],R=h.options,$t=R.__b,Lt=R.__r,Ft=R.diffed,jt=R.__c,Ut=R.unmount,Wt=R.__;function re(e,t){R.__h&&R.__h(O,e,de||t),de=0;var n=O.__H||(O.__H={__:[],__h:[]});return e>=n.__.length&&n.__.push({}),n.__[e]}function I(e){return de=1,Pe(Cn,e)}function Pe(e,t,n){var r=re(V++,2);if(r.t=e,!r.__c&&(r.__=[n?n(t):Cn(void 0,t),function(c){var a=r.__N?r.__N[0]:r.__[0],u=r.t(a,c);a!==u&&(r.__N=[u,r.__[1]],r.__c.setState({}))}],r.__c=O,!O.__f)){var o=function(c,a,u){if(!r.__c.__H)return!0;var l=r.__c.__H.__.filter(function(_){return _.__c});if(l.every(function(_){return!_.__N}))return!i||i.call(this,c,a,u);var d=r.__c.props!==c;return l.some(function(_){if(_.__N){var g=_.__[0];_.__=_.__N,_.__N=void 0,g!==_.__[0]&&(d=!0)}}),i&&i.call(this,c,a,u)||d};O.__f=!0;var i=O.shouldComponentUpdate,s=O.componentWillUpdate;O.componentWillUpdate=function(c,a,u){if(this.__e){var l=i;i=void 0,o(c,a,u),i=l}s&&s.call(this,c,a,u)},O.shouldComponentUpdate=o}return r.__N||r.__}function P(e,t){var n=re(V++,3);!R.__s&&yt(n.__H,t)&&(n.__=e,n.u=t,O.__H.__h.push(n))}function X(e,t){var n=re(V++,4);!R.__s&&yt(n.__H,t)&&(n.__=e,n.u=t,O.__h.push(n))}function E(e){return de=5,D(function(){return{current:e}},[])}function ht(e,t,n){de=6,X(function(){if(typeof e=="function"){var r=e(t());return function(){e(null),r&&typeof r=="function"&&r()}}if(e)return e.current=t(),function(){return e.current=null}},n==null?n:n.concat(e))}function D(e,t){var n=re(V++,7);return yt(n.__H,t)&&(n.__=e(),n.__H=t,n.__h=e),n.__}function M(e,t){return de=8,D(function(){return e},t)}function q(e){var t=O.context[e.__c],n=re(V++,9);return n.c=e,t?(n.__==null&&(n.__=!0,t.sub(O)),t.props.value):e.__}function mt(e,t){R.useDebugValue&&R.useDebugValue(t?t(e):e)}function Qr(e){var t=re(V++,10),n=I();return t.__=e,O.componentDidCatch||(O.componentDidCatch=function(r,o){t.__&&t.__(r,o),n[1](r)}),[n[0],function(){n[1](void 0)}]}function gt(){var e=re(V++,11);if(!e.__){for(var t=O.__v;t!==null&&!t.__m&&t.__!==null;)t=t.__;var n=t.__m||(t.__m=[0,0]);e.__="P"+n[0]+"-"+n[1]++}return e.__}function eo(){for(var e;e=bn.shift();){var t=e.__H;if(e.__P&&t)try{t.__h.some($e),t.__h.some(dt),t.__h=[]}catch(n){t.__h=[],R.__e(n,e.__v)}}}R.__b=function(e){O=null,$t&&$t(e)},R.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),Wt&&Wt(e,t)},R.__r=function(e){Lt&&Lt(e),V=0;var t=(O=e.__c).__H;t&&(tt===O?(t.__h=[],O.__h=[],t.__.some(function(n){n.__N&&(n.__=n.__N),n.u=n.__N=void 0})):(t.__h.some($e),t.__h.some(dt),t.__h=[],V=0)),tt=O},R.diffed=function(e){Ft&&Ft(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(bn.push(t)!==1&&zt===R.requestAnimationFrame||((zt=R.requestAnimationFrame)||to)(eo)),t.__H.__.some(function(n){n.u&&(n.__H=n.u),n.u=void 0})),tt=O=null},R.__c=function(e,t){t.some(function(n){try{n.__h.some($e),n.__h=n.__h.filter(function(r){return!r.__||dt(r)})}catch(r){t.some(function(o){o.__h&&(o.__h=[])}),t=[],R.__e(r,n.__v)}}),jt&&jt(e,t)},R.unmount=function(e){Ut&&Ut(e);var t,n=e.__c;n&&n.__H&&(n.__H.__.some(function(r){try{$e(r)}catch(o){t=o}}),n.__H=void 0,t&&R.__e(t,n.__v))};var Bt=typeof requestAnimationFrame=="function";function to(e){var t,n=function(){clearTimeout(r),Bt&&cancelAnimationFrame(t),setTimeout(e)},r=setTimeout(n,35);Bt&&(t=requestAnimationFrame(n))}function $e(e){var t=O,n=e.__c;typeof n=="function"&&(e.__c=void 0,n()),O=t}function dt(e){var t=O;e.__c=e.__(),O=t}function yt(e,t){return!e||e.length!==t.length||t.some(function(n,r){return n!==e[r]})}function Cn(e,t){return typeof t=="function"?t(e):t}function wn(e,t){for(var n in t)e[n]=t[n];return e}function ft(e,t){for(var n in e)if(n!=="__source"&&!(n in t))return!0;for(var r in t)if(r!=="__source"&&e[r]!==t[r])return!0;return!1}function bt(e,t){var n=t(),r=I({t:{__:n,u:t}}),o=r[0].t,i=r[1];return X(function(){o.__=n,o.u=t,nt(o)&&i({t:o})},[e,n,t]),P(function(){return nt(o)&&i({t:o}),e(function(){nt(o)&&i({t:o})})},[e]),n}function nt(e){try{return!((t=e.__)===(n=e.u())&&(t!==0||1/t==1/n)||t!=t&&n!=n)}catch{return!0}var t,n}function Ct(e){e()}function wt(e){return e}function Et(){return[!1,Ct]}var St=X;function Ue(e,t){this.props=e,this.context=t}function En(e,t){function n(o){var i=this.props.ref,s=i==o.ref;return!s&&i&&(i.call?i(null):i.current=null),t?!t(this.props,o)||!s:ft(this.props,o)}function r(o){return this.shouldComponentUpdate=n,h.createElement(e,o)}return r.displayName="Memo("+(e.displayName||e.name)+")",r.prototype.isReactComponent=!0,r.__f=!0,r.type=e,r}(Ue.prototype=new h.Component).isPureReactComponent=!0,Ue.prototype.shouldComponentUpdate=function(e,t){return ft(this.props,e)||ft(this.state,t)};var Ht=h.options.__b;h.options.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),Ht&&Ht(e)};var no=typeof Symbol<"u"&&Symbol.for&&Symbol.for("react.forward_ref")||3911;function N(e){function t(n){var r=wn({},n);return delete r.ref,e(r,n.ref||null)}return t.$$typeof=no,t.render=e,t.prototype.isReactComponent=t.__f=!0,t.displayName="ForwardRef("+(e.displayName||e.name)+")",t}var Zt=function(e,t){return e==null?null:h.toChildArray(h.toChildArray(e).map(t))},Z={map:Zt,forEach:Zt,count:function(e){return e?h.toChildArray(e).length:0},only:function(e){var t=h.toChildArray(e);if(t.length!==1)throw"Children.only";return t[0]},toArray:h.toChildArray},ro=h.options.__e;h.options.__e=function(e,t,n,r){if(e.then){for(var o,i=t;i=i.__;)if((o=i.__c)&&o.__c)return t.__e==null&&(t.__e=n.__e,t.__k=n.__k),o.__c(e,t)}ro(e,t,n,r)};var Vt=h.options.unmount;function Sn(e,t,n){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach(function(r){typeof r.__c=="function"&&r.__c()}),e.__c.__H=null),(e=wn({},e)).__c!=null&&(e.__c.__P===n&&(e.__c.__P=t),e.__c.__e=!0,e.__c=null),e.__k=e.__k&&e.__k.map(function(r){return Sn(r,t,n)})),e}function Pn(e,t,n){return e&&n&&(e.__v=null,e.__k=e.__k&&e.__k.map(function(r){return Pn(r,t,n)}),e.__c&&e.__c.__P===t&&(e.__e&&n.appendChild(e.__e),e.__c.__e=!0,e.__c.__P=n)),e}function be(){this.__u=0,this.o=null,this.__b=null}function Nn(e){if(!e.__)return null;var t=e.__.__c;return t&&t.__a&&t.__a(e)}function On(e){var t,n,r,o=null;function i(s){if(t||(t=e()).then(function(c){c&&(o=c.default||c),r=!0},function(c){n=c,r=!0}),n)throw n;if(!r)throw t;return o?h.createElement(o,s):null}return i.displayName="Lazy",i.__f=!0,i}function ue(){this.i=null,this.l=null}h.options.unmount=function(e){var t=e.__c;t&&(t.__z=!0),t&&t.__R&&t.__R(),t&&32&e.__u&&(e.type=null),Vt&&Vt(e)},(be.prototype=new h.Component).__c=function(e,t){var n=t.__c,r=this;r.o==null&&(r.o=[]),r.o.push(n);var o=Nn(r.__v),i=!1,s=function(){i||r.__z||(i=!0,n.__R=null,o?o(a):a())};n.__R=s;var c=n.__P;n.__P=null;var a=function(){if(!--r.__u){if(r.state.__a){var u=r.state.__a;r.__v.__k[0]=Pn(u,u.__c.__P,u.__c.__O)}var l;for(r.setState({__a:r.__b=null});l=r.o.pop();)l.__P=c,l.forceUpdate()}};r.__u++||32&t.__u||r.setState({__a:r.__b=r.__v.__k[0]}),e.then(s,s)},be.prototype.componentWillUnmount=function(){this.o=[]},be.prototype.render=function(e,t){if(this.__b){if(this.__v.__k){var n=document.createElement("div"),r=this.__v.__k[0].__c;this.__v.__k[0]=Sn(this.__b,n,r.__O=r.__P)}this.__b=null}var o=t.__a&&h.createElement(h.Fragment,null,e.fallback);return o&&(o.__u&=-33),[h.createElement(h.Fragment,null,t.__a?null:e.children),o]};var Kt=function(e,t,n){if(++n[1]===n[0]&&e.l.delete(t),e.props.revealOrder&&(e.props.revealOrder[0]!=="t"||!e.l.size))for(n=e.i;n;){for(;n.length>3;)n.pop()();if(n[1]<n[0])break;e.i=n=n[2]}};function oo(e){return this.getChildContext=function(){return e.context},e.children}function io(e){var t=this,n=e.h;if(t.componentWillUnmount=function(){h.render(null,t.v),t.v=null,t.h=null},t.h&&t.h!==n&&t.componentWillUnmount(),!t.v){for(var r=t.__v;r!==null&&!r.__m&&r.__!==null;)r=r.__;t.h=n,t.v={nodeType:1,parentNode:n,childNodes:[],__k:{__m:r.__m},contains:function(){return!0},namespaceURI:n.namespaceURI,insertBefore:function(o,i){this.childNodes.push(o),t.h.insertBefore(o,i)},removeChild:function(o){this.childNodes.splice(this.childNodes.indexOf(o)>>>1,1),t.h.removeChild(o)}}}h.render(h.createElement(oo,{context:t.context},e.__v),t.v)}function An(e,t){var n=h.createElement(io,{__v:e,h:t});return n.containerInfo=t,n}(ue.prototype=new h.Component).__a=function(e){var t=this,n=Nn(t.__v),r=t.l.get(e);return r[0]++,function(o){var i=function(){t.props.revealOrder?(r.push(o),Kt(t,e,r)):o()};n?n(i):i()}},ue.prototype.render=function(e){this.i=null,this.l=new Map;var t=h.toChildArray(e.children);e.revealOrder&&e.revealOrder[0]==="b"&&t.reverse();for(var n=t.length;n--;)this.l.set(t[n],this.i=[1,0,this.i]);return e.children},ue.prototype.componentDidUpdate=ue.prototype.componentDidMount=function(){var e=this;this.l.forEach(function(t,n){Kt(e,n,t)})};var Rn=typeof Symbol<"u"&&Symbol.for&&Symbol.for("react.element")||60103,co=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,so=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,ao=/[A-Z0-9]/g,uo=typeof document<"u",lo=function(e){return(typeof Symbol<"u"&&typeof Symbol()=="symbol"?/fil|che|rad/:/fil|che|ra/).test(e)};function In(e,t,n){return t.__k==null&&(t.textContent=""),h.render(e,t),typeof n=="function"&&n(),e?e.__c:null}function Tn(e,t,n){return h.hydrate(e,t),typeof n=="function"&&n(),e?e.__c:null}h.Component.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(e){Object.defineProperty(h.Component.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(t){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:t})}})});var qt=h.options.event;function fo(){}function po(){return this.cancelBubble}function _o(){return this.defaultPrevented}h.options.event=function(e){return qt&&(e=qt(e)),e.persist=fo,e.isPropagationStopped=po,e.isDefaultPrevented=_o,e.nativeEvent=e};var Pt,vo={enumerable:!1,configurable:!0,get:function(){return this.class}},Gt=h.options.vnode;h.options.vnode=function(e){typeof e.type=="string"&&(function(t){var n=t.props,r=t.type,o={},i=r.indexOf("-")===-1;for(var s in n){var c=n[s];if(!(s==="value"&&"defaultValue"in n&&c==null||uo&&s==="children"&&r==="noscript"||s==="class"||s==="className")){var a=s.toLowerCase();s==="defaultValue"&&"value"in n&&n.value==null?s="value":s==="download"&&c===!0?c="":a==="translate"&&c==="no"?c=!1:a[0]==="o"&&a[1]==="n"?a==="ondoubleclick"?s="ondblclick":a!=="onchange"||r!=="input"&&r!=="textarea"||lo(n.type)?a==="onfocus"?s="onfocusin":a==="onblur"?s="onfocusout":so.test(s)&&(s=a):a=s="oninput":i&&co.test(s)?s=s.replace(ao,"-$&").toLowerCase():c===null&&(c=void 0),a==="oninput"&&o[s=a]&&(s="oninputCapture"),o[s]=c}}r=="select"&&o.multiple&&Array.isArray(o.value)&&(o.value=h.toChildArray(n.children).forEach(function(u){u.props.selected=o.value.indexOf(u.props.value)!=-1})),r=="select"&&o.defaultValue!=null&&(o.value=h.toChildArray(n.children).forEach(function(u){u.props.selected=o.multiple?o.defaultValue.indexOf(u.props.value)!=-1:o.defaultValue==u.props.value})),n.class&&!n.className?(o.class=n.class,Object.defineProperty(o,"className",vo)):n.className&&(o.class=o.className=n.className),t.props=o})(e),e.$$typeof=Rn,Gt&&Gt(e)};var Yt=h.options.__r;h.options.__r=function(e){Yt&&Yt(e),Pt=e.__c};var Xt=h.options.diffed;h.options.diffed=function(e){Xt&&Xt(e);var t=e.props,n=e.__e;n!=null&&e.type==="textarea"&&"value"in t&&t.value!==n.value&&(n.value=t.value==null?"":t.value),Pt=null};var kn={ReactCurrentDispatcher:{current:{readContext:function(e){return Pt.__n[e.__c].props.value},useCallback:M,useContext:q,useDebugValue:mt,useDeferredValue:wt,useEffect:P,useId:gt,useImperativeHandle:ht,useInsertionEffect:St,useLayoutEffect:X,useMemo:D,useReducer:Pe,useRef:E,useState:I,useSyncExternalStore:bt,useTransition:Et}}},ho="18.3.1";function Dn(e){return h.createElement.bind(null,e)}function K(e){return!!e&&e.$$typeof===Rn}function xn(e){return K(e)&&e.type===h.Fragment}function Mn(e){return!!e&&typeof e.displayName=="string"&&e.displayName.startsWith("Memo(")}function pe(e){return K(e)?h.cloneElement.apply(null,arguments):e}function zn(e){return!!e.__k&&(h.render(null,e),!0)}function $n(e){return e&&(e.base||e.nodeType===1&&e)||null}var Ln=function(e,t){return e(t)},Nt=function(e,t){return e(t)},Fn=h.Fragment,jn=K,T={useState:I,useId:gt,useReducer:Pe,useEffect:P,useLayoutEffect:X,useInsertionEffect:St,useTransition:Et,useDeferredValue:wt,useSyncExternalStore:bt,startTransition:Ct,useRef:E,useImperativeHandle:ht,useMemo:D,useCallback:M,useContext:q,useDebugValue:mt,version:"18.3.1",Children:Z,render:In,hydrate:Tn,unmountComponentAtNode:zn,createPortal:An,createElement:h.createElement,createContext:h.createContext,createFactory:Dn,cloneElement:pe,createRef:h.createRef,Fragment:h.Fragment,isValidElement:K,isElement:jn,isFragment:xn,isMemo:Mn,findDOMNode:$n,Component:h.Component,PureComponent:Ue,memo:En,forwardRef:N,flushSync:Nt,unstable_batchedUpdates:Ln,StrictMode:Fn,Suspense:be,SuspenseList:ue,lazy:On,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:kn};const Un=Object.freeze(Object.defineProperty({__proto__:null,Children:Z,Component:h.Component,Fragment:h.Fragment,PureComponent:Ue,StrictMode:Fn,Suspense:be,SuspenseList:ue,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:kn,cloneElement:pe,createContext:h.createContext,createElement:h.createElement,createFactory:Dn,createPortal:An,createRef:h.createRef,default:T,findDOMNode:$n,flushSync:Nt,forwardRef:N,hydrate:Tn,isElement:jn,isFragment:xn,isMemo:Mn,isValidElement:K,lazy:On,memo:En,render:In,startTransition:Ct,unmountComponentAtNode:zn,unstable_batchedUpdates:Ln,useCallback:M,useContext:q,useDebugValue:mt,useDeferredValue:wt,useEffect:P,useErrorBoundary:Qr,useId:gt,useImperativeHandle:ht,useInsertionEffect:St,useLayoutEffect:X,useMemo:D,useReducer:Pe,useRef:E,useState:I,useSyncExternalStore:bt,useTransition:Et,version:ho},Symbol.toStringTag,{value:"Module"}));function Wn(...e){return e.filter(Boolean).join(" ")}function Le(e){return Object.entries(e).filter(([,t])=>t).map(([t])=>t).join(" ")}const mo="_root_hw69b_1",go="_neutral_hw69b_17",yo="_brand_hw69b_30",bo="_ghost_hw69b_43",Jt={root:mo,neutral:go,brand:yo,ghost:bo},rt=({variant:e="neutral",...t})=>p("button",{className:Wn(Jt.root,Jt[e]),...t}),Co="_root_14l5h_1",wo="_muted_14l5h_4",Eo="_body_14l5h_8",So="_normal_14l5h_14",Po="_bold_14l5h_18",No="_caption_14l5h_23",Re={root:Co,muted:wo,body:Eo,normal:So,bold:Po,caption:No},te=({as:e="span",size:t="body",weight:n="normal",color:r="default",...o})=>p(e??"span",{className:Wn(Re.root,Re[t],Re[n],Re[r]),...o}),Oo="_root_2wcp0_53",Ao="_open_2wcp0_66",Ro="_noTarget_2wcp0_72",Io="_collapsible_2wcp0_81",To="_header_2wcp0_84",ko="_heading_2wcp0_91",Do="_chevron_2wcp0_97",xo="_settings_2wcp0_108",Mo="_footer_2wcp0_122",zo="_legal_2wcp0_129",$o="_actions_2wcp0_132",F={root:Oo,open:Ao,noTarget:Ro,collapsible:Io,header:To,heading:ko,chevron:Do,settings:xo,footer:Mo,legal:zo,actions:$o},Lo="_root_mqtha_19",Fo="_header_mqtha_24",jo="_label_mqtha_33",Uo="_actions_mqtha_39",Wo="_chevron_mqtha_45",Bo="_open_mqtha_51",Ho="_description_mqtha_58",Q={root:Lo,header:Fo,label:jo,actions:Uo,chevron:Wo,open:Bo,description:Ho};function x(e,t,n){function r(c,a){if(c._zod||Object.defineProperty(c,"_zod",{value:{def:a,constr:s,traits:new Set},enumerable:!1}),c._zod.traits.has(e))return;c._zod.traits.add(e),t(c,a);const u=s.prototype,l=Object.keys(u);for(let d=0;d<l.length;d++){const _=l[d];_ in c||(c[_]=u[_].bind(c))}}const o=n?.Parent??Object;class i extends o{}Object.defineProperty(i,"name",{value:e});function s(c){var a;const u=n?.Parent?new i:this;r(u,c),(a=u._zod).deferred??(a.deferred=[]);for(const l of u._zod.deferred)l();return u}return Object.defineProperty(s,"init",{value:r}),Object.defineProperty(s,Symbol.hasInstance,{value:c=>n?.Parent&&c instanceof n.Parent?!0:c?._zod?.traits?.has(e)}),Object.defineProperty(s,"name",{value:e}),s}class Ce extends Error{constructor(){super("Encountered Promise during synchronous parse. Use .parseAsync() instead.")}}const Zo={};function _e(e){return Zo}function Vo(e,t){return typeof t=="bigint"?t.toString():t}function Bn(e){return{get value(){{const t=e();return Object.defineProperty(this,"value",{value:t}),t}}}}function Hn(e){const t=e.startsWith("^")?1:0,n=e.endsWith("$")?e.length-1:e.length;return e.slice(t,n)}const Qt=Symbol("evaluating");function B(e,t,n){let r;Object.defineProperty(e,t,{get(){if(r!==Qt)return r===void 0&&(r=Qt,r=n()),r},set(o){Object.defineProperty(e,t,{value:o})},configurable:!0})}const Zn="captureStackTrace"in Error?Error.captureStackTrace:(...e)=>{};function We(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)}function Ko(e){if(We(e)===!1)return!1;const t=e.constructor;if(t===void 0||typeof t!="function")return!0;const n=t.prototype;return!(We(n)===!1||Object.prototype.hasOwnProperty.call(n,"isPrototypeOf")===!1)}function en(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function qo(e,t,n){const r=new e._zod.constr(t??e._zod.def);return(!t||n?.parent)&&(r._zod.parent=e),r}function ve(e){return{}}function Go(e){return Object.keys(e).filter(t=>e[t]._zod.optin==="optional"&&e[t]._zod.optout==="optional")}function ge(e,t=0){if(e.aborted===!0)return!0;for(let n=t;n<e.issues.length;n++)if(e.issues[n]?.continue!==!0)return!0;return!1}function ye(e,t){return t.map(n=>{var r;return(r=n).path??(r.path=[]),n.path.unshift(e),n})}function Ie(e){return typeof e=="string"?e:e?.message}function he(e,t,n){const r={...e,path:e.path??[]};if(!e.message){const o=Ie(e.inst?._zod.def?.error?.(e))??Ie(t?.error?.(e))??Ie(n.customError?.(e))??Ie(n.localeError?.(e))??"Invalid input";r.message=o}return delete r.inst,delete r.continue,t?.reportInput||delete r.input,r}const Vn=(e,t)=>{e.name="$ZodError",Object.defineProperty(e,"_zod",{value:e._zod,enumerable:!1}),Object.defineProperty(e,"issues",{value:t,enumerable:!1}),e.message=JSON.stringify(t,Vo,2),Object.defineProperty(e,"toString",{value:()=>e.message,enumerable:!1})},Yo=x("$ZodError",Vn),Ke=x("$ZodError",Vn,{Parent:Error}),Xo=e=>(t,n,r,o)=>{const i=r?Object.assign(r,{async:!1}):{async:!1},s=t._zod.run({value:n,issues:[]},i);if(s instanceof Promise)throw new Ce;if(s.issues.length){const c=new(o?.Err??e)(s.issues.map(a=>he(a,i,_e())));throw Zn(c,o?.callee),c}return s.value},Jo=Xo(Ke),Qo=e=>async(t,n,r,o)=>{const i=r?Object.assign(r,{async:!0}):{async:!0};let s=t._zod.run({value:n,issues:[]},i);if(s instanceof Promise&&(s=await s),s.issues.length){const c=new(o?.Err??e)(s.issues.map(a=>he(a,i,_e())));throw Zn(c,o?.callee),c}return s.value},ei=Qo(Ke),ti=e=>(t,n,r)=>{const o=r?{...r,async:!1}:{async:!1},i=t._zod.run({value:n,issues:[]},o);if(i instanceof Promise)throw new Ce;return i.issues.length?{success:!1,error:new(e??Yo)(i.issues.map(s=>he(s,o,_e())))}:{success:!0,data:i.value}},Kn=ti(Ke),ni=e=>async(t,n,r)=>{const o=r?Object.assign(r,{async:!0}):{async:!0};let i=t._zod.run({value:n,issues:[]},o);return i instanceof Promise&&(i=await i),i.issues.length?{success:!1,error:new e(i.issues.map(s=>he(s,o,_e())))}:{success:!0,data:i.value}},qn=ni(Ke),ri=e=>{const t=e?`[\\s\\S]{${e?.minimum??0},${e?.maximum??""}}`:"[\\s\\S]*";return new RegExp(`^${t}$`)},oi=/^-?\d+(?:\.\d+)?$/,ii=/^(?:true|false)$/i,ci={major:4,minor:3,patch:6},J=x("$ZodType",(e,t)=>{var n;e??(e={}),e._zod.def=t,e._zod.bag=e._zod.bag||{},e._zod.version=ci;const r=[...e._zod.def.checks??[]];e._zod.traits.has("$ZodCheck")&&r.unshift(e);for(const o of r)for(const i of o._zod.onattach)i(e);if(r.length===0)(n=e._zod).deferred??(n.deferred=[]),e._zod.deferred?.push(()=>{e._zod.run=e._zod.parse});else{const o=(s,c,a)=>{let u=ge(s),l;for(const d of c){if(d._zod.def.when){if(!d._zod.def.when(s))continue}else if(u)continue;const _=s.issues.length,g=d._zod.check(s);if(g instanceof Promise&&a?.async===!1)throw new Ce;if(l||g instanceof Promise)l=(l??Promise.resolve()).then(async()=>{await g,s.issues.length!==_&&(u||(u=ge(s,_)))});else{if(s.issues.length===_)continue;u||(u=ge(s,_))}}return l?l.then(()=>s):s},i=(s,c,a)=>{if(ge(s))return s.aborted=!0,s;const u=o(c,r,a);if(u instanceof Promise){if(a.async===!1)throw new Ce;return u.then(l=>e._zod.parse(l,a))}return e._zod.parse(u,a)};e._zod.run=(s,c)=>{if(c.skipChecks)return e._zod.parse(s,c);if(c.direction==="backward"){const u=e._zod.parse({value:s.value,issues:[]},{...c,skipChecks:!0});return u instanceof Promise?u.then(l=>i(l,s,c)):i(u,s,c)}const a=e._zod.parse(s,c);if(a instanceof Promise){if(c.async===!1)throw new Ce;return a.then(u=>o(u,r,c))}return o(a,r,c)}}B(e,"~standard",()=>({validate:o=>{try{const i=Kn(e,o);return i.success?{value:i.data}:{issues:i.error?.issues}}catch{return qn(e,o).then(s=>s.success?{value:s.data}:{issues:s.error?.issues})}},vendor:"zod",version:1}))}),si=x("$ZodString",(e,t)=>{J.init(e,t),e._zod.pattern=[...e?._zod.bag?.patterns??[]].pop()??ri(e._zod.bag),e._zod.parse=(n,r)=>{if(t.coerce)try{n.value=String(n.value)}catch{}return typeof n.value=="string"||n.issues.push({expected:"string",code:"invalid_type",input:n.value,inst:e}),n}}),ai=x("$ZodBoolean",(e,t)=>{J.init(e,t),e._zod.pattern=ii,e._zod.parse=(n,r)=>{if(t.coerce)try{n.value=!!n.value}catch{}const o=n.value;return typeof o=="boolean"||n.issues.push({expected:"boolean",code:"invalid_type",input:o,inst:e}),n}});function Be(e,t,n,r,o){if(e.issues.length){if(o&&!(n in r))return;t.issues.push(...ye(n,e.issues))}e.value===void 0?n in r&&(t.value[n]=void 0):t.value[n]=e.value}function ui(e){const t=Object.keys(e.shape);for(const r of t)if(!e.shape?.[r]?._zod?.traits?.has("$ZodType"))throw new Error(`Invalid element at key "${r}": expected a Zod schema`);const n=Go(e.shape);return{...e,keys:t,keySet:new Set(t),numKeys:t.length,optionalKeys:new Set(n)}}function li(e,t,n,r,o,i){const s=[],c=o.keySet,a=o.catchall._zod,u=a.def.type,l=a.optout==="optional";for(const d in t){if(c.has(d))continue;if(u==="never"){s.push(d);continue}const _=a.run({value:t[d],issues:[]},r);_ instanceof Promise?e.push(_.then(g=>Be(g,n,d,t,l))):Be(_,n,d,t,l)}return s.length&&n.issues.push({code:"unrecognized_keys",keys:s,input:t,inst:i}),e.length?Promise.all(e).then(()=>n):n}const di=x("$ZodObject",(e,t)=>{if(J.init(e,t),!Object.getOwnPropertyDescriptor(t,"shape")?.get){const c=t.shape;Object.defineProperty(t,"shape",{get:()=>{const a={...c};return Object.defineProperty(t,"shape",{value:a}),a}})}const r=Bn(()=>ui(t));B(e._zod,"propValues",()=>{const c=t.shape,a={};for(const u in c){const l=c[u]._zod;if(l.values){a[u]??(a[u]=new Set);for(const d of l.values)a[u].add(d)}}return a});const o=We,i=t.catchall;let s;e._zod.parse=(c,a)=>{s??(s=r.value);const u=c.value;if(!o(u))return c.issues.push({expected:"object",code:"invalid_type",input:u,inst:e}),c;c.value={};const l=[],d=s.shape;for(const _ of s.keys){const g=d[_],y=g._zod.optout==="optional",f=g._zod.run({value:u[_],issues:[]},a);f instanceof Promise?l.push(f.then(v=>Be(v,c,_,u,y))):Be(f,c,_,u,y)}return i?li(l,u,c,a,r.value,e):l.length?Promise.all(l).then(()=>c):c}});function tn(e,t,n,r){for(const i of e)if(i.issues.length===0)return t.value=i.value,t;const o=e.filter(i=>!ge(i));return o.length===1?(t.value=o[0].value,o[0]):(t.issues.push({code:"invalid_union",input:t.value,inst:n,errors:e.map(i=>i.issues.map(s=>he(s,r,_e())))}),t)}const fi=x("$ZodUnion",(e,t)=>{J.init(e,t),B(e._zod,"optin",()=>t.options.some(o=>o._zod.optin==="optional")?"optional":void 0),B(e._zod,"optout",()=>t.options.some(o=>o._zod.optout==="optional")?"optional":void 0),B(e._zod,"values",()=>{if(t.options.every(o=>o._zod.values))return new Set(t.options.flatMap(o=>Array.from(o._zod.values)))}),B(e._zod,"pattern",()=>{if(t.options.every(o=>o._zod.pattern)){const o=t.options.map(i=>i._zod.pattern);return new RegExp(`^(${o.map(i=>Hn(i.source)).join("|")})$`)}});const n=t.options.length===1,r=t.options[0]._zod.run;e._zod.parse=(o,i)=>{if(n)return r(o,i);let s=!1;const c=[];for(const a of t.options){const u=a._zod.run({value:o.value,issues:[]},i);if(u instanceof Promise)c.push(u),s=!0;else{if(u.issues.length===0)return u;c.push(u)}}return s?Promise.all(c).then(a=>tn(a,o,e,i)):tn(c,o,e,i)}}),pi=x("$ZodDiscriminatedUnion",(e,t)=>{t.inclusive=!1,fi.init(e,t);const n=e._zod.parse;B(e._zod,"propValues",()=>{const o={};for(const i of t.options){const s=i._zod.propValues;if(!s||Object.keys(s).length===0)throw new Error(`Invalid discriminated union option at index "${t.options.indexOf(i)}"`);for(const[c,a]of Object.entries(s)){o[c]||(o[c]=new Set);for(const u of a)o[c].add(u)}}return o});const r=Bn(()=>{const o=t.options,i=new Map;for(const s of o){const c=s._zod.propValues?.[t.discriminator];if(!c||c.size===0)throw new Error(`Invalid discriminated union option at index "${t.options.indexOf(s)}"`);for(const a of c){if(i.has(a))throw new Error(`Duplicate discriminator value "${String(a)}"`);i.set(a,s)}}return i});e._zod.parse=(o,i)=>{const s=o.value;if(!We(s))return o.issues.push({code:"invalid_type",expected:"object",input:s,inst:e}),o;const c=r.value.get(s?.[t.discriminator]);return c?c._zod.run(o,i):t.unionFallback?n(o,i):(o.issues.push({code:"invalid_union",errors:[],note:"No matching discriminator",discriminator:t.discriminator,input:s,path:[t.discriminator],inst:e}),o)}}),_i=x("$ZodRecord",(e,t)=>{J.init(e,t),e._zod.parse=(n,r)=>{const o=n.value;if(!Ko(o))return n.issues.push({expected:"record",code:"invalid_type",input:o,inst:e}),n;const i=[],s=t.keyType._zod.values;if(s){n.value={};const c=new Set;for(const u of s)if(typeof u=="string"||typeof u=="number"||typeof u=="symbol"){c.add(typeof u=="number"?u.toString():u);const l=t.valueType._zod.run({value:o[u],issues:[]},r);l instanceof Promise?i.push(l.then(d=>{d.issues.length&&n.issues.push(...ye(u,d.issues)),n.value[u]=d.value})):(l.issues.length&&n.issues.push(...ye(u,l.issues)),n.value[u]=l.value)}let a;for(const u in o)c.has(u)||(a=a??[],a.push(u));a&&a.length>0&&n.issues.push({code:"unrecognized_keys",input:o,inst:e,keys:a})}else{n.value={};for(const c of Reflect.ownKeys(o)){if(c==="__proto__")continue;let a=t.keyType._zod.run({value:c,issues:[]},r);if(a instanceof Promise)throw new Error("Async schemas not supported in object keys currently");if(typeof c=="string"&&oi.test(c)&&a.issues.length){const d=t.keyType._zod.run({value:Number(c),issues:[]},r);if(d instanceof Promise)throw new Error("Async schemas not supported in object keys currently");d.issues.length===0&&(a=d)}if(a.issues.length){t.mode==="loose"?n.value[c]=o[c]:n.issues.push({code:"invalid_key",origin:"record",issues:a.issues.map(d=>he(d,r,_e())),input:c,path:[c],inst:e});continue}const l=t.valueType._zod.run({value:o[c],issues:[]},r);l instanceof Promise?i.push(l.then(d=>{d.issues.length&&n.issues.push(...ye(c,d.issues)),n.value[a.value]=d.value})):(l.issues.length&&n.issues.push(...ye(c,l.issues)),n.value[a.value]=l.value)}}return i.length?Promise.all(i).then(()=>n):n}}),vi=x("$ZodLiteral",(e,t)=>{if(J.init(e,t),t.values.length===0)throw new Error("Cannot create literal schema with no valid values");const n=new Set(t.values);e._zod.values=n,e._zod.pattern=new RegExp(`^(${t.values.map(r=>typeof r=="string"?en(r):r?en(r.toString()):String(r)).join("|")})$`),e._zod.parse=(r,o)=>{const i=r.value;return n.has(i)||r.issues.push({code:"invalid_value",values:t.values,input:i,inst:e}),r}});function nn(e,t){return e.issues.length&&t===void 0?{issues:[],value:void 0}:e}const hi=x("$ZodOptional",(e,t)=>{J.init(e,t),e._zod.optin="optional",e._zod.optout="optional",B(e._zod,"values",()=>t.innerType._zod.values?new Set([...t.innerType._zod.values,void 0]):void 0),B(e._zod,"pattern",()=>{const n=t.innerType._zod.pattern;return n?new RegExp(`^(${Hn(n.source)})?$`):void 0}),e._zod.parse=(n,r)=>{if(t.innerType._zod.optin==="optional"){const o=t.innerType._zod.run(n,r);return o instanceof Promise?o.then(i=>nn(i,n.value)):nn(o,n.value)}return n.value===void 0?n:t.innerType._zod.run(n,r)}});function mi(e,t){return new e({type:"string",...ve()})}function gi(e,t){return new e({type:"boolean",...ve()})}const oe=x("ZodMiniType",(e,t)=>{if(!e._zod)throw new Error("Uninitialized schema in ZodMiniType.");J.init(e,t),e.def=t,e.type=t.type,e.parse=(n,r)=>Jo(e,n,r,{callee:e.parse}),e.safeParse=(n,r)=>Kn(e,n,r),e.parseAsync=async(n,r)=>ei(e,n,r,{callee:e.parseAsync}),e.safeParseAsync=async(n,r)=>qn(e,n,r),e.check=(...n)=>e.clone({...t,checks:[...t.checks??[],...n.map(r=>typeof r=="function"?{_zod:{check:r,def:{check:"custom"},onattach:[]}}:r)]},{parent:!0}),e.with=e.check,e.clone=(n,r)=>qo(e,n,r),e.brand=()=>e,e.register=((n,r)=>(n.add(e,r),e)),e.apply=n=>n(e)}),yi=x("ZodMiniString",(e,t)=>{si.init(e,t),oe.init(e,t)});function ee(e){return mi(yi)}const bi=x("ZodMiniBoolean",(e,t)=>{ai.init(e,t),oe.init(e,t)});function Ee(e){return gi(bi)}const Ci=x("ZodMiniObject",(e,t)=>{di.init(e,t),oe.init(e,t),B(e,"shape",()=>t.shape)});function Gn(e,t){const n={type:"object",shape:e??{},...ve()};return new Ci(n)}const wi=x("ZodMiniDiscriminatedUnion",(e,t)=>{pi.init(e,t),oe.init(e,t)});function Ei(e,t,n){return new wi({type:"union",options:t,discriminator:e,...ve()})}const Si=x("ZodMiniRecord",(e,t)=>{_i.init(e,t),oe.init(e,t)});function Pi(e,t,n){return new Si({type:"record",keyType:e,valueType:t,...ve()})}const Ni=x("ZodMiniLiteral",(e,t)=>{vi.init(e,t),oe.init(e,t)});function Yn(e,t){return new Ni({type:"literal",values:Array.isArray(e)?e:[e],...ve()})}const Oi=x("ZodMiniOptional",(e,t)=>{hi.init(e,t),oe.init(e,t)});function Y(e){return new Oi({type:"optional",innerType:e})}const Ai=Gn({variant:Yn("remote"),type:Y(ee()),src:ee(),async:Y(Ee()),defer:Y(Ee()),crossorigin:Y(ee()),integrity:Y(ee())}),Ri=Gn({variant:Yn("inline"),type:Y(ee()),async:Y(Ee()),defer:Y(Ee()),content:ee()}),Ii=Ei("variant",[Ai,Ri]);function Ti(e,t){const n=h.createContext(t),r=i=>{const{children:s,...c}=i,a=D(()=>c,Object.values(c));return p(n.Provider,{value:a,children:s})};r.displayName=e+"Provider";function o(i){const s=q(n);if(s)return s;if(t!==void 0)return t;throw new Error(`\`${i}\` must be used within \`${e}\``)}return[r,o]}function Ne(e,t=[]){let n=[];function r(i,s){const c=h.createContext(s),a=n.length;n=[...n,s];const u=d=>{const{scope:_,children:g,...y}=d,f=_?.[e]?.[a]||c,v=D(()=>y,Object.values(y));return p(f.Provider,{value:v,children:g})};u.displayName=i+"Provider";function l(d,_){const g=_?.[e]?.[a]||c,y=q(g);if(y)return y;if(s!==void 0)return s;throw new Error(`\`${d}\` must be used within \`${i}\``)}return[u,l]}const o=()=>{const i=n.map(s=>h.createContext(s));return function(c){const a=c?.[e]||i;return D(()=>({[`__scope${e}`]:{...c,[e]:a}}),[c,a])}};return o.scopeName=e,[r,ki(o,...t)]}function ki(...e){const t=e[0];if(e.length===1)return t;const n=()=>{const r=e.map(o=>({useScope:o(),scopeName:o.scopeName}));return function(i){const s=r.reduce((c,{useScope:a,scopeName:u})=>{const d=a(i)[`__scope${u}`];return{...c,...d}},{});return D(()=>({[`__scope${t.scopeName}`]:s}),[s])}};return n.scopeName=t.scopeName,n}function rn(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}function Xn(...e){return t=>{let n=!1;const r=e.map(o=>{const i=rn(o,t);return!n&&typeof i=="function"&&(n=!0),i});if(n)return()=>{for(let o=0;o<r.length;o++){const i=r[o];typeof i=="function"?i():rn(e[o],null)}}}}function $(...e){return M(Xn(...e),e)}function He(e){const t=Di(e),n=N((r,o)=>{const{children:i,...s}=r,c=Z.toArray(i),a=c.find(Mi);if(a){const u=a.props.children,l=c.map(d=>d===a?Z.count(u)>1?Z.only(null):K(u)?u.props.children:null:d);return p(t,{...s,ref:o,children:K(u)?pe(u,void 0,l):null})}return p(t,{...s,ref:o,children:i})});return n.displayName=`${e}.Slot`,n}function Di(e){const t=N((n,r)=>{const{children:o,...i}=n;if(K(o)){const s=$i(o),c=zi(i,o.props);return o.type!==h.Fragment&&(c.ref=r?Xn(r,s):s),pe(o,c)}return Z.count(o)>1?Z.only(null):null});return t.displayName=`${e}.SlotClone`,t}var xi=Symbol("radix.slottable");function Mi(e){return K(e)&&typeof e.type=="function"&&"__radixId"in e.type&&e.type.__radixId===xi}function zi(e,t){const n={...t};for(const r in t){const o=e[r],i=t[r];/^on[A-Z]/.test(r)?o&&i?n[r]=(...c)=>{const a=i(...c);return o(...c),a}:o&&(n[r]=o):r==="style"?n[r]={...o,...i}:r==="className"&&(n[r]=[o,i].filter(Boolean).join(" "))}return{...e,...n}}function $i(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,n=t&&"isReactWarning"in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,"ref")?.get,n=t&&"isReactWarning"in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}function Li(e){const t=e+"CollectionProvider",[n,r]=Ne(t),[o,i]=n(t,{collectionRef:{current:null},itemMap:new Map}),s=f=>{const{scope:v,children:m}=f,b=T.useRef(null),C=T.useRef(new Map).current;return p(o,{scope:v,itemMap:C,collectionRef:b,children:m})};s.displayName=t;const c=e+"CollectionSlot",a=He(c),u=T.forwardRef((f,v)=>{const{scope:m,children:b}=f,C=i(c,m),w=$(v,C.collectionRef);return p(a,{ref:w,children:b})});u.displayName=c;const l=e+"CollectionItemSlot",d="data-radix-collection-item",_=He(l),g=T.forwardRef((f,v)=>{const{scope:m,children:b,...C}=f,w=T.useRef(null),A=$(v,w),k=i(l,m);return T.useEffect(()=>(k.itemMap.set(w,{ref:w,...C}),()=>{k.itemMap.delete(w)})),p(_,{[d]:"",ref:A,children:b})});g.displayName=l;function y(f){const v=i(e+"CollectionConsumer",f);return T.useCallback(()=>{const b=v.collectionRef.current;if(!b)return[];const C=Array.from(b.querySelectorAll(`[${d}]`));return Array.from(v.itemMap.values()).sort((k,S)=>C.indexOf(k.ref.current)-C.indexOf(S.ref.current))},[v.collectionRef,v.itemMap])}return[{Provider:s,Slot:u,ItemSlot:g},y,r]}function j(e,t,{checkForDefaultPrevented:n=!0}={}){return function(o){if(e?.(o),n===!1||!o.defaultPrevented)return t?.(o)}}var fe=globalThis?.document?X:()=>{},Fi=Un[" useInsertionEffect ".trim().toString()]||fe;function Oe({prop:e,defaultProp:t,onChange:n=()=>{},caller:r}){const[o,i,s]=ji({defaultProp:t,onChange:n}),c=e!==void 0,a=c?e:o;{const l=E(e!==void 0);P(()=>{const d=l.current;d!==c&&console.warn(`${r} is changing from ${d?"controlled":"uncontrolled"} to ${c?"controlled":"uncontrolled"}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`),l.current=c},[c,r])}const u=M(l=>{if(c){const d=Ui(l)?l(e):l;d!==e&&s.current?.(d)}else i(l)},[c,e,i,s]);return[a,u]}function ji({defaultProp:e,onChange:t}){const[n,r]=I(e),o=E(n),i=E(t);return Fi(()=>{i.current=t},[t]),P(()=>{o.current!==n&&(i.current?.(n),o.current=n)},[n,o]),[n,r,i]}function Ui(e){return typeof e=="function"}var Wi=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","select","span","svg","ul"],z=Wi.reduce((e,t)=>{const n=He(`Primitive.${t}`),r=N((o,i)=>{const{asChild:s,...c}=o,a=s?n:t;return typeof window<"u"&&(window[Symbol.for("radix-ui")]=!0),p(a,{...c,ref:i})});return r.displayName=`Primitive.${t}`,{...e,[t]:r}},{});function Bi(e,t){e&&Nt(()=>e.dispatchEvent(t))}function Hi(e,t){return Pe((n,r)=>t[n][r]??n,e)}var qe=e=>{const{present:t,children:n}=e,r=Zi(t),o=typeof n=="function"?n({present:r.isPresent}):Z.only(n),i=$(r.ref,Vi(o));return typeof n=="function"||r.isPresent?pe(o,{ref:i}):null};qe.displayName="Presence";function Zi(e){const[t,n]=I(),r=E(null),o=E(e),i=E("none"),s=e?"mounted":"unmounted",[c,a]=Hi(s,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return P(()=>{const u=Te(r.current);i.current=c==="mounted"?u:"none"},[c]),fe(()=>{const u=r.current,l=o.current;if(l!==e){const _=i.current,g=Te(u);e?a("MOUNT"):g==="none"||u?.display==="none"?a("UNMOUNT"):a(l&&_!==g?"ANIMATION_OUT":"UNMOUNT"),o.current=e}},[e,a]),fe(()=>{if(t){let u;const l=t.ownerDocument.defaultView??window,d=g=>{const f=Te(r.current).includes(CSS.escape(g.animationName));if(g.target===t&&f&&(a("ANIMATION_END"),!o.current)){const v=t.style.animationFillMode;t.style.animationFillMode="forwards",u=l.setTimeout(()=>{t.style.animationFillMode==="forwards"&&(t.style.animationFillMode=v)})}},_=g=>{g.target===t&&(i.current=Te(r.current))};return t.addEventListener("animationstart",_),t.addEventListener("animationcancel",d),t.addEventListener("animationend",d),()=>{l.clearTimeout(u),t.removeEventListener("animationstart",_),t.removeEventListener("animationcancel",d),t.removeEventListener("animationend",d)}}else a("ANIMATION_END")},[t,a]),{isPresent:["mounted","unmountSuspended"].includes(c),ref:M(u=>{r.current=u?getComputedStyle(u):null,n(u)},[])}}function Te(e){return e?.animationName||"none"}function Vi(e){let t=Object.getOwnPropertyDescriptor(e.props,"ref")?.get,n=t&&"isReactWarning"in t&&t.isReactWarning;return n?e.ref:(t=Object.getOwnPropertyDescriptor(e,"ref")?.get,n=t&&"isReactWarning"in t&&t.isReactWarning,n?e.props.ref:e.props.ref||e.ref)}var Ki=Un[" useId ".trim().toString()]||(()=>{}),qi=0;function we(e){const[t,n]=I(Ki());return fe(()=>{n(r=>r??String(qi++))},[e]),e||(t?`radix-${t}`:"")}var Ge="Collapsible",[Gi,Jn]=Ne(Ge),[Yi,Ot]=Gi(Ge),Qn=N((e,t)=>{const{__scopeCollapsible:n,open:r,defaultOpen:o,disabled:i,onOpenChange:s,...c}=e,[a,u]=Oe({prop:r,defaultProp:o??!1,onChange:s,caller:Ge});return p(Yi,{scope:n,disabled:i,contentId:we(),open:a,onOpenToggle:M(()=>u(l=>!l),[u]),children:p(z.div,{"data-state":Rt(a),"data-disabled":i?"":void 0,...c,ref:t})})});Qn.displayName=Ge;var er="CollapsibleTrigger",tr=N((e,t)=>{const{__scopeCollapsible:n,...r}=e,o=Ot(er,n);return p(z.button,{type:"button","aria-controls":o.contentId,"aria-expanded":o.open||!1,"data-state":Rt(o.open),"data-disabled":o.disabled?"":void 0,disabled:o.disabled,...r,ref:t,onClick:j(e.onClick,o.onOpenToggle)})});tr.displayName=er;var At="CollapsibleContent",nr=N((e,t)=>{const{forceMount:n,...r}=e,o=Ot(At,e.__scopeCollapsible);return p(qe,{present:n||o.open,children:({present:i})=>p(Xi,{...r,ref:t,present:i})})});nr.displayName=At;var Xi=N((e,t)=>{const{__scopeCollapsible:n,present:r,children:o,...i}=e,s=Ot(At,n),[c,a]=I(r),u=E(null),l=$(t,u),d=E(0),_=d.current,g=E(0),y=g.current,f=s.open||c,v=E(f),m=E(void 0);return P(()=>{const b=requestAnimationFrame(()=>v.current=!1);return()=>cancelAnimationFrame(b)},[]),fe(()=>{const b=u.current;if(b){m.current=m.current||{transitionDuration:b.style.transitionDuration,animationName:b.style.animationName},b.style.transitionDuration="0s",b.style.animationName="none";const C=b.getBoundingClientRect();d.current=C.height,g.current=C.width,v.current||(b.style.transitionDuration=m.current.transitionDuration,b.style.animationName=m.current.animationName),a(r)}},[s.open,r]),p(z.div,{"data-state":Rt(s.open),"data-disabled":s.disabled?"":void 0,id:s.contentId,hidden:!f,...i,ref:l,style:{"--radix-collapsible-content-height":_?`${_}px`:void 0,"--radix-collapsible-content-width":y?`${y}px`:void 0,...e.style},children:f&&o})});function Rt(e){return e?"open":"closed"}var rr=Qn,or=tr,ir=nr,Ji=h.createContext(void 0);function Qi(e){const t=q(Ji);return e||t||"ltr"}var U="Accordion",ec=["Home","End","ArrowDown","ArrowUp","ArrowLeft","ArrowRight"],[It,tc,nc]=Li(U),[Ye]=Ne(U,[nc,Jn]),Tt=Jn(),cr=T.forwardRef((e,t)=>{const{type:n,...r}=e,o=r,i=r;return p(It.Provider,{scope:e.__scopeAccordion,children:n==="multiple"?p(cc,{...i,ref:t}):p(ic,{...o,ref:t})})});cr.displayName=U;var[sr,rc]=Ye(U),[ar,oc]=Ye(U,{collapsible:!1}),ic=T.forwardRef((e,t)=>{const{value:n,defaultValue:r,onValueChange:o=()=>{},collapsible:i=!1,...s}=e,[c,a]=Oe({prop:n,defaultProp:r??"",onChange:o,caller:U});return p(sr,{scope:e.__scopeAccordion,value:T.useMemo(()=>c?[c]:[],[c]),onItemOpen:a,onItemClose:T.useCallback(()=>i&&a(""),[i,a]),children:p(ar,{scope:e.__scopeAccordion,collapsible:i,children:p(ur,{...s,ref:t})})})}),cc=T.forwardRef((e,t)=>{const{value:n,defaultValue:r,onValueChange:o=()=>{},...i}=e,[s,c]=Oe({prop:n,defaultProp:r??[],onChange:o,caller:U}),a=T.useCallback(l=>c((d=[])=>[...d,l]),[c]),u=T.useCallback(l=>c((d=[])=>d.filter(_=>_!==l)),[c]);return p(sr,{scope:e.__scopeAccordion,value:s,onItemOpen:a,onItemClose:u,children:p(ar,{scope:e.__scopeAccordion,collapsible:!0,children:p(ur,{...i,ref:t})})})}),[sc,Xe]=Ye(U),ur=T.forwardRef((e,t)=>{const{__scopeAccordion:n,disabled:r,dir:o,orientation:i="vertical",...s}=e,c=T.useRef(null),a=$(c,t),u=tc(n),d=Qi(o)==="ltr",_=j(e.onKeyDown,g=>{if(!ec.includes(g.key))return;const y=g.target,f=u().filter(L=>!L.ref.current?.disabled),v=f.findIndex(L=>L.ref.current===y),m=f.length;if(v===-1)return;g.preventDefault();let b=v;const C=0,w=m-1,A=()=>{b=v+1,b>w&&(b=C)},k=()=>{b=v-1,b<C&&(b=w)};switch(g.key){case"Home":b=C;break;case"End":b=w;break;case"ArrowRight":i==="horizontal"&&(d?A():k());break;case"ArrowDown":i==="vertical"&&A();break;case"ArrowLeft":i==="horizontal"&&(d?k():A());break;case"ArrowUp":i==="vertical"&&k();break}const S=b%m;f[S].ref.current?.focus()});return p(sc,{scope:n,disabled:r,direction:o,orientation:i,children:p(It.Slot,{scope:n,children:p(z.div,{...s,"data-orientation":i,ref:a,onKeyDown:r?void 0:_})})})}),Ze="AccordionItem",[ac,kt]=Ye(Ze),lr=T.forwardRef((e,t)=>{const{__scopeAccordion:n,value:r,...o}=e,i=Xe(Ze,n),s=rc(Ze,n),c=Tt(n),a=we(),u=r&&s.value.includes(r)||!1,l=i.disabled||e.disabled;return p(ac,{scope:n,open:u,disabled:l,triggerId:a,children:p(rr,{"data-orientation":i.orientation,"data-state":vr(u),...c,...o,ref:t,disabled:l,open:u,onOpenChange:d=>{d?s.onItemOpen(r):s.onItemClose(r)}})})});lr.displayName=Ze;var dr="AccordionHeader",uc=T.forwardRef((e,t)=>{const{__scopeAccordion:n,...r}=e,o=Xe(U,n),i=kt(dr,n);return p(z.h3,{"data-orientation":o.orientation,"data-state":vr(i.open),"data-disabled":i.disabled?"":void 0,...r,ref:t})});uc.displayName=dr;var pt="AccordionTrigger",fr=T.forwardRef((e,t)=>{const{__scopeAccordion:n,...r}=e,o=Xe(U,n),i=kt(pt,n),s=oc(pt,n),c=Tt(n);return p(It.ItemSlot,{scope:n,children:p(or,{"aria-disabled":i.open&&!s.collapsible||void 0,"data-orientation":o.orientation,id:i.triggerId,...c,...r,ref:t})})});fr.displayName=pt;var pr="AccordionContent",_r=T.forwardRef((e,t)=>{const{__scopeAccordion:n,...r}=e,o=Xe(U,n),i=kt(pr,n),s=Tt(n);return p(ir,{role:"region","aria-labelledby":i.triggerId,"data-orientation":o.orientation,...s,...r,ref:t,style:{"--radix-accordion-content-height":"var(--radix-collapsible-content-height)","--radix-accordion-content-width":"var(--radix-collapsible-content-width)",...e.style}})});_r.displayName=pr;function vr(e){return e?"open":"closed"}var lc=cr,dc=lr,on=fr,fc=_r;const hr=(...e)=>e.filter((t,n,r)=>!!t&&t.trim()!==""&&r.indexOf(t)===n).join(" ").trim();const pc=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase();const _c=e=>e.replace(/^([A-Z])|[\s-_]+(\w)/g,(t,n,r)=>r?r.toUpperCase():n.toLowerCase());const cn=e=>{const t=_c(e);return t.charAt(0).toUpperCase()+t.slice(1)};var vc={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const hc=e=>{for(const t in e)if(t.startsWith("aria-")||t==="role"||t==="title")return!0;return!1};const mc=N(({color:e="currentColor",size:t=24,strokeWidth:n=2,absoluteStrokeWidth:r,className:o="",children:i,iconNode:s,...c},a)=>h.createElement("svg",{ref:a,...vc,width:t,height:t,stroke:e,strokeWidth:r?Number(n)*24/Number(t):n,className:hr("lucide",o),...!i&&!hc(c)&&{"aria-hidden":"true"},...c},[...s.map(([u,l])=>h.createElement(u,l)),...Array.isArray(i)?i:[i]]));const mr=(e,t)=>{const n=N(({className:r,...o},i)=>h.createElement(mc,{ref:i,iconNode:t,className:hr(`lucide-${pc(cn(e))}`,`lucide-${e}`,r),...o}));return n.displayName=cn(e),n};const gc=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],yc=mr("chevron-down",gc);const bc=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],Cc=mr("chevron-up",bc);function wc(e){const t=E({value:e,previous:e});return D(()=>(t.current.value!==e&&(t.current.previous=t.current.value,t.current.value=e),t.current.previous),[e])}function Ec(e){const[t,n]=I(void 0);return fe(()=>{if(e){n({width:e.offsetWidth,height:e.offsetHeight});const r=new ResizeObserver(o=>{if(!Array.isArray(o)||!o.length)return;const i=o[0];let s,c;if("borderBoxSize"in i){const a=i.borderBoxSize,u=Array.isArray(a)?a[0]:a;s=u.inlineSize,c=u.blockSize}else s=e.offsetWidth,c=e.offsetHeight;n({width:s,height:c})});return r.observe(e,{box:"border-box"}),()=>r.unobserve(e)}else n(void 0)},[e]),t}var Je="Switch",[Sc]=Ne(Je),[Pc,Nc]=Sc(Je),gr=N((e,t)=>{const{__scopeSwitch:n,name:r,checked:o,defaultChecked:i,required:s,disabled:c,value:a="on",onCheckedChange:u,form:l,...d}=e,[_,g]=I(null),y=$(t,C=>g(C)),f=E(!1),v=_?l||!!_.closest("form"):!0,[m,b]=Oe({prop:o,defaultProp:i??!1,onChange:u,caller:Je});return p(Pc,{scope:n,checked:m,disabled:c,children:[p(z.button,{type:"button",role:"switch","aria-checked":m,"aria-required":s,"data-state":wr(m),"data-disabled":c?"":void 0,disabled:c,value:a,...d,ref:y,onClick:j(e.onClick,C=>{b(w=>!w),v&&(f.current=C.isPropagationStopped(),f.current||C.stopPropagation())})}),v&&p(Cr,{control:_,bubbles:!f.current,name:r,value:a,checked:m,required:s,disabled:c,form:l,style:{transform:"translateX(-100%)"}})]})});gr.displayName=Je;var yr="SwitchThumb",br=N((e,t)=>{const{__scopeSwitch:n,...r}=e,o=Nc(yr,n);return p(z.span,{"data-state":wr(o.checked),"data-disabled":o.disabled?"":void 0,...r,ref:t})});br.displayName=yr;var Oc="SwitchBubbleInput",Cr=N(({__scopeSwitch:e,control:t,checked:n,bubbles:r=!0,...o},i)=>{const s=E(null),c=$(s,i),a=wc(n),u=Ec(t);return P(()=>{const l=s.current;if(!l)return;const d=window.HTMLInputElement.prototype,g=Object.getOwnPropertyDescriptor(d,"checked").set;if(a!==n&&g){const y=new Event("click",{bubbles:r});g.call(l,n),l.dispatchEvent(y)}},[a,n,r]),p("input",{type:"checkbox","aria-hidden":!0,defaultChecked:n,...o,tabIndex:-1,ref:c,style:{...o.style,...u,position:"absolute",pointerEvents:"none",opacity:0,margin:0}})});Cr.displayName=Oc;function wr(e){return e?"checked":"unchecked"}var Ac=gr,Rc=br;const Ic="_root_dibqz_1",Tc="_thumb_dibqz_38",ke={root:Ic,switch:"_switch_dibqz_8",thumb:Tc},kc=({label:e,id:t,...n})=>p("div",{className:ke.root,children:[e&&p(te,{className:ke.label,as:"label",htmlFor:t,children:e}),p(Ac,{className:ke.switch,...n,children:p(Rc,{className:ke.thumb})})]}),Dc=Pi(ee(),Ee()),Er=h.createContext(null),xc=({children:e,items:t,localStorageKey:n})=>{function r(y){const f=localStorage.getItem(y);if(!f)return null;const{success:v,data:m}=Dc.safeParse(JSON.parse(f));return v?m:null}const o=D(()=>Object.fromEntries(t.map(y=>[y.value,y.defaultSelected??!1])),[t]),[i,s]=I(r(n)??o),[c,a]=I(r(n));function u(y,f){const v=i?{...i,[y]:f}:{[y]:f};s(v)}P(()=>{let y=[];c!==null&&(y=Object.entries(c).filter(([v,m])=>m).map(([v])=>v));const f=t.filter(v=>y.includes(v.value));for(const v of t){const m=document.head.querySelector(`#${v.value}`);m&&m.remove()}for(const v of f){const m=document.createElement("script");if(m.id=v.value,!v.script){v.required||console.warn("CookieBanner: Missing script for",v.value);continue}const{success:b,data:C}=Ii.safeParse(v.script);if(!b){console.error("CookieBanner: Invalid script definition for",v.value);continue}switch(m.type=C.type??"text/javascript",m.async=C.async??!1,m.defer=C.defer??!1,C.variant){case"inline":m.textContent=C.content;break;case"remote":m.src=C.src,m.crossOrigin=C.crossorigin??null,m.integrity=C.integrity??"";break}document.head.appendChild(m)}},[c,t]);function l(y){a(y),localStorage.setItem(n,JSON.stringify(y))}const d=M(()=>{const y=Object.fromEntries(t.map(f=>[f.value,!1]));s(y),l(y)},[t]),_=M(()=>{l(i),location.reload()},[i]),g=D(()=>{if(!c)return!1;const y=Object.keys(c);return t.map(v=>v.value).every(v=>y.includes(v))},[c,t]);return p(Er.Provider,{value:{selection:i,toggleSelection:u,onDeclineAll:d,onSave:_,selectionTaken:g},children:e})};function Sr(){const e=q(Er);if(!e)throw new Error("useSelection must be used within a SelectionProvider");return e}const Mc=({value:e,label:t,sublabel:n,required:r=!1,description:o,openItem:i})=>{const{toggleSelection:s,selection:c}=Sr(),a=D(()=>c?.[e]??!1,[c,e]);P(()=>{s(e,a)},[e,a]);const u=D(()=>r?!0:a,[r,a]),l=D(()=>_=>r?()=>{}:s(e,_),[r,s,e]),d=D(()=>r,[r]);return p(dc,{value:e,className:Q.root,children:[p("div",{className:Q.header,children:[p(on,{asChild:!0,children:p("div",{className:Q.label,children:[p(te,{weight:"bold",children:t}),n&&p(te,{size:"caption",color:"muted",children:n})]})}),p("div",{className:Q.actions,children:[p(kc,{checked:u,onCheckedChange:l,disabled:d}),p(on,{asChild:!0,children:p(yc,{size:16,className:Le({[Q.chevron]:!0,[Q.open]:i===e})})})]})]}),o&&p(fc,{className:Q.description,children:p(te,{size:"caption",dangerouslySetInnerHTML:{__html:o}})})]})};function Se(e){const t=E(e);return P(()=>{t.current=e}),D(()=>(...n)=>t.current?.(...n),[])}function zc(e,t=globalThis?.document){const n=Se(e);P(()=>{const r=o=>{o.key==="Escape"&&n(o)};return t.addEventListener("keydown",r,{capture:!0}),()=>t.removeEventListener("keydown",r,{capture:!0})},[n,t])}var $c="DismissableLayer",_t="dismissableLayer.update",Lc="dismissableLayer.pointerDownOutside",Fc="dismissableLayer.focusOutside",sn,Pr=h.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),Nr=N((e,t)=>{const{disableOutsidePointerEvents:n=!1,onEscapeKeyDown:r,onPointerDownOutside:o,onFocusOutside:i,onInteractOutside:s,onDismiss:c,...a}=e,u=q(Pr),[l,d]=I(null),_=l?.ownerDocument??globalThis?.document,[,g]=I({}),y=$(t,S=>d(S)),f=Array.from(u.layers),[v]=[...u.layersWithOutsidePointerEventsDisabled].slice(-1),m=f.indexOf(v),b=l?f.indexOf(l):-1,C=u.layersWithOutsidePointerEventsDisabled.size>0,w=b>=m,A=Wc(S=>{const L=S.target,ie=[...u.branches].some(me=>me.contains(L));!w||ie||(o?.(S),s?.(S),S.defaultPrevented||c?.())},_),k=Bc(S=>{const L=S.target;[...u.branches].some(me=>me.contains(L))||(i?.(S),s?.(S),S.defaultPrevented||c?.())},_);return zc(S=>{b===u.layers.size-1&&(r?.(S),!S.defaultPrevented&&c&&(S.preventDefault(),c()))},_),P(()=>{if(l)return n&&(u.layersWithOutsidePointerEventsDisabled.size===0&&(sn=_.body.style.pointerEvents,_.body.style.pointerEvents="none"),u.layersWithOutsidePointerEventsDisabled.add(l)),u.layers.add(l),an(),()=>{n&&u.layersWithOutsidePointerEventsDisabled.size===1&&(_.body.style.pointerEvents=sn)}},[l,_,n,u]),P(()=>()=>{l&&(u.layers.delete(l),u.layersWithOutsidePointerEventsDisabled.delete(l),an())},[l,u]),P(()=>{const S=()=>g({});return document.addEventListener(_t,S),()=>document.removeEventListener(_t,S)},[]),p(z.div,{...a,ref:y,style:{pointerEvents:C?w?"auto":"none":void 0,...e.style},onFocusCapture:j(e.onFocusCapture,k.onFocusCapture),onBlurCapture:j(e.onBlurCapture,k.onBlurCapture),onPointerDownCapture:j(e.onPointerDownCapture,A.onPointerDownCapture)})});Nr.displayName=$c;var jc="DismissableLayerBranch",Uc=N((e,t)=>{const n=q(Pr),r=E(null),o=$(t,r);return P(()=>{const i=r.current;if(i)return n.branches.add(i),()=>{n.branches.delete(i)}},[n.branches]),p(z.div,{...e,ref:o})});Uc.displayName=jc;function Wc(e,t=globalThis?.document){const n=Se(e),r=E(!1),o=E(()=>{});return P(()=>{const i=c=>{if(c.target&&!r.current){let a=function(){Or(Lc,n,u,{discrete:!0})};const u={originalEvent:c};c.pointerType==="touch"?(t.removeEventListener("click",o.current),o.current=a,t.addEventListener("click",o.current,{once:!0})):a()}else t.removeEventListener("click",o.current);r.current=!1},s=window.setTimeout(()=>{t.addEventListener("pointerdown",i)},0);return()=>{window.clearTimeout(s),t.removeEventListener("pointerdown",i),t.removeEventListener("click",o.current)}},[t,n]),{onPointerDownCapture:()=>r.current=!0}}function Bc(e,t=globalThis?.document){const n=Se(e),r=E(!1);return P(()=>{const o=i=>{i.target&&!r.current&&Or(Fc,n,{originalEvent:i},{discrete:!1})};return t.addEventListener("focusin",o),()=>t.removeEventListener("focusin",o)},[t,n]),{onFocusCapture:()=>r.current=!0,onBlurCapture:()=>r.current=!1}}function an(){const e=new CustomEvent(_t);document.dispatchEvent(e)}function Or(e,t,n,{discrete:r}){const o=n.originalEvent.target,i=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:n});t&&o.addEventListener(e,t,{once:!0}),r?Bi(o,i):o.dispatchEvent(i)}var ot="focusScope.autoFocusOnMount",it="focusScope.autoFocusOnUnmount",un={bubbles:!1,cancelable:!0},Hc="FocusScope",Ar=N((e,t)=>{const{loop:n=!1,trapped:r=!1,onMountAutoFocus:o,onUnmountAutoFocus:i,...s}=e,[c,a]=I(null),u=Se(o),l=Se(i),d=E(null),_=$(t,f=>a(f)),g=E({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;P(()=>{if(r){let f=function(C){if(g.paused||!c)return;const w=C.target;c.contains(w)?d.current=w:G(d.current,{select:!0})},v=function(C){if(g.paused||!c)return;const w=C.relatedTarget;w!==null&&(c.contains(w)||G(d.current,{select:!0}))},m=function(C){if(document.activeElement===document.body)for(const A of C)A.removedNodes.length>0&&G(c)};document.addEventListener("focusin",f),document.addEventListener("focusout",v);const b=new MutationObserver(m);return c&&b.observe(c,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",f),document.removeEventListener("focusout",v),b.disconnect()}}},[r,c,g.paused]),P(()=>{if(c){dn.add(g);const f=document.activeElement;if(!c.contains(f)){const m=new CustomEvent(ot,un);c.addEventListener(ot,u),c.dispatchEvent(m),m.defaultPrevented||(Zc(Yc(Rr(c)),{select:!0}),document.activeElement===f&&G(c))}return()=>{c.removeEventListener(ot,u),setTimeout(()=>{const m=new CustomEvent(it,un);c.addEventListener(it,l),c.dispatchEvent(m),m.defaultPrevented||G(f??document.body,{select:!0}),c.removeEventListener(it,l),dn.remove(g)},0)}}},[c,u,l,g]);const y=M(f=>{if(!n&&!r||g.paused)return;const v=f.key==="Tab"&&!f.altKey&&!f.ctrlKey&&!f.metaKey,m=document.activeElement;if(v&&m){const b=f.currentTarget,[C,w]=Vc(b);C&&w?!f.shiftKey&&m===w?(f.preventDefault(),n&&G(C,{select:!0})):f.shiftKey&&m===C&&(f.preventDefault(),n&&G(w,{select:!0})):m===b&&f.preventDefault()}},[n,r,g.paused]);return p(z.div,{tabIndex:-1,...s,ref:_,onKeyDown:y})});Ar.displayName=Hc;function Zc(e,{select:t=!1}={}){const n=document.activeElement;for(const r of e)if(G(r,{select:t}),document.activeElement!==n)return}function Vc(e){const t=Rr(e),n=ln(t,e),r=ln(t.reverse(),e);return[n,r]}function Rr(e){const t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:r=>{const o=r.tagName==="INPUT"&&r.type==="hidden";return r.disabled||r.hidden||o?NodeFilter.FILTER_SKIP:r.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)t.push(n.currentNode);return t}function ln(e,t){for(const n of e)if(!Kc(n,{upTo:t}))return n}function Kc(e,{upTo:t}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}function qc(e){return e instanceof HTMLInputElement&&"select"in e}function G(e,{select:t=!1}={}){if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&qc(e)&&t&&e.select()}}var dn=Gc();function Gc(){let e=[];return{add(t){const n=e[0];t!==n&&n?.pause(),e=fn(e,t),e.unshift(t)},remove(t){e=fn(e,t),e[0]?.resume()}}}function fn(e,t){const n=[...e],r=n.indexOf(t);return r!==-1&&n.splice(r,1),n}function Yc(e){return e.filter(t=>t.tagName!=="A")}var ct=0;function Xc(){P(()=>{const e=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",e[0]??pn()),document.body.insertAdjacentElement("beforeend",e[1]??pn()),ct++,()=>{ct===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(t=>t.remove()),ct--}},[])}function pn(){const e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.outline="none",e.style.opacity="0",e.style.position="fixed",e.style.pointerEvents="none",e}var W=function(){return W=Object.assign||function(t){for(var n,r=1,o=arguments.length;r<o;r++){n=arguments[r];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t},W.apply(this,arguments)};function Ir(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var o=0,r=Object.getOwnPropertySymbols(e);o<r.length;o++)t.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n}function Jc(e,t,n){if(n||arguments.length===2)for(var r=0,o=t.length,i;r<o;r++)(i||!(r in t))&&(i||(i=Array.prototype.slice.call(t,0,r)),i[r]=t[r]);return e.concat(i||Array.prototype.slice.call(t))}var Fe="right-scroll-bar-position",je="width-before-scroll-bar",Qc="with-scroll-bars-hidden",es="--removed-body-scroll-bar-size";function st(e,t){return typeof e=="function"?e(t):e&&(e.current=t),e}function ts(e,t){var n=I(function(){return{value:e,callback:t,facade:{get current(){return n.value},set current(r){var o=n.value;o!==r&&(n.value=r,n.callback(r,o))}}}})[0];return n.callback=t,n.facade}var ns=typeof window<"u"?X:P,_n=new WeakMap;function rs(e,t){var n=ts(null,function(r){return e.forEach(function(o){return st(o,r)})});return ns(function(){var r=_n.get(n);if(r){var o=new Set(r),i=new Set(e),s=n.current;o.forEach(function(c){i.has(c)||st(c,null)}),i.forEach(function(c){o.has(c)||st(c,s)})}_n.set(n,e)},[e]),n}function os(e){return e}function is(e,t){t===void 0&&(t=os);var n=[],r=!1,o={read:function(){if(r)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return n.length?n[n.length-1]:e},useMedium:function(i){var s=t(i,r);return n.push(s),function(){n=n.filter(function(c){return c!==s})}},assignSyncMedium:function(i){for(r=!0;n.length;){var s=n;n=[],s.forEach(i)}n={push:function(c){return i(c)},filter:function(){return n}}},assignMedium:function(i){r=!0;var s=[];if(n.length){var c=n;n=[],c.forEach(i),s=n}var a=function(){var l=s;s=[],l.forEach(i)},u=function(){return Promise.resolve().then(a)};u(),n={push:function(l){s.push(l),u()},filter:function(l){return s=s.filter(l),n}}}};return o}function cs(e){e===void 0&&(e={});var t=is(null);return t.options=W({async:!0,ssr:!1},e),t}var Tr=function(e){var t=e.sideCar,n=Ir(e,["sideCar"]);if(!t)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var r=t.read();if(!r)throw new Error("Sidecar medium not found");return h.createElement(r,W({},n))};Tr.isSideCarExport=!0;function ss(e,t){return e.useMedium(t),Tr}var kr=cs(),at=function(){},Qe=N(function(e,t){var n=E(null),r=I({onScrollCapture:at,onWheelCapture:at,onTouchMoveCapture:at}),o=r[0],i=r[1],s=e.forwardProps,c=e.children,a=e.className,u=e.removeScrollBar,l=e.enabled,d=e.shards,_=e.sideCar,g=e.noRelative,y=e.noIsolation,f=e.inert,v=e.allowPinchZoom,m=e.as,b=m===void 0?"div":m,C=e.gapMode,w=Ir(e,["forwardProps","children","className","removeScrollBar","enabled","shards","sideCar","noRelative","noIsolation","inert","allowPinchZoom","as","gapMode"]),A=_,k=rs([n,t]),S=W(W({},w),o);return h.createElement(h.Fragment,null,l&&h.createElement(A,{sideCar:kr,removeScrollBar:u,shards:d,noRelative:g,noIsolation:y,inert:f,setCallbacks:i,allowPinchZoom:!!v,lockRef:n,gapMode:C}),s?pe(Z.only(c),W(W({},S),{ref:k})):h.createElement(b,W({},S,{className:a,ref:k}),c))});Qe.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};Qe.classNames={fullWidth:je,zeroRight:Fe};var as=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function us(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=as();return t&&e.setAttribute("nonce",t),e}function ls(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function ds(e){var t=document.head||document.getElementsByTagName("head")[0];t.appendChild(e)}var fs=function(){var e=0,t=null;return{add:function(n){e==0&&(t=us())&&(ls(t,n),ds(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},ps=function(){var e=fs();return function(t,n){P(function(){return e.add(t),function(){e.remove()}},[t&&n])}},Dr=function(){var e=ps(),t=function(n){var r=n.styles,o=n.dynamic;return e(r,o),null};return t},_s={left:0,top:0,right:0,gap:0},ut=function(e){return parseInt(e||"",10)||0},vs=function(e){var t=window.getComputedStyle(document.body),n=t[e==="padding"?"paddingLeft":"marginLeft"],r=t[e==="padding"?"paddingTop":"marginTop"],o=t[e==="padding"?"paddingRight":"marginRight"];return[ut(n),ut(r),ut(o)]},hs=function(e){if(e===void 0&&(e="margin"),typeof window>"u")return _s;var t=vs(e),n=document.documentElement.clientWidth,r=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,r-n+t[2]-t[0])}},ms=Dr(),le="data-scroll-locked",gs=function(e,t,n,r){var o=e.left,i=e.top,s=e.right,c=e.gap;return n===void 0&&(n="margin"),`
|
|
2
|
+
.`.concat(Qc,` {
|
|
3
|
+
overflow: hidden `).concat(r,`;
|
|
4
|
+
padding-right: `).concat(c,"px ").concat(r,`;
|
|
5
|
+
}
|
|
6
|
+
body[`).concat(le,`] {
|
|
7
|
+
overflow: hidden `).concat(r,`;
|
|
8
|
+
overscroll-behavior: contain;
|
|
9
|
+
`).concat([t&&"position: relative ".concat(r,";"),n==="margin"&&`
|
|
10
|
+
padding-left: `.concat(o,`px;
|
|
11
|
+
padding-top: `).concat(i,`px;
|
|
12
|
+
padding-right: `).concat(s,`px;
|
|
13
|
+
margin-left:0;
|
|
14
|
+
margin-top:0;
|
|
15
|
+
margin-right: `).concat(c,"px ").concat(r,`;
|
|
16
|
+
`),n==="padding"&&"padding-right: ".concat(c,"px ").concat(r,";")].filter(Boolean).join(""),`
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.`).concat(Fe,` {
|
|
20
|
+
right: `).concat(c,"px ").concat(r,`;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.`).concat(je,` {
|
|
24
|
+
margin-right: `).concat(c,"px ").concat(r,`;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.`).concat(Fe," .").concat(Fe,` {
|
|
28
|
+
right: 0 `).concat(r,`;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.`).concat(je," .").concat(je,` {
|
|
32
|
+
margin-right: 0 `).concat(r,`;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
body[`).concat(le,`] {
|
|
36
|
+
`).concat(es,": ").concat(c,`px;
|
|
37
|
+
}
|
|
38
|
+
`)},vn=function(){var e=parseInt(document.body.getAttribute(le)||"0",10);return isFinite(e)?e:0},ys=function(){P(function(){return document.body.setAttribute(le,(vn()+1).toString()),function(){var e=vn()-1;e<=0?document.body.removeAttribute(le):document.body.setAttribute(le,e.toString())}},[])},bs=function(e){var t=e.noRelative,n=e.noImportant,r=e.gapMode,o=r===void 0?"margin":r;ys();var i=D(function(){return hs(o)},[o]);return h.createElement(ms,{styles:gs(i,!t,o,n?"":"!important")})},vt=!1;if(typeof window<"u")try{var De=Object.defineProperty({},"passive",{get:function(){return vt=!0,!0}});window.addEventListener("test",De,De),window.removeEventListener("test",De,De)}catch{vt=!1}var ce=vt?{passive:!1}:!1,Cs=function(e){return e.tagName==="TEXTAREA"},xr=function(e,t){if(!(e instanceof Element))return!1;var n=window.getComputedStyle(e);return n[t]!=="hidden"&&!(n.overflowY===n.overflowX&&!Cs(e)&&n[t]==="visible")},ws=function(e){return xr(e,"overflowY")},Es=function(e){return xr(e,"overflowX")},hn=function(e,t){var n=t.ownerDocument,r=t;do{typeof ShadowRoot<"u"&&r instanceof ShadowRoot&&(r=r.host);var o=Mr(e,r);if(o){var i=zr(e,r),s=i[1],c=i[2];if(s>c)return!0}r=r.parentNode}while(r&&r!==n.body);return!1},Ss=function(e){var t=e.scrollTop,n=e.scrollHeight,r=e.clientHeight;return[t,n,r]},Ps=function(e){var t=e.scrollLeft,n=e.scrollWidth,r=e.clientWidth;return[t,n,r]},Mr=function(e,t){return e==="v"?ws(t):Es(t)},zr=function(e,t){return e==="v"?Ss(t):Ps(t)},Ns=function(e,t){return e==="h"&&t==="rtl"?-1:1},Os=function(e,t,n,r,o){var i=Ns(e,window.getComputedStyle(t).direction),s=i*r,c=n.target,a=t.contains(c),u=!1,l=s>0,d=0,_=0;do{if(!c)break;var g=zr(e,c),y=g[0],f=g[1],v=g[2],m=f-v-i*y;(y||m)&&Mr(e,c)&&(d+=m,_+=y);var b=c.parentNode;c=b&&b.nodeType===Node.DOCUMENT_FRAGMENT_NODE?b.host:b}while(!a&&c!==document.body||a&&(t.contains(c)||t===c));return(l&&Math.abs(d)<1||!l&&Math.abs(_)<1)&&(u=!0),u},xe=function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},mn=function(e){return[e.deltaX,e.deltaY]},gn=function(e){return e&&"current"in e?e.current:e},As=function(e,t){return e[0]===t[0]&&e[1]===t[1]},Rs=function(e){return`
|
|
39
|
+
.block-interactivity-`.concat(e,` {pointer-events: none;}
|
|
40
|
+
.allow-interactivity-`).concat(e,` {pointer-events: all;}
|
|
41
|
+
`)},Is=0,se=[];function Ts(e){var t=E([]),n=E([0,0]),r=E(),o=I(Is++)[0],i=I(Dr)[0],s=E(e);P(function(){s.current=e},[e]),P(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(o));var f=Jc([e.lockRef.current],(e.shards||[]).map(gn),!0).filter(Boolean);return f.forEach(function(v){return v.classList.add("allow-interactivity-".concat(o))}),function(){document.body.classList.remove("block-interactivity-".concat(o)),f.forEach(function(v){return v.classList.remove("allow-interactivity-".concat(o))})}}},[e.inert,e.lockRef.current,e.shards]);var c=M(function(f,v){if("touches"in f&&f.touches.length===2||f.type==="wheel"&&f.ctrlKey)return!s.current.allowPinchZoom;var m=xe(f),b=n.current,C="deltaX"in f?f.deltaX:b[0]-m[0],w="deltaY"in f?f.deltaY:b[1]-m[1],A,k=f.target,S=Math.abs(C)>Math.abs(w)?"h":"v";if("touches"in f&&S==="h"&&k.type==="range")return!1;var L=window.getSelection(),ie=L&&L.anchorNode,me=ie?ie===k||ie.contains(k):!1;if(me)return!1;var Ae=hn(S,k);if(!Ae)return!0;if(Ae?A=S:(A=S==="v"?"h":"v",Ae=hn(S,k)),!Ae)return!1;if(!r.current&&"changedTouches"in f&&(C||w)&&(r.current=A),!A)return!0;var Mt=r.current||A;return Os(Mt,v,f,Mt==="h"?C:w)},[]),a=M(function(f){var v=f;if(!(!se.length||se[se.length-1]!==i)){var m="deltaY"in v?mn(v):xe(v),b=t.current.filter(function(A){return A.name===v.type&&(A.target===v.target||v.target===A.shadowParent)&&As(A.delta,m)})[0];if(b&&b.should){v.cancelable&&v.preventDefault();return}if(!b){var C=(s.current.shards||[]).map(gn).filter(Boolean).filter(function(A){return A.contains(v.target)}),w=C.length>0?c(v,C[0]):!s.current.noIsolation;w&&v.cancelable&&v.preventDefault()}}},[]),u=M(function(f,v,m,b){var C={name:f,delta:v,target:m,should:b,shadowParent:ks(m)};t.current.push(C),setTimeout(function(){t.current=t.current.filter(function(w){return w!==C})},1)},[]),l=M(function(f){n.current=xe(f),r.current=void 0},[]),d=M(function(f){u(f.type,mn(f),f.target,c(f,e.lockRef.current))},[]),_=M(function(f){u(f.type,xe(f),f.target,c(f,e.lockRef.current))},[]);P(function(){return se.push(i),e.setCallbacks({onScrollCapture:d,onWheelCapture:d,onTouchMoveCapture:_}),document.addEventListener("wheel",a,ce),document.addEventListener("touchmove",a,ce),document.addEventListener("touchstart",l,ce),function(){se=se.filter(function(f){return f!==i}),document.removeEventListener("wheel",a,ce),document.removeEventListener("touchmove",a,ce),document.removeEventListener("touchstart",l,ce)}},[]);var g=e.removeScrollBar,y=e.inert;return h.createElement(h.Fragment,null,y?h.createElement(i,{styles:Rs(o)}):null,g?h.createElement(bs,{noRelative:e.noRelative,gapMode:e.gapMode}):null)}function ks(e){for(var t=null;e!==null;)e instanceof ShadowRoot&&(t=e.host,e=e.host),e=e.parentNode;return t}const Ds=ss(kr,Ts);var $r=N(function(e,t){return h.createElement(Qe,W({},e,{ref:t,sideCar:Ds}))});$r.classNames=Qe.classNames;var xs=function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},ae=new WeakMap,Me=new WeakMap,ze={},lt=0,Lr=function(e){return e&&(e.host||Lr(e.parentNode))},Ms=function(e,t){return t.map(function(n){if(e.contains(n))return n;var r=Lr(n);return r&&e.contains(r)?r:(console.error("aria-hidden",n,"in not contained inside",e,". Doing nothing"),null)}).filter(function(n){return!!n})},zs=function(e,t,n,r){var o=Ms(t,Array.isArray(e)?e:[e]);ze[n]||(ze[n]=new WeakMap);var i=ze[n],s=[],c=new Set,a=new Set(o),u=function(d){!d||c.has(d)||(c.add(d),u(d.parentNode))};o.forEach(u);var l=function(d){!d||a.has(d)||Array.prototype.forEach.call(d.children,function(_){if(c.has(_))l(_);else try{var g=_.getAttribute(r),y=g!==null&&g!=="false",f=(ae.get(_)||0)+1,v=(i.get(_)||0)+1;ae.set(_,f),i.set(_,v),s.push(_),f===1&&y&&Me.set(_,!0),v===1&&_.setAttribute(n,"true"),y||_.setAttribute(r,"true")}catch(m){console.error("aria-hidden: cannot operate on ",_,m)}})};return l(t),c.clear(),lt++,function(){s.forEach(function(d){var _=ae.get(d)-1,g=i.get(d)-1;ae.set(d,_),i.set(d,g),_||(Me.has(d)||d.removeAttribute(r),Me.delete(d)),g||d.removeAttribute(n)}),lt--,lt||(ae=new WeakMap,ae=new WeakMap,Me=new WeakMap,ze={})}},$s=function(e,t,n){n===void 0&&(n="data-aria-hidden");var r=Array.from(Array.isArray(e)?e:[e]),o=xs(e);return o?(r.push.apply(r,Array.from(o.querySelectorAll("[aria-live], script"))),zs(r,o,n,"aria-hidden")):function(){return null}},et="Dialog",[Fr]=Ne(et),[Ls,H]=Fr(et),jr=e=>{const{__scopeDialog:t,children:n,open:r,defaultOpen:o,onOpenChange:i,modal:s=!0}=e,c=E(null),a=E(null),[u,l]=Oe({prop:r,defaultProp:o??!1,onChange:i,caller:et});return p(Ls,{scope:t,triggerRef:c,contentRef:a,contentId:we(),titleId:we(),descriptionId:we(),open:u,onOpenChange:l,onOpenToggle:M(()=>l(d=>!d),[l]),modal:s,children:n})};jr.displayName=et;var Ur="DialogTrigger",Fs=N((e,t)=>{const{__scopeDialog:n,...r}=e,o=H(Ur,n),i=$(t,o.triggerRef);return p(z.button,{type:"button","aria-haspopup":"dialog","aria-expanded":o.open,"aria-controls":o.contentId,"data-state":xt(o.open),...r,ref:i,onClick:j(e.onClick,o.onOpenToggle)})});Fs.displayName=Ur;var js="DialogPortal",[na,Wr]=Fr(js,{forceMount:void 0}),Ve="DialogOverlay",Us=N((e,t)=>{const n=Wr(Ve,e.__scopeDialog),{forceMount:r=n.forceMount,...o}=e,i=H(Ve,e.__scopeDialog);return i.modal?p(qe,{present:r||i.open,children:p(Bs,{...o,ref:t})}):null});Us.displayName=Ve;var Ws=He("DialogOverlay.RemoveScroll"),Bs=N((e,t)=>{const{__scopeDialog:n,...r}=e,o=H(Ve,n);return p($r,{as:Ws,allowPinchZoom:!0,shards:[o.contentRef],children:p(z.div,{"data-state":xt(o.open),...r,ref:t,style:{pointerEvents:"auto",...r.style}})})}),ne="DialogContent",Br=N((e,t)=>{const n=Wr(ne,e.__scopeDialog),{forceMount:r=n.forceMount,...o}=e,i=H(ne,e.__scopeDialog);return p(qe,{present:r||i.open,children:i.modal?p(Hs,{...o,ref:t}):p(Zs,{...o,ref:t})})});Br.displayName=ne;var Hs=N((e,t)=>{const n=H(ne,e.__scopeDialog),r=E(null),o=$(t,n.contentRef,r);return P(()=>{const i=r.current;if(i)return $s(i)},[]),p(Hr,{...e,ref:o,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:j(e.onCloseAutoFocus,i=>{i.preventDefault(),n.triggerRef.current?.focus()}),onPointerDownOutside:j(e.onPointerDownOutside,i=>{const s=i.detail.originalEvent,c=s.button===0&&s.ctrlKey===!0;(s.button===2||c)&&i.preventDefault()}),onFocusOutside:j(e.onFocusOutside,i=>i.preventDefault())})}),Zs=N((e,t)=>{const n=H(ne,e.__scopeDialog),r=E(!1),o=E(!1);return p(Hr,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:i=>{e.onCloseAutoFocus?.(i),i.defaultPrevented||(r.current||n.triggerRef.current?.focus(),i.preventDefault()),r.current=!1,o.current=!1},onInteractOutside:i=>{e.onInteractOutside?.(i),i.defaultPrevented||(r.current=!0,i.detail.originalEvent.type==="pointerdown"&&(o.current=!0));const s=i.target;n.triggerRef.current?.contains(s)&&i.preventDefault(),i.detail.originalEvent.type==="focusin"&&o.current&&i.preventDefault()}})}),Hr=N((e,t)=>{const{__scopeDialog:n,trapFocus:r,onOpenAutoFocus:o,onCloseAutoFocus:i,...s}=e,c=H(ne,n),a=E(null),u=$(t,a);return Xc(),p(h.Fragment,{children:[p(Ar,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:o,onUnmountAutoFocus:i,children:p(Nr,{role:"dialog",id:c.contentId,"aria-describedby":c.descriptionId,"aria-labelledby":c.titleId,"data-state":xt(c.open),...s,ref:u,onDismiss:()=>c.onOpenChange(!1)})}),p(h.Fragment,{children:[p(Vs,{titleId:c.titleId}),p(qs,{contentRef:a,descriptionId:c.descriptionId})]})]})}),Dt="DialogTitle",Zr=N((e,t)=>{const{__scopeDialog:n,...r}=e,o=H(Dt,n);return p(z.h2,{id:o.titleId,...r,ref:t})});Zr.displayName=Dt;var Vr="DialogDescription",Kr=N((e,t)=>{const{__scopeDialog:n,...r}=e,o=H(Vr,n);return p(z.p,{id:o.descriptionId,...r,ref:t})});Kr.displayName=Vr;var qr="DialogClose",Gr=N((e,t)=>{const{__scopeDialog:n,...r}=e,o=H(qr,n);return p(z.button,{type:"button",...r,ref:t,onClick:j(e.onClick,()=>o.onOpenChange(!1))})});Gr.displayName=qr;function xt(e){return e?"open":"closed"}var Yr="DialogTitleWarning",[ra,Xr]=Ti(Yr,{contentName:ne,titleName:Dt,docsSlug:"dialog"}),Vs=({titleId:e})=>{const t=Xr(Yr),n=`\`${t.contentName}\` requires a \`${t.titleName}\` for the component to be accessible for screen reader users.
|
|
42
|
+
|
|
43
|
+
If you want to hide the \`${t.titleName}\`, you can wrap it with our VisuallyHidden component.
|
|
44
|
+
|
|
45
|
+
For more information, see https://radix-ui.com/primitives/docs/components/${t.docsSlug}`;return P(()=>{e&&(document.getElementById(e)||console.error(n))},[n,e]),null},Ks="DialogDescriptionWarning",qs=({contentRef:e,descriptionId:t})=>{const r=`Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${Xr(Ks).contentName}}.`;return P(()=>{const o=e.current?.getAttribute("aria-describedby");t&&o&&(document.getElementById(t)||console.warn(r))},[r,e,t]),null},Gs=jr,Ys=Br,Xs=Zr,Js=Kr,yn=Gr;const Qs=({noTarget:e=!0,heading:t="We use cookies.",subheading:n="Please define your selection below.",selectLabel:r="Select",hideLabel:o="Hide",saveLabel:i="Save selection",declineLabel:s="Decline all",defaultSettingsOpen:c=!0,privacyPolicy:a,items:u})=>{const{onSave:l,onDeclineAll:d,selectionTaken:_}=Sr(),[g,y]=I(void 0),[f,v]=I(c);return p(Gs,{open:!_,children:p(Ys,{className:Le({[F.root]:!0,[F.noTarget]:e}),children:p(rr,{open:f,onOpenChange:v,className:F.collapsible,children:[p("div",{className:F.header,children:[p("div",{className:F.heading,children:[p(Xs,{asChild:!0,children:p(te,{weight:"bold",children:t})}),p(Js,{asChild:!0,children:p(te,{size:"caption",color:"muted",children:n})})]}),p(or,{asChild:!0,children:p(rt,{variant:"ghost",children:[f?o:r," ",p(Cc,{size:12,className:Le({[F.chevron]:!0,[F.open]:f})})]})})]}),p(ir,{className:Le({[F.settings]:!0}),children:p(lc,{type:"single",collapsible:!0,value:g,onValueChange:y,children:u.map(m=>p(Mc,{...m,openItem:g},m.value))})}),p("div",{className:F.footer,children:[p("div",{className:F.legal,children:a&&p(te,{size:"caption",children:p("a",{href:a.url,target:"_blank",children:a.label})})}),p("div",{className:F.actions,children:[p(yn,{asChild:!0,children:p(rt,{variant:"neutral",onClick:()=>d(),children:s})}),p(yn,{asChild:!0,children:p(rt,{variant:"brand",onClick:()=>l(),children:i})})]})]})]})})})},ea=({localStorageKey:e="cb-selection",items:t,...n})=>{const r=D(()=>t.filter(o=>!o.required).map(o=>({value:o.value,script:o.script,defaultSelected:o.defaultSelected,required:o.required})),[t]);return p(xc,{items:r,localStorageKey:e,children:p(Qs,{items:t,...n})})};function ta(e,t){const n=t===void 0;let r;if(typeof t=="string"){const o=document.querySelector(t);if(!o)throw new Error(`Element with selector "${t}" not found`);r=o}else r=t;h.render(p(ea,{noTarget:n,...e}),r??document.body)}exports.mountBanner=ta;
|