@centive/aria-sdk 0.9.1 → 0.9.3
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,29 +1,29 @@
|
|
|
1
1
|
import { jsx as n, jsxs as E, Fragment as He } from "react/jsx-runtime";
|
|
2
|
-
import { useRef as
|
|
3
|
-
import { Sparkles as
|
|
4
|
-
import { createPortal as
|
|
5
|
-
function
|
|
2
|
+
import { useRef as le, useState as T, useEffect as $, useCallback as D } from "react";
|
|
3
|
+
import { Sparkles as Re, Wrench as Ve, MicOff as De, Mic as je, Maximize2 as gr, Phone as Be, X as Oe, RefreshCw as We, MessageCircle as Fe, Minimize2 as hr, User as ur, Bot as pr, Send as mr } from "lucide-react";
|
|
4
|
+
import { createPortal as fr } from "react-dom";
|
|
5
|
+
function wr(r) {
|
|
6
6
|
return typeof r == "object" && r !== null && "status" in r && (r.status === "success" || r.status === "error") && !("type" in r);
|
|
7
7
|
}
|
|
8
|
-
function
|
|
8
|
+
function br(r) {
|
|
9
9
|
return typeof r == "object" && r !== null && "type" in r && r.type === "message_history_ack" && "status" in r && r.status === "ok";
|
|
10
10
|
}
|
|
11
|
-
function
|
|
11
|
+
function vr(r) {
|
|
12
12
|
return typeof r == "object" && r !== null && "type" in r && r.type === "message_stream_ack" && "status" in r && r.status === "ok";
|
|
13
13
|
}
|
|
14
|
-
function
|
|
14
|
+
function yr(r) {
|
|
15
15
|
return typeof r == "object" && r !== null && "type" in r && r.type === "session_end_ack" && "status" in r && r.status === "ok";
|
|
16
16
|
}
|
|
17
|
-
function
|
|
17
|
+
function Ar(r) {
|
|
18
18
|
return typeof r == "object" && r !== null && "type" in r && r.type === "session_end_error" && "status" in r && r.status === "error";
|
|
19
19
|
}
|
|
20
|
-
function
|
|
20
|
+
function xr(r) {
|
|
21
21
|
return typeof r == "object" && r !== null && "type" in r && r.type === "trigger_event";
|
|
22
22
|
}
|
|
23
|
-
function
|
|
23
|
+
function kr(r) {
|
|
24
24
|
return typeof r == "object" && r !== null && "status" in r && r.status === "ok" && "message" in r && !("type" in r);
|
|
25
25
|
}
|
|
26
|
-
function
|
|
26
|
+
function Sr(r) {
|
|
27
27
|
return typeof r == "object" && r !== null && "status" in r && r.status === "error" && "error" in r && r.error === "MISSING_FIELDS";
|
|
28
28
|
}
|
|
29
29
|
const Ue = {
|
|
@@ -313,35 +313,35 @@ class U {
|
|
|
313
313
|
handleWebSocketMessage(e) {
|
|
314
314
|
try {
|
|
315
315
|
const t = JSON.parse(e.data);
|
|
316
|
-
if (
|
|
316
|
+
if (wr(t)) {
|
|
317
317
|
this.handleSessionResponse(t);
|
|
318
318
|
return;
|
|
319
319
|
}
|
|
320
|
-
if (
|
|
320
|
+
if (br(t)) {
|
|
321
321
|
console.log(`[AriaSessionManager] Message history acknowledged: ${t.message_count} messages`), this.config.onMessageHistoryAck?.(t.message_count), this.emit({ type: "message_history", data: t });
|
|
322
322
|
return;
|
|
323
323
|
}
|
|
324
|
-
if (
|
|
324
|
+
if (vr(t)) {
|
|
325
325
|
console.log("[AriaSessionManager] Message stream acknowledged"), this.config.onMessageStreamAck?.(), this.emit({ type: "message_stream", data: t });
|
|
326
326
|
return;
|
|
327
327
|
}
|
|
328
|
-
if (
|
|
328
|
+
if (yr(t)) {
|
|
329
329
|
console.log(`[AriaSessionManager] Session end acknowledged: ${t.saved_count} messages saved`), this.config.onSessionEndAck?.(t.saved_count);
|
|
330
330
|
return;
|
|
331
331
|
}
|
|
332
|
-
if (
|
|
332
|
+
if (Ar(t)) {
|
|
333
333
|
console.error(`[AriaSessionManager] Session end error: ${t.message}`), this.config.onSessionEndError?.(t.message, t.error), this.config.onError?.(new Error(`Session end failed: ${t.error} - ${t.message}`));
|
|
334
334
|
return;
|
|
335
335
|
}
|
|
336
|
-
if (
|
|
336
|
+
if (Sr(t)) {
|
|
337
337
|
console.error(`[AriaSessionManager] Missing fields error: ${t.message}`), this.config.onError?.(new Error(t.message));
|
|
338
338
|
return;
|
|
339
339
|
}
|
|
340
|
-
if (
|
|
340
|
+
if (xr(t)) {
|
|
341
341
|
console.log("[AriaSessionManager] WebSocket trigger event received:", t.data), this.config.onWebSocketEvent?.(t), this.onWebSocketTrigger?.(t);
|
|
342
342
|
return;
|
|
343
343
|
}
|
|
344
|
-
if (
|
|
344
|
+
if (kr(t)) {
|
|
345
345
|
console.log(`[AriaSessionManager] Generic acknowledgment: ${t.message}`);
|
|
346
346
|
return;
|
|
347
347
|
}
|
|
@@ -533,58 +533,58 @@ class U {
|
|
|
533
533
|
this.createHiddenVideoElement();
|
|
534
534
|
const { createClient: t, AnamEvent: o } = await import("@anam-ai/js-sdk"), a = t(e);
|
|
535
535
|
a.addListener(o.SESSION_READY, () => {
|
|
536
|
-
const
|
|
537
|
-
|
|
536
|
+
const f = a.getActiveSessionId();
|
|
537
|
+
f && (this.updateSessionState({ session_id: f }), console.log("[AriaSessionManager] Anam session ready with ID:", f));
|
|
538
538
|
}), a.addListener(o.CONNECTION_CLOSED, () => {
|
|
539
539
|
if (console.log("[AriaSessionManager] Anam connection closed"), this.emit({ type: "connection_change", data: { connected: !1 } }), this.isPaused) {
|
|
540
540
|
console.log("[AriaSessionManager] Anam disconnected while paused, clearing stale session"), this.clearStaleSessionForResume();
|
|
541
541
|
return;
|
|
542
542
|
}
|
|
543
543
|
this.autoReconnectOnAnamDisconnect && !this.isIntentionalDisconnect && !this.isReconnecting && (console.log("[AriaSessionManager] Anam disconnected unexpectedly, auto-reconnecting..."), this.autoReconnectSession());
|
|
544
|
-
}), a.addListener(o.MESSAGE_HISTORY_UPDATED, (
|
|
544
|
+
}), a.addListener(o.MESSAGE_HISTORY_UPDATED, (f) => {
|
|
545
545
|
if (!this.sessionState.session_id) {
|
|
546
546
|
const A = a.getActiveSessionId();
|
|
547
547
|
A && (this.updateSessionState({ session_id: A }), console.log("[AriaSessionManager] Got session ID from message history event:", A));
|
|
548
548
|
}
|
|
549
|
-
this.chatMessages =
|
|
549
|
+
this.chatMessages = f.map((A) => ({
|
|
550
550
|
role: A.role,
|
|
551
551
|
content: A.content,
|
|
552
552
|
timestamp: Date.now()
|
|
553
553
|
}));
|
|
554
|
-
const
|
|
554
|
+
const p = f.map((A) => ({
|
|
555
555
|
role: A.role,
|
|
556
556
|
content: A.content,
|
|
557
557
|
timestamp: (/* @__PURE__ */ new Date()).toISOString()
|
|
558
558
|
}));
|
|
559
|
-
this.sendMessageHistory(
|
|
560
|
-
}), a.addListener(o.MESSAGE_STREAM_EVENT_RECEIVED, (
|
|
559
|
+
this.sendMessageHistory(p), this.emit({ type: "message_history", data: { messages: this.chatMessages } });
|
|
560
|
+
}), a.addListener(o.MESSAGE_STREAM_EVENT_RECEIVED, (f) => {
|
|
561
561
|
if (!this.sessionState.session_id) {
|
|
562
562
|
const A = a.getActiveSessionId();
|
|
563
563
|
A && (this.updateSessionState({ session_id: A }), console.log("[AriaSessionManager] Got session ID from message stream event:", A));
|
|
564
564
|
}
|
|
565
|
-
|
|
566
|
-
const
|
|
567
|
-
role:
|
|
568
|
-
content:
|
|
565
|
+
f.role === "persona" ? this.liveTranscript += f.content : f.role === "user" && (this.liveTranscript = "");
|
|
566
|
+
const p = {
|
|
567
|
+
role: f.role,
|
|
568
|
+
content: f.content,
|
|
569
569
|
timestamp: (/* @__PURE__ */ new Date()).toISOString()
|
|
570
570
|
};
|
|
571
|
-
this.sendMessageStream(
|
|
572
|
-
}), a.addListener(o.CLIENT_TOOL_EVENT_RECEIVED, (
|
|
573
|
-
console.log("[AriaSessionManager] Tool call event received:",
|
|
571
|
+
this.sendMessageStream(p, f.is_final ?? !1), this.emit({ type: "message_stream", data: { event: f, liveTranscript: this.liveTranscript } });
|
|
572
|
+
}), a.addListener(o.CLIENT_TOOL_EVENT_RECEIVED, (f) => {
|
|
573
|
+
console.log("[AriaSessionManager] Tool call event received:", f.eventName), this.isToolCallActive = !0, this.activeToolCall = f, this.emit({
|
|
574
574
|
type: "tool_call",
|
|
575
575
|
data: {
|
|
576
576
|
isActive: !0,
|
|
577
|
-
toolName:
|
|
578
|
-
toolData:
|
|
579
|
-
toolEvent:
|
|
577
|
+
toolName: f.eventName,
|
|
578
|
+
toolData: f.eventData,
|
|
579
|
+
toolEvent: f
|
|
580
580
|
}
|
|
581
581
|
}), setTimeout(() => {
|
|
582
|
-
this.activeToolCall?.eventUid ===
|
|
582
|
+
this.activeToolCall?.eventUid === f.eventUid && this.clearToolCallState();
|
|
583
583
|
}, 3e4);
|
|
584
584
|
}), this.anamClient = a, this.audioInputStream = await navigator.mediaDevices.getUserMedia({ audio: !0 }), this.createHiddenAudioElement();
|
|
585
585
|
const l = await a.stream(this.audioInputStream), i = l[0], b = l[1];
|
|
586
|
-
this.videoStream = i, this.hiddenVideoElement && (this.hiddenVideoElement.srcObject = i, this.hiddenVideoElement.muted = !0), this.hiddenAudioElement && b ? (this.hiddenAudioElement.srcObject = b, this.hiddenAudioElement.muted = !1, this.hiddenAudioElement.play().catch((
|
|
587
|
-
console.warn("[AriaSessionManager] Initial audio play failed (may need user interaction):",
|
|
586
|
+
this.videoStream = i, this.hiddenVideoElement && (this.hiddenVideoElement.srcObject = i, this.hiddenVideoElement.muted = !0), this.hiddenAudioElement && b ? (this.hiddenAudioElement.srcObject = b, this.hiddenAudioElement.muted = !1, this.hiddenAudioElement.play().catch((f) => {
|
|
587
|
+
console.warn("[AriaSessionManager] Initial audio play failed (may need user interaction):", f);
|
|
588
588
|
}), console.log("[AriaSessionManager] Audio stream attached to audio element")) : console.log("[AriaSessionManager] No separate audio stream available, audio may come through video"), this.isAnamInitializing = !1, this.setStatus("ready");
|
|
589
589
|
const d = a.getActiveSessionId();
|
|
590
590
|
console.log("[AriaSessionManager] Session fully ready with video stream, ID:", d), this.emit({ type: "session_ready", data: { sessionId: d, streamReady: !0 } }), this.config.onSessionReady?.(), this.hasHadSessionBefore || (this.hasHadSessionBefore = !0, console.log("[AriaSessionManager] First session started - subsequent sessions will skip greeting")), console.log("[AriaSessionManager] Anam client initialized and streaming");
|
|
@@ -1071,7 +1071,7 @@ const S = {
|
|
|
1071
1071
|
uiContainer: null,
|
|
1072
1072
|
reactRoot: null
|
|
1073
1073
|
};
|
|
1074
|
-
class
|
|
1074
|
+
class xe {
|
|
1075
1075
|
/**
|
|
1076
1076
|
* Initialize the Aria SDK with the given configuration.
|
|
1077
1077
|
* This sets up the WebSocket connection, session management, and UI components.
|
|
@@ -1100,8 +1100,8 @@ class Ae {
|
|
|
1100
1100
|
if (!e.userId)
|
|
1101
1101
|
throw new Error("[AriaCore] userId is required");
|
|
1102
1102
|
console.log("[AriaCore] Initializing Aria SDK..."), S.config = e;
|
|
1103
|
-
const t =
|
|
1104
|
-
S.sessionManager = U.getInstance(t), S.sessionManager.connect(),
|
|
1103
|
+
const t = xe.buildFullConfig(e);
|
|
1104
|
+
S.sessionManager = U.getInstance(t), S.sessionManager.connect(), xe.mountUI(e.theme || "light", e.triggerLabel), S.initialized = !0, console.log("[AriaCore] Aria SDK initialized successfully");
|
|
1105
1105
|
}
|
|
1106
1106
|
/**
|
|
1107
1107
|
* Open the Aria assistant widget.
|
|
@@ -1232,7 +1232,7 @@ class Ae {
|
|
|
1232
1232
|
console.log("[AriaCore] Not initialized, nothing to destroy.");
|
|
1233
1233
|
return;
|
|
1234
1234
|
}
|
|
1235
|
-
console.log("[AriaCore] Destroying Aria SDK..."),
|
|
1235
|
+
console.log("[AriaCore] Destroying Aria SDK..."), xe.unmountUI(), U.destroyInstance(), S.initialized = !1, S.config = null, S.sessionManager = null, S.uiContainer = null, S.reactRoot = null, console.log("[AriaCore] Aria SDK destroyed");
|
|
1236
1236
|
}
|
|
1237
1237
|
// ============================================================================
|
|
1238
1238
|
// Private Methods
|
|
@@ -1280,14 +1280,14 @@ class Ae {
|
|
|
1280
1280
|
*/
|
|
1281
1281
|
static mountUI(e, t) {
|
|
1282
1282
|
const o = document.createElement("div");
|
|
1283
|
-
o.id = "aria-sdk-root", o.setAttribute("data-aria-theme", e), o.setAttribute("data-aria-open", "false"), document.body.appendChild(o), S.uiContainer = o,
|
|
1283
|
+
o.id = "aria-sdk-root", o.setAttribute("data-aria-theme", e), o.setAttribute("data-aria-open", "false"), document.body.appendChild(o), S.uiContainer = o, xe.renderReactUI(o, e, t);
|
|
1284
1284
|
}
|
|
1285
1285
|
/**
|
|
1286
1286
|
* Render React UI components
|
|
1287
1287
|
*/
|
|
1288
1288
|
static async renderReactUI(e, t, o) {
|
|
1289
1289
|
try {
|
|
1290
|
-
const a = await import("react"), l = await import("react-dom/client"), { AriaStandaloneUI: i } = await Promise.resolve().then(() =>
|
|
1290
|
+
const a = await import("react"), l = await import("react-dom/client"), { AriaStandaloneUI: i } = await Promise.resolve().then(() => yt), b = l.createRoot(e);
|
|
1291
1291
|
S.reactRoot = b, b.render(
|
|
1292
1292
|
a.createElement(i, {
|
|
1293
1293
|
theme: t,
|
|
@@ -1306,11 +1306,11 @@ class Ae {
|
|
|
1306
1306
|
S.reactRoot && typeof S.reactRoot.unmount == "function" && S.reactRoot.unmount(), S.uiContainer && S.uiContainer.remove();
|
|
1307
1307
|
}
|
|
1308
1308
|
}
|
|
1309
|
-
function
|
|
1309
|
+
function Er(r) {
|
|
1310
1310
|
return !r || typeof r != "string" ? !1 : r.split(".").length === 3;
|
|
1311
1311
|
}
|
|
1312
|
-
function
|
|
1313
|
-
if (!
|
|
1312
|
+
function ze(r) {
|
|
1313
|
+
if (!Er(r))
|
|
1314
1314
|
return null;
|
|
1315
1315
|
try {
|
|
1316
1316
|
const o = r.split(".")[1].replace(/-/g, "+").replace(/_/g, "/"), a = o.padEnd(o.length + (4 - o.length % 4) % 4, "="), l = atob(a);
|
|
@@ -1319,8 +1319,8 @@ function Te(r) {
|
|
|
1319
1319
|
return console.error("Failed to decode JWT:", e), null;
|
|
1320
1320
|
}
|
|
1321
1321
|
}
|
|
1322
|
-
function
|
|
1323
|
-
const e =
|
|
1322
|
+
function Mr(r) {
|
|
1323
|
+
const e = ze(r);
|
|
1324
1324
|
if (!e)
|
|
1325
1325
|
return null;
|
|
1326
1326
|
const t = [
|
|
@@ -1337,8 +1337,8 @@ function Er(r) {
|
|
|
1337
1337
|
return e[o];
|
|
1338
1338
|
return null;
|
|
1339
1339
|
}
|
|
1340
|
-
function
|
|
1341
|
-
const e =
|
|
1340
|
+
function Et(r) {
|
|
1341
|
+
const e = ze(r);
|
|
1342
1342
|
if (!e)
|
|
1343
1343
|
return {
|
|
1344
1344
|
sessionId: null,
|
|
@@ -1346,7 +1346,7 @@ function St(r) {
|
|
|
1346
1346
|
exp: null,
|
|
1347
1347
|
iat: null
|
|
1348
1348
|
};
|
|
1349
|
-
const t =
|
|
1349
|
+
const t = Mr(r), o = typeof e.exp == "number" ? e.exp : null, a = typeof e.iat == "number" ? e.iat : null;
|
|
1350
1350
|
return {
|
|
1351
1351
|
sessionId: t,
|
|
1352
1352
|
payload: e,
|
|
@@ -1354,8 +1354,8 @@ function St(r) {
|
|
|
1354
1354
|
iat: a
|
|
1355
1355
|
};
|
|
1356
1356
|
}
|
|
1357
|
-
function
|
|
1358
|
-
const e =
|
|
1357
|
+
function Mt(r) {
|
|
1358
|
+
const e = ze(r);
|
|
1359
1359
|
if (!e || typeof e.exp != "number")
|
|
1360
1360
|
return !0;
|
|
1361
1361
|
const t = Math.floor(Date.now() / 1e3);
|
|
@@ -1368,17 +1368,17 @@ const Ke = ({
|
|
|
1368
1368
|
style: o,
|
|
1369
1369
|
as: a = "div"
|
|
1370
1370
|
}) => {
|
|
1371
|
-
const l =
|
|
1372
|
-
|
|
1373
|
-
const
|
|
1374
|
-
if (!
|
|
1375
|
-
let A =
|
|
1376
|
-
A || (A =
|
|
1377
|
-
}, []),
|
|
1371
|
+
const l = le(null), [i, b] = T(null);
|
|
1372
|
+
$(() => {
|
|
1373
|
+
const p = l.current;
|
|
1374
|
+
if (!p) return;
|
|
1375
|
+
let A = p.shadowRoot;
|
|
1376
|
+
A || (A = p.attachShadow({ mode: "open" })), b(A);
|
|
1377
|
+
}, []), $(() => {
|
|
1378
1378
|
if (!i || !e) return;
|
|
1379
|
-
const
|
|
1380
|
-
if (
|
|
1381
|
-
|
|
1379
|
+
const p = i.querySelector("style[data-aria-styles]");
|
|
1380
|
+
if (p) {
|
|
1381
|
+
p.textContent = e;
|
|
1382
1382
|
return;
|
|
1383
1383
|
}
|
|
1384
1384
|
const A = document.createElement("style");
|
|
@@ -1386,23 +1386,23 @@ const Ke = ({
|
|
|
1386
1386
|
A.remove();
|
|
1387
1387
|
};
|
|
1388
1388
|
}, [i, e]);
|
|
1389
|
-
const [d,
|
|
1390
|
-
return
|
|
1389
|
+
const [d, f] = T(null);
|
|
1390
|
+
return $(() => {
|
|
1391
1391
|
if (!i) return;
|
|
1392
|
-
let
|
|
1393
|
-
|
|
1392
|
+
let p = i.querySelector(".aria-shadow-content");
|
|
1393
|
+
p || (p = document.createElement("div"), p.className = "aria-shadow-content", i.appendChild(p)), f(p);
|
|
1394
1394
|
}, [i]), /* @__PURE__ */ n(
|
|
1395
1395
|
a,
|
|
1396
1396
|
{
|
|
1397
1397
|
ref: l,
|
|
1398
1398
|
className: t,
|
|
1399
1399
|
style: o,
|
|
1400
|
-
children: d &&
|
|
1400
|
+
children: d && fr(r, d)
|
|
1401
1401
|
}
|
|
1402
1402
|
);
|
|
1403
|
-
}, Mr = '@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-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-leading:initial;--tw-font-weight:initial;--tw-tracking: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-outline-style:solid;--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;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1}}}@layer aria-theme{:root,:host{--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-400:oklch(70.4% .191 22.216);--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-red-900:oklch(39.6% .141 25.723);--color-red-950:oklch(25.8% .092 26.042);--color-amber-50:oklch(98.7% .022 95.277);--color-amber-100:oklch(96.2% .059 95.617);--color-amber-200:oklch(92.4% .12 95.746);--color-amber-400:oklch(82.8% .189 84.429);--color-amber-500:oklch(76.9% .188 70.08);--color-amber-600:oklch(66.6% .179 58.318);--color-amber-700:oklch(55.5% .163 48.998);--color-amber-800:oklch(47.3% .137 46.201);--color-amber-900:oklch(41.4% .112 45.904);--color-yellow-50:oklch(98.7% .026 102.212);--color-yellow-100:oklch(97.3% .071 103.193);--color-yellow-200:oklch(94.5% .129 101.54);--color-yellow-800:oklch(47.6% .114 61.907);--color-green-50:oklch(98.2% .018 155.826);--color-green-100:oklch(96.2% .044 156.743);--color-green-200:oklch(92.5% .084 155.995);--color-green-600:oklch(62.7% .194 149.214);--color-green-800:oklch(44.8% .119 151.328);--color-emerald-100:oklch(95% .052 163.051);--color-emerald-400:oklch(76.5% .177 163.223);--color-emerald-500:oklch(69.6% .17 162.48);--color-emerald-600:oklch(59.6% .145 163.225);--color-blue-50:oklch(97% .014 254.604);--color-blue-100:oklch(93.2% .032 255.585);--color-blue-200:oklch(88.2% .059 254.128);--color-blue-500:oklch(62.3% .214 259.815);--color-blue-600:oklch(54.6% .245 262.881);--color-blue-800:oklch(42.4% .199 265.638);--color-indigo-50:oklch(96.2% .018 272.314);--color-indigo-100:oklch(93% .034 272.788);--color-indigo-300:oklch(78.5% .115 274.713);--color-indigo-400:oklch(67.3% .182 276.935);--color-indigo-500:oklch(58.5% .233 277.117);--color-indigo-600:oklch(51.1% .262 276.966);--color-indigo-700:oklch(45.7% .24 277.023);--color-indigo-900:oklch(35.9% .144 278.697);--color-purple-50:oklch(97.7% .014 308.299);--color-purple-200:oklch(90.2% .063 306.703);--color-purple-300:oklch(82.7% .119 306.383);--color-purple-400:oklch(71.4% .203 305.504);--color-purple-500:oklch(62.7% .265 303.9);--color-purple-600:oklch(55.8% .288 302.321);--color-purple-800:oklch(43.8% .218 303.724);--color-purple-900:oklch(38.1% .176 304.987);--color-pink-400:oklch(71.8% .202 349.761);--color-pink-500:oklch(65.6% .241 354.308);--color-gray-50:oklch(98.5% .002 247.839);--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-500:oklch(55.1% .027 264.364);--color-gray-600:oklch(44.6% .03 256.802);--color-gray-700:oklch(37.3% .034 259.733);--color-gray-800:oklch(27.8% .033 256.848);--color-gray-900:oklch(21% .034 264.665);--color-gray-950:oklch(13% .028 261.692);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-sm:24rem;--container-4xl:56rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height: 1.5 ;--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: 1.2 ;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--tracking-tight:-.025em;--tracking-wide:.025em;--leading-relaxed:1.625;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--ease-out:cubic-bezier(0,0,.2,1);--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-3xl:64px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1)}}@layer aria-utilities{.pointer-events-none{pointer-events:none}.visible{visibility:visible}.sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.-inset-1\\.5{inset:calc(var(--spacing)*-1.5)}.-inset-2{inset:calc(var(--spacing)*-2)}.-inset-3{inset:calc(var(--spacing)*-3)}.inset-0{inset:calc(var(--spacing)*0)}.inset-8{inset:calc(var(--spacing)*8)}.inset-\\[2px\\]{inset:2px}.inset-\\[3px\\]{inset:3px}.top-0{top:calc(var(--spacing)*0)}.top-3{top:calc(var(--spacing)*3)}.top-4{top:calc(var(--spacing)*4)}.right-0{right:calc(var(--spacing)*0)}.right-4{right:calc(var(--spacing)*4)}.right-6{right:calc(var(--spacing)*6)}.bottom-0{bottom:calc(var(--spacing)*0)}.bottom-3{bottom:calc(var(--spacing)*3)}.bottom-4{bottom:calc(var(--spacing)*4)}.bottom-6{bottom:calc(var(--spacing)*6)}.left-0{left:calc(var(--spacing)*0)}.left-1\\/2{left:50%}.left-3{left:calc(var(--spacing)*3)}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.z-50{z-index:50}.col-span-2{grid-column:span 2/span 2}.container{width:100%}@media(min-width:40rem){.container{max-width:40rem}}@media(min-width:48rem){.container{max-width:48rem}}@media(min-width:64rem){.container{max-width:64rem}}@media(min-width:80rem){.container{max-width:80rem}}@media(min-width:96rem){.container{max-width:96rem}}.mx-2{margin-inline:calc(var(--spacing)*2)}.mx-auto{margin-inline:auto}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-2{margin-top:calc(var(--spacing)*2)}.mt-6{margin-top:calc(var(--spacing)*6)}.mr-1{margin-right:calc(var(--spacing)*1)}.mr-2{margin-right:calc(var(--spacing)*2)}.mb-0\\.5{margin-bottom:calc(var(--spacing)*.5)}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.ml-1{margin-left:calc(var(--spacing)*1)}.ml-4{margin-left:calc(var(--spacing)*4)}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-flex{display:inline-flex}.h-1\\.5{height:calc(var(--spacing)*1.5)}.h-2{height:calc(var(--spacing)*2)}.h-2\\.5{height:calc(var(--spacing)*2.5)}.h-3{height:calc(var(--spacing)*3)}.h-3\\.5{height:calc(var(--spacing)*3.5)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-6{height:calc(var(--spacing)*6)}.h-7{height:calc(var(--spacing)*7)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-12{height:calc(var(--spacing)*12)}.h-14{height:calc(var(--spacing)*14)}.h-20{height:calc(var(--spacing)*20)}.h-32{height:calc(var(--spacing)*32)}.h-48{height:calc(var(--spacing)*48)}.h-64{height:calc(var(--spacing)*64)}.h-96{height:calc(var(--spacing)*96)}.h-\\[240px\\]{height:240px}.h-\\[500px\\]{height:500px}.h-full{height:100%}.max-h-32{max-height:calc(var(--spacing)*32)}.max-h-40{max-height:calc(var(--spacing)*40)}.max-h-64{max-height:calc(var(--spacing)*64)}.max-h-\\[3\\.5em\\]{max-height:3.5em}.max-h-\\[90vh\\]{max-height:90vh}.min-h-0{min-height:calc(var(--spacing)*0)}.min-h-screen{min-height:100vh}.w-1\\.5{width:calc(var(--spacing)*1.5)}.w-2{width:calc(var(--spacing)*2)}.w-2\\.5{width:calc(var(--spacing)*2.5)}.w-3{width:calc(var(--spacing)*3)}.w-3\\.5{width:calc(var(--spacing)*3.5)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-6{width:calc(var(--spacing)*6)}.w-7{width:calc(var(--spacing)*7)}.w-8{width:calc(var(--spacing)*8)}.w-9{width:calc(var(--spacing)*9)}.w-10{width:calc(var(--spacing)*10)}.w-12{width:calc(var(--spacing)*12)}.w-14{width:calc(var(--spacing)*14)}.w-20{width:calc(var(--spacing)*20)}.w-48{width:calc(var(--spacing)*48)}.w-64{width:calc(var(--spacing)*64)}.w-96{width:calc(var(--spacing)*96)}.w-\\[320px\\]{width:320px}.w-\\[360px\\]{width:360px}.w-\\[640px\\]{width:640px}.w-\\[960px\\]{width:960px}.w-full{width:100%}.max-w-4xl{max-width:var(--container-4xl)}.max-w-\\[80\\%\\]{max-width:80%}.max-w-full{max-width:100%}.max-w-sm{max-width:var(--container-sm)}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-\\[60px\\]{min-width:60px}.flex-1{flex:1}.shrink-0{flex-shrink:0}.-translate-x-1\\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-\\[135deg\\]{rotate:135deg}.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)}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-0\\.5{gap:calc(var(--spacing)*.5)}.gap-1{gap:calc(var(--spacing)*1)}.gap-1\\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-6{gap:calc(var(--spacing)*6)}: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)))}:where(.space-y-1\\.5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1.5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1.5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)))}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.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-br-md{border-bottom-right-radius:var(--radius-md)}.rounded-bl-md{border-bottom-left-radius:var(--radius-md)}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-none{--tw-border-style:none;border-style:none}.border-amber-200{border-color:var(--color-amber-200)}.border-amber-700\\/50{border-color:#b7500080}@supports (color:color-mix(in lab,red,red)){.border-amber-700\\/50{border-color:color-mix(in oklab,var(--color-amber-700)50%,transparent)}}.border-blue-200{border-color:var(--color-blue-200)}.border-gray-100{border-color:var(--color-gray-100)}.border-gray-200{border-color:var(--color-gray-200)}.border-gray-200\\/80{border-color:#e5e7ebcc}@supports (color:color-mix(in lab,red,red)){.border-gray-200\\/80{border-color:color-mix(in oklab,var(--color-gray-200)80%,transparent)}}.border-gray-700{border-color:var(--color-gray-700)}.border-gray-700\\/50{border-color:#36415380}@supports (color:color-mix(in lab,red,red)){.border-gray-700\\/50{border-color:color-mix(in oklab,var(--color-gray-700)50%,transparent)}}.border-gray-800{border-color:var(--color-gray-800)}.border-gray-800\\/50{border-color:#1e293980}@supports (color:color-mix(in lab,red,red)){.border-gray-800\\/50{border-color:color-mix(in oklab,var(--color-gray-800)50%,transparent)}}.border-gray-900{border-color:var(--color-gray-900)}.border-purple-200{border-color:var(--color-purple-200)}.border-red-100{border-color:var(--color-red-100)}.border-red-900\\/30{border-color:#82181a4d}@supports (color:color-mix(in lab,red,red)){.border-red-900\\/30{border-color:color-mix(in oklab,var(--color-red-900)30%,transparent)}}.border-red-900\\/50{border-color:#82181a80}@supports (color:color-mix(in lab,red,red)){.border-red-900\\/50{border-color:color-mix(in oklab,var(--color-red-900)50%,transparent)}}.border-transparent{border-color:#0000}.border-white{border-color:var(--color-white)}.border-yellow-200{border-color:var(--color-yellow-200)}.bg-amber-50{background-color:var(--color-amber-50)}.bg-amber-100{background-color:var(--color-amber-100)}.bg-amber-400{background-color:var(--color-amber-400)}.bg-amber-500{background-color:var(--color-amber-500)}.bg-amber-600{background-color:var(--color-amber-600)}.bg-amber-800\\/50{background-color:#953d0080}@supports (color:color-mix(in lab,red,red)){.bg-amber-800\\/50{background-color:color-mix(in oklab,var(--color-amber-800)50%,transparent)}}.bg-amber-900\\/30{background-color:#7b33064d}@supports (color:color-mix(in lab,red,red)){.bg-amber-900\\/30{background-color:color-mix(in oklab,var(--color-amber-900)30%,transparent)}}.bg-black\\/60{background-color:#0009}@supports (color:color-mix(in lab,red,red)){.bg-black\\/60{background-color:color-mix(in oklab,var(--color-black)60%,transparent)}}.bg-black\\/70{background-color:#000000b3}@supports (color:color-mix(in lab,red,red)){.bg-black\\/70{background-color:color-mix(in oklab,var(--color-black)70%,transparent)}}.bg-black\\/80{background-color:#000c}@supports (color:color-mix(in lab,red,red)){.bg-black\\/80{background-color:color-mix(in oklab,var(--color-black)80%,transparent)}}.bg-black\\/90{background-color:#000000e6}@supports (color:color-mix(in lab,red,red)){.bg-black\\/90{background-color:color-mix(in oklab,var(--color-black)90%,transparent)}}.bg-blue-50{background-color:var(--color-blue-50)}.bg-blue-100{background-color:var(--color-blue-100)}.bg-blue-500{background-color:var(--color-blue-500)}.bg-emerald-100{background-color:var(--color-emerald-100)}.bg-emerald-400{background-color:var(--color-emerald-400)}.bg-emerald-500{background-color:var(--color-emerald-500)}.bg-emerald-600{background-color:var(--color-emerald-600)}.bg-gray-50{background-color:var(--color-gray-50)}.bg-gray-50\\/30{background-color:#f9fafb4d}@supports (color:color-mix(in lab,red,red)){.bg-gray-50\\/30{background-color:color-mix(in oklab,var(--color-gray-50)30%,transparent)}}.bg-gray-100{background-color:var(--color-gray-100)}.bg-gray-100\\/80{background-color:#f3f4f6cc}@supports (color:color-mix(in lab,red,red)){.bg-gray-100\\/80{background-color:color-mix(in oklab,var(--color-gray-100)80%,transparent)}}.bg-gray-200{background-color:var(--color-gray-200)}.bg-gray-700{background-color:var(--color-gray-700)}.bg-gray-800{background-color:var(--color-gray-800)}.bg-gray-800\\/50{background-color:#1e293980}@supports (color:color-mix(in lab,red,red)){.bg-gray-800\\/50{background-color:color-mix(in oklab,var(--color-gray-800)50%,transparent)}}.bg-gray-800\\/80{background-color:#1e2939cc}@supports (color:color-mix(in lab,red,red)){.bg-gray-800\\/80{background-color:color-mix(in oklab,var(--color-gray-800)80%,transparent)}}.bg-gray-900{background-color:var(--color-gray-900)}.bg-gray-900\\/30{background-color:#1018284d}@supports (color:color-mix(in lab,red,red)){.bg-gray-900\\/30{background-color:color-mix(in oklab,var(--color-gray-900)30%,transparent)}}.bg-gray-900\\/90{background-color:#101828e6}@supports (color:color-mix(in lab,red,red)){.bg-gray-900\\/90{background-color:color-mix(in oklab,var(--color-gray-900)90%,transparent)}}.bg-gray-950{background-color:var(--color-gray-950)}.bg-gray-950\\/80{background-color:#030712cc}@supports (color:color-mix(in lab,red,red)){.bg-gray-950\\/80{background-color:color-mix(in oklab,var(--color-gray-950)80%,transparent)}}.bg-gray-950\\/90{background-color:#030712e6}@supports (color:color-mix(in lab,red,red)){.bg-gray-950\\/90{background-color:color-mix(in oklab,var(--color-gray-950)90%,transparent)}}.bg-gray-950\\/95{background-color:#030712f2}@supports (color:color-mix(in lab,red,red)){.bg-gray-950\\/95{background-color:color-mix(in oklab,var(--color-gray-950)95%,transparent)}}.bg-green-50{background-color:var(--color-green-50)}.bg-green-100{background-color:var(--color-green-100)}.bg-indigo-100{background-color:var(--color-indigo-100)}.bg-indigo-300{background-color:var(--color-indigo-300)}.bg-indigo-400{background-color:var(--color-indigo-400)}.bg-indigo-500{background-color:var(--color-indigo-500)}.bg-indigo-600{background-color:var(--color-indigo-600)}.bg-indigo-900{background-color:var(--color-indigo-900)}.bg-indigo-900\\/30{background-color:#312c854d}@supports (color:color-mix(in lab,red,red)){.bg-indigo-900\\/30{background-color:color-mix(in oklab,var(--color-indigo-900)30%,transparent)}}.bg-purple-50{background-color:var(--color-purple-50)}.bg-purple-300{background-color:var(--color-purple-300)}.bg-purple-500{background-color:var(--color-purple-500)}.bg-purple-900{background-color:var(--color-purple-900)}.bg-red-50{background-color:var(--color-red-50)}.bg-red-500{background-color:var(--color-red-500)}.bg-red-500\\/10{background-color:#fb2c361a}@supports (color:color-mix(in lab,red,red)){.bg-red-500\\/10{background-color:color-mix(in oklab,var(--color-red-500)10%,transparent)}}.bg-red-950\\/30{background-color:#4608094d}@supports (color:color-mix(in lab,red,red)){.bg-red-950\\/30{background-color:color-mix(in oklab,var(--color-red-950)30%,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-white\\/20{background-color:#fff3}@supports (color:color-mix(in lab,red,red)){.bg-white\\/20{background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.bg-white\\/80{background-color:#fffc}@supports (color:color-mix(in lab,red,red)){.bg-white\\/80{background-color:color-mix(in oklab,var(--color-white)80%,transparent)}}.bg-white\\/90{background-color:#ffffffe6}@supports (color:color-mix(in lab,red,red)){.bg-white\\/90{background-color:color-mix(in oklab,var(--color-white)90%,transparent)}}.bg-white\\/95{background-color:#fffffff2}@supports (color:color-mix(in lab,red,red)){.bg-white\\/95{background-color:color-mix(in oklab,var(--color-white)95%,transparent)}}.bg-yellow-50{background-color:var(--color-yellow-50)}.bg-yellow-100{background-color:var(--color-yellow-100)}.bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.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))}.from-black\\/60{--tw-gradient-from:#0009}@supports (color:color-mix(in lab,red,red)){.from-black\\/60{--tw-gradient-from:color-mix(in oklab,var(--color-black)60%,transparent)}}.from-black\\/60{--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-blue-50{--tw-gradient-from:var(--color-blue-50);--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-blue-500{--tw-gradient-from:var(--color-blue-500);--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-50{--tw-gradient-from:var(--color-gray-50);--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-100{--tw-gradient-from:var(--color-gray-100);--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-800{--tw-gradient-from:var(--color-gray-800);--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-900{--tw-gradient-from:var(--color-gray-900);--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-indigo-50{--tw-gradient-from:var(--color-indigo-50);--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-indigo-400{--tw-gradient-from:var(--color-indigo-400);--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-indigo-500{--tw-gradient-from:var(--color-indigo-500);--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-indigo-900\\/20{--tw-gradient-from:#312c8533}@supports (color:color-mix(in lab,red,red)){.from-indigo-900\\/20{--tw-gradient-from:color-mix(in oklab,var(--color-indigo-900)20%,transparent)}}.from-indigo-900\\/20{--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-white\\/60{--tw-gradient-from:#fff9}@supports (color:color-mix(in lab,red,red)){.from-white\\/60{--tw-gradient-from:color-mix(in oklab,var(--color-white)60%,transparent)}}.from-white\\/60{--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-indigo-50{--tw-gradient-via:var(--color-indigo-50);--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-purple-400{--tw-gradient-via:var(--color-purple-400);--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-purple-500{--tw-gradient-via:var(--color-purple-500);--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-black{--tw-gradient-to:var(--color-black);--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-gray-50{--tw-gradient-to:var(--color-gray-50);--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-gray-950{--tw-gradient-to:var(--color-gray-950);--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-pink-400{--tw-gradient-to:var(--color-pink-400);--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-pink-500{--tw-gradient-to:var(--color-pink-500);--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-purple-50{--tw-gradient-to:var(--color-purple-50);--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-purple-400{--tw-gradient-to:var(--color-purple-400);--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-purple-500{--tw-gradient-to:var(--color-purple-500);--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-purple-900\\/20{--tw-gradient-to:#59168b33}@supports (color:color-mix(in lab,red,red)){.to-purple-900\\/20{--tw-gradient-to:color-mix(in oklab,var(--color-purple-900)20%,transparent)}}.to-purple-900\\/20{--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))}.to-white{--tw-gradient-to:var(--color-white);--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))}.object-contain{-o-object-fit:contain;object-fit:contain}.object-cover{-o-object-fit:cover;object-fit:cover}.p-1{padding:calc(var(--spacing)*1)}.p-1\\.5{padding:calc(var(--spacing)*1.5)}.p-2{padding:calc(var(--spacing)*2)}.p-3{padding:calc(var(--spacing)*3)}.p-4{padding:calc(var(--spacing)*4)}.p-6{padding:calc(var(--spacing)*6)}.p-8{padding:calc(var(--spacing)*8)}.px-1{padding-inline:calc(var(--spacing)*1)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-2\\.5{padding-inline:calc(var(--spacing)*2.5)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-3\\.5{padding-inline:calc(var(--spacing)*3.5)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-5{padding-inline:calc(var(--spacing)*5)}.px-8{padding-inline:calc(var(--spacing)*8)}.py-0\\.5{padding-block:calc(var(--spacing)*.5)}.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-2\\.5{padding-block:calc(var(--spacing)*2.5)}.py-3{padding-block:calc(var(--spacing)*3)}.py-4{padding-block:calc(var(--spacing)*4)}.py-6{padding-block:calc(var(--spacing)*6)}.py-12{padding-block:calc(var(--spacing)*12)}.pt-0{padding-top:calc(var(--spacing)*0)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.text-center{text-align:center}.text-left{text-align:left}.font-mono{font-family:var(--font-mono)}.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-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\\[9px\\]{font-size:9px}.text-\\[10px\\]{font-size:10px}.text-\\[11px\\]{font-size:11px}.text-\\[13px\\]{font-size:13px}.leading-none{--tw-leading:1;line-height:1}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.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)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.text-amber-200{color:var(--color-amber-200)}.text-amber-400{color:var(--color-amber-400)}.text-amber-600{color:var(--color-amber-600)}.text-amber-800{color:var(--color-amber-800)}.text-blue-600{color:var(--color-blue-600)}.text-blue-800{color:var(--color-blue-800)}.text-emerald-600{color:var(--color-emerald-600)}.text-gray-100{color:var(--color-gray-100)}.text-gray-300{color:var(--color-gray-300)}.text-gray-400{color:var(--color-gray-400)}.text-gray-500{color:var(--color-gray-500)}.text-gray-600{color:var(--color-gray-600)}.text-gray-700{color:var(--color-gray-700)}.text-gray-800{color:var(--color-gray-800)}.text-gray-900{color:var(--color-gray-900)}.text-green-600{color:var(--color-green-600)}.text-green-800{color:var(--color-green-800)}.text-indigo-400{color:var(--color-indigo-400)}.text-indigo-500{color:var(--color-indigo-500)}.text-indigo-600{color:var(--color-indigo-600)}.text-purple-600{color:var(--color-purple-600)}.text-purple-800{color:var(--color-purple-800)}.text-red-200{color:var(--color-red-200)}.text-red-300{color:var(--color-red-300)}.text-red-400{color:var(--color-red-400)}.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-red-900{color:var(--color-red-900)}.text-white{color:var(--color-white)}.text-yellow-800{color:var(--color-yellow-800)}.uppercase{text-transform:uppercase}.underline-offset-4{text-underline-offset:4px}.opacity-20{opacity:.2}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-70{opacity:.7}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px 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-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_8px_30px_rgb\\(0\\,0\\,0\\,0\\.3\\)\\]{--tw-shadow:0 8px 30px var(--tw-shadow-color,#0000004d);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_8px_30px_rgb\\(0\\,0\\,0\\,0\\.12\\)\\]{--tw-shadow:0 8px 30px var(--tw-shadow-color,#0000001f);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-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px 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)}.ring{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-2{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-4{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(4px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-gray-900{--tw-ring-color:var(--color-gray-900)}.ring-white{--tw-ring-color:var(--color-white)}.ring-white\\/20{--tw-ring-color:#fff3}@supports (color:color-mix(in lab,red,red)){.ring-white\\/20{--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.blur-3xl{--tw-blur:blur(var(--blur-3xl));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,)}.grayscale{--tw-grayscale:grayscale(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,)}.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-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-shadow{transition-property:box-shadow;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-200{--tw-duration:.2s;transition-duration:.2s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.outline-none{--tw-outline-style:none;outline-style:none}@media(hover:hover){.group-hover\\:scale-105:is(:where(.group):hover *){--tw-scale-x:105%;--tw-scale-y:105%;--tw-scale-z:105%;scale:var(--tw-scale-x)var(--tw-scale-y)}}.file\\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\\:bg-transparent::file-selector-button{background-color:#0000}.file\\:text-sm::file-selector-button{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.file\\:font-medium::file-selector-button{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.placeholder\\:text-gray-400::-moz-placeholder{color:var(--color-gray-400)}.placeholder\\:text-gray-400::placeholder{color:var(--color-gray-400)}.placeholder\\:text-gray-500::-moz-placeholder{color:var(--color-gray-500)}.placeholder\\:text-gray-500::placeholder{color:var(--color-gray-500)}.focus-within\\:border-indigo-500\\/50:focus-within{border-color:#625fff80}@supports (color:color-mix(in lab,red,red)){.focus-within\\:border-indigo-500\\/50:focus-within{border-color:color-mix(in oklab,var(--color-indigo-500)50%,transparent)}}.focus-within\\:bg-white:focus-within{background-color:var(--color-white)}@media(hover:hover){.hover\\:-translate-y-0\\.5:hover{--tw-translate-y:calc(var(--spacing)*-.5);translate:var(--tw-translate-x)var(--tw-translate-y)}.hover\\:border-gray-300:hover{border-color:var(--color-gray-300)}.hover\\:border-gray-600:hover{border-color:var(--color-gray-600)}.hover\\:bg-blue-100:hover{background-color:var(--color-blue-100)}.hover\\:bg-blue-200:hover{background-color:var(--color-blue-200)}.hover\\:bg-gray-50:hover{background-color:var(--color-gray-50)}.hover\\:bg-gray-200:hover{background-color:var(--color-gray-200)}.hover\\:bg-gray-700:hover{background-color:var(--color-gray-700)}.hover\\:bg-gray-800:hover{background-color:var(--color-gray-800)}.hover\\:bg-green-200:hover{background-color:var(--color-green-200)}.hover\\:bg-indigo-600:hover{background-color:var(--color-indigo-600)}.hover\\:bg-indigo-700:hover{background-color:var(--color-indigo-700)}.hover\\:bg-red-600:hover{background-color:var(--color-red-600)}.hover\\:text-blue-800:hover{color:var(--color-blue-800)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-90:hover{opacity:.9}.hover\\:opacity-100:hover{opacity:1}.hover\\:shadow-\\[0_8px_30px_rgb\\(0\\,0\\,0\\,0\\.4\\)\\]:hover{--tw-shadow:0 8px 30px var(--tw-shadow-color,#0006);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\\:shadow-\\[0_8px_30px_rgb\\(0\\,0\\,0\\,0\\.16\\)\\]:hover{--tw-shadow:0 8px 30px var(--tw-shadow-color,#00000029);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\\:shadow-lg:hover{--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)}.hover\\:shadow-md:hover{--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)}.hover\\:shadow-indigo-500\\/25:hover{--tw-shadow-color:#625fff40}@supports (color:color-mix(in lab,red,red)){.hover\\:shadow-indigo-500\\/25:hover{--tw-shadow-color:color-mix(in oklab,color-mix(in oklab,var(--color-indigo-500)25%,transparent)var(--tw-shadow-alpha),transparent)}}}.focus\\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus\\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\\:ring-0:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\\:ring-1:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus-visible\\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.active\\:scale-\\[0\\.98\\]:active{scale:.98}.disabled\\:pointer-events-none:disabled{pointer-events:none}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:opacity-40:disabled{opacity:.4}.disabled\\:opacity-50:disabled{opacity:.5}@media(min-width:40rem){.sm\\:text-left{text-align:left}}@media(min-width:48rem){.md\\:inset-16{inset:calc(var(--spacing)*16)}.md\\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(min-width:64rem){.lg\\:inset-20{inset:calc(var(--spacing)*20)}}@media(prefers-color-scheme:dark){.dark\\:bg-emerald-500\\/20{background-color:#00bb7f33}@supports (color:color-mix(in lab,red,red)){.dark\\:bg-emerald-500\\/20{background-color:color-mix(in oklab,var(--color-emerald-500)20%,transparent)}}.dark\\:text-emerald-400{color:var(--color-emerald-400)}}}.aria-assistant-container{--aria-background:0 0% 100%;--aria-foreground:222 47% 11%;--aria-card:0 0% 100%;--aria-card-foreground:222 47% 11%;--aria-popover:0 0% 100%;--aria-popover-foreground:222 47% 11%;--aria-primary:221 83% 53%;--aria-primary-foreground:0 0% 100%;--aria-secondary:210 40% 96%;--aria-secondary-foreground:215 16% 47%;--aria-muted:210 40% 96%;--aria-muted-foreground:215 16% 47%;--aria-accent:210 40% 96%;--aria-accent-foreground:222 47% 11%;--aria-destructive:0 84% 60%;--aria-destructive-foreground:0 0% 100%;--aria-success:142 72% 29%;--aria-success-foreground:0 0% 100%;--aria-border:214 32% 91%;--aria-input:214 32% 91%;--aria-ring:221 83% 53%;--aria-radius:.5rem;--aria-gradient-from:221 83% 53%;--aria-gradient-to:221 83% 53%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;isolation:isolate;color:hsl(var(--aria-foreground));--background:var(--aria-background);--foreground:var(--aria-foreground);--card:var(--aria-card);--card-foreground:var(--aria-card-foreground);--primary:var(--aria-primary);--primary-foreground:var(--aria-primary-foreground);--secondary:var(--aria-secondary);--secondary-foreground:var(--aria-secondary-foreground);--muted:var(--aria-muted);--muted-foreground:var(--aria-muted-foreground);--accent:var(--aria-accent);--accent-foreground:var(--aria-accent-foreground);--destructive:var(--aria-destructive);--destructive-foreground:var(--aria-destructive-foreground);--success:var(--aria-success);--success-foreground:var(--aria-success-foreground);--border:var(--aria-border);--input:var(--aria-input);--ring:var(--aria-ring);--radius:var(--aria-radius);font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;font-size:14px;line-height:1.6}.aria-assistant-container *,.aria-assistant-container :before,.aria-assistant-container :after{box-sizing:border-box}.aria-assistant-container.aria-dark{--aria-background:222 47% 4%;--aria-foreground:210 40% 98%;--aria-card:222 47% 6%;--aria-card-foreground:210 40% 98%;--aria-popover:222 47% 6%;--aria-popover-foreground:210 40% 98%;--aria-primary:217 91% 60%;--aria-primary-foreground:0 0% 100%;--aria-secondary:217 33% 17%;--aria-secondary-foreground:210 40% 98%;--aria-muted:217 33% 17%;--aria-muted-foreground:215 20% 65%;--aria-accent:217 33% 17%;--aria-accent-foreground:210 40% 98%;--aria-destructive:0 84% 60%;--aria-destructive-foreground:0 0% 100%;--aria-success:142 71% 45%;--aria-success-foreground:0 0% 100%;--aria-border:217 33% 17%;--aria-input:217 33% 17%;--aria-ring:217 91% 60%;--aria-gradient-from:217 91% 60%;--aria-gradient-to:217 91% 60%;--background:var(--aria-background);--foreground:var(--aria-foreground);--card:var(--aria-card);--card-foreground:var(--aria-card-foreground);--primary:var(--aria-primary);--primary-foreground:var(--aria-primary-foreground);--secondary:var(--aria-secondary);--secondary-foreground:var(--aria-secondary-foreground);--muted:var(--aria-muted);--muted-foreground:var(--aria-muted-foreground);--accent:var(--aria-accent);--accent-foreground:var(--aria-accent-foreground);--destructive:var(--aria-destructive);--destructive-foreground:var(--aria-destructive-foreground);--success:var(--aria-success);--success-foreground:var(--aria-success-foreground);--border:var(--aria-border);--input:var(--aria-input);--ring:var(--aria-ring)}@keyframes aria-fade-in{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}@keyframes aria-scale-in{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}@keyframes aria-slide-up{0%{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}@keyframes aria-pulse-ring{0%,to{box-shadow:0 0 hsl(var(--aria-primary)/.4)}50%{box-shadow:0 0 0 8px hsl(var(--aria-primary)/0)}}@keyframes aria-gradient-shift{0%,to{background-position:0%}50%{background-position:100%}}@keyframes aria-pulse-dot{0%{opacity:.5;transform:scale(.95)}50%{opacity:1;transform:scale(1.05)}to{opacity:.5;transform:scale(.95)}}@keyframes aria-loading-bounce{0%,to{opacity:.5;transform:scale(.8)}50%{opacity:1;transform:scale(1.2)}}.aria-assistant-container .aria-animate-pulse-dot{animation:2s ease-in-out infinite aria-pulse-dot}.aria-assistant-container .aria-animate-fade-in{animation:.3s ease-out forwards aria-fade-in}.aria-assistant-container .aria-animate-scale-in{animation:.2s ease-out forwards aria-scale-in}.aria-assistant-container .aria-animate-slide-up{animation:.4s ease-out forwards aria-slide-up}.aria-assistant-container .aria-animate-pulse-ring{animation:2s ease-in-out infinite aria-pulse-ring}.aria-assistant-container .aria-glass{background:hsl(var(--aria-background)/.8);-webkit-backdrop-filter:blur(12px)saturate(180%)}.aria-assistant-container.aria-dark .aria-glass{background:hsl(var(--aria-background)/.75);-webkit-backdrop-filter:blur(16px)saturate(180%)}.aria-assistant-container .aria-gradient-text{background:linear-gradient(135deg,hsl(var(--aria-gradient-from)),hsl(var(--aria-gradient-to)));-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text}.aria-assistant-container .aria-gradient-bg{background:linear-gradient(135deg,hsl(var(--aria-gradient-from)),hsl(var(--aria-gradient-to)))}.aria-assistant-container ::-webkit-scrollbar{width:6px;height:6px}.aria-assistant-container ::-webkit-scrollbar-track{background:0 0}.aria-assistant-container ::-webkit-scrollbar-thumb{background:hsl(var(--aria-border));border-radius:3px}.aria-assistant-container ::-webkit-scrollbar-thumb:hover{background:hsl(var(--aria-muted-foreground)/.5)}.aria-assistant-container .aria-focus-ring:focus-visible{box-shadow:0 0 0 2px hsl(var(--aria-ring)/.2);outline:none}.aria-assistant-container .scrollbar-hide::-webkit-scrollbar{display:none}.aria-assistant-container .scrollbar-hide{-ms-overflow-style:none;scrollbar-width:none}@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-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-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{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-outline-style{syntax:"*";inherits:false;initial-value:solid}@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}@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}@keyframes spin{to{transform:rotate(360deg)}}@keyframes pulse{50%{opacity:.5}}';
|
|
1403
|
+
}, Cr = '@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-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-leading:initial;--tw-font-weight:initial;--tw-tracking: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-outline-style:solid;--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;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1}}}@layer aria-theme{:root,:host{--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-400:oklch(70.4% .191 22.216);--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-red-900:oklch(39.6% .141 25.723);--color-red-950:oklch(25.8% .092 26.042);--color-amber-50:oklch(98.7% .022 95.277);--color-amber-100:oklch(96.2% .059 95.617);--color-amber-200:oklch(92.4% .12 95.746);--color-amber-400:oklch(82.8% .189 84.429);--color-amber-500:oklch(76.9% .188 70.08);--color-amber-600:oklch(66.6% .179 58.318);--color-amber-700:oklch(55.5% .163 48.998);--color-amber-800:oklch(47.3% .137 46.201);--color-amber-900:oklch(41.4% .112 45.904);--color-yellow-50:oklch(98.7% .026 102.212);--color-yellow-100:oklch(97.3% .071 103.193);--color-yellow-200:oklch(94.5% .129 101.54);--color-yellow-800:oklch(47.6% .114 61.907);--color-green-50:oklch(98.2% .018 155.826);--color-green-100:oklch(96.2% .044 156.743);--color-green-200:oklch(92.5% .084 155.995);--color-green-600:oklch(62.7% .194 149.214);--color-green-800:oklch(44.8% .119 151.328);--color-emerald-100:oklch(95% .052 163.051);--color-emerald-400:oklch(76.5% .177 163.223);--color-emerald-500:oklch(69.6% .17 162.48);--color-emerald-600:oklch(59.6% .145 163.225);--color-blue-50:oklch(97% .014 254.604);--color-blue-100:oklch(93.2% .032 255.585);--color-blue-200:oklch(88.2% .059 254.128);--color-blue-500:oklch(62.3% .214 259.815);--color-blue-600:oklch(54.6% .245 262.881);--color-blue-800:oklch(42.4% .199 265.638);--color-indigo-50:oklch(96.2% .018 272.314);--color-indigo-100:oklch(93% .034 272.788);--color-indigo-300:oklch(78.5% .115 274.713);--color-indigo-400:oklch(67.3% .182 276.935);--color-indigo-500:oklch(58.5% .233 277.117);--color-indigo-600:oklch(51.1% .262 276.966);--color-indigo-700:oklch(45.7% .24 277.023);--color-indigo-900:oklch(35.9% .144 278.697);--color-purple-50:oklch(97.7% .014 308.299);--color-purple-200:oklch(90.2% .063 306.703);--color-purple-300:oklch(82.7% .119 306.383);--color-purple-400:oklch(71.4% .203 305.504);--color-purple-500:oklch(62.7% .265 303.9);--color-purple-600:oklch(55.8% .288 302.321);--color-purple-800:oklch(43.8% .218 303.724);--color-purple-900:oklch(38.1% .176 304.987);--color-pink-400:oklch(71.8% .202 349.761);--color-pink-500:oklch(65.6% .241 354.308);--color-gray-50:oklch(98.5% .002 247.839);--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-500:oklch(55.1% .027 264.364);--color-gray-600:oklch(44.6% .03 256.802);--color-gray-700:oklch(37.3% .034 259.733);--color-gray-800:oklch(27.8% .033 256.848);--color-gray-900:oklch(21% .034 264.665);--color-gray-950:oklch(13% .028 261.692);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-sm:24rem;--container-4xl:56rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height: 1.5 ;--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: 1.2 ;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--tracking-tight:-.025em;--tracking-wide:.025em;--leading-relaxed:1.625;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--ease-out:cubic-bezier(0,0,.2,1);--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-3xl:64px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1)}}@layer aria-utilities{.pointer-events-none{pointer-events:none}.visible{visibility:visible}.sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.-inset-1\\.5{inset:calc(var(--spacing)*-1.5)}.-inset-2{inset:calc(var(--spacing)*-2)}.-inset-3{inset:calc(var(--spacing)*-3)}.inset-0{inset:calc(var(--spacing)*0)}.inset-8{inset:calc(var(--spacing)*8)}.inset-\\[2px\\]{inset:2px}.inset-\\[3px\\]{inset:3px}.top-0{top:calc(var(--spacing)*0)}.top-3{top:calc(var(--spacing)*3)}.top-4{top:calc(var(--spacing)*4)}.right-0{right:calc(var(--spacing)*0)}.right-4{right:calc(var(--spacing)*4)}.right-6{right:calc(var(--spacing)*6)}.bottom-0{bottom:calc(var(--spacing)*0)}.bottom-3{bottom:calc(var(--spacing)*3)}.bottom-4{bottom:calc(var(--spacing)*4)}.bottom-6{bottom:calc(var(--spacing)*6)}.left-0{left:calc(var(--spacing)*0)}.left-1\\/2{left:50%}.left-3{left:calc(var(--spacing)*3)}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.z-50{z-index:50}.col-span-2{grid-column:span 2/span 2}.container{width:100%}@media(min-width:40rem){.container{max-width:40rem}}@media(min-width:48rem){.container{max-width:48rem}}@media(min-width:64rem){.container{max-width:64rem}}@media(min-width:80rem){.container{max-width:80rem}}@media(min-width:96rem){.container{max-width:96rem}}.mx-2{margin-inline:calc(var(--spacing)*2)}.mx-auto{margin-inline:auto}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-2{margin-top:calc(var(--spacing)*2)}.mt-6{margin-top:calc(var(--spacing)*6)}.mr-1{margin-right:calc(var(--spacing)*1)}.mr-2{margin-right:calc(var(--spacing)*2)}.mb-0\\.5{margin-bottom:calc(var(--spacing)*.5)}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.ml-1{margin-left:calc(var(--spacing)*1)}.ml-4{margin-left:calc(var(--spacing)*4)}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-flex{display:inline-flex}.h-1\\.5{height:calc(var(--spacing)*1.5)}.h-2{height:calc(var(--spacing)*2)}.h-2\\.5{height:calc(var(--spacing)*2.5)}.h-3{height:calc(var(--spacing)*3)}.h-3\\.5{height:calc(var(--spacing)*3.5)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-6{height:calc(var(--spacing)*6)}.h-7{height:calc(var(--spacing)*7)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-12{height:calc(var(--spacing)*12)}.h-14{height:calc(var(--spacing)*14)}.h-20{height:calc(var(--spacing)*20)}.h-32{height:calc(var(--spacing)*32)}.h-48{height:calc(var(--spacing)*48)}.h-64{height:calc(var(--spacing)*64)}.h-96{height:calc(var(--spacing)*96)}.h-\\[240px\\]{height:240px}.h-\\[500px\\]{height:500px}.h-full{height:100%}.max-h-32{max-height:calc(var(--spacing)*32)}.max-h-40{max-height:calc(var(--spacing)*40)}.max-h-64{max-height:calc(var(--spacing)*64)}.max-h-\\[3\\.5em\\]{max-height:3.5em}.max-h-\\[90vh\\]{max-height:90vh}.min-h-0{min-height:calc(var(--spacing)*0)}.min-h-screen{min-height:100vh}.w-1\\.5{width:calc(var(--spacing)*1.5)}.w-2{width:calc(var(--spacing)*2)}.w-2\\.5{width:calc(var(--spacing)*2.5)}.w-3{width:calc(var(--spacing)*3)}.w-3\\.5{width:calc(var(--spacing)*3.5)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-6{width:calc(var(--spacing)*6)}.w-7{width:calc(var(--spacing)*7)}.w-8{width:calc(var(--spacing)*8)}.w-9{width:calc(var(--spacing)*9)}.w-10{width:calc(var(--spacing)*10)}.w-12{width:calc(var(--spacing)*12)}.w-14{width:calc(var(--spacing)*14)}.w-20{width:calc(var(--spacing)*20)}.w-48{width:calc(var(--spacing)*48)}.w-64{width:calc(var(--spacing)*64)}.w-96{width:calc(var(--spacing)*96)}.w-\\[320px\\]{width:320px}.w-\\[360px\\]{width:360px}.w-\\[640px\\]{width:640px}.w-\\[960px\\]{width:960px}.w-full{width:100%}.max-w-4xl{max-width:var(--container-4xl)}.max-w-\\[80\\%\\]{max-width:80%}.max-w-full{max-width:100%}.max-w-sm{max-width:var(--container-sm)}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-\\[60px\\]{min-width:60px}.flex-1{flex:1}.shrink-0{flex-shrink:0}.-translate-x-1\\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-\\[135deg\\]{rotate:135deg}.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)}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-0\\.5{gap:calc(var(--spacing)*.5)}.gap-1{gap:calc(var(--spacing)*1)}.gap-1\\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-6{gap:calc(var(--spacing)*6)}: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)))}:where(.space-y-1\\.5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*1.5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*1.5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)))}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.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-br-md{border-bottom-right-radius:var(--radius-md)}.rounded-bl-md{border-bottom-left-radius:var(--radius-md)}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-none{--tw-border-style:none;border-style:none}.border-amber-200{border-color:var(--color-amber-200)}.border-amber-700\\/50{border-color:#b7500080}@supports (color:color-mix(in lab,red,red)){.border-amber-700\\/50{border-color:color-mix(in oklab,var(--color-amber-700)50%,transparent)}}.border-blue-200{border-color:var(--color-blue-200)}.border-gray-100{border-color:var(--color-gray-100)}.border-gray-200{border-color:var(--color-gray-200)}.border-gray-200\\/80{border-color:#e5e7ebcc}@supports (color:color-mix(in lab,red,red)){.border-gray-200\\/80{border-color:color-mix(in oklab,var(--color-gray-200)80%,transparent)}}.border-gray-700{border-color:var(--color-gray-700)}.border-gray-700\\/50{border-color:#36415380}@supports (color:color-mix(in lab,red,red)){.border-gray-700\\/50{border-color:color-mix(in oklab,var(--color-gray-700)50%,transparent)}}.border-gray-800{border-color:var(--color-gray-800)}.border-gray-800\\/50{border-color:#1e293980}@supports (color:color-mix(in lab,red,red)){.border-gray-800\\/50{border-color:color-mix(in oklab,var(--color-gray-800)50%,transparent)}}.border-gray-900{border-color:var(--color-gray-900)}.border-purple-200{border-color:var(--color-purple-200)}.border-red-100{border-color:var(--color-red-100)}.border-red-900\\/30{border-color:#82181a4d}@supports (color:color-mix(in lab,red,red)){.border-red-900\\/30{border-color:color-mix(in oklab,var(--color-red-900)30%,transparent)}}.border-red-900\\/50{border-color:#82181a80}@supports (color:color-mix(in lab,red,red)){.border-red-900\\/50{border-color:color-mix(in oklab,var(--color-red-900)50%,transparent)}}.border-transparent{border-color:#0000}.border-white{border-color:var(--color-white)}.border-yellow-200{border-color:var(--color-yellow-200)}.bg-amber-50{background-color:var(--color-amber-50)}.bg-amber-100{background-color:var(--color-amber-100)}.bg-amber-400{background-color:var(--color-amber-400)}.bg-amber-500{background-color:var(--color-amber-500)}.bg-amber-600{background-color:var(--color-amber-600)}.bg-amber-800\\/50{background-color:#953d0080}@supports (color:color-mix(in lab,red,red)){.bg-amber-800\\/50{background-color:color-mix(in oklab,var(--color-amber-800)50%,transparent)}}.bg-amber-900\\/30{background-color:#7b33064d}@supports (color:color-mix(in lab,red,red)){.bg-amber-900\\/30{background-color:color-mix(in oklab,var(--color-amber-900)30%,transparent)}}.bg-black\\/60{background-color:#0009}@supports (color:color-mix(in lab,red,red)){.bg-black\\/60{background-color:color-mix(in oklab,var(--color-black)60%,transparent)}}.bg-black\\/70{background-color:#000000b3}@supports (color:color-mix(in lab,red,red)){.bg-black\\/70{background-color:color-mix(in oklab,var(--color-black)70%,transparent)}}.bg-black\\/80{background-color:#000c}@supports (color:color-mix(in lab,red,red)){.bg-black\\/80{background-color:color-mix(in oklab,var(--color-black)80%,transparent)}}.bg-black\\/90{background-color:#000000e6}@supports (color:color-mix(in lab,red,red)){.bg-black\\/90{background-color:color-mix(in oklab,var(--color-black)90%,transparent)}}.bg-blue-50{background-color:var(--color-blue-50)}.bg-blue-100{background-color:var(--color-blue-100)}.bg-blue-500{background-color:var(--color-blue-500)}.bg-emerald-100{background-color:var(--color-emerald-100)}.bg-emerald-400{background-color:var(--color-emerald-400)}.bg-emerald-500{background-color:var(--color-emerald-500)}.bg-emerald-600{background-color:var(--color-emerald-600)}.bg-gray-50{background-color:var(--color-gray-50)}.bg-gray-50\\/30{background-color:#f9fafb4d}@supports (color:color-mix(in lab,red,red)){.bg-gray-50\\/30{background-color:color-mix(in oklab,var(--color-gray-50)30%,transparent)}}.bg-gray-100{background-color:var(--color-gray-100)}.bg-gray-100\\/80{background-color:#f3f4f6cc}@supports (color:color-mix(in lab,red,red)){.bg-gray-100\\/80{background-color:color-mix(in oklab,var(--color-gray-100)80%,transparent)}}.bg-gray-200{background-color:var(--color-gray-200)}.bg-gray-700{background-color:var(--color-gray-700)}.bg-gray-800{background-color:var(--color-gray-800)}.bg-gray-800\\/50{background-color:#1e293980}@supports (color:color-mix(in lab,red,red)){.bg-gray-800\\/50{background-color:color-mix(in oklab,var(--color-gray-800)50%,transparent)}}.bg-gray-800\\/80{background-color:#1e2939cc}@supports (color:color-mix(in lab,red,red)){.bg-gray-800\\/80{background-color:color-mix(in oklab,var(--color-gray-800)80%,transparent)}}.bg-gray-900{background-color:var(--color-gray-900)}.bg-gray-900\\/30{background-color:#1018284d}@supports (color:color-mix(in lab,red,red)){.bg-gray-900\\/30{background-color:color-mix(in oklab,var(--color-gray-900)30%,transparent)}}.bg-gray-900\\/90{background-color:#101828e6}@supports (color:color-mix(in lab,red,red)){.bg-gray-900\\/90{background-color:color-mix(in oklab,var(--color-gray-900)90%,transparent)}}.bg-gray-950{background-color:var(--color-gray-950)}.bg-gray-950\\/80{background-color:#030712cc}@supports (color:color-mix(in lab,red,red)){.bg-gray-950\\/80{background-color:color-mix(in oklab,var(--color-gray-950)80%,transparent)}}.bg-gray-950\\/90{background-color:#030712e6}@supports (color:color-mix(in lab,red,red)){.bg-gray-950\\/90{background-color:color-mix(in oklab,var(--color-gray-950)90%,transparent)}}.bg-gray-950\\/95{background-color:#030712f2}@supports (color:color-mix(in lab,red,red)){.bg-gray-950\\/95{background-color:color-mix(in oklab,var(--color-gray-950)95%,transparent)}}.bg-green-50{background-color:var(--color-green-50)}.bg-green-100{background-color:var(--color-green-100)}.bg-indigo-100{background-color:var(--color-indigo-100)}.bg-indigo-300{background-color:var(--color-indigo-300)}.bg-indigo-400{background-color:var(--color-indigo-400)}.bg-indigo-500{background-color:var(--color-indigo-500)}.bg-indigo-600{background-color:var(--color-indigo-600)}.bg-indigo-900{background-color:var(--color-indigo-900)}.bg-indigo-900\\/30{background-color:#312c854d}@supports (color:color-mix(in lab,red,red)){.bg-indigo-900\\/30{background-color:color-mix(in oklab,var(--color-indigo-900)30%,transparent)}}.bg-purple-50{background-color:var(--color-purple-50)}.bg-purple-300{background-color:var(--color-purple-300)}.bg-purple-500{background-color:var(--color-purple-500)}.bg-purple-900{background-color:var(--color-purple-900)}.bg-red-50{background-color:var(--color-red-50)}.bg-red-500{background-color:var(--color-red-500)}.bg-red-500\\/10{background-color:#fb2c361a}@supports (color:color-mix(in lab,red,red)){.bg-red-500\\/10{background-color:color-mix(in oklab,var(--color-red-500)10%,transparent)}}.bg-red-950\\/30{background-color:#4608094d}@supports (color:color-mix(in lab,red,red)){.bg-red-950\\/30{background-color:color-mix(in oklab,var(--color-red-950)30%,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-white\\/20{background-color:#fff3}@supports (color:color-mix(in lab,red,red)){.bg-white\\/20{background-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.bg-white\\/80{background-color:#fffc}@supports (color:color-mix(in lab,red,red)){.bg-white\\/80{background-color:color-mix(in oklab,var(--color-white)80%,transparent)}}.bg-white\\/90{background-color:#ffffffe6}@supports (color:color-mix(in lab,red,red)){.bg-white\\/90{background-color:color-mix(in oklab,var(--color-white)90%,transparent)}}.bg-white\\/95{background-color:#fffffff2}@supports (color:color-mix(in lab,red,red)){.bg-white\\/95{background-color:color-mix(in oklab,var(--color-white)95%,transparent)}}.bg-yellow-50{background-color:var(--color-yellow-50)}.bg-yellow-100{background-color:var(--color-yellow-100)}.bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.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))}.from-black\\/60{--tw-gradient-from:#0009}@supports (color:color-mix(in lab,red,red)){.from-black\\/60{--tw-gradient-from:color-mix(in oklab,var(--color-black)60%,transparent)}}.from-black\\/60{--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-blue-50{--tw-gradient-from:var(--color-blue-50);--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-blue-500{--tw-gradient-from:var(--color-blue-500);--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-50{--tw-gradient-from:var(--color-gray-50);--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-100{--tw-gradient-from:var(--color-gray-100);--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-800{--tw-gradient-from:var(--color-gray-800);--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-900{--tw-gradient-from:var(--color-gray-900);--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-indigo-50{--tw-gradient-from:var(--color-indigo-50);--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-indigo-400{--tw-gradient-from:var(--color-indigo-400);--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-indigo-500{--tw-gradient-from:var(--color-indigo-500);--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-indigo-900\\/20{--tw-gradient-from:#312c8533}@supports (color:color-mix(in lab,red,red)){.from-indigo-900\\/20{--tw-gradient-from:color-mix(in oklab,var(--color-indigo-900)20%,transparent)}}.from-indigo-900\\/20{--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-white\\/60{--tw-gradient-from:#fff9}@supports (color:color-mix(in lab,red,red)){.from-white\\/60{--tw-gradient-from:color-mix(in oklab,var(--color-white)60%,transparent)}}.from-white\\/60{--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-indigo-50{--tw-gradient-via:var(--color-indigo-50);--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-purple-400{--tw-gradient-via:var(--color-purple-400);--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-purple-500{--tw-gradient-via:var(--color-purple-500);--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-black{--tw-gradient-to:var(--color-black);--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-gray-50{--tw-gradient-to:var(--color-gray-50);--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-gray-950{--tw-gradient-to:var(--color-gray-950);--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-pink-400{--tw-gradient-to:var(--color-pink-400);--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-pink-500{--tw-gradient-to:var(--color-pink-500);--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-purple-50{--tw-gradient-to:var(--color-purple-50);--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-purple-400{--tw-gradient-to:var(--color-purple-400);--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-purple-500{--tw-gradient-to:var(--color-purple-500);--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-purple-900\\/20{--tw-gradient-to:#59168b33}@supports (color:color-mix(in lab,red,red)){.to-purple-900\\/20{--tw-gradient-to:color-mix(in oklab,var(--color-purple-900)20%,transparent)}}.to-purple-900\\/20{--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))}.to-white{--tw-gradient-to:var(--color-white);--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))}.object-contain{-o-object-fit:contain;object-fit:contain}.object-cover{-o-object-fit:cover;object-fit:cover}.p-1{padding:calc(var(--spacing)*1)}.p-1\\.5{padding:calc(var(--spacing)*1.5)}.p-2{padding:calc(var(--spacing)*2)}.p-3{padding:calc(var(--spacing)*3)}.p-4{padding:calc(var(--spacing)*4)}.p-6{padding:calc(var(--spacing)*6)}.p-8{padding:calc(var(--spacing)*8)}.px-1{padding-inline:calc(var(--spacing)*1)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-2\\.5{padding-inline:calc(var(--spacing)*2.5)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-3\\.5{padding-inline:calc(var(--spacing)*3.5)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-5{padding-inline:calc(var(--spacing)*5)}.px-8{padding-inline:calc(var(--spacing)*8)}.py-0\\.5{padding-block:calc(var(--spacing)*.5)}.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-2\\.5{padding-block:calc(var(--spacing)*2.5)}.py-3{padding-block:calc(var(--spacing)*3)}.py-4{padding-block:calc(var(--spacing)*4)}.py-6{padding-block:calc(var(--spacing)*6)}.py-12{padding-block:calc(var(--spacing)*12)}.pt-0{padding-top:calc(var(--spacing)*0)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.text-center{text-align:center}.text-left{text-align:left}.font-mono{font-family:var(--font-mono)}.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-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\\[9px\\]{font-size:9px}.text-\\[10px\\]{font-size:10px}.text-\\[11px\\]{font-size:11px}.text-\\[13px\\]{font-size:13px}.leading-none{--tw-leading:1;line-height:1}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.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)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.text-amber-200{color:var(--color-amber-200)}.text-amber-400{color:var(--color-amber-400)}.text-amber-600{color:var(--color-amber-600)}.text-amber-800{color:var(--color-amber-800)}.text-blue-600{color:var(--color-blue-600)}.text-blue-800{color:var(--color-blue-800)}.text-emerald-600{color:var(--color-emerald-600)}.text-gray-100{color:var(--color-gray-100)}.text-gray-300{color:var(--color-gray-300)}.text-gray-400{color:var(--color-gray-400)}.text-gray-500{color:var(--color-gray-500)}.text-gray-600{color:var(--color-gray-600)}.text-gray-700{color:var(--color-gray-700)}.text-gray-800{color:var(--color-gray-800)}.text-gray-900{color:var(--color-gray-900)}.text-green-600{color:var(--color-green-600)}.text-green-800{color:var(--color-green-800)}.text-indigo-400{color:var(--color-indigo-400)}.text-indigo-500{color:var(--color-indigo-500)}.text-indigo-600{color:var(--color-indigo-600)}.text-purple-600{color:var(--color-purple-600)}.text-purple-800{color:var(--color-purple-800)}.text-red-200{color:var(--color-red-200)}.text-red-300{color:var(--color-red-300)}.text-red-400{color:var(--color-red-400)}.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-red-900{color:var(--color-red-900)}.text-white{color:var(--color-white)}.text-yellow-800{color:var(--color-yellow-800)}.uppercase{text-transform:uppercase}.underline-offset-4{text-underline-offset:4px}.opacity-20{opacity:.2}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-70{opacity:.7}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px 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-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_8px_30px_rgb\\(0\\,0\\,0\\,0\\.3\\)\\]{--tw-shadow:0 8px 30px var(--tw-shadow-color,#0000004d);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_8px_30px_rgb\\(0\\,0\\,0\\,0\\.12\\)\\]{--tw-shadow:0 8px 30px var(--tw-shadow-color,#0000001f);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-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px 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)}.ring{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-2{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-4{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(4px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-gray-900{--tw-ring-color:var(--color-gray-900)}.ring-white{--tw-ring-color:var(--color-white)}.ring-white\\/20{--tw-ring-color:#fff3}@supports (color:color-mix(in lab,red,red)){.ring-white\\/20{--tw-ring-color:color-mix(in oklab,var(--color-white)20%,transparent)}}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.blur-3xl{--tw-blur:blur(var(--blur-3xl));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,)}.grayscale{--tw-grayscale:grayscale(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,)}.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-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-shadow{transition-property:box-shadow;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-200{--tw-duration:.2s;transition-duration:.2s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.outline-none{--tw-outline-style:none;outline-style:none}@media(hover:hover){.group-hover\\:scale-105:is(:where(.group):hover *){--tw-scale-x:105%;--tw-scale-y:105%;--tw-scale-z:105%;scale:var(--tw-scale-x)var(--tw-scale-y)}}.file\\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\\:bg-transparent::file-selector-button{background-color:#0000}.file\\:text-sm::file-selector-button{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.file\\:font-medium::file-selector-button{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.placeholder\\:text-gray-400::-moz-placeholder{color:var(--color-gray-400)}.placeholder\\:text-gray-400::placeholder{color:var(--color-gray-400)}.placeholder\\:text-gray-500::-moz-placeholder{color:var(--color-gray-500)}.placeholder\\:text-gray-500::placeholder{color:var(--color-gray-500)}.focus-within\\:border-indigo-500\\/50:focus-within{border-color:#625fff80}@supports (color:color-mix(in lab,red,red)){.focus-within\\:border-indigo-500\\/50:focus-within{border-color:color-mix(in oklab,var(--color-indigo-500)50%,transparent)}}.focus-within\\:bg-white:focus-within{background-color:var(--color-white)}@media(hover:hover){.hover\\:-translate-y-0\\.5:hover{--tw-translate-y:calc(var(--spacing)*-.5);translate:var(--tw-translate-x)var(--tw-translate-y)}.hover\\:border-gray-300:hover{border-color:var(--color-gray-300)}.hover\\:border-gray-600:hover{border-color:var(--color-gray-600)}.hover\\:bg-blue-100:hover{background-color:var(--color-blue-100)}.hover\\:bg-blue-200:hover{background-color:var(--color-blue-200)}.hover\\:bg-gray-50:hover{background-color:var(--color-gray-50)}.hover\\:bg-gray-200:hover{background-color:var(--color-gray-200)}.hover\\:bg-gray-700:hover{background-color:var(--color-gray-700)}.hover\\:bg-gray-800:hover{background-color:var(--color-gray-800)}.hover\\:bg-green-200:hover{background-color:var(--color-green-200)}.hover\\:bg-indigo-600:hover{background-color:var(--color-indigo-600)}.hover\\:bg-indigo-700:hover{background-color:var(--color-indigo-700)}.hover\\:bg-red-600:hover{background-color:var(--color-red-600)}.hover\\:text-blue-800:hover{color:var(--color-blue-800)}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:opacity-90:hover{opacity:.9}.hover\\:opacity-100:hover{opacity:1}.hover\\:shadow-\\[0_8px_30px_rgb\\(0\\,0\\,0\\,0\\.4\\)\\]:hover{--tw-shadow:0 8px 30px var(--tw-shadow-color,#0006);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\\:shadow-\\[0_8px_30px_rgb\\(0\\,0\\,0\\,0\\.16\\)\\]:hover{--tw-shadow:0 8px 30px var(--tw-shadow-color,#00000029);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\\:shadow-lg:hover{--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)}.hover\\:shadow-md:hover{--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)}.hover\\:shadow-indigo-500\\/25:hover{--tw-shadow-color:#625fff40}@supports (color:color-mix(in lab,red,red)){.hover\\:shadow-indigo-500\\/25:hover{--tw-shadow-color:color-mix(in oklab,color-mix(in oklab,var(--color-indigo-500)25%,transparent)var(--tw-shadow-alpha),transparent)}}}.focus\\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus\\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\\:ring-0:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\\:ring-1:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.focus-visible\\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.active\\:scale-\\[0\\.98\\]:active{scale:.98}.disabled\\:pointer-events-none:disabled{pointer-events:none}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:opacity-40:disabled{opacity:.4}.disabled\\:opacity-50:disabled{opacity:.5}@media(min-width:40rem){.sm\\:text-left{text-align:left}}@media(min-width:48rem){.md\\:inset-16{inset:calc(var(--spacing)*16)}.md\\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(min-width:64rem){.lg\\:inset-20{inset:calc(var(--spacing)*20)}}@media(prefers-color-scheme:dark){.dark\\:bg-emerald-500\\/20{background-color:#00bb7f33}@supports (color:color-mix(in lab,red,red)){.dark\\:bg-emerald-500\\/20{background-color:color-mix(in oklab,var(--color-emerald-500)20%,transparent)}}.dark\\:text-emerald-400{color:var(--color-emerald-400)}}}.aria-assistant-container{--aria-background:0 0% 100%;--aria-foreground:222 47% 11%;--aria-card:0 0% 100%;--aria-card-foreground:222 47% 11%;--aria-popover:0 0% 100%;--aria-popover-foreground:222 47% 11%;--aria-primary:221 83% 53%;--aria-primary-foreground:0 0% 100%;--aria-secondary:210 40% 96%;--aria-secondary-foreground:215 16% 47%;--aria-muted:210 40% 96%;--aria-muted-foreground:215 16% 47%;--aria-accent:210 40% 96%;--aria-accent-foreground:222 47% 11%;--aria-destructive:0 84% 60%;--aria-destructive-foreground:0 0% 100%;--aria-success:142 72% 29%;--aria-success-foreground:0 0% 100%;--aria-border:214 32% 91%;--aria-input:214 32% 91%;--aria-ring:221 83% 53%;--aria-radius:.5rem;--aria-gradient-from:221 83% 53%;--aria-gradient-to:221 83% 53%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;isolation:isolate;color:hsl(var(--aria-foreground));--background:var(--aria-background);--foreground:var(--aria-foreground);--card:var(--aria-card);--card-foreground:var(--aria-card-foreground);--primary:var(--aria-primary);--primary-foreground:var(--aria-primary-foreground);--secondary:var(--aria-secondary);--secondary-foreground:var(--aria-secondary-foreground);--muted:var(--aria-muted);--muted-foreground:var(--aria-muted-foreground);--accent:var(--aria-accent);--accent-foreground:var(--aria-accent-foreground);--destructive:var(--aria-destructive);--destructive-foreground:var(--aria-destructive-foreground);--success:var(--aria-success);--success-foreground:var(--aria-success-foreground);--border:var(--aria-border);--input:var(--aria-input);--ring:var(--aria-ring);--radius:var(--aria-radius);font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;font-size:14px;line-height:1.6}.aria-assistant-container *,.aria-assistant-container :before,.aria-assistant-container :after{box-sizing:border-box}.aria-assistant-container.aria-dark{--aria-background:222 47% 4%;--aria-foreground:210 40% 98%;--aria-card:222 47% 6%;--aria-card-foreground:210 40% 98%;--aria-popover:222 47% 6%;--aria-popover-foreground:210 40% 98%;--aria-primary:217 91% 60%;--aria-primary-foreground:0 0% 100%;--aria-secondary:217 33% 17%;--aria-secondary-foreground:210 40% 98%;--aria-muted:217 33% 17%;--aria-muted-foreground:215 20% 65%;--aria-accent:217 33% 17%;--aria-accent-foreground:210 40% 98%;--aria-destructive:0 84% 60%;--aria-destructive-foreground:0 0% 100%;--aria-success:142 71% 45%;--aria-success-foreground:0 0% 100%;--aria-border:217 33% 17%;--aria-input:217 33% 17%;--aria-ring:217 91% 60%;--aria-gradient-from:217 91% 60%;--aria-gradient-to:217 91% 60%;--background:var(--aria-background);--foreground:var(--aria-foreground);--card:var(--aria-card);--card-foreground:var(--aria-card-foreground);--primary:var(--aria-primary);--primary-foreground:var(--aria-primary-foreground);--secondary:var(--aria-secondary);--secondary-foreground:var(--aria-secondary-foreground);--muted:var(--aria-muted);--muted-foreground:var(--aria-muted-foreground);--accent:var(--aria-accent);--accent-foreground:var(--aria-accent-foreground);--destructive:var(--aria-destructive);--destructive-foreground:var(--aria-destructive-foreground);--success:var(--aria-success);--success-foreground:var(--aria-success-foreground);--border:var(--aria-border);--input:var(--aria-input);--ring:var(--aria-ring)}@keyframes aria-fade-in{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}@keyframes aria-scale-in{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}@keyframes aria-slide-up{0%{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}@keyframes aria-pulse-ring{0%,to{box-shadow:0 0 hsl(var(--aria-primary)/.4)}50%{box-shadow:0 0 0 8px hsl(var(--aria-primary)/0)}}@keyframes aria-gradient-shift{0%,to{background-position:0%}50%{background-position:100%}}@keyframes aria-pulse-dot{0%{opacity:.5;transform:scale(.95)}50%{opacity:1;transform:scale(1.05)}to{opacity:.5;transform:scale(.95)}}@keyframes aria-loading-bounce{0%,to{opacity:.5;transform:scale(.8)}50%{opacity:1;transform:scale(1.2)}}.aria-assistant-container .aria-animate-pulse-dot{animation:2s ease-in-out infinite aria-pulse-dot}.aria-assistant-container .aria-animate-fade-in{animation:.3s ease-out forwards aria-fade-in}.aria-assistant-container .aria-animate-scale-in{animation:.2s ease-out forwards aria-scale-in}.aria-assistant-container .aria-animate-slide-up{animation:.4s ease-out forwards aria-slide-up}.aria-assistant-container .aria-animate-pulse-ring{animation:2s ease-in-out infinite aria-pulse-ring}.aria-assistant-container .aria-glass{background:hsl(var(--aria-background)/.8);-webkit-backdrop-filter:blur(12px)saturate(180%)}.aria-assistant-container.aria-dark .aria-glass{background:hsl(var(--aria-background)/.75);-webkit-backdrop-filter:blur(16px)saturate(180%)}.aria-assistant-container .aria-gradient-text{background:linear-gradient(135deg,hsl(var(--aria-gradient-from)),hsl(var(--aria-gradient-to)));-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text}.aria-assistant-container .aria-gradient-bg{background:linear-gradient(135deg,hsl(var(--aria-gradient-from)),hsl(var(--aria-gradient-to)))}.aria-assistant-container ::-webkit-scrollbar{width:6px;height:6px}.aria-assistant-container ::-webkit-scrollbar-track{background:0 0}.aria-assistant-container ::-webkit-scrollbar-thumb{background:hsl(var(--aria-border));border-radius:3px}.aria-assistant-container ::-webkit-scrollbar-thumb:hover{background:hsl(var(--aria-muted-foreground)/.5)}.aria-assistant-container .aria-focus-ring:focus-visible{box-shadow:0 0 0 2px hsl(var(--aria-ring)/.2);outline:none}.aria-assistant-container .scrollbar-hide::-webkit-scrollbar{display:none}.aria-assistant-container .scrollbar-hide{-ms-overflow-style:none;scrollbar-width:none}@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-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-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{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-outline-style{syntax:"*";inherits:false;initial-value:solid}@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}@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}@keyframes spin{to{transform:rotate(360deg)}}@keyframes pulse{50%{opacity:.5}}';
|
|
1404
1404
|
function Je() {
|
|
1405
|
-
return
|
|
1405
|
+
return Cr;
|
|
1406
1406
|
}
|
|
1407
1407
|
function Xe(r) {
|
|
1408
1408
|
var e, t, o = "";
|
|
@@ -1413,40 +1413,40 @@ function Xe(r) {
|
|
|
1413
1413
|
} else for (t in r) r[t] && (o && (o += " "), o += t);
|
|
1414
1414
|
return o;
|
|
1415
1415
|
}
|
|
1416
|
-
function
|
|
1416
|
+
function Ir() {
|
|
1417
1417
|
for (var r, e, t = 0, o = "", a = arguments.length; t < a; t++) (r = arguments[t]) && (e = Xe(r)) && (o && (o += " "), o += e);
|
|
1418
1418
|
return o;
|
|
1419
1419
|
}
|
|
1420
|
-
const
|
|
1420
|
+
const Rr = (r, e) => {
|
|
1421
1421
|
const t = new Array(r.length + e.length);
|
|
1422
1422
|
for (let o = 0; o < r.length; o++)
|
|
1423
1423
|
t[o] = r[o];
|
|
1424
1424
|
for (let o = 0; o < e.length; o++)
|
|
1425
1425
|
t[r.length + o] = e[o];
|
|
1426
1426
|
return t;
|
|
1427
|
-
},
|
|
1427
|
+
}, Nr = (r, e) => ({
|
|
1428
1428
|
classGroupId: r,
|
|
1429
1429
|
validator: e
|
|
1430
1430
|
}), Ze = (r = /* @__PURE__ */ new Map(), e = null, t) => ({
|
|
1431
1431
|
nextPart: r,
|
|
1432
1432
|
validators: e,
|
|
1433
1433
|
classGroupId: t
|
|
1434
|
-
}),
|
|
1435
|
-
const e =
|
|
1434
|
+
}), Me = "-", _e = [], Tr = "arbitrary..", zr = (r) => {
|
|
1435
|
+
const e = Hr(r), {
|
|
1436
1436
|
conflictingClassGroups: t,
|
|
1437
1437
|
conflictingClassGroupModifiers: o
|
|
1438
1438
|
} = r;
|
|
1439
1439
|
return {
|
|
1440
1440
|
getClassGroupId: (i) => {
|
|
1441
1441
|
if (i.startsWith("[") && i.endsWith("]"))
|
|
1442
|
-
return
|
|
1443
|
-
const b = i.split(
|
|
1442
|
+
return Pr(i);
|
|
1443
|
+
const b = i.split(Me), d = b[0] === "" && b.length > 1 ? 1 : 0;
|
|
1444
1444
|
return Ye(b, d, e);
|
|
1445
1445
|
},
|
|
1446
1446
|
getConflictingClassGroupIds: (i, b) => {
|
|
1447
1447
|
if (b) {
|
|
1448
|
-
const d = o[i],
|
|
1449
|
-
return d ?
|
|
1448
|
+
const d = o[i], f = t[i];
|
|
1449
|
+
return d ? f ? Rr(f, d) : d : f || _e;
|
|
1450
1450
|
}
|
|
1451
1451
|
return t[i] || _e;
|
|
1452
1452
|
}
|
|
@@ -1456,75 +1456,75 @@ const Nr = (r, e) => {
|
|
|
1456
1456
|
return t.classGroupId;
|
|
1457
1457
|
const a = r[e], l = t.nextPart.get(a);
|
|
1458
1458
|
if (l) {
|
|
1459
|
-
const
|
|
1460
|
-
if (
|
|
1459
|
+
const f = Ye(r, e + 1, l);
|
|
1460
|
+
if (f) return f;
|
|
1461
1461
|
}
|
|
1462
1462
|
const i = t.validators;
|
|
1463
1463
|
if (i === null)
|
|
1464
1464
|
return;
|
|
1465
|
-
const b = e === 0 ? r.join(
|
|
1466
|
-
for (let
|
|
1467
|
-
const
|
|
1468
|
-
if (
|
|
1469
|
-
return
|
|
1465
|
+
const b = e === 0 ? r.join(Me) : r.slice(e).join(Me), d = i.length;
|
|
1466
|
+
for (let f = 0; f < d; f++) {
|
|
1467
|
+
const p = i[f];
|
|
1468
|
+
if (p.validator(b))
|
|
1469
|
+
return p.classGroupId;
|
|
1470
1470
|
}
|
|
1471
|
-
},
|
|
1471
|
+
}, Pr = (r) => r.slice(1, -1).indexOf(":") === -1 ? void 0 : (() => {
|
|
1472
1472
|
const e = r.slice(1, -1), t = e.indexOf(":"), o = e.slice(0, t);
|
|
1473
|
-
return o ?
|
|
1474
|
-
})(),
|
|
1473
|
+
return o ? Tr + o : void 0;
|
|
1474
|
+
})(), Hr = (r) => {
|
|
1475
1475
|
const {
|
|
1476
1476
|
theme: e,
|
|
1477
1477
|
classGroups: t
|
|
1478
1478
|
} = r;
|
|
1479
|
-
return
|
|
1480
|
-
},
|
|
1479
|
+
return Vr(t, e);
|
|
1480
|
+
}, Vr = (r, e) => {
|
|
1481
1481
|
const t = Ze();
|
|
1482
1482
|
for (const o in r) {
|
|
1483
1483
|
const a = r[o];
|
|
1484
|
-
|
|
1484
|
+
Pe(a, t, o, e);
|
|
1485
1485
|
}
|
|
1486
1486
|
return t;
|
|
1487
|
-
},
|
|
1487
|
+
}, Pe = (r, e, t, o) => {
|
|
1488
1488
|
const a = r.length;
|
|
1489
1489
|
for (let l = 0; l < a; l++) {
|
|
1490
1490
|
const i = r[l];
|
|
1491
|
-
|
|
1491
|
+
Dr(i, e, t, o);
|
|
1492
1492
|
}
|
|
1493
|
-
},
|
|
1493
|
+
}, Dr = (r, e, t, o) => {
|
|
1494
1494
|
if (typeof r == "string") {
|
|
1495
|
-
|
|
1495
|
+
jr(r, e, t);
|
|
1496
1496
|
return;
|
|
1497
1497
|
}
|
|
1498
1498
|
if (typeof r == "function") {
|
|
1499
|
-
|
|
1499
|
+
Br(r, e, t, o);
|
|
1500
1500
|
return;
|
|
1501
1501
|
}
|
|
1502
|
-
|
|
1503
|
-
},
|
|
1502
|
+
Or(r, e, t, o);
|
|
1503
|
+
}, jr = (r, e, t) => {
|
|
1504
1504
|
const o = r === "" ? e : $e(e, r);
|
|
1505
1505
|
o.classGroupId = t;
|
|
1506
|
-
},
|
|
1507
|
-
if (
|
|
1508
|
-
|
|
1506
|
+
}, Br = (r, e, t, o) => {
|
|
1507
|
+
if (Wr(r)) {
|
|
1508
|
+
Pe(r(o), e, t, o);
|
|
1509
1509
|
return;
|
|
1510
1510
|
}
|
|
1511
|
-
e.validators === null && (e.validators = []), e.validators.push(
|
|
1512
|
-
},
|
|
1511
|
+
e.validators === null && (e.validators = []), e.validators.push(Nr(t, r));
|
|
1512
|
+
}, Or = (r, e, t, o) => {
|
|
1513
1513
|
const a = Object.entries(r), l = a.length;
|
|
1514
1514
|
for (let i = 0; i < l; i++) {
|
|
1515
1515
|
const [b, d] = a[i];
|
|
1516
|
-
|
|
1516
|
+
Pe(d, $e(e, b), t, o);
|
|
1517
1517
|
}
|
|
1518
1518
|
}, $e = (r, e) => {
|
|
1519
1519
|
let t = r;
|
|
1520
|
-
const o = e.split(
|
|
1520
|
+
const o = e.split(Me), a = o.length;
|
|
1521
1521
|
for (let l = 0; l < a; l++) {
|
|
1522
1522
|
const i = o[l];
|
|
1523
1523
|
let b = t.nextPart.get(i);
|
|
1524
1524
|
b || (b = Ze(), t.nextPart.set(i, b)), t = b;
|
|
1525
1525
|
}
|
|
1526
1526
|
return t;
|
|
1527
|
-
},
|
|
1527
|
+
}, Wr = (r) => "isThemeGetter" in r && r.isThemeGetter === !0, Fr = (r) => {
|
|
1528
1528
|
if (r < 1)
|
|
1529
1529
|
return {
|
|
1530
1530
|
get: () => {
|
|
@@ -1548,50 +1548,50 @@ const Nr = (r, e) => {
|
|
|
1548
1548
|
l in t ? t[l] = i : a(l, i);
|
|
1549
1549
|
}
|
|
1550
1550
|
};
|
|
1551
|
-
},
|
|
1551
|
+
}, Ne = "!", Le = ":", Ur = [], Ge = (r, e, t, o, a) => ({
|
|
1552
1552
|
modifiers: r,
|
|
1553
1553
|
hasImportantModifier: e,
|
|
1554
1554
|
baseClassName: t,
|
|
1555
1555
|
maybePostfixModifierPosition: o,
|
|
1556
1556
|
isExternal: a
|
|
1557
|
-
}),
|
|
1557
|
+
}), _r = (r) => {
|
|
1558
1558
|
const {
|
|
1559
1559
|
prefix: e,
|
|
1560
1560
|
experimentalParseClassName: t
|
|
1561
1561
|
} = r;
|
|
1562
1562
|
let o = (a) => {
|
|
1563
1563
|
const l = [];
|
|
1564
|
-
let i = 0, b = 0, d = 0,
|
|
1565
|
-
const
|
|
1566
|
-
for (let
|
|
1567
|
-
const
|
|
1564
|
+
let i = 0, b = 0, d = 0, f;
|
|
1565
|
+
const p = a.length;
|
|
1566
|
+
for (let B = 0; B < p; B++) {
|
|
1567
|
+
const H = a[B];
|
|
1568
1568
|
if (i === 0 && b === 0) {
|
|
1569
|
-
if (
|
|
1570
|
-
l.push(a.slice(d,
|
|
1569
|
+
if (H === Le) {
|
|
1570
|
+
l.push(a.slice(d, B)), d = B + 1;
|
|
1571
1571
|
continue;
|
|
1572
1572
|
}
|
|
1573
|
-
if (
|
|
1574
|
-
|
|
1573
|
+
if (H === "/") {
|
|
1574
|
+
f = B;
|
|
1575
1575
|
continue;
|
|
1576
1576
|
}
|
|
1577
1577
|
}
|
|
1578
|
-
|
|
1578
|
+
H === "[" ? i++ : H === "]" ? i-- : H === "(" ? b++ : H === ")" && b--;
|
|
1579
1579
|
}
|
|
1580
1580
|
const A = l.length === 0 ? a : a.slice(d);
|
|
1581
|
-
let
|
|
1582
|
-
A.endsWith(
|
|
1581
|
+
let I = A, P = !1;
|
|
1582
|
+
A.endsWith(Ne) ? (I = A.slice(0, -1), P = !0) : (
|
|
1583
1583
|
/**
|
|
1584
1584
|
* In Tailwind CSS v3 the important modifier was at the start of the base class name. This is still supported for legacy reasons.
|
|
1585
1585
|
* @see https://github.com/dcastil/tailwind-merge/issues/513#issuecomment-2614029864
|
|
1586
1586
|
*/
|
|
1587
|
-
A.startsWith(
|
|
1587
|
+
A.startsWith(Ne) && (I = A.slice(1), P = !0)
|
|
1588
1588
|
);
|
|
1589
|
-
const
|
|
1590
|
-
return Ge(l,
|
|
1589
|
+
const j = f && f > d ? f - d : void 0;
|
|
1590
|
+
return Ge(l, P, I, j);
|
|
1591
1591
|
};
|
|
1592
1592
|
if (e) {
|
|
1593
1593
|
const a = e + Le, l = o;
|
|
1594
|
-
o = (i) => i.startsWith(a) ? l(i.slice(a.length)) : Ge(
|
|
1594
|
+
o = (i) => i.startsWith(a) ? l(i.slice(a.length)) : Ge(Ur, !1, i, void 0, !0);
|
|
1595
1595
|
}
|
|
1596
1596
|
if (t) {
|
|
1597
1597
|
const a = o;
|
|
@@ -1601,7 +1601,7 @@ const Nr = (r, e) => {
|
|
|
1601
1601
|
});
|
|
1602
1602
|
}
|
|
1603
1603
|
return o;
|
|
1604
|
-
},
|
|
1604
|
+
}, Lr = (r) => {
|
|
1605
1605
|
const e = /* @__PURE__ */ new Map();
|
|
1606
1606
|
return r.orderSensitiveModifiers.forEach((t, o) => {
|
|
1607
1607
|
e.set(t, 1e6 + o);
|
|
@@ -1614,56 +1614,56 @@ const Nr = (r, e) => {
|
|
|
1614
1614
|
}
|
|
1615
1615
|
return a.length > 0 && (a.sort(), o.push(...a)), o;
|
|
1616
1616
|
};
|
|
1617
|
-
},
|
|
1618
|
-
cache:
|
|
1619
|
-
parseClassName:
|
|
1620
|
-
sortModifiers:
|
|
1621
|
-
...
|
|
1622
|
-
}),
|
|
1617
|
+
}, Gr = (r) => ({
|
|
1618
|
+
cache: Fr(r.cacheSize),
|
|
1619
|
+
parseClassName: _r(r),
|
|
1620
|
+
sortModifiers: Lr(r),
|
|
1621
|
+
...zr(r)
|
|
1622
|
+
}), Qr = /\s+/, qr = (r, e) => {
|
|
1623
1623
|
const {
|
|
1624
1624
|
parseClassName: t,
|
|
1625
1625
|
getClassGroupId: o,
|
|
1626
1626
|
getConflictingClassGroupIds: a,
|
|
1627
1627
|
sortModifiers: l
|
|
1628
|
-
} = e, i = [], b = r.trim().split(
|
|
1628
|
+
} = e, i = [], b = r.trim().split(Qr);
|
|
1629
1629
|
let d = "";
|
|
1630
|
-
for (let
|
|
1631
|
-
const
|
|
1630
|
+
for (let f = b.length - 1; f >= 0; f -= 1) {
|
|
1631
|
+
const p = b[f], {
|
|
1632
1632
|
isExternal: A,
|
|
1633
|
-
modifiers:
|
|
1634
|
-
hasImportantModifier:
|
|
1635
|
-
baseClassName:
|
|
1636
|
-
maybePostfixModifierPosition:
|
|
1637
|
-
} = t(
|
|
1633
|
+
modifiers: I,
|
|
1634
|
+
hasImportantModifier: P,
|
|
1635
|
+
baseClassName: j,
|
|
1636
|
+
maybePostfixModifierPosition: B
|
|
1637
|
+
} = t(p);
|
|
1638
1638
|
if (A) {
|
|
1639
|
-
d =
|
|
1639
|
+
d = p + (d.length > 0 ? " " + d : d);
|
|
1640
1640
|
continue;
|
|
1641
1641
|
}
|
|
1642
|
-
let
|
|
1642
|
+
let H = !!B, G = o(H ? j.substring(0, B) : j);
|
|
1643
1643
|
if (!G) {
|
|
1644
|
-
if (!
|
|
1645
|
-
d =
|
|
1644
|
+
if (!H) {
|
|
1645
|
+
d = p + (d.length > 0 ? " " + d : d);
|
|
1646
1646
|
continue;
|
|
1647
1647
|
}
|
|
1648
|
-
if (G = o(
|
|
1649
|
-
d =
|
|
1648
|
+
if (G = o(j), !G) {
|
|
1649
|
+
d = p + (d.length > 0 ? " " + d : d);
|
|
1650
1650
|
continue;
|
|
1651
1651
|
}
|
|
1652
|
-
|
|
1652
|
+
H = !1;
|
|
1653
1653
|
}
|
|
1654
|
-
const
|
|
1654
|
+
const J = I.length === 0 ? "" : I.length === 1 ? I[0] : l(I).join(":"), Q = P ? J + Ne : J, M = Q + G;
|
|
1655
1655
|
if (i.indexOf(M) > -1)
|
|
1656
1656
|
continue;
|
|
1657
1657
|
i.push(M);
|
|
1658
|
-
const _ = a(G,
|
|
1658
|
+
const _ = a(G, H);
|
|
1659
1659
|
for (let L = 0; L < _.length; ++L) {
|
|
1660
1660
|
const q = _[L];
|
|
1661
1661
|
i.push(Q + q);
|
|
1662
1662
|
}
|
|
1663
|
-
d =
|
|
1663
|
+
d = p + (d.length > 0 ? " " + d : d);
|
|
1664
1664
|
}
|
|
1665
1665
|
return d;
|
|
1666
|
-
},
|
|
1666
|
+
}, Kr = (...r) => {
|
|
1667
1667
|
let e = 0, t, o, a = "";
|
|
1668
1668
|
for (; e < r.length; )
|
|
1669
1669
|
(t = r[e++]) && (o = er(t)) && (a && (a += " "), a += o);
|
|
@@ -1675,35 +1675,35 @@ const Nr = (r, e) => {
|
|
|
1675
1675
|
for (let o = 0; o < r.length; o++)
|
|
1676
1676
|
r[o] && (e = er(r[o])) && (t && (t += " "), t += e);
|
|
1677
1677
|
return t;
|
|
1678
|
-
},
|
|
1678
|
+
}, Jr = (r, ...e) => {
|
|
1679
1679
|
let t, o, a, l;
|
|
1680
1680
|
const i = (d) => {
|
|
1681
|
-
const
|
|
1682
|
-
return t =
|
|
1681
|
+
const f = e.reduce((p, A) => A(p), r());
|
|
1682
|
+
return t = Gr(f), o = t.cache.get, a = t.cache.set, l = b, b(d);
|
|
1683
1683
|
}, b = (d) => {
|
|
1684
|
-
const
|
|
1685
|
-
if (
|
|
1686
|
-
return
|
|
1687
|
-
const
|
|
1688
|
-
return a(d,
|
|
1684
|
+
const f = o(d);
|
|
1685
|
+
if (f)
|
|
1686
|
+
return f;
|
|
1687
|
+
const p = qr(d, t);
|
|
1688
|
+
return a(d, p), p;
|
|
1689
1689
|
};
|
|
1690
|
-
return l = i, (...d) => l(
|
|
1691
|
-
},
|
|
1692
|
-
const e = (t) => t[r] ||
|
|
1690
|
+
return l = i, (...d) => l(Kr(...d));
|
|
1691
|
+
}, Xr = [], N = (r) => {
|
|
1692
|
+
const e = (t) => t[r] || Xr;
|
|
1693
1693
|
return e.isThemeGetter = !0, e;
|
|
1694
|
-
}, rr = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, tr = /^\((?:(\w[\w-]*):)?(.+)\)$/i,
|
|
1694
|
+
}, rr = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, tr = /^\((?:(\w[\w-]*):)?(.+)\)$/i, Zr = /^\d+\/\d+$/, Yr = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, $r = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/, et = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/, rt = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, tt = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, fe = (r) => Zr.test(r), x = (r) => !!r && !Number.isNaN(Number(r)), oe = (r) => !!r && Number.isInteger(Number(r)), Ce = (r) => r.endsWith("%") && x(r.slice(0, -1)), Y = (r) => Yr.test(r), ot = () => !0, at = (r) => (
|
|
1695
1695
|
// `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
|
|
1696
1696
|
// For example, `hsl(0 0% 0%)` would be classified as a length without this check.
|
|
1697
1697
|
// I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
|
|
1698
|
-
|
|
1699
|
-
), or = () => !1,
|
|
1698
|
+
$r.test(r) && !et.test(r)
|
|
1699
|
+
), or = () => !1, it = (r) => rt.test(r), nt = (r) => tt.test(r), st = (r) => !g(r) && !h(r), lt = (r) => we(r, nr, or), g = (r) => rr.test(r), se = (r) => we(r, sr, at), Ie = (r) => we(r, ut, x), Qe = (r) => we(r, ar, or), ct = (r) => we(r, ir, nt), Se = (r) => we(r, lr, it), h = (r) => tr.test(r), Ae = (r) => be(r, sr), dt = (r) => be(r, pt), qe = (r) => be(r, ar), gt = (r) => be(r, nr), ht = (r) => be(r, ir), Ee = (r) => be(r, lr, !0), we = (r, e, t) => {
|
|
1700
1700
|
const o = rr.exec(r);
|
|
1701
1701
|
return o ? o[1] ? e(o[1]) : t(o[2]) : !1;
|
|
1702
|
-
},
|
|
1702
|
+
}, be = (r, e, t = !1) => {
|
|
1703
1703
|
const o = tr.exec(r);
|
|
1704
1704
|
return o ? o[1] ? e(o[1]) : t : !1;
|
|
1705
|
-
}, ar = (r) => r === "position" || r === "percentage", ir = (r) => r === "image" || r === "url", nr = (r) => r === "length" || r === "size" || r === "bg-size", sr = (r) => r === "length",
|
|
1706
|
-
const r =
|
|
1705
|
+
}, ar = (r) => r === "position" || r === "percentage", ir = (r) => r === "image" || r === "url", nr = (r) => r === "length" || r === "size" || r === "bg-size", sr = (r) => r === "length", ut = (r) => r === "number", pt = (r) => r === "family-name", lr = (r) => r === "shadow", mt = () => {
|
|
1706
|
+
const r = N("color"), e = N("font"), t = N("text"), o = N("font-weight"), a = N("tracking"), l = N("leading"), i = N("breakpoint"), b = N("container"), d = N("spacing"), f = N("radius"), p = N("shadow"), A = N("inset-shadow"), I = N("text-shadow"), P = N("drop-shadow"), j = N("blur"), B = N("perspective"), H = N("aspect"), G = N("ease"), J = N("animate"), Q = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], M = () => [
|
|
1707
1707
|
"center",
|
|
1708
1708
|
"top",
|
|
1709
1709
|
"bottom",
|
|
@@ -1721,51 +1721,51 @@ const Nr = (r, e) => {
|
|
|
1721
1721
|
"bottom-left",
|
|
1722
1722
|
// Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
|
|
1723
1723
|
"left-bottom"
|
|
1724
|
-
], _ = () => [...M(), h, g], L = () => ["auto", "hidden", "clip", "visible", "scroll"], q = () => ["auto", "contain", "none"], y = () => [h, g, d],
|
|
1725
|
-
span: ["full",
|
|
1726
|
-
},
|
|
1724
|
+
], _ = () => [...M(), h, g], L = () => ["auto", "hidden", "clip", "visible", "scroll"], q = () => ["auto", "contain", "none"], y = () => [h, g, d], O = () => [fe, "full", "auto", ...y()], s = () => [oe, "none", "subgrid", h, g], W = () => ["auto", {
|
|
1725
|
+
span: ["full", oe, h, g]
|
|
1726
|
+
}, oe, h, g], Z = () => [oe, "auto", h, g], ee = () => ["auto", "min", "max", "fr", h, g], X = () => ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"], w = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"], m = () => ["auto", ...y()], z = () => [fe, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...y()], v = () => [r, h, g], ce = () => [...M(), qe, Qe, {
|
|
1727
1727
|
position: [h, g]
|
|
1728
|
-
}],
|
|
1728
|
+
}], de = () => ["no-repeat", {
|
|
1729
1729
|
repeat: ["", "x", "y", "space", "round"]
|
|
1730
|
-
}],
|
|
1730
|
+
}], ge = () => ["auto", "cover", "contain", gt, lt, {
|
|
1731
1731
|
size: [h, g]
|
|
1732
|
-
}],
|
|
1732
|
+
}], ae = () => [Ce, Ae, se], R = () => [
|
|
1733
1733
|
// Deprecated since Tailwind CSS v4.0.0
|
|
1734
1734
|
"",
|
|
1735
1735
|
"none",
|
|
1736
1736
|
"full",
|
|
1737
|
-
|
|
1737
|
+
f,
|
|
1738
1738
|
h,
|
|
1739
1739
|
g
|
|
1740
|
-
],
|
|
1740
|
+
], V = () => ["", x, Ae, se], he = () => ["solid", "dashed", "dotted", "double"], re = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], C = () => [x, Ce, qe, Qe], ue = () => [
|
|
1741
1741
|
// Deprecated since Tailwind CSS v4.0.0
|
|
1742
1742
|
"",
|
|
1743
1743
|
"none",
|
|
1744
|
-
|
|
1744
|
+
j,
|
|
1745
1745
|
h,
|
|
1746
1746
|
g
|
|
1747
|
-
],
|
|
1747
|
+
], te = () => ["none", x, h, g], ie = () => ["none", x, h, g], ve = () => [x, h, g], pe = () => [fe, "full", ...y()];
|
|
1748
1748
|
return {
|
|
1749
1749
|
cacheSize: 500,
|
|
1750
1750
|
theme: {
|
|
1751
1751
|
animate: ["spin", "ping", "pulse", "bounce"],
|
|
1752
1752
|
aspect: ["video"],
|
|
1753
|
-
blur: [
|
|
1754
|
-
breakpoint: [
|
|
1755
|
-
color: [
|
|
1756
|
-
container: [
|
|
1757
|
-
"drop-shadow": [
|
|
1753
|
+
blur: [Y],
|
|
1754
|
+
breakpoint: [Y],
|
|
1755
|
+
color: [ot],
|
|
1756
|
+
container: [Y],
|
|
1757
|
+
"drop-shadow": [Y],
|
|
1758
1758
|
ease: ["in", "out", "in-out"],
|
|
1759
|
-
font: [
|
|
1759
|
+
font: [st],
|
|
1760
1760
|
"font-weight": ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black"],
|
|
1761
|
-
"inset-shadow": [
|
|
1761
|
+
"inset-shadow": [Y],
|
|
1762
1762
|
leading: ["none", "tight", "snug", "normal", "relaxed", "loose"],
|
|
1763
1763
|
perspective: ["dramatic", "near", "normal", "midrange", "distant", "none"],
|
|
1764
|
-
radius: [
|
|
1765
|
-
shadow: [
|
|
1764
|
+
radius: [Y],
|
|
1765
|
+
shadow: [Y],
|
|
1766
1766
|
spacing: ["px", x],
|
|
1767
|
-
text: [
|
|
1768
|
-
"text-shadow": [
|
|
1767
|
+
text: [Y],
|
|
1768
|
+
"text-shadow": [Y],
|
|
1769
1769
|
tracking: ["tighter", "tight", "normal", "wide", "wider", "widest"]
|
|
1770
1770
|
},
|
|
1771
1771
|
classGroups: {
|
|
@@ -1777,7 +1777,7 @@ const Nr = (r, e) => {
|
|
|
1777
1777
|
* @see https://tailwindcss.com/docs/aspect-ratio
|
|
1778
1778
|
*/
|
|
1779
1779
|
aspect: [{
|
|
1780
|
-
aspect: ["auto", "square",
|
|
1780
|
+
aspect: ["auto", "square", fe, g, h, H]
|
|
1781
1781
|
}],
|
|
1782
1782
|
/**
|
|
1783
1783
|
* Container
|
|
@@ -1922,63 +1922,63 @@ const Nr = (r, e) => {
|
|
|
1922
1922
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
1923
1923
|
*/
|
|
1924
1924
|
inset: [{
|
|
1925
|
-
inset:
|
|
1925
|
+
inset: O()
|
|
1926
1926
|
}],
|
|
1927
1927
|
/**
|
|
1928
1928
|
* Right / Left
|
|
1929
1929
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
1930
1930
|
*/
|
|
1931
1931
|
"inset-x": [{
|
|
1932
|
-
"inset-x":
|
|
1932
|
+
"inset-x": O()
|
|
1933
1933
|
}],
|
|
1934
1934
|
/**
|
|
1935
1935
|
* Top / Bottom
|
|
1936
1936
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
1937
1937
|
*/
|
|
1938
1938
|
"inset-y": [{
|
|
1939
|
-
"inset-y":
|
|
1939
|
+
"inset-y": O()
|
|
1940
1940
|
}],
|
|
1941
1941
|
/**
|
|
1942
1942
|
* Start
|
|
1943
1943
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
1944
1944
|
*/
|
|
1945
1945
|
start: [{
|
|
1946
|
-
start:
|
|
1946
|
+
start: O()
|
|
1947
1947
|
}],
|
|
1948
1948
|
/**
|
|
1949
1949
|
* End
|
|
1950
1950
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
1951
1951
|
*/
|
|
1952
1952
|
end: [{
|
|
1953
|
-
end:
|
|
1953
|
+
end: O()
|
|
1954
1954
|
}],
|
|
1955
1955
|
/**
|
|
1956
1956
|
* Top
|
|
1957
1957
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
1958
1958
|
*/
|
|
1959
1959
|
top: [{
|
|
1960
|
-
top:
|
|
1960
|
+
top: O()
|
|
1961
1961
|
}],
|
|
1962
1962
|
/**
|
|
1963
1963
|
* Right
|
|
1964
1964
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
1965
1965
|
*/
|
|
1966
1966
|
right: [{
|
|
1967
|
-
right:
|
|
1967
|
+
right: O()
|
|
1968
1968
|
}],
|
|
1969
1969
|
/**
|
|
1970
1970
|
* Bottom
|
|
1971
1971
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
1972
1972
|
*/
|
|
1973
1973
|
bottom: [{
|
|
1974
|
-
bottom:
|
|
1974
|
+
bottom: O()
|
|
1975
1975
|
}],
|
|
1976
1976
|
/**
|
|
1977
1977
|
* Left
|
|
1978
1978
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
1979
1979
|
*/
|
|
1980
1980
|
left: [{
|
|
1981
|
-
left:
|
|
1981
|
+
left: O()
|
|
1982
1982
|
}],
|
|
1983
1983
|
/**
|
|
1984
1984
|
* Visibility
|
|
@@ -1990,7 +1990,7 @@ const Nr = (r, e) => {
|
|
|
1990
1990
|
* @see https://tailwindcss.com/docs/z-index
|
|
1991
1991
|
*/
|
|
1992
1992
|
z: [{
|
|
1993
|
-
z: [
|
|
1993
|
+
z: [oe, "auto", h, g]
|
|
1994
1994
|
}],
|
|
1995
1995
|
// ------------------------
|
|
1996
1996
|
// --- Flexbox and Grid ---
|
|
@@ -2000,7 +2000,7 @@ const Nr = (r, e) => {
|
|
|
2000
2000
|
* @see https://tailwindcss.com/docs/flex-basis
|
|
2001
2001
|
*/
|
|
2002
2002
|
basis: [{
|
|
2003
|
-
basis: [
|
|
2003
|
+
basis: [fe, "full", "auto", b, ...y()]
|
|
2004
2004
|
}],
|
|
2005
2005
|
/**
|
|
2006
2006
|
* Flex Direction
|
|
@@ -2021,7 +2021,7 @@ const Nr = (r, e) => {
|
|
|
2021
2021
|
* @see https://tailwindcss.com/docs/flex
|
|
2022
2022
|
*/
|
|
2023
2023
|
flex: [{
|
|
2024
|
-
flex: [x,
|
|
2024
|
+
flex: [x, fe, "auto", "initial", "none", g]
|
|
2025
2025
|
}],
|
|
2026
2026
|
/**
|
|
2027
2027
|
* Flex Grow
|
|
@@ -2042,7 +2042,7 @@ const Nr = (r, e) => {
|
|
|
2042
2042
|
* @see https://tailwindcss.com/docs/order
|
|
2043
2043
|
*/
|
|
2044
2044
|
order: [{
|
|
2045
|
-
order: [
|
|
2045
|
+
order: [oe, "first", "last", "none", h, g]
|
|
2046
2046
|
}],
|
|
2047
2047
|
/**
|
|
2048
2048
|
* Grid Template Columns
|
|
@@ -2056,21 +2056,21 @@ const Nr = (r, e) => {
|
|
|
2056
2056
|
* @see https://tailwindcss.com/docs/grid-column
|
|
2057
2057
|
*/
|
|
2058
2058
|
"col-start-end": [{
|
|
2059
|
-
col:
|
|
2059
|
+
col: W()
|
|
2060
2060
|
}],
|
|
2061
2061
|
/**
|
|
2062
2062
|
* Grid Column Start
|
|
2063
2063
|
* @see https://tailwindcss.com/docs/grid-column
|
|
2064
2064
|
*/
|
|
2065
2065
|
"col-start": [{
|
|
2066
|
-
"col-start":
|
|
2066
|
+
"col-start": Z()
|
|
2067
2067
|
}],
|
|
2068
2068
|
/**
|
|
2069
2069
|
* Grid Column End
|
|
2070
2070
|
* @see https://tailwindcss.com/docs/grid-column
|
|
2071
2071
|
*/
|
|
2072
2072
|
"col-end": [{
|
|
2073
|
-
"col-end":
|
|
2073
|
+
"col-end": Z()
|
|
2074
2074
|
}],
|
|
2075
2075
|
/**
|
|
2076
2076
|
* Grid Template Rows
|
|
@@ -2084,21 +2084,21 @@ const Nr = (r, e) => {
|
|
|
2084
2084
|
* @see https://tailwindcss.com/docs/grid-row
|
|
2085
2085
|
*/
|
|
2086
2086
|
"row-start-end": [{
|
|
2087
|
-
row:
|
|
2087
|
+
row: W()
|
|
2088
2088
|
}],
|
|
2089
2089
|
/**
|
|
2090
2090
|
* Grid Row Start
|
|
2091
2091
|
* @see https://tailwindcss.com/docs/grid-row
|
|
2092
2092
|
*/
|
|
2093
2093
|
"row-start": [{
|
|
2094
|
-
"row-start":
|
|
2094
|
+
"row-start": Z()
|
|
2095
2095
|
}],
|
|
2096
2096
|
/**
|
|
2097
2097
|
* Grid Row End
|
|
2098
2098
|
* @see https://tailwindcss.com/docs/grid-row
|
|
2099
2099
|
*/
|
|
2100
2100
|
"row-end": [{
|
|
2101
|
-
"row-end":
|
|
2101
|
+
"row-end": Z()
|
|
2102
2102
|
}],
|
|
2103
2103
|
/**
|
|
2104
2104
|
* Grid Auto Flow
|
|
@@ -2112,14 +2112,14 @@ const Nr = (r, e) => {
|
|
|
2112
2112
|
* @see https://tailwindcss.com/docs/grid-auto-columns
|
|
2113
2113
|
*/
|
|
2114
2114
|
"auto-cols": [{
|
|
2115
|
-
"auto-cols":
|
|
2115
|
+
"auto-cols": ee()
|
|
2116
2116
|
}],
|
|
2117
2117
|
/**
|
|
2118
2118
|
* Grid Auto Rows
|
|
2119
2119
|
* @see https://tailwindcss.com/docs/grid-auto-rows
|
|
2120
2120
|
*/
|
|
2121
2121
|
"auto-rows": [{
|
|
2122
|
-
"auto-rows":
|
|
2122
|
+
"auto-rows": ee()
|
|
2123
2123
|
}],
|
|
2124
2124
|
/**
|
|
2125
2125
|
* Gap
|
|
@@ -2147,7 +2147,7 @@ const Nr = (r, e) => {
|
|
|
2147
2147
|
* @see https://tailwindcss.com/docs/justify-content
|
|
2148
2148
|
*/
|
|
2149
2149
|
"justify-content": [{
|
|
2150
|
-
justify: [...
|
|
2150
|
+
justify: [...X(), "normal"]
|
|
2151
2151
|
}],
|
|
2152
2152
|
/**
|
|
2153
2153
|
* Justify Items
|
|
@@ -2168,7 +2168,7 @@ const Nr = (r, e) => {
|
|
|
2168
2168
|
* @see https://tailwindcss.com/docs/align-content
|
|
2169
2169
|
*/
|
|
2170
2170
|
"align-content": [{
|
|
2171
|
-
content: ["normal", ...
|
|
2171
|
+
content: ["normal", ...X()]
|
|
2172
2172
|
}],
|
|
2173
2173
|
/**
|
|
2174
2174
|
* Align Items
|
|
@@ -2193,7 +2193,7 @@ const Nr = (r, e) => {
|
|
|
2193
2193
|
* @see https://tailwindcss.com/docs/place-content
|
|
2194
2194
|
*/
|
|
2195
2195
|
"place-content": [{
|
|
2196
|
-
"place-content":
|
|
2196
|
+
"place-content": X()
|
|
2197
2197
|
}],
|
|
2198
2198
|
/**
|
|
2199
2199
|
* Place Items
|
|
@@ -2278,63 +2278,63 @@ const Nr = (r, e) => {
|
|
|
2278
2278
|
* @see https://tailwindcss.com/docs/margin
|
|
2279
2279
|
*/
|
|
2280
2280
|
m: [{
|
|
2281
|
-
m:
|
|
2281
|
+
m: m()
|
|
2282
2282
|
}],
|
|
2283
2283
|
/**
|
|
2284
2284
|
* Margin X
|
|
2285
2285
|
* @see https://tailwindcss.com/docs/margin
|
|
2286
2286
|
*/
|
|
2287
2287
|
mx: [{
|
|
2288
|
-
mx:
|
|
2288
|
+
mx: m()
|
|
2289
2289
|
}],
|
|
2290
2290
|
/**
|
|
2291
2291
|
* Margin Y
|
|
2292
2292
|
* @see https://tailwindcss.com/docs/margin
|
|
2293
2293
|
*/
|
|
2294
2294
|
my: [{
|
|
2295
|
-
my:
|
|
2295
|
+
my: m()
|
|
2296
2296
|
}],
|
|
2297
2297
|
/**
|
|
2298
2298
|
* Margin Start
|
|
2299
2299
|
* @see https://tailwindcss.com/docs/margin
|
|
2300
2300
|
*/
|
|
2301
2301
|
ms: [{
|
|
2302
|
-
ms:
|
|
2302
|
+
ms: m()
|
|
2303
2303
|
}],
|
|
2304
2304
|
/**
|
|
2305
2305
|
* Margin End
|
|
2306
2306
|
* @see https://tailwindcss.com/docs/margin
|
|
2307
2307
|
*/
|
|
2308
2308
|
me: [{
|
|
2309
|
-
me:
|
|
2309
|
+
me: m()
|
|
2310
2310
|
}],
|
|
2311
2311
|
/**
|
|
2312
2312
|
* Margin Top
|
|
2313
2313
|
* @see https://tailwindcss.com/docs/margin
|
|
2314
2314
|
*/
|
|
2315
2315
|
mt: [{
|
|
2316
|
-
mt:
|
|
2316
|
+
mt: m()
|
|
2317
2317
|
}],
|
|
2318
2318
|
/**
|
|
2319
2319
|
* Margin Right
|
|
2320
2320
|
* @see https://tailwindcss.com/docs/margin
|
|
2321
2321
|
*/
|
|
2322
2322
|
mr: [{
|
|
2323
|
-
mr:
|
|
2323
|
+
mr: m()
|
|
2324
2324
|
}],
|
|
2325
2325
|
/**
|
|
2326
2326
|
* Margin Bottom
|
|
2327
2327
|
* @see https://tailwindcss.com/docs/margin
|
|
2328
2328
|
*/
|
|
2329
2329
|
mb: [{
|
|
2330
|
-
mb:
|
|
2330
|
+
mb: m()
|
|
2331
2331
|
}],
|
|
2332
2332
|
/**
|
|
2333
2333
|
* Margin Left
|
|
2334
2334
|
* @see https://tailwindcss.com/docs/margin
|
|
2335
2335
|
*/
|
|
2336
2336
|
ml: [{
|
|
2337
|
-
ml:
|
|
2337
|
+
ml: m()
|
|
2338
2338
|
}],
|
|
2339
2339
|
/**
|
|
2340
2340
|
* Space Between X
|
|
@@ -2368,14 +2368,14 @@ const Nr = (r, e) => {
|
|
|
2368
2368
|
* @see https://tailwindcss.com/docs/width#setting-both-width-and-height
|
|
2369
2369
|
*/
|
|
2370
2370
|
size: [{
|
|
2371
|
-
size:
|
|
2371
|
+
size: z()
|
|
2372
2372
|
}],
|
|
2373
2373
|
/**
|
|
2374
2374
|
* Width
|
|
2375
2375
|
* @see https://tailwindcss.com/docs/width
|
|
2376
2376
|
*/
|
|
2377
2377
|
w: [{
|
|
2378
|
-
w: [b, "screen", ...
|
|
2378
|
+
w: [b, "screen", ...z()]
|
|
2379
2379
|
}],
|
|
2380
2380
|
/**
|
|
2381
2381
|
* Min-Width
|
|
@@ -2387,7 +2387,7 @@ const Nr = (r, e) => {
|
|
|
2387
2387
|
"screen",
|
|
2388
2388
|
/** Deprecated. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
|
|
2389
2389
|
"none",
|
|
2390
|
-
...
|
|
2390
|
+
...z()
|
|
2391
2391
|
]
|
|
2392
2392
|
}],
|
|
2393
2393
|
/**
|
|
@@ -2405,7 +2405,7 @@ const Nr = (r, e) => {
|
|
|
2405
2405
|
{
|
|
2406
2406
|
screen: [i]
|
|
2407
2407
|
},
|
|
2408
|
-
...
|
|
2408
|
+
...z()
|
|
2409
2409
|
]
|
|
2410
2410
|
}],
|
|
2411
2411
|
/**
|
|
@@ -2413,21 +2413,21 @@ const Nr = (r, e) => {
|
|
|
2413
2413
|
* @see https://tailwindcss.com/docs/height
|
|
2414
2414
|
*/
|
|
2415
2415
|
h: [{
|
|
2416
|
-
h: ["screen", "lh", ...
|
|
2416
|
+
h: ["screen", "lh", ...z()]
|
|
2417
2417
|
}],
|
|
2418
2418
|
/**
|
|
2419
2419
|
* Min-Height
|
|
2420
2420
|
* @see https://tailwindcss.com/docs/min-height
|
|
2421
2421
|
*/
|
|
2422
2422
|
"min-h": [{
|
|
2423
|
-
"min-h": ["screen", "lh", "none", ...
|
|
2423
|
+
"min-h": ["screen", "lh", "none", ...z()]
|
|
2424
2424
|
}],
|
|
2425
2425
|
/**
|
|
2426
2426
|
* Max-Height
|
|
2427
2427
|
* @see https://tailwindcss.com/docs/max-height
|
|
2428
2428
|
*/
|
|
2429
2429
|
"max-h": [{
|
|
2430
|
-
"max-h": ["screen", "lh", ...
|
|
2430
|
+
"max-h": ["screen", "lh", ...z()]
|
|
2431
2431
|
}],
|
|
2432
2432
|
// ------------------
|
|
2433
2433
|
// --- Typography ---
|
|
@@ -2437,7 +2437,7 @@ const Nr = (r, e) => {
|
|
|
2437
2437
|
* @see https://tailwindcss.com/docs/font-size
|
|
2438
2438
|
*/
|
|
2439
2439
|
"font-size": [{
|
|
2440
|
-
text: ["base", t,
|
|
2440
|
+
text: ["base", t, Ae, se]
|
|
2441
2441
|
}],
|
|
2442
2442
|
/**
|
|
2443
2443
|
* Font Smoothing
|
|
@@ -2454,21 +2454,21 @@ const Nr = (r, e) => {
|
|
|
2454
2454
|
* @see https://tailwindcss.com/docs/font-weight
|
|
2455
2455
|
*/
|
|
2456
2456
|
"font-weight": [{
|
|
2457
|
-
font: [o, h,
|
|
2457
|
+
font: [o, h, Ie]
|
|
2458
2458
|
}],
|
|
2459
2459
|
/**
|
|
2460
2460
|
* Font Stretch
|
|
2461
2461
|
* @see https://tailwindcss.com/docs/font-stretch
|
|
2462
2462
|
*/
|
|
2463
2463
|
"font-stretch": [{
|
|
2464
|
-
"font-stretch": ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded",
|
|
2464
|
+
"font-stretch": ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded", Ce, g]
|
|
2465
2465
|
}],
|
|
2466
2466
|
/**
|
|
2467
2467
|
* Font Family
|
|
2468
2468
|
* @see https://tailwindcss.com/docs/font-family
|
|
2469
2469
|
*/
|
|
2470
2470
|
"font-family": [{
|
|
2471
|
-
font: [
|
|
2471
|
+
font: [dt, g, e]
|
|
2472
2472
|
}],
|
|
2473
2473
|
/**
|
|
2474
2474
|
* Font Variant Numeric
|
|
@@ -2512,7 +2512,7 @@ const Nr = (r, e) => {
|
|
|
2512
2512
|
* @see https://tailwindcss.com/docs/line-clamp
|
|
2513
2513
|
*/
|
|
2514
2514
|
"line-clamp": [{
|
|
2515
|
-
"line-clamp": [x, "none", h,
|
|
2515
|
+
"line-clamp": [x, "none", h, Ie]
|
|
2516
2516
|
}],
|
|
2517
2517
|
/**
|
|
2518
2518
|
* Line Height
|
|
@@ -2578,7 +2578,7 @@ const Nr = (r, e) => {
|
|
|
2578
2578
|
* @see https://tailwindcss.com/docs/text-decoration-style
|
|
2579
2579
|
*/
|
|
2580
2580
|
"text-decoration-style": [{
|
|
2581
|
-
decoration: [...
|
|
2581
|
+
decoration: [...he(), "wavy"]
|
|
2582
2582
|
}],
|
|
2583
2583
|
/**
|
|
2584
2584
|
* Text Decoration Thickness
|
|
@@ -2696,21 +2696,21 @@ const Nr = (r, e) => {
|
|
|
2696
2696
|
* @see https://tailwindcss.com/docs/background-position
|
|
2697
2697
|
*/
|
|
2698
2698
|
"bg-position": [{
|
|
2699
|
-
bg:
|
|
2699
|
+
bg: ce()
|
|
2700
2700
|
}],
|
|
2701
2701
|
/**
|
|
2702
2702
|
* Background Repeat
|
|
2703
2703
|
* @see https://tailwindcss.com/docs/background-repeat
|
|
2704
2704
|
*/
|
|
2705
2705
|
"bg-repeat": [{
|
|
2706
|
-
bg:
|
|
2706
|
+
bg: de()
|
|
2707
2707
|
}],
|
|
2708
2708
|
/**
|
|
2709
2709
|
* Background Size
|
|
2710
2710
|
* @see https://tailwindcss.com/docs/background-size
|
|
2711
2711
|
*/
|
|
2712
2712
|
"bg-size": [{
|
|
2713
|
-
bg:
|
|
2713
|
+
bg: ge()
|
|
2714
2714
|
}],
|
|
2715
2715
|
/**
|
|
2716
2716
|
* Background Image
|
|
@@ -2720,10 +2720,10 @@ const Nr = (r, e) => {
|
|
|
2720
2720
|
bg: ["none", {
|
|
2721
2721
|
linear: [{
|
|
2722
2722
|
to: ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
|
|
2723
|
-
},
|
|
2723
|
+
}, oe, h, g],
|
|
2724
2724
|
radial: ["", h, g],
|
|
2725
|
-
conic: [
|
|
2726
|
-
},
|
|
2725
|
+
conic: [oe, h, g]
|
|
2726
|
+
}, ht, ct]
|
|
2727
2727
|
}],
|
|
2728
2728
|
/**
|
|
2729
2729
|
* Background Color
|
|
@@ -2737,21 +2737,21 @@ const Nr = (r, e) => {
|
|
|
2737
2737
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
2738
2738
|
*/
|
|
2739
2739
|
"gradient-from-pos": [{
|
|
2740
|
-
from:
|
|
2740
|
+
from: ae()
|
|
2741
2741
|
}],
|
|
2742
2742
|
/**
|
|
2743
2743
|
* Gradient Color Stops Via Position
|
|
2744
2744
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
2745
2745
|
*/
|
|
2746
2746
|
"gradient-via-pos": [{
|
|
2747
|
-
via:
|
|
2747
|
+
via: ae()
|
|
2748
2748
|
}],
|
|
2749
2749
|
/**
|
|
2750
2750
|
* Gradient Color Stops To Position
|
|
2751
2751
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
2752
2752
|
*/
|
|
2753
2753
|
"gradient-to-pos": [{
|
|
2754
|
-
to:
|
|
2754
|
+
to: ae()
|
|
2755
2755
|
}],
|
|
2756
2756
|
/**
|
|
2757
2757
|
* Gradient Color Stops From
|
|
@@ -2887,70 +2887,70 @@ const Nr = (r, e) => {
|
|
|
2887
2887
|
* @see https://tailwindcss.com/docs/border-width
|
|
2888
2888
|
*/
|
|
2889
2889
|
"border-w": [{
|
|
2890
|
-
border:
|
|
2890
|
+
border: V()
|
|
2891
2891
|
}],
|
|
2892
2892
|
/**
|
|
2893
2893
|
* Border Width X
|
|
2894
2894
|
* @see https://tailwindcss.com/docs/border-width
|
|
2895
2895
|
*/
|
|
2896
2896
|
"border-w-x": [{
|
|
2897
|
-
"border-x":
|
|
2897
|
+
"border-x": V()
|
|
2898
2898
|
}],
|
|
2899
2899
|
/**
|
|
2900
2900
|
* Border Width Y
|
|
2901
2901
|
* @see https://tailwindcss.com/docs/border-width
|
|
2902
2902
|
*/
|
|
2903
2903
|
"border-w-y": [{
|
|
2904
|
-
"border-y":
|
|
2904
|
+
"border-y": V()
|
|
2905
2905
|
}],
|
|
2906
2906
|
/**
|
|
2907
2907
|
* Border Width Start
|
|
2908
2908
|
* @see https://tailwindcss.com/docs/border-width
|
|
2909
2909
|
*/
|
|
2910
2910
|
"border-w-s": [{
|
|
2911
|
-
"border-s":
|
|
2911
|
+
"border-s": V()
|
|
2912
2912
|
}],
|
|
2913
2913
|
/**
|
|
2914
2914
|
* Border Width End
|
|
2915
2915
|
* @see https://tailwindcss.com/docs/border-width
|
|
2916
2916
|
*/
|
|
2917
2917
|
"border-w-e": [{
|
|
2918
|
-
"border-e":
|
|
2918
|
+
"border-e": V()
|
|
2919
2919
|
}],
|
|
2920
2920
|
/**
|
|
2921
2921
|
* Border Width Top
|
|
2922
2922
|
* @see https://tailwindcss.com/docs/border-width
|
|
2923
2923
|
*/
|
|
2924
2924
|
"border-w-t": [{
|
|
2925
|
-
"border-t":
|
|
2925
|
+
"border-t": V()
|
|
2926
2926
|
}],
|
|
2927
2927
|
/**
|
|
2928
2928
|
* Border Width Right
|
|
2929
2929
|
* @see https://tailwindcss.com/docs/border-width
|
|
2930
2930
|
*/
|
|
2931
2931
|
"border-w-r": [{
|
|
2932
|
-
"border-r":
|
|
2932
|
+
"border-r": V()
|
|
2933
2933
|
}],
|
|
2934
2934
|
/**
|
|
2935
2935
|
* Border Width Bottom
|
|
2936
2936
|
* @see https://tailwindcss.com/docs/border-width
|
|
2937
2937
|
*/
|
|
2938
2938
|
"border-w-b": [{
|
|
2939
|
-
"border-b":
|
|
2939
|
+
"border-b": V()
|
|
2940
2940
|
}],
|
|
2941
2941
|
/**
|
|
2942
2942
|
* Border Width Left
|
|
2943
2943
|
* @see https://tailwindcss.com/docs/border-width
|
|
2944
2944
|
*/
|
|
2945
2945
|
"border-w-l": [{
|
|
2946
|
-
"border-l":
|
|
2946
|
+
"border-l": V()
|
|
2947
2947
|
}],
|
|
2948
2948
|
/**
|
|
2949
2949
|
* Divide Width X
|
|
2950
2950
|
* @see https://tailwindcss.com/docs/border-width#between-children
|
|
2951
2951
|
*/
|
|
2952
2952
|
"divide-x": [{
|
|
2953
|
-
"divide-x":
|
|
2953
|
+
"divide-x": V()
|
|
2954
2954
|
}],
|
|
2955
2955
|
/**
|
|
2956
2956
|
* Divide Width X Reverse
|
|
@@ -2962,7 +2962,7 @@ const Nr = (r, e) => {
|
|
|
2962
2962
|
* @see https://tailwindcss.com/docs/border-width#between-children
|
|
2963
2963
|
*/
|
|
2964
2964
|
"divide-y": [{
|
|
2965
|
-
"divide-y":
|
|
2965
|
+
"divide-y": V()
|
|
2966
2966
|
}],
|
|
2967
2967
|
/**
|
|
2968
2968
|
* Divide Width Y Reverse
|
|
@@ -2974,14 +2974,14 @@ const Nr = (r, e) => {
|
|
|
2974
2974
|
* @see https://tailwindcss.com/docs/border-style
|
|
2975
2975
|
*/
|
|
2976
2976
|
"border-style": [{
|
|
2977
|
-
border: [...
|
|
2977
|
+
border: [...he(), "hidden", "none"]
|
|
2978
2978
|
}],
|
|
2979
2979
|
/**
|
|
2980
2980
|
* Divide Style
|
|
2981
2981
|
* @see https://tailwindcss.com/docs/border-style#setting-the-divider-style
|
|
2982
2982
|
*/
|
|
2983
2983
|
"divide-style": [{
|
|
2984
|
-
divide: [...
|
|
2984
|
+
divide: [...he(), "hidden", "none"]
|
|
2985
2985
|
}],
|
|
2986
2986
|
/**
|
|
2987
2987
|
* Border Color
|
|
@@ -3058,7 +3058,7 @@ const Nr = (r, e) => {
|
|
|
3058
3058
|
* @see https://tailwindcss.com/docs/outline-style
|
|
3059
3059
|
*/
|
|
3060
3060
|
"outline-style": [{
|
|
3061
|
-
outline: [...
|
|
3061
|
+
outline: [...he(), "none", "hidden"]
|
|
3062
3062
|
}],
|
|
3063
3063
|
/**
|
|
3064
3064
|
* Outline Offset
|
|
@@ -3072,7 +3072,7 @@ const Nr = (r, e) => {
|
|
|
3072
3072
|
* @see https://tailwindcss.com/docs/outline-width
|
|
3073
3073
|
*/
|
|
3074
3074
|
"outline-w": [{
|
|
3075
|
-
outline: ["", x,
|
|
3075
|
+
outline: ["", x, Ae, se]
|
|
3076
3076
|
}],
|
|
3077
3077
|
/**
|
|
3078
3078
|
* Outline Color
|
|
@@ -3093,9 +3093,9 @@ const Nr = (r, e) => {
|
|
|
3093
3093
|
// Deprecated since Tailwind CSS v4.0.0
|
|
3094
3094
|
"",
|
|
3095
3095
|
"none",
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3096
|
+
p,
|
|
3097
|
+
Ee,
|
|
3098
|
+
Se
|
|
3099
3099
|
]
|
|
3100
3100
|
}],
|
|
3101
3101
|
/**
|
|
@@ -3110,7 +3110,7 @@ const Nr = (r, e) => {
|
|
|
3110
3110
|
* @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-shadow
|
|
3111
3111
|
*/
|
|
3112
3112
|
"inset-shadow": [{
|
|
3113
|
-
"inset-shadow": ["none", A,
|
|
3113
|
+
"inset-shadow": ["none", A, Ee, Se]
|
|
3114
3114
|
}],
|
|
3115
3115
|
/**
|
|
3116
3116
|
* Inset Box Shadow Color
|
|
@@ -3124,7 +3124,7 @@ const Nr = (r, e) => {
|
|
|
3124
3124
|
* @see https://tailwindcss.com/docs/box-shadow#adding-a-ring
|
|
3125
3125
|
*/
|
|
3126
3126
|
"ring-w": [{
|
|
3127
|
-
ring:
|
|
3127
|
+
ring: V()
|
|
3128
3128
|
}],
|
|
3129
3129
|
/**
|
|
3130
3130
|
* Ring Width Inset
|
|
@@ -3163,7 +3163,7 @@ const Nr = (r, e) => {
|
|
|
3163
3163
|
* @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-ring
|
|
3164
3164
|
*/
|
|
3165
3165
|
"inset-ring-w": [{
|
|
3166
|
-
"inset-ring":
|
|
3166
|
+
"inset-ring": V()
|
|
3167
3167
|
}],
|
|
3168
3168
|
/**
|
|
3169
3169
|
* Inset Ring Color
|
|
@@ -3177,7 +3177,7 @@ const Nr = (r, e) => {
|
|
|
3177
3177
|
* @see https://tailwindcss.com/docs/text-shadow
|
|
3178
3178
|
*/
|
|
3179
3179
|
"text-shadow": [{
|
|
3180
|
-
"text-shadow": ["none",
|
|
3180
|
+
"text-shadow": ["none", I, Ee, Se]
|
|
3181
3181
|
}],
|
|
3182
3182
|
/**
|
|
3183
3183
|
* Text Shadow Color
|
|
@@ -3198,14 +3198,14 @@ const Nr = (r, e) => {
|
|
|
3198
3198
|
* @see https://tailwindcss.com/docs/mix-blend-mode
|
|
3199
3199
|
*/
|
|
3200
3200
|
"mix-blend": [{
|
|
3201
|
-
"mix-blend": [...
|
|
3201
|
+
"mix-blend": [...re(), "plus-darker", "plus-lighter"]
|
|
3202
3202
|
}],
|
|
3203
3203
|
/**
|
|
3204
3204
|
* Background Blend Mode
|
|
3205
3205
|
* @see https://tailwindcss.com/docs/background-blend-mode
|
|
3206
3206
|
*/
|
|
3207
3207
|
"bg-blend": [{
|
|
3208
|
-
"bg-blend":
|
|
3208
|
+
"bg-blend": re()
|
|
3209
3209
|
}],
|
|
3210
3210
|
/**
|
|
3211
3211
|
* Mask Clip
|
|
@@ -3373,21 +3373,21 @@ const Nr = (r, e) => {
|
|
|
3373
3373
|
* @see https://tailwindcss.com/docs/mask-position
|
|
3374
3374
|
*/
|
|
3375
3375
|
"mask-position": [{
|
|
3376
|
-
mask:
|
|
3376
|
+
mask: ce()
|
|
3377
3377
|
}],
|
|
3378
3378
|
/**
|
|
3379
3379
|
* Mask Repeat
|
|
3380
3380
|
* @see https://tailwindcss.com/docs/mask-repeat
|
|
3381
3381
|
*/
|
|
3382
3382
|
"mask-repeat": [{
|
|
3383
|
-
mask:
|
|
3383
|
+
mask: de()
|
|
3384
3384
|
}],
|
|
3385
3385
|
/**
|
|
3386
3386
|
* Mask Size
|
|
3387
3387
|
* @see https://tailwindcss.com/docs/mask-size
|
|
3388
3388
|
*/
|
|
3389
3389
|
"mask-size": [{
|
|
3390
|
-
mask:
|
|
3390
|
+
mask: ge()
|
|
3391
3391
|
}],
|
|
3392
3392
|
/**
|
|
3393
3393
|
* Mask Type
|
|
@@ -3424,7 +3424,7 @@ const Nr = (r, e) => {
|
|
|
3424
3424
|
* @see https://tailwindcss.com/docs/blur
|
|
3425
3425
|
*/
|
|
3426
3426
|
blur: [{
|
|
3427
|
-
blur:
|
|
3427
|
+
blur: ue()
|
|
3428
3428
|
}],
|
|
3429
3429
|
/**
|
|
3430
3430
|
* Brightness
|
|
@@ -3449,9 +3449,9 @@ const Nr = (r, e) => {
|
|
|
3449
3449
|
// Deprecated since Tailwind CSS v4.0.0
|
|
3450
3450
|
"",
|
|
3451
3451
|
"none",
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3452
|
+
P,
|
|
3453
|
+
Ee,
|
|
3454
|
+
Se
|
|
3455
3455
|
]
|
|
3456
3456
|
}],
|
|
3457
3457
|
/**
|
|
@@ -3514,7 +3514,7 @@ const Nr = (r, e) => {
|
|
|
3514
3514
|
* @see https://tailwindcss.com/docs/backdrop-blur
|
|
3515
3515
|
*/
|
|
3516
3516
|
"backdrop-blur": [{
|
|
3517
|
-
"backdrop-blur":
|
|
3517
|
+
"backdrop-blur": ue()
|
|
3518
3518
|
}],
|
|
3519
3519
|
/**
|
|
3520
3520
|
* Backdrop Brightness
|
|
@@ -3660,7 +3660,7 @@ const Nr = (r, e) => {
|
|
|
3660
3660
|
* @see https://tailwindcss.com/docs/animation
|
|
3661
3661
|
*/
|
|
3662
3662
|
animate: [{
|
|
3663
|
-
animate: ["none",
|
|
3663
|
+
animate: ["none", J, h, g]
|
|
3664
3664
|
}],
|
|
3665
3665
|
// ------------------
|
|
3666
3666
|
// --- Transforms ---
|
|
@@ -3677,7 +3677,7 @@ const Nr = (r, e) => {
|
|
|
3677
3677
|
* @see https://tailwindcss.com/docs/perspective
|
|
3678
3678
|
*/
|
|
3679
3679
|
perspective: [{
|
|
3680
|
-
perspective: [
|
|
3680
|
+
perspective: [B, h, g]
|
|
3681
3681
|
}],
|
|
3682
3682
|
/**
|
|
3683
3683
|
* Perspective Origin
|
|
@@ -3691,56 +3691,56 @@ const Nr = (r, e) => {
|
|
|
3691
3691
|
* @see https://tailwindcss.com/docs/rotate
|
|
3692
3692
|
*/
|
|
3693
3693
|
rotate: [{
|
|
3694
|
-
rotate:
|
|
3694
|
+
rotate: te()
|
|
3695
3695
|
}],
|
|
3696
3696
|
/**
|
|
3697
3697
|
* Rotate X
|
|
3698
3698
|
* @see https://tailwindcss.com/docs/rotate
|
|
3699
3699
|
*/
|
|
3700
3700
|
"rotate-x": [{
|
|
3701
|
-
"rotate-x":
|
|
3701
|
+
"rotate-x": te()
|
|
3702
3702
|
}],
|
|
3703
3703
|
/**
|
|
3704
3704
|
* Rotate Y
|
|
3705
3705
|
* @see https://tailwindcss.com/docs/rotate
|
|
3706
3706
|
*/
|
|
3707
3707
|
"rotate-y": [{
|
|
3708
|
-
"rotate-y":
|
|
3708
|
+
"rotate-y": te()
|
|
3709
3709
|
}],
|
|
3710
3710
|
/**
|
|
3711
3711
|
* Rotate Z
|
|
3712
3712
|
* @see https://tailwindcss.com/docs/rotate
|
|
3713
3713
|
*/
|
|
3714
3714
|
"rotate-z": [{
|
|
3715
|
-
"rotate-z":
|
|
3715
|
+
"rotate-z": te()
|
|
3716
3716
|
}],
|
|
3717
3717
|
/**
|
|
3718
3718
|
* Scale
|
|
3719
3719
|
* @see https://tailwindcss.com/docs/scale
|
|
3720
3720
|
*/
|
|
3721
3721
|
scale: [{
|
|
3722
|
-
scale:
|
|
3722
|
+
scale: ie()
|
|
3723
3723
|
}],
|
|
3724
3724
|
/**
|
|
3725
3725
|
* Scale X
|
|
3726
3726
|
* @see https://tailwindcss.com/docs/scale
|
|
3727
3727
|
*/
|
|
3728
3728
|
"scale-x": [{
|
|
3729
|
-
"scale-x":
|
|
3729
|
+
"scale-x": ie()
|
|
3730
3730
|
}],
|
|
3731
3731
|
/**
|
|
3732
3732
|
* Scale Y
|
|
3733
3733
|
* @see https://tailwindcss.com/docs/scale
|
|
3734
3734
|
*/
|
|
3735
3735
|
"scale-y": [{
|
|
3736
|
-
"scale-y":
|
|
3736
|
+
"scale-y": ie()
|
|
3737
3737
|
}],
|
|
3738
3738
|
/**
|
|
3739
3739
|
* Scale Z
|
|
3740
3740
|
* @see https://tailwindcss.com/docs/scale
|
|
3741
3741
|
*/
|
|
3742
3742
|
"scale-z": [{
|
|
3743
|
-
"scale-z":
|
|
3743
|
+
"scale-z": ie()
|
|
3744
3744
|
}],
|
|
3745
3745
|
/**
|
|
3746
3746
|
* Scale 3D
|
|
@@ -3752,21 +3752,21 @@ const Nr = (r, e) => {
|
|
|
3752
3752
|
* @see https://tailwindcss.com/docs/skew
|
|
3753
3753
|
*/
|
|
3754
3754
|
skew: [{
|
|
3755
|
-
skew:
|
|
3755
|
+
skew: ve()
|
|
3756
3756
|
}],
|
|
3757
3757
|
/**
|
|
3758
3758
|
* Skew X
|
|
3759
3759
|
* @see https://tailwindcss.com/docs/skew
|
|
3760
3760
|
*/
|
|
3761
3761
|
"skew-x": [{
|
|
3762
|
-
"skew-x":
|
|
3762
|
+
"skew-x": ve()
|
|
3763
3763
|
}],
|
|
3764
3764
|
/**
|
|
3765
3765
|
* Skew Y
|
|
3766
3766
|
* @see https://tailwindcss.com/docs/skew
|
|
3767
3767
|
*/
|
|
3768
3768
|
"skew-y": [{
|
|
3769
|
-
"skew-y":
|
|
3769
|
+
"skew-y": ve()
|
|
3770
3770
|
}],
|
|
3771
3771
|
/**
|
|
3772
3772
|
* Transform
|
|
@@ -3794,28 +3794,28 @@ const Nr = (r, e) => {
|
|
|
3794
3794
|
* @see https://tailwindcss.com/docs/translate
|
|
3795
3795
|
*/
|
|
3796
3796
|
translate: [{
|
|
3797
|
-
translate:
|
|
3797
|
+
translate: pe()
|
|
3798
3798
|
}],
|
|
3799
3799
|
/**
|
|
3800
3800
|
* Translate X
|
|
3801
3801
|
* @see https://tailwindcss.com/docs/translate
|
|
3802
3802
|
*/
|
|
3803
3803
|
"translate-x": [{
|
|
3804
|
-
"translate-x":
|
|
3804
|
+
"translate-x": pe()
|
|
3805
3805
|
}],
|
|
3806
3806
|
/**
|
|
3807
3807
|
* Translate Y
|
|
3808
3808
|
* @see https://tailwindcss.com/docs/translate
|
|
3809
3809
|
*/
|
|
3810
3810
|
"translate-y": [{
|
|
3811
|
-
"translate-y":
|
|
3811
|
+
"translate-y": pe()
|
|
3812
3812
|
}],
|
|
3813
3813
|
/**
|
|
3814
3814
|
* Translate Z
|
|
3815
3815
|
* @see https://tailwindcss.com/docs/translate
|
|
3816
3816
|
*/
|
|
3817
3817
|
"translate-z": [{
|
|
3818
|
-
"translate-z":
|
|
3818
|
+
"translate-z": pe()
|
|
3819
3819
|
}],
|
|
3820
3820
|
/**
|
|
3821
3821
|
* Translate None
|
|
@@ -4097,7 +4097,7 @@ const Nr = (r, e) => {
|
|
|
4097
4097
|
* @see https://tailwindcss.com/docs/stroke-width
|
|
4098
4098
|
*/
|
|
4099
4099
|
"stroke-w": [{
|
|
4100
|
-
stroke: [x,
|
|
4100
|
+
stroke: [x, Ae, se, Ie]
|
|
4101
4101
|
}],
|
|
4102
4102
|
/**
|
|
4103
4103
|
* Stroke
|
|
@@ -4172,20 +4172,20 @@ const Nr = (r, e) => {
|
|
|
4172
4172
|
},
|
|
4173
4173
|
orderSensitiveModifiers: ["*", "**", "after", "backdrop", "before", "details-content", "file", "first-letter", "first-line", "marker", "placeholder", "selection"]
|
|
4174
4174
|
};
|
|
4175
|
-
},
|
|
4175
|
+
}, ft = /* @__PURE__ */ Jr(mt);
|
|
4176
4176
|
function c(...r) {
|
|
4177
|
-
return
|
|
4177
|
+
return ft(Ir(r));
|
|
4178
4178
|
}
|
|
4179
|
-
const
|
|
4179
|
+
const Te = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AKgAAAAgABAEaAAUAAAABAAAAPgEbAAUAAAABAAAARgEoAAMAAAABAAIAAIdpAAQAAAABAAAATgAAAAAAAACQAAAAAQAAAJAAAAABAAOShgAHAAAAEgAAAHigAgAEAAAAAQAAAMigAwAEAAAAAQAAAJkAAAAAQVNDSUkAAABTY3JlZW5zaG90/+0AOFBob3Rvc2hvcCAzLjAAOEJJTQQEAAAAAAAAOEJJTQQlAAAAAAAQ1B2M2Y8AsgTpgAmY7PhCfv/iAihJQ0NfUFJPRklMRQABAQAAAhhhcHBsBAAAAG1udHJSR0IgWFlaIAfmAAEAAQAAAAAAAGFjc3BBUFBMAAAAAEFQUEwAAAAAAAAAAAAAAAAAAAAAAAD21gABAAAAANMtYXBwbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmRlc2MAAAD8AAAAMGNwcnQAAAEsAAAAUHd0cHQAAAF8AAAAFHJYWVoAAAGQAAAAFGdYWVoAAAGkAAAAFGJYWVoAAAG4AAAAFHJUUkMAAAHMAAAAIGNoYWQAAAHsAAAALGJUUkMAAAHMAAAAIGdUUkMAAAHMAAAAIG1sdWMAAAAAAAAAAQAAAAxlblVTAAAAFAAAABwARABpAHMAcABsAGEAeQAgAFAAM21sdWMAAAAAAAAAAQAAAAxlblVTAAAANAAAABwAQwBvAHAAeQByAGkAZwBoAHQAIABBAHAAcABsAGUAIABJAG4AYwAuACwAIAAyADAAMgAyWFlaIAAAAAAAAPbVAAEAAAAA0yxYWVogAAAAAAAAg98AAD2/////u1hZWiAAAAAAAABKvwAAsTcAAAq5WFlaIAAAAAAAACg4AAARCwAAyLlwYXJhAAAAAAADAAAAAmZmAADypwAADVkAABPQAAAKW3NmMzIAAAAAAAEMQgAABd7///MmAAAHkwAA/ZD///ui///9owAAA9wAAMBu/8AAEQgAmQDIAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/bAEMABAQEBAQEBgQEBgkGBgYJDAkJCQkMDwwMDAwMDxIPDw8PDw8SEhISEhISEhUVFRUVFRkZGRkZHBwcHBwcHBwcHP/bAEMBBAUFBwcHDAcHDB0UEBQdHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHf/dAAQADf/aAAwDAQACEQMRAD8A98/sPRP+gda/9+Y//iaP7D0T/oHWv/fmP/4mtKlzQcZl/wBiaL/0DrX/AL8x/wDxNJ/Ymif9A61/78x//E1qUUBcy/7D0T/oHWv/AH5j/wDiaP7D0T/oHWv/AH5j/wDia1KTNAXZmf2Hon/QOtf+/Mf/AMTR/YmiD/mHWv8A35T/AOJrTzRQK5l/2Jov/QOtf+/Mf/xNJ/Ymif8AQOtf+/Mf/wATWpXM+K/FOm+EtKk1TUm4Hyxxj7zt2AoC5oHRdE6nT7X/AL8x/wDxNU57TwtaoXuLaxjVeSWjiH9K+PvEvxe8R6/cMkcpsrQ8eVCTkj3auLuLyS7iM0sr59Cc/wA6Tdhn2jL4g+HEUnlM+nFvaOM/0pLbxB8NruQRQyadvPABjjB/UV8UWEUs0c02SUiA6+5rKu7l/MIjGB61Kld2HayP0STSdClUPHY2jqehEUZH8qd/Yui/9A+1/wC/Kf8AxNfB3h/x34p8OSq2n3biNesTnchH+6en4Yr6u+HvxMs/GKGzu0FrqKDOwH5ZB3K/TuKsi56F/Yui/wDQPtf+/Kf/ABNJ/Yui/wDQPtf+/Kf/ABNadJmgZm/2Lov/AED7X/vyn+FJ/Yui/wDQPtf+/Kf/ABNaVFAjM/sXRf8AoH2v/flP/iaadG0X/oH2v/flP/ia0ic0lAzN/sXRv+gfbf8AflP8KT+xtF/6B9t/35T/AArSJpKAM3+xdG/6B9t/35T/AApP7F0b/oH23/flP8K06KBn/9D6OzRTaKDiHUlJRQMXNJRRQIKKKSgBrMqqWYhVAySewr4S+KnjGbxX4klMTYsbQmK3QH7wB5f/AIEefpX1t8SNS/svwVqlwp2u8XlKQcHLkD+Wa+NvCnh5Ndvx5gPluc5rOpNQV2XCDnJRRyun6bf3r/6PEzjI6DJrubfwV4hvV2pbMiercV9F6L4f0zSY1htIlXHU45NdKYwvAFeW8VKWx68cDFfEz5y0/wAE6lZwS290uRKB932rgte8LalZSM32eQqTwQDivrySNSTWdeRRmPDgH61isRNO5tLCQcbI+IngurcjfGy/WtnQtZn0jUYNRt3KS27h1I9R2Psehr3nW9OsrxHjeJeM4IFfPupaabO6kVOgJx9K9ChiFU3PLxGGdPY/QPw1r1r4l0S11m0+7OvzL3Vhwyn6Gt3OK+VvgLrrx6hdaG8h8q4QyohP/LRMZI+q9fpX1Lmu44x26kJzTc0ZoAM0mTSZozQAtJmkzSZoAWim80UDP//R+jKKKM0HEFFJmjNAwzSZoooEGaKKaTQM8O+PV95Hha3ss4+0z5z2wg/+vXlPwxVXy6jlBjPua779oBwdO0y3cfKzyNu9GAFc98P9Pj0vQk1Cc4EoMhPotcGMfuWO3Bq9S569bg4rXRGKHPpXkk3jHV4SZrXS2aAdC/BPviprb4jalORDcaeYkzjK815sYWV2e17RN2R38pGSB1rFvS5X2pW1FPL85uMjNeV6x47vkuJIbO0LBTjce9ZRi5OyNZNQV2bepKVV/evFPFcBT98B7GuybWvE93mRreNV9GOKrPENThZbmLYx4Knnn2NdNJODu2cNdqcbWOY+G2rf2P4psb1zhBKFc/7L/Kf5195jkA1+bluk/wDaaWttnzGmCL9d3H61+jsBYwRmT72xd31xzXuJng2Js0maTNJTAXNGaSkoAXIpM+lJRmgAopM0lAH/0voqim7qN1BxjqKbupCaBD6KZk0Ek0AKabRTSe1AHhnxy2yaHbW/lbnLllf0HGf6VieEwV8JWCY3MI+/sTXf/EO4h8q0sZQGaZn2Ke5CmuP8P7rbSrdJE2kbhjt1NeTjJO9j3cBSTSmvQ4TV5tfkuLiMLgxqHUN3GeijvxUPhJNYvJ0W8RVLsw4GCAOma9qbSYNRUO65xVi20ew06J5Ykw/r3rkv7trHc4tTu38jm9chW20R5F/1icV53a6XO1uswx5kkbuJHGVUj7ox6sfyFek+IlaTTHRefmBx7Cue0OSK6ga3OGCnBFZRfK7lyi3oeLSxa9JveaYmTf8AKmB0/Ct6yiuYcedxnsfWvUbjTNPizJsGR3ritRmV51RR0PFbe1cnsY/V+VN3PImgaz1q5uF4MLswz256190eFtT/ALX0CyvictJEhb67RmviDX0khur+6z+6kOwe7HAI/Cvqb4OXZufBlujHJiJX8M8V69F31PCrxUbRPWaTNNzQTXScouaQmmlqYWoAeSO9JuqIsKYWoFcm3Ub6g3UbxQFz/9P6EBp2ahBp1BxklFR0UAPyKTdTaKAFJNNJoNIaAPnj42389jf6LcQHBhLSge6kVvqbeawgubf7kyrJj03DNch8edwv9HHQOkq/qK4zwL4inkuhodzKWRbfbCCeAYjnj6gn8q83Fxum0erga3K+V9T3fTr/AOz9elQXF9cXdxIsQzGo3EDqcVy7yXHlMIjl8cVFbarFo48mcyPIfvvjgn0FeUpuS5T6FpXv1Ket+MAmnkNbPEeQA64ziuL8L+Im/tBXMZjSbIkB4wexrodX8WafNxNbmRY84DD7xIxXEnWLSFd4tWQk9MfyrdU3bYmcZR957Ho+r3+4HYRiuCMxkugc96vQRyXdnPdvuiGAyq1c8JVty0sjfLGCxPsKinvYxrT904rxTeFmjtBjG95Dj0JwP619KfAebd4bniz92Ukf5/Gvj2e8e8lMr4HUAD0JJ/rX1X+z5MZNK1GP/nnIp/76H/1q9ynHlSR8vVnzycj6KJAphOaaTTGatzC44tUZao2cVXaSgROZKjMvvVN5agaWgC/5gFHmj1rMM3fNJ51AH//U9/Bp+aiFPoOMdmim0UAOoptFAgJpDSGigD5g/aFk8u40dgedkp/Va+Z7PVrjTNRhv7dsPC4YfnyD9RX0N+0Xcg6jpNqOscEjn/gTAD+VfMEiuTuI4PA96hwTbuWpNbH1taaoLm1t7tAUFxGsi59DXRoEvbQwuoYHrWdp2iq/hmws34lggjAPcHaM1iJqd3ok/l3iHYD97sa+ZcfevE+rjVaS5ipqmi6ur/6LHvQfdzjisFNBvFuPtOoYG3k5Oa7668ZWbQhVwTXBar4gNyGSLgN1rXnqPQ6Kla8feZn3erSfvIkb5HPH4V5v4n1pkU6ZASGbBkPsecf411i/O+T2rzPxPxrM+e4Uj8hXfhacec8LF1XyaGVE2K+rP2dplNvrMGeQYm/D5hXyUjYP1r6a/Z4n26jqkWeGhU/k1eozx0fVjNUDvQ7VUkemSK8mOKpyS0ySTFUJJsUATPN71VefHeqUs9UHnPrSuBqm5FN+0isJrg0z7TSuM//V99FLUYPNPoOIdmjNJRQAuaM0lJmgANNJxmmSSLGpd2CqvJJOAPqa8z8V/FPw34eVraGX7ddspISEgqvpubp17CiwjwT44XKah40S1UnbaWyK59ySxx+eK858O6Vb6r4j0+0nwIVYuV/vbOQPxqXX9Zn13U7jVLkASTtuIHQAdAPpWVY30mm6ha38fWCQN+GeaVWL9nJLc1pNc65tj7Et9u3FVr6ytrpdkyBgexqtYXkd3aRXUJykqhh+NWHlBGTXzCXc+nWp5nrnhKKLdNZMR321wM1rLCxWQHIr266feSM8Vyd3pscpdmH41rGXczlBHmxYopZRkjtXBeLYSLyO5x8siBT9RXpWoQeQ5Velc1qFst3GYZE356D37V2UJ8skzgrw5otHmKgFgK+h/gO3keIbuPPEsA/9Crxu60JrGdGzlD1B9e9eg/DDUl0vxfaeYwSObdExPA+YcfqBXsWurnj7H2m7ACqEr4qZ2zVGZqQitLJisuaWp55KyZpOalgRyynmqEktEslZ8klQ2Ow95qj841UZ6Z5gqLsZ/9b3ing5qPNOBxQcI+imZNeZ+LfihoPhyKSC2kF7fLlRGh+VSP7zf0FOwM9BvtT0/TIftGoXEdtH/ekYDP09a8s1j41eFdPZorFZL5x3X5U/M8/pXzB4k8Wav4mvWu9TnLnnao4VB6KO1cmZDuq1HuFzt/F/xH8QeLb1knmMFop+WCMkKB7+p9zXFmQs2T1bn8BWchzcOO/FXF+8SeMcCq9BDmbBqOT50OO1E0scY3OcAVgXGpSM22H5V/nQxo+kfhprRnsjpcxy0PKZ9DXp118seSOtfHOkeJNU0ieO9s3CupzjHBHoa+m/A/j7RPGBTSdQQ2uokZAB+STHXaT0PtXiVcHLmvE9ili4pWkaSo8r8Dg1W1CEwQe5rub+wg05d9vGXA9TkVlQWsWuEb0ZFXqF/wAayeGnsb/W6bPIP7OlvrjYqliTgADNdbZeB/L+eZczt0Xrt/8Ar113iPUtG8B6K1+8S+e/yxR/xO3164HU15lafGbTZbaRtTtHt9o+UQnIc/U8iuyjhuXWR59bEc2kUcd8QrSDS72Cyj6rGXY+pY4H8q8xSZhJuU4NbninxJL4n1SXVMBEfCog/hVRgCuegXLZNemlZWOA+ifB3xZS0sI9O8RiSUx4WOdeTtA6MD1I9a9U0/xToet/Lpt0sj4zsPDfka+LpW2JkdiKsWWoXNjOlzayGOSM5VlOCDQ4gfZ879TWTM9eX+H/AImw3Kra658j9BMo4P8AvD+tegfaYbiITW7iSNuQynIrCSaBEc0nWs93qSVupqi7c1ztlis+aZuqIvSb6QH/1/dqKbRQcRyvjfxBH4b8NXmosR5hUxRD1kcYH5dfwr4PuZyZyC2c85PrX0H8edZZrqw0RG+WJDO4/wBp+B+QH6183XGSN1bJWRL1HSHBxUIOW5qPeXTnqKchyc0DKbSGO7O04JFUZLi8LkK55qxdHFyp9qkVRkGgCB7Vmh3SsWcjNVY7ZWi8wnJrcYArVCNdrvF2PIotqA8RoUAxxiiES2sqXFu7I8Z3KV4II75qVBxtoAI602gPpfwn4vuNc8PSfa3LXEAALdz2r0/wvbSw2IlumJMhyOe1fNfw2WSe9kskPyyMmR68/wD1q9t+JnihPDPhia2tH23U0flJjqu7gn8s1zcvvWNLnzR8TvEsmu+K75o5zLa27mGEZ+UKvBx9Tk1w15qTXLtJsVAQFCgcAD0quI3kOaGtyeK25bk3K8E5hf8A2T1FdBbuGwQc1jC2UGriho8eWdtWkJmtPzE49qowyb0Dd+9V2urlMq2DxUNs5ViG6GjqFjVDYrqvDnii70W4C7i9u5w8ZPH1Hoa5EcikB5oaT3EfT0F7BfW6XVs2+OQZBqN2rxvwr4kbS5/styc20p5/2T6j+teu+YrgOpDK3II6GuGcOVlpgTRmoyaM1FgP/9D2j7fYf8/MP/fxf8aPt9h/z8w/9/F/xr80aKDH2Z618VtVj1HxlqDpIrJE4iUggjCADj8c15m0iMuNw/OuRuf9c/1NV6vmJ9l5nVK65bkfnViNkCZ3D864unCjmD2Xmbt4wMqkEVaRkwpyOlcoetOFNSH7PzOwLrtHI/OqkpCOsgI4PPPrXN0hocg9n5nWBl7EfnTiycciuRoo5hez8z6J+EUluviBnuJESOJPMJZgPug+tVfipqX9o/ZZ2dT9rkkkUAg4jTCIP5mvDLP77fSkufux/Q/zqPtXH7PTc2FCr0Ipp28nIrnqKvmD2Xmb6lSc5FTAqO4/OuZFBp8wvZ+Zu5BnzkVMSnA4rnO9LS5h+y8zpQy+opscgLHkVzlIKOcPZeZ0jzKh6ivUPAusCezmtZ5APKYMm4j7p4/mK8KarNt1NTN3Vhqn5n1GbmHr5qf99D/Gj7VD/wA9U/76H+NfMxpK5+TzH7M//9k=", wt = ({
|
|
4180
4180
|
theme: r,
|
|
4181
4181
|
triggerLabel: e,
|
|
4182
4182
|
container: t
|
|
4183
4183
|
}) => {
|
|
4184
|
-
const [o, a] = T(!1), [l, i] = T(!1), [b, d] = T(!1), [
|
|
4184
|
+
const [o, a] = T(!1), [l, i] = T(!1), [b, d] = T(!1), [f, p] = T(!1), [A, I] = T([]), [P, j] = T(""), [B, H] = T(!1), [G, J] = T(!1), [Q, M] = T(null), [, _] = T("user"), [L, q] = T("bottom-right"), [y, O] = T({
|
|
4185
4185
|
isActive: !1,
|
|
4186
4186
|
toolName: null,
|
|
4187
4187
|
toolData: null
|
|
4188
|
-
}), [s,
|
|
4188
|
+
}), [s, W] = T({
|
|
4189
4189
|
session_id: null,
|
|
4190
4190
|
token: null,
|
|
4191
4191
|
expires_at: null,
|
|
@@ -4193,146 +4193,152 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4193
4193
|
lastError: null,
|
|
4194
4194
|
isPreloaded: !1,
|
|
4195
4195
|
isRefreshing: !1
|
|
4196
|
-
}), [
|
|
4196
|
+
}), [Z, ee] = T("idle"), [, X] = T(!1), w = le(null), m = le(null), z = le(o);
|
|
4197
|
+
z.current = o;
|
|
4198
|
+
const v = D((u) => {
|
|
4197
4199
|
const { newStatus: k } = u.data;
|
|
4198
|
-
|
|
4199
|
-
}, [
|
|
4200
|
+
ee(k), k === "preloading" || k === "connecting" ? z.current && p(!0) : k === "ready" ? (p(!1), d(!0)) : k === "error" && p(!1);
|
|
4201
|
+
}, []), ce = D((u) => {
|
|
4200
4202
|
const k = u.data;
|
|
4201
|
-
if (console.log("[AriaStandaloneUI] Session ready event:", k), w.current) {
|
|
4203
|
+
if (console.log("[AriaStandaloneUI] Session ready event:", k, "isOpen:", z.current), w.current) {
|
|
4202
4204
|
const F = w.current.getSessionState();
|
|
4203
|
-
|
|
4205
|
+
W(F);
|
|
4204
4206
|
const ne = k?.lazyInit === !0;
|
|
4205
|
-
k?.streamReady === !0 ? (
|
|
4207
|
+
k?.streamReady === !0 ? (m.current && (console.log("[AriaStandaloneUI] Attaching video stream after full session ready (streamReady=true)"), w.current.attachToVideoElement(m.current)), d(!0), p(!1), M(null)) : ne && k?.tokenReady ? z.current ? w.current.isAnamClientInitialized() || (console.log("[AriaStandaloneUI] Token received while widget is open, initializing Anam client"), p(!0), w.current.initializeSessionOnDemand().then(() => {
|
|
4208
|
+
console.log("[AriaStandaloneUI] Anam client initialized after token received"), p(!1), d(!0), M(null), m.current && w.current && (console.log("[AriaStandaloneUI] Attaching video stream after lazy init"), w.current.attachToVideoElement(m.current));
|
|
4209
|
+
}).catch((me) => {
|
|
4210
|
+
console.error("[AriaStandaloneUI] Failed to initialize Anam client:", me), p(!1), M(me instanceof Error ? me.message : "Failed to initialize session");
|
|
4211
|
+
})) : console.log("[AriaStandaloneUI] Token ready (lazy init), button enabled") : (m.current && (console.log("[AriaStandaloneUI] Attaching video stream (legacy event)"), w.current.attachToVideoElement(m.current)), d(!0), p(!1), M(null));
|
|
4206
4212
|
}
|
|
4207
|
-
}, []),
|
|
4213
|
+
}, []), de = D((u) => {
|
|
4208
4214
|
const k = u.error?.message || "Session error";
|
|
4209
|
-
if (console.error("[AriaStandaloneUI] Session error:", k), M(k),
|
|
4215
|
+
if (console.error("[AriaStandaloneUI] Session error:", k), M(k), p(!1), w.current) {
|
|
4210
4216
|
const F = w.current.getSessionState();
|
|
4211
|
-
|
|
4217
|
+
W(F);
|
|
4212
4218
|
}
|
|
4213
|
-
}, []),
|
|
4219
|
+
}, []), ge = D((u) => {
|
|
4214
4220
|
const { connected: k } = u.data;
|
|
4215
4221
|
if (d(k), !k && w.current) {
|
|
4216
4222
|
const F = w.current.getSessionState();
|
|
4217
|
-
|
|
4223
|
+
W(F);
|
|
4218
4224
|
}
|
|
4219
|
-
}, []),
|
|
4225
|
+
}, []), ae = D((u) => {
|
|
4220
4226
|
const { messages: k } = u.data;
|
|
4221
|
-
k &&
|
|
4222
|
-
}, []),
|
|
4227
|
+
k && I(k);
|
|
4228
|
+
}, []), R = D((u) => {
|
|
4223
4229
|
const { liveTranscript: k } = u.data;
|
|
4224
|
-
k !== void 0 &&
|
|
4225
|
-
}, []),
|
|
4230
|
+
k !== void 0 && j(k);
|
|
4231
|
+
}, []), V = D((u) => {
|
|
4226
4232
|
const k = u.data;
|
|
4227
|
-
|
|
4233
|
+
O({
|
|
4228
4234
|
isActive: k.isActive,
|
|
4229
4235
|
toolName: k.toolName,
|
|
4230
4236
|
toolData: k.toolData
|
|
4231
4237
|
});
|
|
4232
|
-
}, []),
|
|
4233
|
-
const k =
|
|
4234
|
-
|
|
4235
|
-
}, []),
|
|
4238
|
+
}, []), he = D((u) => {
|
|
4239
|
+
const k = m.current;
|
|
4240
|
+
m.current = u, u && w.current ? w.current.getVideoStream() !== null ? (console.log("[AriaStandaloneUI] Attaching video stream to element"), w.current.attachToVideoElement(u)) : console.log("[AriaStandaloneUI] Video element registered, waiting for stream to be ready") : !u && k && w.current && (console.log("[AriaStandaloneUI] Detaching video stream from element"), w.current.detachFromVideoElement(k));
|
|
4241
|
+
}, []), re = D((u = "user") => {
|
|
4236
4242
|
if (_(u), q(u === "websocket" ? "center" : "bottom-right"), a(!0), i(!1), M(null), !w.current) return;
|
|
4237
4243
|
const k = w.current.isSessionPaused();
|
|
4238
4244
|
if (console.log("[AriaStandaloneUI] openAssistant called, isPaused:", k), k) {
|
|
4239
|
-
|
|
4240
|
-
if (
|
|
4241
|
-
|
|
4242
|
-
const
|
|
4243
|
-
|
|
4245
|
+
p(!0), w.current.resumeSession().then((K) => {
|
|
4246
|
+
if (X(!1), K) {
|
|
4247
|
+
p(!1), d(!0);
|
|
4248
|
+
const me = w.current.getSessionState();
|
|
4249
|
+
W(me), I(w.current.getChatMessages()), m.current && w.current && (console.log("[AriaStandaloneUI] Attaching video stream after resume"), w.current.attachToVideoElement(m.current));
|
|
4244
4250
|
} else
|
|
4245
4251
|
w.current.hasSessionToken() ? w.current.initializeSessionOnDemand().then(() => {
|
|
4246
|
-
|
|
4247
|
-
const
|
|
4248
|
-
|
|
4249
|
-
}).catch((
|
|
4250
|
-
|
|
4252
|
+
p(!1), d(!0);
|
|
4253
|
+
const ke = w.current.getSessionState();
|
|
4254
|
+
W(ke), m.current && w.current && (console.log("[AriaStandaloneUI] Attaching video stream after initialization (from resume)"), w.current.attachToVideoElement(m.current));
|
|
4255
|
+
}).catch((ke) => {
|
|
4256
|
+
p(!1), M(ke instanceof Error ? ke.message : "Failed to start new session");
|
|
4251
4257
|
}) : w.current.isConnected() || w.current.connect();
|
|
4252
|
-
}).catch((
|
|
4253
|
-
|
|
4258
|
+
}).catch((K) => {
|
|
4259
|
+
p(!1), X(!1), M(K instanceof Error ? K.message : "Failed to resume session");
|
|
4254
4260
|
});
|
|
4255
4261
|
return;
|
|
4256
4262
|
}
|
|
4257
|
-
const F = w.current.isAnamClientInitialized(), ne = w.current.hasSessionToken(),
|
|
4258
|
-
console.log("[AriaStandaloneUI] openAssistant state check:", { isAnamReady: F, hasToken: ne, status:
|
|
4259
|
-
|
|
4260
|
-
const
|
|
4261
|
-
|
|
4262
|
-
}).catch((
|
|
4263
|
-
|
|
4263
|
+
const F = w.current.isAnamClientInitialized(), ne = w.current.hasSessionToken(), ye = w.current.getStatus();
|
|
4264
|
+
console.log("[AriaStandaloneUI] openAssistant state check:", { isAnamReady: F, hasToken: ne, status: ye, isPaused: !1 }), F && ye === "ready" ? (console.log("[AriaStandaloneUI] Anam already ready, attaching video"), p(!1), d(!0), m.current && w.current.attachToVideoElement(m.current)) : ne ? (console.log("[AriaStandaloneUI] Has token, calling initializeSessionOnDemand"), p(!0), w.current.initializeSessionOnDemand().then(() => {
|
|
4265
|
+
p(!1), d(!0);
|
|
4266
|
+
const K = w.current.getSessionState();
|
|
4267
|
+
W(K), m.current && w.current && (console.log("[AriaStandaloneUI] Attaching video stream after initialization"), w.current.attachToVideoElement(m.current));
|
|
4268
|
+
}).catch((K) => {
|
|
4269
|
+
p(!1), M(K instanceof Error ? K.message : "Failed to initialize session");
|
|
4264
4270
|
})) : (console.warn("[AriaStandaloneUI] No token available, button should have been disabled"), M("Session not ready. Please wait and try again."));
|
|
4265
|
-
}, []),
|
|
4271
|
+
}, []), C = D(() => {
|
|
4266
4272
|
i(!0);
|
|
4267
|
-
}, []),
|
|
4273
|
+
}, []), ue = D(() => {
|
|
4268
4274
|
i(!1);
|
|
4269
|
-
}, []),
|
|
4270
|
-
a(!1), i(!1), w.current && (
|
|
4271
|
-
}, []), ie =
|
|
4272
|
-
console.log("[AriaStandaloneUI] WebSocket trigger event"),
|
|
4273
|
-
}, [
|
|
4274
|
-
|
|
4275
|
+
}, []), te = D(() => {
|
|
4276
|
+
a(!1), i(!1), w.current && (m.current && w.current.detachFromVideoElement(m.current), j(""), console.log("[AriaStandaloneUI] Pausing session (widget closed)"), w.current.pauseSession(), X(!0));
|
|
4277
|
+
}, []), ie = D(() => {
|
|
4278
|
+
console.log("[AriaStandaloneUI] WebSocket trigger event"), re("websocket");
|
|
4279
|
+
}, [re]);
|
|
4280
|
+
$(() => {
|
|
4275
4281
|
if (!U.hasInstance()) {
|
|
4276
4282
|
console.error("[AriaStandaloneUI] AriaSessionManager not initialized");
|
|
4277
4283
|
return;
|
|
4278
4284
|
}
|
|
4279
4285
|
const u = U.getInstance({});
|
|
4280
|
-
return w.current = u, u.addEventListener("status_change",
|
|
4281
|
-
|
|
4286
|
+
return w.current = u, u.addEventListener("status_change", v), u.addEventListener("session_ready", ce), u.addEventListener("session_error", de), u.addEventListener("connection_change", ge), u.addEventListener("message_history", ae), u.addEventListener("message_stream", R), u.addEventListener("tool_call", V), u.setWebSocketTriggerCallback(ie), queueMicrotask(() => {
|
|
4287
|
+
W(u.getSessionState()), ee(u.getStatus()), d(u.isConnected()), I(u.getChatMessages()), j(u.getLiveTranscript()), J(u.isMuted()), X(u.isSessionPaused());
|
|
4282
4288
|
const F = u.getToolCallState();
|
|
4283
|
-
|
|
4289
|
+
O(F);
|
|
4284
4290
|
}), () => {
|
|
4285
|
-
u.removeEventListener("status_change",
|
|
4291
|
+
u.removeEventListener("status_change", v), u.removeEventListener("session_ready", ce), u.removeEventListener("session_error", de), u.removeEventListener("connection_change", ge), u.removeEventListener("message_history", ae), u.removeEventListener("message_stream", R), u.removeEventListener("tool_call", V), u.setWebSocketTriggerCallback(null);
|
|
4286
4292
|
};
|
|
4287
4293
|
}, [
|
|
4288
|
-
H,
|
|
4289
4294
|
v,
|
|
4290
|
-
le,
|
|
4291
4295
|
ce,
|
|
4292
4296
|
de,
|
|
4293
|
-
|
|
4297
|
+
ge,
|
|
4298
|
+
ae,
|
|
4294
4299
|
R,
|
|
4300
|
+
V,
|
|
4295
4301
|
ie
|
|
4296
|
-
]),
|
|
4297
|
-
const u = (
|
|
4298
|
-
|
|
4302
|
+
]), $(() => {
|
|
4303
|
+
const u = (ye) => {
|
|
4304
|
+
re(ye.detail?.mode || "user");
|
|
4299
4305
|
}, k = () => {
|
|
4300
|
-
|
|
4306
|
+
te();
|
|
4301
4307
|
}, F = () => {
|
|
4302
|
-
ae();
|
|
4303
|
-
}, ne = () => {
|
|
4304
4308
|
C();
|
|
4309
|
+
}, ne = () => {
|
|
4310
|
+
ue();
|
|
4305
4311
|
};
|
|
4306
4312
|
return window.addEventListener("aria:open", u), window.addEventListener("aria:close", k), window.addEventListener("aria:minimize", F), window.addEventListener("aria:maximize", ne), () => {
|
|
4307
4313
|
window.removeEventListener("aria:open", u), window.removeEventListener("aria:close", k), window.removeEventListener("aria:minimize", F), window.removeEventListener("aria:maximize", ne);
|
|
4308
4314
|
};
|
|
4309
|
-
}, [
|
|
4315
|
+
}, [re, te, C, ue]), $(() => {
|
|
4310
4316
|
t.setAttribute("data-aria-open", String(o));
|
|
4311
4317
|
}, [o, t]);
|
|
4312
|
-
const
|
|
4313
|
-
|
|
4314
|
-
}, []),
|
|
4318
|
+
const ve = D(() => {
|
|
4319
|
+
H((u) => !u);
|
|
4320
|
+
}, []), pe = D(async (u) => {
|
|
4315
4321
|
if (!w.current || !b)
|
|
4316
4322
|
throw new Error("Not connected to Aria");
|
|
4317
4323
|
await w.current.sendMessage(u);
|
|
4318
|
-
}, [b]),
|
|
4324
|
+
}, [b]), cr = D(() => {
|
|
4319
4325
|
if (!w.current) return;
|
|
4320
4326
|
const u = w.current.toggleMute();
|
|
4321
|
-
|
|
4322
|
-
}, []),
|
|
4323
|
-
w.current && (
|
|
4324
|
-
M(u instanceof Error ? u.message : "Failed to refresh session"),
|
|
4327
|
+
J(u);
|
|
4328
|
+
}, []), dr = D(() => {
|
|
4329
|
+
w.current && (p(!0), M(null), w.current.refreshSession().catch((u) => {
|
|
4330
|
+
M(u instanceof Error ? u.message : "Failed to refresh session"), p(!1);
|
|
4325
4331
|
}));
|
|
4326
4332
|
}, []);
|
|
4327
4333
|
return /* @__PURE__ */ E(He, { children: [
|
|
4328
|
-
!o && /* @__PURE__ */ n(
|
|
4329
|
-
|
|
4334
|
+
!o && s.token !== null && /* @__PURE__ */ n(
|
|
4335
|
+
bt,
|
|
4330
4336
|
{
|
|
4331
4337
|
showAvatar: !0,
|
|
4332
4338
|
label: e,
|
|
4333
4339
|
theme: r,
|
|
4334
|
-
isReady: s.isPreloaded ||
|
|
4335
|
-
onClick: () =>
|
|
4340
|
+
isReady: s.isPreloaded || Z === "ready" || Z === "connected" && s.token !== null,
|
|
4341
|
+
onClick: () => re("user")
|
|
4336
4342
|
}
|
|
4337
4343
|
),
|
|
4338
4344
|
o && /* @__PURE__ */ E(He, { children: [
|
|
@@ -4340,7 +4346,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4340
4346
|
"div",
|
|
4341
4347
|
{
|
|
4342
4348
|
onClick: (u) => {
|
|
4343
|
-
u.preventDefault(), u.stopPropagation(),
|
|
4349
|
+
u.preventDefault(), u.stopPropagation(), C();
|
|
4344
4350
|
},
|
|
4345
4351
|
style: {
|
|
4346
4352
|
position: "fixed",
|
|
@@ -4365,35 +4371,35 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4365
4371
|
pointerEvents: "none"
|
|
4366
4372
|
},
|
|
4367
4373
|
children: /* @__PURE__ */ n("div", { style: { pointerEvents: "auto" }, children: /* @__PURE__ */ n(
|
|
4368
|
-
|
|
4374
|
+
vt,
|
|
4369
4375
|
{
|
|
4370
|
-
onClose:
|
|
4376
|
+
onClose: te,
|
|
4371
4377
|
isMinimized: l,
|
|
4372
|
-
onMinimize:
|
|
4373
|
-
onMaximize:
|
|
4378
|
+
onMinimize: C,
|
|
4379
|
+
onMaximize: ue,
|
|
4374
4380
|
theme: r,
|
|
4375
4381
|
displayMode: L,
|
|
4376
4382
|
isConnected: b,
|
|
4377
|
-
isLoading:
|
|
4383
|
+
isLoading: f,
|
|
4378
4384
|
chatMessages: A,
|
|
4379
|
-
liveTranscript:
|
|
4380
|
-
isChatVisible:
|
|
4385
|
+
liveTranscript: P,
|
|
4386
|
+
isChatVisible: B,
|
|
4381
4387
|
isMuted: G,
|
|
4382
4388
|
error: Q,
|
|
4383
4389
|
toolCallState: y,
|
|
4384
4390
|
sessionState: s,
|
|
4385
|
-
setVideoElement:
|
|
4386
|
-
toggleChat:
|
|
4387
|
-
sendMessage:
|
|
4388
|
-
toggleMute:
|
|
4389
|
-
refreshSession:
|
|
4391
|
+
setVideoElement: he,
|
|
4392
|
+
toggleChat: ve,
|
|
4393
|
+
sendMessage: pe,
|
|
4394
|
+
toggleMute: cr,
|
|
4395
|
+
refreshSession: dr
|
|
4390
4396
|
}
|
|
4391
4397
|
) })
|
|
4392
4398
|
}
|
|
4393
4399
|
)
|
|
4394
4400
|
] })
|
|
4395
4401
|
] });
|
|
4396
|
-
},
|
|
4402
|
+
}, bt = ({
|
|
4397
4403
|
showAvatar: r = !0,
|
|
4398
4404
|
label: e,
|
|
4399
4405
|
theme: t,
|
|
@@ -4447,7 +4453,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4447
4453
|
/* @__PURE__ */ n(
|
|
4448
4454
|
"img",
|
|
4449
4455
|
{
|
|
4450
|
-
src:
|
|
4456
|
+
src: Te,
|
|
4451
4457
|
alt: i,
|
|
4452
4458
|
className: "w-full h-full object-cover",
|
|
4453
4459
|
onError: (b) => {
|
|
@@ -4461,7 +4467,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4461
4467
|
"div",
|
|
4462
4468
|
{
|
|
4463
4469
|
className: "hidden w-full h-full items-center justify-center aria-gradient-bg text-white",
|
|
4464
|
-
children: /* @__PURE__ */ n(
|
|
4470
|
+
children: /* @__PURE__ */ n(Re, { className: "w-4 h-4" })
|
|
4465
4471
|
}
|
|
4466
4472
|
),
|
|
4467
4473
|
/* @__PURE__ */ n("span", { className: c(
|
|
@@ -4475,7 +4481,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4475
4481
|
"transition-transform duration-200",
|
|
4476
4482
|
o && "group-hover:scale-105",
|
|
4477
4483
|
!o && "grayscale"
|
|
4478
|
-
), children: /* @__PURE__ */ n(
|
|
4484
|
+
), children: /* @__PURE__ */ n(Re, { className: "w-4 h-4" }) }),
|
|
4479
4485
|
/* @__PURE__ */ E("div", { className: "relative flex flex-col items-start min-w-0 text-left", children: [
|
|
4480
4486
|
/* @__PURE__ */ n("span", { className: c(
|
|
4481
4487
|
"font-bold text-[13px] tracking-tight leading-none",
|
|
@@ -4492,7 +4498,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4492
4498
|
) })
|
|
4493
4499
|
}
|
|
4494
4500
|
);
|
|
4495
|
-
},
|
|
4501
|
+
}, vt = ({
|
|
4496
4502
|
onClose: r,
|
|
4497
4503
|
isMinimized: e,
|
|
4498
4504
|
onMinimize: t,
|
|
@@ -4502,39 +4508,39 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4502
4508
|
isConnected: i,
|
|
4503
4509
|
isLoading: b,
|
|
4504
4510
|
chatMessages: d,
|
|
4505
|
-
liveTranscript:
|
|
4506
|
-
isChatVisible:
|
|
4511
|
+
liveTranscript: f,
|
|
4512
|
+
isChatVisible: p,
|
|
4507
4513
|
isMuted: A,
|
|
4508
|
-
error:
|
|
4509
|
-
toolCallState:
|
|
4510
|
-
setVideoElement:
|
|
4511
|
-
toggleChat:
|
|
4512
|
-
sendMessage:
|
|
4514
|
+
error: I,
|
|
4515
|
+
toolCallState: P,
|
|
4516
|
+
setVideoElement: j,
|
|
4517
|
+
toggleChat: B,
|
|
4518
|
+
sendMessage: H,
|
|
4513
4519
|
toggleMute: G,
|
|
4514
|
-
refreshSession:
|
|
4520
|
+
refreshSession: J
|
|
4515
4521
|
}) => {
|
|
4516
|
-
const Q =
|
|
4517
|
-
|
|
4522
|
+
const Q = le(null), M = le(null), [_, L] = T(""), [q, y] = T(!1), O = le(null), s = a === "dark", W = l === "bottom-right", Z = l === "center";
|
|
4523
|
+
$(() => {
|
|
4518
4524
|
M.current && (M.current.scrollTop = M.current.scrollHeight);
|
|
4519
|
-
}, [
|
|
4520
|
-
|
|
4521
|
-
}), [
|
|
4522
|
-
|
|
4525
|
+
}, [f]), $(() => (Q.current && (console.log("[AriaWidgetStandalone] Registering video element, minimized:", e), j(Q.current)), () => {
|
|
4526
|
+
j(null);
|
|
4527
|
+
}), [j, e]), $(() => {
|
|
4528
|
+
O.current?.scrollIntoView({ behavior: "smooth" });
|
|
4523
4529
|
}, [d]);
|
|
4524
|
-
const
|
|
4530
|
+
const ee = async () => {
|
|
4525
4531
|
if (!_.trim() || !i || q) return;
|
|
4526
|
-
const
|
|
4532
|
+
const m = _.trim();
|
|
4527
4533
|
L(""), y(!0);
|
|
4528
4534
|
try {
|
|
4529
|
-
await
|
|
4530
|
-
} catch (
|
|
4531
|
-
console.error("Failed to send message:",
|
|
4535
|
+
await H(m);
|
|
4536
|
+
} catch (z) {
|
|
4537
|
+
console.error("Failed to send message:", z), L(m);
|
|
4532
4538
|
} finally {
|
|
4533
4539
|
y(!1);
|
|
4534
4540
|
}
|
|
4535
|
-
},
|
|
4536
|
-
|
|
4537
|
-
}, w = (
|
|
4541
|
+
}, X = (m) => {
|
|
4542
|
+
m.key === "Enter" && !m.shiftKey && (m.preventDefault(), ee());
|
|
4543
|
+
}, w = (m) => new Date(m).toLocaleTimeString("en-US", {
|
|
4538
4544
|
hour: "2-digit",
|
|
4539
4545
|
minute: "2-digit"
|
|
4540
4546
|
});
|
|
@@ -4568,7 +4574,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4568
4574
|
className: "w-full h-full object-cover"
|
|
4569
4575
|
}
|
|
4570
4576
|
),
|
|
4571
|
-
|
|
4577
|
+
P.isActive && i && /* @__PURE__ */ E(
|
|
4572
4578
|
"div",
|
|
4573
4579
|
{
|
|
4574
4580
|
className: c(
|
|
@@ -4589,11 +4595,11 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4589
4595
|
/* @__PURE__ */ n("span", { className: c(
|
|
4590
4596
|
"text-[10px] font-semibold",
|
|
4591
4597
|
s ? "text-amber-200" : "text-amber-800"
|
|
4592
|
-
), children:
|
|
4598
|
+
), children: P.toolName ? P.toolName.replace(/_/g, " ") : "Processing..." })
|
|
4593
4599
|
]
|
|
4594
4600
|
}
|
|
4595
4601
|
),
|
|
4596
|
-
i && !
|
|
4602
|
+
i && !I && /* @__PURE__ */ E(
|
|
4597
4603
|
"div",
|
|
4598
4604
|
{
|
|
4599
4605
|
className: c(
|
|
@@ -4627,7 +4633,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4627
4633
|
s ? "bg-indigo-600 hover:bg-indigo-700 text-white" : "bg-indigo-500 hover:bg-indigo-600 text-white"
|
|
4628
4634
|
),
|
|
4629
4635
|
title: "Maximize",
|
|
4630
|
-
children: /* @__PURE__ */ n(
|
|
4636
|
+
children: /* @__PURE__ */ n(gr, { className: "h-3.5 w-3.5" })
|
|
4631
4637
|
}
|
|
4632
4638
|
),
|
|
4633
4639
|
/* @__PURE__ */ n(
|
|
@@ -4660,11 +4666,11 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4660
4666
|
), children: /* @__PURE__ */ n(
|
|
4661
4667
|
"img",
|
|
4662
4668
|
{
|
|
4663
|
-
src:
|
|
4669
|
+
src: Te,
|
|
4664
4670
|
alt: "Aria",
|
|
4665
4671
|
className: "w-full h-full object-cover",
|
|
4666
|
-
onError: (
|
|
4667
|
-
|
|
4672
|
+
onError: (m) => {
|
|
4673
|
+
m.currentTarget.style.display = "none";
|
|
4668
4674
|
}
|
|
4669
4675
|
}
|
|
4670
4676
|
) })
|
|
@@ -4674,7 +4680,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4674
4680
|
s ? "text-gray-400" : "text-gray-600"
|
|
4675
4681
|
), children: "Connecting..." })
|
|
4676
4682
|
] }),
|
|
4677
|
-
|
|
4683
|
+
I && /* @__PURE__ */ E("div", { className: c(
|
|
4678
4684
|
"absolute inset-0 flex flex-col items-center justify-center z-10 p-4",
|
|
4679
4685
|
s ? "bg-gray-950/90" : "bg-white/90"
|
|
4680
4686
|
), children: [
|
|
@@ -4686,7 +4692,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4686
4692
|
/* @__PURE__ */ E(
|
|
4687
4693
|
"button",
|
|
4688
4694
|
{
|
|
4689
|
-
onClick:
|
|
4695
|
+
onClick: J,
|
|
4690
4696
|
className: c(
|
|
4691
4697
|
"inline-flex items-center gap-1.5 px-3 py-1.5 rounded-lg text-xs font-medium",
|
|
4692
4698
|
"transition-all duration-200",
|
|
@@ -4710,10 +4716,10 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4710
4716
|
"shadow-2xl",
|
|
4711
4717
|
!s && "bg-white/95 border border-gray-200/80",
|
|
4712
4718
|
s && "bg-gray-950/95 border border-gray-800/50",
|
|
4713
|
-
|
|
4714
|
-
|
|
4715
|
-
|
|
4716
|
-
|
|
4719
|
+
W && "fixed bottom-6 right-6 rounded-xl",
|
|
4720
|
+
W && (p ? "w-[960px]" : "w-[640px]"),
|
|
4721
|
+
W && "h-[500px]",
|
|
4722
|
+
Z && "fixed inset-8 md:inset-16 lg:inset-20 rounded-2xl"
|
|
4717
4723
|
),
|
|
4718
4724
|
style: {
|
|
4719
4725
|
zIndex: 9999,
|
|
@@ -4724,7 +4730,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4724
4730
|
/* @__PURE__ */ E("div", { className: c(
|
|
4725
4731
|
"relative flex items-center justify-center overflow-hidden",
|
|
4726
4732
|
s ? "bg-gradient-to-br from-gray-900 to-black" : "bg-gradient-to-br from-gray-100 to-gray-50",
|
|
4727
|
-
|
|
4733
|
+
p ? "flex-1" : "w-full"
|
|
4728
4734
|
), children: [
|
|
4729
4735
|
b && /* @__PURE__ */ E("div", { className: c(
|
|
4730
4736
|
"absolute inset-0 flex flex-col items-center justify-center z-10",
|
|
@@ -4763,11 +4769,11 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4763
4769
|
), children: /* @__PURE__ */ n(
|
|
4764
4770
|
"img",
|
|
4765
4771
|
{
|
|
4766
|
-
src:
|
|
4772
|
+
src: Te,
|
|
4767
4773
|
alt: "Aria",
|
|
4768
4774
|
className: "w-full h-full object-cover",
|
|
4769
|
-
onError: (
|
|
4770
|
-
|
|
4775
|
+
onError: (m) => {
|
|
4776
|
+
m.currentTarget.style.display = "none";
|
|
4771
4777
|
}
|
|
4772
4778
|
}
|
|
4773
4779
|
) })
|
|
@@ -4776,7 +4782,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4776
4782
|
"text-2xl font-bold tracking-tight mb-2",
|
|
4777
4783
|
s ? "text-white" : "text-gray-900"
|
|
4778
4784
|
), children: "Aria is joining..." }),
|
|
4779
|
-
/* @__PURE__ */ n("div", { className: "flex items-center gap-1.5 mb-6", children: [0, 1, 2].map((
|
|
4785
|
+
/* @__PURE__ */ n("div", { className: "flex items-center gap-1.5 mb-6", children: [0, 1, 2].map((m) => /* @__PURE__ */ n(
|
|
4780
4786
|
"div",
|
|
4781
4787
|
{
|
|
4782
4788
|
className: c(
|
|
@@ -4785,10 +4791,10 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4785
4791
|
),
|
|
4786
4792
|
style: {
|
|
4787
4793
|
animation: "aria-loading-bounce 1.4s ease-in-out infinite",
|
|
4788
|
-
animationDelay: `${
|
|
4794
|
+
animationDelay: `${m * 0.15}s`
|
|
4789
4795
|
}
|
|
4790
4796
|
},
|
|
4791
|
-
|
|
4797
|
+
m
|
|
4792
4798
|
)) }),
|
|
4793
4799
|
/* @__PURE__ */ n("p", { className: c(
|
|
4794
4800
|
"text-sm font-medium px-4 py-2 rounded-full",
|
|
@@ -4796,7 +4802,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4796
4802
|
), children: "Get ready to chat" })
|
|
4797
4803
|
] })
|
|
4798
4804
|
] }),
|
|
4799
|
-
|
|
4805
|
+
I && /* @__PURE__ */ n(
|
|
4800
4806
|
"div",
|
|
4801
4807
|
{
|
|
4802
4808
|
className: c(
|
|
@@ -4817,11 +4823,11 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4817
4823
|
/* @__PURE__ */ n("p", { className: c(
|
|
4818
4824
|
"text-sm leading-relaxed mb-4",
|
|
4819
4825
|
s ? "text-red-400" : "text-red-600"
|
|
4820
|
-
), children:
|
|
4826
|
+
), children: I }),
|
|
4821
4827
|
/* @__PURE__ */ E(
|
|
4822
4828
|
"button",
|
|
4823
4829
|
{
|
|
4824
|
-
onClick:
|
|
4830
|
+
onClick: J,
|
|
4825
4831
|
className: c(
|
|
4826
4832
|
"inline-flex items-center gap-2 px-4 py-2 rounded-lg text-sm font-medium",
|
|
4827
4833
|
"transition-all duration-200",
|
|
@@ -4846,7 +4852,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4846
4852
|
className: "w-full h-full object-contain"
|
|
4847
4853
|
}
|
|
4848
4854
|
),
|
|
4849
|
-
|
|
4855
|
+
P.isActive && i && /* @__PURE__ */ E(
|
|
4850
4856
|
"div",
|
|
4851
4857
|
{
|
|
4852
4858
|
className: c(
|
|
@@ -4868,13 +4874,13 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4868
4874
|
/* @__PURE__ */ n("span", { className: c(
|
|
4869
4875
|
"text-xs font-semibold",
|
|
4870
4876
|
s ? "text-amber-200" : "text-amber-800"
|
|
4871
|
-
), children:
|
|
4877
|
+
), children: P.toolName ? `Running: ${P.toolName.replace(/_/g, " ")}` : "Processing..." }),
|
|
4872
4878
|
/* @__PURE__ */ n("span", { className: c(
|
|
4873
4879
|
"text-[10px]",
|
|
4874
4880
|
s ? "text-amber-400" : "text-amber-600"
|
|
4875
4881
|
), children: "Please wait..." })
|
|
4876
4882
|
] }),
|
|
4877
|
-
/* @__PURE__ */ n("div", { className: "flex items-center gap-0.5 ml-1", children: [0, 1, 2].map((
|
|
4883
|
+
/* @__PURE__ */ n("div", { className: "flex items-center gap-0.5 ml-1", children: [0, 1, 2].map((m) => /* @__PURE__ */ n(
|
|
4878
4884
|
"div",
|
|
4879
4885
|
{
|
|
4880
4886
|
className: c(
|
|
@@ -4883,15 +4889,15 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4883
4889
|
),
|
|
4884
4890
|
style: {
|
|
4885
4891
|
animation: "aria-loading-bounce 1.4s ease-in-out infinite",
|
|
4886
|
-
animationDelay: `${
|
|
4892
|
+
animationDelay: `${m * 0.15}s`
|
|
4887
4893
|
}
|
|
4888
4894
|
},
|
|
4889
|
-
|
|
4895
|
+
m
|
|
4890
4896
|
)) })
|
|
4891
4897
|
]
|
|
4892
4898
|
}
|
|
4893
4899
|
),
|
|
4894
|
-
|
|
4900
|
+
f && i && !P.isActive && /* @__PURE__ */ n(
|
|
4895
4901
|
"div",
|
|
4896
4902
|
{
|
|
4897
4903
|
className: c(
|
|
@@ -4902,11 +4908,11 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4902
4908
|
style: { backdropFilter: "blur(4px)" },
|
|
4903
4909
|
children: /* @__PURE__ */ E("div", { className: "flex items-start gap-2 max-w-full", children: [
|
|
4904
4910
|
/* @__PURE__ */ n("div", { className: "w-1.5 h-1.5 rounded-full bg-emerald-400 animate-pulse shrink-0 mt-1" }),
|
|
4905
|
-
/* @__PURE__ */ n("p", { ref: M, className: "text-xs leading-relaxed flex-1 max-h-[3.5em] overflow-y-auto scrollbar-hide", children:
|
|
4911
|
+
/* @__PURE__ */ n("p", { ref: M, className: "text-xs leading-relaxed flex-1 max-h-[3.5em] overflow-y-auto scrollbar-hide", children: f })
|
|
4906
4912
|
] })
|
|
4907
4913
|
}
|
|
4908
4914
|
),
|
|
4909
|
-
i && !
|
|
4915
|
+
i && !I && /* @__PURE__ */ E(
|
|
4910
4916
|
"div",
|
|
4911
4917
|
{
|
|
4912
4918
|
className: c(
|
|
@@ -4920,13 +4926,13 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4920
4926
|
/* @__PURE__ */ n(
|
|
4921
4927
|
"button",
|
|
4922
4928
|
{
|
|
4923
|
-
onClick:
|
|
4929
|
+
onClick: B,
|
|
4924
4930
|
className: c(
|
|
4925
4931
|
"w-9 h-9 rounded-full flex items-center justify-center transition-all duration-200",
|
|
4926
4932
|
"border-0 outline-none focus:outline-none shadow-sm",
|
|
4927
|
-
|
|
4933
|
+
p ? s ? "bg-indigo-600 hover:bg-indigo-700 text-white" : "bg-indigo-500 hover:bg-indigo-600 text-white" : s ? "bg-gray-800/80 hover:bg-gray-700 text-gray-300" : "bg-gray-100/80 hover:bg-gray-200 text-gray-600"
|
|
4928
4934
|
),
|
|
4929
|
-
title:
|
|
4935
|
+
title: p ? "Hide Chat" : "Show Chat",
|
|
4930
4936
|
children: /* @__PURE__ */ n(Fe, { className: "h-4 w-4" })
|
|
4931
4937
|
}
|
|
4932
4938
|
),
|
|
@@ -4953,7 +4959,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4953
4959
|
s ? "bg-gray-800/80 hover:bg-gray-700 text-gray-300" : "bg-gray-100/80 hover:bg-gray-200 text-gray-600"
|
|
4954
4960
|
),
|
|
4955
4961
|
title: "Minimize",
|
|
4956
|
-
children: /* @__PURE__ */ n(
|
|
4962
|
+
children: /* @__PURE__ */ n(hr, { className: "h-4 w-4" })
|
|
4957
4963
|
}
|
|
4958
4964
|
),
|
|
4959
4965
|
/* @__PURE__ */ n(
|
|
@@ -4969,9 +4975,9 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4969
4975
|
}
|
|
4970
4976
|
)
|
|
4971
4977
|
] }),
|
|
4972
|
-
|
|
4978
|
+
p && /* @__PURE__ */ E("div", { className: c(
|
|
4973
4979
|
"flex flex-col shrink-0 border-l",
|
|
4974
|
-
|
|
4980
|
+
W ? "w-[320px]" : "w-[360px]",
|
|
4975
4981
|
s ? "bg-gray-900 border-gray-800" : "bg-white border-gray-100"
|
|
4976
4982
|
), children: [
|
|
4977
4983
|
/* @__PURE__ */ n("div", { className: c(
|
|
@@ -4998,7 +5004,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
4998
5004
|
/* @__PURE__ */ n("div", { className: c(
|
|
4999
5005
|
"rounded-2xl p-6 mb-4",
|
|
5000
5006
|
s ? "bg-gradient-to-br from-indigo-900/20 to-purple-900/20" : "bg-gradient-to-br from-indigo-50 to-purple-50"
|
|
5001
|
-
), children: /* @__PURE__ */ n(
|
|
5007
|
+
), children: /* @__PURE__ */ n(Re, { className: c(
|
|
5002
5008
|
"h-8 w-8",
|
|
5003
5009
|
s ? "text-indigo-400" : "text-indigo-500"
|
|
5004
5010
|
) }) }),
|
|
@@ -5010,23 +5016,23 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
5010
5016
|
"text-xs",
|
|
5011
5017
|
s ? "text-gray-400" : "text-gray-500"
|
|
5012
5018
|
), children: "Aria is here to chat with you" })
|
|
5013
|
-
] }) : d.filter((
|
|
5019
|
+
] }) : d.filter((m) => m.content && m.content.trim() !== "").map((m, z) => /* @__PURE__ */ E(
|
|
5014
5020
|
"div",
|
|
5015
5021
|
{
|
|
5016
5022
|
className: c(
|
|
5017
5023
|
"flex gap-2 aria-animate-fade-in",
|
|
5018
|
-
|
|
5024
|
+
m.role === "user" ? "flex-row-reverse" : "flex-row"
|
|
5019
5025
|
),
|
|
5020
|
-
style: { animationDelay: `${
|
|
5026
|
+
style: { animationDelay: `${z * 50}ms` },
|
|
5021
5027
|
children: [
|
|
5022
5028
|
/* @__PURE__ */ n(
|
|
5023
5029
|
"div",
|
|
5024
5030
|
{
|
|
5025
5031
|
className: c(
|
|
5026
5032
|
"shrink-0 w-6 h-6 rounded-full flex items-center justify-center",
|
|
5027
|
-
|
|
5033
|
+
m.role === "user" ? "bg-indigo-500 text-white" : s ? "bg-gray-700 text-gray-300" : "bg-gray-200 text-gray-600"
|
|
5028
5034
|
),
|
|
5029
|
-
children:
|
|
5035
|
+
children: m.role === "user" ? /* @__PURE__ */ n(ur, { className: "h-3 w-3" }) : /* @__PURE__ */ n(pr, { className: "h-3 w-3" })
|
|
5030
5036
|
}
|
|
5031
5037
|
),
|
|
5032
5038
|
/* @__PURE__ */ E(
|
|
@@ -5034,7 +5040,7 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
5034
5040
|
{
|
|
5035
5041
|
className: c(
|
|
5036
5042
|
"flex flex-col max-w-[80%]",
|
|
5037
|
-
|
|
5043
|
+
m.role === "user" ? "items-end" : "items-start"
|
|
5038
5044
|
),
|
|
5039
5045
|
children: [
|
|
5040
5046
|
/* @__PURE__ */ n(
|
|
@@ -5042,26 +5048,26 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
5042
5048
|
{
|
|
5043
5049
|
className: c(
|
|
5044
5050
|
"px-3 py-2 rounded-2xl",
|
|
5045
|
-
|
|
5051
|
+
m.role === "user" ? "bg-indigo-500 text-white rounded-br-md" : s ? "bg-gray-800 text-gray-100 rounded-bl-md" : "bg-white shadow-sm text-gray-800 rounded-bl-md"
|
|
5046
5052
|
),
|
|
5047
5053
|
children: /* @__PURE__ */ n("p", { className: c(
|
|
5048
5054
|
"text-xs leading-relaxed break-words",
|
|
5049
|
-
|
|
5050
|
-
), children:
|
|
5055
|
+
m.role === "user" && "text-white"
|
|
5056
|
+
), children: m.content })
|
|
5051
5057
|
}
|
|
5052
5058
|
),
|
|
5053
5059
|
/* @__PURE__ */ n("span", { className: c(
|
|
5054
5060
|
"text-[9px] mt-1 px-1",
|
|
5055
5061
|
s ? "text-gray-500" : "text-gray-400"
|
|
5056
|
-
), children: w(
|
|
5062
|
+
), children: w(m.timestamp) })
|
|
5057
5063
|
]
|
|
5058
5064
|
}
|
|
5059
5065
|
)
|
|
5060
5066
|
]
|
|
5061
5067
|
},
|
|
5062
|
-
|
|
5068
|
+
z
|
|
5063
5069
|
)),
|
|
5064
|
-
/* @__PURE__ */ n("div", { ref:
|
|
5070
|
+
/* @__PURE__ */ n("div", { ref: O })
|
|
5065
5071
|
] }),
|
|
5066
5072
|
/* @__PURE__ */ n("div", { className: c(
|
|
5067
5073
|
"p-3 border-t",
|
|
@@ -5074,8 +5080,8 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
5074
5080
|
"input",
|
|
5075
5081
|
{
|
|
5076
5082
|
value: _,
|
|
5077
|
-
onChange: (
|
|
5078
|
-
onKeyDown:
|
|
5083
|
+
onChange: (m) => L(m.target.value),
|
|
5084
|
+
onKeyDown: X,
|
|
5079
5085
|
placeholder: i ? "Message Aria..." : "Connecting...",
|
|
5080
5086
|
disabled: !i || q,
|
|
5081
5087
|
className: c(
|
|
@@ -5087,13 +5093,13 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
5087
5093
|
/* @__PURE__ */ n(
|
|
5088
5094
|
"button",
|
|
5089
5095
|
{
|
|
5090
|
-
onClick:
|
|
5096
|
+
onClick: ee,
|
|
5091
5097
|
disabled: !i || !_.trim() || q,
|
|
5092
5098
|
className: c(
|
|
5093
5099
|
"h-7 w-7 rounded-md shrink-0 transition-all duration-200 flex items-center justify-center",
|
|
5094
5100
|
"bg-indigo-500 hover:bg-indigo-600 disabled:opacity-40 text-white"
|
|
5095
5101
|
),
|
|
5096
|
-
children: /* @__PURE__ */ n(
|
|
5102
|
+
children: /* @__PURE__ */ n(mr, { className: "h-3.5 w-3.5" })
|
|
5097
5103
|
}
|
|
5098
5104
|
)
|
|
5099
5105
|
] }) })
|
|
@@ -5101,16 +5107,16 @@ const Ie = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAkACQAAD/4QCSRXhpZgAATU0AK
|
|
|
5101
5107
|
] })
|
|
5102
5108
|
}
|
|
5103
5109
|
);
|
|
5104
|
-
},
|
|
5110
|
+
}, yt = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5105
5111
|
__proto__: null,
|
|
5106
|
-
AriaStandaloneUI:
|
|
5112
|
+
AriaStandaloneUI: wt
|
|
5107
5113
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
5108
5114
|
export {
|
|
5109
|
-
|
|
5110
|
-
|
|
5111
|
-
|
|
5112
|
-
|
|
5113
|
-
|
|
5114
|
-
|
|
5115
|
+
xe as Aria,
|
|
5116
|
+
ze as decodeJWT,
|
|
5117
|
+
Mr as extractSessionIdFromToken,
|
|
5118
|
+
Et as getTokenInfo,
|
|
5119
|
+
Er as isJWT,
|
|
5120
|
+
Mt as isTokenExpired
|
|
5115
5121
|
};
|
|
5116
5122
|
//# sourceMappingURL=index.js.map
|