agentic-ui-libs 0.2.0-beta.3 → 0.2.0-beta.4
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.
|
@@ -1,4 +1,257 @@
|
|
|
1
1
|
export declare const executionEventsSample: ({
|
|
2
|
+
type: string;
|
|
3
|
+
data: {
|
|
4
|
+
phase: string;
|
|
5
|
+
id: string;
|
|
6
|
+
parentId: null;
|
|
7
|
+
name: string;
|
|
8
|
+
timestamp: string;
|
|
9
|
+
type: string;
|
|
10
|
+
icon: {
|
|
11
|
+
name: string;
|
|
12
|
+
color: string;
|
|
13
|
+
type: string;
|
|
14
|
+
};
|
|
15
|
+
status: string;
|
|
16
|
+
input?: undefined;
|
|
17
|
+
output?: undefined;
|
|
18
|
+
metadata?: undefined;
|
|
19
|
+
};
|
|
20
|
+
sessionId: string;
|
|
21
|
+
runId: string;
|
|
22
|
+
timestamp: string;
|
|
23
|
+
eventType: string;
|
|
24
|
+
} | {
|
|
25
|
+
type: string;
|
|
26
|
+
data: {
|
|
27
|
+
phase: string;
|
|
28
|
+
id: string;
|
|
29
|
+
parentId: string;
|
|
30
|
+
name: string;
|
|
31
|
+
input: string;
|
|
32
|
+
timestamp: string;
|
|
33
|
+
type: string;
|
|
34
|
+
status: string;
|
|
35
|
+
icon?: undefined;
|
|
36
|
+
output?: undefined;
|
|
37
|
+
metadata?: undefined;
|
|
38
|
+
};
|
|
39
|
+
sessionId: string;
|
|
40
|
+
runId: string;
|
|
41
|
+
timestamp: string;
|
|
42
|
+
eventType: string;
|
|
43
|
+
} | {
|
|
44
|
+
type: string;
|
|
45
|
+
data: {
|
|
46
|
+
phase: string;
|
|
47
|
+
id: string;
|
|
48
|
+
parentId: string;
|
|
49
|
+
name: string;
|
|
50
|
+
output: {
|
|
51
|
+
name: string;
|
|
52
|
+
tool_call_id: string;
|
|
53
|
+
args: {
|
|
54
|
+
reason: string;
|
|
55
|
+
message: string;
|
|
56
|
+
conversationState: string;
|
|
57
|
+
};
|
|
58
|
+
additional_kwargs: {
|
|
59
|
+
llmUsageMetadata: {
|
|
60
|
+
input_tokens: number;
|
|
61
|
+
output_tokens: number;
|
|
62
|
+
total_tokens: number;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
conversationState?: undefined;
|
|
66
|
+
message?: undefined;
|
|
67
|
+
type?: undefined;
|
|
68
|
+
toolName?: undefined;
|
|
69
|
+
input?: undefined;
|
|
70
|
+
output?: undefined;
|
|
71
|
+
metadata?: undefined;
|
|
72
|
+
};
|
|
73
|
+
timestamp: string;
|
|
74
|
+
type: string;
|
|
75
|
+
status: string;
|
|
76
|
+
metadata: {
|
|
77
|
+
usage_metadata: {
|
|
78
|
+
input_tokens: number;
|
|
79
|
+
output_tokens: number;
|
|
80
|
+
total_tokens: number;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
icon?: undefined;
|
|
84
|
+
input?: undefined;
|
|
85
|
+
};
|
|
86
|
+
sessionId: string;
|
|
87
|
+
runId: string;
|
|
88
|
+
timestamp: string;
|
|
89
|
+
eventType: string;
|
|
90
|
+
} | {
|
|
91
|
+
type: string;
|
|
92
|
+
data: {
|
|
93
|
+
phase: string;
|
|
94
|
+
id: string;
|
|
95
|
+
parentId: string;
|
|
96
|
+
name: string;
|
|
97
|
+
input: {
|
|
98
|
+
name: string;
|
|
99
|
+
tool_call_id: string;
|
|
100
|
+
args: {
|
|
101
|
+
reason: string;
|
|
102
|
+
message: string;
|
|
103
|
+
conversationState: string;
|
|
104
|
+
};
|
|
105
|
+
additional_kwargs: {
|
|
106
|
+
llmUsageMetadata: {
|
|
107
|
+
input_tokens: number;
|
|
108
|
+
output_tokens: number;
|
|
109
|
+
total_tokens: number;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
conversationState?: undefined;
|
|
113
|
+
message?: undefined;
|
|
114
|
+
};
|
|
115
|
+
timestamp: string;
|
|
116
|
+
type: string;
|
|
117
|
+
status: string;
|
|
118
|
+
icon?: undefined;
|
|
119
|
+
output?: undefined;
|
|
120
|
+
metadata?: undefined;
|
|
121
|
+
};
|
|
122
|
+
sessionId: string;
|
|
123
|
+
runId: string;
|
|
124
|
+
timestamp: string;
|
|
125
|
+
eventType: string;
|
|
126
|
+
} | {
|
|
127
|
+
type: string;
|
|
128
|
+
data: {
|
|
129
|
+
phase: string;
|
|
130
|
+
id: string;
|
|
131
|
+
parentId: string;
|
|
132
|
+
name: string;
|
|
133
|
+
input: {
|
|
134
|
+
conversationState: string;
|
|
135
|
+
message: string;
|
|
136
|
+
name?: undefined;
|
|
137
|
+
tool_call_id?: undefined;
|
|
138
|
+
args?: undefined;
|
|
139
|
+
additional_kwargs?: undefined;
|
|
140
|
+
};
|
|
141
|
+
timestamp: string;
|
|
142
|
+
type: string;
|
|
143
|
+
status: string;
|
|
144
|
+
icon?: undefined;
|
|
145
|
+
output?: undefined;
|
|
146
|
+
metadata?: undefined;
|
|
147
|
+
};
|
|
148
|
+
sessionId: string;
|
|
149
|
+
runId: string;
|
|
150
|
+
timestamp: string;
|
|
151
|
+
eventType: string;
|
|
152
|
+
} | {
|
|
153
|
+
type: string;
|
|
154
|
+
data: {
|
|
155
|
+
phase: string;
|
|
156
|
+
id: string;
|
|
157
|
+
parentId: string;
|
|
158
|
+
name: string;
|
|
159
|
+
output: {
|
|
160
|
+
conversationState: string;
|
|
161
|
+
message: string;
|
|
162
|
+
name?: undefined;
|
|
163
|
+
tool_call_id?: undefined;
|
|
164
|
+
args?: undefined;
|
|
165
|
+
additional_kwargs?: undefined;
|
|
166
|
+
type?: undefined;
|
|
167
|
+
toolName?: undefined;
|
|
168
|
+
input?: undefined;
|
|
169
|
+
output?: undefined;
|
|
170
|
+
metadata?: undefined;
|
|
171
|
+
};
|
|
172
|
+
timestamp: string;
|
|
173
|
+
type: string;
|
|
174
|
+
status: string;
|
|
175
|
+
icon?: undefined;
|
|
176
|
+
input?: undefined;
|
|
177
|
+
metadata?: undefined;
|
|
178
|
+
};
|
|
179
|
+
sessionId: string;
|
|
180
|
+
runId: string;
|
|
181
|
+
timestamp: string;
|
|
182
|
+
eventType: string;
|
|
183
|
+
} | {
|
|
184
|
+
type: string;
|
|
185
|
+
data: {
|
|
186
|
+
phase: string;
|
|
187
|
+
id: string;
|
|
188
|
+
parentId: string;
|
|
189
|
+
name: string;
|
|
190
|
+
output: {
|
|
191
|
+
type: string;
|
|
192
|
+
toolName: string;
|
|
193
|
+
input: {
|
|
194
|
+
reason: string;
|
|
195
|
+
message: string;
|
|
196
|
+
conversationState: string;
|
|
197
|
+
};
|
|
198
|
+
output: {
|
|
199
|
+
conversationState: string;
|
|
200
|
+
message: string;
|
|
201
|
+
};
|
|
202
|
+
metadata: {
|
|
203
|
+
type: string;
|
|
204
|
+
eventType: string;
|
|
205
|
+
eventData: {
|
|
206
|
+
name: string;
|
|
207
|
+
mode: string;
|
|
208
|
+
condition: string;
|
|
209
|
+
to: string;
|
|
210
|
+
type: string;
|
|
211
|
+
_id: string;
|
|
212
|
+
};
|
|
213
|
+
isToolEvent: boolean;
|
|
214
|
+
isOptionalParameter: boolean;
|
|
215
|
+
};
|
|
216
|
+
name?: undefined;
|
|
217
|
+
tool_call_id?: undefined;
|
|
218
|
+
args?: undefined;
|
|
219
|
+
additional_kwargs?: undefined;
|
|
220
|
+
conversationState?: undefined;
|
|
221
|
+
message?: undefined;
|
|
222
|
+
};
|
|
223
|
+
timestamp: string;
|
|
224
|
+
type: string;
|
|
225
|
+
status: string;
|
|
226
|
+
icon?: undefined;
|
|
227
|
+
input?: undefined;
|
|
228
|
+
metadata?: undefined;
|
|
229
|
+
};
|
|
230
|
+
sessionId: string;
|
|
231
|
+
runId: string;
|
|
232
|
+
timestamp: string;
|
|
233
|
+
eventType: string;
|
|
234
|
+
} | {
|
|
235
|
+
type: string;
|
|
236
|
+
data: {
|
|
237
|
+
phase: string;
|
|
238
|
+
id: string;
|
|
239
|
+
parentId: null;
|
|
240
|
+
name: string;
|
|
241
|
+
timestamp: string;
|
|
242
|
+
type: string;
|
|
243
|
+
status: string;
|
|
244
|
+
icon?: undefined;
|
|
245
|
+
input?: undefined;
|
|
246
|
+
output?: undefined;
|
|
247
|
+
metadata?: undefined;
|
|
248
|
+
};
|
|
249
|
+
sessionId: string;
|
|
250
|
+
runId: string;
|
|
251
|
+
timestamp: string;
|
|
252
|
+
eventType: string;
|
|
253
|
+
})[];
|
|
254
|
+
export declare const executionEventsSamples: ({
|
|
2
255
|
type: string;
|
|
3
256
|
data: {
|
|
4
257
|
phase: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executionEventsSample.d.ts","sourceRoot":"","sources":["../../src/data/executionEventsSample.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"executionEventsSample.d.ts","sourceRoot":"","sources":["../../src/data/executionEventsSample.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAiNjC,CAAA;AAGD,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA0gDlC,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -27310,7 +27310,7 @@ function e0({
|
|
|
27310
27310
|
}, d = () => {
|
|
27311
27311
|
switch (e.status) {
|
|
27312
27312
|
case "completed":
|
|
27313
|
-
return /* @__PURE__ */ p.jsx("svg", { className: "flex-shrink-0", width: "12", height: "12", viewBox: "0 0 12 12", fill: "none", children: /* @__PURE__ */ p.jsx("path", {
|
|
27313
|
+
return /* @__PURE__ */ p.jsx("svg", { className: "flex-shrink-0", width: "12", height: "12", viewBox: "0 0 12 12", fill: "none", children: /* @__PURE__ */ p.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6 0.5C2.96243 0.5 0.5 2.96243 0.5 6C0.5 9.03757 2.96243 11.5 6 11.5C9.03757 11.5 11.5 9.03757 11.5 6C11.5 2.96243 9.03757 0.5 6 0.5ZM8.60355 4.85355C8.79882 4.65829 8.79882 4.34171 8.60355 4.14645C8.40829 3.95118 8.09171 3.95118 7.89645 4.14645L5.25 6.79289L4.10355 5.64645C3.90829 5.45118 3.59171 5.45118 3.39645 5.64645C3.20118 5.84171 3.20118 6.15829 3.39645 6.35355L4.89645 7.85355C5.09171 8.04882 5.40829 8.04882 5.60355 7.85355L8.60355 4.85355Z", fill: "#17B26A" }) });
|
|
27314
27314
|
case "failed":
|
|
27315
27315
|
return /* @__PURE__ */ p.jsx("div", { className: "w-[12px] h-[12px] rounded-full bg-red-500" });
|
|
27316
27316
|
case "running":
|
|
@@ -27685,7 +27685,7 @@ const jW = ms(({
|
|
|
27685
27685
|
onClick: () => g(A.runId),
|
|
27686
27686
|
title: u.has(A.runId) ? "Collapse run" : "Expand run",
|
|
27687
27687
|
children: [
|
|
27688
|
-
/* @__PURE__ */ p.jsx("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", className: "flex-shrink-0", children: /* @__PURE__ */ p.jsx("path", {
|
|
27688
|
+
/* @__PURE__ */ p.jsx("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", className: "flex-shrink-0", children: /* @__PURE__ */ p.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.8277 1.33398C11.3643 1.33398 11.8072 1.33396 12.168 1.36343C12.5428 1.39405 12.8872 1.45978 13.2108 1.62463C13.7125 1.8803 14.1205 2.28825 14.3762 2.79001C14.541 3.11356 14.6067 3.45803 14.6374 3.83276C14.6668 4.19356 14.6668 4.63646 14.6668 5.1731V9.0235C14.6668 9.47003 14.6668 9.83861 14.6462 10.1404C14.6249 10.4532 14.5792 10.7426 14.4638 11.0211C14.1932 11.6746 13.674 12.1937 13.0206 12.4643C12.7421 12.5797 12.4527 12.6254 12.1399 12.6467C11.8381 12.6673 11.4695 12.6673 11.023 12.6673H11.0002C10.6424 12.6673 10.5714 12.6715 10.5136 12.6852C10.4129 12.7089 10.3191 12.7558 10.2397 12.8221C10.1941 12.8602 10.1481 12.9145 9.9335 13.2007L8.94888 14.5135C8.88665 14.5965 8.81628 14.6904 8.74857 14.7657C8.6739 14.8487 8.54979 14.971 8.36264 15.0438C8.1295 15.1344 7.87083 15.1344 7.6377 15.0438C7.45054 14.971 7.32641 14.8487 7.25174 14.7657C7.18403 14.6904 7.11368 14.5965 7.05145 14.5135L6.06683 13.2007C5.85221 12.9145 5.80624 12.8602 5.76065 12.8221C5.68119 12.7558 5.58739 12.7089 5.48666 12.6852C5.42887 12.6715 5.35786 12.6673 5.00015 12.6673H4.9773C4.53078 12.6673 4.16221 12.6673 3.86047 12.6467C3.54762 12.6254 3.25822 12.5797 2.97968 12.4643C2.32627 12.1937 1.80712 11.6746 1.53647 11.0211C1.42109 10.7426 1.37541 10.4532 1.35407 10.1404C1.33348 9.83861 1.33349 9.47003 1.3335 9.0235V5.17313C1.33349 4.63648 1.33347 4.19356 1.36295 3.83276C1.39356 3.45803 1.45929 3.11356 1.62415 2.79001C1.87981 2.28825 2.28776 1.8803 2.78952 1.62463C3.11308 1.45978 3.45755 1.39405 3.83228 1.36343C4.19307 1.33396 4.63599 1.33398 5.17264 1.33398H10.8277ZM10.4715 4.52924C10.2112 4.2689 9.78906 4.26889 9.52872 4.52924L6.66681 7.39114V5.6673C6.6668 5.29912 6.36834 5.00064 6.00015 5.00064C5.63197 5.00064 5.33351 5.29912 5.3335 5.6673V9.00064C5.3335 9.17745 5.40373 9.34702 5.52875 9.47205C5.65377 9.59707 5.82334 9.6673 6.00015 9.6673H9.3335L9.35068 9.66708C9.71092 9.65796 10.0002 9.36308 10.0002 9.00064C10.0001 8.63821 9.71092 8.34332 9.35068 8.3342L9.3335 8.33398H7.60962L10.4715 5.47205C10.7319 5.2117 10.7319 4.78958 10.4715 4.52924Z", fill: "#079455" }) }),
|
|
27689
27689
|
/* @__PURE__ */ p.jsx("span", { className: "flex-1 text-xs text-gray-900 truncate", children: A.userInput || `Run ${A.runId}` }),
|
|
27690
27690
|
/* @__PURE__ */ p.jsx(jr, { className: `w-[16px] h-[16px] text-gray-400 flex-shrink-0 transition-transform ${u.has(A.runId) ? "rotate-180" : ""}` })
|
|
27691
27691
|
]
|
|
@@ -27702,7 +27702,7 @@ const jW = ms(({
|
|
|
27702
27702
|
}
|
|
27703
27703
|
) }, R.id)) }),
|
|
27704
27704
|
A.finalOutput && /* @__PURE__ */ p.jsxs("div", { className: "p-[8px] bg-gray-50 flex items-center gap-[8px] w-full border-t border-gray-200", children: [
|
|
27705
|
-
/* @__PURE__ */ p.jsx("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", className: "flex-shrink-0", children: /* @__PURE__ */ p.jsx("path", {
|
|
27705
|
+
/* @__PURE__ */ p.jsx("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", className: "flex-shrink-0", children: /* @__PURE__ */ p.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.8277 1.33398C11.3643 1.33398 11.8072 1.33396 12.168 1.36343C12.5428 1.39405 12.8872 1.45978 13.2108 1.62463C13.7125 1.8803 14.1205 2.28825 14.3762 2.79001C14.541 3.11356 14.6067 3.45803 14.6374 3.83276C14.6668 4.19356 14.6668 4.63646 14.6668 5.1731V9.0235C14.6668 9.47003 14.6668 9.83861 14.6462 10.1404C14.6249 10.4532 14.5792 10.7426 14.4638 11.0211C14.1932 11.6746 13.674 12.1937 13.0206 12.4643C12.7421 12.5797 12.4527 12.6254 12.1399 12.6467C11.8381 12.6673 11.4695 12.6673 11.023 12.6673H11.0002C10.6424 12.6673 10.5714 12.6715 10.5136 12.6852C10.4129 12.7089 10.3191 12.7558 10.2397 12.8221C10.1941 12.8602 10.1481 12.9145 9.9335 13.2007L8.94888 14.5135C8.88665 14.5965 8.81628 14.6904 8.74857 14.7657C8.6739 14.8487 8.54979 14.971 8.36264 15.0438C8.1295 15.1344 7.87083 15.1344 7.6377 15.0438C7.45054 14.971 7.32641 14.8487 7.25174 14.7657C7.18403 14.6904 7.11368 14.5965 7.05145 14.5135L6.06683 13.2007C5.85221 12.9145 5.80624 12.8602 5.76065 12.8221C5.68119 12.7558 5.58739 12.7089 5.48666 12.6852C5.42887 12.6715 5.35786 12.6673 5.00015 12.6673H4.9773C4.53078 12.6673 4.16221 12.6673 3.86047 12.6467C3.54762 12.6254 3.25822 12.5797 2.97968 12.4643C2.32627 12.1937 1.80712 11.6746 1.53647 11.0211C1.42109 10.7426 1.37541 10.4532 1.35407 10.1404C1.33348 9.83861 1.33349 9.47003 1.3335 9.0235V5.17313C1.33349 4.63648 1.33347 4.19356 1.36295 3.83276C1.39356 3.45803 1.45929 3.11356 1.62415 2.79001C1.87981 2.28825 2.28776 1.8803 2.78952 1.62463C3.11308 1.45978 3.45755 1.39405 3.83228 1.36343C4.19307 1.33396 4.63599 1.33398 5.17264 1.33398H10.8277ZM6.66653 4.33398C6.29835 4.334 5.99988 4.63246 5.99988 5.00064C5.99988 5.36882 6.29835 5.66729 6.66653 5.6673H8.39041L5.52847 8.52924C5.26813 8.78958 5.26813 9.2117 5.52847 9.47205C5.78882 9.73239 6.21093 9.73239 6.47128 9.47205L9.33322 6.61011V8.33398C9.33323 8.70217 9.6317 9.00064 9.99988 9.00064C10.3681 9.00064 10.6665 8.70217 10.6665 8.33398V5.00064C10.6665 4.63821 10.3773 4.34333 10.0171 4.3342L9.99988 4.33398H6.66653Z", fill: "#155EEF" }) }),
|
|
27706
27706
|
/* @__PURE__ */ p.jsx("span", { className: "flex-1 text-xs text-gray-900 truncate", title: A.finalOutput, children: A.finalOutput }),
|
|
27707
27707
|
/* @__PURE__ */ p.jsxs("div", { className: "flex items-center gap-[8px] flex-shrink-0", children: [
|
|
27708
27708
|
A.duration && /* @__PURE__ */ p.jsxs("div", { className: "flex items-center gap-[4px]", children: [
|