@deep-eye/core 1.2.49 → 1.2.54

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.
Files changed (52) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/dist/components/chat/components/ChatActionbar.vue.d.ts +27 -2
  3. package/dist/components/chat/components/ChatActionbar.vue.d.ts.map +1 -1
  4. package/dist/components/chat/components/ChatMessage.vue.d.ts +5 -1
  5. package/dist/components/chat/components/ChatMessage.vue.d.ts.map +1 -1
  6. package/dist/components/chat/components/ChatReasoning.vue.d.ts +2 -14
  7. package/dist/components/chat/components/ChatReasoning.vue.d.ts.map +1 -1
  8. package/dist/components/chat/components/ChatToolGroup.vue.d.ts +1 -0
  9. package/dist/components/chat/components/ChatToolGroup.vue.d.ts.map +1 -1
  10. package/dist/components/chat/components/CodeToolRenderer.vue.d.ts +3 -1
  11. package/dist/components/chat/components/CodeToolRenderer.vue.d.ts.map +1 -1
  12. package/dist/components/chat/components/ConversationList.vue.d.ts +8 -1
  13. package/dist/components/chat/components/ConversationList.vue.d.ts.map +1 -1
  14. package/dist/components/chat/components/FileReadToolRenderer.vue.d.ts +11 -0
  15. package/dist/components/chat/components/FileReadToolRenderer.vue.d.ts.map +1 -0
  16. package/dist/components/chat/components/MessageBubble.vue.d.ts +6 -1
  17. package/dist/components/chat/components/MessageBubble.vue.d.ts.map +1 -1
  18. package/dist/components/chat/components/ProcessResultCard.vue.d.ts +30 -0
  19. package/dist/components/chat/components/ProcessResultCard.vue.d.ts.map +1 -0
  20. package/dist/components/chat/components/ToolCallPart.vue.d.ts +1 -0
  21. package/dist/components/chat/components/ToolCallPart.vue.d.ts.map +1 -1
  22. package/dist/components/chat/components/index.d.ts +2 -0
  23. package/dist/components/chat/components/index.d.ts.map +1 -1
  24. package/dist/components/chat/harness/DisclosureRow.vue.d.ts +34 -0
  25. package/dist/components/chat/harness/DisclosureRow.vue.d.ts.map +1 -0
  26. package/dist/components/chat/harness/ReadBlock.vue.d.ts +19 -0
  27. package/dist/components/chat/harness/ReadBlock.vue.d.ts.map +1 -0
  28. package/dist/components/chat/harness/StateDot.vue.d.ts +11 -0
  29. package/dist/components/chat/harness/StateDot.vue.d.ts.map +1 -0
  30. package/dist/components/chat/harness/TerminalBlock.vue.d.ts +16 -0
  31. package/dist/components/chat/harness/TerminalBlock.vue.d.ts.map +1 -0
  32. package/dist/components/chat/harness/Tooltip.vue.d.ts +25 -0
  33. package/dist/components/chat/harness/Tooltip.vue.d.ts.map +1 -0
  34. package/dist/components/chat/harness/icons.d.ts +555 -0
  35. package/dist/components/chat/harness/icons.d.ts.map +1 -0
  36. package/dist/components/chat/harness/index.d.ts +7 -0
  37. package/dist/components/chat/harness/index.d.ts.map +1 -0
  38. package/dist/components/chat/mdoc/AskUserForm.vue.d.ts +1 -0
  39. package/dist/components/chat/mdoc/AskUserForm.vue.d.ts.map +1 -1
  40. package/dist/components/chat/mdoc/builtInRegistry.d.ts.map +1 -1
  41. package/dist/components/chat/messageChrome.d.ts +10 -0
  42. package/dist/components/chat/messageChrome.d.ts.map +1 -0
  43. package/dist/components/chat/responseStream.d.ts +3 -1
  44. package/dist/components/chat/responseStream.d.ts.map +1 -1
  45. package/dist/components/chat/toolLabels.d.ts +12 -1
  46. package/dist/components/chat/toolLabels.d.ts.map +1 -1
  47. package/dist/components/chat/types.d.ts +30 -5
  48. package/dist/components/chat/types.d.ts.map +1 -1
  49. package/dist/index.cjs +156 -223
  50. package/dist/index.js +57073 -56473
  51. package/dist/style.css +1 -1
  52. package/package.json +1 -1
