@automattic/agenttic-ui 0.1.75 → 0.1.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/DiffCard-WlOKTIaG.js +1325 -0
- package/dist/DiffCard.css +1 -1
- package/dist/components/EmbeddedAgentUI.d.ts +2 -1
- package/dist/components/EmbeddedAgentUI.d.ts.map +1 -1
- package/dist/components/chat/ChatFooter.d.ts +2 -1
- package/dist/components/chat/ChatFooter.d.ts.map +1 -1
- package/dist/components/chat/ChatInput.d.ts +2 -1
- package/dist/components/chat/ChatInput.d.ts.map +1 -1
- package/dist/components/chat/ChatInput.stories.d.ts +2 -0
- package/dist/components/chat/ChatInput.stories.d.ts.map +1 -1
- package/dist/components/chat/ImageUploader.d.ts +2 -1
- package/dist/components/chat/ImageUploader.d.ts.map +1 -1
- package/dist/components/composable/AgentUIFooter.d.ts +6 -1
- package/dist/components/composable/AgentUIFooter.d.ts.map +1 -1
- package/dist/components/composable/AgentUIFooter.test.d.ts +2 -0
- package/dist/components/composable/AgentUIFooter.test.d.ts.map +1 -0
- package/dist/components/composable/AgentUIInput.d.ts +3 -1
- package/dist/components/composable/AgentUIInput.d.ts.map +1 -1
- package/dist/embedded-agent-ui.js +124 -120
- package/dist/global.css +1 -1
- package/dist/index.css +1 -1
- package/dist/index.js +2306 -3247
- package/dist/markdown-extensions/charts/index.d.ts +15 -15
- package/dist/utils/constants.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/DiffCard-CVeqjQhl.js +0 -242
|
@@ -1,91 +1,91 @@
|
|
|
1
|
-
import { jsx as t, Fragment as
|
|
1
|
+
import { jsx as t, Fragment as b, jsxs as f } from "react/jsx-runtime";
|
|
2
2
|
import { createContext as P, useState as E, useRef as R, useCallback as F, useContext as T } from "react";
|
|
3
3
|
import { __ as g } from "@wordpress/i18n";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
function
|
|
4
|
+
import { j as L, D as W, d as D } from "./DiffCard-WlOKTIaG.js";
|
|
5
|
+
import { l as ne, Q as ie } from "./DiffCard-WlOKTIaG.js";
|
|
6
|
+
function O(n) {
|
|
7
7
|
const e = n.trim();
|
|
8
8
|
if (/^(https?:|mailto:)/i.test(e))
|
|
9
9
|
return e;
|
|
10
10
|
}
|
|
11
|
-
function
|
|
11
|
+
function C(n) {
|
|
12
12
|
const e = [], i = /(\[[^\]]+\]\([^\)]+\)|`[^`]+`|\*\*[^*]+\*\*|__[^_]+__|\*[^*]+\*|_[^_]+_)/g;
|
|
13
|
-
let
|
|
13
|
+
let l = 0, r;
|
|
14
14
|
for (; r = i.exec(n); ) {
|
|
15
|
-
r.index >
|
|
16
|
-
const a = r[0],
|
|
15
|
+
r.index > l && e.push(n.slice(l, r.index));
|
|
16
|
+
const a = r[0], s = `${r.index}-${a}`, d = a.match(/^\[([^\]]+)\]\(([^\)]+)\)$/);
|
|
17
17
|
if (d) {
|
|
18
|
-
const
|
|
18
|
+
const c = O(d[2]);
|
|
19
19
|
e.push(
|
|
20
|
-
|
|
20
|
+
c ? /* @__PURE__ */ t(
|
|
21
21
|
"a",
|
|
22
22
|
{
|
|
23
|
-
href:
|
|
23
|
+
href: c,
|
|
24
24
|
rel: "noreferrer",
|
|
25
25
|
target: "_blank",
|
|
26
26
|
children: d[1]
|
|
27
27
|
},
|
|
28
|
-
|
|
28
|
+
s
|
|
29
29
|
) : a
|
|
30
30
|
);
|
|
31
|
-
} else a.startsWith("`") ? e.push(/* @__PURE__ */ t("code", { children: a.slice(1, -1) },
|
|
32
|
-
|
|
31
|
+
} else a.startsWith("`") ? e.push(/* @__PURE__ */ t("code", { children: a.slice(1, -1) }, s)) : a.startsWith("**") || a.startsWith("__") ? e.push(/* @__PURE__ */ t("strong", { children: a.slice(2, -2) }, s)) : e.push(/* @__PURE__ */ t("em", { children: a.slice(1, -1) }, s));
|
|
32
|
+
l = i.lastIndex;
|
|
33
33
|
}
|
|
34
|
-
return
|
|
34
|
+
return l < n.length && e.push(n.slice(l)), e;
|
|
35
35
|
}
|
|
36
|
-
function
|
|
36
|
+
function I(n, e, i, l) {
|
|
37
37
|
if (e.length === 0)
|
|
38
38
|
return;
|
|
39
|
-
const r = e.map((a,
|
|
39
|
+
const r = e.map((a, s) => /* @__PURE__ */ t("li", { children: C(a) }, s));
|
|
40
40
|
n.push(
|
|
41
|
-
i ? /* @__PURE__ */ t("ol", { children: r },
|
|
41
|
+
i ? /* @__PURE__ */ t("ol", { children: r }, l) : /* @__PURE__ */ t("ul", { children: r }, l)
|
|
42
42
|
), e.length = 0;
|
|
43
43
|
}
|
|
44
|
-
function
|
|
44
|
+
function Q({
|
|
45
45
|
children: n
|
|
46
46
|
}) {
|
|
47
47
|
const e = [], i = [];
|
|
48
|
-
let
|
|
49
|
-
return n.split(/\r?\n/).forEach((
|
|
50
|
-
if (
|
|
48
|
+
let l = !1, r = !1, a = [];
|
|
49
|
+
return n.split(/\r?\n/).forEach((s, d) => {
|
|
50
|
+
if (s.startsWith("```")) {
|
|
51
51
|
r ? (e.push(
|
|
52
52
|
/* @__PURE__ */ t("pre", { children: /* @__PURE__ */ t("code", { children: a.join(`
|
|
53
53
|
`) }) }, `code-${d}`)
|
|
54
|
-
), a = [], r = !1) : (
|
|
54
|
+
), a = [], r = !1) : (I(e, i, l, `list-${d}`), r = !0);
|
|
55
55
|
return;
|
|
56
56
|
}
|
|
57
57
|
if (r) {
|
|
58
|
-
a.push(
|
|
58
|
+
a.push(s);
|
|
59
59
|
return;
|
|
60
60
|
}
|
|
61
|
-
const
|
|
62
|
-
if (
|
|
61
|
+
const c = s.match(/^\s*[-*]\s+(.+)$/), o = s.match(/^\s*\d+\.\s+(.+)$/);
|
|
62
|
+
if (c || o) {
|
|
63
63
|
const h = !!o;
|
|
64
|
-
i.length &&
|
|
65
|
-
((o == null ? void 0 : o[1]) ?? (
|
|
64
|
+
i.length && l !== h && I(e, i, l, `list-${d}`), l = h, i.push(
|
|
65
|
+
((o == null ? void 0 : o[1]) ?? (c == null ? void 0 : c[1]) ?? "").trim()
|
|
66
66
|
);
|
|
67
67
|
return;
|
|
68
68
|
}
|
|
69
|
-
if (
|
|
69
|
+
if (I(e, i, l, `list-${d}`), !s.trim())
|
|
70
70
|
return;
|
|
71
|
-
const u =
|
|
71
|
+
const u = s.match(/^(#{1,3})\s+(.+)$/);
|
|
72
72
|
if (u) {
|
|
73
73
|
const p = `h${u[1].length}`;
|
|
74
74
|
e.push(
|
|
75
|
-
/* @__PURE__ */ t(p, { children:
|
|
75
|
+
/* @__PURE__ */ t(p, { children: C(u[2]) }, `heading-${d}`)
|
|
76
76
|
);
|
|
77
77
|
return;
|
|
78
78
|
}
|
|
79
79
|
e.push(
|
|
80
|
-
/* @__PURE__ */ t("p", { children:
|
|
80
|
+
/* @__PURE__ */ t("p", { children: C(s) }, `paragraph-${d}`)
|
|
81
81
|
);
|
|
82
|
-
}),
|
|
82
|
+
}), I(e, i, l, "list-final"), r && a.length && e.push(
|
|
83
83
|
/* @__PURE__ */ t("pre", { children: /* @__PURE__ */ t("code", { children: a.join(`
|
|
84
84
|
`) }) }, "code-final")
|
|
85
|
-
), /* @__PURE__ */ t(
|
|
85
|
+
), /* @__PURE__ */ t(b, { children: e });
|
|
86
86
|
}
|
|
87
87
|
const N = P(null);
|
|
88
|
-
function
|
|
88
|
+
function _() {
|
|
89
89
|
const n = T(N);
|
|
90
90
|
if (!n)
|
|
91
91
|
throw new Error(
|
|
@@ -93,14 +93,14 @@ function b() {
|
|
|
93
93
|
);
|
|
94
94
|
return n;
|
|
95
95
|
}
|
|
96
|
-
function
|
|
96
|
+
function H({ content: n }) {
|
|
97
97
|
return /* @__PURE__ */ t("div", { className: "agenttic-embedded__thinking", children: n ?? g("Thinking…", "a8c-agenttic") });
|
|
98
98
|
}
|
|
99
|
-
function
|
|
99
|
+
function K({
|
|
100
100
|
heading: n,
|
|
101
101
|
help: e,
|
|
102
102
|
suggestions: i,
|
|
103
|
-
onSuggestionClick:
|
|
103
|
+
onSuggestionClick: l
|
|
104
104
|
}) {
|
|
105
105
|
return /* @__PURE__ */ f("div", { className: "agenttic-embedded__empty", children: [
|
|
106
106
|
n && /* @__PURE__ */ t("h2", { children: n }),
|
|
@@ -109,7 +109,7 @@ function X({
|
|
|
109
109
|
"button",
|
|
110
110
|
{
|
|
111
111
|
type: "button",
|
|
112
|
-
onClick: () =>
|
|
112
|
+
onClick: () => l == null ? void 0 : l(r),
|
|
113
113
|
children: r.label
|
|
114
114
|
},
|
|
115
115
|
r.id
|
|
@@ -121,9 +121,9 @@ function U(n) {
|
|
|
121
121
|
(e) => e.type === "text" || e.type === "component"
|
|
122
122
|
);
|
|
123
123
|
}
|
|
124
|
-
function
|
|
125
|
-
var
|
|
126
|
-
const { messageRenderer: e } =
|
|
124
|
+
function q({ message: n }) {
|
|
125
|
+
var l;
|
|
126
|
+
const { messageRenderer: e } = _(), i = e ?? Q;
|
|
127
127
|
return /* @__PURE__ */ f(
|
|
128
128
|
"div",
|
|
129
129
|
{
|
|
@@ -142,9 +142,9 @@ function H({ message: n }) {
|
|
|
142
142
|
a
|
|
143
143
|
);
|
|
144
144
|
if (r.type === "component" && r.component) {
|
|
145
|
-
const
|
|
145
|
+
const s = r.component;
|
|
146
146
|
return /* @__PURE__ */ t(
|
|
147
|
-
|
|
147
|
+
s,
|
|
148
148
|
{
|
|
149
149
|
...r.componentProps || {}
|
|
150
150
|
},
|
|
@@ -153,23 +153,23 @@ function H({ message: n }) {
|
|
|
153
153
|
}
|
|
154
154
|
return null;
|
|
155
155
|
}),
|
|
156
|
-
n.role === "agent" && ((
|
|
156
|
+
n.role === "agent" && ((l = n.sources) != null && l.length) ? /* @__PURE__ */ t(D, { sources: n.sources }) : null
|
|
157
157
|
]
|
|
158
158
|
}
|
|
159
159
|
);
|
|
160
160
|
}
|
|
161
|
-
function
|
|
161
|
+
function j({
|
|
162
162
|
className: n
|
|
163
163
|
} = {}) {
|
|
164
164
|
const {
|
|
165
165
|
messages: e,
|
|
166
166
|
isProcessing: i,
|
|
167
|
-
error:
|
|
167
|
+
error: l,
|
|
168
168
|
emptyView: r,
|
|
169
169
|
thinkingMessage: a,
|
|
170
|
-
messagesPosition:
|
|
171
|
-
} =
|
|
172
|
-
(
|
|
170
|
+
messagesPosition: s
|
|
171
|
+
} = _(), d = e.filter(
|
|
172
|
+
(c) => U(c).length > 0
|
|
173
173
|
);
|
|
174
174
|
return d.length === 0 && !i ? r ? /* @__PURE__ */ t(
|
|
175
175
|
"div",
|
|
@@ -188,37 +188,37 @@ function $({
|
|
|
188
188
|
"data-slot": "messages",
|
|
189
189
|
className: [
|
|
190
190
|
"agenttic-embedded__messages",
|
|
191
|
-
|
|
191
|
+
s === "bottom" ? "agenttic-embedded__messages--bottom" : "",
|
|
192
192
|
n
|
|
193
193
|
].filter(Boolean).join(" "),
|
|
194
194
|
children: [
|
|
195
|
-
d.map((
|
|
196
|
-
|
|
195
|
+
d.map((c) => /* @__PURE__ */ t(
|
|
196
|
+
q,
|
|
197
197
|
{
|
|
198
|
-
message:
|
|
198
|
+
message: c
|
|
199
199
|
},
|
|
200
|
-
|
|
200
|
+
c.reactKey || c.id
|
|
201
201
|
)),
|
|
202
|
-
i && /* @__PURE__ */ t(
|
|
203
|
-
|
|
202
|
+
i && /* @__PURE__ */ t(H, { content: a }),
|
|
203
|
+
l && /* @__PURE__ */ t("div", { className: "agenttic-embedded__error", children: l })
|
|
204
204
|
]
|
|
205
205
|
}
|
|
206
206
|
);
|
|
207
207
|
}
|
|
208
|
-
function
|
|
208
|
+
function $({
|
|
209
209
|
className: n,
|
|
210
210
|
showSuggestions: e,
|
|
211
211
|
onSelect: i
|
|
212
212
|
} = {}) {
|
|
213
213
|
const {
|
|
214
|
-
inputValue:
|
|
214
|
+
inputValue: l,
|
|
215
215
|
setInputValue: r,
|
|
216
216
|
suggestions: a,
|
|
217
|
-
clearSuggestions:
|
|
217
|
+
clearSuggestions: s,
|
|
218
218
|
onSuggestionClick: d,
|
|
219
|
-
submit:
|
|
220
|
-
} =
|
|
221
|
-
return
|
|
219
|
+
submit: c
|
|
220
|
+
} = _();
|
|
221
|
+
return l && !e || !(a != null && a.length) ? null : /* @__PURE__ */ t(
|
|
222
222
|
"div",
|
|
223
223
|
{
|
|
224
224
|
className: ["agenttic-embedded__suggestions", n].filter(Boolean).join(" "),
|
|
@@ -229,8 +229,8 @@ function j({
|
|
|
229
229
|
{
|
|
230
230
|
type: "button",
|
|
231
231
|
onClick: async () => {
|
|
232
|
-
if (i == null || i(u), d == null || d(o, a),
|
|
233
|
-
await
|
|
232
|
+
if (i == null || i(u), d == null || d(o, a), s == null || s(), o.autoSubmit) {
|
|
233
|
+
await c(u);
|
|
234
234
|
return;
|
|
235
235
|
}
|
|
236
236
|
r(u);
|
|
@@ -246,7 +246,7 @@ function j({
|
|
|
246
246
|
function x({
|
|
247
247
|
className: n
|
|
248
248
|
} = {}) {
|
|
249
|
-
const { notice: e } =
|
|
249
|
+
const { notice: e } = _();
|
|
250
250
|
return e ? /* @__PURE__ */ f(
|
|
251
251
|
"div",
|
|
252
252
|
{
|
|
@@ -268,33 +268,33 @@ function V({
|
|
|
268
268
|
onKeyDown: i
|
|
269
269
|
} = {}) {
|
|
270
270
|
const {
|
|
271
|
-
acceptedFileTypes:
|
|
271
|
+
acceptedFileTypes: l,
|
|
272
272
|
allowAttachments: r,
|
|
273
273
|
fileInputRef: a,
|
|
274
|
-
files:
|
|
274
|
+
files: s,
|
|
275
275
|
inputValue: d,
|
|
276
|
-
isProcessing:
|
|
276
|
+
isProcessing: c,
|
|
277
277
|
maxInputLength: o = 600,
|
|
278
278
|
onStop: u,
|
|
279
279
|
placeholder: h,
|
|
280
280
|
setFiles: p,
|
|
281
|
-
setInputValue:
|
|
282
|
-
submit:
|
|
283
|
-
} =
|
|
281
|
+
setInputValue: v,
|
|
282
|
+
submit: y
|
|
283
|
+
} = _(), A = !e && (c || !!d.trim() && d.length <= o), k = Array.isArray(h) ? h[0] : h;
|
|
284
284
|
return /* @__PURE__ */ f(
|
|
285
285
|
"div",
|
|
286
286
|
{
|
|
287
287
|
"data-slot": "chat-input",
|
|
288
288
|
className: ["agenttic-embedded__input", n].filter(Boolean).join(" "),
|
|
289
289
|
children: [
|
|
290
|
-
r && /* @__PURE__ */ f(
|
|
290
|
+
r && /* @__PURE__ */ f(b, { children: [
|
|
291
291
|
/* @__PURE__ */ t(
|
|
292
292
|
"input",
|
|
293
293
|
{
|
|
294
294
|
ref: a,
|
|
295
295
|
type: "file",
|
|
296
296
|
multiple: !0,
|
|
297
|
-
accept:
|
|
297
|
+
accept: l == null ? void 0 : l.join(","),
|
|
298
298
|
style: { display: "none" },
|
|
299
299
|
onChange: (m) => p(
|
|
300
300
|
Array.from(m.currentTarget.files ?? [])
|
|
@@ -320,9 +320,9 @@ function V({
|
|
|
320
320
|
"aria-label": g("Chat input", "a8c-agenttic"),
|
|
321
321
|
placeholder: k,
|
|
322
322
|
value: d,
|
|
323
|
-
onChange: (m) =>
|
|
323
|
+
onChange: (m) => v(m.currentTarget.value),
|
|
324
324
|
onKeyDown: (m) => {
|
|
325
|
-
i == null || i(m), !m.defaultPrevented && m.key === "Enter" && !m.shiftKey &&
|
|
325
|
+
i == null || i(m), !m.defaultPrevented && m.key === "Enter" && !m.shiftKey && A && !c && (m.preventDefault(), y());
|
|
326
326
|
}
|
|
327
327
|
}
|
|
328
328
|
),
|
|
@@ -330,39 +330,43 @@ function V({
|
|
|
330
330
|
"button",
|
|
331
331
|
{
|
|
332
332
|
type: "button",
|
|
333
|
-
"aria-label":
|
|
334
|
-
disabled: !
|
|
333
|
+
"aria-label": c ? g("Stop processing", "a8c-agenttic") : g("Send message", "a8c-agenttic"),
|
|
334
|
+
disabled: !A,
|
|
335
335
|
onClick: () => {
|
|
336
|
-
if (
|
|
336
|
+
if (c) {
|
|
337
337
|
u == null || u();
|
|
338
338
|
return;
|
|
339
339
|
}
|
|
340
|
-
|
|
340
|
+
y();
|
|
341
341
|
},
|
|
342
|
-
children:
|
|
342
|
+
children: c ? "■" : "↑"
|
|
343
343
|
}
|
|
344
344
|
),
|
|
345
|
-
|
|
345
|
+
s.length > 0 && /* @__PURE__ */ t("span", { className: "agenttic-embedded__attachment-count", children: s.length })
|
|
346
346
|
]
|
|
347
347
|
}
|
|
348
348
|
);
|
|
349
349
|
}
|
|
350
350
|
function w({
|
|
351
351
|
children: n,
|
|
352
|
-
className: e
|
|
352
|
+
className: e,
|
|
353
|
+
complianceDisclosure: i = /* @__PURE__ */ t(W, {})
|
|
353
354
|
} = {}) {
|
|
354
|
-
return /* @__PURE__ */
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
/* @__PURE__ */
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
355
|
+
return /* @__PURE__ */ f(b, { children: [
|
|
356
|
+
/* @__PURE__ */ t(
|
|
357
|
+
"div",
|
|
358
|
+
{
|
|
359
|
+
"data-slot": "chat-footer",
|
|
360
|
+
className: ["agenttic-embedded__footer", e].filter(Boolean).join(" "),
|
|
361
|
+
children: n ?? /* @__PURE__ */ f(b, { children: [
|
|
362
|
+
/* @__PURE__ */ t($, {}),
|
|
363
|
+
/* @__PURE__ */ t(x, {}),
|
|
364
|
+
/* @__PURE__ */ t(V, {})
|
|
365
|
+
] })
|
|
366
|
+
}
|
|
367
|
+
),
|
|
368
|
+
/* @__PURE__ */ t(L, { children: i })
|
|
369
|
+
] });
|
|
366
370
|
}
|
|
367
371
|
function B({
|
|
368
372
|
children: n,
|
|
@@ -373,8 +377,8 @@ function B({
|
|
|
373
377
|
{
|
|
374
378
|
"data-slot": "conversation-view",
|
|
375
379
|
className: ["agenttic-embedded__conversation", e].filter(Boolean).join(" "),
|
|
376
|
-
children: n ?? /* @__PURE__ */ f(
|
|
377
|
-
/* @__PURE__ */ t(
|
|
380
|
+
children: n ?? /* @__PURE__ */ f(b, { children: [
|
|
381
|
+
/* @__PURE__ */ t(j, {}),
|
|
378
382
|
/* @__PURE__ */ t(w, {})
|
|
379
383
|
] })
|
|
380
384
|
}
|
|
@@ -385,21 +389,21 @@ function M({
|
|
|
385
389
|
className: e,
|
|
386
390
|
...i
|
|
387
391
|
}) {
|
|
388
|
-
const [
|
|
392
|
+
const [l, r] = E(""), [a, s] = E([]), d = R(null), c = i.inputValue ?? l, o = i.onInputChange ?? r, u = F(
|
|
389
393
|
async (p) => {
|
|
390
|
-
const
|
|
391
|
-
!
|
|
392
|
-
|
|
394
|
+
const v = (p ?? c).trim();
|
|
395
|
+
!v || i.isProcessing || (o(""), s([]), await i.onSubmit(
|
|
396
|
+
v,
|
|
393
397
|
i.allowAttachments ? a : void 0
|
|
394
398
|
));
|
|
395
399
|
},
|
|
396
|
-
[a,
|
|
400
|
+
[a, c, i, o]
|
|
397
401
|
), h = {
|
|
398
402
|
...i,
|
|
399
|
-
inputValue:
|
|
403
|
+
inputValue: c,
|
|
400
404
|
setInputValue: o,
|
|
401
405
|
files: a,
|
|
402
|
-
setFiles:
|
|
406
|
+
setFiles: s,
|
|
403
407
|
fileInputRef: d,
|
|
404
408
|
submit: u
|
|
405
409
|
};
|
|
@@ -412,32 +416,32 @@ function M({
|
|
|
412
416
|
}
|
|
413
417
|
) });
|
|
414
418
|
}
|
|
415
|
-
const
|
|
419
|
+
const z = {
|
|
416
420
|
Container: M,
|
|
417
421
|
ConversationView: B,
|
|
418
|
-
Messages:
|
|
422
|
+
Messages: j,
|
|
419
423
|
Footer: w,
|
|
420
424
|
Input: V,
|
|
421
|
-
Suggestions:
|
|
425
|
+
Suggestions: $,
|
|
422
426
|
Notice: x
|
|
423
|
-
},
|
|
427
|
+
}, G = Object.assign(
|
|
424
428
|
(n) => /* @__PURE__ */ t(M, { ...n }),
|
|
425
|
-
|
|
426
|
-
),
|
|
429
|
+
z
|
|
430
|
+
), S = G;
|
|
427
431
|
export {
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
432
|
+
S as AgentUI,
|
|
433
|
+
ne as DiffCard,
|
|
434
|
+
G as EmbeddedAgentUI,
|
|
431
435
|
M as EmbeddedAgentUIContainer,
|
|
432
436
|
B as EmbeddedAgentUIConversationView,
|
|
433
437
|
w as EmbeddedAgentUIFooter,
|
|
434
438
|
V as EmbeddedAgentUIInput,
|
|
435
|
-
|
|
439
|
+
j as EmbeddedAgentUIMessages,
|
|
436
440
|
x as EmbeddedAgentUINotice,
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
441
|
+
$ as EmbeddedAgentUISuggestions,
|
|
442
|
+
K as EmptyView,
|
|
443
|
+
Q as LightweightMarkdownRenderer,
|
|
444
|
+
ie as QuestionCard,
|
|
445
|
+
D as SourcesCard,
|
|
446
|
+
H as ThinkingMessage
|
|
443
447
|
};
|
package/dist/global.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.agenttic{--base-font-size: 1rem;--color-white: #FFFFFF;--color-background: #FCFCFC;--color-foreground: #1F1F1F;--color-popover: #FCFCFC;--color-popover-muted: #FCFCFC;--color-primary: #2D5AF2;--color-primary-foreground: var(--color-white);--color-muted: #E9E9E9;--color-muted-foreground: #757575;--color-ring: var(--color-primary);--color-success-background: #F1F7F1;--color-success: var(--color-foreground);--color-warning-background: #F8F3E7;--color-warning: var(--color-foreground);--color-error-background: #FCF1F1;--color-error: #E7000B;--color-link: var(--color-primary);--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-weight-medium: 450;--font-weight-semibold: 500;--font-weight-bold: 600;--text-xs: calc(.8125 * var(--base-font-size));--text-xs--line-height: 1.538;--text-sm: calc(.875 * var(--base-font-size));--text-sm--line-height: 1.65;--text-base: calc(.9375 * var(--base-font-size));--text-base--line-height: 1.625;--text-base--tracking: -.01em;--spacing: calc(.25 * var(--base-font-size));--spacing-1: var(--spacing);--spacing-1\.5: calc(var(--spacing) * 1.5);--spacing-2: calc(var(--spacing) * 2);--spacing-3: calc(var(--spacing) * 3);--spacing-3\.5: calc(var(--spacing) * 3.5);--spacing-4: calc(var(--spacing) * 4);--spacing-5: calc(var(--spacing) * 5);--spacing-6: calc(var(--spacing) * 6);--spacing-7: calc(var(--spacing) * 7);--spacing-8: calc(var(--spacing) * 8);--spacing-9: calc(var(--spacing) * 9);--spacing-10: calc(var(--spacing) * 10);--spacing-12: calc(var(--spacing) * 12);--spacing-20: calc(var(--spacing) * 20);--radius: var(--base-font-size);--radius-xs: calc(var(--radius) - 10px);--radius-sm: calc(var(--radius) - 8px);--radius-md: calc(var(--radius) - 2px);--radius-lg: var(--radius);--radius-xl: calc(var(--radius) + 8px);--radius-full: 9999px;--shadow-sm: 0 0 0 1px color-mix(in srgb, var(--color-foreground) 10%, transparent), 0 0 6px color-mix(in srgb, var(--color-foreground) 5%, transparent);--shadow-lg: 0 0 0 1px rgba(0, 0, 0, .075), 0 2px 24px rgba(0, 0, 0, .075);--shadow-outline: 0 0 0 1px color-mix(in srgb, var(--color-foreground) 10%, transparent);--shadow-outline-strong: 0 0 0 1px color-mix(in srgb, var(--color-foreground) 25%, transparent);--transition-colors: color .15s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1), box-shadow .15s cubic-bezier(.4, 0, .2, 1), fill .15s cubic-bezier(.4, 0, .2, 1), stroke .15s cubic-bezier(.4, 0, .2, 1)}.agenttic.dark{--color-background: #1F1F1F;--color-foreground: #FFFFFF;--color-popover: #1F1F1F;--color-popover-muted: #2F2F2F;--color-muted: #464646;--color-muted-foreground: #8F8F8F;--color-success-background: #1F2E1F;--color-warning-background: #2E281F;--color-error-background: #2E1F1F;--color-error: #FFDDDF;--color-link: var(--color-white)}.agenttic.dark [data-slot=collapsed-view] svg{color:var(--color-white)}@layer base{.agenttic *,.agenttic :before,.agenttic :after,.agenttic ::backdrop,.agenttic ::file-selector-button{box-sizing:border-box;margin:0;padding:0;border:0 solid}.agenttic *{outline-color:var(--color-ring)}.agenttic button,.agenttic input,.agenttic select,.agenttic optgroup,.agenttic textarea,.agenttic ::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;background-color:transparent;opacity:1}.agenttic input,.agenttic select,.agenttic optgroup,.agenttic textarea,.agenttic ::file-selector-button{color:inherit;border-radius:0}.agenttic [data-slot=messages],.agenttic [data-slot=chat-input],.agenttic [data-slot=chat-footer],.agenttic [data-slot=chat-header] [data-slot=button]{cursor:default}}
|
|
1
|
+
.agenttic{--base-font-size: 1rem;--color-white: #FFFFFF;--color-background: #FCFCFC;--color-foreground: #1F1F1F;--color-popover: #FCFCFC;--color-popover-muted: #FCFCFC;--color-primary: #2D5AF2;--color-primary-foreground: var(--color-white);--color-muted: #E9E9E9;--color-muted-foreground: #757575;--color-ring: var(--color-primary);--color-success-background: #F1F7F1;--color-success: var(--color-foreground);--color-warning-background: #F8F3E7;--color-warning: var(--color-foreground);--color-error-background: #FCF1F1;--color-error: #E7000B;--color-link: var(--color-primary);--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-weight-medium: 450;--font-weight-semibold: 500;--font-weight-bold: 600;--text-xs: calc(.8125 * var(--base-font-size));--text-xs--line-height: 1.538;--text-sm: calc(.875 * var(--base-font-size));--text-sm--line-height: 1.65;--text-base: calc(.9375 * var(--base-font-size));--text-base--line-height: 1.625;--text-base--tracking: -.01em;--spacing: calc(.25 * var(--base-font-size));--spacing-1: var(--spacing);--spacing-1\.5: calc(var(--spacing) * 1.5);--spacing-2: calc(var(--spacing) * 2);--spacing-3: calc(var(--spacing) * 3);--spacing-3\.5: calc(var(--spacing) * 3.5);--spacing-4: calc(var(--spacing) * 4);--spacing-5: calc(var(--spacing) * 5);--spacing-6: calc(var(--spacing) * 6);--spacing-7: calc(var(--spacing) * 7);--spacing-8: calc(var(--spacing) * 8);--spacing-9: calc(var(--spacing) * 9);--spacing-10: calc(var(--spacing) * 10);--spacing-12: calc(var(--spacing) * 12);--spacing-20: calc(var(--spacing) * 20);--radius: var(--base-font-size);--radius-xs: calc(var(--radius) - 10px);--radius-sm: calc(var(--radius) - 8px);--radius-md: calc(var(--radius) - 2px);--radius-lg: var(--radius);--radius-xl: calc(var(--radius) + 8px);--radius-full: 9999px;--shadow-sm: 0 0 0 1px color-mix(in srgb, var(--color-foreground) 10%, transparent), 0 0 6px color-mix(in srgb, var(--color-foreground) 5%, transparent);--shadow-lg: 0 0 0 1px rgba(0, 0, 0, .075), 0 2px 24px rgba(0, 0, 0, .075);--shadow-outline: 0 0 0 1px color-mix(in srgb, var(--color-foreground) 10%, transparent);--shadow-outline-strong: 0 0 0 1px color-mix(in srgb, var(--color-foreground) 25%, transparent);--transition-colors: color .15s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1), box-shadow .15s cubic-bezier(.4, 0, .2, 1), fill .15s cubic-bezier(.4, 0, .2, 1), stroke .15s cubic-bezier(.4, 0, .2, 1)}.agenttic.dark{--color-background: #1F1F1F;--color-foreground: #FFFFFF;--color-popover: #1F1F1F;--color-popover-muted: #2F2F2F;--color-muted: #464646;--color-muted-foreground: #8F8F8F;--color-success-background: #1F2E1F;--color-warning-background: #2E281F;--color-error-background: #2E1F1F;--color-error: #FFDDDF;--color-link: var(--color-white)}.agenttic.dark [data-slot=collapsed-view] svg{color:var(--color-white)}@layer base{.agenttic *,.agenttic :before,.agenttic :after,.agenttic ::backdrop,.agenttic ::file-selector-button{box-sizing:border-box;margin:0;padding:0;border:0 solid}.agenttic *{outline-color:var(--color-ring)}.agenttic button,.agenttic input,.agenttic select,.agenttic optgroup,.agenttic textarea,.agenttic ::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;background-color:transparent;opacity:1}.agenttic input,.agenttic select,.agenttic optgroup,.agenttic textarea,.agenttic ::file-selector-button{color:inherit;border-radius:0}.agenttic [data-slot=messages],.agenttic [data-slot=chat-input],.agenttic [data-slot=chat-footer],.agenttic [data-slot=chat-compliance-disclosure],.agenttic [data-slot=chat-header] [data-slot=button]{cursor:default}}
|
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.ResizeHandles-module_resizeTop,.ResizeHandles-module_resizeRight,.ResizeHandles-module_resizeBottom,.ResizeHandles-module_resizeLeft,.ResizeHandles-module_resizeTopLeft,.ResizeHandles-module_resizeTopRight,.ResizeHandles-module_resizeBottomRight,.ResizeHandles-module_resizeBottomLeft{position:absolute;z-index:1;touch-action:none}.ResizeHandles-module_resizeTop{top:0;left:6px;right:6px;height:6px}.ResizeHandles-module_resizeBottom{bottom:0;left:6px;right:6px;height:6px}.ResizeHandles-module_resizeLeft{top:6px;bottom:6px;left:0;width:6px}.ResizeHandles-module_resizeRight{top:6px;bottom:6px;right:0;width:6px}.ResizeHandles-module_resizeTopLeft,.ResizeHandles-module_resizeTopRight,.ResizeHandles-module_resizeBottomRight,.ResizeHandles-module_resizeBottomLeft{width:12px;height:12px;z-index:2}.ResizeHandles-module_resizeTopLeft{top:0;left:0}.ResizeHandles-module_resizeTopRight{top:0;right:0}.ResizeHandles-module_resizeBottomRight{bottom:0;right:0}.ResizeHandles-module_resizeBottomLeft{bottom:0;left:0}.button-module_button{align-items:center;border-radius:var(--radius-sm);border:1px solid transparent;color:var(--color-foreground);cursor:pointer;display:inline-flex;flex-shrink:0;font-weight:var(--font-weight-medium);font-size:var(--text-sm);gap:calc(var(--spacing) * .5);justify-content:center;outline:none;transition:var(--transition-colors);letter-spacing:var(--text-base--tracking);white-space:nowrap;height:var(--spacing-8);padding:var(--spacing-2) var(--spacing-3)}.button-module_button:disabled{pointer-events:none;background-color:var(--color-muted);color:var(--color-muted-foreground)}.button-module_button:focus-visible{outline:2px solid var(--color-ring);outline-offset:1.5px}.button-module_pressed{color:var(--color-foreground)}.button-module_pressed svg{color:var(--color-foreground)}.button-module_primary{background-color:var(--color-primary);color:var(--color-primary-foreground)}.button-module_primary:hover:not(:disabled){background-color:color-mix(in srgb,var(--color-primary) 85%,#000)}.button-module_ghost{background-color:transparent;color:var(--color-muted-foreground)}.button-module_ghost svg{color:var(--color-muted-foreground)}.button-module_ghost:hover:not(:disabled){background:transparent;color:var(--color-foreground)}.button-module_ghost:hover:not(:disabled) svg{color:var(--color-foreground)}.button-module_ghost:disabled{background:transparent;opacity:.66}.button-module_ghost:focus-visible{outline-offset:0}.button-module_ghost.button-module_pressed{color:var(--color-foreground)}.button-module_ghost.button-module_pressed svg{color:var(--color-foreground)}.button-module_outline{box-shadow:var(--shadow-outline);background-color:var(--color-background)}.button-module_outline:hover:not(:disabled){box-shadow:var(--shadow-outline-strong)}.button-module_outline:focus-visible{outline-offset:0}.button-module_outline:disabled{background-color:var(--color-background)}.button-module_outline.button-module_pressed{color:var(--color-foreground)}.button-module_outline.button-module_pressed svg{color:var(--color-foreground)}.button-module_transparent{background-color:color-mix(in srgb,var(--color-background) 95%,transparent);color:var(--color-foreground);box-shadow:var(--shadow-lg)}.button-module_transparent:hover:not(:disabled){background-color:var(--color-background);box-shadow:var(--shadow-lg)}.button-module_link{background-color:transparent;color:var(--color-primary);font-weight:var(--font-weight-semibold);padding-left:var(--spacing-2);padding-right:var(--spacing-2);width:auto}.button-module_link:hover:not(:disabled){color:color-mix(in srgb,var(--color-primary) 85%,#000)}.button-module_link.button-module_pressed{color:var(--color-primary)}.button-module_link.button-module_pressed svg{color:var(--color-primary)}.button-module_icon{border-radius:var(--radius-xs);height:var(--spacing-8);padding:0;width:var(--spacing-8)}.button-module_sm{border-radius:var(--radius-xs);gap:0;height:var(--spacing-6);padding:0;width:var(--spacing-6)}.button-module_sm svg{height:var(--spacing-6);width:var(--spacing-6)}.button-module_lg{height:var(--spacing-10);border-radius:var(--radius-md);font-size:var(--text-base);padding-left:var(--spacing-3\.5);padding-right:var(--spacing-3\.5)}.button-module_withTextAndIcon{padding-left:var(--spacing-1);width:inherit}.button-module_sm.button-module_withTextAndIcon{padding-left:0;padding-right:var(--spacing-1)}.button-module_button svg{flex-shrink:0;pointer-events:none}.CollapsedView-module_button{border-radius:var(--radius-lg);height:var(--spacing-10);width:var(--spacing-10)}.Textarea-module_textarea{display:flex;width:100%;border-radius:var(--radius-md);border:0;font-size:var(--text-sm);line-height:var(--text-sm--line-height);background-color:transparent;padding:var(--spacing-2);scrollbar-width:none;resize:none}.Textarea-module_textarea::-moz-placeholder{color:var(--color-muted-foreground);font-weight:var(--font-weight-medium)}.Textarea-module_textarea::placeholder{color:var(--color-muted-foreground);font-weight:var(--font-weight-medium)}.Textarea-module_textarea:focus,.Textarea-module_textarea:focus-visible{outline:none;border:0;box-shadow:none}.Textarea-module_textarea:disabled{cursor:not-allowed;opacity:.5}.ChatInput-module_container{display:flex;align-items:end;gap:var(--spacing)}.ChatInput-module_container textarea{color:var(--color-foreground)}.ChatInput-module_textareaContainer{position:relative;flex:1;width:100%}.ChatInput-module_actions{display:flex;flex-direction:row;padding-left:var(--spacing);padding-right:var(--spacing);height:var(--spacing-10);gap:var(--spacing);align-items:center}.ChatInput-module_containerStacked{flex-direction:column;padding:var(--spacing-2);gap:var(--spacing)}.ChatInput-module_containerStacked .ChatInput-module_actions{width:100%;justify-content:space-between;padding-left:0;padding-right:0}.ChatInput-module_containerStacked .ChatInput-module_actions .ChatInput-module_button{min-width:var(--spacing-8);min-height:var(--spacing-8)}.ChatInput-module_button{border-radius:var(--radius-full)}.AnimatedPlaceholder-module_container{color:var(--color-muted-foreground);font-weight:var(--font-weight-medium);padding-left:var(--spacing-2);padding-right:var(--spacing-2);padding-top:var(--spacing-2);pointer-events:none;position:absolute;z-index:1}.SuggestionDropdown-module_container{position:relative}.SuggestionDropdown-module_labelRow{display:flex;align-items:center}.SuggestionDropdown-module_chevron{margin-left:var(--spacing-0\.5);transition:transform .15s ease;flex-shrink:0}.SuggestionDropdown-module_chevronOpen{transform:rotate(180deg)}.SuggestionDropdown-module_dropdown{display:flex;flex-direction:column;background-color:var(--color-background);border-radius:var(--radius-sm);padding:var(--spacing-2);z-index:1000;box-shadow:var(--shadow-lg)}.agenttic.dark .SuggestionDropdown-module_dropdown{border:1px solid var(--color-muted)}.SuggestionDropdown-module_option{display:flex;align-items:center;width:100%;padding:var(--spacing-2);background:none;border:none;border-radius:var(--radius-sm);color:var(--color-foreground);font-size:var(--text-sm);font-weight:var(--font-weight-medium);font-family:inherit;cursor:pointer;text-align:start;white-space:nowrap}.SuggestionDropdown-module_option:hover{background-color:color-mix(in srgb,var(--color-background) 50%,var(--color-muted))}.SuggestionDropdown-module_option:focus{outline:none}.SuggestionDropdown-module_option:focus-visible{outline:2px solid var(--color-primary);outline-offset:-2px}.Suggestions-module_container{position:absolute;top:0;left:0;right:0;display:flex;flex-wrap:nowrap;gap:var(--spacing-2);padding:var(--spacing-2) var(--spacing-1\.5);overflow-x:auto;overflow-y:hidden;scrollbar-width:none;-ms-overflow-style:none}.Suggestions-module_container::-webkit-scrollbar{display:none}.Suggestions-module_vertical{position:static;flex-direction:column;overflow:visible;gap:0;padding:0}.Suggestions-module_vertical .Suggestions-module_button{width:100%;height:unset;justify-content:start;font-size:var(--text-xs);line-height:20px;padding:14px 16px;border:1px solid var(--color-muted);border-radius:0;box-shadow:none}.Suggestions-module_vertical .Suggestions-module_button .Suggestions-module_suggestion-content--with-description{display:flex;flex-direction:column}.Suggestions-module_vertical .Suggestions-module_button .Suggestions-module_suggestion-content--with-description .Suggestions-module_label{font-weight:var(--font-weight-semibold)}.Suggestions-module_vertical .Suggestions-module_button .Suggestions-module_suggestion-content--with-description .Suggestions-module_description{color:var(--color-muted-foreground)}.Suggestions-module_vertical .Suggestions-module_button:hover{box-shadow:none;background-color:color-mix(in srgb,var(--color-background) 50%,var(--color-muted))}.Suggestions-module_vertical .Suggestions-module_button:focus-visible{outline-offset:-3px}.Suggestions-module_vertical>div+div .Suggestions-module_button{margin-top:-1px}.Suggestions-module_vertical>div:only-of-type .Suggestions-module_button{border-radius:8px}.Suggestions-module_vertical>div:first-of-type:not(:only-of-type) .Suggestions-module_button{border-radius:8px 8px 0 0}.Suggestions-module_vertical>div:last-of-type:not(:only-of-type) .Suggestions-module_button{border-radius:0 0 8px 8px}.Suggestions-module_floating{flex-direction:column;gap:var(--spacing-1);overflow:visible;padding:1px;padding-bottom:var(--spacing-1);z-index:-1}.MinimizedView-module_button{border-radius:var(--radius-lg);height:var(--spacing-10);width:100%;justify-content:flex-start;gap:var(--spacing-2);padding:0 var(--spacing-2)}.MinimizedView-module_button svg:not(.MinimizedView-module_chevron),.MinimizedView-module_button:hover:not(:disabled) svg:not(.MinimizedView-module_chevron){color:var(--color-primary)}.MinimizedView-module_button .MinimizedView-module_chevron,.MinimizedView-module_button:hover:not(:disabled) .MinimizedView-module_chevron{color:var(--color-muted-foreground)}.MinimizedView-module_title{flex:1;min-width:0;font-size:var(--text-base);text-align:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Chat-module_container{font-size:var(--text-sm);line-height:var(--text-sm--line-height);font-weight:400;font-family:var(--font-sans);letter-spacing:var(--text-base--tracking);text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased}.Chat-module_container.Chat-module_embedded{height:100%}.Chat-module_container.Chat-module_floating{position:fixed;z-index:50}.Chat-module_container.Chat-module_floating .Chat-module_content{background-color:var(--color-background);color:var(--color-foreground);overflow:hidden;min-height:56px;padding:var(--spacing-2);box-shadow:var(--shadow-lg)}.Chat-module_container.Chat-module_expanded .Chat-module_content{padding:var(--spacing-3)}.Chat-module_container.Chat-module_floating [data-slot=chat-input],.Chat-module_container.Chat-module_floating [data-slot=chat-input] .Chat-module_textareaContainer,.Chat-module_container.Chat-module_floating [data-slot=chat-input] .Chat-module_textareaContainer *,.Chat-module_container.Chat-module_floating textarea,.Chat-module_container.Chat-module_floating input{cursor:auto}.ChatHeader-module_container{display:flex;align-items:center;justify-content:flex-end;gap:var(--spacing);cursor:grab}.ChatHeader-module_container:active{cursor:grabbing}.MessageActions-module_container{display:flex;align-items:center;flex-wrap:wrap;margin-top:var(--spacing-2);gap:var(--spacing-1)}.MessageActions-module_container button[aria-hidden=true]{display:none}.Message-module_message{display:flex;align-items:flex-start;padding:var(--spacing) var(--spacing-4);color:var(--color-foreground)}.Message-module_message.Message-module_user{padding:0 var(--spacing-4)}.Message-module_message.Message-module_user .Message-module_bubble{background-color:var(--color-muted);max-width:85%;padding:var(--spacing-3) var(--spacing-4);border-radius:var(--radius-xl);border-bottom-right-radius:var(--radius-sm)}.Message-module_message.Message-module_error{color:var(--color-error)}.Message-module_icon{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:28px;height:calc(var(--text-sm) * var(--text-sm--line-height));margin-inline-end:var(--spacing-2)}.Message-module_content{flex:1;min-width:0;text-align:start;word-break:break-word;white-space:normal}.Message-module_message.Message-module_user .Message-module_content{display:flex;justify-content:flex-end}.Message-module_bubble{max-width:100%;min-width:0;overflow-wrap:anywhere}.Message-module_bubble pre{max-width:100%;overflow-x:auto;white-space:pre-wrap}.Message-module_message *{font-size:var(--text-sm);font-weight:400;line-height:var(--text-sm--line-height);color:var(--color-foreground)}.Message-module_message p{text-wrap-style:pretty;margin-top:0;margin-bottom:var(--spacing-3)}.Message-module_message a{color:var(--color-link)}.Message-module_message p:last-child{margin-bottom:0}.Message-module_message strong{font-weight:var(--font-weight-semibold)}.Message-module_message ol,.Message-module_message ul{margin-bottom:var(--spacing-3);padding-left:var(--spacing-6);margin-left:var(--spacing-2)}.Message-module_message ul{list-style-type:disc}.Message-module_message p+:where(ol,ul){margin-top:0}.Message-module_message li{margin-bottom:var(--spacing-2)}.Message-module_message li::marker{font-size:var(--text-sm)}.Message-module_message table{width:100%;margin:12px 0;border-collapse:collapse}.Message-module_message th,.Message-module_message td{padding:8px 12px;border:1px solid #ddd;text-align:left}.Message-module_message th{background-color:var(--color-muted);font-weight:600}.Message-module_message.Message-module_disabled{pointer-events:auto;filter:grayscale(50%)}.Message-module_message.Message-module_disabled .Message-module_content{opacity:.6}.Message-module_message.Message-module_disabled *{pointer-events:none}.Message-module_message.Message-module_disabled:hover,.Message-module_message.Message-module_disabled:hover .Message-module_content{pointer-events:auto}.Messages-module_container{display:flex;flex-direction:column;flex:1;padding-top:var(--spacing-1);padding-bottom:var(--spacing-6);gap:var(--spacing-8);overflow-y:auto;height:100%;position:relative;z-index:10}.Messages-module_bottomMessages>*:first-child{margin-top:auto}.animating .Messages-module_container::-webkit-scrollbar{display:none}.Messages-module_container [data-role=user]:has(+[data-role=user]),.Messages-module_container [data-role=agent]:has(+[data-role=agent]),.Messages-module_container [data-role=assistant]:has(+[data-role=assistant]){margin-bottom:calc(-1 * var(--spacing-6))}.Thinking-module_container{display:flex;align-items:flex-start;gap:var(--spacing);padding:0 var(--spacing-2);color:var(--color-muted-foreground);font-size:var(--text-sm)}.Thinking-module_icon{display:flex;align-items:center;justify-content:center}.Thinking-module_icon svg{width:var(--spacing-6);height:var(--spacing-6)}.Thinking-module_content{background:linear-gradient(90deg,color-mix(in srgb,currentColor 30%,transparent),currentColor,color-mix(in srgb,currentColor 30%,transparent));background-size:200% 100%;background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent;animation:Thinking-module_shimmer 2s infinite linear 0ms}@keyframes Thinking-module_shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}.Notice-module_container{position:relative;display:flex;align-items:center;margin:calc((var(--spacing-2)) * -1) calc((var(--spacing-2)) * -1) 0;padding:var(--spacing-2) var(--spacing-4);gap:var(--spacing-3);background-color:var(--color-muted);border-radius:calc(var(--radius-lg)) calc(var(--radius-lg)) 0 0;color:var(--color-muted-foreground)}.Notice-module_container *{font-size:var(--text-xs);font-weight:var(--font-weight-medium);line-height:var(--text-xs--line-height)}.Notice-module_isSuccess{background-color:var(--color-success-background);color:var(--color-success)}.Notice-module_isSuccess .Notice-module_icon svg path{fill:var(--color-success)}.Notice-module_isWarning{background-color:var(--color-warning-background);color:var(--color-warning)}.Notice-module_isWarning .Notice-module_icon svg path{fill:var(--color-warning)}.Notice-module_isError{background-color:var(--color-error-background);color:var(--color-error)}.Notice-module_isError .Notice-module_icon svg path{fill:var(--color-error)}.Notice-module_content{align-items:center;display:flex;flex:1;gap:var(--spacing);min-width:0}.Notice-module_content *{margin:0}.Notice-module_actions{align-items:center;display:flex;flex-shrink:0;gap:var(--spacing)}.Notice-module_action{height:auto;font-size:var(--text-xs);font-weight:var(--font-weight-bold);color:var(--color-foreground);border:none;padding:0}.Notice-module_action:hover:not(:disabled){color:var(--color-foreground);opacity:.8}.Notice-module_action:is(:focus,:focus-visible){outline-offset:0}.Notice-module_icon{align-items:center;display:flex;flex-shrink:0;justify-content:center}.Notice-module_icon svg{display:block;height:var(--spacing-5);width:var(--spacing-5)}.Notice-module_dismissible svg{display:block;width:var(--spacing-5);height:var(--spacing-5);color:var(--color-muted-foreground)}.ChatFooter-module_container{background-color:var(--color-popover-muted);border-radius:calc(var(--radius-lg) + 1px);border:1px solid var(--color-muted);color:var(--color-foreground);display:flex;flex-direction:column;gap:var(--spacing-2);padding:var(--spacing-2);position:relative;z-index:10}.ConversationView-module_container{display:flex;flex-direction:column;height:100%;justify-content:flex-end}.ConversationView-module_container.ConversationView-module_withHeader{justify-content:space-between}.ConversationView-module_container:has([data-slot=suggestions]) [data-slot=messages]{padding-bottom:var(--spacing-12)}.AgentUIInputToolbar-module_container{position:relative}.AgentUIInputToolbar-module_button{display:flex;align-items:center;gap:var(--spacing-1);padding:calc(var(--spacing) * 1.5) calc(var(--spacing) * 2.5);background:var(--color-muted);color:var(--color-foreground);border-radius:calc(var(--radius) - 6px);font-size:var(--text-sm);font-family:inherit;cursor:pointer;border:none}.AgentUIInputToolbar-module_button:focus-visible{outline:2px solid var(--color-primary);outline-offset:1.5px}.AgentUIInputToolbar-module_icon{transition:transform .15s ease}.AgentUIInputToolbar-module_iconOpen{transform:rotate(180deg)}.AgentUIInputToolbar-module_dropdown{font-size:var(--text-sm);font-family:inherit;color:var(--color-foreground);background:var(--color-popover-muted);border:1px solid var(--color-muted);border-radius:calc(var(--radius) - 4px);padding:var(--spacing-2);z-index:1000}.AgentUIInputToolbar-module_dropdown:focus-visible{outline:2px solid var(--color-primary);outline-offset:1.5px}.ImageUploader-module_container{width:100%;padding:4px 0;align-self:flex-start;position:absolute;pointer-events:none}.ImageUploader-module_container.ImageUploader-module_active{position:relative;pointer-events:auto}.ImageUploader-module_uploader{position:relative;width:100%;transition:opacity .2s ease}.ImageUploader-module_uploader.ImageUploader-module_uploading{opacity:.9}.ImageUploader-module_content{width:100%}.ImageUploader-module_hiddenInput{display:none}.ImageUploader-module_clickArea{cursor:pointer;outline:none;width:100%}.ImageUploader-module_clickArea:focus-visible{outline:2px solid var(--color-primary);outline-offset:2px;border-radius:4px}.ImageUploader-module_draggingMessage{padding:60px 24px;text-align:center;border:1px dashed var(--color-muted);border-radius:12px;background-color:var(--color-muted);margin-bottom:8px;position:relative;min-height:150px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px}.ImageUploader-module_draggingMessage p{margin:0;color:var(--color-muted-foreground);font-size:15px;line-height:1.6}.ImageUploader-module_uploader.ImageUploader-module_draggingOver .ImageUploader-module_draggingMessage{border-color:var(--color-primary);background-color:transparent}.ImageUploader-module_preview{display:flex;flex-wrap:wrap;gap:16px;padding:0}.ImageUploader-module_previewItem{position:relative;display:flex;flex-direction:row;align-items:center;gap:12px;padding:8px;border-radius:8px;border:none;background-color:var(--color-muted);cursor:move;transition:transform .2s ease,box-shadow .2s ease;width:150px}.ImageUploader-module_previewItem:active{cursor:grabbing}.ImageUploader-module_removeButton{position:absolute;top:-5px;right:-8px;width:20px;height:20px;border-radius:50%;border:none;background-color:var(--color-popover-muted, #2F2F2F);color:#fff;font-size:16px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:2;padding:0;opacity:0;transition:opacity .2s ease,background-color .2s ease}.ImageUploader-module_removeButton svg{color:var(--color-muted-foreground, #8F8F8F)}.ImageUploader-module_previewItem:hover .ImageUploader-module_removeButton{opacity:1}.ImageUploader-module_removeButton:focus-visible{outline:2px solid var(--color-primary);outline-offset:2px}.ImageUploader-module_previewImage{width:48px;height:48px;-o-object-fit:cover;object-fit:cover;border-radius:6px;flex-shrink:0}.ImageUploader-module_previewMeta{display:flex;flex-direction:column;gap:0px;flex:1;min-width:0}.ImageUploader-module_previewMeta span.ImageUploader-module_previewFilename{font-size:14px!important;color:var(--color-foreground);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:400}.ImageUploader-module_previewMeta span.ImageUploader-module_previewType{font-size:12px!important;color:var(--color-muted-foreground);text-transform:uppercase;font-weight:400}.ImageUploader-module_uploadingIndicator{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background-color:var(--color-muted)}.ImageUploader-module_spinner{width:32px;height:32px;border:3px solid var(--color-muted);border-top-color:var(--color-primary);border-radius:50%;animation:ImageUploader-module_spin .8s linear infinite}@keyframes ImageUploader-module_spin{to{transform:rotate(360deg)}}.ImageUploader-module_invalidMessage{padding:16px;background-color:var(--color-error-background);border:1px solid var(--color-error);border-radius:8px;text-align:center}.ImageUploader-module_invalidMessage p{margin:0;color:var(--color-error);font-size:14px}.MessageDivider-module_container{display:flex;align-items:center;margin:var(--spacing-4) 0}.MessageDivider-module_line{flex:1;height:1px;background-color:var(--color-muted)}.MessageDivider-module_message{padding:0 var(--spacing-3);color:var(--color-muted-foreground);font-size:var(--text-sm)}.EmptyView-module_container{display:flex;flex-direction:column;align-items:start;justify-content:flex-start;gap:var(--spacing-6)}.EmptyView-module_container:before{content:"";flex:1 0 0}.EmptyView-module_icon{font-size:calc(3 * var(--base-font-size));line-height:1;padding:0 var(--spacing-4);color:var(--color-link)}.EmptyView-module_heading,.EmptyView-module_help{font-size:var(--text-sm);font-weight:400;line-height:var(--text-sm--line-height);color:var(--color-foreground);margin:0;padding:var(--spacing) var(--spacing-4)}.EmptyView-module_suggestionsWrapper{width:100%;position:relative}.ImageRenderer-module_container{display:grid;grid-template-columns:1fr 1fr;gap:2px;width:100%}.ImageRenderer-module_imageButton{position:relative;border:none;background:none;cursor:pointer;border-radius:calc(var(--radius-sm) + 1px);overflow:hidden;transition:var(--transition-colors);border:1px solid transparent;padding:1px}.ImageRenderer-module_imageButton:hover{border-color:var(--color-muted-foreground)}.ImageRenderer-module_imageButton.ImageRenderer-module_selected{border-color:var(--color-primary);box-shadow:0 0 0 1px var(--color-primary);border-radius:calc(var(--radius-sm) + 1px)}.ImageRenderer-module_imageButton.ImageRenderer-module_disabled{opacity:.5;cursor:not-allowed;pointer-events:none}.ImageRenderer-module_image{width:100%;height:auto;display:block;border-radius:var(--radius-sm);-o-object-fit:cover;object-fit:cover}.ImageRenderer-module_header{display:flex;margin-bottom:var(--spacing-1);color:var(--color-muted-foreground)}.agenttic .chart-block{--jp-gray-80: var(--color-foreground);margin:var(--spacing-1) 0;position:relative;width:100%;max-width:100%;box-sizing:border-box;overflow:visible;z-index:1000;font-family:var(--font-sans)}.agenttic .chart-block-title{margin:0 0 var(--spacing-2) 0;font-size:var(--text-sm);font-family:inherit;font-weight:var(--font-weight-bold, 700);word-wrap:break-word;white-space:normal;line-height:var(--text-sm--line-height);-webkit-hyphens:auto;hyphens:auto}.agenttic .chart-container{width:100%;height:auto;display:flex;flex-direction:column;align-items:stretch;z-index:1001;overflow:visible;position:relative;box-sizing:border-box}.agenttic .chart-container svg{overflow:visible!important}.agenttic .chart-error{padding:var(--spacing-4);border:1px solid var(--color-error);border-radius:var(--radius-sm);background-color:var(--color-muted);color:var(--color-error);font-size:var(--text-sm)}.agenttic .chart-error strong{display:inline-block;margin-bottom:var(--spacing-1)}.agenttic .chart-error details{margin-top:var(--spacing-2)}.agenttic .chart-error details summary{cursor:pointer;color:var(--color-muted-foreground)}.agenttic .chart-error details pre{margin-top:var(--spacing-2);padding:var(--spacing-2);background-color:var(--color-muted);border-radius:var(--radius-sm);overflow:auto;font-size:var(--text-sm)}.agenttic .chart-tooltip{line-height:1.2;font-size:11px;max-width:120px;min-width:auto;background:#000c;color:#fff;padding:var(--spacing-2) var(--spacing-4) var(--spacing-2) var(--spacing-2);border-radius:var(--radius-sm);box-shadow:var(--shadow-sm)}.agenttic .chart-tooltip-date{font-size:10px;opacity:.8;margin-bottom:var(--spacing-1);color:#fffc;border-bottom:1px solid rgba(255,255,255,.3);padding-bottom:var(--spacing-1)}.agenttic .chart-tooltip-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:var(--spacing-1)}.agenttic .chart-tooltip-row:last-child{margin-bottom:0}.agenttic .chart-tooltip-label{font-weight:var(--font-weight-normal);font-size:11px;color:#fffc;margin-right:var(--spacing-2)}.agenttic .chart-tooltip-value{font-weight:var(--font-weight-semibold);font-size:11px;color:#fff;text-align:right}.agenttic .chart-block .visx-axis-bottom text{font-size:11px}.agenttic .chart-block .visx-axis-bottom text.visx-axis-tick{text-anchor:middle}.agenttic .chart-block .visx-axis-bottom.rotate-labels .visx-axis-tick text{text-anchor:end;transform:rotate(-45deg);transform-origin:right center}.agenttic .chart-block .visx-legend .visx-legend-label{font-size:11px!important;max-width:none!important}.agenttic .chart-block .visx-legend{margin-top:8px;position:relative;z-index:1002}.agenttic .chart-block .visx-legend-item{display:flex;align-items:center;margin:0 8px}.agenttic .chart-block .visx-legend-shape{width:12px;height:12px;margin-right:6px;display:inline-block;flex-shrink:0}.agenttic .chart-block .visx-legend-shape svg{width:100%;height:100%;display:block}.agenttic .chart-block .visx-legend-shape rect{width:100%;height:100%}.agenttic .chart-block .visx-legend-shape circle{r:6;cx:6;cy:6}.agenttic .chart-block .visx-legend>div{display:flex;justify-content:center;align-items:center;flex-wrap:wrap}.agenttic .chart-block .visx-legend-item>div:first-child{margin-right:6px}.agenttic .chart-block .visx-legend [class*=legend] svg{opacity:1;visibility:visible}.agenttic .chart-block .visx-legend svg *{opacity:1;visibility:visible;fill:currentColor}.agenttic div[style*="pointer-events: none"][style*="position: absolute"]{z-index:10000!important}.visx-tooltip{z-index:10000!important;max-width:150px!important;word-wrap:break-word!important;white-space:normal!important}
|
|
1
|
+
.ResizeHandles-module_resizeTop,.ResizeHandles-module_resizeRight,.ResizeHandles-module_resizeBottom,.ResizeHandles-module_resizeLeft,.ResizeHandles-module_resizeTopLeft,.ResizeHandles-module_resizeTopRight,.ResizeHandles-module_resizeBottomRight,.ResizeHandles-module_resizeBottomLeft{position:absolute;z-index:1;touch-action:none}.ResizeHandles-module_resizeTop{top:0;left:6px;right:6px;height:6px}.ResizeHandles-module_resizeBottom{bottom:0;left:6px;right:6px;height:6px}.ResizeHandles-module_resizeLeft{top:6px;bottom:6px;left:0;width:6px}.ResizeHandles-module_resizeRight{top:6px;bottom:6px;right:0;width:6px}.ResizeHandles-module_resizeTopLeft,.ResizeHandles-module_resizeTopRight,.ResizeHandles-module_resizeBottomRight,.ResizeHandles-module_resizeBottomLeft{width:12px;height:12px;z-index:2}.ResizeHandles-module_resizeTopLeft{top:0;left:0}.ResizeHandles-module_resizeTopRight{top:0;right:0}.ResizeHandles-module_resizeBottomRight{bottom:0;right:0}.ResizeHandles-module_resizeBottomLeft{bottom:0;left:0}.CollapsedView-module_button{border-radius:var(--radius-lg);height:var(--spacing-10);width:var(--spacing-10)}.MinimizedView-module_button{border-radius:var(--radius-lg);height:var(--spacing-10);width:100%;justify-content:flex-start;gap:var(--spacing-2);padding:0 var(--spacing-2)}.MinimizedView-module_button svg:not(.MinimizedView-module_chevron),.MinimizedView-module_button:hover:not(:disabled) svg:not(.MinimizedView-module_chevron){color:var(--color-primary)}.MinimizedView-module_button .MinimizedView-module_chevron,.MinimizedView-module_button:hover:not(:disabled) .MinimizedView-module_chevron{color:var(--color-muted-foreground)}.MinimizedView-module_title{flex:1;min-width:0;font-size:var(--text-base);text-align:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Chat-module_container{font-size:var(--text-sm);line-height:var(--text-sm--line-height);font-weight:400;font-family:var(--font-sans);letter-spacing:var(--text-base--tracking);text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased}.Chat-module_container.Chat-module_embedded{height:100%}.Chat-module_container.Chat-module_floating{position:fixed;z-index:50}.Chat-module_container.Chat-module_floating .Chat-module_content{background-color:var(--color-background);color:var(--color-foreground);overflow:hidden;min-height:56px;padding:var(--spacing-2);box-shadow:var(--shadow-lg)}.Chat-module_container.Chat-module_expanded .Chat-module_content{padding:var(--spacing-3)}.Chat-module_container.Chat-module_floating [data-slot=chat-input],.Chat-module_container.Chat-module_floating [data-slot=chat-input] .Chat-module_textareaContainer,.Chat-module_container.Chat-module_floating [data-slot=chat-input] .Chat-module_textareaContainer *,.Chat-module_container.Chat-module_floating textarea,.Chat-module_container.Chat-module_floating input{cursor:auto}.ChatHeader-module_container{display:flex;align-items:center;justify-content:flex-end;gap:var(--spacing);cursor:grab}.ChatHeader-module_container:active{cursor:grabbing}.MessageActions-module_container{display:flex;align-items:center;flex-wrap:wrap;margin-top:var(--spacing-2);gap:var(--spacing-1)}.MessageActions-module_container button[aria-hidden=true]{display:none}.Message-module_message{display:flex;align-items:flex-start;padding:var(--spacing) var(--spacing-4);color:var(--color-foreground)}.Message-module_message.Message-module_user{padding:0 var(--spacing-4)}.Message-module_message.Message-module_user .Message-module_bubble{background-color:var(--color-muted);max-width:85%;padding:var(--spacing-3) var(--spacing-4);border-radius:var(--radius-xl);border-bottom-right-radius:var(--radius-sm)}.Message-module_message.Message-module_error{color:var(--color-error)}.Message-module_icon{flex-shrink:0;display:flex;align-items:center;justify-content:center;width:28px;height:calc(var(--text-sm) * var(--text-sm--line-height));margin-inline-end:var(--spacing-2)}.Message-module_content{flex:1;min-width:0;text-align:start;word-break:break-word;white-space:normal}.Message-module_message.Message-module_user .Message-module_content{display:flex;justify-content:flex-end}.Message-module_bubble{max-width:100%;min-width:0;overflow-wrap:anywhere}.Message-module_bubble pre{max-width:100%;overflow-x:auto;white-space:pre-wrap}.Message-module_message *{font-size:var(--text-sm);font-weight:400;line-height:var(--text-sm--line-height);color:var(--color-foreground)}.Message-module_message p{text-wrap-style:pretty;margin-top:0;margin-bottom:var(--spacing-3)}.Message-module_message a{color:var(--color-link)}.Message-module_message p:last-child{margin-bottom:0}.Message-module_message strong{font-weight:var(--font-weight-semibold)}.Message-module_message ol,.Message-module_message ul{margin-bottom:var(--spacing-3);padding-left:var(--spacing-6);margin-left:var(--spacing-2)}.Message-module_message ul{list-style-type:disc}.Message-module_message p+:where(ol,ul){margin-top:0}.Message-module_message li{margin-bottom:var(--spacing-2)}.Message-module_message li::marker{font-size:var(--text-sm)}.Message-module_message table{width:100%;margin:12px 0;border-collapse:collapse}.Message-module_message th,.Message-module_message td{padding:8px 12px;border:1px solid #ddd;text-align:left}.Message-module_message th{background-color:var(--color-muted);font-weight:600}.Message-module_message.Message-module_disabled{pointer-events:auto;filter:grayscale(50%)}.Message-module_message.Message-module_disabled .Message-module_content{opacity:.6}.Message-module_message.Message-module_disabled *{pointer-events:none}.Message-module_message.Message-module_disabled:hover,.Message-module_message.Message-module_disabled:hover .Message-module_content{pointer-events:auto}.Messages-module_container{display:flex;flex-direction:column;flex:1;padding-top:var(--spacing-1);padding-bottom:var(--spacing-6);gap:var(--spacing-8);overflow-y:auto;height:100%;position:relative;z-index:10}.Messages-module_bottomMessages>*:first-child{margin-top:auto}.animating .Messages-module_container::-webkit-scrollbar{display:none}.Messages-module_container [data-role=user]:has(+[data-role=user]),.Messages-module_container [data-role=agent]:has(+[data-role=agent]),.Messages-module_container [data-role=assistant]:has(+[data-role=assistant]){margin-bottom:calc(-1 * var(--spacing-6))}.Thinking-module_container{display:flex;align-items:flex-start;gap:var(--spacing);padding:0 var(--spacing-2);color:var(--color-muted-foreground);font-size:var(--text-sm)}.Thinking-module_icon{display:flex;align-items:center;justify-content:center}.Thinking-module_icon svg{width:var(--spacing-6);height:var(--spacing-6)}.Thinking-module_content{background:linear-gradient(90deg,color-mix(in srgb,currentColor 30%,transparent),currentColor,color-mix(in srgb,currentColor 30%,transparent));background-size:200% 100%;background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent;animation:Thinking-module_shimmer 2s infinite linear 0ms}@keyframes Thinking-module_shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}.ConversationView-module_container{display:flex;flex-direction:column;height:100%;justify-content:flex-end}.ConversationView-module_container.ConversationView-module_withHeader{justify-content:space-between}.ConversationView-module_container:has([data-slot=suggestions]) [data-slot=messages]{padding-bottom:var(--spacing-12)}.AgentUIInputToolbar-module_container{position:relative}.AgentUIInputToolbar-module_button{display:flex;align-items:center;gap:var(--spacing-1);padding:calc(var(--spacing) * 1.5) calc(var(--spacing) * 2.5);background:var(--color-muted);color:var(--color-foreground);border-radius:calc(var(--radius) - 6px);font-size:var(--text-sm);font-family:inherit;cursor:pointer;border:none}.AgentUIInputToolbar-module_button:focus-visible{outline:2px solid var(--color-primary);outline-offset:1.5px}.AgentUIInputToolbar-module_icon{transition:transform .15s ease}.AgentUIInputToolbar-module_iconOpen{transform:rotate(180deg)}.AgentUIInputToolbar-module_dropdown{font-size:var(--text-sm);font-family:inherit;color:var(--color-foreground);background:var(--color-popover-muted);border:1px solid var(--color-muted);border-radius:calc(var(--radius) - 4px);padding:var(--spacing-2);z-index:1000}.AgentUIInputToolbar-module_dropdown:focus-visible{outline:2px solid var(--color-primary);outline-offset:1.5px}.ImageUploader-module_container{width:100%;padding:4px 0;align-self:flex-start;position:absolute;pointer-events:none}.ImageUploader-module_container.ImageUploader-module_active{position:relative;pointer-events:auto}.ImageUploader-module_uploader{position:relative;width:100%;transition:opacity .2s ease}.ImageUploader-module_uploader.ImageUploader-module_uploading{opacity:.9}.ImageUploader-module_content{width:100%}.ImageUploader-module_hiddenInput{display:none}.ImageUploader-module_clickArea{cursor:pointer;outline:none;width:100%}.ImageUploader-module_clickArea:focus-visible{outline:2px solid var(--color-primary);outline-offset:2px;border-radius:4px}.ImageUploader-module_clickAreaDisabled{cursor:default}.ImageUploader-module_draggingMessage{padding:60px 24px;text-align:center;border:1px dashed var(--color-muted);border-radius:12px;background-color:var(--color-muted);margin-bottom:8px;position:relative;min-height:150px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px}.ImageUploader-module_draggingMessage p{margin:0;color:var(--color-muted-foreground);font-size:15px;line-height:1.6}.ImageUploader-module_uploader.ImageUploader-module_draggingOver .ImageUploader-module_draggingMessage{border-color:var(--color-primary);background-color:transparent}.ImageUploader-module_preview{display:flex;flex-wrap:wrap;gap:16px;padding:0}.ImageUploader-module_previewItem{position:relative;display:flex;flex-direction:row;align-items:center;gap:12px;padding:8px;border-radius:8px;border:none;background-color:var(--color-muted);cursor:move;transition:transform .2s ease,box-shadow .2s ease;width:150px}.ImageUploader-module_previewItem:active{cursor:grabbing}.ImageUploader-module_removeButton{position:absolute;top:-5px;right:-8px;width:20px;height:20px;border-radius:50%;border:none;background-color:var(--color-popover-muted, #2F2F2F);color:#fff;font-size:16px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:2;padding:0;opacity:0;transition:opacity .2s ease,background-color .2s ease}.ImageUploader-module_removeButton svg{color:var(--color-muted-foreground, #8F8F8F)}.ImageUploader-module_previewItem:hover .ImageUploader-module_removeButton{opacity:1}.ImageUploader-module_removeButton:disabled{pointer-events:none}.ImageUploader-module_previewItem:hover .ImageUploader-module_removeButton:disabled{opacity:0}.ImageUploader-module_removeButton:focus-visible{outline:2px solid var(--color-primary);outline-offset:2px}.ImageUploader-module_previewImage{width:48px;height:48px;-o-object-fit:cover;object-fit:cover;border-radius:6px}.ImageUploader-module_previewMeta{display:flex;flex-direction:column;gap:0px;flex:1;min-width:0}.ImageUploader-module_previewMeta span.ImageUploader-module_previewFilename{font-size:14px!important;color:var(--color-foreground);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:400}.ImageUploader-module_previewMeta span.ImageUploader-module_previewType{font-size:12px!important;color:var(--color-muted-foreground);text-transform:uppercase;font-weight:400}.ImageUploader-module_uploadingItem,.ImageUploader-module_uploadingItem:active{cursor:default}.ImageUploader-module_uploadingIndicator{width:48px;height:48px;flex-shrink:0;display:flex;align-items:center;justify-content:center;background-color:#3c3c3c;border-radius:6px}.ImageUploader-module_thumbnail{position:relative;width:48px;height:48px;flex-shrink:0}.ImageUploader-module_uploadingOverlay{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;background-color:#0006;border-radius:6px}.ImageUploader-module_spinner{width:20px;height:20px;border:2px solid rgba(255,255,255,.35);border-top-color:#fff;border-radius:50%;animation:ImageUploader-module_spin .8s linear infinite}@keyframes ImageUploader-module_spin{to{transform:rotate(360deg)}}.ImageUploader-module_invalidMessage{padding:16px;background-color:var(--color-error-background);border:1px solid var(--color-error);border-radius:8px;text-align:center}.ImageUploader-module_invalidMessage p{margin:0;color:var(--color-error);font-size:14px}.MessageDivider-module_container{display:flex;align-items:center;margin:var(--spacing-4) 0}.MessageDivider-module_line{flex:1;height:1px;background-color:var(--color-muted)}.MessageDivider-module_message{padding:0 var(--spacing-3);color:var(--color-muted-foreground);font-size:var(--text-sm)}.EmptyView-module_container{display:flex;flex-direction:column;align-items:start;justify-content:flex-start;gap:var(--spacing-6)}.EmptyView-module_container:before{content:"";flex:1 0 0}.EmptyView-module_icon{font-size:calc(3 * var(--base-font-size));line-height:1;padding:0 var(--spacing-4);color:var(--color-link)}.EmptyView-module_heading,.EmptyView-module_help{font-size:var(--text-sm);font-weight:400;line-height:var(--text-sm--line-height);color:var(--color-foreground);margin:0;padding:var(--spacing) var(--spacing-4)}.EmptyView-module_suggestionsWrapper{width:100%;position:relative}.ImageRenderer-module_container{display:grid;grid-template-columns:1fr 1fr;gap:2px;width:100%}.ImageRenderer-module_imageButton{position:relative;border:none;background:none;cursor:pointer;border-radius:calc(var(--radius-sm) + 1px);overflow:hidden;transition:var(--transition-colors);border:1px solid transparent;padding:1px}.ImageRenderer-module_imageButton:hover{border-color:var(--color-muted-foreground)}.ImageRenderer-module_imageButton.ImageRenderer-module_selected{border-color:var(--color-primary);box-shadow:0 0 0 1px var(--color-primary);border-radius:calc(var(--radius-sm) + 1px)}.ImageRenderer-module_imageButton.ImageRenderer-module_disabled{opacity:.5;cursor:not-allowed;pointer-events:none}.ImageRenderer-module_image{width:100%;height:auto;display:block;border-radius:var(--radius-sm);-o-object-fit:cover;object-fit:cover}.ImageRenderer-module_header{display:flex;margin-bottom:var(--spacing-1);color:var(--color-muted-foreground)}.agenttic .chart-block{--jp-gray-80: var(--color-foreground);margin:var(--spacing-1) 0;position:relative;width:100%;max-width:100%;box-sizing:border-box;overflow:visible;z-index:1000;font-family:var(--font-sans)}.agenttic .chart-block-title{margin:0 0 var(--spacing-2) 0;font-size:var(--text-sm);font-family:inherit;font-weight:var(--font-weight-bold, 700);word-wrap:break-word;white-space:normal;line-height:var(--text-sm--line-height);-webkit-hyphens:auto;hyphens:auto}.agenttic .chart-container{width:100%;height:auto;display:flex;flex-direction:column;align-items:stretch;z-index:1001;overflow:visible;position:relative;box-sizing:border-box}.agenttic .chart-container svg{overflow:visible!important}.agenttic .chart-error{padding:var(--spacing-4);border:1px solid var(--color-error);border-radius:var(--radius-sm);background-color:var(--color-muted);color:var(--color-error);font-size:var(--text-sm)}.agenttic .chart-error strong{display:inline-block;margin-bottom:var(--spacing-1)}.agenttic .chart-error details{margin-top:var(--spacing-2)}.agenttic .chart-error details summary{cursor:pointer;color:var(--color-muted-foreground)}.agenttic .chart-error details pre{margin-top:var(--spacing-2);padding:var(--spacing-2);background-color:var(--color-muted);border-radius:var(--radius-sm);overflow:auto;font-size:var(--text-sm)}.agenttic .chart-tooltip{line-height:1.2;font-size:11px;max-width:120px;min-width:auto;background:#000c;color:#fff;padding:var(--spacing-2) var(--spacing-4) var(--spacing-2) var(--spacing-2);border-radius:var(--radius-sm);box-shadow:var(--shadow-sm)}.agenttic .chart-tooltip-date{font-size:10px;opacity:.8;margin-bottom:var(--spacing-1);color:#fffc;border-bottom:1px solid rgba(255,255,255,.3);padding-bottom:var(--spacing-1)}.agenttic .chart-tooltip-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:var(--spacing-1)}.agenttic .chart-tooltip-row:last-child{margin-bottom:0}.agenttic .chart-tooltip-label{font-weight:var(--font-weight-normal);font-size:11px;color:#fffc;margin-right:var(--spacing-2)}.agenttic .chart-tooltip-value{font-weight:var(--font-weight-semibold);font-size:11px;color:#fff;text-align:right}.agenttic .chart-block .visx-axis-bottom text{font-size:11px}.agenttic .chart-block .visx-axis-bottom text.visx-axis-tick{text-anchor:middle}.agenttic .chart-block .visx-axis-bottom.rotate-labels .visx-axis-tick text{text-anchor:end;transform:rotate(-45deg);transform-origin:right center}.agenttic .chart-block .visx-legend .visx-legend-label{font-size:11px!important;max-width:none!important}.agenttic .chart-block .visx-legend{margin-top:8px;position:relative;z-index:1002}.agenttic .chart-block .visx-legend-item{display:flex;align-items:center;margin:0 8px}.agenttic .chart-block .visx-legend-shape{width:12px;height:12px;margin-right:6px;display:inline-block;flex-shrink:0}.agenttic .chart-block .visx-legend-shape svg{width:100%;height:100%;display:block}.agenttic .chart-block .visx-legend-shape rect{width:100%;height:100%}.agenttic .chart-block .visx-legend-shape circle{r:6;cx:6;cy:6}.agenttic .chart-block .visx-legend>div{display:flex;justify-content:center;align-items:center;flex-wrap:wrap}.agenttic .chart-block .visx-legend-item>div:first-child{margin-right:6px}.agenttic .chart-block .visx-legend [class*=legend] svg{opacity:1;visibility:visible}.agenttic .chart-block .visx-legend svg *{opacity:1;visibility:visible;fill:currentColor}.agenttic div[style*="pointer-events: none"][style*="position: absolute"]{z-index:10000!important}.visx-tooltip{z-index:10000!important;max-width:150px!important;word-wrap:break-word!important;white-space:normal!important}
|