@next-bricks/ai-portal 0.64.1 → 0.64.3

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 (29) hide show
  1. package/dist/bricks.json +37 -37
  2. package/dist/chunks/{4208.9bc0e6c6.js → 4208.e57d22a2.js} +2 -2
  3. package/dist/chunks/4208.e57d22a2.js.map +1 -0
  4. package/dist/chunks/{4820.d2a30e2c.js → 4820.3f60d55c.js} +2 -2
  5. package/dist/chunks/4820.3f60d55c.js.map +1 -0
  6. package/dist/chunks/778.850294cf.js +2 -0
  7. package/dist/chunks/778.850294cf.js.map +1 -0
  8. package/dist/chunks/{9273.a031c62f.js → 9273.e6feece8.js} +2 -2
  9. package/dist/chunks/9273.e6feece8.js.map +1 -0
  10. package/dist/chunks/chat-panel.0735e831.js +2 -0
  11. package/dist/chunks/chat-panel.0735e831.js.map +1 -0
  12. package/dist/chunks/{main.62ff99bd.js → main.88466dc4.js} +2 -2
  13. package/dist/chunks/{main.62ff99bd.js.map → main.88466dc4.js.map} +1 -1
  14. package/dist/examples.json +22 -22
  15. package/dist/{index.a9bf242c.js → index.802fcd04.js} +2 -2
  16. package/dist/{index.a9bf242c.js.map → index.802fcd04.js.map} +1 -1
  17. package/dist/manifest.json +232 -232
  18. package/dist/types.json +1254 -1254
  19. package/dist-types/chat-panel/index.d.ts +1 -1
  20. package/dist-types/chat-stream/AssistantMessage/AssistantMessage.d.ts +5 -3
  21. package/dist-types/cruise-canvas/reducers/interfaces.d.ts +4 -1
  22. package/package.json +2 -2
  23. package/dist/chunks/4208.9bc0e6c6.js.map +0 -1
  24. package/dist/chunks/4820.d2a30e2c.js.map +0 -1
  25. package/dist/chunks/778.85eedde5.js +0 -2
  26. package/dist/chunks/778.85eedde5.js.map +0 -1
  27. package/dist/chunks/9273.a031c62f.js.map +0 -1
  28. package/dist/chunks/chat-panel.a5cadc0d.js +0 -2
  29. package/dist/chunks/chat-panel.a5cadc0d.js.map +0 -1
@@ -3,6 +3,76 @@
3
3
  "package": "@next-bricks/ai-portal",
4
4
  "name": "ai-portal",
