@next-bricks/ai-portal 0.58.11 → 0.58.13

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 (30) hide show
  1. package/dist/bricks.json +45 -45
  2. package/dist/chunks/151.0550e056.js +2 -0
  3. package/dist/chunks/151.0550e056.js.map +1 -0
  4. package/dist/chunks/{6811.122526d0.js → 6811.a67f5755.js} +2 -2
  5. package/dist/chunks/6811.a67f5755.js.map +1 -0
  6. package/dist/chunks/chat-box.82360f9a.js +2 -0
  7. package/dist/chunks/chat-box.82360f9a.js.map +1 -0
  8. package/dist/chunks/flow-tabs.afee9a1c.js +2 -0
  9. package/dist/chunks/flow-tabs.afee9a1c.js.map +1 -0
  10. package/dist/chunks/{main.99c703d7.js → main.5fc54860.js} +2 -2
  11. package/dist/chunks/{main.99c703d7.js.map → main.5fc54860.js.map} +1 -1
  12. package/dist/chunks/{stage-flow.4c7ea7d9.js → stage-flow.22610ca5.js} +2 -2
  13. package/dist/chunks/stage-flow.22610ca5.js.map +1 -0
  14. package/dist/examples.json +24 -24
  15. package/dist/{index.b5b0ddea.js → index.a9ae68ac.js} +2 -2
  16. package/dist/{index.b5b0ddea.js.map → index.a9ae68ac.js.map} +1 -1
  17. package/dist/manifest.json +349 -349
  18. package/dist/types.json +354 -328
  19. package/dist-types/chat-box/bricks.d.ts +1 -0
  20. package/dist-types/chat-box/i18n.d.ts +3 -1
  21. package/dist-types/chat-box/index.d.ts +3 -1
  22. package/package.json +2 -2
  23. package/dist/chunks/151.d08c1ef1.js +0 -2
  24. package/dist/chunks/151.d08c1ef1.js.map +0 -1
  25. package/dist/chunks/6811.122526d0.js.map +0 -1
  26. package/dist/chunks/chat-box.6eab985e.js +0 -2
  27. package/dist/chunks/chat-box.6eab985e.js.map +0 -1
  28. package/dist/chunks/flow-tabs.ce40cc92.js +0 -2
  29. package/dist/chunks/flow-tabs.ce40cc92.js.map +0 -1
  30. package/dist/chunks/stage-flow.4c7ea7d9.js.map +0 -1
@@ -3,20 +3,6 @@
3
3
  "package": "@next-bricks/ai-portal",
4
4
  "name": "ai-portal",