@@ -0,0 +1,555 @@
1
+ /** Ported from DeepSeek Harness `@deepseek-ai/dsh-client-ui-primitives` icons (MIT). */
2
+ import { type PropType } from 'vue';
3
+ type IconClass = string | Record<string, boolean> | Array<string | Record<string, boolean>> | undefined;
4
+ /** Harness `IconThinkOutline14` */
5
+ export declare const IconThinkOutline14: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
6
+ size: {
7
+ type: PropType<number>;
8
+ default: number;
9
+ };
10
+ class: {
11
+ type: PropType<IconClass>;
12
+ default: undefined;
13
+ };
14
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
15
+ [key: string]: any;
16
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
17
+ size: {
18
+ type: PropType<number>;
19
+ default: number;
20
+ };
21
+ class: {
22
+ type: PropType<IconClass>;
23
+ default: undefined;
24
+ };
25
+ }>> & Readonly<{}>, {
26
+ size: number;
27
+ class: IconClass;
28
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
29
+ /** Harness `IconChevronDownOutline14` */
30
+ export declare const IconChevronDownOutline14: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
31
+ size: {
32
+ type: PropType<number>;
33
+ default: number;
34
+ };
35
+ class: {
36
+ type: PropType<IconClass>;
37
+ default: undefined;
38
+ };
39
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
40
+ [key: string]: any;
41
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
42
+ size: {
43
+ type: PropType<number>;
44
+ default: number;
45
+ };
46
+ class: {
47
+ type: PropType<IconClass>;
48
+ default: undefined;
49
+ };
50
+ }>> & Readonly<{}>, {
51
+ size: number;
52
+ class: IconClass;
53
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
54
+ /** Harness `IconSearchOutline16` */
55
+ export declare const IconSearchOutline16: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
56
+ size: {
57
+ type: PropType<number>;
58
+ default: number;
59
+ };
60
+ class: {
61
+ type: PropType<IconClass>;
62
+ default: undefined;
63
+ };
64
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
65
+ [key: string]: any;
66
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
67
+ size: {
68
+ type: PropType<number>;
69
+ default: number;
70
+ };
71
+ class: {
72
+ type: PropType<IconClass>;
73
+ default: undefined;
74
+ };
75
+ }>> & Readonly<{}>, {
76
+ size: number;
77
+ class: IconClass;
78
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
79
+ /** Harness `IconBrowseOutline16` */
80
+ export declare const IconBrowseOutline16: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
81
+ size: {
82
+ type: PropType<number>;
83
+ default: number;
84
+ };
85
+ class: {
86
+ type: PropType<IconClass>;
87
+ default: undefined;
88
+ };
89
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
90
+ [key: string]: any;
91
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
92
+ size: {
93
+ type: PropType<number>;
94
+ default: number;
95
+ };
96
+ class: {
97
+ type: PropType<IconClass>;
98
+ default: undefined;
99
+ };
100
+ }>> & Readonly<{}>, {
101
+ size: number;
102
+ class: IconClass;
103
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
104
+ /** Harness `IconEditOutline16` */
105
+ export declare const IconEditOutline16: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
106
+ size: {
107
+ type: PropType<number>;
108
+ default: number;
109
+ };
110
+ class: {
111
+ type: PropType<IconClass>;
112
+ default: undefined;
113
+ };
114
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
115
+ [key: string]: any;
116
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
117
+ size: {
118
+ type: PropType<number>;
119
+ default: number;
120
+ };
121
+ class: {
122
+ type: PropType<IconClass>;
123
+ default: undefined;
124
+ };
125
+ }>> & Readonly<{}>, {
126
+ size: number;
127
+ class: IconClass;
128
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
129
+ /** Harness `IconCodeOutline16` */
130
+ export declare const IconCodeOutline16: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
131
+ size: {
132
+ type: PropType<number>;
133
+ default: number;
134
+ };
135
+ class: {
136
+ type: PropType<IconClass>;
137
+ default: undefined;
138
+ };
139
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
140
+ [key: string]: any;
141
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
142
+ size: {
143
+ type: PropType<number>;
144
+ default: number;
145
+ };
146
+ class: {
147
+ type: PropType<IconClass>;
148
+ default: undefined;
149
+ };
150
+ }>> & Readonly<{}>, {
151
+ size: number;
152
+ class: IconClass;
153
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
154
+ /** Harness `IconApiOutline14` */
155
+ export declare const IconApiOutline14: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
156
+ size: {
157
+ type: PropType<number>;
158
+ default: number;
159
+ };
160
+ class: {
161
+ type: PropType<IconClass>;
162
+ default: undefined;
163
+ };
164
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
165
+ [key: string]: any;
166
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
167
+ size: {
168
+ type: PropType<number>;
169
+ default: number;
170
+ };
171
+ class: {
172
+ type: PropType<IconClass>;
173
+ default: undefined;
174
+ };
175
+ }>> & Readonly<{}>, {
176
+ size: number;
177
+ class: IconClass;
178
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
179
+ /** Harness `IconSparkle16` */
180
+ export declare const IconSparkle16: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
181
+ size: {
182
+ type: PropType<number>;
183
+ default: number;
184
+ };
185
+ class: {
186
+ type: PropType<IconClass>;
187
+ default: undefined;
188
+ };
189
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
190
+ [key: string]: any;
191
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
192
+ size: {
193
+ type: PropType<number>;
194
+ default: number;
195
+ };
196
+ class: {
197
+ type: PropType<IconClass>;
198
+ default: undefined;
199
+ };
200
+ }>> & Readonly<{}>, {
201
+ size: number;
202
+ class: IconClass;
203
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
204
+ /** Harness `IconQuestionOutline14` */
205
+ export declare const IconQuestionOutline14: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
206
+ size: {
207
+ type: PropType<number>;
208
+ default: number;
209
+ };
210
+ class: {
211
+ type: PropType<IconClass>;
212
+ default: undefined;
213
+ };
214
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
215
+ [key: string]: any;
216
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
217
+ size: {
218
+ type: PropType<number>;
219
+ default: number;
220
+ };
221
+ class: {
222
+ type: PropType<IconClass>;
223
+ default: undefined;
224
+ };
225
+ }>> & Readonly<{}>, {
226
+ size: number;
227
+ class: IconClass;
228
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
229
+ /** Harness `IconGlobeOutline14` */
230
+ export declare const IconGlobeOutline14: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
231
+ size: {
232
+ type: PropType<number>;
233
+ default: number;
234
+ };
235
+ class: {
236
+ type: PropType<IconClass>;
237
+ default: undefined;
238
+ };
239
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
240
+ [key: string]: any;
241
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
242
+ size: {
243
+ type: PropType<number>;
244
+ default: number;
245
+ };
246
+ class: {
247
+ type: PropType<IconClass>;
248
+ default: undefined;
249
+ };
250
+ }>> & Readonly<{}>, {
251
+ size: number;
252
+ class: IconClass;
253
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
254
+ /** Harness `IconSkillOutline16` */
255
+ export declare const IconSkillOutline16: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
256
+ size: {
257
+ type: PropType<number>;
258
+ default: number;
259
+ };
260
+ class: {
261
+ type: PropType<IconClass>;
262
+ default: undefined;
263
+ };
264
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
265
+ [key: string]: any;
266
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
267
+ size: {
268
+ type: PropType<number>;
269
+ default: number;
270
+ };
271
+ class: {
272
+ type: PropType<IconClass>;
273
+ default: undefined;
274
+ };
275
+ }>> & Readonly<{}>, {
276
+ size: number;
277
+ class: IconClass;
278
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
279
+ /** Harness `IconChecklistOutline14` */
280
+ export declare const IconChecklistOutline14: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
281
+ size: {
282
+ type: PropType<number>;
283
+ default: number;
284
+ };
285
+ class: {
286
+ type: PropType<IconClass>;
287
+ default: undefined;
288
+ };
289
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
290
+ [key: string]: any;
291
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
292
+ size: {
293
+ type: PropType<number>;
294
+ default: number;
295
+ };
296
+ class: {
297
+ type: PropType<IconClass>;
298
+ default: undefined;
299
+ };
300
+ }>> & Readonly<{}>, {
301
+ size: number;
302
+ class: IconClass;
303
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
304
+ /** Harness `IconCopyOutline16` */
305
+ export declare const IconCopyOutline16: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
306
+ size: {
307
+ type: PropType<number>;
308
+ default: number;
309
+ };
310
+ class: {
311
+ type: PropType<IconClass>;
312
+ default: undefined;
313
+ };
314
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
315
+ [key: string]: any;
316
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
317
+ size: {
318
+ type: PropType<number>;
319
+ default: number;
320
+ };
321
+ class: {
322
+ type: PropType<IconClass>;
323
+ default: undefined;
324
+ };
325
+ }>> & Readonly<{}>, {
326
+ size: number;
327
+ class: IconClass;
328
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
329
+ /** Harness `IconWarningOutline16` */
330
+ export declare const IconWarningOutline16: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
331
+ size: {
332
+ type: PropType<number>;
333
+ default: number;
334
+ };
335
+ class: {
336
+ type: PropType<IconClass>;
337
+ default: undefined;
338
+ };
339
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
340
+ [key: string]: any;
341
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
342
+ size: {
343
+ type: PropType<number>;
344
+ default: number;
345
+ };
346
+ class: {
347
+ type: PropType<IconClass>;
348
+ default: undefined;
349
+ };
350
+ }>> & Readonly<{}>, {
351
+ size: number;
352
+ class: IconClass;
353
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
354
+ /** Harness `IconCheckOutline14` */
355
+ export declare const IconCheckOutline14: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
356
+ size: {
357
+ type: PropType<number>;
358
+ default: number;
359
+ };
360
+ class: {
361
+ type: PropType<IconClass>;
362
+ default: undefined;
363
+ };
364
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
365
+ [key: string]: any;
366
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
367
+ size: {
368
+ type: PropType<number>;
369
+ default: number;
370
+ };
371
+ class: {
372
+ type: PropType<IconClass>;
373
+ default: undefined;
374
+ };
375
+ }>> & Readonly<{}>, {
376
+ size: number;
377
+ class: IconClass;
378
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
379
+ /** Harness `IconLikeOutline16` */
380
+ export declare const IconLikeOutline16: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
381
+ size: {
382
+ type: PropType<number>;
383
+ default: number;
384
+ };
385
+ class: {
386
+ type: PropType<IconClass>;
387
+ default: undefined;
388
+ };
389
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
390
+ [key: string]: any;
391
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
392
+ size: {
393
+ type: PropType<number>;
394
+ default: number;
395
+ };
396
+ class: {
397
+ type: PropType<IconClass>;
398
+ default: undefined;
399
+ };
400
+ }>> & Readonly<{}>, {
401
+ size: number;
402
+ class: IconClass;
403
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
404
+ /** Harness `IconDislikeOutline16` */
405
+ export declare const IconDislikeOutline16: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
406
+ size: {
407
+ type: PropType<number>;
408
+ default: number;
409
+ };
410
+ class: {
411
+ type: PropType<IconClass>;
412
+ default: undefined;
413
+ };
414
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
415
+ [key: string]: any;
416
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
417
+ size: {
418
+ type: PropType<number>;
419
+ default: number;
420
+ };
421
+ class: {
422
+ type: PropType<IconClass>;
423
+ default: undefined;
424
+ };
425
+ }>> & Readonly<{}>, {
426
+ size: number;
427
+ class: IconClass;
428
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
429
+ /** Harness `IconBranchOutline16` */
430
+ export declare const IconBranchOutline16: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
431
+ size: {
432
+ type: PropType<number>;
433
+ default: number;
434
+ };
435
+ class: {
436
+ type: PropType<IconClass>;
437
+ default: undefined;
438
+ };
439
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
440
+ [key: string]: any;
441
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
442
+ size: {
443
+ type: PropType<number>;
444
+ default: number;
445
+ };
446
+ class: {
447
+ type: PropType<IconClass>;
448
+ default: undefined;
449
+ };
450
+ }>> & Readonly<{}>, {
451
+ size: number;
452
+ class: IconClass;
453
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
454
+ /** Harness `IconCheckOutline16` */
455
+ export declare const IconCheckOutline16: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
456
+ size: {
457
+ type: PropType<number>;
458
+ default: number;
459
+ };
460
+ class: {
461
+ type: PropType<IconClass>;
462
+ default: undefined;
463
+ };
464
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
465
+ [key: string]: any;
466
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
467
+ size: {
468
+ type: PropType<number>;
469
+ default: number;
470
+ };
471
+ class: {
472
+ type: PropType<IconClass>;
473
+ default: undefined;
474
+ };
475
+ }>> & Readonly<{}>, {
476
+ size: number;
477
+ class: IconClass;
478
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
479
+ /** Harness `IconChevronLeftOutline14` */
480
+ export declare const IconChevronLeftOutline14: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
481
+ size: {
482
+ type: PropType<number>;
483
+ default: number;
484
+ };
485
+ class: {
486
+ type: PropType<IconClass>;
487
+ default: undefined;
488
+ };
489
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
490
+ [key: string]: any;
491
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
492
+ size: {
493
+ type: PropType<number>;
494
+ default: number;
495
+ };
496
+ class: {
497
+ type: PropType<IconClass>;
498
+ default: undefined;
499
+ };
500
+ }>> & Readonly<{}>, {
501
+ size: number;
502
+ class: IconClass;
503
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
504
+ /** Harness `IconChevronRightOutline14` */
505
+ export declare const IconChevronRightOutline14: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
506
+ size: {
507
+ type: PropType<number>;
508
+ default: number;
509
+ };
510
+ class: {
511
+ type: PropType<IconClass>;
512
+ default: undefined;
513
+ };
514
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
515
+ [key: string]: any;
516
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
517
+ size: {
518
+ type: PropType<number>;
519
+ default: number;
520
+ };
521
+ class: {
522
+ type: PropType<IconClass>;
523
+ default: undefined;
524
+ };
525
+ }>> & Readonly<{}>, {
526
+ size: number;
527
+ class: IconClass;
528
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
529
+ /** Harness `IconCloseOutline16` */
530
+ export declare const IconCloseOutline16: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
531
+ size: {
532
+ type: PropType<number>;
533
+ default: number;
534
+ };
535
+ class: {
536
+ type: PropType<IconClass>;
537
+ default: undefined;
538
+ };
539
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
540
+ [key: string]: any;
541
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
542
+ size: {
543
+ type: PropType<number>;
544
+ default: number;
545
+ };
546
+ class: {
547
+ type: PropType<IconClass>;
548
+ default: undefined;
549
+ };
550
+ }>> & Readonly<{}>, {
551
+ size: number;
552
+ class: IconClass;
553
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
554
+ export {};
555
+ //# sourceMappingURL=icons.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../../src/components/chat/harness/icons.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ export { default as DisclosureRow } from './DisclosureRow.vue';
2
+ export { default as StateDot } from './StateDot.vue';
3
+ export { default as TerminalBlock } from './TerminalBlock.vue';
4
+ export { default as ReadBlock } from './ReadBlock.vue';
5
+ export { default as Tooltip } from './Tooltip.vue';
6
+ export { IconApiOutline14, IconBranchOutline16, IconBrowseOutline16, IconCheckOutline14, IconCheckOutline16, IconChecklistOutline14, IconChevronDownOutline14, IconChevronLeftOutline14, IconChevronRightOutline14, IconCloseOutline16, IconCodeOutline16, IconCopyOutline16, IconDislikeOutline16, IconEditOutline16, IconGlobeOutline14, IconLikeOutline16, IconQuestionOutline14, IconSearchOutline16, IconSkillOutline16, IconSparkle16, IconThinkOutline14, IconWarningOutline16, } from './icons';
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/chat/harness/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAC9D,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AACpD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAA;AAC9D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAA;AACtD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,eAAe,CAAA;AAClD,OAAO,EACL,gBAAgB,EAChB,mBAAmB,EACnB,mBAAmB,EACnB,kBAAkB,EAClB,kBAAkB,EAClB,sBAAsB,EACtB,wBAAwB,EACxB,wBAAwB,EACxB,yBAAyB,EACzB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,oBAAoB,EACpB,iBAAiB,EACjB,kBAAkB,EAClB,iBAAiB,EACjB,qBAAqB,EACrB,mBAAmB,EACnB,kBAAkB,EAClB,aAAa,EACb,kBAAkB,EAClB,oBAAoB,GACrB,MAAM,SAAS,CAAA"}
@@ -1,3 +1,4 @@
1
+ import '../harnessProcessTokens.css';
1
2
  import type { ConversationUiAction } from '../types';
2
3
  import type { MdocComponentNode } from './parser';
3
4
  type AskFormDraft = {
@@ -1 +1 @@
1
- {"version":3,"file":"AskUserForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/chat/mdoc/AskUserForm.vue"],"names":[],"mappings":"AAmuBA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAA;AACpD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAA;AAEjD,KAAK,YAAY,GAAG;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB,CAAA;AAID,KAAK,WAAW,GAAG;IACf,IAAI,EAAE,iBAAiB,CAAA;IACvB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,cAAc,CAAC,EAAE,OAAO,CAAA;CACzB,CAAC;AAsiBJ,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;mBAziBE,MAAM;mBACN,MAAM;oBACL,OAAO;6EA2iB1B,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
1
+ {"version":3,"file":"AskUserForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/chat/mdoc/AskUserForm.vue"],"names":[],"mappings":"AAqyBA,OAAO,6BAA6B,CAAA;AACpC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAA;AACpD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAA;AAEjD,KAAK,YAAY,GAAG;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB,CAAA;AAID,KAAK,WAAW,GAAG;IACf,IAAI,EAAE,iBAAiB,CAAA;IACvB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,cAAc,CAAC,EAAE,OAAO,CAAA;CACzB,CAAC;AA2nBJ,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;mBA9nBE,MAAM;mBACN,MAAM;oBACL,OAAO;6EAgoB1B,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -1 +1 @@
1
- {"version":3,"file":"builtInRegistry.d.ts","sourceRoot":"","sources":["../../../../src/components/chat/mdoc/builtInRegistry.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,eAAe,+BA4C1B,CAAA;AAyBF;;;GAGG;AACH,eAAO,MAAM,2BAA2B,QAEtC,CAAA;AAuBF;;;GAGG;AACH,eAAO,MAAM,4BAA4B,QAEvC,CAAA;AAoCF;;;GAGG;AACH,eAAO,MAAM,yBAAyB,QAEpC,CAAA;AAeF;;;GAGG;AACH,eAAO,MAAM,wBAAwB,QAEnC,CAAA"}
1
+ {"version":3,"file":"builtInRegistry.d.ts","sourceRoot":"","sources":["../../../../src/components/chat/mdoc/builtInRegistry.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,eAAe,+BA+C1B,CAAA;AAyBF;;;GAGG;AACH,eAAO,MAAM,2BAA2B,QAEtC,CAAA;AAuBF;;;GAGG;AACH,eAAO,MAAM,4BAA4B,QAEvC,CAAA;AAoCF;;;GAGG;AACH,eAAO,MAAM,yBAAyB,QAEpC,CAAA;AAeF;;;GAGG;AACH,eAAO,MAAM,wBAAwB,QAEnC,CAAA"}
@@ -0,0 +1,10 @@
1
+ /** Shared time-label helpers for assistant MessageIconActions chrome. */
2
+ /** Compact local clock: same day → `HH:mm`; else `M/D HH:mm` or `Y/M/D HH:mm`. */
3
+ export declare function formatMessageClock(time: number, now?: number): string;
4
+ /** Whole-second run duration for `用时 N秒` / `用时 M分SS秒`. */
5
+ export declare function formatRunDuration(ms: number): string;
6
+ /** TTFT figure: one decimal under 10s, whole seconds beyond. */
7
+ export declare function formatLatencySeconds(ms: number): string;
8
+ /** Decode throughput: whole tokens from 10 up, one decimal below. */
9
+ export declare function formatTokensPerSecond(tps: number): string;
10
+ //# sourceMappingURL=messageChrome.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"messageChrome.d.ts","sourceRoot":"","sources":["../../../src/components/chat/messageChrome.ts"],"names":[],"mappings":"AAAA,yEAAyE;AAMzE,kFAAkF;AAClF,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,GAAE,MAAmB,GAAG,MAAM,CAejF;AAED,0DAA0D;AAC1D,wBAAgB,iBAAiB,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAMpD;AAED,gEAAgE;AAChE,wBAAgB,oBAAoB,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAGvD;AAED,qEAAqE;AACrE,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAGzD"}
@@ -1,4 +1,4 @@
1
- import type { AssistantMessage, ChatBotConsumeOptions, ResponseObject, ResponseOutputItem, ResponseStreamSource } from './types';
1
+ import type { AssistantMessage, AssistantStep, ChatBotConsumeOptions, ResponseObject, ResponseOutputItem, ResponseStreamSource } from './types';
2
2
  export declare class ResponseStreamProtocolError extends Error {
3
3
  code?: string;
4
4
  status?: number;
@@ -12,6 +12,8 @@ interface ConsumeResult {
12
12
  response: ResponseObject | null;
13
13
  }
14
14
  export declare function consumeResponseStream(input: ResponseStreamSource, options: ConsumeCallbacks): Promise<ConsumeResult>;
15
+ /** Emit ordered steps when a flat think→tools→answer layout would hide chronology. */
16
+ export declare function shouldEmitAssistantSteps(steps: readonly AssistantStep[]): boolean;
15
17
  export declare function aggregateResponseOutput(output: readonly ResponseOutputItem[]): AssistantMessage;
16
18
  export {};
17
19
  //# sourceMappingURL=responseStream.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"responseStream.d.ts","sourceRoot":"","sources":["../../../src/components/chat/responseStream.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,gBAAgB,EAEhB,qBAAqB,EAGrB,cAAc,EACd,kBAAkB,EAOlB,oBAAoB,EACrB,MAAM,SAAS,CAAA;AAqChB,qBAAa,2BAA4B,SAAQ,KAAK;IACpD,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,MAAM,CAAA;gBAEH,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM;CAM5D;AAED,UAAU,gBAAiB,SAAQ,qBAAqB;IACtD,QAAQ,EAAE,CAAC,OAAO,EAAE,gBAAgB,EAAE,QAAQ,EAAE,cAAc,GAAG,IAAI,KAAK,IAAI,CAAA;CAC/E;AAED,UAAU,aAAa;IACrB,MAAM,EAAE,WAAW,GAAG,YAAY,GAAG,SAAS,CAAA;IAC9C,QAAQ,EAAE,cAAc,GAAG,IAAI,CAAA;CAChC;AAED,wBAAsB,qBAAqB,CACzC,KAAK,EAAE,oBAAoB,EAC3B,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,aAAa,CAAC,CAyTxB;AAED,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,SAAS,kBAAkB,EAAE,GAAG,gBAAgB,CA+D/F"}
1
+ {"version":3,"file":"responseStream.d.ts","sourceRoot":"","sources":["../../../src/components/chat/responseStream.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,gBAAgB,EAChB,aAAa,EACb,qBAAqB,EAGrB,cAAc,EACd,kBAAkB,EAOlB,oBAAoB,EACrB,MAAM,SAAS,CAAA;AAqChB,qBAAa,2BAA4B,SAAQ,KAAK;IACpD,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,MAAM,CAAA;gBAEH,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM;CAM5D;AAED,UAAU,gBAAiB,SAAQ,qBAAqB;IACtD,QAAQ,EAAE,CAAC,OAAO,EAAE,gBAAgB,EAAE,QAAQ,EAAE,cAAc,GAAG,IAAI,KAAK,IAAI,CAAA;CAC/E;AAED,UAAU,aAAa;IACrB,MAAM,EAAE,WAAW,GAAG,YAAY,GAAG,SAAS,CAAA;IAC9C,QAAQ,EAAE,cAAc,GAAG,IAAI,CAAA;CAChC;AAED,wBAAsB,qBAAqB,CACzC,KAAK,EAAE,oBAAoB,EAC3B,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,aAAa,CAAC,CAyTxB;AAED,sFAAsF;AACtF,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,SAAS,aAAa,EAAE,GAAG,OAAO,CAqBjF;AAED,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,SAAS,kBAAkB,EAAE,GAAG,gBAAgB,CAoE/F"}
@@ -1,4 +1,15 @@
1
- /** Chinese display labels for the built-in demo/business tool names used across the chat surface. */
1
+ /**
2
+ * Chinese display titles for tool-call process rows.
3
+ * Kept short and plain so classroom teachers can understand the agent log.
4
+ */
2
5
  export declare const BUILT_IN_TOOL_LABELS: Record<string, string>;
3
6
  export declare function toolDisplayLabel(name: string): string;
7
+ /** Category shown before the separator in harness-style process rows. */
8
+ export declare function toolCategoryLabel(name: string): string;
9
+ export declare function isKnownToolLabel(name: string): boolean;
10
+ /**
11
+ * Compact header detail for `Category · detail` rows.
12
+ * Prefers path/script/query/desc; otherwise `key: value · …`.
13
+ */
14
+ export declare function toolHeaderDetail(argumentsText: string): string;
4
15
  //# sourceMappingURL=toolLabels.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"toolLabels.d.ts","sourceRoot":"","sources":["../../../src/components/chat/toolLabels.ts"],"names":[],"mappings":"AAAA,qGAAqG;AACrG,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAkBvD,CAAA;AAED,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAErD"}
1
+ {"version":3,"file":"toolLabels.d.ts","sourceRoot":"","sources":["../../../src/components/chat/toolLabels.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CA+BvD,CAAA;AAsBD,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAErD;AAED,yEAAyE;AACzE,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAEtD;AAED,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAEtD;AAED;;;GAGG;AACH,wBAAgB,gBAAgB,CAAC,aAAa,EAAE,MAAM,GAAG,MAAM,CAgB9D"}