tccd-ui 0.0.20 → 0.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,12 +1,7 @@
1
- var __create = Object.create;
2
1
  var __defProp = Object.defineProperty;
3
2
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
3
  var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf;
6
4
  var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __commonJS = (cb, mod) => function __require() {
8
- return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
9
- };
10
5
  var __export = (target, all) => {
11
6
  for (var name in all)
12
7
  __defProp(target, name, { get: all[name], enumerable: true });
@@ -19,1740 +14,8 @@ var __copyProps = (to, from, except, desc) => {
19
14
  }
20
15
  return to;
21
16
  };
22
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
23
- // If the importer is in node compatibility mode or this is not an ESM
24
- // file that has been converted to a CommonJS file using a Babel-
25
- // compatible transform (i.e. "__esModule" has not been set), then set
26
- // "default" to the CommonJS "module.exports" for node compatibility.
27
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
28
- mod
29
- ));
30
17
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
31
18
 
32
- // node_modules/react/cjs/react-jsx-runtime.production.js
33
- var require_react_jsx_runtime_production = __commonJS({
34
- "node_modules/react/cjs/react-jsx-runtime.production.js"(exports2) {
35
- "use strict";
36
- var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element");
37
- var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
38
- function jsxProd(type, config, maybeKey) {
39
- var key = null;
40
- void 0 !== maybeKey && (key = "" + maybeKey);
41
- void 0 !== config.key && (key = "" + config.key);
42
- if ("key" in config) {
43
- maybeKey = {};
44
- for (var propName in config)
45
- "key" !== propName && (maybeKey[propName] = config[propName]);
46
- } else maybeKey = config;
47
- config = maybeKey.ref;
48
- return {
49
- $$typeof: REACT_ELEMENT_TYPE,
50
- type,
51
- key,
52
- ref: void 0 !== config ? config : null,
53
- props: maybeKey
54
- };
55
- }
56
- exports2.Fragment = REACT_FRAGMENT_TYPE;
57
- exports2.jsx = jsxProd;
58
- exports2.jsxs = jsxProd;
59
- }
60
- });
61
-
62
- // node_modules/react/cjs/react.production.js
63
- var require_react_production = __commonJS({
64
- "node_modules/react/cjs/react.production.js"(exports2) {
65
- "use strict";
66
- var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element");
67
- var REACT_PORTAL_TYPE = Symbol.for("react.portal");
68
- var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
69
- var REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode");
70
- var REACT_PROFILER_TYPE = Symbol.for("react.profiler");
71
- var REACT_CONSUMER_TYPE = Symbol.for("react.consumer");
72
- var REACT_CONTEXT_TYPE = Symbol.for("react.context");
73
- var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref");
74
- var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense");
75
- var REACT_MEMO_TYPE = Symbol.for("react.memo");
76
- var REACT_LAZY_TYPE = Symbol.for("react.lazy");
77
- var REACT_ACTIVITY_TYPE = Symbol.for("react.activity");
78
- var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
79
- function getIteratorFn(maybeIterable) {
80
- if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
81
- maybeIterable = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable["@@iterator"];
82
- return "function" === typeof maybeIterable ? maybeIterable : null;
83
- }
84
- var ReactNoopUpdateQueue = {
85
- isMounted: function() {
86
- return false;
87
- },
88
- enqueueForceUpdate: function() {
89
- },
90
- enqueueReplaceState: function() {
91
- },
92
- enqueueSetState: function() {
93
- }
94
- };
95
- var assign = Object.assign;
96
- var emptyObject = {};
97
- function Component(props, context, updater) {
98
- this.props = props;
99
- this.context = context;
100
- this.refs = emptyObject;
101
- this.updater = updater || ReactNoopUpdateQueue;
102
- }
103
- Component.prototype.isReactComponent = {};
104
- Component.prototype.setState = function(partialState, callback) {
105
- if ("object" !== typeof partialState && "function" !== typeof partialState && null != partialState)
106
- throw Error(
107
- "takes an object of state variables to update or a function which returns an object of state variables."
108
- );
109
- this.updater.enqueueSetState(this, partialState, callback, "setState");
110
- };
111
- Component.prototype.forceUpdate = function(callback) {
112
- this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
113
- };
114
- function ComponentDummy() {
115
- }
116
- ComponentDummy.prototype = Component.prototype;
117
- function PureComponent(props, context, updater) {
118
- this.props = props;
119
- this.context = context;
120
- this.refs = emptyObject;
121
- this.updater = updater || ReactNoopUpdateQueue;
122
- }
123
- var pureComponentPrototype = PureComponent.prototype = new ComponentDummy();
124
- pureComponentPrototype.constructor = PureComponent;
125
- assign(pureComponentPrototype, Component.prototype);
126
- pureComponentPrototype.isPureReactComponent = true;
127
- var isArrayImpl = Array.isArray;
128
- function noop() {
129
- }
130
- var ReactSharedInternals = { H: null, A: null, T: null, S: null };
131
- var hasOwnProperty = Object.prototype.hasOwnProperty;
132
- function ReactElement(type, key, props) {
133
- var refProp = props.ref;
134
- return {
135
- $$typeof: REACT_ELEMENT_TYPE,
136
- type,
137
- key,
138
- ref: void 0 !== refProp ? refProp : null,
139
- props
140
- };
141
- }
142
- function cloneAndReplaceKey(oldElement, newKey) {
143
- return ReactElement(oldElement.type, newKey, oldElement.props);
144
- }
145
- function isValidElement(object) {
146
- return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE;
147
- }
148
- function escape(key) {
149
- var escaperLookup = { "=": "=0", ":": "=2" };
150
- return "$" + key.replace(/[=:]/g, function(match) {
151
- return escaperLookup[match];
152
- });
153
- }
154
- var userProvidedKeyEscapeRegex = /\/+/g;
155
- function getElementKey(element, index) {
156
- return "object" === typeof element && null !== element && null != element.key ? escape("" + element.key) : index.toString(36);
157
- }
158
- function resolveThenable(thenable) {
159
- switch (thenable.status) {
160
- case "fulfilled":
161
- return thenable.value;
162
- case "rejected":
163
- throw thenable.reason;
164
- default:
165
- switch ("string" === typeof thenable.status ? thenable.then(noop, noop) : (thenable.status = "pending", thenable.then(
166
- function(fulfilledValue) {
167
- "pending" === thenable.status && (thenable.status = "fulfilled", thenable.value = fulfilledValue);
168
- },
169
- function(error) {
170
- "pending" === thenable.status && (thenable.status = "rejected", thenable.reason = error);
171
- }
172
- )), thenable.status) {
173
- case "fulfilled":
174
- return thenable.value;
175
- case "rejected":
176
- throw thenable.reason;
177
- }
178
- }
179
- throw thenable;
180
- }
181
- function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
182
- var type = typeof children;
183
- if ("undefined" === type || "boolean" === type) children = null;
184
- var invokeCallback = false;
185
- if (null === children) invokeCallback = true;
186
- else
187
- switch (type) {
188
- case "bigint":
189
- case "string":
190
- case "number":
191
- invokeCallback = true;
192
- break;
193
- case "object":
194
- switch (children.$$typeof) {
195
- case REACT_ELEMENT_TYPE:
196
- case REACT_PORTAL_TYPE:
197
- invokeCallback = true;
198
- break;
199
- case REACT_LAZY_TYPE:
200
- return invokeCallback = children._init, mapIntoArray(
201
- invokeCallback(children._payload),
202
- array,
203
- escapedPrefix,
204
- nameSoFar,
205
- callback
206
- );
207
- }
208
- }
209
- if (invokeCallback)
210
- return callback = callback(children), invokeCallback = "" === nameSoFar ? "." + getElementKey(children, 0) : nameSoFar, isArrayImpl(callback) ? (escapedPrefix = "", null != invokeCallback && (escapedPrefix = invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"), mapIntoArray(callback, array, escapedPrefix, "", function(c) {
211
- return c;
212
- })) : null != callback && (isValidElement(callback) && (callback = cloneAndReplaceKey(
213
- callback,
214
- escapedPrefix + (null == callback.key || children && children.key === callback.key ? "" : ("" + callback.key).replace(
215
- userProvidedKeyEscapeRegex,
216
- "$&/"
217
- ) + "/") + invokeCallback
218
- )), array.push(callback)), 1;
219
- invokeCallback = 0;
220
- var nextNamePrefix = "" === nameSoFar ? "." : nameSoFar + ":";
221
- if (isArrayImpl(children))
222
- for (var i = 0; i < children.length; i++)
223
- nameSoFar = children[i], type = nextNamePrefix + getElementKey(nameSoFar, i), invokeCallback += mapIntoArray(
224
- nameSoFar,
225
- array,
226
- escapedPrefix,
227
- type,
228
- callback
229
- );
230
- else if (i = getIteratorFn(children), "function" === typeof i)
231
- for (children = i.call(children), i = 0; !(nameSoFar = children.next()).done; )
232
- nameSoFar = nameSoFar.value, type = nextNamePrefix + getElementKey(nameSoFar, i++), invokeCallback += mapIntoArray(
233
- nameSoFar,
234
- array,
235
- escapedPrefix,
236
- type,
237
- callback
238
- );
239
- else if ("object" === type) {
240
- if ("function" === typeof children.then)
241
- return mapIntoArray(
242
- resolveThenable(children),
243
- array,
244
- escapedPrefix,
245
- nameSoFar,
246
- callback
247
- );
248
- array = String(children);
249
- throw Error(
250
- "Objects are not valid as a React child (found: " + ("[object Object]" === array ? "object with keys {" + Object.keys(children).join(", ") + "}" : array) + "). If you meant to render a collection of children, use an array instead."
251
- );
252
- }
253
- return invokeCallback;
254
- }
255
- function mapChildren(children, func, context) {
256
- if (null == children) return children;
257
- var result = [], count = 0;
258
- mapIntoArray(children, result, "", "", function(child) {
259
- return func.call(context, child, count++);
260
- });
261
- return result;
262
- }
263
- function lazyInitializer(payload) {
264
- if (-1 === payload._status) {
265
- var ctor = payload._result;
266
- ctor = ctor();
267
- ctor.then(
268
- function(moduleObject) {
269
- if (0 === payload._status || -1 === payload._status)
270
- payload._status = 1, payload._result = moduleObject;
271
- },
272
- function(error) {
273
- if (0 === payload._status || -1 === payload._status)
274
- payload._status = 2, payload._result = error;
275
- }
276
- );
277
- -1 === payload._status && (payload._status = 0, payload._result = ctor);
278
- }
279
- if (1 === payload._status) return payload._result.default;
280
- throw payload._result;
281
- }
282
- var reportGlobalError = "function" === typeof reportError ? reportError : function(error) {
283
- if ("object" === typeof window && "function" === typeof window.ErrorEvent) {
284
- var event = new window.ErrorEvent("error", {
285
- bubbles: true,
286
- cancelable: true,
287
- message: "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error),
288
- error
289
- });
290
- if (!window.dispatchEvent(event)) return;
291
- } else if ("object" === typeof process && "function" === typeof process.emit) {
292
- process.emit("uncaughtException", error);
293
- return;
294
- }
295
- console.error(error);
296
- };
297
- var Children = {
298
- map: mapChildren,
299
- forEach: function(children, forEachFunc, forEachContext) {
300
- mapChildren(
301
- children,
302
- function() {
303
- forEachFunc.apply(this, arguments);
304
- },
305
- forEachContext
306
- );
307
- },
308
- count: function(children) {
309
- var n = 0;
310
- mapChildren(children, function() {
311
- n++;
312
- });
313
- return n;
314
- },
315
- toArray: function(children) {
316
- return mapChildren(children, function(child) {
317
- return child;
318
- }) || [];
319
- },
320
- only: function(children) {
321
- if (!isValidElement(children))
322
- throw Error(
323
- "React.Children.only expected to receive a single React element child."
324
- );
325
- return children;
326
- }
327
- };
328
- exports2.Activity = REACT_ACTIVITY_TYPE;
329
- exports2.Children = Children;
330
- exports2.Component = Component;
331
- exports2.Fragment = REACT_FRAGMENT_TYPE;
332
- exports2.Profiler = REACT_PROFILER_TYPE;
333
- exports2.PureComponent = PureComponent;
334
- exports2.StrictMode = REACT_STRICT_MODE_TYPE;
335
- exports2.Suspense = REACT_SUSPENSE_TYPE;
336
- exports2.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = ReactSharedInternals;
337
- exports2.__COMPILER_RUNTIME = {
338
- __proto__: null,
339
- c: function(size) {
340
- return ReactSharedInternals.H.useMemoCache(size);
341
- }
342
- };
343
- exports2.cache = function(fn) {
344
- return function() {
345
- return fn.apply(null, arguments);
346
- };
347
- };
348
- exports2.cacheSignal = function() {
349
- return null;
350
- };
351
- exports2.cloneElement = function(element, config, children) {
352
- if (null === element || void 0 === element)
353
- throw Error(
354
- "The argument must be a React element, but you passed " + element + "."
355
- );
356
- var props = assign({}, element.props), key = element.key;
357
- if (null != config)
358
- for (propName in void 0 !== config.key && (key = "" + config.key), config)
359
- !hasOwnProperty.call(config, propName) || "key" === propName || "__self" === propName || "__source" === propName || "ref" === propName && void 0 === config.ref || (props[propName] = config[propName]);
360
- var propName = arguments.length - 2;
361
- if (1 === propName) props.children = children;
362
- else if (1 < propName) {
363
- for (var childArray = Array(propName), i = 0; i < propName; i++)
364
- childArray[i] = arguments[i + 2];
365
- props.children = childArray;
366
- }
367
- return ReactElement(element.type, key, props);
368
- };
369
- exports2.createContext = function(defaultValue) {
370
- defaultValue = {
371
- $$typeof: REACT_CONTEXT_TYPE,
372
- _currentValue: defaultValue,
373
- _currentValue2: defaultValue,
374
- _threadCount: 0,
375
- Provider: null,
376
- Consumer: null
377
- };
378
- defaultValue.Provider = defaultValue;
379
- defaultValue.Consumer = {
380
- $$typeof: REACT_CONSUMER_TYPE,
381
- _context: defaultValue
382
- };
383
- return defaultValue;
384
- };
385
- exports2.createElement = function(type, config, children) {
386
- var propName, props = {}, key = null;
387
- if (null != config)
388
- for (propName in void 0 !== config.key && (key = "" + config.key), config)
389
- hasOwnProperty.call(config, propName) && "key" !== propName && "__self" !== propName && "__source" !== propName && (props[propName] = config[propName]);
390
- var childrenLength = arguments.length - 2;
391
- if (1 === childrenLength) props.children = children;
392
- else if (1 < childrenLength) {
393
- for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++)
394
- childArray[i] = arguments[i + 2];
395
- props.children = childArray;
396
- }
397
- if (type && type.defaultProps)
398
- for (propName in childrenLength = type.defaultProps, childrenLength)
399
- void 0 === props[propName] && (props[propName] = childrenLength[propName]);
400
- return ReactElement(type, key, props);
401
- };
402
- exports2.createRef = function() {
403
- return { current: null };
404
- };
405
- exports2.forwardRef = function(render) {
406
- return { $$typeof: REACT_FORWARD_REF_TYPE, render };
407
- };
408
- exports2.isValidElement = isValidElement;
409
- exports2.lazy = function(ctor) {
410
- return {
411
- $$typeof: REACT_LAZY_TYPE,
412
- _payload: { _status: -1, _result: ctor },
413
- _init: lazyInitializer
414
- };
415
- };
416
- exports2.memo = function(type, compare) {
417
- return {
418
- $$typeof: REACT_MEMO_TYPE,
419
- type,
420
- compare: void 0 === compare ? null : compare
421
- };
422
- };
423
- exports2.startTransition = function(scope) {
424
- var prevTransition = ReactSharedInternals.T, currentTransition = {};
425
- ReactSharedInternals.T = currentTransition;
426
- try {
427
- var returnValue = scope(), onStartTransitionFinish = ReactSharedInternals.S;
428
- null !== onStartTransitionFinish && onStartTransitionFinish(currentTransition, returnValue);
429
- "object" === typeof returnValue && null !== returnValue && "function" === typeof returnValue.then && returnValue.then(noop, reportGlobalError);
430
- } catch (error) {
431
- reportGlobalError(error);
432
- } finally {
433
- null !== prevTransition && null !== currentTransition.types && (prevTransition.types = currentTransition.types), ReactSharedInternals.T = prevTransition;
434
- }
435
- };
436
- exports2.unstable_useCacheRefresh = function() {
437
- return ReactSharedInternals.H.useCacheRefresh();
438
- };
439
- exports2.use = function(usable) {
440
- return ReactSharedInternals.H.use(usable);
441
- };
442
- exports2.useActionState = function(action, initialState, permalink) {
443
- return ReactSharedInternals.H.useActionState(action, initialState, permalink);
444
- };
445
- exports2.useCallback = function(callback, deps) {
446
- return ReactSharedInternals.H.useCallback(callback, deps);
447
- };
448
- exports2.useContext = function(Context) {
449
- return ReactSharedInternals.H.useContext(Context);
450
- };
451
- exports2.useDebugValue = function() {
452
- };
453
- exports2.useDeferredValue = function(value, initialValue) {
454
- return ReactSharedInternals.H.useDeferredValue(value, initialValue);
455
- };
456
- exports2.useEffect = function(create, deps) {
457
- return ReactSharedInternals.H.useEffect(create, deps);
458
- };
459
- exports2.useEffectEvent = function(callback) {
460
- return ReactSharedInternals.H.useEffectEvent(callback);
461
- };
462
- exports2.useId = function() {
463
- return ReactSharedInternals.H.useId();
464
- };
465
- exports2.useImperativeHandle = function(ref, create, deps) {
466
- return ReactSharedInternals.H.useImperativeHandle(ref, create, deps);
467
- };
468
- exports2.useInsertionEffect = function(create, deps) {
469
- return ReactSharedInternals.H.useInsertionEffect(create, deps);
470
- };
471
- exports2.useLayoutEffect = function(create, deps) {
472
- return ReactSharedInternals.H.useLayoutEffect(create, deps);
473
- };
474
- exports2.useMemo = function(create, deps) {
475
- return ReactSharedInternals.H.useMemo(create, deps);
476
- };
477
- exports2.useOptimistic = function(passthrough, reducer) {
478
- return ReactSharedInternals.H.useOptimistic(passthrough, reducer);
479
- };
480
- exports2.useReducer = function(reducer, initialArg, init) {
481
- return ReactSharedInternals.H.useReducer(reducer, initialArg, init);
482
- };
483
- exports2.useRef = function(initialValue) {
484
- return ReactSharedInternals.H.useRef(initialValue);
485
- };
486
- exports2.useState = function(initialState) {
487
- return ReactSharedInternals.H.useState(initialState);
488
- };
489
- exports2.useSyncExternalStore = function(subscribe, getSnapshot, getServerSnapshot) {
490
- return ReactSharedInternals.H.useSyncExternalStore(
491
- subscribe,
492
- getSnapshot,
493
- getServerSnapshot
494
- );
495
- };
496
- exports2.useTransition = function() {
497
- return ReactSharedInternals.H.useTransition();
498
- };
499
- exports2.version = "19.2.0";
500
- }
501
- });
502
-
503
- // node_modules/react/cjs/react.development.js
504
- var require_react_development = __commonJS({
505
- "node_modules/react/cjs/react.development.js"(exports2, module2) {
506
- "use strict";
507
- "production" !== process.env.NODE_ENV && (function() {
508
- function defineDeprecationWarning(methodName, info) {
509
- Object.defineProperty(Component.prototype, methodName, {
510
- get: function() {
511
- console.warn(
512
- "%s(...) is deprecated in plain JavaScript React classes. %s",
513
- info[0],
514
- info[1]
515
- );
516
- }
517
- });
518
- }
519
- function getIteratorFn(maybeIterable) {
520
- if (null === maybeIterable || "object" !== typeof maybeIterable)
521
- return null;
522
- maybeIterable = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable["@@iterator"];
523
- return "function" === typeof maybeIterable ? maybeIterable : null;
524
- }
525
- function warnNoop(publicInstance, callerName) {
526
- publicInstance = (publicInstance = publicInstance.constructor) && (publicInstance.displayName || publicInstance.name) || "ReactClass";
527
- var warningKey = publicInstance + "." + callerName;
528
- didWarnStateUpdateForUnmountedComponent[warningKey] || (console.error(
529
- "Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.",
530
- callerName,
531
- publicInstance
532
- ), didWarnStateUpdateForUnmountedComponent[warningKey] = true);
533
- }
534
- function Component(props, context, updater) {
535
- this.props = props;
536
- this.context = context;
537
- this.refs = emptyObject;
538
- this.updater = updater || ReactNoopUpdateQueue;
539
- }
540
- function ComponentDummy() {
541
- }
542
- function PureComponent(props, context, updater) {
543
- this.props = props;
544
- this.context = context;
545
- this.refs = emptyObject;
546
- this.updater = updater || ReactNoopUpdateQueue;
547
- }
548
- function noop() {
549
- }
550
- function testStringCoercion(value) {
551
- return "" + value;
552
- }
553
- function checkKeyStringCoercion(value) {
554
- try {
555
- testStringCoercion(value);
556
- var JSCompiler_inline_result = false;
557
- } catch (e) {
558
- JSCompiler_inline_result = true;
559
- }
560
- if (JSCompiler_inline_result) {
561
- JSCompiler_inline_result = console;
562
- var JSCompiler_temp_const = JSCompiler_inline_result.error;
563
- var JSCompiler_inline_result$jscomp$0 = "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
564
- JSCompiler_temp_const.call(
565
- JSCompiler_inline_result,
566
- "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
567
- JSCompiler_inline_result$jscomp$0
568
- );
569
- return testStringCoercion(value);
570
- }
571
- }
572
- function getComponentNameFromType(type) {
573
- if (null == type) return null;
574
- if ("function" === typeof type)
575
- return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null;
576
- if ("string" === typeof type) return type;
577
- switch (type) {
578
- case REACT_FRAGMENT_TYPE:
579
- return "Fragment";
580
- case REACT_PROFILER_TYPE:
581
- return "Profiler";
582
- case REACT_STRICT_MODE_TYPE:
583
- return "StrictMode";
584
- case REACT_SUSPENSE_TYPE:
585
- return "Suspense";
586
- case REACT_SUSPENSE_LIST_TYPE:
587
- return "SuspenseList";
588
- case REACT_ACTIVITY_TYPE:
589
- return "Activity";
590
- }
591
- if ("object" === typeof type)
592
- switch ("number" === typeof type.tag && console.error(
593
- "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
594
- ), type.$$typeof) {
595
- case REACT_PORTAL_TYPE:
596
- return "Portal";
597
- case REACT_CONTEXT_TYPE:
598
- return type.displayName || "Context";
599
- case REACT_CONSUMER_TYPE:
600
- return (type._context.displayName || "Context") + ".Consumer";
601
- case REACT_FORWARD_REF_TYPE:
602
- var innerType = type.render;
603
- type = type.displayName;
604
- type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef");
605
- return type;
606
- case REACT_MEMO_TYPE:
607
- return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo";
608
- case REACT_LAZY_TYPE:
609
- innerType = type._payload;
610
- type = type._init;
611
- try {
612
- return getComponentNameFromType(type(innerType));
613
- } catch (x) {
614
- }
615
- }
616
- return null;
617
- }
618
- function getTaskName(type) {
619
- if (type === REACT_FRAGMENT_TYPE) return "<>";
620
- if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE)
621
- return "<...>";
622
- try {
623
- var name = getComponentNameFromType(type);
624
- return name ? "<" + name + ">" : "<...>";
625
- } catch (x) {
626
- return "<...>";
627
- }
628
- }
629
- function getOwner() {
630
- var dispatcher = ReactSharedInternals.A;
631
- return null === dispatcher ? null : dispatcher.getOwner();
632
- }
633
- function UnknownOwner() {
634
- return Error("react-stack-top-frame");
635
- }
636
- function hasValidKey(config) {
637
- if (hasOwnProperty.call(config, "key")) {
638
- var getter = Object.getOwnPropertyDescriptor(config, "key").get;
639
- if (getter && getter.isReactWarning) return false;
640
- }
641
- return void 0 !== config.key;
642
- }
643
- function defineKeyPropWarningGetter(props, displayName) {
644
- function warnAboutAccessingKey() {
645
- specialPropKeyWarningShown || (specialPropKeyWarningShown = true, console.error(
646
- "%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)",
647
- displayName
648
- ));
649
- }
650
- warnAboutAccessingKey.isReactWarning = true;
651
- Object.defineProperty(props, "key", {
652
- get: warnAboutAccessingKey,
653
- configurable: true
654
- });
655
- }
656
- function elementRefGetterWithDeprecationWarning() {
657
- var componentName = getComponentNameFromType(this.type);
658
- didWarnAboutElementRef[componentName] || (didWarnAboutElementRef[componentName] = true, console.error(
659
- "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."
660
- ));
661
- componentName = this.props.ref;
662
- return void 0 !== componentName ? componentName : null;
663
- }
664
- function ReactElement(type, key, props, owner, debugStack, debugTask) {
665
- var refProp = props.ref;
666
- type = {
667
- $$typeof: REACT_ELEMENT_TYPE,
668
- type,
669
- key,
670
- props,
671
- _owner: owner
672
- };
673
- null !== (void 0 !== refProp ? refProp : null) ? Object.defineProperty(type, "ref", {
674
- enumerable: false,
675
- get: elementRefGetterWithDeprecationWarning
676
- }) : Object.defineProperty(type, "ref", { enumerable: false, value: null });
677
- type._store = {};
678
- Object.defineProperty(type._store, "validated", {
679
- configurable: false,
680
- enumerable: false,
681
- writable: true,
682
- value: 0
683
- });
684
- Object.defineProperty(type, "_debugInfo", {
685
- configurable: false,
686
- enumerable: false,
687
- writable: true,
688
- value: null
689
- });
690
- Object.defineProperty(type, "_debugStack", {
691
- configurable: false,
692
- enumerable: false,
693
- writable: true,
694
- value: debugStack
695
- });
696
- Object.defineProperty(type, "_debugTask", {
697
- configurable: false,
698
- enumerable: false,
699
- writable: true,
700
- value: debugTask
701
- });
702
- Object.freeze && (Object.freeze(type.props), Object.freeze(type));
703
- return type;
704
- }
705
- function cloneAndReplaceKey(oldElement, newKey) {
706
- newKey = ReactElement(
707
- oldElement.type,
708
- newKey,
709
- oldElement.props,
710
- oldElement._owner,
711
- oldElement._debugStack,
712
- oldElement._debugTask
713
- );
714
- oldElement._store && (newKey._store.validated = oldElement._store.validated);
715
- return newKey;
716
- }
717
- function validateChildKeys(node) {
718
- 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));
719
- }
720
- function isValidElement(object) {
721
- return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE;
722
- }
723
- function escape(key) {
724
- var escaperLookup = { "=": "=0", ":": "=2" };
725
- return "$" + key.replace(/[=:]/g, function(match) {
726
- return escaperLookup[match];
727
- });
728
- }
729
- function getElementKey(element, index) {
730
- return "object" === typeof element && null !== element && null != element.key ? (checkKeyStringCoercion(element.key), escape("" + element.key)) : index.toString(36);
731
- }
732
- function resolveThenable(thenable) {
733
- switch (thenable.status) {
734
- case "fulfilled":
735
- return thenable.value;
736
- case "rejected":
737
- throw thenable.reason;
738
- default:
739
- switch ("string" === typeof thenable.status ? thenable.then(noop, noop) : (thenable.status = "pending", thenable.then(
740
- function(fulfilledValue) {
741
- "pending" === thenable.status && (thenable.status = "fulfilled", thenable.value = fulfilledValue);
742
- },
743
- function(error) {
744
- "pending" === thenable.status && (thenable.status = "rejected", thenable.reason = error);
745
- }
746
- )), thenable.status) {
747
- case "fulfilled":
748
- return thenable.value;
749
- case "rejected":
750
- throw thenable.reason;
751
- }
752
- }
753
- throw thenable;
754
- }
755
- function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
756
- var type = typeof children;
757
- if ("undefined" === type || "boolean" === type) children = null;
758
- var invokeCallback = false;
759
- if (null === children) invokeCallback = true;
760
- else
761
- switch (type) {
762
- case "bigint":
763
- case "string":
764
- case "number":
765
- invokeCallback = true;
766
- break;
767
- case "object":
768
- switch (children.$$typeof) {
769
- case REACT_ELEMENT_TYPE:
770
- case REACT_PORTAL_TYPE:
771
- invokeCallback = true;
772
- break;
773
- case REACT_LAZY_TYPE:
774
- return invokeCallback = children._init, mapIntoArray(
775
- invokeCallback(children._payload),
776
- array,
777
- escapedPrefix,
778
- nameSoFar,
779
- callback
780
- );
781
- }
782
- }
783
- if (invokeCallback) {
784
- invokeCallback = children;
785
- callback = callback(invokeCallback);
786
- var childKey = "" === nameSoFar ? "." + getElementKey(invokeCallback, 0) : nameSoFar;
787
- isArrayImpl(callback) ? (escapedPrefix = "", null != childKey && (escapedPrefix = childKey.replace(userProvidedKeyEscapeRegex, "$&/") + "/"), mapIntoArray(callback, array, escapedPrefix, "", function(c) {
788
- return c;
789
- })) : null != callback && (isValidElement(callback) && (null != callback.key && (invokeCallback && invokeCallback.key === callback.key || checkKeyStringCoercion(callback.key)), escapedPrefix = cloneAndReplaceKey(
790
- callback,
791
- escapedPrefix + (null == callback.key || invokeCallback && invokeCallback.key === callback.key ? "" : ("" + callback.key).replace(
792
- userProvidedKeyEscapeRegex,
793
- "$&/"
794
- ) + "/") + childKey
795
- ), "" !== nameSoFar && null != invokeCallback && isValidElement(invokeCallback) && null == invokeCallback.key && invokeCallback._store && !invokeCallback._store.validated && (escapedPrefix._store.validated = 2), callback = escapedPrefix), array.push(callback));
796
- return 1;
797
- }
798
- invokeCallback = 0;
799
- childKey = "" === nameSoFar ? "." : nameSoFar + ":";
800
- if (isArrayImpl(children))
801
- for (var i = 0; i < children.length; i++)
802
- nameSoFar = children[i], type = childKey + getElementKey(nameSoFar, i), invokeCallback += mapIntoArray(
803
- nameSoFar,
804
- array,
805
- escapedPrefix,
806
- type,
807
- callback
808
- );
809
- else if (i = getIteratorFn(children), "function" === typeof i)
810
- for (i === children.entries && (didWarnAboutMaps || console.warn(
811
- "Using Maps as children is not supported. Use an array of keyed ReactElements instead."
812
- ), didWarnAboutMaps = true), children = i.call(children), i = 0; !(nameSoFar = children.next()).done; )
813
- nameSoFar = nameSoFar.value, type = childKey + getElementKey(nameSoFar, i++), invokeCallback += mapIntoArray(
814
- nameSoFar,
815
- array,
816
- escapedPrefix,
817
- type,
818
- callback
819
- );
820
- else if ("object" === type) {
821
- if ("function" === typeof children.then)
822
- return mapIntoArray(
823
- resolveThenable(children),
824
- array,
825
- escapedPrefix,
826
- nameSoFar,
827
- callback
828
- );
829
- array = String(children);
830
- throw Error(
831
- "Objects are not valid as a React child (found: " + ("[object Object]" === array ? "object with keys {" + Object.keys(children).join(", ") + "}" : array) + "). If you meant to render a collection of children, use an array instead."
832
- );
833
- }
834
- return invokeCallback;
835
- }
836
- function mapChildren(children, func, context) {
837
- if (null == children) return children;
838
- var result = [], count = 0;
839
- mapIntoArray(children, result, "", "", function(child) {
840
- return func.call(context, child, count++);
841
- });
842
- return result;
843
- }
844
- function lazyInitializer(payload) {
845
- if (-1 === payload._status) {
846
- var ioInfo = payload._ioInfo;
847
- null != ioInfo && (ioInfo.start = ioInfo.end = performance.now());
848
- ioInfo = payload._result;
849
- var thenable = ioInfo();
850
- thenable.then(
851
- function(moduleObject) {
852
- if (0 === payload._status || -1 === payload._status) {
853
- payload._status = 1;
854
- payload._result = moduleObject;
855
- var _ioInfo = payload._ioInfo;
856
- null != _ioInfo && (_ioInfo.end = performance.now());
857
- void 0 === thenable.status && (thenable.status = "fulfilled", thenable.value = moduleObject);
858
- }
859
- },
860
- function(error) {
861
- if (0 === payload._status || -1 === payload._status) {
862
- payload._status = 2;
863
- payload._result = error;
864
- var _ioInfo2 = payload._ioInfo;
865
- null != _ioInfo2 && (_ioInfo2.end = performance.now());
866
- void 0 === thenable.status && (thenable.status = "rejected", thenable.reason = error);
867
- }
868
- }
869
- );
870
- ioInfo = payload._ioInfo;
871
- if (null != ioInfo) {
872
- ioInfo.value = thenable;
873
- var displayName = thenable.displayName;
874
- "string" === typeof displayName && (ioInfo.name = displayName);
875
- }
876
- -1 === payload._status && (payload._status = 0, payload._result = thenable);
877
- }
878
- if (1 === payload._status)
879
- return ioInfo = payload._result, void 0 === ioInfo && console.error(
880
- "lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))\n\nDid you accidentally put curly braces around the import?",
881
- ioInfo
882
- ), "default" in ioInfo || console.error(
883
- "lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))",
884
- ioInfo
885
- ), ioInfo.default;
886
- throw payload._result;
887
- }
888
- function resolveDispatcher() {
889
- var dispatcher = ReactSharedInternals.H;
890
- null === dispatcher && console.error(
891
- "Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem."
892
- );
893
- return dispatcher;
894
- }
895
- function releaseAsyncTransition() {
896
- ReactSharedInternals.asyncTransitions--;
897
- }
898
- function enqueueTask(task) {
899
- if (null === enqueueTaskImpl)
900
- try {
901
- var requireString = ("require" + Math.random()).slice(0, 7);
902
- enqueueTaskImpl = (module2 && module2[requireString]).call(
903
- module2,
904
- "timers"
905
- ).setImmediate;
906
- } catch (_err) {
907
- enqueueTaskImpl = function(callback) {
908
- false === didWarnAboutMessageChannel && (didWarnAboutMessageChannel = true, "undefined" === typeof MessageChannel && console.error(
909
- "This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning."
910
- ));
911
- var channel = new MessageChannel();
912
- channel.port1.onmessage = callback;
913
- channel.port2.postMessage(void 0);
914
- };
915
- }
916
- return enqueueTaskImpl(task);
917
- }
918
- function aggregateErrors(errors) {
919
- return 1 < errors.length && "function" === typeof AggregateError ? new AggregateError(errors) : errors[0];
920
- }
921
- function popActScope(prevActQueue, prevActScopeDepth) {
922
- prevActScopeDepth !== actScopeDepth - 1 && console.error(
923
- "You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. "
924
- );
925
- actScopeDepth = prevActScopeDepth;
926
- }
927
- function recursivelyFlushAsyncActWork(returnValue, resolve, reject) {
928
- var queue = ReactSharedInternals.actQueue;
929
- if (null !== queue)
930
- if (0 !== queue.length)
931
- try {
932
- flushActQueue(queue);
933
- enqueueTask(function() {
934
- return recursivelyFlushAsyncActWork(returnValue, resolve, reject);
935
- });
936
- return;
937
- } catch (error) {
938
- ReactSharedInternals.thrownErrors.push(error);
939
- }
940
- else ReactSharedInternals.actQueue = null;
941
- 0 < ReactSharedInternals.thrownErrors.length ? (queue = aggregateErrors(ReactSharedInternals.thrownErrors), ReactSharedInternals.thrownErrors.length = 0, reject(queue)) : resolve(returnValue);
942
- }
943
- function flushActQueue(queue) {
944
- if (!isFlushing) {
945
- isFlushing = true;
946
- var i = 0;
947
- try {
948
- for (; i < queue.length; i++) {
949
- var callback = queue[i];
950
- do {
951
- ReactSharedInternals.didUsePromise = false;
952
- var continuation = callback(false);
953
- if (null !== continuation) {
954
- if (ReactSharedInternals.didUsePromise) {
955
- queue[i] = callback;
956
- queue.splice(0, i);
957
- return;
958
- }
959
- callback = continuation;
960
- } else break;
961
- } while (1);
962
- }
963
- queue.length = 0;
964
- } catch (error) {
965
- queue.splice(0, i + 1), ReactSharedInternals.thrownErrors.push(error);
966
- } finally {
967
- isFlushing = false;
968
- }
969
- }
970
- }
971
- "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());
972
- var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), MAYBE_ITERATOR_SYMBOL = Symbol.iterator, didWarnStateUpdateForUnmountedComponent = {}, ReactNoopUpdateQueue = {
973
- isMounted: function() {
974
- return false;
975
- },
976
- enqueueForceUpdate: function(publicInstance) {
977
- warnNoop(publicInstance, "forceUpdate");
978
- },
979
- enqueueReplaceState: function(publicInstance) {
980
- warnNoop(publicInstance, "replaceState");
981
- },
982
- enqueueSetState: function(publicInstance) {
983
- warnNoop(publicInstance, "setState");
984
- }
985
- }, assign = Object.assign, emptyObject = {};
986
- Object.freeze(emptyObject);
987
- Component.prototype.isReactComponent = {};
988
- Component.prototype.setState = function(partialState, callback) {
989
- if ("object" !== typeof partialState && "function" !== typeof partialState && null != partialState)
990
- throw Error(
991
- "takes an object of state variables to update or a function which returns an object of state variables."
992
- );
993
- this.updater.enqueueSetState(this, partialState, callback, "setState");
994
- };
995
- Component.prototype.forceUpdate = function(callback) {
996
- this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
997
- };
998
- var deprecatedAPIs = {
999
- isMounted: [
1000
- "isMounted",
1001
- "Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks."
1002
- ],
1003
- replaceState: [
1004
- "replaceState",
1005
- "Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236)."
1006
- ]
1007
- };
1008
- for (fnName in deprecatedAPIs)
1009
- deprecatedAPIs.hasOwnProperty(fnName) && defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);
1010
- ComponentDummy.prototype = Component.prototype;
1011
- deprecatedAPIs = PureComponent.prototype = new ComponentDummy();
1012
- deprecatedAPIs.constructor = PureComponent;
1013
- assign(deprecatedAPIs, Component.prototype);
1014
- deprecatedAPIs.isPureReactComponent = true;
1015
- var isArrayImpl = Array.isArray, REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), ReactSharedInternals = {
1016
- H: null,
1017
- A: null,
1018
- T: null,
1019
- S: null,
1020
- actQueue: null,
1021
- asyncTransitions: 0,
1022
- isBatchingLegacy: false,
1023
- didScheduleLegacyUpdate: false,
1024
- didUsePromise: false,
1025
- thrownErrors: [],
1026
- getCurrentStack: null,
1027
- recentlyCreatedOwnerStacks: 0
1028
- }, hasOwnProperty = Object.prototype.hasOwnProperty, createTask = console.createTask ? console.createTask : function() {
1029
- return null;
1030
- };
1031
- deprecatedAPIs = {
1032
- react_stack_bottom_frame: function(callStackForError) {
1033
- return callStackForError();
1034
- }
1035
- };
1036
- var specialPropKeyWarningShown, didWarnAboutOldJSXRuntime;
1037
- var didWarnAboutElementRef = {};
1038
- var unknownOwnerDebugStack = deprecatedAPIs.react_stack_bottom_frame.bind(
1039
- deprecatedAPIs,
1040
- UnknownOwner
1041
- )();
1042
- var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
1043
- var didWarnAboutMaps = false, userProvidedKeyEscapeRegex = /\/+/g, reportGlobalError = "function" === typeof reportError ? reportError : function(error) {
1044
- if ("object" === typeof window && "function" === typeof window.ErrorEvent) {
1045
- var event = new window.ErrorEvent("error", {
1046
- bubbles: true,
1047
- cancelable: true,
1048
- message: "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error),
1049
- error
1050
- });
1051
- if (!window.dispatchEvent(event)) return;
1052
- } else if ("object" === typeof process && "function" === typeof process.emit) {
1053
- process.emit("uncaughtException", error);
1054
- return;
1055
- }
1056
- console.error(error);
1057
- }, didWarnAboutMessageChannel = false, enqueueTaskImpl = null, actScopeDepth = 0, didWarnNoAwaitAct = false, isFlushing = false, queueSeveralMicrotasks = "function" === typeof queueMicrotask ? function(callback) {
1058
- queueMicrotask(function() {
1059
- return queueMicrotask(callback);
1060
- });
1061
- } : enqueueTask;
1062
- deprecatedAPIs = Object.freeze({
1063
- __proto__: null,
1064
- c: function(size) {
1065
- return resolveDispatcher().useMemoCache(size);
1066
- }
1067
- });
1068
- var fnName = {
1069
- map: mapChildren,
1070
- forEach: function(children, forEachFunc, forEachContext) {
1071
- mapChildren(
1072
- children,
1073
- function() {
1074
- forEachFunc.apply(this, arguments);
1075
- },
1076
- forEachContext
1077
- );
1078
- },
1079
- count: function(children) {
1080
- var n = 0;
1081
- mapChildren(children, function() {
1082
- n++;
1083
- });
1084
- return n;
1085
- },
1086
- toArray: function(children) {
1087
- return mapChildren(children, function(child) {
1088
- return child;
1089
- }) || [];
1090
- },
1091
- only: function(children) {
1092
- if (!isValidElement(children))
1093
- throw Error(
1094
- "React.Children.only expected to receive a single React element child."
1095
- );
1096
- return children;
1097
- }
1098
- };
1099
- exports2.Activity = REACT_ACTIVITY_TYPE;
1100
- exports2.Children = fnName;
1101
- exports2.Component = Component;
1102
- exports2.Fragment = REACT_FRAGMENT_TYPE;
1103
- exports2.Profiler = REACT_PROFILER_TYPE;
1104
- exports2.PureComponent = PureComponent;
1105
- exports2.StrictMode = REACT_STRICT_MODE_TYPE;
1106
- exports2.Suspense = REACT_SUSPENSE_TYPE;
1107
- exports2.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = ReactSharedInternals;
1108
- exports2.__COMPILER_RUNTIME = deprecatedAPIs;
1109
- exports2.act = function(callback) {
1110
- var prevActQueue = ReactSharedInternals.actQueue, prevActScopeDepth = actScopeDepth;
1111
- actScopeDepth++;
1112
- var queue = ReactSharedInternals.actQueue = null !== prevActQueue ? prevActQueue : [], didAwaitActCall = false;
1113
- try {
1114
- var result = callback();
1115
- } catch (error) {
1116
- ReactSharedInternals.thrownErrors.push(error);
1117
- }
1118
- if (0 < ReactSharedInternals.thrownErrors.length)
1119
- throw popActScope(prevActQueue, prevActScopeDepth), callback = aggregateErrors(ReactSharedInternals.thrownErrors), ReactSharedInternals.thrownErrors.length = 0, callback;
1120
- if (null !== result && "object" === typeof result && "function" === typeof result.then) {
1121
- var thenable = result;
1122
- queueSeveralMicrotasks(function() {
1123
- didAwaitActCall || didWarnNoAwaitAct || (didWarnNoAwaitAct = true, console.error(
1124
- "You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);"
1125
- ));
1126
- });
1127
- return {
1128
- then: function(resolve, reject) {
1129
- didAwaitActCall = true;
1130
- thenable.then(
1131
- function(returnValue) {
1132
- popActScope(prevActQueue, prevActScopeDepth);
1133
- if (0 === prevActScopeDepth) {
1134
- try {
1135
- flushActQueue(queue), enqueueTask(function() {
1136
- return recursivelyFlushAsyncActWork(
1137
- returnValue,
1138
- resolve,
1139
- reject
1140
- );
1141
- });
1142
- } catch (error$0) {
1143
- ReactSharedInternals.thrownErrors.push(error$0);
1144
- }
1145
- if (0 < ReactSharedInternals.thrownErrors.length) {
1146
- var _thrownError = aggregateErrors(
1147
- ReactSharedInternals.thrownErrors
1148
- );
1149
- ReactSharedInternals.thrownErrors.length = 0;
1150
- reject(_thrownError);
1151
- }
1152
- } else resolve(returnValue);
1153
- },
1154
- function(error) {
1155
- popActScope(prevActQueue, prevActScopeDepth);
1156
- 0 < ReactSharedInternals.thrownErrors.length ? (error = aggregateErrors(
1157
- ReactSharedInternals.thrownErrors
1158
- ), ReactSharedInternals.thrownErrors.length = 0, reject(error)) : reject(error);
1159
- }
1160
- );
1161
- }
1162
- };
1163
- }
1164
- var returnValue$jscomp$0 = result;
1165
- popActScope(prevActQueue, prevActScopeDepth);
1166
- 0 === prevActScopeDepth && (flushActQueue(queue), 0 !== queue.length && queueSeveralMicrotasks(function() {
1167
- didAwaitActCall || didWarnNoAwaitAct || (didWarnNoAwaitAct = true, console.error(
1168
- "A component suspended inside an `act` scope, but the `act` call was not awaited. When testing React components that depend on asynchronous data, you must await the result:\n\nawait act(() => ...)"
1169
- ));
1170
- }), ReactSharedInternals.actQueue = null);
1171
- if (0 < ReactSharedInternals.thrownErrors.length)
1172
- throw callback = aggregateErrors(ReactSharedInternals.thrownErrors), ReactSharedInternals.thrownErrors.length = 0, callback;
1173
- return {
1174
- then: function(resolve, reject) {
1175
- didAwaitActCall = true;
1176
- 0 === prevActScopeDepth ? (ReactSharedInternals.actQueue = queue, enqueueTask(function() {
1177
- return recursivelyFlushAsyncActWork(
1178
- returnValue$jscomp$0,
1179
- resolve,
1180
- reject
1181
- );
1182
- })) : resolve(returnValue$jscomp$0);
1183
- }
1184
- };
1185
- };
1186
- exports2.cache = function(fn) {
1187
- return function() {
1188
- return fn.apply(null, arguments);
1189
- };
1190
- };
1191
- exports2.cacheSignal = function() {
1192
- return null;
1193
- };
1194
- exports2.captureOwnerStack = function() {
1195
- var getCurrentStack = ReactSharedInternals.getCurrentStack;
1196
- return null === getCurrentStack ? null : getCurrentStack();
1197
- };
1198
- exports2.cloneElement = function(element, config, children) {
1199
- if (null === element || void 0 === element)
1200
- throw Error(
1201
- "The argument must be a React element, but you passed " + element + "."
1202
- );
1203
- var props = assign({}, element.props), key = element.key, owner = element._owner;
1204
- if (null != config) {
1205
- var JSCompiler_inline_result;
1206
- a: {
1207
- if (hasOwnProperty.call(config, "ref") && (JSCompiler_inline_result = Object.getOwnPropertyDescriptor(
1208
- config,
1209
- "ref"
1210
- ).get) && JSCompiler_inline_result.isReactWarning) {
1211
- JSCompiler_inline_result = false;
1212
- break a;
1213
- }
1214
- JSCompiler_inline_result = void 0 !== config.ref;
1215
- }
1216
- JSCompiler_inline_result && (owner = getOwner());
1217
- hasValidKey(config) && (checkKeyStringCoercion(config.key), key = "" + config.key);
1218
- for (propName in config)
1219
- !hasOwnProperty.call(config, propName) || "key" === propName || "__self" === propName || "__source" === propName || "ref" === propName && void 0 === config.ref || (props[propName] = config[propName]);
1220
- }
1221
- var propName = arguments.length - 2;
1222
- if (1 === propName) props.children = children;
1223
- else if (1 < propName) {
1224
- JSCompiler_inline_result = Array(propName);
1225
- for (var i = 0; i < propName; i++)
1226
- JSCompiler_inline_result[i] = arguments[i + 2];
1227
- props.children = JSCompiler_inline_result;
1228
- }
1229
- props = ReactElement(
1230
- element.type,
1231
- key,
1232
- props,
1233
- owner,
1234
- element._debugStack,
1235
- element._debugTask
1236
- );
1237
- for (key = 2; key < arguments.length; key++)
1238
- validateChildKeys(arguments[key]);
1239
- return props;
1240
- };
1241
- exports2.createContext = function(defaultValue) {
1242
- defaultValue = {
1243
- $$typeof: REACT_CONTEXT_TYPE,
1244
- _currentValue: defaultValue,
1245
- _currentValue2: defaultValue,
1246
- _threadCount: 0,
1247
- Provider: null,
1248
- Consumer: null
1249
- };
1250
- defaultValue.Provider = defaultValue;
1251
- defaultValue.Consumer = {
1252
- $$typeof: REACT_CONSUMER_TYPE,
1253
- _context: defaultValue
1254
- };
1255
- defaultValue._currentRenderer = null;
1256
- defaultValue._currentRenderer2 = null;
1257
- return defaultValue;
1258
- };
1259
- exports2.createElement = function(type, config, children) {
1260
- for (var i = 2; i < arguments.length; i++)
1261
- validateChildKeys(arguments[i]);
1262
- i = {};
1263
- var key = null;
1264
- if (null != config)
1265
- for (propName in didWarnAboutOldJSXRuntime || !("__self" in config) || "key" in config || (didWarnAboutOldJSXRuntime = true, console.warn(
1266
- "Your app (or one of its dependencies) is using an outdated JSX transform. Update to the modern JSX transform for faster performance: https://react.dev/link/new-jsx-transform"
1267
- )), hasValidKey(config) && (checkKeyStringCoercion(config.key), key = "" + config.key), config)
1268
- hasOwnProperty.call(config, propName) && "key" !== propName && "__self" !== propName && "__source" !== propName && (i[propName] = config[propName]);
1269
- var childrenLength = arguments.length - 2;
1270
- if (1 === childrenLength) i.children = children;
1271
- else if (1 < childrenLength) {
1272
- for (var childArray = Array(childrenLength), _i = 0; _i < childrenLength; _i++)
1273
- childArray[_i] = arguments[_i + 2];
1274
- Object.freeze && Object.freeze(childArray);
1275
- i.children = childArray;
1276
- }
1277
- if (type && type.defaultProps)
1278
- for (propName in childrenLength = type.defaultProps, childrenLength)
1279
- void 0 === i[propName] && (i[propName] = childrenLength[propName]);
1280
- key && defineKeyPropWarningGetter(
1281
- i,
1282
- "function" === typeof type ? type.displayName || type.name || "Unknown" : type
1283
- );
1284
- var propName = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
1285
- return ReactElement(
1286
- type,
1287
- key,
1288
- i,
1289
- getOwner(),
1290
- propName ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
1291
- propName ? createTask(getTaskName(type)) : unknownOwnerDebugTask
1292
- );
1293
- };
1294
- exports2.createRef = function() {
1295
- var refObject = { current: null };
1296
- Object.seal(refObject);
1297
- return refObject;
1298
- };
1299
- exports2.forwardRef = function(render) {
1300
- null != render && render.$$typeof === REACT_MEMO_TYPE ? console.error(
1301
- "forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...))."
1302
- ) : "function" !== typeof render ? console.error(
1303
- "forwardRef requires a render function but was given %s.",
1304
- null === render ? "null" : typeof render
1305
- ) : 0 !== render.length && 2 !== render.length && console.error(
1306
- "forwardRef render functions accept exactly two parameters: props and ref. %s",
1307
- 1 === render.length ? "Did you forget to use the ref parameter?" : "Any additional parameter will be undefined."
1308
- );
1309
- null != render && null != render.defaultProps && console.error(
1310
- "forwardRef render functions do not support defaultProps. Did you accidentally pass a React component?"
1311
- );
1312
- var elementType = { $$typeof: REACT_FORWARD_REF_TYPE, render }, ownName;
1313
- Object.defineProperty(elementType, "displayName", {
1314
- enumerable: false,
1315
- configurable: true,
1316
- get: function() {
1317
- return ownName;
1318
- },
1319
- set: function(name) {
1320
- ownName = name;
1321
- render.name || render.displayName || (Object.defineProperty(render, "name", { value: name }), render.displayName = name);
1322
- }
1323
- });
1324
- return elementType;
1325
- };
1326
- exports2.isValidElement = isValidElement;
1327
- exports2.lazy = function(ctor) {
1328
- ctor = { _status: -1, _result: ctor };
1329
- var lazyType = {
1330
- $$typeof: REACT_LAZY_TYPE,
1331
- _payload: ctor,
1332
- _init: lazyInitializer
1333
- }, ioInfo = {
1334
- name: "lazy",
1335
- start: -1,
1336
- end: -1,
1337
- value: null,
1338
- owner: null,
1339
- debugStack: Error("react-stack-top-frame"),
1340
- debugTask: console.createTask ? console.createTask("lazy()") : null
1341
- };
1342
- ctor._ioInfo = ioInfo;
1343
- lazyType._debugInfo = [{ awaited: ioInfo }];
1344
- return lazyType;
1345
- };
1346
- exports2.memo = function(type, compare) {
1347
- null == type && console.error(
1348
- "memo: The first argument must be a component. Instead received: %s",
1349
- null === type ? "null" : typeof type
1350
- );
1351
- compare = {
1352
- $$typeof: REACT_MEMO_TYPE,
1353
- type,
1354
- compare: void 0 === compare ? null : compare
1355
- };
1356
- var ownName;
1357
- Object.defineProperty(compare, "displayName", {
1358
- enumerable: false,
1359
- configurable: true,
1360
- get: function() {
1361
- return ownName;
1362
- },
1363
- set: function(name) {
1364
- ownName = name;
1365
- type.name || type.displayName || (Object.defineProperty(type, "name", { value: name }), type.displayName = name);
1366
- }
1367
- });
1368
- return compare;
1369
- };
1370
- exports2.startTransition = function(scope) {
1371
- var prevTransition = ReactSharedInternals.T, currentTransition = {};
1372
- currentTransition._updatedFibers = /* @__PURE__ */ new Set();
1373
- ReactSharedInternals.T = currentTransition;
1374
- try {
1375
- var returnValue = scope(), onStartTransitionFinish = ReactSharedInternals.S;
1376
- null !== onStartTransitionFinish && onStartTransitionFinish(currentTransition, returnValue);
1377
- "object" === typeof returnValue && null !== returnValue && "function" === typeof returnValue.then && (ReactSharedInternals.asyncTransitions++, returnValue.then(releaseAsyncTransition, releaseAsyncTransition), returnValue.then(noop, reportGlobalError));
1378
- } catch (error) {
1379
- reportGlobalError(error);
1380
- } finally {
1381
- null === prevTransition && currentTransition._updatedFibers && (scope = currentTransition._updatedFibers.size, currentTransition._updatedFibers.clear(), 10 < scope && console.warn(
1382
- "Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table."
1383
- )), null !== prevTransition && null !== currentTransition.types && (null !== prevTransition.types && prevTransition.types !== currentTransition.types && console.error(
1384
- "We expected inner Transitions to have transferred the outer types set and that you cannot add to the outer Transition while inside the inner.This is a bug in React."
1385
- ), prevTransition.types = currentTransition.types), ReactSharedInternals.T = prevTransition;
1386
- }
1387
- };
1388
- exports2.unstable_useCacheRefresh = function() {
1389
- return resolveDispatcher().useCacheRefresh();
1390
- };
1391
- exports2.use = function(usable) {
1392
- return resolveDispatcher().use(usable);
1393
- };
1394
- exports2.useActionState = function(action, initialState, permalink) {
1395
- return resolveDispatcher().useActionState(
1396
- action,
1397
- initialState,
1398
- permalink
1399
- );
1400
- };
1401
- exports2.useCallback = function(callback, deps) {
1402
- return resolveDispatcher().useCallback(callback, deps);
1403
- };
1404
- exports2.useContext = function(Context) {
1405
- var dispatcher = resolveDispatcher();
1406
- Context.$$typeof === REACT_CONSUMER_TYPE && console.error(
1407
- "Calling useContext(Context.Consumer) is not supported and will cause bugs. Did you mean to call useContext(Context) instead?"
1408
- );
1409
- return dispatcher.useContext(Context);
1410
- };
1411
- exports2.useDebugValue = function(value, formatterFn) {
1412
- return resolveDispatcher().useDebugValue(value, formatterFn);
1413
- };
1414
- exports2.useDeferredValue = function(value, initialValue) {
1415
- return resolveDispatcher().useDeferredValue(value, initialValue);
1416
- };
1417
- exports2.useEffect = function(create, deps) {
1418
- null == create && console.warn(
1419
- "React Hook useEffect requires an effect callback. Did you forget to pass a callback to the hook?"
1420
- );
1421
- return resolveDispatcher().useEffect(create, deps);
1422
- };
1423
- exports2.useEffectEvent = function(callback) {
1424
- return resolveDispatcher().useEffectEvent(callback);
1425
- };
1426
- exports2.useId = function() {
1427
- return resolveDispatcher().useId();
1428
- };
1429
- exports2.useImperativeHandle = function(ref, create, deps) {
1430
- return resolveDispatcher().useImperativeHandle(ref, create, deps);
1431
- };
1432
- exports2.useInsertionEffect = function(create, deps) {
1433
- null == create && console.warn(
1434
- "React Hook useInsertionEffect requires an effect callback. Did you forget to pass a callback to the hook?"
1435
- );
1436
- return resolveDispatcher().useInsertionEffect(create, deps);
1437
- };
1438
- exports2.useLayoutEffect = function(create, deps) {
1439
- null == create && console.warn(
1440
- "React Hook useLayoutEffect requires an effect callback. Did you forget to pass a callback to the hook?"
1441
- );
1442
- return resolveDispatcher().useLayoutEffect(create, deps);
1443
- };
1444
- exports2.useMemo = function(create, deps) {
1445
- return resolveDispatcher().useMemo(create, deps);
1446
- };
1447
- exports2.useOptimistic = function(passthrough, reducer) {
1448
- return resolveDispatcher().useOptimistic(passthrough, reducer);
1449
- };
1450
- exports2.useReducer = function(reducer, initialArg, init) {
1451
- return resolveDispatcher().useReducer(reducer, initialArg, init);
1452
- };
1453
- exports2.useRef = function(initialValue) {
1454
- return resolveDispatcher().useRef(initialValue);
1455
- };
1456
- exports2.useState = function(initialState) {
1457
- return resolveDispatcher().useState(initialState);
1458
- };
1459
- exports2.useSyncExternalStore = function(subscribe, getSnapshot, getServerSnapshot) {
1460
- return resolveDispatcher().useSyncExternalStore(
1461
- subscribe,
1462
- getSnapshot,
1463
- getServerSnapshot
1464
- );
1465
- };
1466
- exports2.useTransition = function() {
1467
- return resolveDispatcher().useTransition();
1468
- };
1469
- exports2.version = "19.2.0";
1470
- "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());
1471
- })();
1472
- }
1473
- });
1474
-
1475
- // node_modules/react/index.js
1476
- var require_react = __commonJS({
1477
- "node_modules/react/index.js"(exports2, module2) {
1478
- "use strict";
1479
- if (process.env.NODE_ENV === "production") {
1480
- module2.exports = require_react_production();
1481
- } else {
1482
- module2.exports = require_react_development();
1483
- }
1484
- }
1485
- });
1486
-
1487
- // node_modules/react/cjs/react-jsx-runtime.development.js
1488
- var require_react_jsx_runtime_development = __commonJS({
1489
- "node_modules/react/cjs/react-jsx-runtime.development.js"(exports2) {
1490
- "use strict";
1491
- "production" !== process.env.NODE_ENV && (function() {
1492
- function getComponentNameFromType(type) {
1493
- if (null == type) return null;
1494
- if ("function" === typeof type)
1495
- return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null;
1496
- if ("string" === typeof type) return type;
1497
- switch (type) {
1498
- case REACT_FRAGMENT_TYPE:
1499
- return "Fragment";
1500
- case REACT_PROFILER_TYPE:
1501
- return "Profiler";
1502
- case REACT_STRICT_MODE_TYPE:
1503
- return "StrictMode";
1504
- case REACT_SUSPENSE_TYPE:
1505
- return "Suspense";
1506
- case REACT_SUSPENSE_LIST_TYPE:
1507
- return "SuspenseList";
1508
- case REACT_ACTIVITY_TYPE:
1509
- return "Activity";
1510
- }
1511
- if ("object" === typeof type)
1512
- switch ("number" === typeof type.tag && console.error(
1513
- "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
1514
- ), type.$$typeof) {
1515
- case REACT_PORTAL_TYPE:
1516
- return "Portal";
1517
- case REACT_CONTEXT_TYPE:
1518
- return type.displayName || "Context";
1519
- case REACT_CONSUMER_TYPE:
1520
- return (type._context.displayName || "Context") + ".Consumer";
1521
- case REACT_FORWARD_REF_TYPE:
1522
- var innerType = type.render;
1523
- type = type.displayName;
1524
- type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef");
1525
- return type;
1526
- case REACT_MEMO_TYPE:
1527
- return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo";
1528
- case REACT_LAZY_TYPE:
1529
- innerType = type._payload;
1530
- type = type._init;
1531
- try {
1532
- return getComponentNameFromType(type(innerType));
1533
- } catch (x) {
1534
- }
1535
- }
1536
- return null;
1537
- }
1538
- function testStringCoercion(value) {
1539
- return "" + value;
1540
- }
1541
- function checkKeyStringCoercion(value) {
1542
- try {
1543
- testStringCoercion(value);
1544
- var JSCompiler_inline_result = false;
1545
- } catch (e) {
1546
- JSCompiler_inline_result = true;
1547
- }
1548
- if (JSCompiler_inline_result) {
1549
- JSCompiler_inline_result = console;
1550
- var JSCompiler_temp_const = JSCompiler_inline_result.error;
1551
- var JSCompiler_inline_result$jscomp$0 = "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
1552
- JSCompiler_temp_const.call(
1553
- JSCompiler_inline_result,
1554
- "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
1555
- JSCompiler_inline_result$jscomp$0
1556
- );
1557
- return testStringCoercion(value);
1558
- }
1559
- }
1560
- function getTaskName(type) {
1561
- if (type === REACT_FRAGMENT_TYPE) return "<>";
1562
- if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE)
1563
- return "<...>";
1564
- try {
1565
- var name = getComponentNameFromType(type);
1566
- return name ? "<" + name + ">" : "<...>";
1567
- } catch (x) {
1568
- return "<...>";
1569
- }
1570
- }
1571
- function getOwner() {
1572
- var dispatcher = ReactSharedInternals.A;
1573
- return null === dispatcher ? null : dispatcher.getOwner();
1574
- }
1575
- function UnknownOwner() {
1576
- return Error("react-stack-top-frame");
1577
- }
1578
- function hasValidKey(config) {
1579
- if (hasOwnProperty.call(config, "key")) {
1580
- var getter = Object.getOwnPropertyDescriptor(config, "key").get;
1581
- if (getter && getter.isReactWarning) return false;
1582
- }
1583
- return void 0 !== config.key;
1584
- }
1585
- function defineKeyPropWarningGetter(props, displayName) {
1586
- function warnAboutAccessingKey() {
1587
- specialPropKeyWarningShown || (specialPropKeyWarningShown = true, console.error(
1588
- "%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)",
1589
- displayName
1590
- ));
1591
- }
1592
- warnAboutAccessingKey.isReactWarning = true;
1593
- Object.defineProperty(props, "key", {
1594
- get: warnAboutAccessingKey,
1595
- configurable: true
1596
- });
1597
- }
1598
- function elementRefGetterWithDeprecationWarning() {
1599
- var componentName = getComponentNameFromType(this.type);
1600
- didWarnAboutElementRef[componentName] || (didWarnAboutElementRef[componentName] = true, console.error(
1601
- "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."
1602
- ));
1603
- componentName = this.props.ref;
1604
- return void 0 !== componentName ? componentName : null;
1605
- }
1606
- function ReactElement(type, key, props, owner, debugStack, debugTask) {
1607
- var refProp = props.ref;
1608
- type = {
1609
- $$typeof: REACT_ELEMENT_TYPE,
1610
- type,
1611
- key,
1612
- props,
1613
- _owner: owner
1614
- };
1615
- null !== (void 0 !== refProp ? refProp : null) ? Object.defineProperty(type, "ref", {
1616
- enumerable: false,
1617
- get: elementRefGetterWithDeprecationWarning
1618
- }) : Object.defineProperty(type, "ref", { enumerable: false, value: null });
1619
- type._store = {};
1620
- Object.defineProperty(type._store, "validated", {
1621
- configurable: false,
1622
- enumerable: false,
1623
- writable: true,
1624
- value: 0
1625
- });
1626
- Object.defineProperty(type, "_debugInfo", {
1627
- configurable: false,
1628
- enumerable: false,
1629
- writable: true,
1630
- value: null
1631
- });
1632
- Object.defineProperty(type, "_debugStack", {
1633
- configurable: false,
1634
- enumerable: false,
1635
- writable: true,
1636
- value: debugStack
1637
- });
1638
- Object.defineProperty(type, "_debugTask", {
1639
- configurable: false,
1640
- enumerable: false,
1641
- writable: true,
1642
- value: debugTask
1643
- });
1644
- Object.freeze && (Object.freeze(type.props), Object.freeze(type));
1645
- return type;
1646
- }
1647
- function jsxDEVImpl(type, config, maybeKey, isStaticChildren, debugStack, debugTask) {
1648
- var children = config.children;
1649
- if (void 0 !== children)
1650
- if (isStaticChildren)
1651
- if (isArrayImpl(children)) {
1652
- for (isStaticChildren = 0; isStaticChildren < children.length; isStaticChildren++)
1653
- validateChildKeys(children[isStaticChildren]);
1654
- Object.freeze && Object.freeze(children);
1655
- } else
1656
- console.error(
1657
- "React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."
1658
- );
1659
- else validateChildKeys(children);
1660
- if (hasOwnProperty.call(config, "key")) {
1661
- children = getComponentNameFromType(type);
1662
- var keys = Object.keys(config).filter(function(k) {
1663
- return "key" !== k;
1664
- });
1665
- isStaticChildren = 0 < keys.length ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" : "{key: someKey}";
1666
- didWarnAboutKeySpread[children + isStaticChildren] || (keys = 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}", console.error(
1667
- '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} />',
1668
- isStaticChildren,
1669
- children,
1670
- keys,
1671
- children
1672
- ), didWarnAboutKeySpread[children + isStaticChildren] = true);
1673
- }
1674
- children = null;
1675
- void 0 !== maybeKey && (checkKeyStringCoercion(maybeKey), children = "" + maybeKey);
1676
- hasValidKey(config) && (checkKeyStringCoercion(config.key), children = "" + config.key);
1677
- if ("key" in config) {
1678
- maybeKey = {};
1679
- for (var propName in config)
1680
- "key" !== propName && (maybeKey[propName] = config[propName]);
1681
- } else maybeKey = config;
1682
- children && defineKeyPropWarningGetter(
1683
- maybeKey,
1684
- "function" === typeof type ? type.displayName || type.name || "Unknown" : type
1685
- );
1686
- return ReactElement(
1687
- type,
1688
- children,
1689
- maybeKey,
1690
- getOwner(),
1691
- debugStack,
1692
- debugTask
1693
- );
1694
- }
1695
- function validateChildKeys(node) {
1696
- 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));
1697
- }
1698
- function isValidElement(object) {
1699
- return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE;
1700
- }
1701
- var React = require_react(), REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, hasOwnProperty = Object.prototype.hasOwnProperty, isArrayImpl = Array.isArray, createTask = console.createTask ? console.createTask : function() {
1702
- return null;
1703
- };
1704
- React = {
1705
- react_stack_bottom_frame: function(callStackForError) {
1706
- return callStackForError();
1707
- }
1708
- };
1709
- var specialPropKeyWarningShown;
1710
- var didWarnAboutElementRef = {};
1711
- var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(
1712
- React,
1713
- UnknownOwner
1714
- )();
1715
- var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
1716
- var didWarnAboutKeySpread = {};
1717
- exports2.Fragment = REACT_FRAGMENT_TYPE;
1718
- exports2.jsx = function(type, config, maybeKey) {
1719
- var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
1720
- return jsxDEVImpl(
1721
- type,
1722
- config,
1723
- maybeKey,
1724
- false,
1725
- trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
1726
- trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
1727
- );
1728
- };
1729
- exports2.jsxs = function(type, config, maybeKey) {
1730
- var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
1731
- return jsxDEVImpl(
1732
- type,
1733
- config,
1734
- maybeKey,
1735
- true,
1736
- trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
1737
- trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
1738
- );
1739
- };
1740
- })();
1741
- }
1742
- });
1743
-
1744
- // node_modules/react/jsx-runtime.js
1745
- var require_jsx_runtime = __commonJS({
1746
- "node_modules/react/jsx-runtime.js"(exports2, module2) {
1747
- "use strict";
1748
- if (process.env.NODE_ENV === "production") {
1749
- module2.exports = require_react_jsx_runtime_production();
1750
- } else {
1751
- module2.exports = require_react_jsx_runtime_development();
1752
- }
1753
- }
1754
- });
1755
-
1756
19
  // src/index.ts