5
5
  "bricks": [
6
- {
7
- "name": "ai-portal.home-container",
8
- "properties": [
9
- {
10
- "name": "sticky",
11
- "type": "boolean"
12
- }
13
- ],
14
- "events": [],
15
- "slots": [],
16
- "methods": [],
17
- "parts": [],
18
- "description": "构件 `ai-portal.home-container`"
19
- },
20
6
  {
21
7
  "name": "ai-portal.cruise-canvas",
22
8
  "properties": [
@@ -177,340 +163,360 @@
177
163
  "description": "构件 `ai-portal.cruise-canvas`"
178
164
  },
179
165
  {
180
- "name": "ai-portal.elevo-sidebar",
166
+ "name": "ai-portal.chat-box",
181
167
  "properties": [
182
168
  {
183
- "name": "userInstanceId",
184
- "type": "string"
185
- },
186
- {
187
- "name": "behavior",
188
- "type": "\"default\" | \"drawer\""
189
- },
190
- {
191
- "name": "logoUrl",
192
- "type": "string"
193
- },
194
- {
195
- "name": "newChatUrl",
196
- "type": "string"
197
- },
198
- {
199
- "name": "newChatLinkWhenCollapsed",
169
+ "name": "disabled",
200
170
  "type": "boolean"
201
171
  },
202
172
  {
203
- "name": "historyUrlTemplate",
173
+ "name": "placeholder",
204
174
  "type": "string"
205
175
  },
206
176
  {
207
- "name": "historyActions",
208
- "attribute": false,
209
- "type": "ActionType[]"
210
- },
211
- {
212
- "name": "projectUrlTemplate",
213
- "type": "string"
177
+ "name": "autoFocus",
178
+ "type": "boolean"
214
179
  },
215
180
  {
216
- "name": "projectActions",
181
+ "name": "aiEmployees",
217
182
  "attribute": false,
218
- "type": "ActionType[]"
183
+ "type": "AIEmployee[]"
219
184
  },
220
185
  {
221
- "name": "links",
186
+ "name": "commands",
222
187
  "attribute": false,
223
- "type": "SidebarLink[]"
224
- },
225
- {
226
- "name": "canAddProject",
227
- "type": "boolean",
228
- "default": "true"
188
+ "type": "Command[]"
229
189
  },
230
190
  {
231
- "name": "myLinks",
191
+ "name": "uploadOptions",
232
192
  "attribute": false,
233
- "type": "SidebarLink[]"
193
+ "type": "UploadOptions"
234
194
  }
235
195
  ],
236
196
  "events": [
237
197
  {
238
- "name": "logout",
239
- "detail": {
240
- "type": "void"
241
- }
242
- },
243
- {
244
- "name": "action.click",
198
+ "name": "message.submit",
199
+ "description": "",
200
+ "deprecated": "Use `chat.submit` event instead",
245
201
  "detail": {
246
- "type": "ActionClickDetail"
202
+ "type": "string"
247
203
  }
248
204
  },
249
205
  {
250
- "name": "project.action.click",
206
+ "name": "chat.submit",
251
207
  "detail": {
252
- "type": "ProjectActionClickDetail"
208
+ "type": "ChatPayload"
253
209
  }
254
210
  },
255
211
  {
256
- "name": "add.project",
212
+ "name": "command.select",
257
213
  "detail": {
258
- "type": "void"
214
+ "type": "CommandPayload | null"
259
215
  }
260
216
  }
261
217
  ],
262
218
  "slots": [],
263
219
  "methods": [
264
220
  {
265
- "name": "pullHistory",
266
- "params": [
267
- {
268
- "name": "delay",
269
- "description": "Delay in milliseconds before pulling the latest chat history.",
270
- "type": "number"
271
- }
272
- ],
273
- "description": "",
274
- "returns": {}
275
- },
276
- {
277
- "name": "open",
278
- "params": []
279
- },
280
- {
281
- "name": "close",
282
- "params": []
283
- },
284
- {
285
- "name": "removeProject",
221
+ "name": "setValue",
286
222
  "params": [
287
223
  {
288
- "name": "projectId",
224
+ "name": "value",
289
225
  "type": "string"
290
226
  }
291
227
  ]
292
228
  },
293
229
  {
294
- "name": "addProject",
295
- "params": [
296
- {
297
- "name": "project",
298
- "type": "Project"
299
- }
300
- ]
230
+ "name": "getValue",
231
+ "params": []
301
232
  },
302
233
  {
303
- "name": "moveConversation",
304
- "params": [
305
- {
306
- "name": "conversationId",
307
- "type": "string"
308
- }
309
- ]
234
+ "name": "focusOnInput",
235
+ "params": []
310
236
  }
311
237
  ],
312
238
  "parts": [],
313
- "description": "构件 `ai-portal.elevo-sidebar`"
239
+ "description": "构件 `ai-portal.chat-box`"
314
240
  },
315
241
  {
316
- "name": "ai-portal.icon-button",
242
+ "name": "ai-portal.stat-with-mini-chart",
317
243
  "properties": [
318
244
  {
319
- "name": "icon",
320
- "attribute": false,
321
- "type": "GeneralIconProps"
245
+ "name": "label",
246
+ "type": "string"
322
247
  },
323
248
  {
324
- "name": "tooltip",
249
+ "name": "value",
325
250
  "type": "string"
326
251
  },
327
252
  {
328
- "name": "tooltipHoist",
329
- "type": "boolean"
253
+ "name": "size",
254
+ "description": "",
255
+ "default": "\"medium\"",
256
+ "type": "\"medium\" | \"small\""
330
257
  },
331
258
  {
332
- "name": "disabled",
259
+ "name": "lineColor",
260
+ "description": "",
261
+ "default": "\"var(--color-brand)\"",
262
+ "type": "string"
263
+ },
264
+ {
265
+ "name": "showArea",
333
266
  "type": "boolean"
334
267
  },
335
268
  {
336
- "name": "variant",
337
- "type": "IconButtonVariant"
269
+ "name": "min",
270
+ "description": "Specify the minimum value of the y-axis.\nIf not specified, the minimum value will be calculated from the data.",
271
+ "type": "number"
272
+ },
273
+ {
274
+ "name": "max",
275
+ "description": "Specify the maximum value of the y-axis.\nIf not specified, the maximum value will be calculated from the data.",
276
+ "type": "number"
277
+ },
278
+ {
279
+ "name": "xField",
280
+ "description": "",
281
+ "default": "\"0\"",
282
+ "type": "string"
283
+ },
284
+ {
285
+ "name": "yField",
286
+ "description": "",
287
+ "default": "\"1\"",
288
+ "type": "string"
289
+ },
290
+ {
291
+ "name": "data",
292
+ "attribute": false,
293
+ "type": "Record<string, number>[]"
338
294
  }
339
295
  ],
340
296
  "events": [],
341
297
  "slots": [],
342
298
  "methods": [],
343
299
  "parts": [],
344
- "description": "构件 `ai-portal.icon-button`"
300
+ "description": "构件 `ai-portal.stat-with-mini-chart`"
345
301
  },
346
302
  {
347
- "name": "ai-portal.mcp-tools",
303
+ "name": "ai-portal.home-container",
348
304
  "properties": [
349
305
  {
350
- "name": "list",
351
- "attribute": false,
352
- "type": "McpTool[]"
353
- },
354
- {
355
- "name": "stickyTop",
356
- "type": "number"
306
+ "name": "sticky",
307
+ "type": "boolean"
357
308
  }
358
309
  ],
359
310
  "events": [],
360
311
  "slots": [],
361
312
  "methods": [],
362
313
  "parts": [],
363
- "description": "构件 `ai-portal.mcp-tools`"
314
+ "description": "构件 `ai-portal.home-container`"
364
315
  },
365
316
  {
366
- "name": "ai-portal.show-cases",
317
+ "name": "ai-portal.icon-button",
367
318
  "properties": [
368
319
  {
369
- "name": "list",
320
+ "name": "icon",
370
321
  "attribute": false,
371
- "type": "ShowCaseType[]"
322
+ "type": "GeneralIconProps"
372
323
  },
373
324
  {
374
- "name": "limit",
375
- "type": "number"
325
+ "name": "tooltip",
326
+ "type": "string"
327
+ },
328
+ {
329
+ "name": "tooltipHoist",
330
+ "type": "boolean"
331
+ },
332
+ {
333
+ "name": "disabled",
334
+ "type": "boolean"
335
+ },
336
+ {
337
+ "name": "variant",
338
+ "type": "IconButtonVariant"
376
339
  }
377
340
  ],
378
341
  "events": [],
379
342
  "slots": [],
380
343
  "methods": [],
381
344
  "parts": [],
382
- "description": "构件 `ai-portal.show-cases`"
345
+ "description": "构件 `ai-portal.icon-button`"
383
346
  },
384
347
  {
385
- "name": "ai-portal.chat-box",
348
+ "name": "ai-portal.elevo-sidebar",
386
349
  "properties": [
387
350
  {
388
- "name": "disabled",
389
- "type": "boolean"
351
+ "name": "userInstanceId",
352
+ "type": "string"
390
353
  },
391
354
  {
392
- "name": "placeholder",
355
+ "name": "behavior",
356
+ "type": "\"default\" | \"drawer\""
357
+ },
358
+ {
359
+ "name": "logoUrl",
393
360
  "type": "string"
394
361
  },
395
362
  {
396
- "name": "autoFocus",
363
+ "name": "newChatUrl",
364
+ "type": "string"
365
+ },
366
+ {
367
+ "name": "newChatLinkWhenCollapsed",
397
368
  "type": "boolean"
398
369
  },
399
370
  {
400
- "name": "aiEmployees",
371
+ "name": "historyUrlTemplate",
372
+ "type": "string"
373
+ },
374
+ {
375
+ "name": "historyActions",
401
376
  "attribute": false,
402
- "type": "AIEmployee[]"
377
+ "type": "ActionType[]"
403
378
  },
404
379
  {
405
- "name": "commands",
380
+ "name": "projectUrlTemplate",
381
+ "type": "string"
382
+ },
383
+ {
384
+ "name": "projectActions",
406
385
  "attribute": false,
407
- "type": "Command[]"
386
+ "type": "ActionType[]"
408
387
  },
409
388
  {
410
- "name": "uploadOptions",
389
+ "name": "links",
411
390
  "attribute": false,
412
- "type": "UploadOptions"
391
+ "type": "SidebarLink[]"
392
+ },
393
+ {
394
+ "name": "canAddProject",
395
+ "type": "boolean",
396
+ "default": "true"
397
+ },
398
+ {
399
+ "name": "myLinks",
400
+ "attribute": false,
401
+ "type": "SidebarLink[]"
413
402
  }
414
403
  ],
415
404
  "events": [
416
405
  {
417
- "name": "message.submit",
418
- "description": "",
419
- "deprecated": "Use `chat.submit` event instead",
406
+ "name": "logout",
420
407
  "detail": {
421
- "type": "string"
408
+ "type": "void"
422
409
  }
423
410
  },
424
411
  {
425
- "name": "chat.submit",
412
+ "name": "action.click",
426
413
  "detail": {
427
- "type": "ChatPayload"
414
+ "type": "ActionClickDetail"
428
415
  }
429
416
  },
430
417
  {
431
- "name": "command.select",
418
+ "name": "project.action.click",
432
419
  "detail": {
433
- "type": "CommandPayload | null"
420
+ "type": "ProjectActionClickDetail"
421
+ }
422
+ },
423
+ {
424
+ "name": "add.project",
425
+ "detail": {
426
+ "type": "void"
434
427
  }
435
428
  }
436
429
  ],
437
430
  "slots": [],
438
431
  "methods": [
439
432
  {
440
- "name": "setValue",
433
+ "name": "pullHistory",
441
434
  "params": [
442
435
  {
443
- "name": "value",
444
- "type": "string"
436
+ "name": "delay",
437
+ "description": "Delay in milliseconds before pulling the latest chat history.",
438
+ "type": "number"
445
439
  }
446
- ]
440
+ ],
441
+ "description": "",
442
+ "returns": {}
447
443
  },
448
444
  {
449
- "name": "getValue",
445
+ "name": "open",
450
446
  "params": []
451
447
  },
452
448
  {
453
- "name": "focusOnInput",
449
+ "name": "close",
454
450
  "params": []
451
+ },
452
+ {
453
+ "name": "removeProject",
454
+ "params": [
455
+ {
456
+ "name": "projectId",
457
+ "type": "string"
458
+ }
459
+ ]
460
+ },
461
+ {
462
+ "name": "addProject",
463
+ "params": [
464
+ {
465
+ "name": "project",
466
+ "type": "Project"
467
+ }
468
+ ]
469
+ },
470
+ {
471
+ "name": "moveConversation",
472
+ "params": [
473
+ {
474
+ "name": "conversationId",
475
+ "type": "string"
476
+ }
477
+ ]
455
478
  }
456
479
  ],
457
480
  "parts": [],
458
- "description": "构件 `ai-portal.chat-box`"
481
+ "description": "构件 `ai-portal.elevo-sidebar`"
459
482
  },
460
483
  {
461
- "name": "ai-portal.ai-employees",
484
+ "name": "ai-portal.show-cases",
462
485
  "properties": [
463
486
  {
464
487
  "name": "list",
465
488
  "attribute": false,
466
- "type": "Employee[]"
467
- },
468
- {
469
- "name": "industries",
470
- "attribute": false,
471
- "type": "string[]"
472
- },
473
- {
474
- "name": "urlTemplate",
475
- "type": "string"
489
+ "type": "ShowCaseType[]"
476
490
  },
477
491
  {
478
- "name": "withContainer",
479
- "description": "",
480
- "deprecated": true,
481
- "default": "true"
492
+ "name": "limit",
493
+ "type": "number"
482
494
  }
483
495
  ],
484
496
  "events": [],
485
497
  "slots": [],
486
498
  "methods": [],
487
499
  "parts": [],
488
- "description": "构件 `ai-portal.ai-employees`"
500
+ "description": "构件 `ai-portal.show-cases`"
489
501
  },
490
502
  {
491
- "name": "ai-portal.ai-agents",
503
+ "name": "ai-portal.mcp-tools",
492
504
  "properties": [
493
505
  {
494
506
  "name": "list",
495
507
  "attribute": false,
496
- "type": "Agent[]"
497
- },
498
- {
499
- "name": "urlTemplate",
500
- "type": "string"
508
+ "type": "McpTool[]"
501
509
  },
502
510
  {
503
- "name": "withContainer",
504
- "description": "",
505
- "deprecated": true,
506
- "default": "true"
511
+ "name": "stickyTop",
512
+ "type": "number"
507
513
  }
508
514
  ],
509
515
  "events": [],
510
516
  "slots": [],
511
517
  "methods": [],
512
518
  "parts": [],
513
- "description": "构件 `ai-portal.ai-agents`"
519
+ "description": "构件 `ai-portal.mcp-tools`"
514
520
  },
515
521
  {
516
522
  "name": "ai-portal.chat-stream",
@@ -680,110 +686,104 @@
680
686
  "description": "构件 `ai-portal.chat-stream`"
681
687
  },
682
688
  {
683
- "name": "ai-portal.page-container",
689
+ "name": "ai-portal.ai-employees",
684
690
  "properties": [
685
691
  {
686
- "name": "pageTitle",
687
- "type": "string"
688
- },
689
- {
690
- "name": "breadcrumbs",
692
+ "name": "list",
691
693
  "attribute": false,
692
- "type": "Breadcrumb[]"
693
- },
694
- {
695
- "name": "size",
696
- "type": "\"medium\" | \"small\" | \"full\""
694
+ "type": "Employee[]"
697
695
  },
698
696
  {
699
- "name": "variant",
700
- "type": "\"default\" | \"form\""
697
+ "name": "industries",
698
+ "attribute": false,
699
+ "type": "string[]"
701
700
  },
702
701
  {
703
- "name": "sticky",
704
- "type": "boolean"
702
+ "name": "urlTemplate",
703
+ "type": "string"
705
704
  },
706
705
  {
707
- "name": "textContent",
708
- "type": "string",
709
- "description": "文本内容"
706
+ "name": "withContainer",
707
+ "description": "",
708
+ "deprecated": true,
709
+ "default": "true"
710
710
  }
711
711
  ],
712
712
  "events": [],
713
- "slots": [
714
- {
715
- "name": null,
716
- "description": "内容"
717
- },
718
- {
719
- "name": "toolbar",
720
- "description": "工具栏"
721
- }
722
- ],
713
+ "slots": [],
723
714
  "methods": [],
724
715
  "parts": [],
725
- "description": "构件 `ai-portal.page-container`"
716
+ "description": "构件 `ai-portal.ai-employees`"
726
717
  },
727
718
  {
728
- "name": "ai-portal.stat-with-mini-chart",
719
+ "name": "ai-portal.ai-agents",
729
720
  "properties": [
730
721
  {
731
- "name": "label",
732
- "type": "string"
722
+ "name": "list",
723
+ "attribute": false,
724
+ "type": "Agent[]"
733
725
  },
734
726
  {
735
- "name": "value",
727
+ "name": "urlTemplate",
736
728
  "type": "string"
737
729
  },
738
730
  {
739
- "name": "size",
731
+ "name": "withContainer",
740
732
  "description": "",
741
- "default": "\"medium\"",
742
- "type": "\"medium\" | \"small\""
743
- },
733
+ "deprecated": true,
734
+ "default": "true"
735
+ }
736
+ ],
737
+ "events": [],
738
+ "slots": [],
739
+ "methods": [],
740
+ "parts": [],
741
+ "description": "构件 `ai-portal.ai-agents`"
742
+ },
743
+ {
744
+ "name": "ai-portal.page-container",
745
+ "properties": [
744
746
  {
745
- "name": "lineColor",
746
- "description": "",
747
- "default": "\"var(--color-brand)\"",
747
+ "name": "pageTitle",
748
748
  "type": "string"
749
749
  },
750
750
  {
751
- "name": "showArea",
752
- "type": "boolean"
753
- },
754
- {
755
- "name": "min",
756
- "description": "Specify the minimum value of the y-axis.\nIf not specified, the minimum value will be calculated from the data.",
757
- "type": "number"
751
+ "name": "breadcrumbs",
752
+ "attribute": false,
753
+ "type": "Breadcrumb[]"
758
754
  },
759
755
  {
760
- "name": "max",
761
- "description": "Specify the maximum value of the y-axis.\nIf not specified, the maximum value will be calculated from the data.",
762
- "type": "number"
756
+ "name": "size",
757
+ "type": "\"medium\" | \"small\" | \"full\""
763
758
  },
764
759
  {
765
- "name": "xField",
766
- "description": "",
767
- "default": "\"0\"",
768
- "type": "string"
760
+ "name": "variant",
761
+ "type": "\"default\" | \"form\""
769
762
  },
770
763
  {
771
- "name": "yField",
772
- "description": "",
773
- "default": "\"1\"",
774
- "type": "string"
764
+ "name": "sticky",
765
+ "type": "boolean"
775
766
  },
776
767
  {
777
- "name": "data",
778
- "attribute": false,
779
- "type": "Record<string, number>[]"
768
+ "name": "textContent",
769
+ "type": "string",
770
+ "description": "文本内容"
780
771
  }
781
772
  ],
782
773
  "events": [],
783
- "slots": [],
774
+ "slots": [
775
+ {
776
+ "name": null,
777
+ "description": "内容"
778
+ },
779
+ {
780
+ "name": "toolbar",
781
+ "description": "工具栏"
782
+ }
783
+ ],
784
784
  "methods": [],
785
785
  "parts": [],
786
- "description": "构件 `ai-portal.stat-with-mini-chart`"
786
+ "description": "构件 `ai-portal.page-container`"
787
787
  },
