@uninspired/cookie-banner 0.0.5 → 0.0.7

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.
Files changed (40) hide show
  1. package/dist/components/Banner/Banner.js +35 -0
  2. package/dist/components/Banner/index.js +1 -0
  3. package/dist/components/BannerItem/BannerItem.js +24 -0
  4. package/dist/components/BannerItem/index.js +1 -0
  5. package/dist/components/Button/Button.js +6 -0
  6. package/dist/components/Button/index.js +1 -0
  7. package/dist/components/Switch/Switch.js +7 -0
  8. package/dist/components/Switch/index.js +1 -0
  9. package/dist/components/Text/Text.js +9 -0
  10. package/dist/components/Text/index.js +1 -0
  11. package/dist/contexts/SelectionContext.js +101 -0
  12. package/dist/react/index.cjs +969 -345
  13. package/dist/react/index.d.ts +2 -2
  14. package/dist/react/index.js +965 -341
  15. package/dist/react.js +1 -0
  16. package/dist/script/index.cjs +1 -1
  17. package/dist/script/index.js +40 -40
  18. package/dist/script.js +1 -0
  19. package/dist/types/components/Banner/Banner.d.ts +21 -0
  20. package/dist/types/components/Banner/index.d.ts +1 -0
  21. package/dist/types/components/BannerItem/BannerItem.d.ts +23 -0
  22. package/dist/types/components/BannerItem/index.d.ts +1 -0
  23. package/dist/types/components/Button/Button.d.ts +5 -0
  24. package/dist/types/components/Button/index.d.ts +1 -0
  25. package/dist/types/components/Switch/Switch.d.ts +5 -0
  26. package/dist/types/components/Switch/index.d.ts +1 -0
  27. package/dist/types/components/Text/Text.d.ts +8 -0
  28. package/dist/types/components/Text/index.d.ts +1 -0
  29. package/dist/types/contexts/SelectionContext.d.ts +23 -0
  30. package/dist/types/react.d.ts +1 -0
  31. package/dist/types/script.d.ts +1 -0
  32. package/dist/types/utils/classes.d.ts +2 -0
  33. package/dist/types/utils/mountBanner.d.ts +2 -0
  34. package/dist/types/utils/scriptDefinition.d.ts +35 -0
  35. package/dist/types/utils/selection.d.ts +3 -0
  36. package/dist/utils/classes.js +9 -0
  37. package/dist/utils/mountBanner.js +18 -0
  38. package/dist/utils/scriptDefinition.js +21 -0
  39. package/dist/utils/selection.js +2 -0
  40. package/package.json +6 -6
@@ -1,304 +1,27 @@
1
1
  import * as React from "react";
2
- import React__default, { forwardRef, createElement, useMemo, useState, useEffect, useCallback, createContext, useContext } from "react";
2
+ import React__default, { forwardRef, createElement, useMemo, useState, useEffect, useCallback, useContext, createContext } from "react";
3
3
  import * as ReactDOM from "react-dom";