5
5
  "bricks": [
6
+ {
7
+ "name": "ai-portal.chat-box",
8
+ "properties": [
9
+ {
10
+ "name": "disabled",
11
+ "type": "boolean"
12
+ },
13
+ {
14
+ "name": "placeholder",
15
+ "type": "string"
16
+ },
17
+ {
18
+ "name": "autoFocus",
19
+ "type": "boolean"
20
+ },
21
+ {
22
+ "name": "aiEmployees",
23
+ "attribute": false,
24
+ "type": "AIEmployee[]"
25
+ },
26
+ {
27
+ "name": "commands",
28
+ "attribute": false,
29
+ "type": "Command[]"
30
+ },
31
+ {
32
+ "name": "uploadOptions",
33
+ "attribute": false,
34
+ "type": "UploadOptions"
35
+ }
36
+ ],
37
+ "events": [
38
+ {
39
+ "name": "message.submit",
40
+ "description": "",
41
+ "deprecated": "Use `chat.submit` event instead",
42
+ "detail": {
43
+ "type": "string"
44
+ }
45
+ },
46
+ {
47
+ "name": "chat.submit",
48
+ "detail": {
49
+ "type": "ChatPayload"
50
+ }
51
+ }
52
+ ],
53
+ "slots": [],
54
+ "methods": [
55
+ {
56
+ "name": "setValue",
57
+ "params": [
58
+ {
59
+ "name": "value",
60
+ "type": "string"
61
+ }
62
+ ]
63
+ },
64
+ {
65
+ "name": "getValue",
66
+ "params": []
67
+ },
68
+ {
69
+ "name": "focusOnInput",
70
+ "params": []
71
+ }
72
+ ],
73
+ "parts": [],
74
+ "description": "大型聊天输入框,用于首页"
75
+ },
6
76
  {
7
77
  "name": "ai-portal.cruise-canvas",
8
78
  "properties": [
@@ -228,6 +298,46 @@
228
298
  "parts": [],
229
299
  "description": "构件 `ai-portal.stat-with-mini-chart`"
230
300
  },
301
+ {
302
+ "name": "ai-portal.icon-button",
303
+ "properties": [
304
+ {
305
+ "name": "icon",
306
+ "attribute": false,
307
+ "type": "(GeneralIconProps & HTMLAttributes<GeneralIcon>)"
308
+ },
309
+ {
310
+ "name": "tooltip",
311
+ "type": "string"
312
+ },
313
+ {
314
+ "name": "tooltipHoist",
315
+ "type": "boolean"
316
+ },
317
+ {
318
+ "name": "active",
319
+ "type": "boolean"
320
+ },
321
+ {
322
+ "name": "disabled",
323
+ "type": "boolean"
324
+ },
325
+ {
326
+ "name": "variant",
327
+ "type": "IconButtonVariant"
328
+ },
329
+ {
330
+ "name": "reduceIconSize",
331
+ "description": "是否缩小图标尺寸(部分 easyops 图标过大)",
332
+ "type": "boolean"
333
+ }
334
+ ],
335
+ "events": [],
336
+ "slots": [],
337
+ "methods": [],
338
+ "parts": [],
339
+ "description": "构件 `ai-portal.icon-button`"
340
+ },
231
341
  {
232
342
  "name": "ai-portal.elevo-sidebar",
233
343
  "properties": [
@@ -400,36 +510,10 @@
400
510
  "description": "构件 `ai-portal.elevo-sidebar`"
401
511
  },
402
512
  {
403
- "name": "ai-portal.icon-button",
513
+ "name": "ai-portal.home-container",
404
514
  "properties": [
405
515
  {
406
- "name": "icon",
407
- "attribute": false,
408
- "type": "(GeneralIconProps & HTMLAttributes<GeneralIcon>)"
409
- },
410
- {
411
- "name": "tooltip",
412
- "type": "string"
413
- },
414
- {
415
- "name": "tooltipHoist",
416
- "type": "boolean"
417
- },
418
- {
419
- "name": "active",
420
- "type": "boolean"
421
- },
422
- {
423
- "name": "disabled",
424
- "type": "boolean"
425
- },
426
- {
427
- "name": "variant",
428
- "type": "IconButtonVariant"
429
- },
430
- {
431
- "name": "reduceIconSize",
432
- "description": "是否缩小图标尺寸(部分 easyops 图标过大)",
516
+ "name": "sticky",
433
517
  "type": "boolean"
434
518
  }
435
519
  ],
@@ -437,7 +521,7 @@
437
521
  "slots": [],
438
522
  "methods": [],
439
523
  "parts": [],
440
- "description": "构件 `ai-portal.icon-button`"
524
+ "description": "构件 `ai-portal.home-container`"
441
525
  },
442
526
  {
443
527
  "name": "ai-portal.show-cases",
@@ -458,20 +542,6 @@
458
542
  "parts": [],
459
543
  "description": "构件 `ai-portal.show-cases`"
460
544
  },
461
- {
462
- "name": "ai-portal.home-container",
463
- "properties": [
464
- {
465
- "name": "sticky",
466
- "type": "boolean"
467
- }
468
- ],
469
- "events": [],
470
- "slots": [],
471
- "methods": [],
472
- "parts": [],
473
- "description": "构件 `ai-portal.home-container`"
474
- },
475
545
  {
476
546
  "name": "ai-portal.mcp-tools",
477
547
  "properties": [
@@ -491,76 +561,6 @@
491
561
  "parts": [],
492
562
  "description": "构件 `ai-portal.mcp-tools`"
493
563
  },
494
- {
495
- "name": "ai-portal.chat-box",
496
- "properties": [
497
- {
498
- "name": "disabled",
499
- "type": "boolean"
500
- },
501
- {
502
- "name": "placeholder",
503
- "type": "string"
504
- },
505
- {
506
- "name": "autoFocus",
507
- "type": "boolean"
508
- },
509
- {
510
- "name": "aiEmployees",
511
- "attribute": false,
512
- "type": "AIEmployee[]"
513
- },
514
- {
515
- "name": "commands",
516
- "attribute": false,
517
- "type": "Command[]"
518
- },
519
- {
520
- "name": "uploadOptions",
521
- "attribute": false,
522
- "type": "UploadOptions"
523
- }
524
- ],
525
- "events": [
526
- {
527
- "name": "message.submit",
528
- "description": "",
529
- "deprecated": "Use `chat.submit` event instead",
530
- "detail": {
531
- "type": "string"
532
- }
533
- },
534
- {
535
- "name": "chat.submit",
536
- "detail": {
537
- "type": "ChatPayload"
538
- }
539
- }
540
- ],
541
- "slots": [],
542
- "methods": [
543
- {
544
- "name": "setValue",
545
- "params": [
546
- {
547
- "name": "value",
548
- "type": "string"
549
- }
550
- ]
551
- },
552
- {
553
- "name": "getValue",
554
- "params": []
555
- },
556
- {
557
- "name": "focusOnInput",
558
- "params": []
559
- }
560
- ],
561
- "parts": [],
562
- "description": "大型聊天输入框,用于首页"
563
- },
564
564
  {
565
565
  "name": "ai-portal.chat-stream",
566
566
  "properties": [
@@ -719,34 +719,6 @@
719
719
  "parts": [],
720
720
  "description": "构件 `ai-portal.chat-stream`"
721
721
  },
722
- {
723
- "name": "ai-portal.ai-employees",
724
- "properties": [
725
- {
726
- "name": "list",
727
- "attribute": false,
728
- "type": "Employee[]"
729
- },
730
- {
731
- "name": "industries",
732
- "attribute": false,
733
- "type": "string[]"
734
- },
735
- {
736
- "name": "urlTemplate",
737
- "type": "string"
738
- },
739
- {
740
- "name": "stickyTop",
741
- "type": "number"
742
- }
743
- ],
744
- "events": [],
745
- "slots": [],
746
- "methods": [],
747
- "parts": [],
748
- "description": "构件 `ai-portal.ai-employees`"
749
- },
750
722
  {
751
723
  "name": "ai-portal.ai-agents",
752
724
  "properties": [
@@ -854,30 +826,32 @@
854
826
  "description": "构件 `ai-portal.tab-list`"
855
827
  },
856
828
  {
857
- "name": "ai-portal.action-buttons",
829
+ "name": "ai-portal.ai-employees",
858
830
  "properties": [
859
831
  {
860
- "name": "items",
832
+ "name": "list",
861
833
  "attribute": false,
862
- "type": "ActionItem[]"
834
+ "type": "Employee[]"
863
835
  },
864
836
  {
865
- "name": "activeKey",
866
- "type": "string | null"
867
- }
868
- ],
869
- "events": [
837
+ "name": "industries",
838
+ "attribute": false,
839
+ "type": "string[]"
840
+ },
870
841
  {
871
- "name": "change",
872
- "detail": {
873
- "type": "ActionItem | null"
874
- }
842
+ "name": "urlTemplate",
843
+ "type": "string"
844
+ },
845
+ {
846
+ "name": "stickyTop",
847
+ "type": "number"
875
848
  }
876
849
  ],
850
+ "events": [],
877
851
  "slots": [],
878
852
  "methods": [],
879
853
  "parts": [],
880
- "description": "构件 `ai-portal.action-buttons`"
854
+ "description": "构件 `ai-portal.ai-employees`"
881
855
  },
882
856
  {
883
857
  "name": "ai-portal.dropdown-select",
@@ -955,6 +929,32 @@
955
929
  "parts": [],
956
930
  "description": "构件 `ai-portal.preview-container`"
957
931
  },
932
+ {
933
+ "name": "ai-portal.action-buttons",
934
+ "properties": [
935
+ {
936
+ "name": "items",
937
+ "attribute": false,
938
+ "type": "ActionItem[]"
939
+ },
940
+ {
941
+ "name": "activeKey",
942
+ "type": "string | null"
943
+ }
944
+ ],
945
+ "events": [
946
+ {
947
+ "name": "change",
948
+ "detail": {
949
+ "type": "ActionItem | null"
950
+ }
951
+ }
952
+ ],
953
+ "slots": [],
954
+ "methods": [],
955
+ "parts": [],
956
+ "description": "构件 `ai-portal.action-buttons`"
957
+ },
958
958
  {
959
959
  "name": "ai-portal.goal-card-list",
960
960
  "properties": [
@@ -1060,6 +1060,25 @@
1060
1060
  "parts": [],
1061
1061
  "description": "构件 `ai-portal.project-conversations`"
1062
1062
  },
1063
+ {
1064
+ "name": "ai-portal.activity-timeline",
1065
+ "properties": [
1066
+ {
1067
+ "name": "list",
1068
+ "attribute": false,
1069
+ "type": "Activity[]"
1070
+ },
1071
+ {
1072
+ "name": "chatUrlTemplate",
1073
+ "type": "string"
1074
+ }
1075
+ ],
1076
+ "events": [],
1077
+ "slots": [],
1078
+ "methods": [],
1079
+ "parts": [],
1080
+ "description": "构件 `ai-portal.activity-timeline`"
1081
+ },
1063
1082
  {
1064
1083
  "name": "ai-portal.project-knowledges",
1065
1084
  "properties": [
@@ -1097,25 +1116,6 @@
1097
1116
  "parts": [],
1098
1117
  "description": "构件 `ai-portal.project-knowledges`"
1099
1118
  },
1100
- {
1101
- "name": "ai-portal.activity-timeline",
1102
- "properties": [
1103
- {
1104
- "name": "list",
1105
- "attribute": false,
1106
- "type": "Activity[]"
1107
- },
1108
- {
1109
- "name": "chatUrlTemplate",
1110
- "type": "string"
1111
- }
1112
- ],
1113
- "events": [],
1114
- "slots": [],
1115
- "methods": [],
1116
- "parts": [],
1117
- "description": "构件 `ai-portal.activity-timeline`"
1118
- },
1119
1119
  {
1120
1120
  "name": "ai-portal.chat-input",
1121
1121
  "properties": [
@@ -1316,6 +1316,33 @@
1316
1316
  "parts": [],
1317
1317
  "description": "构件 `ai-portal.elevo-card`"
1318
1318
  },
1319
+ {
1320
+ "name": "ai-portal.flow-tabs",
1321
+ "properties": [
1322
+ {
1323
+ "name": "tabs",
1324
+ "attribute": false,
1325
+ "type": "Tab[]"
1326
+ },
1327
+ {
1328
+ "name": "activeTab",
1329
+ "attribute": false,
1330
+ "type": "string"
1331
+ }
1332
+ ],
1333
+ "events": [
1334
+ {
1335
+ "name": "tab.click",
1336
+ "detail": {
1337
+ "type": "Tab"
1338
+ }
1339
+ }
1340
+ ],
1341
+ "slots": [],
1342
+ "methods": [],
1343
+ "parts": [],
1344
+ "description": "构件 `ai-portal.flow-tabs`"
1345
+ },
1319
1346
  {
1320
1347
  "name": "ai-portal.stage-flow",
1321
1348
  "properties": [
@@ -1403,33 +1430,6 @@
1403
1430
  "parts": [],
1404
1431
  "description": "构件 `ai-portal.stage-flow`"
1405
1432
  },
1406
- {
1407
- "name": "ai-portal.flow-tabs",
1408
- "properties": [
1409
- {
1410
- "name": "tabs",
1411
- "attribute": false,
1412
- "type": "Tab[]"
1413
- },
1414
- {
1415
- "name": "activeTab",
1416
- "attribute": false,
1417
- "type": "string"
1418
- }
1419
- ],
1420
- "events": [
1421
- {
1422
- "name": "tab.click",
1423
- "detail": {
1424
- "type": "Tab"
1425
- }
1426
- }
1427
- ],
1428
- "slots": [],
1429
- "methods": [],
1430
- "parts": [],
1431
- "description": "构件 `ai-portal.flow-tabs`"
1432
- },
1433
1433
  {
1434
1434
  "name": "ai-portal.running-flow",
1435
1435
  "properties": [
@@ -1590,6 +1590,38 @@
1590
1590
  "parts": [],
1591
1591
  "description": "构件 `ai-portal.notice-list`\n\n消息通知列表构件,用于展示消息列表,支持批量操作"
1592
1592
  },
1593
+ {
1594
+ "name": "ai-portal.gantt-chart",
1595
+ "properties": [
1596
+ {
1597
+ "name": "chartTitle",
1598
+ "type": "string"
1599
+ },
1600
+ {
1601
+ "name": "nodes",
1602
+ "attribute": false,
1603
+ "type": "GanttNode[]"
1604
+ }
1605
+ ],
1606
+ "events": [
1607
+ {
1608
+ "name": "node.click",
1609
+ "detail": {
1610
+ "type": "GanttNode"
1611
+ }
1612
+ },
1613
+ {
1614
+ "name": "fullscreen.click",
1615
+ "detail": {
1616
+ "type": "void"
1617
+ }
1618
+ }
1619
+ ],
1620
+ "slots": [],
1621
+ "methods": [],
1622
+ "parts": [],
1623
+ "description": "构件 `ai-portal.gantt-chart`"
1624
+ },
1593
1625
  {
1594
1626
  "name": "ai-portal.chat-panel",
1595
1627
  "properties": [
@@ -1679,38 +1711,6 @@
1679
1711
  ],
1680
1712
  "parts": [],
1681
1713
  "description": "弹出式对话面板。"
1682
- },
1683
- {
1684
- "name": "ai-portal.gantt-chart",
1685
- "properties": [
1686
- {
1687
- "name": "chartTitle",
1688
- "type": "string"
1689
- },
1690
- {
1691
- "name": "nodes",
1692
- "attribute": false,
1693
- "type": "GanttNode[]"
1694
- }
1695
- ],
1696
- "events": [
1697
- {
1698
- "name": "node.click",
1699
- "detail": {
1700
- "type": "GanttNode"
1701
- }
1702
- },
1703
- {
1704
- "name": "fullscreen.click",
1705
- "detail": {
1706
- "type": "void"
1707
- }
1708
- }
1709
- ],
1710
- "slots": [],
1711
- "methods": [],
1712
- "parts": [],
1713
- "description": "构件 `ai-portal.gantt-chart`"
1714
1714
  }
1715
1715
  ],
1716
1716
  "providers": [