1757
20
  var index_exports = {};
1758
21
  __export(index_exports, {
@@ -1782,7 +45,7 @@ var injectStyles = () => {
1782
45
  if (document.getElementById("tccd-ui-styles")) return;
1783
46
  const style = document.createElement("style");
1784
47
  style.id = "tccd-ui-styles";
1785
- style.textContent = '/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */\n@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-50:oklch(97.1% .013 17.38);--color-red-100:oklch(93.6% .032 17.717);--color-red-200:oklch(88.5% .062 18.334);--color-red-300:oklch(80.8% .114 19.571);--color-red-500:oklch(63.7% .237 25.331);--color-red-600:oklch(57.7% .245 27.325);--color-red-700:oklch(50.5% .213 27.518);--color-red-800:oklch(44.4% .177 26.899);--color-gray-100:oklch(96.7% .003 264.542);--color-gray-200:oklch(92.8% .006 264.531);--color-gray-300:oklch(87.2% .01 258.338);--color-gray-400:oklch(70.7% .022 261.325);--color-gray-600:oklch(44.6% .03 256.802);--color-gray-900:oklch(21% .034 264.665);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-md:28rem;--container-lg:32rem;--container-xl:36rem;--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height:calc(1.5/1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height:calc(2.25/1.875);--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5/2.25);--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--drop-shadow-2xl:0 25px 25px #00000026;--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-spin:spin 1s linear infinite;--animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;--blur-sm:8px;--blur-xl:24px;--blur-2xl:40px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--color-dashboard-welcome-bg:#295e7e2e;--color-dashboard-description:#a49ea1;--color-primary:#cd3a38;--color-secondary:#295e7e;--color-contrast:#272727;--color-background:#fff;--color-text:#f8f8f8;--color-muted-primary:#e9aaa9;--color-muted-secondary:#babdc4;--color-inactive-tab-text:#6b7280;--color-label:#b3b3b3;--color-error:#fb2c36;--color-background-contrast:#e5e7eb}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.inset-0{inset:calc(var(--spacing)*0)}.inset-4{inset:calc(var(--spacing)*4)}.top-1\\/2{top:50%}.top-8{top:calc(var(--spacing)*8)}.right-3{right:calc(var(--spacing)*3)}.right-8{right:calc(var(--spacing)*8)}.bottom-8{bottom:calc(var(--spacing)*8)}.left-0{left:calc(var(--spacing)*0)}.left-4{left:calc(var(--spacing)*4)}.left-8{left:calc(var(--spacing)*8)}.z-10{z-index:10}.z-50{z-index:50}.m-auto{margin:auto}.mx-4{margin-inline:calc(var(--spacing)*4)}.mx-auto{margin-inline:auto}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-8{margin-top:calc(var(--spacing)*8)}.mr-2{margin-right:calc(var(--spacing)*2)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-5{margin-bottom:calc(var(--spacing)*5)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.mb-8{margin-bottom:calc(var(--spacing)*8)}.-ml-1{margin-left:calc(var(--spacing)*-1)}.ml-2{margin-left:calc(var(--spacing)*2)}.flex{display:flex}.hidden{display:none}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.h-2{height:calc(var(--spacing)*2)}.h-3{height:calc(var(--spacing)*3)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-12{height:calc(var(--spacing)*12)}.h-16{height:calc(var(--spacing)*16)}.h-20{height:calc(var(--spacing)*20)}.h-fit{height:fit-content}.h-full{height:100%}.h-screen{height:100vh}.max-h-60{max-height:calc(var(--spacing)*60)}.max-h-\\[90vh\\]{max-height:90vh}.min-h-screen{min-height:100vh}.w-2{width:calc(var(--spacing)*2)}.w-3{width:calc(var(--spacing)*3)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-12{width:calc(var(--spacing)*12)}.w-16{width:calc(var(--spacing)*16)}.w-20{width:calc(var(--spacing)*20)}.w-24{width:calc(var(--spacing)*24)}.w-32{width:calc(var(--spacing)*32)}.w-48{width:calc(var(--spacing)*48)}.w-64{width:calc(var(--spacing)*64)}.w-80{width:calc(var(--spacing)*80)}.w-\\[110px\\]{width:110px}.w-auto{width:auto}.w-fit{width:fit-content}.w-full{width:100%}.w-screen{width:100vw}.max-w-md{max-width:var(--container-md)}.flex-1{flex:1}.-translate-y-1\\/2{--tw-translate-y:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.scale-150{--tw-scale-x:150%;--tw-scale-y:150%;--tw-scale-z:150%;scale:var(--tw-scale-x)var(--tw-scale-y)}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.animate-pulse{animation:var(--animate-pulse)}.animate-spin{animation:var(--animate-spin)}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-4{gap:calc(var(--spacing)*4)}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-tl-lg{border-top-left-radius:var(--radius-lg)}.rounded-tr-lg{border-top-right-radius:var(--radius-lg)}.rounded-br-lg{border-bottom-right-radius:var(--radius-lg)}.rounded-bl-lg{border-bottom-left-radius:var(--radius-lg)}.border{border-style:var(--tw-border-style);border-width:1px}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-t-2{border-top-style:var(--tw-border-style);border-top-width:2px}.border-r-2{border-right-style:var(--tw-border-style);border-right-width:2px}.border-b-2{border-bottom-style:var(--tw-border-style);border-bottom-width:2px}.border-l-2{border-left-style:var(--tw-border-style);border-left-width:2px}.border-contrast{border-color:var(--color-contrast)}.border-gray-300{border-color:var(--color-gray-300)}.border-gray-400{border-color:var(--color-gray-400)}.border-inactive-tab-text{border-color:var(--color-inactive-tab-text)}.border-primary{border-color:var(--color-primary)}.border-primary\\/30{border-color:#cd3a384d}@supports (color:color-mix(in lab, red, red)){.border-primary\\/30{border-color:color-mix(in oklab,var(--color-primary)30%,transparent)}}.border-red-200{border-color:var(--color-red-200)}.border-red-300{border-color:var(--color-red-300)}.border-secondary{border-color:var(--color-secondary)}.border-secondary\\/30{border-color:#295e7e4d}@supports (color:color-mix(in lab, red, red)){.border-secondary\\/30{border-color:color-mix(in oklab,var(--color-secondary)30%,transparent)}}.border-white\\/20{border-color:#fff3}@supports (color:color-mix(in lab, red, red)){.border-white\\/20{border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.bg-background{background-color:var(--color-background)}.bg-background\\/50{background-color:#ffffff80}@supports (color:color-mix(in lab, red, red)){.bg-background\\/50{background-color:color-mix(in oklab,var(--color-background)50%,transparent)}}.bg-black\\/30{background-color:#0000004d}@supports (color:color-mix(in lab, red, red)){.bg-black\\/30{background-color:color-mix(in oklab,var(--color-black)30%,transparent)}}.bg-contrast{background-color:var(--color-contrast)}.bg-gray-100{background-color:var(--color-gray-100)}.bg-gray-200{background-color:var(--color-gray-200)}.bg-muted-primary{background-color:var(--color-muted-primary)}.bg-muted-secondary\\/30{background-color:#babdc44d}@supports (color:color-mix(in lab, red, red)){.bg-muted-secondary\\/30{background-color:color-mix(in oklab,var(--color-muted-secondary)30%,transparent)}}.bg-primary{background-color:var(--color-primary)}.bg-primary\\/20{background-color:#cd3a3833}@supports (color:color-mix(in lab, red, red)){.bg-primary\\/20{background-color:color-mix(in oklab,var(--color-primary)20%,transparent)}}.bg-red-50{background-color:var(--color-red-50)}.bg-red-100{background-color:var(--color-red-100)}.bg-secondary{background-color:var(--color-secondary)}.bg-secondary\\/20{background-color:#295e7e33}@supports (color:color-mix(in lab, red, red)){.bg-secondary\\/20{background-color:color-mix(in oklab,var(--color-secondary)20%,transparent)}}.bg-transparent{background-color:#0000}.bg-white{background-color:var(--color-white)}.bg-white\\/10{background-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.bg-white\\/10{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.bg-gradient-to-br{--tw-gradient-position:to bottom right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-tr{--tw-gradient-position:to top right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-background{--tw-gradient-from:var(--color-background);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-gray-200{--tw-gradient-from:var(--color-gray-200);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-primary{--tw-gradient-from:var(--color-primary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-secondary{--tw-gradient-from:var(--color-secondary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-transparent{--tw-gradient-from:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.via-dashboard-welcome-bg{--tw-gradient-via:var(--color-dashboard-welcome-bg);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-gray-100{--tw-gradient-via:var(--color-gray-100);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-primary{--tw-gradient-via:var(--color-primary);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-secondary{--tw-gradient-via:var(--color-secondary);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-white\\/40{--tw-gradient-via:#fff6}@supports (color:color-mix(in lab, red, red)){.via-white\\/40{--tw-gradient-via:color-mix(in oklab,var(--color-white)40%,transparent)}}.via-white\\/40{--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.to-gray-200{--tw-gradient-to:var(--color-gray-200);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-muted-secondary{--tw-gradient-to:var(--color-muted-secondary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-primary{--tw-gradient-to:var(--color-primary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-secondary{--tw-gradient-to:var(--color-secondary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-transparent{--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.bg-clip-text{-webkit-background-clip:text;background-clip:text}.object-cover{object-fit:cover}.p-1{padding:calc(var(--spacing)*1)}.p-2{padding:calc(var(--spacing)*2)}.p-4{padding:calc(var(--spacing)*4)}.p-5{padding:calc(var(--spacing)*5)}.p-8{padding:calc(var(--spacing)*8)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-6{padding-inline:calc(var(--spacing)*6)}.py-1\\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-16{padding-block:calc(var(--spacing)*16)}.pr-4{padding-right:calc(var(--spacing)*4)}.pr-10{padding-right:calc(var(--spacing)*10)}.pl-7{padding-left:calc(var(--spacing)*7)}.pl-12{padding-left:calc(var(--spacing)*12)}.text-center{text-align:center}.text-left{text-align:left}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-\\[9px\\]{font-size:9px}.text-\\[11px\\]{font-size:11px}.text-\\[14px\\]{font-size:14px}.text-\\[24px\\]{font-size:24px}.text-\\[52px\\]{font-size:52px}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.whitespace-nowrap{white-space:nowrap}.text-dashboard-description{color:var(--color-dashboard-description)}.text-error{color:var(--color-error)}.text-gray-400{color:var(--color-gray-400)}.text-gray-900{color:var(--color-gray-900)}.text-inactive-tab-text{color:var(--color-inactive-tab-text)}.text-label{color:var(--color-label)}.text-muted-secondary{color:var(--color-muted-secondary)}.text-muted-secondary\\/60{color:#babdc499}@supports (color:color-mix(in lab, red, red)){.text-muted-secondary\\/60{color:color-mix(in oklab,var(--color-muted-secondary)60%,transparent)}}.text-primary{color:var(--color-primary)}.text-red-500{color:var(--color-red-500)}.text-red-600{color:var(--color-red-600)}.text-red-700{color:var(--color-red-700)}.text-red-800{color:var(--color-red-800)}.text-secondary{color:var(--color-secondary)}.text-text{color:var(--color-text)}.text-transparent{color:#0000}.text-white{color:var(--color-white)}.opacity-0{opacity:0}.opacity-30{opacity:.3}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-80{opacity:.8}.opacity-100{opacity:1}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\\[0_0px_20px_rgba\\(0\\,0\\,0\\,0\\.2\\)\\]{--tw-shadow:0 0px 20px var(--tw-shadow-color,#0003);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.blur-2xl{--tw-blur:blur(var(--blur-2xl));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.blur-xl{--tw-blur:blur(var(--blur-xl));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.contrast-50{--tw-contrast:contrast(50%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.drop-shadow-2xl{--tw-drop-shadow-size:drop-shadow(0 25px 25px var(--tw-drop-shadow-color,#00000026));--tw-drop-shadow:drop-shadow(var(--drop-shadow-2xl));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.backdrop-blur-sm{--tw-backdrop-blur:blur(var(--blur-sm));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.peer-checked\\:border-primary:is(:where(.peer):checked~*){border-color:var(--color-primary)}.peer-checked\\:bg-primary:is(:where(.peer):checked~*){background-color:var(--color-primary)}.placeholder\\:text-muted-secondary::placeholder{color:var(--color-muted-secondary)}.first\\:rounded-t-xl:first-child{border-top-left-radius:var(--radius-xl);border-top-right-radius:var(--radius-xl)}.last\\:rounded-b-xl:last-child{border-bottom-right-radius:var(--radius-xl);border-bottom-left-radius:var(--radius-xl)}@media (hover:hover){.hover\\:border-primary:hover{border-color:var(--color-primary)}.hover\\:border-secondary:hover{border-color:var(--color-secondary)}.hover\\:bg-background:hover{background-color:var(--color-background)}.hover\\:bg-background-contrast\\/30:hover{background-color:#e5e7eb4d}@supports (color:color-mix(in lab, red, red)){.hover\\:bg-background-contrast\\/30:hover{background-color:color-mix(in oklab,var(--color-background-contrast)30%,transparent)}}.hover\\:bg-primary:hover{background-color:var(--color-primary)}.hover\\:bg-secondary\\/10:hover{background-color:#295e7e1a}@supports (color:color-mix(in lab, red, red)){.hover\\:bg-secondary\\/10:hover{background-color:color-mix(in oklab,var(--color-secondary)10%,transparent)}}.hover\\:bg-secondary\\/30:hover{background-color:#295e7e4d}@supports (color:color-mix(in lab, red, red)){.hover\\:bg-secondary\\/30:hover{background-color:color-mix(in oklab,var(--color-secondary)30%,transparent)}}.hover\\:text-black:hover{color:var(--color-black)}.hover\\:text-gray-600:hover{color:var(--color-gray-600)}.hover\\:text-primary:hover{color:var(--color-primary)}.hover\\:text-secondary:hover{color:var(--color-secondary)}.hover\\:text-text:hover{color:var(--color-text)}.hover\\:contrast-100:hover{--tw-contrast:contrast(100%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}}.focus\\:border-primary:focus{border-color:var(--color-primary)}.focus\\:border-red-500:focus{border-color:var(--color-red-500)}.focus\\:ring-red-500\\/30:focus{--tw-ring-color:#fb2c364d}@supports (color:color-mix(in lab, red, red)){.focus\\:ring-red-500\\/30:focus{--tw-ring-color:color-mix(in oklab,var(--color-red-500)30%,transparent)}}.focus\\:outline-none:focus{--tw-outline-style:none;outline-style:none}@media (min-width:40rem){.sm\\:max-w-lg{max-width:var(--container-lg)}.sm\\:p-6{padding:calc(var(--spacing)*6)}.sm\\:text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.sm\\:text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}}@media (min-width:48rem){.md\\:mb-4{margin-bottom:calc(var(--spacing)*4)}.md\\:mb-6{margin-bottom:calc(var(--spacing)*6)}.md\\:mb-10{margin-bottom:calc(var(--spacing)*10)}.md\\:w-3\\/4{width:75%}.md\\:w-\\[135px\\]{width:135px}.md\\:p-4{padding:calc(var(--spacing)*4)}.md\\:px-3{padding-inline:calc(var(--spacing)*3)}.md\\:px-4{padding-inline:calc(var(--spacing)*4)}.md\\:py-2{padding-block:calc(var(--spacing)*2)}.md\\:py-3{padding-block:calc(var(--spacing)*3)}.md\\:text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.md\\:text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.md\\:text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.md\\:text-\\[10px\\]{font-size:10px}.md\\:text-\\[15px\\]{font-size:15px}.md\\:text-\\[16px\\]{font-size:16px}.md\\:text-\\[28px\\]{font-size:28px}.md\\:text-\\[56px\\]{font-size:56px}}@media (min-width:64rem){.lg\\:mb-8{margin-bottom:calc(var(--spacing)*8)}.lg\\:w-10\\/12{width:83.3333%}.lg\\:w-96{width:calc(var(--spacing)*96)}.lg\\:w-\\[160px\\]{width:160px}.lg\\:text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.lg\\:text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.lg\\:text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.lg\\:text-\\[11px\\]{font-size:11px}.lg\\:text-\\[12px\\]{font-size:12px}.lg\\:text-\\[16px\\]{font-size:16px}.lg\\:text-\\[32px\\]{font-size:32px}.lg\\:text-\\[60px\\]{font-size:60px}}@media (min-width:80rem){.xl\\:max-w-xl{max-width:var(--container-xl)}}.\\[\\&\\:\\:-webkit-calendar-picker-indicator\\]\\:absolute::-webkit-calendar-picker-indicator{position:absolute}.\\[\\&\\:\\:-webkit-calendar-picker-indicator\\]\\:right-3::-webkit-calendar-picker-indicator{right:calc(var(--spacing)*3)}.\\[\\&\\:\\:-webkit-calendar-picker-indicator\\]\\:h-5::-webkit-calendar-picker-indicator{height:calc(var(--spacing)*5)}.\\[\\&\\:\\:-webkit-calendar-picker-indicator\\]\\:w-5::-webkit-calendar-picker-indicator{width:calc(var(--spacing)*5)}.\\[\\&\\:\\:-webkit-calendar-picker-indicator\\]\\:cursor-pointer::-webkit-calendar-picker-indicator{cursor:pointer}.\\[\\&\\:\\:-webkit-calendar-picker-indicator\\]\\:opacity-0::-webkit-calendar-picker-indicator{opacity:0}}:root{--font-sans:"Hanken Grotesk",ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--color-black:#060606;--font-tag:10px;--font-tag-large:1rem}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}@keyframes pulse{50%{opacity:.5}}';
48
+ style.textContent = '/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */\n@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-50:oklch(97.1% .013 17.38);--color-red-100:oklch(93.6% .032 17.717);--color-red-200:oklch(88.5% .062 18.334);--color-red-300:oklch(80.8% .114 19.571);--color-red-500:oklch(63.7% .237 25.331);--color-red-600:oklch(57.7% .245 27.325);--color-red-700:oklch(50.5% .213 27.518);--color-red-800:oklch(44.4% .177 26.899);--color-gray-100:oklch(96.7% .003 264.542);--color-gray-200:oklch(92.8% .006 264.531);--color-gray-300:oklch(87.2% .01 258.338);--color-gray-400:oklch(70.7% .022 261.325);--color-gray-600:oklch(44.6% .03 256.802);--color-gray-900:oklch(21% .034 264.665);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-md:28rem;--container-lg:32rem;--container-xl:36rem;--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height:calc(1.5/1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height:calc(2.25/1.875);--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5/2.25);--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--drop-shadow-2xl:0 25px 25px #00000026;--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-spin:spin 1s linear infinite;--animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;--blur-sm:8px;--blur-xl:24px;--blur-2xl:40px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--color-dashboard-welcome-bg:#295e7e2e;--color-dashboard-description:#a49ea1;--color-primary:#cd3a38;--color-secondary:#295e7e;--color-contrast:#272727;--color-background:#fff;--color-text:#f8f8f8;--color-muted-primary:#e9aaa9;--color-muted-secondary:#babdc4;--color-inactive-tab-text:#6b7280;--color-label:#b3b3b3;--color-error:#fb2c36;--color-background-contrast:#e5e7eb}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.inset-0{inset:calc(var(--spacing)*0)}.inset-4{inset:calc(var(--spacing)*4)}.top-1{top:calc(var(--spacing)*1)}.top-1\\/2{top:50%}.top-8{top:calc(var(--spacing)*8)}.right-3{right:calc(var(--spacing)*3)}.right-8{right:calc(var(--spacing)*8)}.bottom-8{bottom:calc(var(--spacing)*8)}.left-0{left:calc(var(--spacing)*0)}.left-4{left:calc(var(--spacing)*4)}.left-8{left:calc(var(--spacing)*8)}.z-10{z-index:10}.z-50{z-index:50}.m-auto{margin:auto}.mx-4{margin-inline:calc(var(--spacing)*4)}.mx-auto{margin-inline:auto}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-8{margin-top:calc(var(--spacing)*8)}.mr-2{margin-right:calc(var(--spacing)*2)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-5{margin-bottom:calc(var(--spacing)*5)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.mb-8{margin-bottom:calc(var(--spacing)*8)}.-ml-1{margin-left:calc(var(--spacing)*-1)}.ml-2{margin-left:calc(var(--spacing)*2)}.flex{display:flex}.hidden{display:none}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.h-2{height:calc(var(--spacing)*2)}.h-3{height:calc(var(--spacing)*3)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-12{height:calc(var(--spacing)*12)}.h-16{height:calc(var(--spacing)*16)}.h-20{height:calc(var(--spacing)*20)}.h-fit{height:fit-content}.h-full{height:100%}.h-screen{height:100vh}.max-h-60{max-height:calc(var(--spacing)*60)}.max-h-\\[90vh\\]{max-height:90vh}.min-h-screen{min-height:100vh}.w-2{width:calc(var(--spacing)*2)}.w-3{width:calc(var(--spacing)*3)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-12{width:calc(var(--spacing)*12)}.w-16{width:calc(var(--spacing)*16)}.w-20{width:calc(var(--spacing)*20)}.w-24{width:calc(var(--spacing)*24)}.w-32{width:calc(var(--spacing)*32)}.w-48{width:calc(var(--spacing)*48)}.w-64{width:calc(var(--spacing)*64)}.w-80{width:calc(var(--spacing)*80)}.w-\\[110px\\]{width:110px}.w-auto{width:auto}.w-fit{width:fit-content}.w-full{width:100%}.w-screen{width:100vw}.max-w-md{max-width:var(--container-md)}.flex-1{flex:1}.-translate-y-1{--tw-translate-y:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\\/2{--tw-translate-y:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.scale-150{--tw-scale-x:150%;--tw-scale-y:150%;--tw-scale-z:150%;scale:var(--tw-scale-x)var(--tw-scale-y)}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.animate-pulse{animation:var(--animate-pulse)}.animate-spin{animation:var(--animate-spin)}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-4{gap:calc(var(--spacing)*4)}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-tl-lg{border-top-left-radius:var(--radius-lg)}.rounded-tr-lg{border-top-right-radius:var(--radius-lg)}.rounded-br-lg{border-bottom-right-radius:var(--radius-lg)}.rounded-bl-lg{border-bottom-left-radius:var(--radius-lg)}.border{border-style:var(--tw-border-style);border-width:1px}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-t-2{border-top-style:var(--tw-border-style);border-top-width:2px}.border-r-2{border-right-style:var(--tw-border-style);border-right-width:2px}.border-b-2{border-bottom-style:var(--tw-border-style);border-bottom-width:2px}.border-l-2{border-left-style:var(--tw-border-style);border-left-width:2px}.border-contrast{border-color:var(--color-contrast)}.border-gray-300{border-color:var(--color-gray-300)}.border-gray-400{border-color:var(--color-gray-400)}.border-inactive-tab-text{border-color:var(--color-inactive-tab-text)}.border-primary{border-color:var(--color-primary)}.border-primary\\/30{border-color:#cd3a384d}@supports (color:color-mix(in lab, red, red)){.border-primary\\/30{border-color:color-mix(in oklab,var(--color-primary)30%,transparent)}}.border-red-200{border-color:var(--color-red-200)}.border-red-300{border-color:var(--color-red-300)}.border-secondary{border-color:var(--color-secondary)}.border-secondary\\/30{border-color:#295e7e4d}@supports (color:color-mix(in lab, red, red)){.border-secondary\\/30{border-color:color-mix(in oklab,var(--color-secondary)30%,transparent)}}.border-white{border-color:var(--color-white)}.border-white\\/20{border-color:#fff3}@supports (color:color-mix(in lab, red, red)){.border-white\\/20{border-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.bg-background{background-color:var(--color-background)}.bg-background\\/50{background-color:#ffffff80}@supports (color:color-mix(in lab, red, red)){.bg-background\\/50{background-color:color-mix(in oklab,var(--color-background)50%,transparent)}}.bg-black{background-color:var(--color-black)}.bg-black\\/30{background-color:#0000004d}@supports (color:color-mix(in lab, red, red)){.bg-black\\/30{background-color:color-mix(in oklab,var(--color-black)30%,transparent)}}.bg-contrast{background-color:var(--color-contrast)}.bg-gray-100{background-color:var(--color-gray-100)}.bg-gray-200{background-color:var(--color-gray-200)}.bg-muted-primary{background-color:var(--color-muted-primary)}.bg-muted-secondary{background-color:var(--color-muted-secondary)}.bg-muted-secondary\\/30{background-color:#babdc44d}@supports (color:color-mix(in lab, red, red)){.bg-muted-secondary\\/30{background-color:color-mix(in oklab,var(--color-muted-secondary)30%,transparent)}}.bg-primary{background-color:var(--color-primary)}.bg-primary\\/20{background-color:#cd3a3833}@supports (color:color-mix(in lab, red, red)){.bg-primary\\/20{background-color:color-mix(in oklab,var(--color-primary)20%,transparent)}}.bg-red-50{background-color:var(--color-red-50)}.bg-red-100{background-color:var(--color-red-100)}.bg-secondary{background-color:var(--color-secondary)}.bg-secondary\\/20{background-color:#295e7e33}@supports (color:color-mix(in lab, red, red)){.bg-secondary\\/20{background-color:color-mix(in oklab,var(--color-secondary)20%,transparent)}}.bg-transparent{background-color:#0000}.bg-white{background-color:var(--color-white)}.bg-white\\/10{background-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.bg-white\\/10{background-color:color-mix(in oklab,var(--color-white)10%,transparent)}}.bg-gradient-to-br{--tw-gradient-position:to bottom right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-tr{--tw-gradient-position:to top right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-background{--tw-gradient-from:var(--color-background);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-gray-200{--tw-gradient-from:var(--color-gray-200);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-primary{--tw-gradient-from:var(--color-primary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-secondary{--tw-gradient-from:var(--color-secondary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-transparent{--tw-gradient-from:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.via-dashboard-welcome-bg{--tw-gradient-via:var(--color-dashboard-welcome-bg);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-gray-100{--tw-gradient-via:var(--color-gray-100);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-primary{--tw-gradient-via:var(--color-primary);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-secondary{--tw-gradient-via:var(--color-secondary);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-white{--tw-gradient-via:var(--color-white);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.via-white\\/40{--tw-gradient-via:#fff6}@supports (color:color-mix(in lab, red, red)){.via-white\\/40{--tw-gradient-via:color-mix(in oklab,var(--color-white)40%,transparent)}}.via-white\\/40{--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.to-gray-200{--tw-gradient-to:var(--color-gray-200);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-muted-secondary{--tw-gradient-to:var(--color-muted-secondary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-primary{--tw-gradient-to:var(--color-primary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-secondary{--tw-gradient-to:var(--color-secondary);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-transparent{--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.bg-clip-text{-webkit-background-clip:text;background-clip:text}.object-cover{object-fit:cover}.p-1{padding:calc(var(--spacing)*1)}.p-2{padding:calc(var(--spacing)*2)}.p-4{padding:calc(var(--spacing)*4)}.p-5{padding:calc(var(--spacing)*5)}.p-8{padding:calc(var(--spacing)*8)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-6{padding-inline:calc(var(--spacing)*6)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-16{padding-block:calc(var(--spacing)*16)}.pr-4{padding-right:calc(var(--spacing)*4)}.pr-10{padding-right:calc(var(--spacing)*10)}.pl-7{padding-left:calc(var(--spacing)*7)}.pl-12{padding-left:calc(var(--spacing)*12)}.text-center{text-align:center}.text-left{text-align:left}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-\\[9px\\]{font-size:9px}.text-\\[11px\\]{font-size:11px}.text-\\[14px\\]{font-size:14px}.text-\\[24px\\]{font-size:24px}.text-\\[52px\\]{font-size:52px}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.whitespace-nowrap{white-space:nowrap}.text-dashboard-description{color:var(--color-dashboard-description)}.text-error{color:var(--color-error)}.text-gray-400{color:var(--color-gray-400)}.text-gray-900{color:var(--color-gray-900)}.text-inactive-tab-text{color:var(--color-inactive-tab-text)}.text-label{color:var(--color-label)}.text-muted-secondary{color:var(--color-muted-secondary)}.text-muted-secondary\\/60{color:#babdc499}@supports (color:color-mix(in lab, red, red)){.text-muted-secondary\\/60{color:color-mix(in oklab,var(--color-muted-secondary)60%,transparent)}}.text-primary{color:var(--color-primary)}.text-red-500{color:var(--color-red-500)}.text-red-600{color:var(--color-red-600)}.text-red-700{color:var(--color-red-700)}.text-red-800{color:var(--color-red-800)}.text-secondary{color:var(--color-secondary)}.text-text{color:var(--color-text)}.text-transparent{color:#0000}.text-white{color:var(--color-white)}.opacity-0{opacity:0}.opacity-30{opacity:.3}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-80{opacity:.8}.opacity-100{opacity:1}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\\[0_0px_20px_rgba\\(0\\,0\\,0\\,0\\.2\\)\\]{--tw-shadow:0 0px 20px var(--tw-shadow-color,#0003);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.blur-2xl{--tw-blur:blur(var(--blur-2xl));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.blur-xl{--tw-blur:blur(var(--blur-xl));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.contrast-50{--tw-contrast:contrast(50%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.drop-shadow-2xl{--tw-drop-shadow-size:drop-shadow(0 25px 25px var(--tw-drop-shadow-color,#00000026));--tw-drop-shadow:drop-shadow(var(--drop-shadow-2xl));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.backdrop-blur-sm{--tw-backdrop-blur:blur(var(--blur-sm));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.peer-checked\\:border-primary:is(:where(.peer):checked~*){border-color:var(--color-primary)}.peer-checked\\:bg-primary:is(:where(.peer):checked~*){background-color:var(--color-primary)}.placeholder\\:text-muted-secondary::placeholder{color:var(--color-muted-secondary)}.first\\:rounded-t-xl:first-child{border-top-left-radius:var(--radius-xl);border-top-right-radius:var(--radius-xl)}.last\\:rounded-b-xl:last-child{border-bottom-right-radius:var(--radius-xl);border-bottom-left-radius:var(--radius-xl)}@media (hover:hover){.hover\\:border-primary:hover{border-color:var(--color-primary)}.hover\\:border-secondary:hover{border-color:var(--color-secondary)}.hover\\:bg-background:hover{background-color:var(--color-background)}.hover\\:bg-background-contrast\\/30:hover{background-color:#e5e7eb4d}@supports (color:color-mix(in lab, red, red)){.hover\\:bg-background-contrast\\/30:hover{background-color:color-mix(in oklab,var(--color-background-contrast)30%,transparent)}}.hover\\:bg-primary:hover{background-color:var(--color-primary)}.hover\\:bg-secondary\\/10:hover{background-color:#295e7e1a}@supports (color:color-mix(in lab, red, red)){.hover\\:bg-secondary\\/10:hover{background-color:color-mix(in oklab,var(--color-secondary)10%,transparent)}}.hover\\:bg-secondary\\/30:hover{background-color:#295e7e4d}@supports (color:color-mix(in lab, red, red)){.hover\\:bg-secondary\\/30:hover{background-color:color-mix(in oklab,var(--color-secondary)30%,transparent)}}.hover\\:text-black:hover{color:var(--color-black)}.hover\\:text-gray-600:hover{color:var(--color-gray-600)}.hover\\:text-primary:hover{color:var(--color-primary)}.hover\\:text-secondary:hover{color:var(--color-secondary)}.hover\\:text-text:hover{color:var(--color-text)}.hover\\:contrast-100:hover{--tw-contrast:contrast(100%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}}.focus\\:border-primary:focus{border-color:var(--color-primary)}.focus\\:border-red-500:focus{border-color:var(--color-red-500)}.focus\\:ring-red-500\\/30:focus{--tw-ring-color:#fb2c364d}@supports (color:color-mix(in lab, red, red)){.focus\\:ring-red-500\\/30:focus{--tw-ring-color:color-mix(in oklab,var(--color-red-500)30%,transparent)}}.focus\\:outline-none:focus{--tw-outline-style:none;outline-style:none}@media (min-width:40rem){.sm\\:max-w-lg{max-width:var(--container-lg)}.sm\\:p-6{padding:calc(var(--spacing)*6)}.sm\\:text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.sm\\:text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}}@media (min-width:48rem){.md\\:mb-4{margin-bottom:calc(var(--spacing)*4)}.md\\:mb-6{margin-bottom:calc(var(--spacing)*6)}.md\\:mb-10{margin-bottom:calc(var(--spacing)*10)}.md\\:w-3\\/4{width:75%}.md\\:w-\\[135px\\]{width:135px}.md\\:p-4{padding:calc(var(--spacing)*4)}.md\\:px-3{padding-inline:calc(var(--spacing)*3)}.md\\:px-4{padding-inline:calc(var(--spacing)*4)}.md\\:py-2{padding-block:calc(var(--spacing)*2)}.md\\:py-3{padding-block:calc(var(--spacing)*3)}.md\\:text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.md\\:text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.md\\:text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.md\\:text-\\[10px\\]{font-size:10px}.md\\:text-\\[15px\\]{font-size:15px}.md\\:text-\\[16px\\]{font-size:16px}.md\\:text-\\[28px\\]{font-size:28px}.md\\:text-\\[56px\\]{font-size:56px}}@media (min-width:64rem){.lg\\:mb-8{margin-bottom:calc(var(--spacing)*8)}.lg\\:w-10\\/12{width:83.3333%}.lg\\:w-96{width:calc(var(--spacing)*96)}.lg\\:w-\\[160px\\]{width:160px}.lg\\:text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.lg\\:text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.lg\\:text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.lg\\:text-\\[11px\\]{font-size:11px}.lg\\:text-\\[12px\\]{font-size:12px}.lg\\:text-\\[16px\\]{font-size:16px}.lg\\:text-\\[32px\\]{font-size:32px}.lg\\:text-\\[60px\\]{font-size:60px}}@media (min-width:80rem){.xl\\:max-w-xl{max-width:var(--container-xl)}}.\\[\\&\\:\\:-webkit-calendar-picker-indicator\\]\\:absolute::-webkit-calendar-picker-indicator{position:absolute}.\\[\\&\\:\\:-webkit-calendar-picker-indicator\\]\\:right-3::-webkit-calendar-picker-indicator{right:calc(var(--spacing)*3)}.\\[\\&\\:\\:-webkit-calendar-picker-indicator\\]\\:h-5::-webkit-calendar-picker-indicator{height:calc(var(--spacing)*5)}.\\[\\&\\:\\:-webkit-calendar-picker-indicator\\]\\:w-5::-webkit-calendar-picker-indicator{width:calc(var(--spacing)*5)}.\\[\\&\\:\\:-webkit-calendar-picker-indicator\\]\\:cursor-pointer::-webkit-calendar-picker-indicator{cursor:pointer}.\\[\\&\\:\\:-webkit-calendar-picker-indicator\\]\\:opacity-0::-webkit-calendar-picker-indicator{opacity:0}}:root{--font-sans:"Hanken Grotesk",ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--color-black:#060606;--font-tag:10px;--font-tag-large:1rem}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}@keyframes pulse{50%{opacity:.5}}';
1786
49
  document.head.appendChild(style);
1787
50
  };
1788
51
  injectStyles();
@@ -1807,7 +70,7 @@ var ButtonWidths = {
1807
70
 
1808
71
  // src/components/Button.tsx
1809
72
  var import_ai = require("react-icons/ai");
1810
- var import_jsx_runtime = __toESM(require_jsx_runtime());
73
+ var import_jsx_runtime = require("react/jsx-runtime");
1811
74
  var Button = ({ buttonText, buttonIcon, onClick, type, disabled = false, loading = false, width = ButtonWidths.AUTO }) => {
1812
75
  const isDisabled = disabled || loading;
1813
76
  const stylePresets = {
@@ -1865,7 +128,7 @@ var Button = ({ buttonText, buttonIcon, onClick, type, disabled = false, loading
1865
128
  var Button_default = Button;
1866
129
 
1867
130
  // src/components/Checkbox.tsx
1868
- var import_jsx_runtime2 = __toESM(require_jsx_runtime());
131
+ var import_jsx_runtime2 = require("react/jsx-runtime");
1869
132
  function Checkbox({ label, checked, onChange }) {
1870
133
  return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("label", { className: "inline-flex items-center cursor-pointer relative pl-7 select-none", children: [
1871
134
  /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
@@ -1894,7 +157,7 @@ function Checkbox({ label, checked, onChange }) {
1894
157
 
1895
158
  // src/components/DatePicker.tsx
1896
159
  var import_md = require("react-icons/md");
1897
- var import_jsx_runtime3 = __toESM(require_jsx_runtime());
160
+ var import_jsx_runtime3 = require("react/jsx-runtime");
1898
161
  function DatePicker({
1899
162
  label,
1900
163
  id,
@@ -1931,9 +194,9 @@ function DatePicker({
1931
194
  }
1932
195
 
1933
196
  // src/components/DropdownMenu.tsx
1934
- var import_react = __toESM(require_react());
197
+ var import_react = require("react");
1935
198
  var import_io5 = require("react-icons/io5");
1936
- var import_jsx_runtime4 = __toESM(require_jsx_runtime());
199
+ var import_jsx_runtime4 = require("react/jsx-runtime");
1937
200
  function DropdownMenu({
1938
201
  label,
1939
202
  placeholder = "Select an option",
@@ -2015,7 +278,7 @@ function DropdownMenu({
2015
278
 
2016
279
  // src/components/ErrorScreen.tsx
2017
280
  var import_fa = require("react-icons/fa");
2018
- var import_jsx_runtime5 = __toESM(require_jsx_runtime());
281
+ var import_jsx_runtime5 = require("react/jsx-runtime");
2019
282
  function ErrorComponent({
2020
283
  title,
2021
284
  message
@@ -2038,7 +301,7 @@ function ErrorComponent({
2038
301
  }
2039
302
 
2040
303
  // src/components/InputField.tsx
2041
- var import_jsx_runtime6 = __toESM(require_jsx_runtime());
304
+ var import_jsx_runtime6 = require("react/jsx-runtime");
2042
305
  function InputField({
2043
306
  label,
2044
307
  value,
@@ -2063,9 +326,9 @@ function InputField({
2063
326
  }
2064
327
 
2065
328
  // src/components/LazyImageLoader.tsx
2066
- var import_react2 = __toESM(require_react());
329
+ var import_react2 = require("react");
2067
330
  var import_hi = require("react-icons/hi");
2068
- var import_jsx_runtime7 = __toESM(require_jsx_runtime());
331
+ var import_jsx_runtime7 = require("react/jsx-runtime");
2069
332
  function LazyImageLoader({
2070
333
  src,
2071
334
  alt,
@@ -2109,7 +372,7 @@ function LazyImageLoader({
2109
372
  }
2110
373
 
2111
374
  // src/components/Logo.tsx
2112
- var import_jsx_runtime8 = __toESM(require_jsx_runtime());
375
+ var import_jsx_runtime8 = require("react/jsx-runtime");
2113
376
  var Logo = (props) => {
2114
377
  return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("svg", { width: "186", height: "70", viewBox: "0 0 186 70", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [
2115
378
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", { d: "M110.932 0.175055C111.438 0.179642 111.944 0.18096 112.451 0.181796C112.774 0.183111 113.097 0.184602 113.42 0.18629C113.646 0.187206 113.646 0.187206 113.876 0.188142C114.084 0.190214 114.084 0.190214 114.295 0.192328C114.417 0.19331 114.538 0.194292 114.663 0.195304C114.958 0.2155 114.958 0.2155 115.25 0.359306C115.596 0.392425 115.943 0.418439 116.29 0.440197C116.477 0.452246 116.664 0.464296 116.857 0.47671C117.073 0.489779 117.073 0.489779 117.293 0.503112C117.293 0.598024 117.293 0.692936 117.293 0.790724C117.427 0.785719 117.427 0.785719 117.562 0.780613C120.039 0.730383 122.342 1.22 124.62 2.15126C125.145 2.36442 125.678 2.54992 126.214 2.7321C127.665 3.2363 129.026 3.87634 130.351 4.64484C130.787 4.86858 130.787 4.86858 131.596 4.9611C131.596 4.01198 131.596 3.06286 131.596 2.08498C134.632 2.07493 137.669 2.06726 140.705 2.06263C142.115 2.06041 143.525 2.0574 144.936 2.05243C146.167 2.04809 147.398 2.04534 148.629 2.04439C149.279 2.04383 149.929 2.04255 150.579 2.03936C153.481 2.02567 156.304 2.08551 159.18 2.5164C159.18 2.61131 159.18 2.70622 159.18 2.80401C159.393 2.8307 159.393 2.8307 159.609 2.85794C160.253 2.94955 160.883 3.08604 161.516 3.23543C161.636 3.26156 161.756 3.2877 161.879 3.31463C163.479 3.69574 164.921 4.4724 166.38 5.20321C166.69 5.35369 167.001 5.49844 167.315 5.64024C167.411 5.68399 167.508 5.72774 167.608 5.77282C167.797 5.85829 167.987 5.94315 168.178 6.02728C168.771 6.2946 169.301 6.60616 169.835 6.97438C169.949 7.0515 170.063 7.12861 170.181 7.20807C170.299 7.30594 170.299 7.30594 170.418 7.4058C170.418 7.50071 170.418 7.59562 170.418 7.69341C170.523 7.70546 170.628 7.71751 170.736 7.72992C171.238 7.8606 171.508 8.07632 171.905 8.40345C172.031 8.5056 172.156 8.60774 172.285 8.71297C172.608 8.98767 172.608 8.98767 172.899 9.27528C173.008 9.3079 173.116 9.34053 173.228 9.37414C173.716 9.60375 173.929 9.88625 174.264 10.2948C174.507 10.5718 174.76 10.8006 175.043 11.0369C175.562 11.4732 176.054 11.9306 176.539 12.4031C176.676 12.5358 176.813 12.6685 176.953 12.8053C177.278 13.158 177.278 13.158 177.424 13.5895C177.677 13.8255 177.677 13.8255 177.98 14.0568C178.552 14.5339 178.832 14.9505 179.175 15.6027C179.3 15.7815 179.428 15.9582 179.558 16.133C179.811 16.4724 180.006 16.8078 180.197 17.1846C180.293 17.2321 180.389 17.2795 180.489 17.3284C180.489 17.4708 180.489 17.6131 180.489 17.7598C180.585 17.7598 180.681 17.7598 180.781 17.7598C180.834 17.8573 180.887 17.9548 180.941 18.0553C181.322 18.7496 181.71 19.4343 182.131 20.1057C182.441 20.6111 182.655 21.0729 182.824 21.6426C182.907 21.85 182.993 22.0566 183.079 22.2628C183.359 22.9467 183.619 23.6364 183.873 24.33C183.911 24.4324 183.949 24.5349 183.989 24.6405C184.218 25.2732 184.356 25.8639 184.429 26.532C184.526 26.532 184.622 26.532 184.721 26.532C184.738 26.6263 184.755 26.7207 184.772 26.8179C184.849 27.2439 184.927 27.6699 185.004 28.0959C185.031 28.2444 185.057 28.3929 185.085 28.5458C185.11 28.6877 185.136 28.8295 185.163 28.9756C185.187 29.1066 185.21 29.2376 185.235 29.3727C185.291 29.6989 185.291 29.6989 185.451 29.9833C185.679 31.5855 185.629 33.2328 185.632 34.8464C185.633 35.3087 185.638 35.7708 185.642 36.233C185.656 38.8575 185.367 41.2814 184.575 43.7887C184.528 43.977 184.482 44.1657 184.438 44.3549C184.297 44.9269 184.113 45.4853 183.928 46.0447C183.883 46.1833 183.883 46.1833 183.837 46.3247C183.653 46.869 183.426 47.3314 183.116 47.8153C183.016 48.1022 182.919 48.39 182.824 48.6781C182.554 49.3119 182.264 49.9345 181.948 50.5476C181.852 50.5476 181.756 50.5476 181.656 50.5476C181.645 50.6458 181.634 50.7441 181.623 50.8453C181.478 51.3861 181.195 51.7983 180.881 52.2553C180.535 52.7669 180.193 53.2763 179.886 53.8119C179.581 54.3414 179.262 54.8125 178.883 55.2932C178.787 55.2932 178.691 55.2932 178.591 55.2932C178.579 55.3733 178.567 55.4534 178.555 55.5359C178.317 56.2588 177.688 56.8018 177.132 57.3065C177.036 57.3065 176.939 57.3065 176.84 57.3065C176.804 57.4221 176.768 57.5378 176.731 57.657C176.67 57.7786 176.61 57.9002 176.548 58.0255C176.355 58.079 176.16 58.1271 175.964 58.1693C175.865 58.3603 175.768 58.5521 175.672 58.7445C175.455 58.9964 175.455 58.9964 175.201 59.2473C175.108 59.3395 175.015 59.4317 174.918 59.5268C174.821 59.6216 174.724 59.7164 174.623 59.8141C174.529 59.9084 174.434 60.0026 174.337 60.0997C173.64 60.784 172.927 61.348 172.078 61.8453C171.714 62.0521 171.714 62.0521 171.349 62.3577C171.002 62.6273 171.002 62.6273 170.564 62.7711C170.468 62.9135 170.372 63.0558 170.272 63.2025C170.128 63.25 169.983 63.2974 169.835 63.3463C169.786 63.4412 169.738 63.5361 169.689 63.6339C169.391 63.8041 169.391 63.8041 169.014 63.9845C168.881 64.048 168.749 64.1116 168.612 64.1771C168.312 64.3151 168.007 64.4437 167.7 64.5687C167.307 64.7407 166.989 64.9147 166.633 65.1439C165.86 65.6337 165.052 65.9386 164.143 66.0786C164.143 66.1735 164.143 66.2685 164.143 66.3662C164.06 66.3837 163.977 66.4011 163.891 66.4191C163.345 66.5359 162.809 66.6596 162.273 66.8156C161.807 66.9415 161.807 66.9415 161.224 66.9415C161.224 67.0364 161.224 67.1313 161.224 67.2291C157.855 68.3624 154.34 68.2972 150.827 68.2795C150.189 68.2767 149.552 68.2765 148.915 68.276C147.714 68.2747 146.513 68.2712 145.311 68.2668C143.942 68.2619 142.572 68.2596 141.202 68.2574C138.389 68.253 135.576 68.2454 132.764 68.2357C132.764 68.0934 132.764 67.951 132.764 67.8043C133.091 67.5613 133.41 67.3489 133.758 67.1392C133.852 67.0806 133.946 67.022 134.042 66.9617C134.439 66.7173 134.8 66.5124 135.245 66.3662C135.344 66.2016 135.344 66.2016 135.446 66.0337C135.713 65.5979 135.99 65.3604 136.413 65.072C136.509 65.072 136.605 65.072 136.704 65.072C136.704 64.9771 136.704 64.8822 136.704 64.7844C137.357 64.2092 137.357 64.2092 137.726 64.2092C137.764 64.1233 137.801 64.0375 137.84 63.9491C138.033 63.6079 138.22 63.4349 138.529 63.1935C138.884 62.9137 139.072 62.7231 139.331 62.3397C139.428 62.3397 139.524 62.3397 139.623 62.3397C139.673 62.2196 139.673 62.2196 139.724 62.097C139.968 61.6723 140.294 61.391 140.645 61.0454C140.947 60.6692 141.233 60.2818 141.521 59.895C141.857 59.4595 142.079 59.1929 142.542 58.8883C142.719 58.4491 142.719 58.4491 142.834 58.0255C142.931 58.0255 143.027 58.0255 143.126 58.0255C143.159 57.9276 143.192 57.8297 143.226 57.7289C143.388 57.3732 143.54 57.1281 143.774 56.8211C144.14 56.3357 144.364 55.8561 144.586 55.2932C144.682 55.2932 144.778 55.2932 144.877 55.2932C144.899 55.2042 144.92 55.1152 144.941 55.0236C145.023 54.718 145.023 54.718 145.169 54.4304C145.266 54.4304 145.362 54.4304 145.461 54.4304C145.509 54.1456 145.558 53.8609 145.607 53.5675C145.704 53.5675 145.8 53.5675 145.899 53.5675C145.899 53.4726 145.899 53.3777 145.899 53.2799C146.164 53.3001 146.428 53.3212 146.693 53.3428C146.84 53.3545 146.987 53.3662 147.139 53.3782C147.505 53.4237 147.505 53.4237 147.65 53.5675C148 53.5839 148.345 53.5911 148.695 53.5917C148.802 53.5922 148.91 53.5926 149.02 53.5931C149.249 53.5939 149.478 53.5942 149.708 53.5942C150.049 53.5945 150.39 53.5971 150.732 53.5998C153.289 53.6093 155.893 53.4107 158.269 52.4109C158.556 52.2904 158.849 52.186 159.144 52.0845C160.359 51.6389 161.53 51.0623 162.537 50.26C162.633 50.26 162.73 50.26 162.829 50.26C162.829 50.1651 162.829 50.0702 162.829 49.9724C162.925 49.9724 163.022 49.9724 163.121 49.9724C163.121 49.8775 163.121 49.7825 163.121 49.6848C163.382 49.5443 163.644 49.4039 163.905 49.2635C164.167 49.1219 164.167 49.1219 164.289 48.8219C164.385 48.8219 164.481 48.8219 164.58 48.8219C164.589 48.7389 164.598 48.6558 164.608 48.5703C164.774 48.1159 165.07 47.9672 165.456 47.6715C165.974 47.1369 166.394 46.5856 166.77 45.9458C167.295 45.2555 167.295 45.2555 167.645 45.083C168.219 44.239 168.6 43.2977 168.959 42.3507C169.055 42.3507 169.151 42.3507 169.251 42.3507C169.266 42.232 169.281 42.1134 169.296 41.9911C169.393 41.5063 169.541 41.0954 169.723 40.6385C169.837 40.331 169.921 40.0262 169.999 39.7082C170.126 39.1869 170.126 39.1869 170.272 38.8993C170.367 38.3959 170.431 37.8876 170.5 37.3804C170.521 37.2416 170.541 37.1029 170.562 36.9599C170.711 35.8901 170.842 34.8189 170.573 33.7582C170.444 33.1906 170.392 32.6497 170.364 32.0685C170.313 31.3034 170.148 30.7091 169.831 30.0125C169.638 29.5839 169.524 29.1403 169.397 28.6891C169.322 28.4938 169.246 28.299 169.169 28.1049C168.984 27.6325 168.877 27.1801 168.813 26.6758C168.717 26.6758 168.62 26.6758 168.521 26.6758C168.444 26.5295 168.444 26.5295 168.365 26.3803C167.43 24.6425 166.301 23.155 164.863 21.7864C164.58 21.4988 164.58 21.4988 164.58 21.2112C164.496 21.1734 164.412 21.1355 164.326 21.0966C163.978 20.914 163.706 20.7036 163.404 20.4562C162.794 19.9807 162.165 19.6179 161.477 19.2647C161.102 19.0668 160.751 18.8499 160.394 18.6227C159.425 18.0383 158.35 17.6962 157.283 17.3284C157.283 17.2335 157.283 17.1386 157.283 17.0408C157.136 17.0467 156.988 17.0527 156.836 17.0588C156.261 17.0408 156.261 17.0408 155.796 16.906C154.277 16.4889 152.614 16.5711 151.044 16.5285C150.827 16.5223 150.61 16.516 150.393 16.5097C149.868 16.4945 149.343 16.4799 148.818 16.4656C148.818 16.5605 148.818 16.6554 148.818 16.7532C148.605 16.7782 148.392 16.8019 148.18 16.8251C148.061 16.8384 147.943 16.8518 147.82 16.8655C147.18 16.9092 146.541 16.9026 145.899 16.897C145.9 17.1311 145.9 17.1311 145.901 17.3699C145.904 17.9469 145.906 18.5239 145.907 19.101C145.908 19.3511 145.909 19.6012 145.91 19.8513C145.912 20.21 145.913 20.5688 145.913 20.9275C145.914 21.04 145.915 21.1525 145.916 21.2684C145.916 21.537 145.908 21.8056 145.899 22.074C145.58 22.3888 144.818 22.2483 144.373 22.2524C144.228 22.2543 144.083 22.2561 143.933 22.2581C142.414 22.2763 140.895 22.2844 139.376 22.2919C138.654 22.2957 137.933 22.3027 137.212 22.3125C136.342 22.3243 135.473 22.3304 134.603 22.3326C134.271 22.3343 133.94 22.3381 133.608 22.3438C133.143 22.3515 132.679 22.352 132.214 22.3507C132.009 22.3566 132.009 22.3566 131.8 22.3626C131.225 22.3545 130.864 22.3347 130.411 21.9661C130.151 21.6771 129.921 21.3856 129.699 21.0674C129.608 20.9421 129.517 20.8169 129.423 20.6878C129.352 20.5799 129.281 20.4719 129.208 20.3607C128.666 19.5824 128.03 18.9377 127.346 18.2811C127.231 18.169 127.116 18.0568 126.998 17.9413C126.055 16.9632 126.055 16.9632 124.883 16.3218C124.835 16.2269 124.786 16.1319 124.737 16.0342C124.462 15.9042 124.462 15.9042 124.144 15.8005C124.037 15.763 123.93 15.7256 123.819 15.687C123.737 15.6592 123.654 15.6314 123.569 15.6027C123.569 15.5078 123.569 15.4129 123.569 15.3151C123.455 15.2825 123.34 15.2499 123.223 15.2163C122.643 15.0094 122.112 14.7487 121.565 14.4697C121.223 14.2941 123.223 15.2163 120.796 14.1647C120.796 14.0698 120.796 13.9749 120.796 13.8771C120.315 13.8296 119.833 13.7822 119.337 13.7333C121.253 14.3619 119.337 13.5434 119.337 13.4457C118.607 13.3978 119.124 13.4349 119.015 13.4294C118.064 13.3681 117.187 13.2292 116.269 12.9738C115.086 12.693 113.907 12.6989 112.696 12.6997C112.514 12.6998 112.332 12.6999 112.144 12.7C110.818 12.7087 109.552 12.7978 108.245 13.0142C107.88 13.0682 107.515 13.1222 107.15 13.176C106.882 13.2176 106.615 13.2594 106.347 13.3018C105.875 12.7232 105.413 12.1408 104.991 11.5256C104.935 11.4433 104.878 11.3609 104.82 11.276C104.657 11.0373 104.496 10.7975 104.335 10.5577C104.017 10.1447 103.702 9.87076 103.282 9.56289C102.845 9.07197 102.845 9.07197 102.845 8.55625C102.759 8.52084 102.673 8.48543 102.585 8.44895C102.211 8.2408 102.011 8.01234 101.741 7.68442C101.358 7.2137 101.358 7.2137 100.801 6.97438C100.602 6.76429 100.602 6.76429 100.382 6.48904C99.5823 5.55691 98.5978 4.79927 97.6287 4.04455C97.4163 3.87682 97.2108 3.70056 97.0067 3.52304C97.0067 3.42813 97.0067 3.33321 97.0067 3.23543C96.8622 3.18797 96.7177 3.14051 96.5688 3.09162C96.5688 2.99671 96.5688 2.9018 96.5688 2.80401C97.2188 2.51787 97.8671 2.27449 98.5448 2.06026C98.9436 1.92805 99.3329 1.77689 99.725 1.6266C100.366 1.39303 100.853 1.30653 101.531 1.36595C101.531 1.27104 101.531 1.17612 101.531 1.07834C101.696 1.05924 101.861 1.04015 102.032 1.02048C102.248 0.994852 102.464 0.969197 102.68 0.943518C102.789 0.931005 102.898 0.918492 103.01 0.9056C103.603 0.843463 103.603 0.843463 104.158 0.646918C106.395 0.203405 108.66 0.154242 110.932 0.175055Z", fill: "#2A5F80" }),
@@ -2122,7 +385,7 @@ var Logo = (props) => {
2122
385
  };
2123
386
 
2124
387
  // src/components/LoadingPage.tsx
2125
- var import_jsx_runtime9 = __toESM(require_jsx_runtime());
388
+ var import_jsx_runtime9 = require("react/jsx-runtime");
2126
389
  var LoadingPage = () => {
2127
390
  return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(import_jsx_runtime9.Fragment, { children: [
2128
391
  /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("style", { children: `
@@ -2297,9 +560,9 @@ var LoadingPage = () => {
2297
560
  var LoadingPage_default = LoadingPage;
2298
561
 
2299
562
  // src/components/Modal.tsx
2300
- var import_react3 = __toESM(require_react());
563
+ var import_react3 = require("react");
2301
564
  var import_lu = require("react-icons/lu");
2302
- var import_jsx_runtime10 = __toESM(require_jsx_runtime());
565
+ var import_jsx_runtime10 = require("react/jsx-runtime");
2303
566
  var Modal = ({
2304
567
  title,
2305
568
  isOpen,
@@ -2378,8 +641,8 @@ var Modal = ({
2378
641
  var Modal_default = Modal;
2379
642
 
2380
643
  // src/components/NumberField.tsx
2381
- var import_react4 = __toESM(require_react());
2382
- var import_jsx_runtime11 = __toESM(require_jsx_runtime());
644
+ var import_react4 = require("react");
645
+ var import_jsx_runtime11 = require("react/jsx-runtime");
2383
646
  function NumberField({
2384
647
  label,
2385
648
  value,
@@ -2416,9 +679,9 @@ function NumberField({
2416
679
  }
2417
680
 
2418
681
  // src/components/PasswordField.tsx
2419
- var import_react5 = __toESM(require_react());
682
+ var import_react5 = require("react");
2420
683
  var import_lu2 = require("react-icons/lu");
2421
- var import_jsx_runtime12 = __toESM(require_jsx_runtime());
684
+ var import_jsx_runtime12 = require("react/jsx-runtime");
2422
685
  function PasswordField({
2423
686
  value,
2424
687
  onChange,
@@ -2454,7 +717,7 @@ function PasswordField({
2454
717
  }
2455
718
 
2456
719
  // src/components/RadioButton.tsx
2457
- var import_jsx_runtime13 = __toESM(require_jsx_runtime());
720
+ var import_jsx_runtime13 = require("react/jsx-runtime");
2458
721
  function Radiobutton({ label, checked, onChange }) {
2459
722
  return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("label", { className: "inline-flex items-center cursor-pointer relative pl-7 select-none", children: [
2460
723
  /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
@@ -2473,7 +736,7 @@ function Radiobutton({ label, checked, onChange }) {
2473
736
 
2474
737
  // src/components/SearchField.tsx
2475
738
  var import_hi2 = require("react-icons/hi2");
2476
- var import_jsx_runtime14 = __toESM(require_jsx_runtime());
739
+ var import_jsx_runtime14 = require("react/jsx-runtime");
2477
740
  function SearchField({
2478
741
  value,
2479
742
  onChange,
@@ -2496,8 +759,8 @@ function SearchField({
2496
759
  }
2497
760
 
2498
761
  // src/components/TextAreaField.tsx
2499
- var import_react6 = __toESM(require_react());
2500
- var import_jsx_runtime15 = __toESM(require_jsx_runtime());
762
+ var import_react6 = require("react");
763
+ var import_jsx_runtime15 = require("react/jsx-runtime");
2501
764
  function TextAreaField({
2502
765
  label,
2503
766
  value,
@@ -2546,7 +809,7 @@ function TextAreaField({
2546
809
 
2547
810
  // src/components/UnauthorizedPage.tsx
2548
811
  var import_hi22 = require("react-icons/hi2");
2549
- var import_jsx_runtime16 = __toESM(require_jsx_runtime());
812
+ var import_jsx_runtime16 = require("react/jsx-runtime");
2550
813
  function UnauthorizedPage() {
2551
814
  return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "w-screen h-screen flex flex-col justify-center items-center bg-background", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "w-fit rounded-2xl bg-background p-8 shadow-[0_0px_20px_rgba(0,0,0,0.2)] flex flex-col items-center", children: [
2552
815
  /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "rounded-full bg-muted-primary md:p-4 p-2 mb-4 md:mb-6 lg:mb-8 w-fit", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "text-[52px] md:text-[56px] lg:text-[60px] text-primary", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_hi22.HiMiniXMark, {}) }) }),
@@ -2574,50 +837,4 @@ function UnauthorizedPage() {
2574
837
  TextAreaField,
2575
838
  UnauthorizedPage
2576
839
  });
2577
- /*! Bundled license information:
2578
-
2579
- react/cjs/react-jsx-runtime.production.js:
2580
- (**
2581
- * @license React
2582
- * react-jsx-runtime.production.js
2583
- *
2584
- * Copyright (c) Meta Platforms, Inc. and affiliates.
2585
- *
2586
- * This source code is licensed under the MIT license found in the
2587
- * LICENSE file in the root directory of this source tree.
2588
- *)
2589
-
2590
- react/cjs/react.production.js:
2591
- (**
2592
- * @license React
2593
- * react.production.js
2594
- *
2595
- * Copyright (c) Meta Platforms, Inc. and affiliates.
2596
- *
2597
- * This source code is licensed under the MIT license found in the
2598
- * LICENSE file in the root directory of this source tree.
2599
- *)
2600
-
2601
- react/cjs/react.development.js:
2602
- (**
2603
- * @license React
2604
- * react.development.js
2605
- *
2606
- * Copyright (c) Meta Platforms, Inc. and affiliates.
2607
- *
2608
- * This source code is licensed under the MIT license found in the
2609
- * LICENSE file in the root directory of this source tree.
2610
- *)
2611
-
2612
- react/cjs/react-jsx-runtime.development.js:
2613
- (**
2614
- * @license React
2615
- * react-jsx-runtime.development.js
2616
- *
2617
- * Copyright (c) Meta Platforms, Inc. and affiliates.
2618
- *
2619
- * This source code is licensed under the MIT license found in the
2620
- * LICENSE file in the root directory of this source tree.
2621
- *)
2622
- */
2623
840
  //# sourceMappingURL=index.js.map