@centive/aria-sdk 0.6.5 → 0.6.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +116 -0
- package/dist/components/AriaStandaloneUI.d.ts.map +1 -1
- package/dist/components/AriaWidget.d.ts.map +1 -1
- package/dist/context/AriaProvider.d.ts.map +1 -1
- package/dist/index.js +407 -418
- package/dist/index.js.map +1 -1
- package/dist/lib/AriaSessionManager.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +4 -3
package/dist/index.js
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
import { jsx as a, jsxs as y, Fragment as Te } from "react/jsx-runtime";
|
|
2
2
|
import * as ne from "react";
|
|
3
|
-
import { createContext as
|
|
4
|
-
import { CheckCircle2 as Je, AlertCircle as
|
|
5
|
-
import { createPortal as
|
|
6
|
-
function
|
|
3
|
+
import { createContext as Rr, useContext as Tr, useState as R, useRef as he, useEffect as ee, useCallback as M, useMemo as Be } from "react";
|
|
4
|
+
import { CheckCircle2 as Je, AlertCircle as He, Zap as Xe, RefreshCw as Pe, Clock as zr, MessageCircle as nr, Sparkles as Oe, User as Ir, Bot as Pr, Send as Dr, Wrench as Ze, MicOff as Ye, Mic as $e, Maximize2 as Vr, Phone as er, X as _e, Minimize2 as jr } from "lucide-react";
|
|
5
|
+
import { createPortal as Wr } from "react-dom";
|
|
6
|
+
function Br(r) {
|
|
7
7
|
return typeof r == "object" && r !== null && "status" in r && (r.status === "success" || r.status === "error") && !("type" in r);
|
|
8
8
|
}
|
|
9
|
-
function
|
|
9
|
+
function Hr(r) {
|
|
10
10
|
return typeof r == "object" && r !== null && "type" in r && r.type === "message_history_ack" && "status" in r && r.status === "ok";
|
|
11
11
|
}
|
|
12
|
-
function
|
|
12
|
+
function Lr(r) {
|
|
13
13
|
return typeof r == "object" && r !== null && "type" in r && r.type === "message_stream_ack" && "status" in r && r.status === "ok";
|
|
14
14
|
}
|
|
15
|
-
function
|
|
15
|
+
function Fr(r) {
|
|
16
16
|
return typeof r == "object" && r !== null && "type" in r && r.type === "session_end_ack" && "status" in r && r.status === "ok";
|
|
17
17
|
}
|
|
18
|
-
function
|
|
18
|
+
function Or(r) {
|
|
19
19
|
return typeof r == "object" && r !== null && "type" in r && r.type === "session_end_error" && "status" in r && r.status === "error";
|
|
20
20
|
}
|
|
21
|
-
function
|
|
21
|
+
function _r(r) {
|
|
22
22
|
return typeof r == "object" && r !== null && "type" in r && r.type === "trigger_event";
|
|
23
23
|
}
|
|
24
|
-
function
|
|
24
|
+
function Ur(r) {
|
|
25
25
|
return typeof r == "object" && r !== null && "status" in r && r.status === "ok" && "message" in r && !("type" in r);
|
|
26
26
|
}
|
|
27
|
-
function
|
|
27
|
+
function Gr(r) {
|
|
28
28
|
return typeof r == "object" && r !== null && "status" in r && r.status === "error" && "error" in r && r.error === "MISSING_FIELDS";
|
|
29
29
|
}
|
|
30
|
-
const
|
|
30
|
+
const rr = {
|
|
31
31
|
bufferMinutes: 5,
|
|
32
32
|
maxRetries: 3,
|
|
33
33
|
baseRetryDelay: 1e3,
|
|
@@ -92,8 +92,8 @@ class Q {
|
|
|
92
92
|
// ============================================================================
|
|
93
93
|
constructor(e) {
|
|
94
94
|
this.config = e, this.refreshConfig = {
|
|
95
|
-
...
|
|
96
|
-
bufferMinutes: e.sessionRefreshBuffer ??
|
|
95
|
+
...rr,
|
|
96
|
+
bufferMinutes: e.sessionRefreshBuffer ?? rr.bufferMinutes
|
|
97
97
|
}, this.setupVisibilityListener(), this.setupBeforeUnloadHandler(), console.log("[AriaSessionManager] Instance created");
|
|
98
98
|
}
|
|
99
99
|
/**
|
|
@@ -290,35 +290,35 @@ class Q {
|
|
|
290
290
|
handleWebSocketMessage(e) {
|
|
291
291
|
try {
|
|
292
292
|
const t = JSON.parse(e.data);
|
|
293
|
-
if (
|
|
293
|
+
if (Br(t)) {
|
|
294
294
|
this.handleSessionResponse(t);
|
|
295
295
|
return;
|
|
296
296
|
}
|
|
297
|
-
if (
|
|
297
|
+
if (Hr(t)) {
|
|
298
298
|
console.log(`[AriaSessionManager] Message history acknowledged: ${t.message_count} messages`), this.config.onMessageHistoryAck?.(t.message_count), this.emit({ type: "message_history", data: t });
|
|
299
299
|
return;
|
|
300
300
|
}
|
|
301
|
-
if (
|
|
301
|
+
if (Lr(t)) {
|
|
302
302
|
console.log("[AriaSessionManager] Message stream acknowledged"), this.config.onMessageStreamAck?.(), this.emit({ type: "message_stream", data: t });
|
|
303
303
|
return;
|
|
304
304
|
}
|
|
305
|
-
if (
|
|
305
|
+
if (Fr(t)) {
|
|
306
306
|
console.log(`[AriaSessionManager] Session end acknowledged: ${t.saved_count} messages saved`), this.config.onSessionEndAck?.(t.saved_count);
|
|
307
307
|
return;
|
|
308
308
|
}
|
|
309
|
-
if (
|
|
309
|
+
if (Or(t)) {
|
|
310
310
|
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}`));
|
|
311
311
|
return;
|
|
312
312
|
}
|
|
313
|
-
if (
|
|
313
|
+
if (Gr(t)) {
|
|
314
314
|
console.error(`[AriaSessionManager] Missing fields error: ${t.message}`), this.config.onError?.(new Error(t.message));
|
|
315
315
|
return;
|
|
316
316
|
}
|
|
317
|
-
if (
|
|
317
|
+
if (_r(t)) {
|
|
318
318
|
console.log("[AriaSessionManager] WebSocket trigger event received:", t.data), this.config.onWebSocketEvent?.(t), this.onWebSocketTrigger?.(t);
|
|
319
319
|
return;
|
|
320
320
|
}
|
|
321
|
-
if (
|
|
321
|
+
if (Ur(t)) {
|
|
322
322
|
console.log(`[AriaSessionManager] Generic acknowledgment: ${t.message}`);
|
|
323
323
|
return;
|
|
324
324
|
}
|
|
@@ -565,7 +565,9 @@ class Q {
|
|
|
565
565
|
* Attach the video stream to a visible video element
|
|
566
566
|
*/
|
|
567
567
|
attachToVideoElement(e) {
|
|
568
|
-
this.videoStream ? (e.srcObject = this.videoStream, this.hiddenVideoElement && (this.hiddenVideoElement.muted = !0), e.muted = !1,
|
|
568
|
+
this.videoStream ? (e.srcObject = this.videoStream, this.hiddenVideoElement && (this.hiddenVideoElement.muted = !0), e.muted = !1, e.play().catch((t) => {
|
|
569
|
+
console.warn("[AriaSessionManager] Video play failed:", t);
|
|
570
|
+
}), console.log("[AriaSessionManager] Video stream attached to visible element")) : console.warn("[AriaSessionManager] No video stream available to attach");
|
|
569
571
|
}
|
|
570
572
|
/**
|
|
571
573
|
* Detach video stream from visible element (when widget closes)
|
|
@@ -869,7 +871,7 @@ class Q {
|
|
|
869
871
|
console.log("[AriaSessionManager] Destroying instance"), this.sessionState.session_id && this.sendSessionEnd(), this.stopStreaming(), this.removeHiddenVideoElement(), this.clearTimers(), this.disconnect(), typeof document < "u" && document.removeEventListener("visibilitychange", this.handleVisibilityChange), this.removeBeforeUnloadHandler(), this.listeners.clear(), this.resetSessionState();
|
|
870
872
|
}
|
|
871
873
|
}
|
|
872
|
-
const
|
|
874
|
+
const z = {
|
|
873
875
|
initialized: !1,
|
|
874
876
|
config: null,
|
|
875
877
|
sessionManager: null,
|
|
@@ -896,7 +898,7 @@ class Re {
|
|
|
896
898
|
* ```
|
|
897
899
|
*/
|
|
898
900
|
static init(e) {
|
|
899
|
-
if (
|
|
901
|
+
if (z.initialized) {
|
|
900
902
|
console.warn("[AriaCore] Already initialized. Call Aria.destroy() before re-initializing.");
|
|
901
903
|
return;
|
|
902
904
|
}
|
|
@@ -904,9 +906,9 @@ class Re {
|
|
|
904
906
|
throw new Error("[AriaCore] websocketUrl is required");
|
|
905
907
|
if (!e.userId)
|
|
906
908
|
throw new Error("[AriaCore] userId is required");
|
|
907
|
-
console.log("[AriaCore] Initializing Aria SDK..."),
|
|
909
|
+
console.log("[AriaCore] Initializing Aria SDK..."), z.config = e;
|
|
908
910
|
const t = Re.buildFullConfig(e);
|
|
909
|
-
|
|
911
|
+
z.sessionManager = Q.getInstance(t), z.sessionManager.connect(), Re.mountUI(e.theme || "light", e.triggerLabel), z.initialized = !0, console.log("[AriaCore] Aria SDK initialized successfully");
|
|
910
912
|
}
|
|
911
913
|
/**
|
|
912
914
|
* Open the Aria assistant widget.
|
|
@@ -920,7 +922,7 @@ class Re {
|
|
|
920
922
|
* ```
|
|
921
923
|
*/
|
|
922
924
|
static open(e = "user") {
|
|
923
|
-
if (!
|
|
925
|
+
if (!z.initialized) {
|
|
924
926
|
console.error("[AriaCore] Not initialized. Call Aria.init() first.");
|
|
925
927
|
return;
|
|
926
928
|
}
|
|
@@ -936,7 +938,7 @@ class Re {
|
|
|
936
938
|
* ```
|
|
937
939
|
*/
|
|
938
940
|
static close() {
|
|
939
|
-
if (!
|
|
941
|
+
if (!z.initialized) {
|
|
940
942
|
console.error("[AriaCore] Not initialized. Call Aria.init() first.");
|
|
941
943
|
return;
|
|
942
944
|
}
|
|
@@ -952,7 +954,7 @@ class Re {
|
|
|
952
954
|
* ```
|
|
953
955
|
*/
|
|
954
956
|
static minimize() {
|
|
955
|
-
if (!
|
|
957
|
+
if (!z.initialized) {
|
|
956
958
|
console.error("[AriaCore] Not initialized. Call Aria.init() first.");
|
|
957
959
|
return;
|
|
958
960
|
}
|
|
@@ -968,7 +970,7 @@ class Re {
|
|
|
968
970
|
* ```
|
|
969
971
|
*/
|
|
970
972
|
static maximize() {
|
|
971
|
-
if (!
|
|
973
|
+
if (!z.initialized) {
|
|
972
974
|
console.error("[AriaCore] Not initialized. Call Aria.init() first.");
|
|
973
975
|
return;
|
|
974
976
|
}
|
|
@@ -981,7 +983,7 @@ class Re {
|
|
|
981
983
|
* @returns true if initialized, false otherwise
|
|
982
984
|
*/
|
|
983
985
|
static isInitialized() {
|
|
984
|
-
return
|
|
986
|
+
return z.initialized;
|
|
985
987
|
}
|
|
986
988
|
/**
|
|
987
989
|
* Check if the assistant widget is currently open.
|
|
@@ -989,7 +991,7 @@ class Re {
|
|
|
989
991
|
* @returns true if open, false otherwise
|
|
990
992
|
*/
|
|
991
993
|
static isOpen() {
|
|
992
|
-
return
|
|
994
|
+
return z.initialized ? z.uiContainer?.getAttribute("data-aria-open") === "true" : !1;
|
|
993
995
|
}
|
|
994
996
|
/**
|
|
995
997
|
* Get the current session ID if available.
|
|
@@ -997,7 +999,7 @@ class Re {
|
|
|
997
999
|
* @returns Session ID or null if no active session
|
|
998
1000
|
*/
|
|
999
1001
|
static getSessionId() {
|
|
1000
|
-
return
|
|
1002
|
+
return z.sessionManager ? z.sessionManager.getSessionState().session_id : null;
|
|
1001
1003
|
}
|
|
1002
1004
|
/**
|
|
1003
1005
|
* Get the current connection status.
|
|
@@ -1005,7 +1007,7 @@ class Re {
|
|
|
1005
1007
|
* @returns true if WebSocket is connected, false otherwise
|
|
1006
1008
|
*/
|
|
1007
1009
|
static isConnected() {
|
|
1008
|
-
return
|
|
1010
|
+
return z.sessionManager ? z.sessionManager.isConnected() : !1;
|
|
1009
1011
|
}
|
|
1010
1012
|
/**
|
|
1011
1013
|
* Manually refresh the session token.
|
|
@@ -1017,11 +1019,11 @@ class Re {
|
|
|
1017
1019
|
* ```
|
|
1018
1020
|
*/
|
|
1019
1021
|
static async refreshSession() {
|
|
1020
|
-
if (!
|
|
1022
|
+
if (!z.sessionManager) {
|
|
1021
1023
|
console.error("[AriaCore] Not initialized. Call Aria.init() first.");
|
|
1022
1024
|
return;
|
|
1023
1025
|
}
|
|
1024
|
-
await
|
|
1026
|
+
await z.sessionManager.refreshSession();
|
|
1025
1027
|
}
|
|
1026
1028
|
/**
|
|
1027
1029
|
* Destroy the Aria SDK instance and clean up all resources.
|
|
@@ -1033,11 +1035,11 @@ class Re {
|
|
|
1033
1035
|
* ```
|
|
1034
1036
|
*/
|
|
1035
1037
|
static destroy() {
|
|
1036
|
-
if (!
|
|
1038
|
+
if (!z.initialized) {
|
|
1037
1039
|
console.log("[AriaCore] Not initialized, nothing to destroy.");
|
|
1038
1040
|
return;
|
|
1039
1041
|
}
|
|
1040
|
-
console.log("[AriaCore] Destroying Aria SDK..."), Re.unmountUI(), Q.destroyInstance(),
|
|
1042
|
+
console.log("[AriaCore] Destroying Aria SDK..."), Re.unmountUI(), Q.destroyInstance(), z.initialized = !1, z.config = null, z.sessionManager = null, z.uiContainer = null, z.reactRoot = null, console.log("[AriaCore] Aria SDK destroyed");
|
|
1041
1043
|
}
|
|
1042
1044
|
// ============================================================================
|
|
1043
1045
|
// Private Methods
|
|
@@ -1085,15 +1087,15 @@ class Re {
|
|
|
1085
1087
|
*/
|
|
1086
1088
|
static mountUI(e, t) {
|
|
1087
1089
|
const o = document.createElement("div");
|
|
1088
|
-
o.id = "aria-sdk-root", o.setAttribute("data-aria-theme", e), o.setAttribute("data-aria-open", "false"), document.body.appendChild(o),
|
|
1090
|
+
o.id = "aria-sdk-root", o.setAttribute("data-aria-theme", e), o.setAttribute("data-aria-open", "false"), document.body.appendChild(o), z.uiContainer = o, Re.renderReactUI(o, e, t);
|
|
1089
1091
|
}
|
|
1090
1092
|
/**
|
|
1091
1093
|
* Render React UI components
|
|
1092
1094
|
*/
|
|
1093
1095
|
static async renderReactUI(e, t, o) {
|
|
1094
1096
|
try {
|
|
1095
|
-
const i = await import("react"), l = await import("react-dom/client"), { AriaStandaloneUI: s } = await Promise.resolve().then(() =>
|
|
1096
|
-
|
|
1097
|
+
const i = await import("react"), l = await import("react-dom/client"), { AriaStandaloneUI: s } = await Promise.resolve().then(() => $t), c = l.createRoot(e);
|
|
1098
|
+
z.reactRoot = c, c.render(
|
|
1097
1099
|
i.createElement(s, {
|
|
1098
1100
|
theme: t,
|
|
1099
1101
|
triggerLabel: o,
|
|
@@ -1101,75 +1103,75 @@ class Re {
|
|
|
1101
1103
|
})
|
|
1102
1104
|
), console.log("[AriaCore] React UI mounted");
|
|
1103
1105
|
} catch (i) {
|
|
1104
|
-
console.error("[AriaCore] Failed to mount React UI:", i),
|
|
1106
|
+
console.error("[AriaCore] Failed to mount React UI:", i), z.config?.onError?.(i instanceof Error ? i : new Error(String(i)));
|
|
1105
1107
|
}
|
|
1106
1108
|
}
|
|
1107
1109
|
/**
|
|
1108
1110
|
* Unmount the Aria UI components from the DOM
|
|
1109
1111
|
*/
|
|
1110
1112
|
static unmountUI() {
|
|
1111
|
-
|
|
1113
|
+
z.reactRoot && typeof z.reactRoot.unmount == "function" && z.reactRoot.unmount(), z.uiContainer && z.uiContainer.remove();
|
|
1112
1114
|
}
|
|
1113
1115
|
}
|
|
1114
|
-
const
|
|
1115
|
-
const r =
|
|
1116
|
+
const lr = Rr(null), Se = () => {
|
|
1117
|
+
const r = Tr(lr);
|
|
1116
1118
|
if (!r)
|
|
1117
1119
|
throw new Error("useAria must be used within an AriaProvider");
|
|
1118
1120
|
return r;
|
|
1119
1121
|
};
|
|
1120
|
-
function
|
|
1122
|
+
function cr(r) {
|
|
1121
1123
|
var e, t, o = "";
|
|
1122
1124
|
if (typeof r == "string" || typeof r == "number") o += r;
|
|
1123
1125
|
else if (typeof r == "object") if (Array.isArray(r)) {
|
|
1124
1126
|
var i = r.length;
|
|
1125
|
-
for (e = 0; e < i; e++) r[e] && (t =
|
|
1127
|
+
for (e = 0; e < i; e++) r[e] && (t = cr(r[e])) && (o && (o += " "), o += t);
|
|
1126
1128
|
} else for (t in r) r[t] && (o && (o += " "), o += t);
|
|
1127
1129
|
return o;
|
|
1128
1130
|
}
|
|
1129
|
-
function
|
|
1130
|
-
for (var r, e, t = 0, o = "", i = arguments.length; t < i; t++) (r = arguments[t]) && (e =
|
|
1131
|
+
function Qr() {
|
|
1132
|
+
for (var r, e, t = 0, o = "", i = arguments.length; t < i; t++) (r = arguments[t]) && (e = cr(r)) && (o && (o += " "), o += e);
|
|
1131
1133
|
return o;
|
|
1132
1134
|
}
|
|
1133
|
-
const
|
|
1135
|
+
const Kr = (r, e) => {
|
|
1134
1136
|
const t = new Array(r.length + e.length);
|
|
1135
1137
|
for (let o = 0; o < r.length; o++)
|
|
1136
1138
|
t[o] = r[o];
|
|
1137
1139
|
for (let o = 0; o < e.length; o++)
|
|
1138
1140
|
t[r.length + o] = e[o];
|
|
1139
1141
|
return t;
|
|
1140
|
-
},
|
|
1142
|
+
}, qr = (r, e) => ({
|
|
1141
1143
|
classGroupId: r,
|
|
1142
1144
|
validator: e
|
|
1143
|
-
}),
|
|
1145
|
+
}), dr = (r = /* @__PURE__ */ new Map(), e = null, t) => ({
|
|
1144
1146
|
nextPart: r,
|
|
1145
1147
|
validators: e,
|
|
1146
1148
|
classGroupId: t
|
|
1147
|
-
}), De = "-",
|
|
1148
|
-
const e =
|
|
1149
|
+
}), De = "-", tr = [], Jr = "arbitrary..", Xr = (r) => {
|
|
1150
|
+
const e = Yr(r), {
|
|
1149
1151
|
conflictingClassGroups: t,
|
|
1150
1152
|
conflictingClassGroupModifiers: o
|
|
1151
1153
|
} = r;
|
|
1152
1154
|
return {
|
|
1153
1155
|
getClassGroupId: (s) => {
|
|
1154
1156
|
if (s.startsWith("[") && s.endsWith("]"))
|
|
1155
|
-
return
|
|
1157
|
+
return Zr(s);
|
|
1156
1158
|
const c = s.split(De), d = c[0] === "" && c.length > 1 ? 1 : 0;
|
|
1157
|
-
return
|
|
1159
|
+
return gr(c, d, e);
|
|
1158
1160
|
},
|
|
1159
1161
|
getConflictingClassGroupIds: (s, c) => {
|
|
1160
1162
|
if (c) {
|
|
1161
1163
|
const d = o[s], g = t[s];
|
|
1162
|
-
return d ? g ?
|
|
1164
|
+
return d ? g ? Kr(g, d) : d : g || tr;
|
|
1163
1165
|
}
|
|
1164
|
-
return t[s] ||
|
|
1166
|
+
return t[s] || tr;
|
|
1165
1167
|
}
|
|
1166
1168
|
};
|
|
1167
|
-
},
|
|
1169
|
+
}, gr = (r, e, t) => {
|
|
1168
1170
|
if (r.length - e === 0)
|
|
1169
1171
|
return t.classGroupId;
|
|
1170
1172
|
const i = r[e], l = t.nextPart.get(i);
|
|
1171
1173
|
if (l) {
|
|
1172
|
-
const g =
|
|
1174
|
+
const g = gr(r, e + 1, l);
|
|
1173
1175
|
if (g) return g;
|
|
1174
1176
|
}
|
|
1175
1177
|
const s = t.validators;
|
|
@@ -1181,17 +1183,17 @@ const Qr = (r, e) => {
|
|
|
1181
1183
|
if (w.validator(c))
|
|
1182
1184
|
return w.classGroupId;
|
|
1183
1185
|
}
|
|
1184
|
-
},
|
|
1186
|
+
}, Zr = (r) => r.slice(1, -1).indexOf(":") === -1 ? void 0 : (() => {
|
|
1185
1187
|
const e = r.slice(1, -1), t = e.indexOf(":"), o = e.slice(0, t);
|
|
1186
|
-
return o ?
|
|
1187
|
-
})(),
|
|
1188
|
+
return o ? Jr + o : void 0;
|
|
1189
|
+
})(), Yr = (r) => {
|
|
1188
1190
|
const {
|
|
1189
1191
|
theme: e,
|
|
1190
1192
|
classGroups: t
|
|
1191
1193
|
} = r;
|
|
1192
|
-
return
|
|
1193
|
-
},
|
|
1194
|
-
const t =
|
|
1194
|
+
return $r(t, e);
|
|
1195
|
+
}, $r = (r, e) => {
|
|
1196
|
+
const t = dr();
|
|
1195
1197
|
for (const o in r) {
|
|
1196
1198
|
const i = r[o];
|
|
1197
1199
|
Qe(i, t, o, e);
|
|
@@ -1201,43 +1203,43 @@ const Qr = (r, e) => {
|
|
|
1201
1203
|
const i = r.length;
|
|
1202
1204
|
for (let l = 0; l < i; l++) {
|
|
1203
1205
|
const s = r[l];
|
|
1204
|
-
|
|
1206
|
+
et(s, e, t, o);
|
|
1205
1207
|
}
|
|
1206
|
-
},
|
|
1208
|
+
}, et = (r, e, t, o) => {
|
|
1207
1209
|
if (typeof r == "string") {
|
|
1208
|
-
|
|
1210
|
+
rt(r, e, t);
|
|
1209
1211
|
return;
|
|
1210
1212
|
}
|
|
1211
1213
|
if (typeof r == "function") {
|
|
1212
|
-
|
|
1214
|
+
tt(r, e, t, o);
|
|
1213
1215
|
return;
|
|
1214
1216
|
}
|
|
1215
|
-
|
|
1216
|
-
},
|
|
1217
|
-
const o = r === "" ? e :
|
|
1217
|
+
ot(r, e, t, o);
|
|
1218
|
+
}, rt = (r, e, t) => {
|
|
1219
|
+
const o = r === "" ? e : hr(e, r);
|
|
1218
1220
|
o.classGroupId = t;
|
|
1219
|
-
},
|
|
1220
|
-
if (
|
|
1221
|
+
}, tt = (r, e, t, o) => {
|
|
1222
|
+
if (at(r)) {
|
|
1221
1223
|
Qe(r(o), e, t, o);
|
|
1222
1224
|
return;
|
|
1223
1225
|
}
|
|
1224
|
-
e.validators === null && (e.validators = []), e.validators.push(
|
|
1225
|
-
},
|
|
1226
|
+
e.validators === null && (e.validators = []), e.validators.push(qr(t, r));
|
|
1227
|
+
}, ot = (r, e, t, o) => {
|
|
1226
1228
|
const i = Object.entries(r), l = i.length;
|
|
1227
1229
|
for (let s = 0; s < l; s++) {
|
|
1228
1230
|
const [c, d] = i[s];
|
|
1229
|
-
Qe(d,
|
|
1231
|
+
Qe(d, hr(e, c), t, o);
|
|
1230
1232
|
}
|
|
1231
|
-
},
|
|
1233
|
+
}, hr = (r, e) => {
|
|
1232
1234
|
let t = r;
|
|
1233
1235
|
const o = e.split(De), i = o.length;
|
|
1234
1236
|
for (let l = 0; l < i; l++) {
|
|
1235
1237
|
const s = o[l];
|
|
1236
1238
|
let c = t.nextPart.get(s);
|
|
1237
|
-
c || (c =
|
|
1239
|
+
c || (c = dr(), t.nextPart.set(s, c)), t = c;
|
|
1238
1240
|
}
|
|
1239
1241
|
return t;
|
|
1240
|
-
},
|
|
1242
|
+
}, at = (r) => "isThemeGetter" in r && r.isThemeGetter === !0, it = (r) => {
|
|
1241
1243
|
if (r < 1)
|
|
1242
1244
|
return {
|
|
1243
1245
|
get: () => {
|
|
@@ -1261,13 +1263,13 @@ const Qr = (r, e) => {
|
|
|
1261
1263
|
l in t ? t[l] = s : i(l, s);
|
|
1262
1264
|
}
|
|
1263
1265
|
};
|
|
1264
|
-
}, Ue = "!",
|
|
1266
|
+
}, Ue = "!", or = ":", st = [], ar = (r, e, t, o, i) => ({
|
|
1265
1267
|
modifiers: r,
|
|
1266
1268
|
hasImportantModifier: e,
|
|
1267
1269
|
baseClassName: t,
|
|
1268
1270
|
maybePostfixModifierPosition: o,
|
|
1269
1271
|
isExternal: i
|
|
1270
|
-
}),
|
|
1272
|
+
}), nt = (r) => {
|
|
1271
1273
|
const {
|
|
1272
1274
|
prefix: e,
|
|
1273
1275
|
experimentalParseClassName: t
|
|
@@ -1277,34 +1279,34 @@ const Qr = (r, e) => {
|
|
|
1277
1279
|
let s = 0, c = 0, d = 0, g;
|
|
1278
1280
|
const w = i.length;
|
|
1279
1281
|
for (let I = 0; I < w; I++) {
|
|
1280
|
-
const
|
|
1282
|
+
const j = i[I];
|
|
1281
1283
|
if (s === 0 && c === 0) {
|
|
1282
|
-
if (
|
|
1284
|
+
if (j === or) {
|
|
1283
1285
|
l.push(i.slice(d, I)), d = I + 1;
|
|
1284
1286
|
continue;
|
|
1285
1287
|
}
|
|
1286
|
-
if (
|
|
1288
|
+
if (j === "/") {
|
|
1287
1289
|
g = I;
|
|
1288
1290
|
continue;
|
|
1289
1291
|
}
|
|
1290
1292
|
}
|
|
1291
|
-
|
|
1293
|
+
j === "[" ? s++ : j === "]" ? s-- : j === "(" ? c++ : j === ")" && c--;
|
|
1292
1294
|
}
|
|
1293
|
-
const
|
|
1294
|
-
let
|
|
1295
|
-
|
|
1295
|
+
const E = l.length === 0 ? i : i.slice(d);
|
|
1296
|
+
let T = E, V = !1;
|
|
1297
|
+
E.endsWith(Ue) ? (T = E.slice(0, -1), V = !0) : (
|
|
1296
1298
|
/**
|
|
1297
1299
|
* In Tailwind CSS v3 the important modifier was at the start of the base class name. This is still supported for legacy reasons.
|
|
1298
1300
|
* @see https://github.com/dcastil/tailwind-merge/issues/513#issuecomment-2614029864
|
|
1299
1301
|
*/
|
|
1300
|
-
|
|
1302
|
+
E.startsWith(Ue) && (T = E.slice(1), V = !0)
|
|
1301
1303
|
);
|
|
1302
1304
|
const x = g && g > d ? g - d : void 0;
|
|
1303
|
-
return
|
|
1305
|
+
return ar(l, V, T, x);
|
|
1304
1306
|
};
|
|
1305
1307
|
if (e) {
|
|
1306
|
-
const i = e +
|
|
1307
|
-
o = (s) => s.startsWith(i) ? l(s.slice(i.length)) :
|
|
1308
|
+
const i = e + or, l = o;
|
|
1309
|
+
o = (s) => s.startsWith(i) ? l(s.slice(i.length)) : ar(st, !1, s, void 0, !0);
|
|
1308
1310
|
}
|
|
1309
1311
|
if (t) {
|
|
1310
1312
|
const i = o;
|
|
@@ -1314,7 +1316,7 @@ const Qr = (r, e) => {
|
|
|
1314
1316
|
});
|
|
1315
1317
|
}
|
|
1316
1318
|
return o;
|
|
1317
|
-
},
|
|
1319
|
+
}, lt = (r) => {
|
|
1318
1320
|
const e = /* @__PURE__ */ new Map();
|
|
1319
1321
|
return r.orderSensitiveModifiers.forEach((t, o) => {
|
|
1320
1322
|
e.set(t, 1e6 + o);
|
|
@@ -1327,96 +1329,96 @@ const Qr = (r, e) => {
|
|
|
1327
1329
|
}
|
|
1328
1330
|
return i.length > 0 && (i.sort(), o.push(...i)), o;
|
|
1329
1331
|
};
|
|
1330
|
-
},
|
|
1331
|
-
cache:
|
|
1332
|
-
parseClassName:
|
|
1333
|
-
sortModifiers:
|
|
1334
|
-
...
|
|
1335
|
-
}),
|
|
1332
|
+
}, ct = (r) => ({
|
|
1333
|
+
cache: it(r.cacheSize),
|
|
1334
|
+
parseClassName: nt(r),
|
|
1335
|
+
sortModifiers: lt(r),
|
|
1336
|
+
...Xr(r)
|
|
1337
|
+
}), dt = /\s+/, gt = (r, e) => {
|
|
1336
1338
|
const {
|
|
1337
1339
|
parseClassName: t,
|
|
1338
1340
|
getClassGroupId: o,
|
|
1339
1341
|
getConflictingClassGroupIds: i,
|
|
1340
1342
|
sortModifiers: l
|
|
1341
|
-
} = e, s = [], c = r.trim().split(
|
|
1343
|
+
} = e, s = [], c = r.trim().split(dt);
|
|
1342
1344
|
let d = "";
|
|
1343
1345
|
for (let g = c.length - 1; g >= 0; g -= 1) {
|
|
1344
1346
|
const w = c[g], {
|
|
1345
|
-
isExternal:
|
|
1346
|
-
modifiers:
|
|
1347
|
+
isExternal: E,
|
|
1348
|
+
modifiers: T,
|
|
1347
1349
|
hasImportantModifier: V,
|
|
1348
1350
|
baseClassName: x,
|
|
1349
1351
|
maybePostfixModifierPosition: I
|
|
1350
1352
|
} = t(w);
|
|
1351
|
-
if (
|
|
1353
|
+
if (E) {
|
|
1352
1354
|
d = w + (d.length > 0 ? " " + d : d);
|
|
1353
1355
|
continue;
|
|
1354
1356
|
}
|
|
1355
|
-
let
|
|
1356
|
-
if (!
|
|
1357
|
-
if (!
|
|
1357
|
+
let j = !!I, W = o(j ? x.substring(0, I) : x);
|
|
1358
|
+
if (!W) {
|
|
1359
|
+
if (!j) {
|
|
1358
1360
|
d = w + (d.length > 0 ? " " + d : d);
|
|
1359
1361
|
continue;
|
|
1360
1362
|
}
|
|
1361
|
-
if (
|
|
1363
|
+
if (W = o(x), !W) {
|
|
1362
1364
|
d = w + (d.length > 0 ? " " + d : d);
|
|
1363
1365
|
continue;
|
|
1364
1366
|
}
|
|
1365
|
-
|
|
1367
|
+
j = !1;
|
|
1366
1368
|
}
|
|
1367
|
-
const O =
|
|
1369
|
+
const O = T.length === 0 ? "" : T.length === 1 ? T[0] : l(T).join(":"), P = V ? O + Ue : O, h = P + W;
|
|
1368
1370
|
if (s.indexOf(h) > -1)
|
|
1369
1371
|
continue;
|
|
1370
1372
|
s.push(h);
|
|
1371
|
-
const _ = i(
|
|
1373
|
+
const _ = i(W, j);
|
|
1372
1374
|
for (let q = 0; q < _.length; ++q) {
|
|
1373
|
-
const
|
|
1374
|
-
s.push(P +
|
|
1375
|
+
const L = _[q];
|
|
1376
|
+
s.push(P + L);
|
|
1375
1377
|
}
|
|
1376
1378
|
d = w + (d.length > 0 ? " " + d : d);
|
|
1377
1379
|
}
|
|
1378
1380
|
return d;
|
|
1379
|
-
},
|
|
1381
|
+
}, ht = (...r) => {
|
|
1380
1382
|
let e = 0, t, o, i = "";
|
|
1381
1383
|
for (; e < r.length; )
|
|
1382
|
-
(t = r[e++]) && (o =
|
|
1384
|
+
(t = r[e++]) && (o = ur(t)) && (i && (i += " "), i += o);
|
|
1383
1385
|
return i;
|
|
1384
|
-
},
|
|
1386
|
+
}, ur = (r) => {
|
|
1385
1387
|
if (typeof r == "string")
|
|
1386
1388
|
return r;
|
|
1387
1389
|
let e, t = "";
|
|
1388
1390
|
for (let o = 0; o < r.length; o++)
|
|
1389
|
-
r[o] && (e =
|
|
1391
|
+
r[o] && (e = ur(r[o])) && (t && (t += " "), t += e);
|
|
1390
1392
|
return t;
|
|
1391
|
-
},
|
|
1393
|
+
}, ut = (r, ...e) => {
|
|
1392
1394
|
let t, o, i, l;
|
|
1393
1395
|
const s = (d) => {
|
|
1394
|
-
const g = e.reduce((w,
|
|
1395
|
-
return t =
|
|
1396
|
+
const g = e.reduce((w, E) => E(w), r());
|
|
1397
|
+
return t = ct(g), o = t.cache.get, i = t.cache.set, l = c, c(d);
|
|
1396
1398
|
}, c = (d) => {
|
|
1397
1399
|
const g = o(d);
|
|
1398
1400
|
if (g)
|
|
1399
1401
|
return g;
|
|
1400
|
-
const w =
|
|
1402
|
+
const w = gt(d, t);
|
|
1401
1403
|
return i(d, w), w;
|
|
1402
1404
|
};
|
|
1403
|
-
return l = s, (...d) => l(
|
|
1404
|
-
},
|
|
1405
|
-
const e = (t) => t[r] ||
|
|
1405
|
+
return l = s, (...d) => l(ht(...d));
|
|
1406
|
+
}, pt = [], F = (r) => {
|
|
1407
|
+
const e = (t) => t[r] || pt;
|
|
1406
1408
|
return e.isThemeGetter = !0, e;
|
|
1407
|
-
},
|
|
1409
|
+
}, pr = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, mr = /^\((?:(\w[\w-]*):)?(.+)\)$/i, mt = /^\d+\/\d+$/, ft = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, wt = /\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$/, bt = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/, vt = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, yt = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, Ae = (r) => mt.test(r), C = (r) => !!r && !Number.isNaN(Number(r)), fe = (r) => !!r && Number.isInteger(Number(r)), Le = (r) => r.endsWith("%") && C(r.slice(0, -1)), ge = (r) => ft.test(r), xt = () => !0, At = (r) => (
|
|
1408
1410
|
// `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
|
|
1409
1411
|
// For example, `hsl(0 0% 0%)` would be classified as a length without this check.
|
|
1410
1412
|
// I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
|
|
1411
|
-
|
|
1412
|
-
),
|
|
1413
|
-
const o =
|
|
1413
|
+
wt.test(r) && !bt.test(r)
|
|
1414
|
+
), fr = () => !1, kt = (r) => vt.test(r), St = (r) => yt.test(r), Et = (r) => !m(r) && !f(r), Mt = (r) => Ee(r, vr, fr), m = (r) => pr.test(r), ve = (r) => Ee(r, yr, At), Fe = (r) => Ee(r, zt, C), ir = (r) => Ee(r, wr, fr), Ct = (r) => Ee(r, br, St), ze = (r) => Ee(r, xr, kt), f = (r) => mr.test(r), Ne = (r) => Me(r, yr), Nt = (r) => Me(r, It), sr = (r) => Me(r, wr), Rt = (r) => Me(r, vr), Tt = (r) => Me(r, br), Ie = (r) => Me(r, xr, !0), Ee = (r, e, t) => {
|
|
1415
|
+
const o = pr.exec(r);
|
|
1414
1416
|
return o ? o[1] ? e(o[1]) : t(o[2]) : !1;
|
|
1415
1417
|
}, Me = (r, e, t = !1) => {
|
|
1416
|
-
const o =
|
|
1418
|
+
const o = mr.exec(r);
|
|
1417
1419
|
return o ? o[1] ? e(o[1]) : t : !1;
|
|
1418
|
-
},
|
|
1419
|
-
const r =
|
|
1420
|
+
}, wr = (r) => r === "position" || r === "percentage", br = (r) => r === "image" || r === "url", vr = (r) => r === "length" || r === "size" || r === "bg-size", yr = (r) => r === "length", zt = (r) => r === "number", It = (r) => r === "family-name", xr = (r) => r === "shadow", Pt = () => {
|
|
1421
|
+
const r = F("color"), e = F("font"), t = F("text"), o = F("font-weight"), i = F("tracking"), l = F("leading"), s = F("breakpoint"), c = F("container"), d = F("spacing"), g = F("radius"), w = F("shadow"), E = F("inset-shadow"), T = F("text-shadow"), V = F("drop-shadow"), x = F("blur"), I = F("perspective"), j = F("aspect"), W = F("ease"), O = F("animate"), P = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], h = () => [
|
|
1420
1422
|
"center",
|
|
1421
1423
|
"top",
|
|
1422
1424
|
"bottom",
|
|
@@ -1434,15 +1436,15 @@ const Qr = (r, e) => {
|
|
|
1434
1436
|
"bottom-left",
|
|
1435
1437
|
// Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
|
|
1436
1438
|
"left-bottom"
|
|
1437
|
-
], _ = () => [...h(), f, m], q = () => ["auto", "hidden", "clip", "visible", "scroll"],
|
|
1439
|
+
], _ = () => [...h(), f, m], q = () => ["auto", "hidden", "clip", "visible", "scroll"], L = () => ["auto", "contain", "none"], A = () => [f, m, d], K = () => [Ae, "full", "auto", ...A()], re = () => [fe, "none", "subgrid", f, m], J = () => ["auto", {
|
|
1438
1440
|
span: ["full", fe, f, m]
|
|
1439
|
-
}, fe, f, m], G = () => [fe, "auto", f, m], ue = () => ["auto", "min", "max", "fr", f, m], te = () => ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"], k = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"], U = () => ["auto", ...A()], b = () => [Ae, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...A()], v = () => [r, f, m], le = () => [...h(),
|
|
1441
|
+
}, fe, f, m], G = () => [fe, "auto", f, m], ue = () => ["auto", "min", "max", "fr", f, m], te = () => ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"], k = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"], U = () => ["auto", ...A()], b = () => [Ae, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...A()], v = () => [r, f, m], le = () => [...h(), sr, ir, {
|
|
1440
1442
|
position: [f, m]
|
|
1441
1443
|
}], oe = () => ["no-repeat", {
|
|
1442
1444
|
repeat: ["", "x", "y", "space", "round"]
|
|
1443
|
-
}], ae = () => ["auto", "cover", "contain",
|
|
1445
|
+
}], ae = () => ["auto", "cover", "contain", Rt, Mt, {
|
|
1444
1446
|
size: [f, m]
|
|
1445
|
-
}], $ = () => [
|
|
1447
|
+
}], $ = () => [Le, Ne, ve], B = () => [
|
|
1446
1448
|
// Deprecated since Tailwind CSS v4.0.0
|
|
1447
1449
|
"",
|
|
1448
1450
|
"none",
|
|
@@ -1450,7 +1452,7 @@ const Qr = (r, e) => {
|
|
|
1450
1452
|
g,
|
|
1451
1453
|
f,
|
|
1452
1454
|
m
|
|
1453
|
-
],
|
|
1455
|
+
], H = () => ["", C, Ne, ve], ie = () => ["solid", "dashed", "dotted", "double"], ce = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], D = () => [C, Le, sr, ir], we = () => [
|
|
1454
1456
|
// Deprecated since Tailwind CSS v4.0.0
|
|
1455
1457
|
"",
|
|
1456
1458
|
"none",
|
|
@@ -1465,11 +1467,11 @@ const Qr = (r, e) => {
|
|
|
1465
1467
|
aspect: ["video"],
|
|
1466
1468
|
blur: [ge],
|
|
1467
1469
|
breakpoint: [ge],
|
|
1468
|
-
color: [
|
|
1470
|
+
color: [xt],
|
|
1469
1471
|
container: [ge],
|
|
1470
1472
|
"drop-shadow": [ge],
|
|
1471
1473
|
ease: ["in", "out", "in-out"],
|
|
1472
|
-
font: [
|
|
1474
|
+
font: [Et],
|
|
1473
1475
|
"font-weight": ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black"],
|
|
1474
1476
|
"inset-shadow": [ge],
|
|
1475
1477
|
leading: ["none", "tight", "snug", "normal", "relaxed", "loose"],
|
|
@@ -1490,7 +1492,7 @@ const Qr = (r, e) => {
|
|
|
1490
1492
|
* @see https://tailwindcss.com/docs/aspect-ratio
|
|
1491
1493
|
*/
|
|
1492
1494
|
aspect: [{
|
|
1493
|
-
aspect: ["auto", "square", Ae, m, f,
|
|
1495
|
+
aspect: ["auto", "square", Ae, m, f, j]
|
|
1494
1496
|
}],
|
|
1495
1497
|
/**
|
|
1496
1498
|
* Container
|
|
@@ -1609,21 +1611,21 @@ const Qr = (r, e) => {
|
|
|
1609
1611
|
* @see https://tailwindcss.com/docs/overscroll-behavior
|
|
1610
1612
|
*/
|
|
1611
1613
|
overscroll: [{
|
|
1612
|
-
overscroll:
|
|
1614
|
+
overscroll: L()
|
|
1613
1615
|
}],
|
|
1614
1616
|
/**
|
|
1615
1617
|
* Overscroll Behavior X
|
|
1616
1618
|
* @see https://tailwindcss.com/docs/overscroll-behavior
|
|
1617
1619
|
*/
|
|
1618
1620
|
"overscroll-x": [{
|
|
1619
|
-
"overscroll-x":
|
|
1621
|
+
"overscroll-x": L()
|
|
1620
1622
|
}],
|
|
1621
1623
|
/**
|
|
1622
1624
|
* Overscroll Behavior Y
|
|
1623
1625
|
* @see https://tailwindcss.com/docs/overscroll-behavior
|
|
1624
1626
|
*/
|
|
1625
1627
|
"overscroll-y": [{
|
|
1626
|
-
"overscroll-y":
|
|
1628
|
+
"overscroll-y": L()
|
|
1627
1629
|
}],
|
|
1628
1630
|
/**
|
|
1629
1631
|
* Position
|
|
@@ -2167,21 +2169,21 @@ const Qr = (r, e) => {
|
|
|
2167
2169
|
* @see https://tailwindcss.com/docs/font-weight
|
|
2168
2170
|
*/
|
|
2169
2171
|
"font-weight": [{
|
|
2170
|
-
font: [o, f,
|
|
2172
|
+
font: [o, f, Fe]
|
|
2171
2173
|
}],
|
|
2172
2174
|
/**
|
|
2173
2175
|
* Font Stretch
|
|
2174
2176
|
* @see https://tailwindcss.com/docs/font-stretch
|
|
2175
2177
|
*/
|
|
2176
2178
|
"font-stretch": [{
|
|
2177
|
-
"font-stretch": ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded",
|
|
2179
|
+
"font-stretch": ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded", Le, m]
|
|
2178
2180
|
}],
|
|
2179
2181
|
/**
|
|
2180
2182
|
* Font Family
|
|
2181
2183
|
* @see https://tailwindcss.com/docs/font-family
|
|
2182
2184
|
*/
|
|
2183
2185
|
"font-family": [{
|
|
2184
|
-
font: [
|
|
2186
|
+
font: [Nt, m, e]
|
|
2185
2187
|
}],
|
|
2186
2188
|
/**
|
|
2187
2189
|
* Font Variant Numeric
|
|
@@ -2225,7 +2227,7 @@ const Qr = (r, e) => {
|
|
|
2225
2227
|
* @see https://tailwindcss.com/docs/line-clamp
|
|
2226
2228
|
*/
|
|
2227
2229
|
"line-clamp": [{
|
|
2228
|
-
"line-clamp": [C, "none", f,
|
|
2230
|
+
"line-clamp": [C, "none", f, Fe]
|
|
2229
2231
|
}],
|
|
2230
2232
|
/**
|
|
2231
2233
|
* Line Height
|
|
@@ -2436,7 +2438,7 @@ const Qr = (r, e) => {
|
|
|
2436
2438
|
}, fe, f, m],
|
|
2437
2439
|
radial: ["", f, m],
|
|
2438
2440
|
conic: [fe, f, m]
|
|
2439
|
-
},
|
|
2441
|
+
}, Tt, Ct]
|
|
2440
2442
|
}],
|
|
2441
2443
|
/**
|
|
2442
2444
|
* Background Color
|
|
@@ -2600,70 +2602,70 @@ const Qr = (r, e) => {
|
|
|
2600
2602
|
* @see https://tailwindcss.com/docs/border-width
|
|
2601
2603
|
*/
|
|
2602
2604
|
"border-w": [{
|
|
2603
|
-
border:
|
|
2605
|
+
border: H()
|
|
2604
2606
|
}],
|
|
2605
2607
|
/**
|
|
2606
2608
|
* Border Width X
|
|
2607
2609
|
* @see https://tailwindcss.com/docs/border-width
|
|
2608
2610
|
*/
|
|
2609
2611
|
"border-w-x": [{
|
|
2610
|
-
"border-x":
|
|
2612
|
+
"border-x": H()
|
|
2611
2613
|
}],
|
|
2612
2614
|
/**
|
|
2613
2615
|
* Border Width Y
|
|
2614
2616
|
* @see https://tailwindcss.com/docs/border-width
|
|
2615
2617
|
*/
|
|
2616
2618
|
"border-w-y": [{
|
|
2617
|
-
"border-y":
|
|
2619
|
+
"border-y": H()
|
|
2618
2620
|
}],
|
|
2619
2621
|
/**
|
|
2620
2622
|
* Border Width Start
|
|
2621
2623
|
* @see https://tailwindcss.com/docs/border-width
|
|
2622
2624
|
*/
|
|
2623
2625
|
"border-w-s": [{
|
|
2624
|
-
"border-s":
|
|
2626
|
+
"border-s": H()
|
|
2625
2627
|
}],
|
|
2626
2628
|
/**
|
|
2627
2629
|
* Border Width End
|
|
2628
2630
|
* @see https://tailwindcss.com/docs/border-width
|
|
2629
2631
|
*/
|
|
2630
2632
|
"border-w-e": [{
|
|
2631
|
-
"border-e":
|
|
2633
|
+
"border-e": H()
|
|
2632
2634
|
}],
|
|
2633
2635
|
/**
|
|
2634
2636
|
* Border Width Top
|
|
2635
2637
|
* @see https://tailwindcss.com/docs/border-width
|
|
2636
2638
|
*/
|
|
2637
2639
|
"border-w-t": [{
|
|
2638
|
-
"border-t":
|
|
2640
|
+
"border-t": H()
|
|
2639
2641
|
}],
|
|
2640
2642
|
/**
|
|
2641
2643
|
* Border Width Right
|
|
2642
2644
|
* @see https://tailwindcss.com/docs/border-width
|
|
2643
2645
|
*/
|
|
2644
2646
|
"border-w-r": [{
|
|
2645
|
-
"border-r":
|
|
2647
|
+
"border-r": H()
|
|
2646
2648
|
}],
|
|
2647
2649
|
/**
|
|
2648
2650
|
* Border Width Bottom
|
|
2649
2651
|
* @see https://tailwindcss.com/docs/border-width
|
|
2650
2652
|
*/
|
|
2651
2653
|
"border-w-b": [{
|
|
2652
|
-
"border-b":
|
|
2654
|
+
"border-b": H()
|
|
2653
2655
|
}],
|
|
2654
2656
|
/**
|
|
2655
2657
|
* Border Width Left
|
|
2656
2658
|
* @see https://tailwindcss.com/docs/border-width
|
|
2657
2659
|
*/
|
|
2658
2660
|
"border-w-l": [{
|
|
2659
|
-
"border-l":
|
|
2661
|
+
"border-l": H()
|
|
2660
2662
|
}],
|
|
2661
2663
|
/**
|
|
2662
2664
|
* Divide Width X
|
|
2663
2665
|
* @see https://tailwindcss.com/docs/border-width#between-children
|
|
2664
2666
|
*/
|
|
2665
2667
|
"divide-x": [{
|
|
2666
|
-
"divide-x":
|
|
2668
|
+
"divide-x": H()
|
|
2667
2669
|
}],
|
|
2668
2670
|
/**
|
|
2669
2671
|
* Divide Width X Reverse
|
|
@@ -2675,7 +2677,7 @@ const Qr = (r, e) => {
|
|
|
2675
2677
|
* @see https://tailwindcss.com/docs/border-width#between-children
|
|
2676
2678
|
*/
|
|
2677
2679
|
"divide-y": [{
|
|
2678
|
-
"divide-y":
|
|
2680
|
+
"divide-y": H()
|
|
2679
2681
|
}],
|
|
2680
2682
|
/**
|
|
2681
2683
|
* Divide Width Y Reverse
|
|
@@ -2823,7 +2825,7 @@ const Qr = (r, e) => {
|
|
|
2823
2825
|
* @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-shadow
|
|
2824
2826
|
*/
|
|
2825
2827
|
"inset-shadow": [{
|
|
2826
|
-
"inset-shadow": ["none",
|
|
2828
|
+
"inset-shadow": ["none", E, Ie, ze]
|
|
2827
2829
|
}],
|
|
2828
2830
|
/**
|
|
2829
2831
|
* Inset Box Shadow Color
|
|
@@ -2837,7 +2839,7 @@ const Qr = (r, e) => {
|
|
|
2837
2839
|
* @see https://tailwindcss.com/docs/box-shadow#adding-a-ring
|
|
2838
2840
|
*/
|
|
2839
2841
|
"ring-w": [{
|
|
2840
|
-
ring:
|
|
2842
|
+
ring: H()
|
|
2841
2843
|
}],
|
|
2842
2844
|
/**
|
|
2843
2845
|
* Ring Width Inset
|
|
@@ -2876,7 +2878,7 @@ const Qr = (r, e) => {
|
|
|
2876
2878
|
* @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-ring
|
|
2877
2879
|
*/
|
|
2878
2880
|
"inset-ring-w": [{
|
|
2879
|
-
"inset-ring":
|
|
2881
|
+
"inset-ring": H()
|
|
2880
2882
|
}],
|
|
2881
2883
|
/**
|
|
2882
2884
|
* Inset Ring Color
|
|
@@ -2890,7 +2892,7 @@ const Qr = (r, e) => {
|
|
|
2890
2892
|
* @see https://tailwindcss.com/docs/text-shadow
|
|
2891
2893
|
*/
|
|
2892
2894
|
"text-shadow": [{
|
|
2893
|
-
"text-shadow": ["none",
|
|
2895
|
+
"text-shadow": ["none", T, Ie, ze]
|
|
2894
2896
|
}],
|
|
2895
2897
|
/**
|
|
2896
2898
|
* Text Shadow Color
|
|
@@ -3359,7 +3361,7 @@ const Qr = (r, e) => {
|
|
|
3359
3361
|
* @see https://tailwindcss.com/docs/transition-timing-function
|
|
3360
3362
|
*/
|
|
3361
3363
|
ease: [{
|
|
3362
|
-
ease: ["linear", "initial",
|
|
3364
|
+
ease: ["linear", "initial", W, f, m]
|
|
3363
3365
|
}],
|
|
3364
3366
|
/**
|
|
3365
3367
|
* Transition Delay
|
|
@@ -3810,7 +3812,7 @@ const Qr = (r, e) => {
|
|
|
3810
3812
|
* @see https://tailwindcss.com/docs/stroke-width
|
|
3811
3813
|
*/
|
|
3812
3814
|
"stroke-w": [{
|
|
3813
|
-
stroke: [C, Ne, ve,
|
|
3815
|
+
stroke: [C, Ne, ve, Fe]
|
|
3814
3816
|
}],
|
|
3815
3817
|
/**
|
|
3816
3818
|
* Stroke
|
|
@@ -3885,9 +3887,9 @@ const Qr = (r, e) => {
|
|
|
3885
3887
|
},
|
|
3886
3888
|
orderSensitiveModifiers: ["*", "**", "after", "backdrop", "before", "details-content", "file", "first-letter", "first-line", "marker", "placeholder", "selection"]
|
|
3887
3889
|
};
|
|
3888
|
-
},
|
|
3890
|
+
}, Dt = /* @__PURE__ */ ut(Pt);
|
|
3889
3891
|
function n(...r) {
|
|
3890
|
-
return
|
|
3892
|
+
return Dt(Qr(r));
|
|
3891
3893
|
}
|
|
3892
3894
|
const Ve = ne.forwardRef(
|
|
3893
3895
|
({ className: r, variant: e = "default", size: t = "default", ...o }, i) => {
|
|
@@ -3942,7 +3944,7 @@ const Ve = ne.forwardRef(
|
|
|
3942
3944
|
}
|
|
3943
3945
|
);
|
|
3944
3946
|
Ve.displayName = "Button";
|
|
3945
|
-
const
|
|
3947
|
+
const Ar = ne.forwardRef(
|
|
3946
3948
|
({ className: r, type: e, ...t }, o) => /* @__PURE__ */ a(
|
|
3947
3949
|
"input",
|
|
3948
3950
|
{
|
|
@@ -3961,7 +3963,7 @@ const kr = ne.forwardRef(
|
|
|
3961
3963
|
}
|
|
3962
3964
|
)
|
|
3963
3965
|
);
|
|
3964
|
-
|
|
3966
|
+
Ar.displayName = "Input";
|
|
3965
3967
|
function ke({ className: r, variant: e = "default", ...t }) {
|
|
3966
3968
|
const o = {
|
|
3967
3969
|
default: n(
|
|
@@ -3997,7 +3999,7 @@ function ke({ className: r, variant: e = "default", ...t }) {
|
|
|
3997
3999
|
}
|
|
3998
4000
|
);
|
|
3999
4001
|
}
|
|
4000
|
-
const
|
|
4002
|
+
const kr = ne.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
4001
4003
|
"div",
|
|
4002
4004
|
{
|
|
4003
4005
|
ref: t,
|
|
@@ -4010,8 +4012,8 @@ const Sr = ne.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
|
4010
4012
|
...e
|
|
4011
4013
|
}
|
|
4012
4014
|
));
|
|
4013
|
-
|
|
4014
|
-
const
|
|
4015
|
+
kr.displayName = "Card";
|
|
4016
|
+
const Vt = ne.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
4015
4017
|
"div",
|
|
4016
4018
|
{
|
|
4017
4019
|
ref: t,
|
|
@@ -4019,8 +4021,8 @@ const Dt = ne.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
|
4019
4021
|
...e
|
|
4020
4022
|
}
|
|
4021
4023
|
));
|
|
4022
|
-
|
|
4023
|
-
const
|
|
4024
|
+
Vt.displayName = "CardHeader";
|
|
4025
|
+
const jt = ne.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
4024
4026
|
"h3",
|
|
4025
4027
|
{
|
|
4026
4028
|
ref: t,
|
|
@@ -4031,8 +4033,8 @@ const Vt = ne.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
|
4031
4033
|
...e
|
|
4032
4034
|
}
|
|
4033
4035
|
));
|
|
4034
|
-
|
|
4035
|
-
const
|
|
4036
|
+
jt.displayName = "CardTitle";
|
|
4037
|
+
const Wt = ne.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
4036
4038
|
"p",
|
|
4037
4039
|
{
|
|
4038
4040
|
ref: t,
|
|
@@ -4040,10 +4042,10 @@ const jt = ne.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
|
4040
4042
|
...e
|
|
4041
4043
|
}
|
|
4042
4044
|
));
|
|
4043
|
-
|
|
4044
|
-
const
|
|
4045
|
-
|
|
4046
|
-
const
|
|
4045
|
+
Wt.displayName = "CardDescription";
|
|
4046
|
+
const Bt = ne.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a("div", { ref: t, className: n("p-6 pt-0", r), ...e }));
|
|
4047
|
+
Bt.displayName = "CardContent";
|
|
4048
|
+
const Ht = ne.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
4047
4049
|
"div",
|
|
4048
4050
|
{
|
|
4049
4051
|
ref: t,
|
|
@@ -4051,15 +4053,15 @@ const Bt = ne.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
|
4051
4053
|
...e
|
|
4052
4054
|
}
|
|
4053
4055
|
));
|
|
4054
|
-
|
|
4055
|
-
const
|
|
4056
|
+
Ht.displayName = "CardFooter";
|
|
4057
|
+
const Lt = ({ compact: r = !1 }) => {
|
|
4056
4058
|
const { sessionState: e, triggerSession: t, theme: o } = Se(), i = o === "dark", l = (s) => {
|
|
4057
4059
|
if (!s) return "N/A";
|
|
4058
4060
|
try {
|
|
4059
4061
|
const c = new Date(s), d = /* @__PURE__ */ new Date(), g = c.getTime() - d.getTime();
|
|
4060
4062
|
if (g < 0) return "Expired";
|
|
4061
|
-
const w = Math.floor(g / 6e4),
|
|
4062
|
-
return
|
|
4063
|
+
const w = Math.floor(g / 6e4), E = Math.floor(w / 60);
|
|
4064
|
+
return E > 0 ? `${E}h ${w % 60}m` : w > 0 ? `${w}m` : "Less than 1m";
|
|
4063
4065
|
} catch {
|
|
4064
4066
|
return "Invalid date";
|
|
4065
4067
|
}
|
|
@@ -4069,7 +4071,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4069
4071
|
/* @__PURE__ */ a(Je, { className: "h-3 w-3" }),
|
|
4070
4072
|
"Session Active"
|
|
4071
4073
|
] }) : e.lastError ? /* @__PURE__ */ y(ke, { variant: "destructive", className: "gap-1", children: [
|
|
4072
|
-
/* @__PURE__ */ a(
|
|
4074
|
+
/* @__PURE__ */ a(He, { className: "h-3 w-3" }),
|
|
4073
4075
|
"Error"
|
|
4074
4076
|
] }) : /* @__PURE__ */ y(ke, { variant: "secondary", className: "gap-1", children: [
|
|
4075
4077
|
/* @__PURE__ */ a(Xe, { className: "h-3 w-3" }),
|
|
@@ -4091,7 +4093,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4091
4093
|
]
|
|
4092
4094
|
}
|
|
4093
4095
|
)
|
|
4094
|
-
] }) : /* @__PURE__ */ a(
|
|
4096
|
+
] }) : /* @__PURE__ */ a(kr, { className: n(
|
|
4095
4097
|
"p-3 border",
|
|
4096
4098
|
i ? "bg-gray-800/50 border-gray-700/50" : "bg-gray-50 border-gray-100"
|
|
4097
4099
|
), children: /* @__PURE__ */ y("div", { className: "space-y-3", children: [
|
|
@@ -4113,7 +4115,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4113
4115
|
/* @__PURE__ */ a(Je, { className: "h-3 w-3 mr-1" }),
|
|
4114
4116
|
"Active"
|
|
4115
4117
|
] }) : e.lastError ? /* @__PURE__ */ y(ke, { variant: "destructive", children: [
|
|
4116
|
-
/* @__PURE__ */ a(
|
|
4118
|
+
/* @__PURE__ */ a(He, { className: "h-3 w-3 mr-1" }),
|
|
4117
4119
|
"Error"
|
|
4118
4120
|
] }) : /* @__PURE__ */ a(ke, { variant: "secondary", children: "Not Started" })
|
|
4119
4121
|
] }),
|
|
@@ -4135,7 +4137,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4135
4137
|
"flex items-center gap-2 p-2 rounded-lg",
|
|
4136
4138
|
i ? "bg-gray-800/50 border border-gray-700/50" : "bg-white border border-gray-100"
|
|
4137
4139
|
), children: [
|
|
4138
|
-
/* @__PURE__ */ a(
|
|
4140
|
+
/* @__PURE__ */ a(zr, { className: n("h-3.5 w-3.5", i ? "text-gray-500" : "text-gray-400") }),
|
|
4139
4141
|
/* @__PURE__ */ y("span", { className: n("text-xs", i ? "text-gray-400" : "text-gray-600"), children: [
|
|
4140
4142
|
"Expires in: ",
|
|
4141
4143
|
/* @__PURE__ */ a("span", { className: "font-medium", children: l(e.expires_at) })
|
|
@@ -4145,7 +4147,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4145
4147
|
"flex items-start gap-3 p-3 rounded-xl border",
|
|
4146
4148
|
i ? "bg-red-950/30 border-red-900/50" : "bg-red-50 border-red-100"
|
|
4147
4149
|
), children: [
|
|
4148
|
-
/* @__PURE__ */ a("div", { className: "w-6 h-6 rounded-lg bg-red-500 flex items-center justify-center shrink-0", children: /* @__PURE__ */ a(
|
|
4150
|
+
/* @__PURE__ */ a("div", { className: "w-6 h-6 rounded-lg bg-red-500 flex items-center justify-center shrink-0", children: /* @__PURE__ */ a(He, { className: "h-3.5 w-3.5 text-white" }) }),
|
|
4149
4151
|
/* @__PURE__ */ y("div", { className: "flex-1 min-w-0", children: [
|
|
4150
4152
|
/* @__PURE__ */ a("p", { className: n(
|
|
4151
4153
|
"text-xs font-medium mb-0.5",
|
|
@@ -4175,14 +4177,14 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4175
4177
|
}
|
|
4176
4178
|
)
|
|
4177
4179
|
] }) });
|
|
4178
|
-
},
|
|
4179
|
-
const { chatMessages: r, sendMessage: e, isConnected: t, theme: o } = Se(), [i, l] =
|
|
4180
|
+
}, Ft = () => {
|
|
4181
|
+
const { chatMessages: r, sendMessage: e, isConnected: t, theme: o } = Se(), [i, l] = R(""), [s, c] = R(!1), d = he(null), g = o === "dark", w = () => {
|
|
4180
4182
|
d.current?.scrollIntoView({ behavior: "smooth" });
|
|
4181
4183
|
};
|
|
4182
4184
|
ee(() => {
|
|
4183
4185
|
w();
|
|
4184
4186
|
}, [r]);
|
|
4185
|
-
const
|
|
4187
|
+
const E = async () => {
|
|
4186
4188
|
if (!i.trim() || !t || s) return;
|
|
4187
4189
|
const x = i.trim();
|
|
4188
4190
|
l(""), c(!0);
|
|
@@ -4193,8 +4195,8 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4193
4195
|
} finally {
|
|
4194
4196
|
c(!1);
|
|
4195
4197
|
}
|
|
4196
|
-
},
|
|
4197
|
-
x.key === "Enter" && !x.shiftKey && (x.preventDefault(),
|
|
4198
|
+
}, T = (x) => {
|
|
4199
|
+
x.key === "Enter" && !x.shiftKey && (x.preventDefault(), E());
|
|
4198
4200
|
}, V = (x) => new Date(x).toLocaleTimeString("en-US", {
|
|
4199
4201
|
hour: "2-digit",
|
|
4200
4202
|
minute: "2-digit"
|
|
@@ -4211,7 +4213,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4211
4213
|
/* @__PURE__ */ a("div", { className: n(
|
|
4212
4214
|
"w-7 h-7 rounded-lg flex items-center justify-center",
|
|
4213
4215
|
g ? "bg-indigo-900/30" : "bg-indigo-100"
|
|
4214
|
-
), children: /* @__PURE__ */ a(
|
|
4216
|
+
), children: /* @__PURE__ */ a(nr, { className: n(
|
|
4215
4217
|
"w-4 h-4",
|
|
4216
4218
|
g ? "text-indigo-400" : "text-indigo-600"
|
|
4217
4219
|
) }) }),
|
|
@@ -4220,7 +4222,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4220
4222
|
g ? "text-white" : "text-gray-900"
|
|
4221
4223
|
), children: "Chat with Aria" })
|
|
4222
4224
|
] }),
|
|
4223
|
-
/* @__PURE__ */ a(
|
|
4225
|
+
/* @__PURE__ */ a(Lt, { compact: !0 })
|
|
4224
4226
|
] }) }),
|
|
4225
4227
|
/* @__PURE__ */ y("div", { className: n(
|
|
4226
4228
|
"flex-1 overflow-y-auto p-4 space-y-4",
|
|
@@ -4258,7 +4260,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4258
4260
|
"shrink-0 w-6 h-6 rounded-full flex items-center justify-center",
|
|
4259
4261
|
x.role === "user" ? "bg-indigo-500 text-white" : g ? "bg-gray-700 text-gray-300" : "bg-gray-200 text-gray-600"
|
|
4260
4262
|
),
|
|
4261
|
-
children: x.role === "user" ? /* @__PURE__ */ a(
|
|
4263
|
+
children: x.role === "user" ? /* @__PURE__ */ a(Ir, { className: "h-3 w-3" }) : /* @__PURE__ */ a(Pr, { className: "h-3 w-3" })
|
|
4262
4264
|
}
|
|
4263
4265
|
),
|
|
4264
4266
|
/* @__PURE__ */ y(
|
|
@@ -4303,11 +4305,11 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4303
4305
|
g ? "bg-gray-850 border-gray-700 focus-within:border-primary/50" : "bg-gray-50 border-gray-200 focus-within:border-primary/50 focus-within:bg-white"
|
|
4304
4306
|
), children: [
|
|
4305
4307
|
/* @__PURE__ */ a(
|
|
4306
|
-
|
|
4308
|
+
Ar,
|
|
4307
4309
|
{
|
|
4308
4310
|
value: i,
|
|
4309
4311
|
onChange: (x) => l(x.target.value),
|
|
4310
|
-
onKeyDown:
|
|
4312
|
+
onKeyDown: T,
|
|
4311
4313
|
placeholder: t ? "Message Aria..." : "Connecting...",
|
|
4312
4314
|
disabled: !t || s,
|
|
4313
4315
|
className: n(
|
|
@@ -4319,19 +4321,19 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4319
4321
|
/* @__PURE__ */ a(
|
|
4320
4322
|
Ve,
|
|
4321
4323
|
{
|
|
4322
|
-
onClick:
|
|
4324
|
+
onClick: E,
|
|
4323
4325
|
disabled: !t || !i.trim() || s,
|
|
4324
4326
|
size: "icon",
|
|
4325
4327
|
className: n(
|
|
4326
4328
|
"h-7 w-7 rounded-md shrink-0 transition-all duration-200",
|
|
4327
4329
|
"bg-primary hover:bg-primary/90 disabled:opacity-40"
|
|
4328
4330
|
),
|
|
4329
|
-
children: /* @__PURE__ */ a(
|
|
4331
|
+
children: /* @__PURE__ */ a(Dr, { className: "h-3.5 w-3.5" })
|
|
4330
4332
|
}
|
|
4331
4333
|
)
|
|
4332
4334
|
] }) })
|
|
4333
4335
|
] });
|
|
4334
|
-
}, Ge = "data:image/jpeg;base64,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",
|
|
4336
|
+
}, Ge = "data:image/jpeg;base64,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", Sr = ({ onClose: r, isMinimized: e = !1 }) => {
|
|
4335
4337
|
const {
|
|
4336
4338
|
isConnected: t,
|
|
4337
4339
|
isLoading: o,
|
|
@@ -4342,20 +4344,20 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4342
4344
|
toggleChat: d,
|
|
4343
4345
|
toggleMute: g,
|
|
4344
4346
|
displayMode: w,
|
|
4345
|
-
theme:
|
|
4346
|
-
setVideoElement:
|
|
4347
|
+
theme: E,
|
|
4348
|
+
setVideoElement: T,
|
|
4347
4349
|
isSessionPreloaded: V,
|
|
4348
4350
|
refreshSession: x,
|
|
4349
4351
|
minimizeAssistant: I,
|
|
4350
|
-
maximizeAssistant:
|
|
4351
|
-
toolCallState:
|
|
4352
|
+
maximizeAssistant: j,
|
|
4353
|
+
toolCallState: W
|
|
4352
4354
|
} = Se(), O = he(null), P = he(null);
|
|
4353
4355
|
ee(() => {
|
|
4354
4356
|
P.current && (P.current.scrollTop = P.current.scrollHeight);
|
|
4355
|
-
}, [s]), ee(() => (O.current && (console.log("[AriaWidget] Registering video element, preloaded:", V),
|
|
4356
|
-
|
|
4357
|
-
}), [
|
|
4358
|
-
const h =
|
|
4357
|
+
}, [s]), ee(() => (O.current && (console.log("[AriaWidget] Registering video element, preloaded:", V, "minimized:", e), T(O.current)), () => {
|
|
4358
|
+
T(null);
|
|
4359
|
+
}), [T, V, e]);
|
|
4360
|
+
const h = E === "dark", _ = w === "bottom-right", q = w === "center";
|
|
4359
4361
|
return e ? /* @__PURE__ */ a(
|
|
4360
4362
|
"div",
|
|
4361
4363
|
{
|
|
@@ -4386,7 +4388,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4386
4388
|
className: "w-full h-full object-cover"
|
|
4387
4389
|
}
|
|
4388
4390
|
),
|
|
4389
|
-
|
|
4391
|
+
W.isActive && t && /* @__PURE__ */ y(
|
|
4390
4392
|
"div",
|
|
4391
4393
|
{
|
|
4392
4394
|
className: n(
|
|
@@ -4407,25 +4409,10 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4407
4409
|
/* @__PURE__ */ a("span", { className: n(
|
|
4408
4410
|
"text-[10px] font-semibold",
|
|
4409
4411
|
h ? "text-amber-200" : "text-amber-800"
|
|
4410
|
-
), children:
|
|
4412
|
+
), children: W.toolName ? W.toolName.replace(/_/g, " ") : "Processing..." })
|
|
4411
4413
|
]
|
|
4412
4414
|
}
|
|
4413
4415
|
),
|
|
4414
|
-
s && t && !j.isActive && /* @__PURE__ */ a(
|
|
4415
|
-
"div",
|
|
4416
|
-
{
|
|
4417
|
-
className: n(
|
|
4418
|
-
"absolute top-0 left-0 right-0 aria-animate-fade-in",
|
|
4419
|
-
"px-3 py-2",
|
|
4420
|
-
h ? "bg-gradient-to-b from-white/60 to-transparent text-gray-900" : "bg-gradient-to-b from-black/60 to-transparent text-white"
|
|
4421
|
-
),
|
|
4422
|
-
style: { backdropFilter: "blur(4px)" },
|
|
4423
|
-
children: /* @__PURE__ */ y("div", { className: "flex items-start gap-2 max-w-full", children: [
|
|
4424
|
-
/* @__PURE__ */ a("div", { className: "w-1.5 h-1.5 rounded-full bg-emerald-400 animate-pulse shrink-0 mt-1" }),
|
|
4425
|
-
/* @__PURE__ */ a("p", { ref: P, className: "text-[10px] leading-relaxed flex-1 max-h-[2.5em] overflow-y-auto scrollbar-hide", children: s })
|
|
4426
|
-
] })
|
|
4427
|
-
}
|
|
4428
|
-
),
|
|
4429
4416
|
t && !c && /* @__PURE__ */ y(
|
|
4430
4417
|
"div",
|
|
4431
4418
|
{
|
|
@@ -4453,14 +4440,14 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4453
4440
|
/* @__PURE__ */ a(
|
|
4454
4441
|
"button",
|
|
4455
4442
|
{
|
|
4456
|
-
onClick:
|
|
4443
|
+
onClick: j,
|
|
4457
4444
|
className: n(
|
|
4458
4445
|
"w-8 h-8 rounded-full flex items-center justify-center transition-all duration-200",
|
|
4459
4446
|
"border-0 outline-none focus:outline-none shadow-sm",
|
|
4460
4447
|
h ? "bg-indigo-600 hover:bg-indigo-700 text-white" : "bg-indigo-500 hover:bg-indigo-600 text-white"
|
|
4461
4448
|
),
|
|
4462
|
-
title: "
|
|
4463
|
-
children: /* @__PURE__ */ a(
|
|
4449
|
+
title: "Maximize",
|
|
4450
|
+
children: /* @__PURE__ */ a(Vr, { className: "h-3.5 w-3.5" })
|
|
4464
4451
|
}
|
|
4465
4452
|
),
|
|
4466
4453
|
/* @__PURE__ */ a(
|
|
@@ -4469,7 +4456,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4469
4456
|
onClick: r,
|
|
4470
4457
|
className: "w-8 h-8 rounded-full bg-red-500 hover:bg-red-600 flex items-center justify-center transition-all duration-200 text-white border-0 outline-none focus:outline-none shadow-sm",
|
|
4471
4458
|
title: "End Call",
|
|
4472
|
-
children: /* @__PURE__ */ a(
|
|
4459
|
+
children: /* @__PURE__ */ a(er, { className: "h-3.5 w-3.5 rotate-[135deg]" })
|
|
4473
4460
|
}
|
|
4474
4461
|
)
|
|
4475
4462
|
]
|
|
@@ -4496,8 +4483,8 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4496
4483
|
src: Ge,
|
|
4497
4484
|
alt: "Aria",
|
|
4498
4485
|
className: "w-full h-full object-cover",
|
|
4499
|
-
onError: (
|
|
4500
|
-
|
|
4486
|
+
onError: (L) => {
|
|
4487
|
+
L.currentTarget.style.display = "none";
|
|
4501
4488
|
}
|
|
4502
4489
|
}
|
|
4503
4490
|
) })
|
|
@@ -4608,8 +4595,8 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4608
4595
|
src: Ge,
|
|
4609
4596
|
alt: "Aria",
|
|
4610
4597
|
className: "w-full h-full object-cover",
|
|
4611
|
-
onError: (
|
|
4612
|
-
|
|
4598
|
+
onError: (L) => {
|
|
4599
|
+
L.currentTarget.style.display = "none";
|
|
4613
4600
|
}
|
|
4614
4601
|
}
|
|
4615
4602
|
) })
|
|
@@ -4618,7 +4605,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4618
4605
|
"text-2xl font-bold tracking-tight mb-2",
|
|
4619
4606
|
h ? "text-white" : "text-gray-900"
|
|
4620
4607
|
), children: "Aria is joining..." }),
|
|
4621
|
-
/* @__PURE__ */ a("div", { className: "flex items-center gap-1.5 mb-6", children: [0, 1, 2].map((
|
|
4608
|
+
/* @__PURE__ */ a("div", { className: "flex items-center gap-1.5 mb-6", children: [0, 1, 2].map((L) => /* @__PURE__ */ a(
|
|
4622
4609
|
"div",
|
|
4623
4610
|
{
|
|
4624
4611
|
className: n(
|
|
@@ -4627,10 +4614,10 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4627
4614
|
),
|
|
4628
4615
|
style: {
|
|
4629
4616
|
animation: "aria-loading-bounce 1.4s ease-in-out infinite",
|
|
4630
|
-
animationDelay: `${
|
|
4617
|
+
animationDelay: `${L * 0.15}s`
|
|
4631
4618
|
}
|
|
4632
4619
|
},
|
|
4633
|
-
|
|
4620
|
+
L
|
|
4634
4621
|
)) }),
|
|
4635
4622
|
/* @__PURE__ */ a("p", { className: n(
|
|
4636
4623
|
"text-sm font-medium px-4 py-2 rounded-full",
|
|
@@ -4690,7 +4677,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4690
4677
|
className: "w-full h-full object-contain"
|
|
4691
4678
|
}
|
|
4692
4679
|
),
|
|
4693
|
-
|
|
4680
|
+
W.isActive && t && /* @__PURE__ */ y(
|
|
4694
4681
|
"div",
|
|
4695
4682
|
{
|
|
4696
4683
|
className: n(
|
|
@@ -4712,13 +4699,13 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4712
4699
|
/* @__PURE__ */ a("span", { className: n(
|
|
4713
4700
|
"text-xs font-semibold",
|
|
4714
4701
|
h ? "text-amber-200" : "text-amber-800"
|
|
4715
|
-
), children:
|
|
4702
|
+
), children: W.toolName ? `Running: ${W.toolName.replace(/_/g, " ")}` : "Processing..." }),
|
|
4716
4703
|
/* @__PURE__ */ a("span", { className: n(
|
|
4717
4704
|
"text-[10px]",
|
|
4718
4705
|
h ? "text-amber-400" : "text-amber-600"
|
|
4719
4706
|
), children: "Please wait..." })
|
|
4720
4707
|
] }),
|
|
4721
|
-
/* @__PURE__ */ a("div", { className: "flex items-center gap-0.5 ml-1", children: [0, 1, 2].map((
|
|
4708
|
+
/* @__PURE__ */ a("div", { className: "flex items-center gap-0.5 ml-1", children: [0, 1, 2].map((L) => /* @__PURE__ */ a(
|
|
4722
4709
|
"div",
|
|
4723
4710
|
{
|
|
4724
4711
|
className: n(
|
|
@@ -4727,15 +4714,15 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4727
4714
|
),
|
|
4728
4715
|
style: {
|
|
4729
4716
|
animation: "aria-loading-bounce 1.4s ease-in-out infinite",
|
|
4730
|
-
animationDelay: `${
|
|
4717
|
+
animationDelay: `${L * 0.15}s`
|
|
4731
4718
|
}
|
|
4732
4719
|
},
|
|
4733
|
-
|
|
4720
|
+
L
|
|
4734
4721
|
)) })
|
|
4735
4722
|
]
|
|
4736
4723
|
}
|
|
4737
4724
|
),
|
|
4738
|
-
s && t && !
|
|
4725
|
+
s && t && !W.isActive && /* @__PURE__ */ a(
|
|
4739
4726
|
"div",
|
|
4740
4727
|
{
|
|
4741
4728
|
className: n(
|
|
@@ -4771,7 +4758,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4771
4758
|
i ? h ? "bg-indigo-600 hover:bg-indigo-700 text-white" : "bg-indigo-500 hover:bg-indigo-600 text-white" : h ? "bg-gray-800/80 hover:bg-gray-700 text-gray-300" : "bg-gray-100/80 hover:bg-gray-200 text-gray-600"
|
|
4772
4759
|
),
|
|
4773
4760
|
title: i ? "Hide Chat" : "Show Chat",
|
|
4774
|
-
children: /* @__PURE__ */ a(
|
|
4761
|
+
children: /* @__PURE__ */ a(nr, { className: "h-4 w-4" })
|
|
4775
4762
|
}
|
|
4776
4763
|
),
|
|
4777
4764
|
/* @__PURE__ */ a(
|
|
@@ -4797,7 +4784,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4797
4784
|
h ? "bg-gray-800/80 hover:bg-gray-700 text-gray-300" : "bg-gray-100/80 hover:bg-gray-200 text-gray-600"
|
|
4798
4785
|
),
|
|
4799
4786
|
title: "Minimize",
|
|
4800
|
-
children: /* @__PURE__ */ a(
|
|
4787
|
+
children: /* @__PURE__ */ a(jr, { className: "h-4 w-4" })
|
|
4801
4788
|
}
|
|
4802
4789
|
),
|
|
4803
4790
|
/* @__PURE__ */ a(
|
|
@@ -4806,7 +4793,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4806
4793
|
onClick: r,
|
|
4807
4794
|
className: "w-10 h-9 rounded-full bg-red-500 hover:bg-red-600 flex items-center justify-center transition-all duration-200 text-white border-0 outline-none focus:outline-none shadow-sm",
|
|
4808
4795
|
title: "End Call",
|
|
4809
|
-
children: /* @__PURE__ */ a(
|
|
4796
|
+
children: /* @__PURE__ */ a(er, { className: "h-4 w-4 rotate-[135deg]" })
|
|
4810
4797
|
}
|
|
4811
4798
|
)
|
|
4812
4799
|
]
|
|
@@ -4817,7 +4804,7 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4817
4804
|
"flex flex-col shrink-0 border-l",
|
|
4818
4805
|
_ ? "w-[320px]" : "w-[360px]",
|
|
4819
4806
|
h ? "bg-gray-900 border-gray-800" : "bg-white border-gray-100"
|
|
4820
|
-
), children: /* @__PURE__ */ a(
|
|
4807
|
+
), children: /* @__PURE__ */ a(Ft, {}) })
|
|
4821
4808
|
] })
|
|
4822
4809
|
}
|
|
4823
4810
|
);
|
|
@@ -4828,12 +4815,12 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4828
4815
|
style: o,
|
|
4829
4816
|
as: i = "div"
|
|
4830
4817
|
}) => {
|
|
4831
|
-
const l = he(null), [s, c] =
|
|
4818
|
+
const l = he(null), [s, c] = R(null);
|
|
4832
4819
|
ee(() => {
|
|
4833
4820
|
const w = l.current;
|
|
4834
4821
|
if (!w) return;
|
|
4835
|
-
let
|
|
4836
|
-
|
|
4822
|
+
let E = w.shadowRoot;
|
|
4823
|
+
E || (E = w.attachShadow({ mode: "open" })), c(E);
|
|
4837
4824
|
}, []), ee(() => {
|
|
4838
4825
|
if (!s || !e) return;
|
|
4839
4826
|
const w = s.querySelector("style[data-aria-styles]");
|
|
@@ -4841,12 +4828,12 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4841
4828
|
w.textContent = e;
|
|
4842
4829
|
return;
|
|
4843
4830
|
}
|
|
4844
|
-
const
|
|
4845
|
-
return
|
|
4846
|
-
|
|
4831
|
+
const E = document.createElement("style");
|
|
4832
|
+
return E.setAttribute("data-aria-styles", "true"), E.textContent = e, s.prepend(E), () => {
|
|
4833
|
+
E.remove();
|
|
4847
4834
|
};
|
|
4848
4835
|
}, [s, e]);
|
|
4849
|
-
const [d, g] =
|
|
4836
|
+
const [d, g] = R(null);
|
|
4850
4837
|
return ee(() => {
|
|
4851
4838
|
if (!s) return;
|
|
4852
4839
|
let w = s.querySelector(".aria-shadow-content");
|
|
@@ -4857,21 +4844,21 @@ const Ft = ({ compact: r = !1 }) => {
|
|
|
4857
4844
|
ref: l,
|
|
4858
4845
|
className: t,
|
|
4859
4846
|
style: o,
|
|
4860
|
-
children: d &&
|
|
4847
|
+
children: d && Wr(r, d)
|
|
4861
4848
|
}
|
|
4862
4849
|
);
|
|
4863
|
-
}, 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-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)}.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\\.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-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-\\[2\\.5em\\]{max-height:2.5em}.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\\.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-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-180{rotate:180deg}.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-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\\/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-600{--tw-gradient-to:var(--color-purple-600);--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-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)}.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,)}.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\\: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\\:scale-105:hover{--tw-scale-x:105%;--tw-scale-y:105%;--tw-scale-z:105%;scale:var(--tw-scale-x)var(--tw-scale-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-xl:hover{--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)}.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}}';
|
|
4850
|
+
}, Er = '@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-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)}.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\\.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-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\\.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-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-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\\/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-600{--tw-gradient-to:var(--color-purple-600);--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-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)}.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,)}.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\\: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\\:scale-105:hover{--tw-scale-x:105%;--tw-scale-y:105%;--tw-scale-z:105%;scale:var(--tw-scale-x)var(--tw-scale-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-xl:hover{--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)}.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}}';
|
|
4864
4851
|
function We() {
|
|
4865
|
-
return
|
|
4852
|
+
return Er;
|
|
4866
4853
|
}
|
|
4867
|
-
const
|
|
4854
|
+
const ao = Er, Ot = ({
|
|
4868
4855
|
label: r,
|
|
4869
4856
|
showAvatar: e = !1,
|
|
4870
4857
|
onTrigger: t,
|
|
4871
4858
|
className: o,
|
|
4872
4859
|
...i
|
|
4873
4860
|
}) => {
|
|
4874
|
-
const { openAssistant: l, isSessionPreloaded: s, sessionManagerStatus: c, config: d, isOpen: g, theme: w } = Se(),
|
|
4861
|
+
const { openAssistant: l, isSessionPreloaded: s, sessionManagerStatus: c, config: d, isOpen: g, theme: w } = Se(), E = r || d.triggerLabel || "Talk to Aria", T = w === "dark", V = s || c === "ready";
|
|
4875
4862
|
return g ? null : /* @__PURE__ */ a(
|
|
4876
4863
|
je,
|
|
4877
4864
|
{
|
|
@@ -4882,7 +4869,7 @@ const oo = Mr, Lt = ({
|
|
|
4882
4869
|
right: "1.5rem",
|
|
4883
4870
|
zIndex: 9997
|
|
4884
4871
|
},
|
|
4885
|
-
children: /* @__PURE__ */ a("div", { className: n("aria-assistant-container",
|
|
4872
|
+
children: /* @__PURE__ */ a("div", { className: n("aria-assistant-container", T && "aria-dark"), children: /* @__PURE__ */ y(
|
|
4886
4873
|
"button",
|
|
4887
4874
|
{
|
|
4888
4875
|
onClick: (x) => {
|
|
@@ -4894,12 +4881,12 @@ const oo = Mr, Lt = ({
|
|
|
4894
4881
|
"aria-animate-slide-up",
|
|
4895
4882
|
"border-none outline-none",
|
|
4896
4883
|
// Light mode styling
|
|
4897
|
-
!
|
|
4884
|
+
!T && [
|
|
4898
4885
|
"bg-white shadow-[0_8px_30px_rgb(0,0,0,0.12)]",
|
|
4899
4886
|
"hover:bg-gray-50 hover:shadow-[0_8px_30px_rgb(0,0,0,0.16)] hover:-translate-y-0.5"
|
|
4900
4887
|
],
|
|
4901
4888
|
// Dark mode styling
|
|
4902
|
-
|
|
4889
|
+
T && [
|
|
4903
4890
|
"bg-gray-900 shadow-[0_8px_30px_rgb(0,0,0,0.3)]",
|
|
4904
4891
|
"hover:bg-gray-850 hover:shadow-[0_8px_30px_rgb(0,0,0,0.4)] hover:-translate-y-0.5"
|
|
4905
4892
|
],
|
|
@@ -4910,13 +4897,13 @@ const oo = Mr, Lt = ({
|
|
|
4910
4897
|
e ? /* @__PURE__ */ y("div", { className: n(
|
|
4911
4898
|
"relative w-9 h-9 rounded-lg overflow-hidden shrink-0",
|
|
4912
4899
|
"shadow-sm transition-all duration-200",
|
|
4913
|
-
|
|
4900
|
+
T ? "bg-gray-800" : "bg-gray-100"
|
|
4914
4901
|
), children: [
|
|
4915
4902
|
/* @__PURE__ */ a(
|
|
4916
4903
|
"img",
|
|
4917
4904
|
{
|
|
4918
4905
|
src: Ge,
|
|
4919
|
-
alt:
|
|
4906
|
+
alt: E,
|
|
4920
4907
|
className: "w-full h-full object-cover",
|
|
4921
4908
|
onError: (x) => {
|
|
4922
4909
|
x.currentTarget.style.display = "none";
|
|
@@ -4934,7 +4921,7 @@ const oo = Mr, Lt = ({
|
|
|
4934
4921
|
),
|
|
4935
4922
|
/* @__PURE__ */ a("span", { className: n(
|
|
4936
4923
|
"absolute bottom-0 right-0 w-2.5 h-2.5 rounded-full border-2",
|
|
4937
|
-
|
|
4924
|
+
T ? "border-gray-900" : "border-white",
|
|
4938
4925
|
V ? "bg-emerald-500" : "bg-amber-500 animate-pulse"
|
|
4939
4926
|
) })
|
|
4940
4927
|
] }) : /* @__PURE__ */ a("div", { className: n(
|
|
@@ -4945,11 +4932,11 @@ const oo = Mr, Lt = ({
|
|
|
4945
4932
|
/* @__PURE__ */ y("div", { className: "relative flex flex-col items-start min-w-0 text-left", children: [
|
|
4946
4933
|
/* @__PURE__ */ a("span", { className: n(
|
|
4947
4934
|
"font-bold text-[13px] tracking-tight leading-none",
|
|
4948
|
-
|
|
4949
|
-
), children:
|
|
4935
|
+
T ? "text-white" : "text-gray-900"
|
|
4936
|
+
), children: E }),
|
|
4950
4937
|
/* @__PURE__ */ a("span", { className: n(
|
|
4951
4938
|
"text-[10px] font-medium mt-1 leading-none opacity-70",
|
|
4952
|
-
|
|
4939
|
+
T ? "text-gray-400" : "text-gray-500"
|
|
4953
4940
|
), children: "I'm here to chat" })
|
|
4954
4941
|
] })
|
|
4955
4942
|
]
|
|
@@ -4957,14 +4944,14 @@ const oo = Mr, Lt = ({
|
|
|
4957
4944
|
) })
|
|
4958
4945
|
}
|
|
4959
4946
|
);
|
|
4960
|
-
},
|
|
4947
|
+
}, _t = ({
|
|
4961
4948
|
showTrigger: r = !0,
|
|
4962
4949
|
showAvatar: e = !0,
|
|
4963
4950
|
triggerLabel: t
|
|
4964
4951
|
}) => {
|
|
4965
4952
|
const { isOpen: o, isMinimized: i, closeAssistant: l, minimizeAssistant: s } = Se();
|
|
4966
4953
|
return /* @__PURE__ */ y(Te, { children: [
|
|
4967
|
-
r && !o && /* @__PURE__ */ a(
|
|
4954
|
+
r && !o && /* @__PURE__ */ a(Ot, { showAvatar: e, label: t }),
|
|
4968
4955
|
o && /* @__PURE__ */ y(Te, { children: [
|
|
4969
4956
|
!i && /* @__PURE__ */ a(
|
|
4970
4957
|
"div",
|
|
@@ -4995,17 +4982,17 @@ const oo = Mr, Lt = ({
|
|
|
4995
4982
|
inset: 0,
|
|
4996
4983
|
pointerEvents: "none"
|
|
4997
4984
|
},
|
|
4998
|
-
children: /* @__PURE__ */ a("div", { style: { pointerEvents: "auto" }, children: /* @__PURE__ */ a(
|
|
4985
|
+
children: /* @__PURE__ */ a("div", { style: { pointerEvents: "auto" }, children: /* @__PURE__ */ a(Sr, { onClose: l, isMinimized: i }) })
|
|
4999
4986
|
}
|
|
5000
4987
|
)
|
|
5001
4988
|
] })
|
|
5002
4989
|
] });
|
|
5003
|
-
},
|
|
5004
|
-
const [t, o] =
|
|
4990
|
+
}, io = ({ config: r, children: e }) => {
|
|
4991
|
+
const [t, o] = R(!1), [i, l] = R(!1), [s, c] = R(!1), [d, g] = R(!1), [w, E] = R([]), [T, V] = R(""), [x, I] = R(!1), [j, W] = R(!1), [O, P] = R(null), [h, _] = R("user"), [q, L] = R("bottom-right"), [A, K] = R({
|
|
5005
4992
|
isActive: !1,
|
|
5006
4993
|
toolName: null,
|
|
5007
4994
|
toolData: null
|
|
5008
|
-
}), [re, J] =
|
|
4995
|
+
}), [re, J] = R({
|
|
5009
4996
|
session_id: null,
|
|
5010
4997
|
token: null,
|
|
5011
4998
|
expires_at: null,
|
|
@@ -5013,16 +5000,16 @@ const oo = Mr, Lt = ({
|
|
|
5013
5000
|
lastError: null,
|
|
5014
5001
|
isPreloaded: !1,
|
|
5015
5002
|
isRefreshing: !1
|
|
5016
|
-
}), [G, ue] =
|
|
5017
|
-
const { newStatus:
|
|
5018
|
-
ue(
|
|
5003
|
+
}), [G, ue] = R("idle"), [te, k] = R(!1), U = r.theme || "light", b = he(null), v = he(null), le = he(null), oe = M((u) => {
|
|
5004
|
+
const { newStatus: S } = u.data;
|
|
5005
|
+
ue(S), S === "preloading" || S === "connecting" ? t && g(!0) : S === "ready" ? (g(!1), c(!0)) : S === "error" && g(!1);
|
|
5019
5006
|
}, [t]), ae = M((u) => {
|
|
5020
|
-
const
|
|
5021
|
-
if (console.log("[AriaProvider] Session ready event:",
|
|
5007
|
+
const S = u.data;
|
|
5008
|
+
if (console.log("[AriaProvider] Session ready event:", S), b.current) {
|
|
5022
5009
|
const Z = b.current.getSessionState();
|
|
5023
5010
|
J(Z);
|
|
5024
5011
|
}
|
|
5025
|
-
if (
|
|
5012
|
+
if (S.lazyInit && S.tokenReady && t && b.current && !b.current.isAnamClientInitialized()) {
|
|
5026
5013
|
console.log("[AriaProvider] Token received while widget is open, initializing Anam client"), g(!0), b.current.initializeSessionOnDemand().then(() => {
|
|
5027
5014
|
console.log("[AriaProvider] Anam client initialized after token received"), g(!1), c(!0), P(null);
|
|
5028
5015
|
}).catch((xe) => {
|
|
@@ -5032,39 +5019,39 @@ const oo = Mr, Lt = ({
|
|
|
5032
5019
|
}
|
|
5033
5020
|
c(!0), g(!1), P(null);
|
|
5034
5021
|
}, [t]), $ = M((u) => {
|
|
5035
|
-
const
|
|
5036
|
-
if (console.error("[AriaProvider] Session error:",
|
|
5022
|
+
const S = u.error?.message || "Session error";
|
|
5023
|
+
if (console.error("[AriaProvider] Session error:", S), P(S), g(!1), b.current) {
|
|
5037
5024
|
const Z = b.current.getSessionState();
|
|
5038
5025
|
J(Z);
|
|
5039
5026
|
}
|
|
5040
5027
|
}, []), B = M((u) => {
|
|
5041
|
-
const { connected:
|
|
5042
|
-
if (c(
|
|
5028
|
+
const { connected: S } = u.data;
|
|
5029
|
+
if (c(S), !S && b.current) {
|
|
5043
5030
|
const Z = b.current.getSessionState();
|
|
5044
5031
|
J(Z);
|
|
5045
5032
|
}
|
|
5046
|
-
}, []),
|
|
5047
|
-
const { messages:
|
|
5048
|
-
|
|
5033
|
+
}, []), H = M((u) => {
|
|
5034
|
+
const { messages: S } = u.data;
|
|
5035
|
+
S && E(S);
|
|
5049
5036
|
}, []), ie = M((u) => {
|
|
5050
|
-
const { liveTranscript:
|
|
5051
|
-
|
|
5037
|
+
const { liveTranscript: S } = u.data;
|
|
5038
|
+
S !== void 0 && V(S);
|
|
5052
5039
|
}, []), ce = M((u) => {
|
|
5053
5040
|
console.log("[AriaProvider] WebSocket trigger event:", u.data), le.current?.("websocket");
|
|
5054
5041
|
}, []), D = M((u) => {
|
|
5055
|
-
const
|
|
5056
|
-
console.log("[AriaProvider] Tool call event:",
|
|
5057
|
-
isActive:
|
|
5058
|
-
toolName:
|
|
5059
|
-
toolData:
|
|
5042
|
+
const S = u.data;
|
|
5043
|
+
console.log("[AriaProvider] Tool call event:", S), K({
|
|
5044
|
+
isActive: S.isActive,
|
|
5045
|
+
toolName: S.toolName,
|
|
5046
|
+
toolData: S.toolData
|
|
5060
5047
|
});
|
|
5061
5048
|
}, []);
|
|
5062
5049
|
ee(() => {
|
|
5063
5050
|
const u = Q.getInstance(r);
|
|
5064
|
-
b.current = u, u.addEventListener("status_change", oe), u.addEventListener("session_ready", ae), u.addEventListener("session_error", $), u.addEventListener("connection_change", B), u.addEventListener("message_history",
|
|
5065
|
-
const
|
|
5066
|
-
return K(
|
|
5067
|
-
u.removeEventListener("status_change", oe), u.removeEventListener("session_ready", ae), u.removeEventListener("session_error", $), u.removeEventListener("connection_change", B), u.removeEventListener("message_history",
|
|
5051
|
+
b.current = u, u.addEventListener("status_change", oe), u.addEventListener("session_ready", ae), u.addEventListener("session_error", $), u.addEventListener("connection_change", B), u.addEventListener("message_history", H), u.addEventListener("message_stream", ie), u.addEventListener("tool_call", D), u.setWebSocketTriggerCallback(ce), J(u.getSessionState()), ue(u.getStatus()), c(u.isConnected()), E(u.getChatMessages()), V(u.getLiveTranscript()), W(u.isMuted()), k(u.isSessionPaused());
|
|
5052
|
+
const S = u.getToolCallState();
|
|
5053
|
+
return K(S), !u.isConnected() && u.getStatus() === "idle" && u.connect(), () => {
|
|
5054
|
+
u.removeEventListener("status_change", oe), u.removeEventListener("session_ready", ae), u.removeEventListener("session_error", $), u.removeEventListener("connection_change", B), u.removeEventListener("message_history", H), u.removeEventListener("message_stream", ie), u.removeEventListener("tool_call", D), u.setWebSocketTriggerCallback(null);
|
|
5068
5055
|
};
|
|
5069
5056
|
}, [
|
|
5070
5057
|
r,
|
|
@@ -5072,42 +5059,43 @@ const oo = Mr, Lt = ({
|
|
|
5072
5059
|
ae,
|
|
5073
5060
|
$,
|
|
5074
5061
|
B,
|
|
5075
|
-
|
|
5062
|
+
H,
|
|
5076
5063
|
ie,
|
|
5077
5064
|
D,
|
|
5078
5065
|
ce
|
|
5079
5066
|
]);
|
|
5080
5067
|
const we = M((u) => {
|
|
5081
|
-
|
|
5068
|
+
const S = v.current;
|
|
5069
|
+
v.current = u, u && b.current ? (console.log("[AriaProvider] Attaching video stream to element"), b.current.attachToVideoElement(u)) : !u && S && b.current && (console.log("[AriaProvider] Detaching video stream from element"), b.current.detachFromVideoElement(S));
|
|
5082
5070
|
}, []), de = M((u) => {
|
|
5083
5071
|
if (!b.current) {
|
|
5084
5072
|
console.error("[AriaProvider] Session manager not initialized");
|
|
5085
5073
|
return;
|
|
5086
5074
|
}
|
|
5087
|
-
const
|
|
5088
|
-
b.current.triggerSession(
|
|
5075
|
+
const S = u?.userTrigger ?? !0;
|
|
5076
|
+
b.current.triggerSession(S);
|
|
5089
5077
|
}, []), pe = M(async () => {
|
|
5090
5078
|
b.current && (b.current.isConnected() || b.current.connect());
|
|
5091
5079
|
}, []), be = M(async () => {
|
|
5092
5080
|
if (b.current)
|
|
5093
5081
|
try {
|
|
5094
|
-
await b.current.forceEndSession(), c(!1),
|
|
5082
|
+
await b.current.forceEndSession(), c(!1), E([]), V("");
|
|
5095
5083
|
const u = b.current.getSessionState();
|
|
5096
5084
|
J(u);
|
|
5097
5085
|
} catch (u) {
|
|
5098
|
-
const
|
|
5099
|
-
P(
|
|
5086
|
+
const S = u instanceof Error ? u.message : "Failed to stop session";
|
|
5087
|
+
P(S), r.onError?.(u instanceof Error ? u : new Error(S));
|
|
5100
5088
|
}
|
|
5101
5089
|
}, [r]), me = M(async () => {
|
|
5102
5090
|
b.current && await b.current.refreshSession();
|
|
5103
5091
|
}, []), p = M((u = "user") => {
|
|
5104
|
-
if (_(u),
|
|
5105
|
-
const
|
|
5106
|
-
if (console.log("[AriaProvider] openAssistant - isSessionPaused:",
|
|
5092
|
+
if (_(u), L(u === "websocket" ? "center" : "bottom-right"), o(!0), l(!1), P(null), !b.current) return;
|
|
5093
|
+
const S = b.current.isSessionPaused();
|
|
5094
|
+
if (console.log("[AriaProvider] openAssistant - isSessionPaused:", S, "persistSession:", r.persistSession), S) {
|
|
5107
5095
|
console.log("[AriaProvider] Resuming paused session"), g(!0), b.current.resumeSession().then(() => {
|
|
5108
5096
|
g(!1), c(!0), k(!1);
|
|
5109
5097
|
const Y = b.current.getSessionState();
|
|
5110
|
-
J(Y),
|
|
5098
|
+
J(Y), E(b.current.getChatMessages());
|
|
5111
5099
|
}).catch((Y) => {
|
|
5112
5100
|
console.error("[AriaProvider] Failed to resume session:", Y), g(!1), k(!1), P(Y instanceof Error ? Y.message : "Failed to resume session");
|
|
5113
5101
|
});
|
|
@@ -5125,7 +5113,7 @@ const oo = Mr, Lt = ({
|
|
|
5125
5113
|
ee(() => {
|
|
5126
5114
|
le.current = p;
|
|
5127
5115
|
}, [p]);
|
|
5128
|
-
const
|
|
5116
|
+
const N = M(() => {
|
|
5129
5117
|
console.log("[AriaProvider] Minimizing assistant"), l(!0);
|
|
5130
5118
|
}, []), se = M(() => {
|
|
5131
5119
|
console.log("[AriaProvider] Maximizing assistant"), l(!1);
|
|
@@ -5141,7 +5129,7 @@ const oo = Mr, Lt = ({
|
|
|
5141
5129
|
lastError: null,
|
|
5142
5130
|
isPreloaded: !1,
|
|
5143
5131
|
isRefreshing: !1
|
|
5144
|
-
}), c(!1),
|
|
5132
|
+
}), c(!1), E([]));
|
|
5145
5133
|
}, [r.persistSession]), Ce = M(() => {
|
|
5146
5134
|
I((u) => !u);
|
|
5147
5135
|
}, []), X = M(async (u) => {
|
|
@@ -5149,24 +5137,24 @@ const oo = Mr, Lt = ({
|
|
|
5149
5137
|
throw new Error("Not connected to Aria");
|
|
5150
5138
|
try {
|
|
5151
5139
|
await b.current.sendMessage(u);
|
|
5152
|
-
} catch (
|
|
5153
|
-
const Z =
|
|
5154
|
-
throw P(Z), r.onError?.(
|
|
5140
|
+
} catch (S) {
|
|
5141
|
+
const Z = S instanceof Error ? S.message : "Failed to send message";
|
|
5142
|
+
throw P(Z), r.onError?.(S instanceof Error ? S : new Error(Z)), S;
|
|
5155
5143
|
}
|
|
5156
|
-
}, [s, r]),
|
|
5144
|
+
}, [s, r]), Mr = M(() => {
|
|
5157
5145
|
if (!b.current) return;
|
|
5158
5146
|
const u = b.current.toggleMute();
|
|
5159
|
-
|
|
5160
|
-
}, []),
|
|
5147
|
+
W(u);
|
|
5148
|
+
}, []), Cr = M(() => re.session_id, [re.session_id]), Nr = {
|
|
5161
5149
|
// UI State
|
|
5162
5150
|
isOpen: t,
|
|
5163
5151
|
isMinimized: i,
|
|
5164
5152
|
isConnected: s,
|
|
5165
5153
|
isLoading: d,
|
|
5166
5154
|
chatMessages: w,
|
|
5167
|
-
liveTranscript:
|
|
5155
|
+
liveTranscript: T,
|
|
5168
5156
|
isChatVisible: x,
|
|
5169
|
-
isMuted:
|
|
5157
|
+
isMuted: j,
|
|
5170
5158
|
error: O,
|
|
5171
5159
|
// Tool Call State
|
|
5172
5160
|
toolCallState: A,
|
|
@@ -5178,11 +5166,11 @@ const oo = Mr, Lt = ({
|
|
|
5178
5166
|
// Actions
|
|
5179
5167
|
openAssistant: p,
|
|
5180
5168
|
closeAssistant: ye,
|
|
5181
|
-
minimizeAssistant:
|
|
5169
|
+
minimizeAssistant: N,
|
|
5182
5170
|
maximizeAssistant: se,
|
|
5183
5171
|
toggleChat: Ce,
|
|
5184
5172
|
sendMessage: X,
|
|
5185
|
-
toggleMute:
|
|
5173
|
+
toggleMute: Mr,
|
|
5186
5174
|
startSession: pe,
|
|
5187
5175
|
stopSession: be,
|
|
5188
5176
|
triggerSession: de,
|
|
@@ -5195,12 +5183,12 @@ const oo = Mr, Lt = ({
|
|
|
5195
5183
|
// Config
|
|
5196
5184
|
config: r,
|
|
5197
5185
|
// Utilities
|
|
5198
|
-
getSessionId:
|
|
5186
|
+
getSessionId: Cr
|
|
5199
5187
|
};
|
|
5200
|
-
return /* @__PURE__ */ y(
|
|
5188
|
+
return /* @__PURE__ */ y(lr.Provider, { value: Nr, children: [
|
|
5201
5189
|
e,
|
|
5202
5190
|
r.showAssistant !== !1 && /* @__PURE__ */ a(
|
|
5203
|
-
|
|
5191
|
+
_t,
|
|
5204
5192
|
{
|
|
5205
5193
|
showTrigger: r.showFloatingButton !== !1,
|
|
5206
5194
|
showAvatar: !0,
|
|
@@ -5208,7 +5196,7 @@ const oo = Mr, Lt = ({
|
|
|
5208
5196
|
}
|
|
5209
5197
|
)
|
|
5210
5198
|
] });
|
|
5211
|
-
},
|
|
5199
|
+
}, so = () => {
|
|
5212
5200
|
const {
|
|
5213
5201
|
sessionState: r,
|
|
5214
5202
|
sessionManagerStatus: e,
|
|
@@ -5221,7 +5209,7 @@ const oo = Mr, Lt = ({
|
|
|
5221
5209
|
startSession: d,
|
|
5222
5210
|
triggerSession: g,
|
|
5223
5211
|
getSessionId: w
|
|
5224
|
-
} = Se(),
|
|
5212
|
+
} = Se(), E = Be(() => {
|
|
5225
5213
|
if (!r.expires_at)
|
|
5226
5214
|
return {
|
|
5227
5215
|
isExpired: !1,
|
|
@@ -5234,7 +5222,7 @@ const oo = Mr, Lt = ({
|
|
|
5234
5222
|
isExpiringSoon: h > 0 && h <= _,
|
|
5235
5223
|
timeUntilExpiry: h > 0 ? h : null
|
|
5236
5224
|
};
|
|
5237
|
-
}, [r.expires_at]),
|
|
5225
|
+
}, [r.expires_at]), T = Be(() => ({
|
|
5238
5226
|
sessionState: r,
|
|
5239
5227
|
status: e,
|
|
5240
5228
|
isPreloaded: t,
|
|
@@ -5242,7 +5230,7 @@ const oo = Mr, Lt = ({
|
|
|
5242
5230
|
isConnected: i,
|
|
5243
5231
|
isLoading: l,
|
|
5244
5232
|
sessionId: w(),
|
|
5245
|
-
...
|
|
5233
|
+
...E
|
|
5246
5234
|
}), [
|
|
5247
5235
|
r,
|
|
5248
5236
|
e,
|
|
@@ -5251,23 +5239,23 @@ const oo = Mr, Lt = ({
|
|
|
5251
5239
|
i,
|
|
5252
5240
|
l,
|
|
5253
5241
|
w,
|
|
5254
|
-
|
|
5242
|
+
E
|
|
5255
5243
|
]), V = M(async () => {
|
|
5256
5244
|
await s();
|
|
5257
5245
|
}, [s]), x = M(async () => {
|
|
5258
5246
|
await c();
|
|
5259
5247
|
}, [c]), I = M(async () => {
|
|
5260
5248
|
await d();
|
|
5261
|
-
}, [d]),
|
|
5249
|
+
}, [d]), j = M((O = !0) => {
|
|
5262
5250
|
g({ userTrigger: O });
|
|
5263
|
-
}, [g]),
|
|
5251
|
+
}, [g]), W = Be(() => ({
|
|
5264
5252
|
endSession: V,
|
|
5265
5253
|
refreshSession: x,
|
|
5266
5254
|
startSession: I,
|
|
5267
|
-
triggerSession:
|
|
5268
|
-
}), [V, x, I,
|
|
5269
|
-
return { session:
|
|
5270
|
-
},
|
|
5255
|
+
triggerSession: j
|
|
5256
|
+
}), [V, x, I, j]);
|
|
5257
|
+
return { session: T, actions: W };
|
|
5258
|
+
}, no = ({ open: r, onOpenChange: e, children: t }) => /* @__PURE__ */ a(Te, { children: r && /* @__PURE__ */ y("div", { className: "fixed inset-0 z-50 flex items-center justify-center aria-animate-fade-in", children: [
|
|
5271
5259
|
/* @__PURE__ */ a(
|
|
5272
5260
|
"div",
|
|
5273
5261
|
{
|
|
@@ -5276,7 +5264,7 @@ const oo = Mr, Lt = ({
|
|
|
5276
5264
|
}
|
|
5277
5265
|
),
|
|
5278
5266
|
t
|
|
5279
|
-
] }) }),
|
|
5267
|
+
] }) }), Ut = ne.forwardRef(
|
|
5280
5268
|
({ className: r, children: e, ...t }, o) => /* @__PURE__ */ a(
|
|
5281
5269
|
"div",
|
|
5282
5270
|
{
|
|
@@ -5291,8 +5279,8 @@ const oo = Mr, Lt = ({
|
|
|
5291
5279
|
}
|
|
5292
5280
|
)
|
|
5293
5281
|
);
|
|
5294
|
-
|
|
5295
|
-
const
|
|
5282
|
+
Ut.displayName = "DialogContent";
|
|
5283
|
+
const Gt = ({
|
|
5296
5284
|
className: r,
|
|
5297
5285
|
...e
|
|
5298
5286
|
}) => /* @__PURE__ */ a(
|
|
@@ -5305,8 +5293,8 @@ const Ut = ({
|
|
|
5305
5293
|
...e
|
|
5306
5294
|
}
|
|
5307
5295
|
);
|
|
5308
|
-
|
|
5309
|
-
const
|
|
5296
|
+
Gt.displayName = "DialogHeader";
|
|
5297
|
+
const Qt = ne.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
5310
5298
|
"h2",
|
|
5311
5299
|
{
|
|
5312
5300
|
ref: t,
|
|
@@ -5317,8 +5305,8 @@ const Gt = ne.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
|
5317
5305
|
...e
|
|
5318
5306
|
}
|
|
5319
5307
|
));
|
|
5320
|
-
|
|
5321
|
-
const
|
|
5308
|
+
Qt.displayName = "DialogTitle";
|
|
5309
|
+
const Kt = ({
|
|
5322
5310
|
className: r,
|
|
5323
5311
|
onClick: e,
|
|
5324
5312
|
...t
|
|
@@ -5341,12 +5329,12 @@ const Qt = ({
|
|
|
5341
5329
|
]
|
|
5342
5330
|
}
|
|
5343
5331
|
);
|
|
5344
|
-
|
|
5345
|
-
function
|
|
5332
|
+
Kt.displayName = "DialogClose";
|
|
5333
|
+
function qt(r) {
|
|
5346
5334
|
return !r || typeof r != "string" ? !1 : r.split(".").length === 3;
|
|
5347
5335
|
}
|
|
5348
5336
|
function Ke(r) {
|
|
5349
|
-
if (!
|
|
5337
|
+
if (!qt(r))
|
|
5350
5338
|
return null;
|
|
5351
5339
|
try {
|
|
5352
5340
|
const o = r.split(".")[1].replace(/-/g, "+").replace(/_/g, "/"), i = o.padEnd(o.length + (4 - o.length % 4) % 4, "="), l = atob(i);
|
|
@@ -5355,7 +5343,7 @@ function Ke(r) {
|
|
|
5355
5343
|
return console.error("Failed to decode JWT:", e), null;
|
|
5356
5344
|
}
|
|
5357
5345
|
}
|
|
5358
|
-
function
|
|
5346
|
+
function Jt(r) {
|
|
5359
5347
|
const e = Ke(r);
|
|
5360
5348
|
if (!e)
|
|
5361
5349
|
return null;
|
|
@@ -5373,7 +5361,7 @@ function qt(r) {
|
|
|
5373
5361
|
return e[o];
|
|
5374
5362
|
return null;
|
|
5375
5363
|
}
|
|
5376
|
-
function
|
|
5364
|
+
function lo(r) {
|
|
5377
5365
|
const e = Ke(r);
|
|
5378
5366
|
if (!e)
|
|
5379
5367
|
return {
|
|
@@ -5382,7 +5370,7 @@ function no(r) {
|
|
|
5382
5370
|
exp: null,
|
|
5383
5371
|
iat: null
|
|
5384
5372
|
};
|
|
5385
|
-
const t =
|
|
5373
|
+
const t = Jt(r), o = typeof e.exp == "number" ? e.exp : null, i = typeof e.iat == "number" ? e.iat : null;
|
|
5386
5374
|
return {
|
|
5387
5375
|
sessionId: t,
|
|
5388
5376
|
payload: e,
|
|
@@ -5390,23 +5378,23 @@ function no(r) {
|
|
|
5390
5378
|
iat: i
|
|
5391
5379
|
};
|
|
5392
5380
|
}
|
|
5393
|
-
function
|
|
5381
|
+
function co(r) {
|
|
5394
5382
|
const e = Ke(r);
|
|
5395
5383
|
if (!e || typeof e.exp != "number")
|
|
5396
5384
|
return !0;
|
|
5397
5385
|
const t = Math.floor(Date.now() / 1e3);
|
|
5398
5386
|
return e.exp < t;
|
|
5399
5387
|
}
|
|
5400
|
-
const
|
|
5388
|
+
const Xt = ({
|
|
5401
5389
|
theme: r,
|
|
5402
5390
|
triggerLabel: e,
|
|
5403
5391
|
container: t
|
|
5404
5392
|
}) => {
|
|
5405
|
-
const [o, i] =
|
|
5393
|
+
const [o, i] = R(!1), [l, s] = R(!1), [c, d] = R(!1), [g, w] = R(!1), [E, T] = R([]), [V, x] = R(""), [I, j] = R(!1), [W, O] = R(!1), [P, h] = R(null), [_, q] = R("user"), [L, A] = R("bottom-right"), [K, re] = R({
|
|
5406
5394
|
isActive: !1,
|
|
5407
5395
|
toolName: null,
|
|
5408
5396
|
toolData: null
|
|
5409
|
-
}), [J, G] =
|
|
5397
|
+
}), [J, G] = R({
|
|
5410
5398
|
session_id: null,
|
|
5411
5399
|
token: null,
|
|
5412
5400
|
expires_at: null,
|
|
@@ -5414,41 +5402,41 @@ const Jt = ({
|
|
|
5414
5402
|
lastError: null,
|
|
5415
5403
|
isPreloaded: !1,
|
|
5416
5404
|
isRefreshing: !1
|
|
5417
|
-
}), [, ue] =
|
|
5418
|
-
const { newStatus:
|
|
5419
|
-
ue(
|
|
5405
|
+
}), [, ue] = R("idle"), [, te] = R(!1), k = he(null), U = he(null), b = M((p) => {
|
|
5406
|
+
const { newStatus: N } = p.data;
|
|
5407
|
+
ue(N), N === "preloading" || N === "connecting" ? o && w(!0) : N === "ready" ? (w(!1), d(!0)) : N === "error" && w(!1);
|
|
5420
5408
|
}, [o]), v = M((p) => {
|
|
5421
5409
|
if (console.log("[AriaStandaloneUI] Session ready event:", p.data), k.current) {
|
|
5422
|
-
const
|
|
5423
|
-
G(
|
|
5410
|
+
const N = k.current.getSessionState();
|
|
5411
|
+
G(N);
|
|
5424
5412
|
}
|
|
5425
5413
|
d(!0), w(!1), h(null);
|
|
5426
5414
|
}, []), le = M((p) => {
|
|
5427
|
-
const
|
|
5428
|
-
if (console.error("[AriaStandaloneUI] Session error:",
|
|
5415
|
+
const N = p.error?.message || "Session error";
|
|
5416
|
+
if (console.error("[AriaStandaloneUI] Session error:", N), h(N), w(!1), k.current) {
|
|
5429
5417
|
const se = k.current.getSessionState();
|
|
5430
5418
|
G(se);
|
|
5431
5419
|
}
|
|
5432
5420
|
}, []), oe = M((p) => {
|
|
5433
|
-
const { connected:
|
|
5434
|
-
if (d(
|
|
5421
|
+
const { connected: N } = p.data;
|
|
5422
|
+
if (d(N), !N && k.current) {
|
|
5435
5423
|
const se = k.current.getSessionState();
|
|
5436
5424
|
G(se);
|
|
5437
5425
|
}
|
|
5438
5426
|
}, []), ae = M((p) => {
|
|
5439
|
-
const { messages:
|
|
5440
|
-
|
|
5427
|
+
const { messages: N } = p.data;
|
|
5428
|
+
N && T(N);
|
|
5441
5429
|
}, []), $ = M((p) => {
|
|
5442
|
-
const { liveTranscript:
|
|
5443
|
-
|
|
5430
|
+
const { liveTranscript: N } = p.data;
|
|
5431
|
+
N !== void 0 && x(N);
|
|
5444
5432
|
}, []), B = M((p) => {
|
|
5445
5433
|
console.log("[AriaStandaloneUI] WebSocket trigger event"), ce("websocket");
|
|
5446
|
-
}, []),
|
|
5447
|
-
const
|
|
5434
|
+
}, []), H = M((p) => {
|
|
5435
|
+
const N = p.data;
|
|
5448
5436
|
re({
|
|
5449
|
-
isActive:
|
|
5450
|
-
toolName:
|
|
5451
|
-
toolData:
|
|
5437
|
+
isActive: N.isActive,
|
|
5438
|
+
toolName: N.toolName,
|
|
5439
|
+
toolData: N.toolData
|
|
5452
5440
|
});
|
|
5453
5441
|
}, []);
|
|
5454
5442
|
ee(() => {
|
|
@@ -5457,10 +5445,10 @@ const Jt = ({
|
|
|
5457
5445
|
return;
|
|
5458
5446
|
}
|
|
5459
5447
|
const p = Q.getInstance({});
|
|
5460
|
-
k.current = p, p.addEventListener("status_change", b), p.addEventListener("session_ready", v), p.addEventListener("session_error", le), p.addEventListener("connection_change", oe), p.addEventListener("message_history", ae), p.addEventListener("message_stream", $), p.addEventListener("tool_call",
|
|
5461
|
-
const
|
|
5462
|
-
return re(
|
|
5463
|
-
p.removeEventListener("status_change", b), p.removeEventListener("session_ready", v), p.removeEventListener("session_error", le), p.removeEventListener("connection_change", oe), p.removeEventListener("message_history", ae), p.removeEventListener("message_stream", $), p.removeEventListener("tool_call",
|
|
5448
|
+
k.current = p, p.addEventListener("status_change", b), p.addEventListener("session_ready", v), p.addEventListener("session_error", le), p.addEventListener("connection_change", oe), p.addEventListener("message_history", ae), p.addEventListener("message_stream", $), p.addEventListener("tool_call", H), p.setWebSocketTriggerCallback(B), G(p.getSessionState()), ue(p.getStatus()), d(p.isConnected()), T(p.getChatMessages()), x(p.getLiveTranscript()), O(p.isMuted()), te(p.isSessionPaused());
|
|
5449
|
+
const N = p.getToolCallState();
|
|
5450
|
+
return re(N), () => {
|
|
5451
|
+
p.removeEventListener("status_change", b), p.removeEventListener("session_ready", v), p.removeEventListener("session_error", le), p.removeEventListener("connection_change", oe), p.removeEventListener("message_history", ae), p.removeEventListener("message_stream", $), p.removeEventListener("tool_call", H), p.setWebSocketTriggerCallback(null);
|
|
5464
5452
|
};
|
|
5465
5453
|
}, [
|
|
5466
5454
|
b,
|
|
@@ -5469,33 +5457,34 @@ const Jt = ({
|
|
|
5469
5457
|
oe,
|
|
5470
5458
|
ae,
|
|
5471
5459
|
$,
|
|
5472
|
-
|
|
5460
|
+
H,
|
|
5473
5461
|
B
|
|
5474
5462
|
]), ee(() => {
|
|
5475
5463
|
const p = (Ce) => {
|
|
5476
5464
|
ce(Ce.detail?.mode || "user");
|
|
5477
|
-
},
|
|
5465
|
+
}, N = () => {
|
|
5478
5466
|
de();
|
|
5479
5467
|
}, se = () => {
|
|
5480
5468
|
D();
|
|
5481
5469
|
}, ye = () => {
|
|
5482
5470
|
we();
|
|
5483
5471
|
};
|
|
5484
|
-
return window.addEventListener("aria:open", p), window.addEventListener("aria:close",
|
|
5485
|
-
window.removeEventListener("aria:open", p), window.removeEventListener("aria:close",
|
|
5472
|
+
return window.addEventListener("aria:open", p), window.addEventListener("aria:close", N), window.addEventListener("aria:minimize", se), window.addEventListener("aria:maximize", ye), () => {
|
|
5473
|
+
window.removeEventListener("aria:open", p), window.removeEventListener("aria:close", N), window.removeEventListener("aria:minimize", se), window.removeEventListener("aria:maximize", ye);
|
|
5486
5474
|
};
|
|
5487
5475
|
}, []), ee(() => {
|
|
5488
5476
|
t.setAttribute("data-aria-open", String(o));
|
|
5489
5477
|
}, [o, t]);
|
|
5490
5478
|
const ie = M((p) => {
|
|
5491
|
-
|
|
5479
|
+
const N = U.current;
|
|
5480
|
+
U.current = p, p && k.current ? (console.log("[AriaStandaloneUI] Attaching video stream to element"), k.current.attachToVideoElement(p)) : !p && N && k.current && (console.log("[AriaStandaloneUI] Detaching video stream from element"), k.current.detachFromVideoElement(N));
|
|
5492
5481
|
}, []), ce = M((p = "user") => {
|
|
5493
5482
|
if (q(p), A(p === "websocket" ? "center" : "bottom-right"), i(!0), s(!1), h(null), !k.current) return;
|
|
5494
5483
|
if (k.current.isSessionPaused()) {
|
|
5495
5484
|
w(!0), k.current.resumeSession().then(() => {
|
|
5496
5485
|
w(!1), d(!0), te(!1);
|
|
5497
5486
|
const X = k.current.getSessionState();
|
|
5498
|
-
G(X),
|
|
5487
|
+
G(X), T(k.current.getChatMessages());
|
|
5499
5488
|
}).catch((X) => {
|
|
5500
5489
|
w(!1), te(!1), h(X instanceof Error ? X.message : "Failed to resume session");
|
|
5501
5490
|
});
|
|
@@ -5523,9 +5512,9 @@ const Jt = ({
|
|
|
5523
5512
|
lastError: null,
|
|
5524
5513
|
isPreloaded: !1,
|
|
5525
5514
|
isRefreshing: !1
|
|
5526
|
-
}), d(!1),
|
|
5515
|
+
}), d(!1), T([]));
|
|
5527
5516
|
}, []), pe = M(() => {
|
|
5528
|
-
|
|
5517
|
+
j((p) => !p);
|
|
5529
5518
|
}, []), be = M(async (p) => {
|
|
5530
5519
|
if (!k.current || !c)
|
|
5531
5520
|
throw new Error("Not connected to Aria");
|
|
@@ -5537,7 +5526,7 @@ const Jt = ({
|
|
|
5537
5526
|
}, []);
|
|
5538
5527
|
return /* @__PURE__ */ y(Te, { children: [
|
|
5539
5528
|
!o && /* @__PURE__ */ a(
|
|
5540
|
-
|
|
5529
|
+
Zt,
|
|
5541
5530
|
{
|
|
5542
5531
|
showAvatar: !0,
|
|
5543
5532
|
label: e,
|
|
@@ -5575,20 +5564,20 @@ const Jt = ({
|
|
|
5575
5564
|
pointerEvents: "none"
|
|
5576
5565
|
},
|
|
5577
5566
|
children: /* @__PURE__ */ a("div", { style: { pointerEvents: "auto" }, children: /* @__PURE__ */ a(
|
|
5578
|
-
|
|
5567
|
+
Yt,
|
|
5579
5568
|
{
|
|
5580
5569
|
onClose: de,
|
|
5581
5570
|
isMinimized: l,
|
|
5582
5571
|
onMaximize: we,
|
|
5583
5572
|
theme: r,
|
|
5584
|
-
displayMode:
|
|
5573
|
+
displayMode: L,
|
|
5585
5574
|
triggerMode: _,
|
|
5586
5575
|
isConnected: c,
|
|
5587
5576
|
isLoading: g,
|
|
5588
|
-
chatMessages:
|
|
5577
|
+
chatMessages: E,
|
|
5589
5578
|
liveTranscript: V,
|
|
5590
5579
|
isChatVisible: I,
|
|
5591
|
-
isMuted:
|
|
5580
|
+
isMuted: W,
|
|
5592
5581
|
error: P,
|
|
5593
5582
|
toolCallState: K,
|
|
5594
5583
|
sessionState: J,
|
|
@@ -5602,7 +5591,7 @@ const Jt = ({
|
|
|
5602
5591
|
)
|
|
5603
5592
|
] })
|
|
5604
5593
|
] });
|
|
5605
|
-
},
|
|
5594
|
+
}, Zt = ({
|
|
5606
5595
|
showAvatar: r = !0,
|
|
5607
5596
|
label: e,
|
|
5608
5597
|
theme: t,
|
|
@@ -5633,50 +5622,50 @@ const Jt = ({
|
|
|
5633
5622
|
}
|
|
5634
5623
|
)
|
|
5635
5624
|
}
|
|
5636
|
-
),
|
|
5637
|
-
|
|
5625
|
+
), Yt = (r) => /* @__PURE__ */ a(
|
|
5626
|
+
Sr,
|
|
5638
5627
|
{
|
|
5639
5628
|
onClose: r.onClose,
|
|
5640
5629
|
isMinimized: r.isMinimized
|
|
5641
5630
|
}
|
|
5642
|
-
),
|
|
5631
|
+
), $t = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5643
5632
|
__proto__: null,
|
|
5644
|
-
AriaStandaloneUI:
|
|
5633
|
+
AriaStandaloneUI: Xt
|
|
5645
5634
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
5646
5635
|
export {
|
|
5647
5636
|
Re as Aria,
|
|
5648
|
-
|
|
5637
|
+
_t as AriaAssistant,
|
|
5649
5638
|
Re as AriaCore,
|
|
5650
|
-
|
|
5639
|
+
io as AriaProvider,
|
|
5651
5640
|
Q as AriaSessionManager,
|
|
5652
|
-
|
|
5653
|
-
|
|
5641
|
+
Ot as AriaTriggerButton,
|
|
5642
|
+
Sr as AriaWidget,
|
|
5654
5643
|
ke as Badge,
|
|
5655
5644
|
Ve as Button,
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
|
|
5659
|
-
|
|
5660
|
-
|
|
5661
|
-
|
|
5662
|
-
|
|
5663
|
-
|
|
5664
|
-
|
|
5665
|
-
|
|
5666
|
-
|
|
5667
|
-
|
|
5668
|
-
|
|
5669
|
-
|
|
5645
|
+
kr as Card,
|
|
5646
|
+
Bt as CardContent,
|
|
5647
|
+
Wt as CardDescription,
|
|
5648
|
+
Ht as CardFooter,
|
|
5649
|
+
Vt as CardHeader,
|
|
5650
|
+
jt as CardTitle,
|
|
5651
|
+
Ft as ChatPanel,
|
|
5652
|
+
no as Dialog,
|
|
5653
|
+
Kt as DialogClose,
|
|
5654
|
+
Ut as DialogContent,
|
|
5655
|
+
Gt as DialogHeader,
|
|
5656
|
+
Qt as DialogTitle,
|
|
5657
|
+
Ar as Input,
|
|
5658
|
+
Lt as SessionInfo,
|
|
5670
5659
|
je as ShadowContainer,
|
|
5671
|
-
|
|
5660
|
+
ao as ariaStyles,
|
|
5672
5661
|
n as cn,
|
|
5673
5662
|
Ke as decodeJWT,
|
|
5674
|
-
|
|
5663
|
+
Jt as extractSessionIdFromToken,
|
|
5675
5664
|
We as getAriaStyles,
|
|
5676
|
-
|
|
5677
|
-
|
|
5678
|
-
|
|
5665
|
+
lo as getTokenInfo,
|
|
5666
|
+
qt as isJWT,
|
|
5667
|
+
co as isTokenExpired,
|
|
5679
5668
|
Se as useAria,
|
|
5680
|
-
|
|
5669
|
+
so as useAriaSession
|
|
5681
5670
|
};
|
|
5682
5671
|
//# sourceMappingURL=index.js.map
|