788
788
  {
789
789
  "name": "ai-portal.tab-list",
@@ -923,69 +923,6 @@
923
923
  "parts": [],
924
924
  "description": "构件 `ai-portal.action-buttons`"
925
925
  },
926
- {
927
- "name": "ai-portal.goal-card-list",
928
- "properties": [
929
- {
930
- "name": "goalList",
931
- "attribute": false,
932
- "type": "GoalItem[]"
933
- },
934
- {
935
- "name": "cardStyle",
936
- "attribute": false,
937
- "type": "React.CSSProperties"
938
- },
939
- {
940
- "name": "activeKey",
941
- "type": "string"
942
- }
943
- ],
944
- "events": [
945
- {
946
- "name": "item.click",
947
- "detail": {
948
- "type": "GoalItem"
949
- }
950
- },
951
- {
952
- "name": "item.status.change",
953
- "detail": {
954
- "type": "GoalItem"
955
- }
956
- },
957
- {
958
- "name": "item.title.change",
959
- "detail": {
960
- "type": "GoalItem"
961
- }
962
- },
963
- {
964
- "name": "item.new.chat",
965
- "detail": {
966
- "type": "GoalItem"
967
- }
968
- }
969
- ],
970
- "slots": [],
971
- "methods": [
972
- {
973
- "name": "appendChildDone",
974
- "params": [
975
- {
976
- "name": "pendingId",
977
- "type": "string"
978
- },
979
- {
980
- "name": "newItem",
981
- "type": "GoalItem"
982
- }
983
- ]
984
- }
985
- ],
986
- "parts": [],
987
- "description": "构件 `ai-portal.goal-card-list`"
988
- },
989
926
  {
990
927
  "name": "ai-portal.project-conversations",
991
928
  "properties": [
@@ -1028,6 +965,25 @@
1028
965
  "parts": [],
1029
966
  "description": "构件 `ai-portal.project-conversations`"
1030
967
  },
968
+ {
969
+ "name": "ai-portal.activity-timeline",
970
+ "properties": [
971
+ {
972
+ "name": "list",
973
+ "attribute": false,
974
+ "type": "Activity[]"
975
+ },
976
+ {
977
+ "name": "chatUrlTemplate",
978
+ "type": "string"
979
+ }
980
+ ],
981
+ "events": [],
982
+ "slots": [],
983
+ "methods": [],
984
+ "parts": [],
985
+ "description": "构件 `ai-portal.activity-timeline`"
986
+ },
1031
987
  {
1032
988
  "name": "ai-portal.project-knowledges",
1033
989
  "properties": [
@@ -1066,23 +1022,76 @@
1066
1022
  "description": "构件 `ai-portal.project-knowledges`"
1067
1023
  },
1068
1024
  {
1069
- "name": "ai-portal.activity-timeline",
1025
+ "name": "ai-portal.goal-card-list",
1070
1026
  "properties": [
1071
1027
  {
1072
- "name": "list",
1028
+ "name": "goalList",
1073
1029
  "attribute": false,
1074
- "type": "Activity[]"
1030
+ "type": "GoalItem[]"
1075
1031
  },
1076
1032
  {
1077
- "name": "chatUrlTemplate",
1033
+ "name": "cardStyle",
1034
+ "attribute": false,
1035
+ "type": "React.CSSProperties"
1036
+ },
1037
+ {
1038
+ "name": "activeKey",
1078
1039
  "type": "string"
1079
1040
  }
1080
1041
  ],
1042
+ "events": [
1043
+ {
1044
+ "name": "item.click",
1045
+ "detail": {
1046
+ "type": "GoalItem"
1047
+ }
1048
+ },
1049
+ {
1050
+ "name": "item.status.change",
1051
+ "detail": {
1052
+ "type": "GoalItem"
1053
+ }
1054
+ },
1055
+ {
1056
+ "name": "item.title.change",
1057
+ "detail": {
1058
+ "type": "GoalItem"
1059
+ }
1060
+ },
1061
+ {
1062
+ "name": "item.new.chat",
1063
+ "detail": {
1064
+ "type": "GoalItem"
1065
+ }
1066
+ }
1067
+ ],
1068
+ "slots": [],
1069
+ "methods": [
1070
+ {
1071
+ "name": "appendChildDone",
1072
+ "params": [
1073
+ {
1074
+ "name": "pendingId",
1075
+ "type": "string"
1076
+ },
1077
+ {
1078
+ "name": "newItem",
1079
+ "type": "GoalItem"
1080
+ }
1081
+ ]
1082
+ }
1083
+ ],
1084
+ "parts": [],
1085
+ "description": "构件 `ai-portal.goal-card-list`"
1086
+ },
1087
+ {
1088
+ "name": "ai-portal.elevo-logo",
1089
+ "properties": [],
1081
1090
  "events": [],
1082
1091
  "slots": [],
1083
1092
  "methods": [],
1084
1093
  "parts": [],
1085
- "description": "构件 `ai-portal.activity-timeline`"
1094
+ "description": "构件 `ai-portal.elevo-logo`"
1086
1095
  },
1087
1096
  {
1088
1097
  "name": "ai-portal.chat-input",
@@ -1140,15 +1149,6 @@
1140
1149
  "parts": [],
1141
1150
  "description": "构件 `ai-portal.chat-input`"
1142
1151
  },
1143
- {
1144
- "name": "ai-portal.elevo-logo",
1145
- "properties": [],
1146
- "events": [],
1147
- "slots": [],
1148
- "methods": [],
1149
- "parts": [],
1150
- "description": "构件 `ai-portal.elevo-logo`"
1151
- },
1152
1152
  {
1153
1153
  "name": "ai-portal.show-case",
1154
1154
  "properties": [
@@ -1254,33 +1254,6 @@
1254
1254
  "parts": [],
1255
1255
  "description": "构件 `ai-portal.elevo-card`"
1256
1256
  },
1257
- {
1258
- "name": "ai-portal.flow-tabs",
1259
- "properties": [
1260
- {
1261
- "name": "tabs",
1262
- "attribute": false,
1263
- "type": "Tab[]"
1264
- },
1265
- {
1266
- "name": "activeTab",
1267
- "attribute": false,
1268
- "type": "string"
1269
- }
1270
- ],
1271
- "events": [
1272
- {
1273
- "name": "tab.click",
1274
- "detail": {
1275
- "type": "Tab"
1276
- }
1277
- }
1278
- ],
1279
- "slots": [],
1280
- "methods": [],
1281
- "parts": [],
1282
- "description": "构件 `ai-portal.flow-tabs`"
1283
- },
1284
1257
  {
1285
1258
  "name": "ai-portal.stage-flow",
1286
1259
  "properties": [
@@ -1368,6 +1341,33 @@
1368
1341
  "parts": [],
1369
1342
  "description": "构件 `ai-portal.stage-flow`"
1370
1343
  },
1344
+ {
1345
+ "name": "ai-portal.flow-tabs",
1346
+ "properties": [
1347
+ {
1348
+ "name": "tabs",
1349
+ "attribute": false,
1350
+ "type": "Tab[]"
1351
+ },
1352
+ {
1353
+ "name": "activeTab",
1354
+ "attribute": false,
1355
+ "type": "string"
1356
+ }
1357
+ ],
1358
+ "events": [
1359
+ {
1360
+ "name": "tab.click",
1361
+ "detail": {
1362
+ "type": "Tab"
1363
+ }
1364
+ }
1365
+ ],
1366
+ "slots": [],
1367
+ "methods": [],
1368
+ "parts": [],
1369
+ "description": "构件 `ai-portal.flow-tabs`"
1370
+ },
1371
1371
  {
1372
1372
  "name": "ai-portal.running-flow",
1373
1373
  "properties": [
@@ -1472,9 +1472,6 @@
1472
1472
  {
1473
1473
  "name": "ai-portal.call-tool"
1474
1474
  },
1475
- {
1476
- "name": "ai-portal.set-chat-command"
1477
- },
1478
1475
  {
1479
1476
  "name": "ai-portal.save-request-store"
1480
1477
  },
@@ -1483,6 +1480,9 @@
1483
1480
  },
1484
1481
  {
1485
1482
  "name": "ai-portal.clear-request-store"
1483
+ },
1484
+ {
1485
+ "name": "ai-portal.set-chat-command"
1486
1486
  }
1487
1487
  ]
1488
1488
  }