4
- var jsxRuntime = { exports: {} };
5
- var reactJsxRuntime_production = {};
6
- var hasRequiredReactJsxRuntime_production;
7
- function requireReactJsxRuntime_production() {
8
- if (hasRequiredReactJsxRuntime_production) return reactJsxRuntime_production;
9
- hasRequiredReactJsxRuntime_production = 1;
10
- var REACT_ELEMENT_TYPE = /* @__PURE__ */ Symbol.for("react.transitional.element"), REACT_FRAGMENT_TYPE = /* @__PURE__ */ Symbol.for("react.fragment");
11
- function jsxProd(type, config2, maybeKey) {
12
- var key = null;
13
- void 0 !== maybeKey && (key = "" + maybeKey);
14
- void 0 !== config2.key && (key = "" + config2.key);
15
- if ("key" in config2) {
16
- maybeKey = {};
17
- for (var propName in config2)
18
- "key" !== propName && (maybeKey[propName] = config2[propName]);
19
- } else maybeKey = config2;
20
- config2 = maybeKey.ref;
21
- return {
22
- $$typeof: REACT_ELEMENT_TYPE,
23
- type,
24
- key,
25
- ref: void 0 !== config2 ? config2 : null,
26
- props: maybeKey
27
- };
28
- }
29
- reactJsxRuntime_production.Fragment = REACT_FRAGMENT_TYPE;
30
- reactJsxRuntime_production.jsx = jsxProd;
31
- reactJsxRuntime_production.jsxs = jsxProd;
32
- return reactJsxRuntime_production;
33
- }
34
- var reactJsxRuntime_development = {};
35
- var hasRequiredReactJsxRuntime_development;
36
- function requireReactJsxRuntime_development() {
37
- if (hasRequiredReactJsxRuntime_development) return reactJsxRuntime_development;
38
- hasRequiredReactJsxRuntime_development = 1;
39
- "production" !== process.env.NODE_ENV && (function() {
40
- function getComponentNameFromType(type) {
41
- if (null == type) return null;
42
- if ("function" === typeof type)
43
- return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null;
44
- if ("string" === typeof type) return type;
45
- switch (type) {
46
- case REACT_FRAGMENT_TYPE:
47
- return "Fragment";
48
- case REACT_PROFILER_TYPE:
49
- return "Profiler";
50
- case REACT_STRICT_MODE_TYPE:
51
- return "StrictMode";
52
- case REACT_SUSPENSE_TYPE:
53
- return "Suspense";
54
- case REACT_SUSPENSE_LIST_TYPE:
55
- return "SuspenseList";
56
- case REACT_ACTIVITY_TYPE:
57
- return "Activity";
58
- }
59
- if ("object" === typeof type)
60
- switch ("number" === typeof type.tag && console.error(
61
- "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
62
- ), type.$$typeof) {
63
- case REACT_PORTAL_TYPE:
64
- return "Portal";
65
- case REACT_CONTEXT_TYPE:
66
- return type.displayName || "Context";
67
- case REACT_CONSUMER_TYPE:
68
- return (type._context.displayName || "Context") + ".Consumer";
69
- case REACT_FORWARD_REF_TYPE:
70
- var innerType = type.render;
71
- type = type.displayName;
72
- type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef");
73
- return type;
74
- case REACT_MEMO_TYPE:
75
- return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo";
76
- case REACT_LAZY_TYPE:
77
- innerType = type._payload;
78
- type = type._init;
79
- try {
80
- return getComponentNameFromType(type(innerType));
81
- } catch (x) {
82
- }
83
- }
84
- return null;
85
- }
86
- function testStringCoercion(value) {
87
- return "" + value;
88
- }
89
- function checkKeyStringCoercion(value) {
90
- try {
91
- var JSCompiler_inline_result = false;
92
- } catch (e) {
93
- JSCompiler_inline_result = true;
94
- }
95
- if (JSCompiler_inline_result) {
96
- JSCompiler_inline_result = console;
97
- var JSCompiler_temp_const = JSCompiler_inline_result.error;
98
- var JSCompiler_inline_result$jscomp$0 = "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
99
- JSCompiler_temp_const.call(
100
- JSCompiler_inline_result,
101
- "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
102
- JSCompiler_inline_result$jscomp$0
103
- );
104
- return testStringCoercion(value);
105
- }
106
- }
107
- function getTaskName(type) {
108
- if (type === REACT_FRAGMENT_TYPE) return "<>";
109
- if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE)
110
- return "<...>";
111
- try {
112
- var name = getComponentNameFromType(type);
113
- return name ? "<" + name + ">" : "<...>";
114
- } catch (x) {
115
- return "<...>";
116
- }
117
- }
118
- function getOwner() {
119
- var dispatcher = ReactSharedInternals.A;
120
- return null === dispatcher ? null : dispatcher.getOwner();
121
- }
122
- function UnknownOwner() {
123
- return Error("react-stack-top-frame");
124
- }
125
- function hasValidKey(config2) {
126
- if (hasOwnProperty.call(config2, "key")) {
127
- var getter = Object.getOwnPropertyDescriptor(config2, "key").get;
128
- if (getter && getter.isReactWarning) return false;
129
- }
130
- return void 0 !== config2.key;
131
- }
132
- function defineKeyPropWarningGetter(props, displayName) {
133
- function warnAboutAccessingKey() {
134
- specialPropKeyWarningShown || (specialPropKeyWarningShown = true, console.error(
135
- "%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",
136
- displayName
137
- ));
138
- }
139
- warnAboutAccessingKey.isReactWarning = true;
140
- Object.defineProperty(props, "key", {
141
- get: warnAboutAccessingKey,
142
- configurable: true
143
- });
144
- }
145
- function elementRefGetterWithDeprecationWarning() {
146
- var componentName = getComponentNameFromType(this.type);
147
- didWarnAboutElementRef[componentName] || (didWarnAboutElementRef[componentName] = true, console.error(
148
- "Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."
149
- ));
150
- componentName = this.props.ref;
151
- return void 0 !== componentName ? componentName : null;
152
- }
153
- function ReactElement(type, key, props, owner, debugStack, debugTask) {
154
- var refProp = props.ref;
155
- type = {
156
- $$typeof: REACT_ELEMENT_TYPE,
157
- type,
158
- key,
159
- props,
160
- _owner: owner
161
- };
162
- null !== (void 0 !== refProp ? refProp : null) ? Object.defineProperty(type, "ref", {
163
- enumerable: false,
164
- get: elementRefGetterWithDeprecationWarning
165
- }) : Object.defineProperty(type, "ref", { enumerable: false, value: null });
166
- type._store = {};
167
- Object.defineProperty(type._store, "validated", {
168
- configurable: false,
169
- enumerable: false,
170
- writable: true,
171
- value: 0
172
- });
173
- Object.defineProperty(type, "_debugInfo", {
174
- configurable: false,
175
- enumerable: false,
176
- writable: true,
177
- value: null
178
- });
179
- Object.defineProperty(type, "_debugStack", {
180
- configurable: false,
181
- enumerable: false,
182
- writable: true,
183
- value: debugStack
184
- });
185
- Object.defineProperty(type, "_debugTask", {
186
- configurable: false,
187
- enumerable: false,
188
- writable: true,
189
- value: debugTask
190
- });
191
- Object.freeze && (Object.freeze(type.props), Object.freeze(type));
192
- return type;
193
- }
194
- function jsxDEVImpl(type, config2, maybeKey, isStaticChildren, debugStack, debugTask) {
195
- var children = config2.children;
196
- if (void 0 !== children)
197
- if (isStaticChildren)
198
- if (isArrayImpl(children)) {
199
- for (isStaticChildren = 0; isStaticChildren < children.length; isStaticChildren++)
200
- validateChildKeys(children[isStaticChildren]);
201
- Object.freeze && Object.freeze(children);
202
- } else
203
- console.error(
204
- "React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."
205
- );
206
- else validateChildKeys(children);
207
- if (hasOwnProperty.call(config2, "key")) {
208
- children = getComponentNameFromType(type);
209
- var keys = Object.keys(config2).filter(function(k) {
210
- return "key" !== k;
211
- });
212
- isStaticChildren = 0 < keys.length ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" : "{key: someKey}";
213
- didWarnAboutKeySpread[children + isStaticChildren] || (keys = 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}", console.error(
214
- 'A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />',
215
- isStaticChildren,
216
- children,
217
- keys,
218
- children
219
- ), didWarnAboutKeySpread[children + isStaticChildren] = true);
220
- }
221
- children = null;
222
- void 0 !== maybeKey && (checkKeyStringCoercion(maybeKey), children = "" + maybeKey);
223
- hasValidKey(config2) && (checkKeyStringCoercion(config2.key), children = "" + config2.key);
224
- if ("key" in config2) {
225
- maybeKey = {};
226
- for (var propName in config2)
227
- "key" !== propName && (maybeKey[propName] = config2[propName]);
228
- } else maybeKey = config2;
229
- children && defineKeyPropWarningGetter(
230
- maybeKey,
231
- "function" === typeof type ? type.displayName || type.name || "Unknown" : type
232
- );
233
- return ReactElement(
234
- type,
235
- children,
236
- maybeKey,
237
- getOwner(),
238
- debugStack,
239
- debugTask
240
- );
241
- }
242
- function validateChildKeys(node) {
243
- isValidElement(node) ? node._store && (node._store.validated = 1) : "object" === typeof node && null !== node && node.$$typeof === REACT_LAZY_TYPE && ("fulfilled" === node._payload.status ? isValidElement(node._payload.value) && node._payload.value._store && (node._payload.value._store.validated = 1) : node._store && (node._store.validated = 1));
244
- }
245
- function isValidElement(object2) {
246
- return "object" === typeof object2 && null !== object2 && object2.$$typeof === REACT_ELEMENT_TYPE;
247
- }
248
- var React2 = React__default, REACT_ELEMENT_TYPE = /* @__PURE__ */ Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = /* @__PURE__ */ Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = /* @__PURE__ */ Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = /* @__PURE__ */ Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = /* @__PURE__ */ Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = /* @__PURE__ */ Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = /* @__PURE__ */ Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = /* @__PURE__ */ Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = /* @__PURE__ */ Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = /* @__PURE__ */ Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = /* @__PURE__ */ Symbol.for("react.memo"), REACT_LAZY_TYPE = /* @__PURE__ */ Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = /* @__PURE__ */ Symbol.for("react.activity"), REACT_CLIENT_REFERENCE = /* @__PURE__ */ Symbol.for("react.client.reference"), ReactSharedInternals = React2.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, hasOwnProperty = Object.prototype.hasOwnProperty, isArrayImpl = Array.isArray, createTask = console.createTask ? console.createTask : function() {
249
- return null;
250
- };
251
- React2 = {
252
- react_stack_bottom_frame: function(callStackForError) {
253
- return callStackForError();
254
- }
255
- };
256
- var specialPropKeyWarningShown;
257
- var didWarnAboutElementRef = {};
258
- var unknownOwnerDebugStack = React2.react_stack_bottom_frame.bind(
259
- React2,
260
- UnknownOwner
261
- )();
262
- var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
263
- var didWarnAboutKeySpread = {};
264
- reactJsxRuntime_development.Fragment = REACT_FRAGMENT_TYPE;
265
- reactJsxRuntime_development.jsx = function(type, config2, maybeKey) {
266
- var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
267
- return jsxDEVImpl(
268
- type,
269
- config2,
270
- maybeKey,
271
- false,
272
- trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
273
- trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
274
- );
275
- };
276
- reactJsxRuntime_development.jsxs = function(type, config2, maybeKey) {
277
- var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
278
- return jsxDEVImpl(
279
- type,
280
- config2,
281
- maybeKey,
282
- true,
283
- trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
284
- trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
285
- );
286
- };
287
- })();
288
- return reactJsxRuntime_development;
4
+ var l;
5
+ function k(n) {
6
+ return n.children;
289
7
  }
290
- var hasRequiredJsxRuntime;
291
- function requireJsxRuntime() {
292
- if (hasRequiredJsxRuntime) return jsxRuntime.exports;
293
- hasRequiredJsxRuntime = 1;
294
- if (process.env.NODE_ENV === "production") {
295
- jsxRuntime.exports = /* @__PURE__ */ requireReactJsxRuntime_production();
296
- } else {
297
- jsxRuntime.exports = /* @__PURE__ */ requireReactJsxRuntime_development();
8
+ l = { __e: function(n, l2, u2, t) {
9
+ for (var i, r, o; l2 = l2.__; ) if ((i = l2.__c) && !i.__) try {
10
+ if ((r = i.constructor) && null != r.getDerivedStateFromError && (i.setState(r.getDerivedStateFromError(n)), o = i.__d), null != i.componentDidCatch && (i.componentDidCatch(n, t || {}), o = i.__d), o) return i.__E = i;
11
+ } catch (l3) {
12
+ n = l3;
298
13
  }
299
- return jsxRuntime.exports;
14
+ throw n;
15
+ } }, "function" == typeof Promise ? Promise.prototype.then.bind(Promise.resolve()) : setTimeout;
16
+ var f = 0;
17
+ function u(e, t, n, o, i, u2) {
18
+ t || (t = {});
19
+ var a, c, p = t;
20
+ if ("ref" in p) for (c in p = {}, t) "ref" == c ? a = t[c] : p[c] = t[c];
21
+ var l$1 = { type: e, props: p, key: n, ref: a, __k: null, __: null, __b: 0, __e: null, __c: null, constructor: void 0, __v: --f, __i: -1, __u: 0, __source: i, __self: u2 };
22
+ if ("function" == typeof e && (a = e.defaultProps)) for (c in a) void 0 === p[c] && (p[c] = a[c]);
23
+ return l.vnode && l.vnode(l$1), l$1;
300
24
  }
301
- var jsxRuntimeExports = /* @__PURE__ */ requireJsxRuntime();
302
25
  function cls(...classes2) {
303
26
  return classes2.filter(Boolean).join(" ");
304
27
  }
@@ -316,7 +39,7 @@ const classes$4 = {
316
39
  ghost
317
40
  };
318
41
  const Button = ({ variant = "neutral", ...rest }) => {
319
- return /* @__PURE__ */ jsxRuntimeExports.jsx("button", { className: cls(classes$4.root, classes$4[variant]), ...rest });
42
+ return /* @__PURE__ */ u("button", { className: cls(classes$4.root, classes$4[variant]), ...rest });
320
43
  };
321
44
  const root$3 = "_root_14l5h_1";
322
45
  const muted = "_muted_14l5h_4";
@@ -342,7 +65,7 @@ const Text = ({
342
65
  const Component = as ?? "span";
343
66
  return (
344
67
  // @ts-ignore
345
- /* @__PURE__ */ jsxRuntimeExports.jsx(
68
+ /* @__PURE__ */ u(
346
69
  Component,
347
70
  {
348
71
  className: cls(
@@ -416,9 +139,9 @@ function $constructor(name, initializer2, params) {
416
139
  const proto = _.prototype;
417
140
  const keys = Object.keys(proto);
418
141
  for (let i = 0; i < keys.length; i++) {
419
- const k = keys[i];
420
- if (!(k in inst)) {
421
- inst[k] = proto[k].bind(inst);
142
+ const k2 = keys[i];
143
+ if (!(k2 in inst)) {
144
+ inst[k2] = proto[k2].bind(inst);
422
145
  }
423
146
  }
424
147
  }
@@ -534,8 +257,8 @@ function normalizeParams(_params) {
534
257
  return {};
535
258
  }
536
259
  function optionalKeys(shape) {
537
- return Object.keys(shape).filter((k) => {
538
- return shape[k]._zod.optin === "optional" && shape[k]._zod.optout === "optional";
260
+ return Object.keys(shape).filter((k2) => {
261
+ return shape[k2]._zod.optin === "optional" && shape[k2]._zod.optout === "optional";
539
262
  });
540
263
  }
541
264
  function aborted(x, startIndex = 0) {
@@ -818,9 +541,9 @@ function handlePropertyResult(result, final, key, input, isOptionalOut) {
818
541
  }
819
542
  function normalizeDef(def) {
820
543
  const keys = Object.keys(def.shape);
821
- for (const k of keys) {
822
- if (!def.shape?.[k]?._zod?.traits?.has("$ZodType")) {
823
- throw new Error(`Invalid element at key "${k}": expected a Zod schema`);
544
+ for (const k2 of keys) {
545
+ if (!def.shape?.[k2]?._zod?.traits?.has("$ZodType")) {
546
+ throw new Error(`Invalid element at key "${k2}": expected a Zod schema`);
824
547
  }
825
548
  }
826
549
  const okeys = optionalKeys(def.shape);
@@ -1005,11 +728,11 @@ const $ZodDiscriminatedUnion = /* @__PURE__ */ $constructor("$ZodDiscriminatedUn
1005
728
  const pv = option._zod.propValues;
1006
729
  if (!pv || Object.keys(pv).length === 0)
1007
730
  throw new Error(`Invalid discriminated union option at index "${def.options.indexOf(option)}"`);
1008
- for (const [k, v] of Object.entries(pv)) {
1009
- if (!propValues[k])
1010
- propValues[k] = /* @__PURE__ */ new Set();
731
+ for (const [k2, v] of Object.entries(pv)) {
732
+ if (!propValues[k2])
733
+ propValues[k2] = /* @__PURE__ */ new Set();
1011
734
  for (const val of v) {
1012
- propValues[k].add(val);
735
+ propValues[k2].add(val);
1013
736
  }
1014
737
  }
1015
738
  }
@@ -1362,6 +1085,907 @@ const scriptDefinitionSchema = /* @__PURE__ */ discriminatedUnion("variant", [
1362
1085
  remoteScriptDefinitionSchema,
1363
1086
  inlineScriptDefinitionSchema
1364
1087
  ]);
1088
+ var jsxRuntime = { exports: {} };
1089
+ var reactJsxRuntime_production_min = {};
1090
+ var hasRequiredReactJsxRuntime_production_min;
1091
+ function requireReactJsxRuntime_production_min() {
1092
+ if (hasRequiredReactJsxRuntime_production_min) return reactJsxRuntime_production_min;
1093
+ hasRequiredReactJsxRuntime_production_min = 1;
1094
+ var f2 = React__default, k2 = /* @__PURE__ */ Symbol.for("react.element"), l2 = /* @__PURE__ */ Symbol.for("react.fragment"), m = Object.prototype.hasOwnProperty, n = f2.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, p = { key: true, ref: true, __self: true, __source: true };
1095
+ function q(c, a, g) {
1096
+ var b, d = {}, e = null, h = null;
1097
+ void 0 !== g && (e = "" + g);
1098
+ void 0 !== a.key && (e = "" + a.key);
1099
+ void 0 !== a.ref && (h = a.ref);
1100
+ for (b in a) m.call(a, b) && !p.hasOwnProperty(b) && (d[b] = a[b]);
1101
+ if (c && c.defaultProps) for (b in a = c.defaultProps, a) void 0 === d[b] && (d[b] = a[b]);
1102
+ return { $$typeof: k2, type: c, key: e, ref: h, props: d, _owner: n.current };
1103
+ }
1104
+ reactJsxRuntime_production_min.Fragment = l2;
1105
+ reactJsxRuntime_production_min.jsx = q;
1106
+ reactJsxRuntime_production_min.jsxs = q;
1107
+ return reactJsxRuntime_production_min;
1108
+ }
1109
+ var reactJsxRuntime_development = {};
1110
+ var hasRequiredReactJsxRuntime_development;
1111
+ function requireReactJsxRuntime_development() {
1112
+ if (hasRequiredReactJsxRuntime_development) return reactJsxRuntime_development;
1113
+ hasRequiredReactJsxRuntime_development = 1;
1114
+ if (process.env.NODE_ENV !== "production") {
1115
+ (function() {
1116
+ var React2 = React__default;
1117
+ var REACT_ELEMENT_TYPE = /* @__PURE__ */ Symbol.for("react.element");
1118
+ var REACT_PORTAL_TYPE = /* @__PURE__ */ Symbol.for("react.portal");
1119
+ var REACT_FRAGMENT_TYPE = /* @__PURE__ */ Symbol.for("react.fragment");
1120
+ var REACT_STRICT_MODE_TYPE = /* @__PURE__ */ Symbol.for("react.strict_mode");
1121
+ var REACT_PROFILER_TYPE = /* @__PURE__ */ Symbol.for("react.profiler");
1122
+ var REACT_PROVIDER_TYPE = /* @__PURE__ */ Symbol.for("react.provider");
1123
+ var REACT_CONTEXT_TYPE = /* @__PURE__ */ Symbol.for("react.context");
1124
+ var REACT_FORWARD_REF_TYPE = /* @__PURE__ */ Symbol.for("react.forward_ref");
1125
+ var REACT_SUSPENSE_TYPE = /* @__PURE__ */ Symbol.for("react.suspense");
1126
+ var REACT_SUSPENSE_LIST_TYPE = /* @__PURE__ */ Symbol.for("react.suspense_list");
1127
+ var REACT_MEMO_TYPE = /* @__PURE__ */ Symbol.for("react.memo");
1128
+ var REACT_LAZY_TYPE = /* @__PURE__ */ Symbol.for("react.lazy");
1129
+ var REACT_OFFSCREEN_TYPE = /* @__PURE__ */ Symbol.for("react.offscreen");
1130
+ var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
1131
+ var FAUX_ITERATOR_SYMBOL = "@@iterator";
1132
+ function getIteratorFn(maybeIterable) {
1133
+ if (maybeIterable === null || typeof maybeIterable !== "object") {
1134
+ return null;
1135
+ }
1136
+ var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];
1137
+ if (typeof maybeIterator === "function") {
1138
+ return maybeIterator;
1139
+ }
1140
+ return null;
1141
+ }
1142
+ var ReactSharedInternals = React2.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
1143
+ function error(format) {
1144
+ {
1145
+ {
1146
+ for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
1147
+ args[_key2 - 1] = arguments[_key2];
1148
+ }
1149
+ printWarning("error", format, args);
1150
+ }
1151
+ }
1152
+ }
1153
+ function printWarning(level, format, args) {
1154
+ {
1155
+ var ReactDebugCurrentFrame2 = ReactSharedInternals.ReactDebugCurrentFrame;
1156
+ var stack = ReactDebugCurrentFrame2.getStackAddendum();
1157
+ if (stack !== "") {
1158
+ format += "%s";
1159
+ args = args.concat([stack]);
1160
+ }
1161
+ var argsWithFormat = args.map(function(item) {
1162
+ return String(item);
1163
+ });
1164
+ argsWithFormat.unshift("Warning: " + format);
1165
+ Function.prototype.apply.call(console[level], console, argsWithFormat);
1166
+ }
1167
+ }
1168
+ var enableScopeAPI = false;
1169
+ var enableCacheElement = false;
1170
+ var enableTransitionTracing = false;
1171
+ var enableLegacyHidden = false;
1172
+ var enableDebugTracing = false;
1173
+ var REACT_MODULE_REFERENCE;
1174
+ {
1175
+ REACT_MODULE_REFERENCE = /* @__PURE__ */ Symbol.for("react.module.reference");
1176
+ }
1177
+ function isValidElementType(type) {
1178
+ if (typeof type === "string" || typeof type === "function") {
1179
+ return true;
1180
+ }
1181
+ if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing) {
1182
+ return true;
1183
+ }
1184
+ if (typeof type === "object" && type !== null) {
1185
+ if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
1186
+ // types supported by any Flight configuration anywhere since
1187
+ // we don't know which Flight build this will end up being used
1188
+ // with.
1189
+ type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== void 0) {
1190
+ return true;
1191
+ }
1192
+ }
1193
+ return false;
1194
+ }
1195
+ function getWrappedName(outerType, innerType, wrapperName) {
1196
+ var displayName = outerType.displayName;
1197
+ if (displayName) {
1198
+ return displayName;
1199
+ }
1200
+ var functionName = innerType.displayName || innerType.name || "";
1201
+ return functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName;
1202
+ }
1203
+ function getContextName(type) {
1204
+ return type.displayName || "Context";
1205
+ }
1206
+ function getComponentNameFromType(type) {
1207
+ if (type == null) {
1208
+ return null;
1209
+ }
1210
+ {
1211
+ if (typeof type.tag === "number") {
1212
+ error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.");
1213
+ }
1214
+ }
1215
+ if (typeof type === "function") {
1216
+ return type.displayName || type.name || null;
1217
+ }
1218
+ if (typeof type === "string") {
1219
+ return type;
1220
+ }
1221
+ switch (type) {
1222
+ case REACT_FRAGMENT_TYPE:
1223
+ return "Fragment";
1224
+ case REACT_PORTAL_TYPE:
1225
+ return "Portal";
1226
+ case REACT_PROFILER_TYPE:
1227
+ return "Profiler";
1228
+ case REACT_STRICT_MODE_TYPE:
1229
+ return "StrictMode";
1230
+ case REACT_SUSPENSE_TYPE:
1231
+ return "Suspense";
1232
+ case REACT_SUSPENSE_LIST_TYPE:
1233
+ return "SuspenseList";
1234
+ }
1235
+ if (typeof type === "object") {
1236
+ switch (type.$$typeof) {
1237
+ case REACT_CONTEXT_TYPE:
1238
+ var context = type;
1239
+ return getContextName(context) + ".Consumer";
1240
+ case REACT_PROVIDER_TYPE:
1241
+ var provider = type;
1242
+ return getContextName(provider._context) + ".Provider";
1243
+ case REACT_FORWARD_REF_TYPE:
1244
+ return getWrappedName(type, type.render, "ForwardRef");
1245
+ case REACT_MEMO_TYPE:
1246
+ var outerName = type.displayName || null;
1247
+ if (outerName !== null) {
1248
+ return outerName;
1249
+ }
1250
+ return getComponentNameFromType(type.type) || "Memo";
1251
+ case REACT_LAZY_TYPE: {
1252
+ var lazyComponent = type;
1253
+ var payload = lazyComponent._payload;
1254
+ var init = lazyComponent._init;
1255
+ try {
1256
+ return getComponentNameFromType(init(payload));
1257
+ } catch (x) {
1258
+ return null;
1259
+ }
1260
+ }
1261
+ }
1262
+ }
1263
+ return null;
1264
+ }
1265
+ var assign = Object.assign;
1266
+ var disabledDepth = 0;
1267
+ var prevLog;
1268
+ var prevInfo;
1269
+ var prevWarn;
1270
+ var prevError;
1271
+ var prevGroup;
1272
+ var prevGroupCollapsed;
1273
+ var prevGroupEnd;
1274
+ function disabledLog() {
1275
+ }
1276
+ disabledLog.__reactDisabledLog = true;
1277
+ function disableLogs() {
1278
+ {
1279
+ if (disabledDepth === 0) {
1280
+ prevLog = console.log;
1281
+ prevInfo = console.info;
1282
+ prevWarn = console.warn;
1283
+ prevError = console.error;
1284
+ prevGroup = console.group;
1285
+ prevGroupCollapsed = console.groupCollapsed;
1286
+ prevGroupEnd = console.groupEnd;
1287
+ var props = {
1288
+ configurable: true,
1289
+ enumerable: true,
1290
+ value: disabledLog,
1291
+ writable: true
1292
+ };
1293
+ Object.defineProperties(console, {
1294
+ info: props,
1295
+ log: props,
1296
+ warn: props,
1297
+ error: props,
1298
+ group: props,
1299
+ groupCollapsed: props,
1300
+ groupEnd: props
1301
+ });
1302
+ }
1303
+ disabledDepth++;
1304
+ }
1305
+ }
1306
+ function reenableLogs() {
1307
+ {
1308
+ disabledDepth--;
1309
+ if (disabledDepth === 0) {
1310
+ var props = {
1311
+ configurable: true,
1312
+ enumerable: true,
1313
+ writable: true
1314
+ };
1315
+ Object.defineProperties(console, {
1316
+ log: assign({}, props, {
1317
+ value: prevLog
1318
+ }),
1319
+ info: assign({}, props, {
1320
+ value: prevInfo
1321
+ }),
1322
+ warn: assign({}, props, {
1323
+ value: prevWarn
1324
+ }),
1325
+ error: assign({}, props, {
1326
+ value: prevError
1327
+ }),
1328
+ group: assign({}, props, {
1329
+ value: prevGroup
1330
+ }),
1331
+ groupCollapsed: assign({}, props, {
1332
+ value: prevGroupCollapsed
1333
+ }),
1334
+ groupEnd: assign({}, props, {
1335
+ value: prevGroupEnd
1336
+ })
1337
+ });
1338
+ }
1339
+ if (disabledDepth < 0) {
1340
+ error("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
1341
+ }
1342
+ }
1343
+ }
1344
+ var ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;
1345
+ var prefix;
1346
+ function describeBuiltInComponentFrame(name, source, ownerFn) {
1347
+ {
1348
+ if (prefix === void 0) {
1349
+ try {
1350
+ throw Error();
1351
+ } catch (x) {
1352
+ var match = x.stack.trim().match(/\n( *(at )?)/);
1353
+ prefix = match && match[1] || "";
1354
+ }
1355
+ }
1356
+ return "\n" + prefix + name;
1357
+ }
1358
+ }
1359
+ var reentry = false;
1360
+ var componentFrameCache;
1361
+ {
1362
+ var PossiblyWeakMap = typeof WeakMap === "function" ? WeakMap : Map;
1363
+ componentFrameCache = new PossiblyWeakMap();
1364
+ }
1365
+ function describeNativeComponentFrame(fn, construct) {
1366
+ if (!fn || reentry) {
1367
+ return "";
1368
+ }
1369
+ {
1370
+ var frame = componentFrameCache.get(fn);
1371
+ if (frame !== void 0) {
1372
+ return frame;
1373
+ }
1374
+ }
1375
+ var control;
1376
+ reentry = true;
1377
+ var previousPrepareStackTrace = Error.prepareStackTrace;
1378
+ Error.prepareStackTrace = void 0;
1379
+ var previousDispatcher;
1380
+ {
1381
+ previousDispatcher = ReactCurrentDispatcher.current;
1382
+ ReactCurrentDispatcher.current = null;
1383
+ disableLogs();
1384
+ }
1385
+ try {
1386
+ if (construct) {
1387
+ var Fake = function() {
1388
+ throw Error();
1389
+ };
1390
+ Object.defineProperty(Fake.prototype, "props", {
1391
+ set: function() {
1392
+ throw Error();
1393
+ }
1394
+ });
1395
+ if (typeof Reflect === "object" && Reflect.construct) {
1396
+ try {
1397
+ Reflect.construct(Fake, []);
1398
+ } catch (x) {
1399
+ control = x;
1400
+ }
1401
+ Reflect.construct(fn, [], Fake);
1402
+ } else {
1403
+ try {
1404
+ Fake.call();
1405
+ } catch (x) {
1406
+ control = x;
1407
+ }
1408
+ fn.call(Fake.prototype);
1409
+ }
1410
+ } else {
1411
+ try {
1412
+ throw Error();
1413
+ } catch (x) {
1414
+ control = x;
1415
+ }
1416
+ fn();
1417
+ }
1418
+ } catch (sample) {
1419
+ if (sample && control && typeof sample.stack === "string") {
1420
+ var sampleLines = sample.stack.split("\n");
1421
+ var controlLines = control.stack.split("\n");
1422
+ var s = sampleLines.length - 1;
1423
+ var c = controlLines.length - 1;
1424
+ while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
1425
+ c--;
1426
+ }
1427
+ for (; s >= 1 && c >= 0; s--, c--) {
1428
+ if (sampleLines[s] !== controlLines[c]) {
1429
+ if (s !== 1 || c !== 1) {
1430
+ do {
1431
+ s--;
1432
+ c--;
1433
+ if (c < 0 || sampleLines[s] !== controlLines[c]) {
1434
+ var _frame = "\n" + sampleLines[s].replace(" at new ", " at ");
1435
+ if (fn.displayName && _frame.includes("<anonymous>")) {
1436
+ _frame = _frame.replace("<anonymous>", fn.displayName);
1437
+ }
1438
+ {
1439
+ if (typeof fn === "function") {
1440
+ componentFrameCache.set(fn, _frame);
1441
+ }
1442
+ }
1443
+ return _frame;
1444
+ }
1445
+ } while (s >= 1 && c >= 0);
1446
+ }
1447
+ break;
1448
+ }
1449
+ }
1450
+ }
1451
+ } finally {
1452
+ reentry = false;
1453
+ {
1454
+ ReactCurrentDispatcher.current = previousDispatcher;
1455
+ reenableLogs();
1456
+ }
1457
+ Error.prepareStackTrace = previousPrepareStackTrace;
1458
+ }
1459
+ var name = fn ? fn.displayName || fn.name : "";
1460
+ var syntheticFrame = name ? describeBuiltInComponentFrame(name) : "";
1461
+ {
1462
+ if (typeof fn === "function") {
1463
+ componentFrameCache.set(fn, syntheticFrame);
1464
+ }
1465
+ }
1466
+ return syntheticFrame;
1467
+ }
1468
+ function describeFunctionComponentFrame(fn, source, ownerFn) {
1469
+ {
1470
+ return describeNativeComponentFrame(fn, false);
1471
+ }
1472
+ }
1473
+ function shouldConstruct(Component) {
1474
+ var prototype = Component.prototype;
1475
+ return !!(prototype && prototype.isReactComponent);
1476
+ }
1477
+ function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
1478
+ if (type == null) {
1479
+ return "";
1480
+ }
1481
+ if (typeof type === "function") {
1482
+ {
1483
+ return describeNativeComponentFrame(type, shouldConstruct(type));
1484
+ }
1485
+ }
1486
+ if (typeof type === "string") {
1487
+ return describeBuiltInComponentFrame(type);
1488
+ }
1489
+ switch (type) {
1490
+ case REACT_SUSPENSE_TYPE:
1491
+ return describeBuiltInComponentFrame("Suspense");
1492
+ case REACT_SUSPENSE_LIST_TYPE:
1493
+ return describeBuiltInComponentFrame("SuspenseList");
1494
+ }
1495
+ if (typeof type === "object") {
1496
+ switch (type.$$typeof) {
1497
+ case REACT_FORWARD_REF_TYPE:
1498
+ return describeFunctionComponentFrame(type.render);
1499
+ case REACT_MEMO_TYPE:
1500
+ return describeUnknownElementTypeFrameInDEV(type.type);
1501
+ case REACT_LAZY_TYPE: {
1502
+ var lazyComponent = type;
1503
+ var payload = lazyComponent._payload;
1504
+ var init = lazyComponent._init;
1505
+ try {
1506
+ return describeUnknownElementTypeFrameInDEV(init(payload));
1507
+ } catch (x) {
1508
+ }
1509
+ }
1510
+ }
1511
+ }
1512
+ return "";
1513
+ }
1514
+ var hasOwnProperty = Object.prototype.hasOwnProperty;
1515
+ var loggedTypeFailures = {};
1516
+ var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
1517
+ function setCurrentlyValidatingElement(element) {
1518
+ {
1519
+ if (element) {
1520
+ var stack = describeUnknownElementTypeFrameInDEV(element.type);
1521
+ ReactDebugCurrentFrame.setExtraStackFrame(stack);
1522
+ } else {
1523
+ ReactDebugCurrentFrame.setExtraStackFrame(null);
1524
+ }
1525
+ }
1526
+ }
1527
+ function checkPropTypes(typeSpecs, values, location, componentName, element) {
1528
+ {
1529
+ var has = Function.call.bind(hasOwnProperty);
1530
+ for (var typeSpecName in typeSpecs) {
1531
+ if (has(typeSpecs, typeSpecName)) {
1532
+ var error$1 = void 0;
1533
+ try {
1534
+ if (typeof typeSpecs[typeSpecName] !== "function") {
1535
+ var err = Error((componentName || "React class") + ": " + location + " 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`.");
1536
+ err.name = "Invariant Violation";
1537
+ throw err;
1538
+ }
1539
+ error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
1540
+ } catch (ex) {
1541
+ error$1 = ex;
1542
+ }
1543
+ if (error$1 && !(error$1 instanceof Error)) {
1544
+ setCurrentlyValidatingElement(element);
1545
+ 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", location, typeSpecName, typeof error$1);
1546
+ setCurrentlyValidatingElement(null);
1547
+ }
1548
+ if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
1549
+ loggedTypeFailures[error$1.message] = true;
1550
+ setCurrentlyValidatingElement(element);
1551
+ error("Failed %s type: %s", location, error$1.message);
1552
+ setCurrentlyValidatingElement(null);
1553
+ }
1554
+ }
1555
+ }
1556
+ }
1557
+ }
1558
+ var isArrayImpl = Array.isArray;
1559
+ function isArray(a) {
1560
+ return isArrayImpl(a);
1561
+ }
1562
+ function typeName(value) {
1563
+ {
1564
+ var hasToStringTag = typeof Symbol === "function" && Symbol.toStringTag;
1565
+ var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
1566
+ return type;
1567
+ }
1568
+ }
1569
+ function willCoercionThrow(value) {
1570
+ {
1571
+ try {
1572
+ return false;
1573
+ } catch (e) {
1574
+ return true;
1575
+ }
1576
+ }
1577
+ }
1578
+ function testStringCoercion(value) {
1579
+ return "" + value;
1580
+ }
1581
+ function checkKeyStringCoercion(value) {
1582
+ {
1583
+ if (willCoercionThrow()) {
1584
+ error("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", typeName(value));
1585
+ return testStringCoercion(value);
1586
+ }
1587
+ }
1588
+ }
1589
+ var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
1590
+ var RESERVED_PROPS = {
1591
+ key: true,
1592
+ ref: true,
1593
+ __self: true,
1594
+ __source: true
1595
+ };
1596
+ var specialPropKeyWarningShown;
1597
+ var specialPropRefWarningShown;
1598
+ function hasValidRef(config2) {
1599
+ {
1600
+ if (hasOwnProperty.call(config2, "ref")) {
1601
+ var getter = Object.getOwnPropertyDescriptor(config2, "ref").get;
1602
+ if (getter && getter.isReactWarning) {
1603
+ return false;
1604
+ }
1605
+ }
1606
+ }
1607
+ return config2.ref !== void 0;
1608
+ }
1609
+ function hasValidKey(config2) {
1610
+ {
1611
+ if (hasOwnProperty.call(config2, "key")) {
1612
+ var getter = Object.getOwnPropertyDescriptor(config2, "key").get;
1613
+ if (getter && getter.isReactWarning) {
1614
+ return false;
1615
+ }
1616
+ }
1617
+ }
1618
+ return config2.key !== void 0;
1619
+ }
1620
+ function defineKeyPropWarningGetter(props, displayName) {
1621
+ {
1622
+ var warnAboutAccessingKey = function() {
1623
+ if (!specialPropKeyWarningShown) {
1624
+ specialPropKeyWarningShown = true;
1625
+ error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", displayName);
1626
+ }
1627
+ };
1628
+ warnAboutAccessingKey.isReactWarning = true;
1629
+ Object.defineProperty(props, "key", {
1630
+ get: warnAboutAccessingKey,
1631
+ configurable: true
1632
+ });
1633
+ }
1634
+ }
1635
+ function defineRefPropWarningGetter(props, displayName) {
1636
+ {
1637
+ var warnAboutAccessingRef = function() {
1638
+ if (!specialPropRefWarningShown) {
1639
+ specialPropRefWarningShown = true;
1640
+ error("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", displayName);
1641
+ }
1642
+ };
1643
+ warnAboutAccessingRef.isReactWarning = true;
1644
+ Object.defineProperty(props, "ref", {
1645
+ get: warnAboutAccessingRef,
1646
+ configurable: true
1647
+ });
1648
+ }
1649
+ }
1650
+ var ReactElement = function(type, key, ref, self, source, owner, props) {
1651
+ var element = {
1652
+ // This tag allows us to uniquely identify this as a React Element
1653
+ $$typeof: REACT_ELEMENT_TYPE,
1654
+ // Built-in properties that belong on the element
1655
+ type,
1656
+ key,
1657
+ ref,
1658
+ props,
1659
+ // Record the component responsible for creating this element.
1660
+ _owner: owner
1661
+ };
1662
+ {
1663
+ element._store = {};
1664
+ Object.defineProperty(element._store, "validated", {
1665
+ configurable: false,
1666
+ enumerable: false,
1667
+ writable: true,
1668
+ value: false
1669
+ });
1670
+ Object.defineProperty(element, "_self", {
1671
+ configurable: false,
1672
+ enumerable: false,
1673
+ writable: false,
1674
+ value: self
1675
+ });
1676
+ Object.defineProperty(element, "_source", {
1677
+ configurable: false,
1678
+ enumerable: false,
1679
+ writable: false,
1680
+ value: source
1681
+ });
1682
+ if (Object.freeze) {
1683
+ Object.freeze(element.props);
1684
+ Object.freeze(element);
1685
+ }
1686
+ }
1687
+ return element;
1688
+ };
1689
+ function jsxDEV(type, config2, maybeKey, source, self) {
1690
+ {
1691
+ var propName;
1692
+ var props = {};
1693
+ var key = null;
1694
+ var ref = null;
1695
+ if (maybeKey !== void 0) {
1696
+ {
1697
+ checkKeyStringCoercion(maybeKey);
1698
+ }
1699
+ key = "" + maybeKey;
1700
+ }
1701
+ if (hasValidKey(config2)) {
1702
+ {
1703
+ checkKeyStringCoercion(config2.key);
1704
+ }
1705
+ key = "" + config2.key;
1706
+ }
1707
+ if (hasValidRef(config2)) {
1708
+ ref = config2.ref;
1709
+ }
1710
+ for (propName in config2) {
1711
+ if (hasOwnProperty.call(config2, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
1712
+ props[propName] = config2[propName];
1713
+ }
1714
+ }
1715
+ if (type && type.defaultProps) {
1716
+ var defaultProps = type.defaultProps;
1717
+ for (propName in defaultProps) {
1718
+ if (props[propName] === void 0) {
1719
+ props[propName] = defaultProps[propName];
1720
+ }
1721
+ }
1722
+ }
1723
+ if (key || ref) {
1724
+ var displayName = typeof type === "function" ? type.displayName || type.name || "Unknown" : type;
1725
+ if (key) {
1726
+ defineKeyPropWarningGetter(props, displayName);
1727
+ }
1728
+ if (ref) {
1729
+ defineRefPropWarningGetter(props, displayName);
1730
+ }
1731
+ }
1732
+ return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);
1733
+ }
1734
+ }
1735
+ var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
1736
+ var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
1737
+ function setCurrentlyValidatingElement$1(element) {
1738
+ {
1739
+ if (element) {
1740
+ var stack = describeUnknownElementTypeFrameInDEV(element.type);
1741
+ ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
1742
+ } else {
1743
+ ReactDebugCurrentFrame$1.setExtraStackFrame(null);
1744
+ }
1745
+ }
1746
+ }
1747
+ var propTypesMisspellWarningShown;
1748
+ {
1749
+ propTypesMisspellWarningShown = false;
1750
+ }
1751
+ function isValidElement(object2) {
1752
+ {
1753
+ return typeof object2 === "object" && object2 !== null && object2.$$typeof === REACT_ELEMENT_TYPE;
1754
+ }
1755
+ }
1756
+ function getDeclarationErrorAddendum() {
1757
+ {
1758
+ if (ReactCurrentOwner$1.current) {
1759
+ var name = getComponentNameFromType(ReactCurrentOwner$1.current.type);
1760
+ if (name) {
1761
+ return "\n\nCheck the render method of `" + name + "`.";
1762
+ }
1763
+ }
1764
+ return "";
1765
+ }
1766
+ }
1767
+ function getSourceInfoErrorAddendum(source) {
1768
+ {
1769
+ return "";
1770
+ }
1771
+ }
1772
+ var ownerHasKeyUseWarning = {};
1773
+ function getCurrentComponentErrorInfo(parentType) {
1774
+ {
1775
+ var info = getDeclarationErrorAddendum();
1776
+ if (!info) {
1777
+ var parentName = typeof parentType === "string" ? parentType : parentType.displayName || parentType.name;
1778
+ if (parentName) {
1779
+ info = "\n\nCheck the top-level render call using <" + parentName + ">.";
1780
+ }
1781
+ }
1782
+ return info;
1783
+ }
1784
+ }
1785
+ function validateExplicitKey(element, parentType) {
1786
+ {
1787
+ if (!element._store || element._store.validated || element.key != null) {
1788
+ return;
1789
+ }
1790
+ element._store.validated = true;
1791
+ var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);
1792
+ if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {
1793
+ return;
1794
+ }
1795
+ ownerHasKeyUseWarning[currentComponentErrorInfo] = true;
1796
+ var childOwner = "";
1797
+ if (element && element._owner && element._owner !== ReactCurrentOwner$1.current) {
1798
+ childOwner = " It was passed a child from " + getComponentNameFromType(element._owner.type) + ".";
1799
+ }
1800
+ setCurrentlyValidatingElement$1(element);
1801
+ error('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);
1802
+ setCurrentlyValidatingElement$1(null);
1803
+ }
1804
+ }
1805
+ function validateChildKeys(node, parentType) {
1806
+ {
1807
+ if (typeof node !== "object") {
1808
+ return;
1809
+ }
1810
+ if (isArray(node)) {
1811
+ for (var i = 0; i < node.length; i++) {
1812
+ var child = node[i];
1813
+ if (isValidElement(child)) {
1814
+ validateExplicitKey(child, parentType);
1815
+ }
1816
+ }
1817
+ } else if (isValidElement(node)) {
1818
+ if (node._store) {
1819
+ node._store.validated = true;
1820
+ }
1821
+ } else if (node) {
1822
+ var iteratorFn = getIteratorFn(node);
1823
+ if (typeof iteratorFn === "function") {
1824
+ if (iteratorFn !== node.entries) {
1825
+ var iterator = iteratorFn.call(node);
1826
+ var step;
1827
+ while (!(step = iterator.next()).done) {
1828
+ if (isValidElement(step.value)) {
1829
+ validateExplicitKey(step.value, parentType);
1830
+ }
1831
+ }
1832
+ }
1833
+ }
1834
+ }
1835
+ }
1836
+ }
1837
+ function validatePropTypes(element) {
1838
+ {
1839
+ var type = element.type;
1840
+ if (type === null || type === void 0 || typeof type === "string") {
1841
+ return;
1842
+ }
1843
+ var propTypes;
1844
+ if (typeof type === "function") {
1845
+ propTypes = type.propTypes;
1846
+ } else if (typeof type === "object" && (type.$$typeof === REACT_FORWARD_REF_TYPE || // Note: Memo only checks outer props here.
1847
+ // Inner props are checked in the reconciler.
1848
+ type.$$typeof === REACT_MEMO_TYPE)) {
1849
+ propTypes = type.propTypes;
1850
+ } else {
1851
+ return;
1852
+ }
1853
+ if (propTypes) {
1854
+ var name = getComponentNameFromType(type);
1855
+ checkPropTypes(propTypes, element.props, "prop", name, element);
1856
+ } else if (type.PropTypes !== void 0 && !propTypesMisspellWarningShown) {
1857
+ propTypesMisspellWarningShown = true;
1858
+ var _name = getComponentNameFromType(type);
1859
+ error("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", _name || "Unknown");
1860
+ }
1861
+ if (typeof type.getDefaultProps === "function" && !type.getDefaultProps.isReactClassApproved) {
1862
+ error("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
1863
+ }
1864
+ }
1865
+ }
1866
+ function validateFragmentProps(fragment) {
1867
+ {
1868
+ var keys = Object.keys(fragment.props);
1869
+ for (var i = 0; i < keys.length; i++) {
1870
+ var key = keys[i];
1871
+ if (key !== "children" && key !== "key") {
1872
+ setCurrentlyValidatingElement$1(fragment);
1873
+ error("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", key);
1874
+ setCurrentlyValidatingElement$1(null);
1875
+ break;
1876
+ }
1877
+ }
1878
+ if (fragment.ref !== null) {
1879
+ setCurrentlyValidatingElement$1(fragment);
1880
+ error("Invalid attribute `ref` supplied to `React.Fragment`.");
1881
+ setCurrentlyValidatingElement$1(null);
1882
+ }
1883
+ }
1884
+ }
1885
+ var didWarnAboutKeySpread = {};
1886
+ function jsxWithValidation(type, props, key, isStaticChildren, source, self) {
1887
+ {
1888
+ var validType = isValidElementType(type);
1889
+ if (!validType) {
1890
+ var info = "";
1891
+ if (type === void 0 || typeof type === "object" && type !== null && Object.keys(type).length === 0) {
1892
+ info += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.";
1893
+ }
1894
+ var sourceInfo = getSourceInfoErrorAddendum();
1895
+ if (sourceInfo) {
1896
+ info += sourceInfo;
1897
+ } else {
1898
+ info += getDeclarationErrorAddendum();
1899
+ }
1900
+ var typeString;
1901
+ if (type === null) {
1902
+ typeString = "null";
1903
+ } else if (isArray(type)) {
1904
+ typeString = "array";
1905
+ } else if (type !== void 0 && type.$$typeof === REACT_ELEMENT_TYPE) {
1906
+ typeString = "<" + (getComponentNameFromType(type.type) || "Unknown") + " />";
1907
+ info = " Did you accidentally export a JSX literal instead of a component?";
1908
+ } else {
1909
+ typeString = typeof type;
1910
+ }
1911
+ error("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", typeString, info);
1912
+ }
1913
+ var element = jsxDEV(type, props, key, source, self);
1914
+ if (element == null) {
1915
+ return element;
1916
+ }
1917
+ if (validType) {
1918
+ var children = props.children;
1919
+ if (children !== void 0) {
1920
+ if (isStaticChildren) {
1921
+ if (isArray(children)) {
1922
+ for (var i = 0; i < children.length; i++) {
1923
+ validateChildKeys(children[i], type);
1924
+ }
1925
+ if (Object.freeze) {
1926
+ Object.freeze(children);
1927
+ }
1928
+ } else {
1929
+ error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
1930
+ }
1931
+ } else {
1932
+ validateChildKeys(children, type);
1933
+ }
1934
+ }
1935
+ }
1936
+ {
1937
+ if (hasOwnProperty.call(props, "key")) {
1938
+ var componentName = getComponentNameFromType(type);
1939
+ var keys = Object.keys(props).filter(function(k2) {
1940
+ return k2 !== "key";
1941
+ });
1942
+ var beforeExample = keys.length > 0 ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" : "{key: someKey}";
1943
+ if (!didWarnAboutKeySpread[componentName + beforeExample]) {
1944
+ var afterExample = keys.length > 0 ? "{" + keys.join(": ..., ") + ": ...}" : "{}";
1945
+ error('A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />', beforeExample, componentName, afterExample, componentName);
1946
+ didWarnAboutKeySpread[componentName + beforeExample] = true;
1947
+ }
1948
+ }
1949
+ }
1950
+ if (type === REACT_FRAGMENT_TYPE) {
1951
+ validateFragmentProps(element);
1952
+ } else {
1953
+ validatePropTypes(element);
1954
+ }
1955
+ return element;
1956
+ }
1957
+ }
1958
+ function jsxWithValidationStatic(type, props, key) {
1959
+ {
1960
+ return jsxWithValidation(type, props, key, true);
1961
+ }
1962
+ }
1963
+ function jsxWithValidationDynamic(type, props, key) {
1964
+ {
1965
+ return jsxWithValidation(type, props, key, false);
1966
+ }
1967
+ }
1968
+ var jsx = jsxWithValidationDynamic;
1969
+ var jsxs = jsxWithValidationStatic;
1970
+ reactJsxRuntime_development.Fragment = REACT_FRAGMENT_TYPE;
1971
+ reactJsxRuntime_development.jsx = jsx;
1972
+ reactJsxRuntime_development.jsxs = jsxs;
1973
+ })();
1974
+ }
1975
+ return reactJsxRuntime_development;
1976
+ }
1977
+ var hasRequiredJsxRuntime;
1978
+ function requireJsxRuntime() {
1979
+ if (hasRequiredJsxRuntime) return jsxRuntime.exports;
1980
+ hasRequiredJsxRuntime = 1;
1981
+ if (process.env.NODE_ENV === "production") {
1982
+ jsxRuntime.exports = /* @__PURE__ */ requireReactJsxRuntime_production_min();
1983
+ } else {
1984
+ jsxRuntime.exports = /* @__PURE__ */ requireReactJsxRuntime_development();
1985
+ }
1986
+ return jsxRuntime.exports;
1987
+ }
1988
+ var jsxRuntimeExports = /* @__PURE__ */ requireJsxRuntime();
1365
1989
  function createContext2(rootComponentName, defaultContext) {
1366
1990
  const Context = React.createContext(defaultContext);
1367
1991
  const Provider = (props) => {
@@ -2552,9 +3176,9 @@ const classes = {
2552
3176
  thumb
2553
3177
  };
2554
3178
  const Switch = ({ label: label2, id, ...rest }) => {
2555
- return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes.root, children: [
2556
- label2 && /* @__PURE__ */ jsxRuntimeExports.jsx(Text, { className: classes.label, as: "label", htmlFor: id, children: label2 }),
2557
- /* @__PURE__ */ jsxRuntimeExports.jsx(Root$1, { className: classes.switch, ...rest, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Thumb, { className: classes.thumb }) })
3179
+ return /* @__PURE__ */ u("div", { className: classes.root, children: [
3180
+ label2 && /* @__PURE__ */ u(Text, { className: classes.label, as: "label", htmlFor: id, children: label2 }),
3181
+ /* @__PURE__ */ u(Root$1, { className: classes.switch, ...rest, children: /* @__PURE__ */ u(Thumb, { className: classes.thumb }) })
2558
3182
  ] });
2559
3183
  };
2560
3184
  const selectionSchema = /* @__PURE__ */ record(/* @__PURE__ */ string(), /* @__PURE__ */ boolean());
@@ -2656,7 +3280,7 @@ const SelectionProvider = ({
2656
3280
  const itemKeys = items.map((item) => item.value);
2657
3281
  return itemKeys.every((key) => selectedKeys.includes(key));
2658
3282
  }, [savedSelection, items]);
2659
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
3283
+ return /* @__PURE__ */ u(
2660
3284
  SelectionContext.Provider,
2661
3285
  {
2662
3286
  value: {
@@ -2703,14 +3327,14 @@ const BannerItem = ({
2703
3327
  [required, toggleSelection, value]
2704
3328
  );
2705
3329
  const disabled = useMemo(() => required, [required]);
2706
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(Item, { value, className: classes$1.root, children: [
2707
- /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$1.header, children: [
2708
- /* @__PURE__ */ jsxRuntimeExports.jsx(Trigger2, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$1.label, children: [
2709
- /* @__PURE__ */ jsxRuntimeExports.jsx(Text, { weight: "bold", children: label2 }),
2710
- sublabel && /* @__PURE__ */ jsxRuntimeExports.jsx(Text, { size: "caption", color: "muted", children: sublabel })
3330
+ return /* @__PURE__ */ u(Item, { value, className: classes$1.root, children: [
3331
+ /* @__PURE__ */ u("div", { className: classes$1.header, children: [
3332
+ /* @__PURE__ */ u(Trigger2, { asChild: true, children: /* @__PURE__ */ u("div", { className: classes$1.label, children: [
3333
+ /* @__PURE__ */ u(Text, { weight: "bold", children: label2 }),
3334
+ sublabel && /* @__PURE__ */ u(Text, { size: "caption", color: "muted", children: sublabel })
2711
3335
  ] }) }),
2712
- /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$1.actions, children: [
2713
- /* @__PURE__ */ jsxRuntimeExports.jsx(
3336
+ /* @__PURE__ */ u("div", { className: classes$1.actions, children: [
3337
+ /* @__PURE__ */ u(
2714
3338
  Switch,
2715
3339
  {
2716
3340
  checked,
@@ -2718,7 +3342,7 @@ const BannerItem = ({
2718
3342
  disabled
2719
3343
  }
2720
3344
  ),
2721
- /* @__PURE__ */ jsxRuntimeExports.jsx(Trigger2, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
3345
+ /* @__PURE__ */ u(Trigger2, { asChild: true, children: /* @__PURE__ */ u(
2722
3346
  ChevronDown,
2723
3347
  {
2724
3348
  size: 16,
@@ -2730,7 +3354,7 @@ const BannerItem = ({
2730
3354
  ) })
2731
3355
  ] })
2732
3356
  ] }),
2733
- description2 && /* @__PURE__ */ jsxRuntimeExports.jsx(Content2, { className: classes$1.description, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
3357
+ description2 && /* @__PURE__ */ u(Content2, { className: classes$1.description, children: /* @__PURE__ */ u(
2734
3358
  Text,
2735
3359
  {
2736
3360
  size: "caption",
@@ -3205,7 +3829,7 @@ function __rest(s, e) {
3205
3829
  return t;
3206
3830
  }
3207
3831
  function __spreadArray(to, from, pack) {
3208
- if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
3832
+ if (pack || arguments.length === 2) for (var i = 0, l2 = from.length, ar; i < l2; i++) {
3209
3833
  if (ar || !(i in from)) {
3210
3834
  if (!ar) ar = Array.prototype.slice.call(from, 0, i);
3211
3835
  ar[i] = from[i];
@@ -4266,26 +4890,26 @@ const BannerContent = ({
4266
4890
  const { onSave, onDeclineAll, selectionTaken } = useSelection();
4267
4891
  const [openItem, setOpenItem] = useState(void 0);
4268
4892
  const [settingsOpen, setSettingsOpen] = useState(defaultSettingsOpen);
4269
- return /* @__PURE__ */ jsxRuntimeExports.jsx(Root, { open: !selectionTaken, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
4893
+ return /* @__PURE__ */ u(Root, { open: !selectionTaken, children: /* @__PURE__ */ u(
4270
4894
  Content,
4271
4895
  {
4272
4896
  className: cls(classes$2.root, noTarget2 ? classes$2.noTarget : ""),
4273
- children: /* @__PURE__ */ jsxRuntimeExports.jsxs(
4897
+ children: /* @__PURE__ */ u(
4274
4898
  Root$2,
4275
4899
  {
4276
4900
  open: settingsOpen,
4277
4901
  onOpenChange: setSettingsOpen,
4278
4902
  className: classes$2.collapsible,
4279
4903
  children: [
4280
- /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$2.header, children: [
4281
- /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$2.heading, children: [
4282
- /* @__PURE__ */ jsxRuntimeExports.jsx(Title, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Text, { weight: "bold", children: heading2 }) }),
4283
- /* @__PURE__ */ jsxRuntimeExports.jsx(Description, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Text, { size: "caption", color: "muted", children: subheading }) })
4904
+ /* @__PURE__ */ u("div", { className: classes$2.header, children: [
4905
+ /* @__PURE__ */ u("div", { className: classes$2.heading, children: [
4906
+ /* @__PURE__ */ u(Title, { asChild: true, children: /* @__PURE__ */ u(Text, { weight: "bold", children: heading2 }) }),
4907
+ /* @__PURE__ */ u(Description, { asChild: true, children: /* @__PURE__ */ u(Text, { size: "caption", color: "muted", children: subheading }) })
4284
4908
  ] }),
4285
- /* @__PURE__ */ jsxRuntimeExports.jsx(Trigger, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsxs(Button, { variant: "ghost", children: [
4909
+ /* @__PURE__ */ u(Trigger, { asChild: true, children: /* @__PURE__ */ u(Button, { variant: "ghost", children: [
4286
4910
  settingsOpen ? hideLabel : selectLabel,
4287
4911
  " ",
4288
- /* @__PURE__ */ jsxRuntimeExports.jsx(
4912
+ /* @__PURE__ */ u(
4289
4913
  ChevronUp,
4290
4914
  {
4291
4915
  size: 12,
@@ -4297,29 +4921,29 @@ const BannerContent = ({
4297
4921
  )
4298
4922
  ] }) })
4299
4923
  ] }),
4300
- /* @__PURE__ */ jsxRuntimeExports.jsx(
4924
+ /* @__PURE__ */ u(
4301
4925
  Content$1,
4302
4926
  {
4303
4927
  className: clx({
4304
4928
  [classes$2.settings]: true
4305
4929
  }),
4306
- children: /* @__PURE__ */ jsxRuntimeExports.jsx(
4930
+ children: /* @__PURE__ */ u(
4307
4931
  Root2,
4308
4932
  {
4309
4933
  type: "single",
4310
4934
  collapsible: true,
4311
4935
  value: openItem,
4312
4936
  onValueChange: setOpenItem,
4313
- children: items.map((item) => /* @__PURE__ */ jsxRuntimeExports.jsx(BannerItem, { ...item, openItem }, item.value))
4937
+ children: /* @__PURE__ */ u(k, { children: items.map((item) => /* @__PURE__ */ u(BannerItem, { ...item, openItem }, item.value)) })
4314
4938
  }
4315
4939
  )
4316
4940
  }
4317
4941
  ),
4318
- /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$2.footer, children: [
4319
- /* @__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 }) }) }),
4320
- /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$2.actions, children: [
4321
- /* @__PURE__ */ jsxRuntimeExports.jsx(Close, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Button, { variant: "neutral", onClick: () => onDeclineAll(), children: declineLabel }) }),
4322
- /* @__PURE__ */ jsxRuntimeExports.jsx(Close, { asChild: true, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Button, { variant: "brand", onClick: () => onSave(), children: saveLabel }) })
4942
+ /* @__PURE__ */ u("div", { className: classes$2.footer, children: [
4943
+ /* @__PURE__ */ u("div", { className: classes$2.legal, children: privacyPolicy && /* @__PURE__ */ u(Text, { size: "caption", children: /* @__PURE__ */ u("a", { href: privacyPolicy.url, target: "_blank", children: privacyPolicy.label }) }) }),
4944
+ /* @__PURE__ */ u("div", { className: classes$2.actions, children: [
4945
+ /* @__PURE__ */ u(Close, { asChild: true, children: /* @__PURE__ */ u(Button, { variant: "neutral", onClick: () => onDeclineAll(), children: declineLabel }) }),
4946
+ /* @__PURE__ */ u(Close, { asChild: true, children: /* @__PURE__ */ u(Button, { variant: "brand", onClick: () => onSave(), children: saveLabel }) })
4323
4947
  ] })
4324
4948
  ] })
4325
4949
  ]
@@ -4342,7 +4966,7 @@ const Banner = ({
4342
4966
  })),
4343
4967
  [items]
4344
4968
  );
4345
- return /* @__PURE__ */ jsxRuntimeExports.jsx(SelectionProvider, { items: selectionItems, localStorageKey, children: /* @__PURE__ */ jsxRuntimeExports.jsx(BannerContent, { items, ...rest }) });
4969
+ return /* @__PURE__ */ u(SelectionProvider, { items: selectionItems, localStorageKey, children: /* @__PURE__ */ u(BannerContent, { items, ...rest }) });
4346
4970
  };
4347
4971
  export {
4348
4972
  Banner