@next-bricks/ai-portal 0.65.1 → 0.65.2

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 (31) hide show
  1. package/dist/bricks.json +61 -61
  2. package/dist/chunks/{2742.19b8cbd2.js → 2742.f24782f8.js} +2 -2
  3. package/dist/chunks/2742.f24782f8.js.map +1 -0
  4. package/dist/chunks/4208.7ad3b395.js +2 -0
  5. package/dist/chunks/4208.7ad3b395.js.map +1 -0
  6. package/dist/chunks/7139.b585e5ea.js +2 -0
  7. package/dist/chunks/7139.b585e5ea.js.map +1 -0
  8. package/dist/chunks/7159.bd59ed3e.js +2 -0
  9. package/dist/chunks/7159.bd59ed3e.js.map +1 -0
  10. package/dist/chunks/chat-panel.bbb24c5a.js +2 -0
  11. package/dist/chunks/chat-panel.bbb24c5a.js.map +1 -0
  12. package/dist/chunks/{main.d8edfa91.js → main.51248f49.js} +2 -2
  13. package/dist/chunks/{main.d8edfa91.js.map → main.51248f49.js.map} +1 -1
  14. package/dist/examples.json +27 -27
  15. package/dist/{index.90d9f9da.js → index.16143768.js} +2 -2
  16. package/dist/{index.90d9f9da.js.map → index.16143768.js.map} +1 -1
  17. package/dist/manifest.json +381 -381
  18. package/dist/types.json +1751 -1751
  19. package/dist-types/chat-stream/StreamContext.d.ts +1 -0
  20. package/dist-types/chat-stream/interfaces.d.ts +0 -1
  21. package/dist-types/chat-stream/useAutoScroll.d.ts +1 -0
  22. package/package.json +2 -2
  23. package/dist/chunks/2742.19b8cbd2.js.map +0 -1
  24. package/dist/chunks/4208.9304234a.js +0 -2
  25. package/dist/chunks/4208.9304234a.js.map +0 -1
  26. package/dist/chunks/7139.80d52ac3.js +0 -2
  27. package/dist/chunks/7139.80d52ac3.js.map +0 -1
  28. package/dist/chunks/7159.2fdda135.js +0 -2
  29. package/dist/chunks/7159.2fdda135.js.map +0 -1
  30. package/dist/chunks/chat-panel.ca430fc7.js +0 -2
  31. package/dist/chunks/chat-panel.ca430fc7.js.map +0 -1
@@ -3,6 +3,191 @@
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
+ },
76
+ {
77
+ "name": "ai-portal.stat-with-mini-chart",
78
+ "properties": [
79
+ {
80
+ "name": "label",
81
+ "type": "string"
82
+ },
83
+ {
84
+ "name": "value",
85
+ "type": "string"
86
+ },
87
+ {
88
+ "name": "size",
89
+ "description": "",
90
+ "default": "\"medium\"",
91
+ "type": "\"medium\" | \"small\""
92
+ },
93
+ {
94
+ "name": "lineColor",
95
+ "description": "",
96
+ "default": "\"var(--color-brand)\"",
97
+ "type": "string"
98
+ },
99
+ {
100
+ "name": "showArea",
101
+ "type": "boolean"
102
+ },
103
+ {
104
+ "name": "min",
105
+ "description": "Specify the minimum value of the y-axis.\nIf not specified, the minimum value will be calculated from the data.",
106
+ "type": "number"
107
+ },
108
+ {
109
+ "name": "max",
110
+ "description": "Specify the maximum value of the y-axis.\nIf not specified, the maximum value will be calculated from the data.",
111
+ "type": "number"
112
+ },
113
+ {
114
+ "name": "xField",
115
+ "description": "",
116
+ "default": "\"0\"",
117
+ "type": "string"
118
+ },
119
+ {
120
+ "name": "yField",
121
+ "description": "",
122
+ "default": "\"1\"",
123
+ "type": "string"
124
+ },
125
+ {
126
+ "name": "data",
127
+ "attribute": false,
128
+ "type": "Record<string, number>[]"
129
+ }
130
+ ],
131
+ "events": [],
132
+ "slots": [],
133
+ "methods": [],
134
+ "parts": [],
135
+ "description": "构件 `ai-portal.stat-with-mini-chart`"
136
+ },
137
+ {
138
+ "name": "ai-portal.home-container",
139
+ "properties": [
140
+ {
141
+ "name": "sticky",
142
+ "type": "boolean"
143
+ }
144
+ ],
145
+ "events": [],
146
+ "slots": [],
147
+ "methods": [],
148
+ "parts": [],
149
+ "description": "构件 `ai-portal.home-container`"
150
+ },
151
+ {
152
+ "name": "ai-portal.icon-button",
153
+ "properties": [
154
+ {
155
+ "name": "icon",
156
+ "attribute": false,
157
+ "type": "(GeneralIconProps & HTMLAttributes<GeneralIcon>)"
158
+ },
159
+ {
160
+ "name": "tooltip",
161
+ "type": "string"
162
+ },
163
+ {
164
+ "name": "tooltipHoist",
165
+ "type": "boolean"
166
+ },
167
+ {
168
+ "name": "active",
169
+ "type": "boolean"
170
+ },
171
+ {
172
+ "name": "disabled",
173
+ "type": "boolean"
174
+ },
175
+ {
176
+ "name": "variant",
177
+ "type": "IconButtonVariant"
178
+ },
179
+ {
180
+ "name": "reduceIconSize",
181
+ "description": "是否缩小图标尺寸(部分 easyops 图标过大)",
182
+ "type": "boolean"
183
+ }
184
+ ],
185
+ "events": [],
186
+ "slots": [],
187
+ "methods": [],
188
+ "parts": [],
189
+ "description": "构件 `ai-portal.icon-button`"
190
+ },
6
191
  {
7
192
  "name": "ai-portal.cruise-canvas",
8
193
  "properties": [
@@ -168,65 +353,23 @@
168
353
  "description": "构件 `ai-portal.cruise-canvas`"
169
354
  },
170
355
  {
171
- "name": "ai-portal.stat-with-mini-chart",
356
+ "name": "ai-portal.show-cases",
172
357
  "properties": [
173
358
  {
174
- "name": "label",
175
- "type": "string"
176
- },
177
- {
178
- "name": "value",
179
- "type": "string"
180
- },
181
- {
182
- "name": "size",
183
- "description": "",
184
- "default": "\"medium\"",
185
- "type": "\"medium\" | \"small\""
186
- },
187
- {
188
- "name": "lineColor",
189
- "description": "",
190
- "default": "\"var(--color-brand)\"",
191
- "type": "string"
192
- },
193
- {
194
- "name": "showArea",
195
- "type": "boolean"
196
- },
197
- {
198
- "name": "min",
199
- "description": "Specify the minimum value of the y-axis.\nIf not specified, the minimum value will be calculated from the data.",
200
- "type": "number"
359
+ "name": "list",
360
+ "attribute": false,
361
+ "type": "ShowCaseType[]"
201
362
  },
202
363
  {
203
- "name": "max",
204
- "description": "Specify the maximum value of the y-axis.\nIf not specified, the maximum value will be calculated from the data.",
364
+ "name": "limit",
205
365
  "type": "number"
206
- },
207
- {
208
- "name": "xField",
209
- "description": "",
210
- "default": "\"0\"",
211
- "type": "string"
212
- },
213
- {
214
- "name": "yField",
215
- "description": "",
216
- "default": "\"1\"",
217
- "type": "string"
218
- },
219
- {
220
- "name": "data",
221
- "attribute": false,
222
- "type": "Record<string, number>[]"
223
366
  }
224
367
  ],
225
368
  "events": [],
226
369
  "slots": [],
227
370
  "methods": [],
228
371
  "parts": [],
229
- "description": "构件 `ai-portal.stat-with-mini-chart`"
372
+ "description": "构件 `ai-portal.show-cases`"
230
373
  },
231
374
  {
232
375
  "name": "ai-portal.elevo-sidebar",
@@ -400,15 +543,15 @@
400
543
  "description": "构件 `ai-portal.elevo-sidebar`"
401
544
  },
402
545
  {
403
- "name": "ai-portal.show-cases",
546
+ "name": "ai-portal.mcp-tools",
404
547
  "properties": [
405
548
  {
406
549
  "name": "list",
407
550
  "attribute": false,
408
- "type": "ShowCaseType[]"
551
+ "type": "McpTool[]"
409
552
  },
410
553
  {
411
- "name": "limit",
554
+ "name": "stickyTop",
412
555
  "type": "number"
413
556
  }
414
557
  ],
@@ -416,40 +559,60 @@
416
559
  "slots": [],
417
560
  "methods": [],
418
561
  "parts": [],
419
- "description": "构件 `ai-portal.show-cases`"
562
+ "description": "构件 `ai-portal.mcp-tools`"
420
563
  },
421
564
  {
422
- "name": "ai-portal.home-container",
565
+ "name": "ai-portal.ai-employees",
423
566
  "properties": [
424
567
  {
425
- "name": "sticky",
426
- "type": "boolean"
568
+ "name": "list",
569
+ "attribute": false,
570
+ "type": "Employee[]"
571
+ },
572
+ {
573
+ "name": "industries",
574
+ "attribute": false,
575
+ "type": "string[]"
576
+ },
577
+ {
578
+ "name": "urlTemplate",
579
+ "type": "string"
580
+ },
581
+ {
582
+ "name": "stickyTop",
583
+ "type": "number"
427
584
  }
428
585
  ],
429
586
  "events": [],
430
587
  "slots": [],
431
588
  "methods": [],
432
589
  "parts": [],
433
- "description": "构件 `ai-portal.home-container`"
590
+ "description": "构件 `ai-portal.ai-employees`"
434
591
  },
435
592
  {
436
- "name": "ai-portal.mcp-tools",
593
+ "name": "ai-portal.ai-agents",
437
594
  "properties": [
438
595
  {
439
596
  "name": "list",
440
597
  "attribute": false,
441
- "type": "McpTool[]"
598
+ "type": "Agent[]"
442
599
  },
443
600
  {
444
- "name": "stickyTop",
445
- "type": "number"
601
+ "name": "urlTemplate",
602
+ "type": "string"
603
+ },
604
+ {
605
+ "name": "withContainer",
606
+ "description": "",
607
+ "deprecated": true,
608
+ "default": "true"
446
609
  }
447
610
  ],
448
611
  "events": [],
449
612
  "slots": [],
450
613
  "methods": [],
451
614
  "parts": [],
452
- "description": "构件 `ai-portal.mcp-tools`"
615
+ "description": "构件 `ai-portal.ai-agents`"
453
616
  },
454
617
  {
455
618
  "name": "ai-portal.chat-stream",
@@ -609,59 +772,6 @@
609
772
  "parts": [],
610
773
  "description": "构件 `ai-portal.chat-stream`"
611
774
  },
612
- {
613
- "name": "ai-portal.ai-employees",
614
- "properties": [
615
- {
616
- "name": "list",
617
- "attribute": false,
618
- "type": "Employee[]"
619
- },
620
- {
621
- "name": "industries",
622
- "attribute": false,
623
- "type": "string[]"
624
- },
625
- {
626
- "name": "urlTemplate",
627
- "type": "string"
628
- },
629
- {
630
- "name": "stickyTop",
631
- "type": "number"
632
- }
633
- ],
634
- "events": [],
635
- "slots": [],
636
- "methods": [],
637
- "parts": [],
638
- "description": "构件 `ai-portal.ai-employees`"
639
- },
640
- {
641
- "name": "ai-portal.ai-agents",
642
- "properties": [
643
- {
644
- "name": "list",
645
- "attribute": false,
646
- "type": "Agent[]"
647
- },
648
- {
649
- "name": "urlTemplate",
650
- "type": "string"
651
- },
652
- {
653
- "name": "withContainer",
654
- "description": "",
655
- "deprecated": true,
656
- "default": "true"
657
- }
658
- ],
659
- "events": [],
660
- "slots": [],
661
- "methods": [],
662
- "parts": [],
663
- "description": "构件 `ai-portal.ai-agents`"
664
- },
665
775
  {
666
776
  "name": "ai-portal.page-container",
667
777
  "properties": [
@@ -743,76 +853,6 @@
743
853
  ],
744
854
  "description": "构件 `ai-portal.tab-list`"
745
855
  },
746
- {
747
- "name": "ai-portal.chat-box",
748
- "properties": [
749
- {
750
- "name": "disabled",
751
- "type": "boolean"
752
- },
753
- {
754
- "name": "placeholder",
755
- "type": "string"
756
- },
757
- {
758
- "name": "autoFocus",
759
- "type": "boolean"
760
- },
761
- {
762
- "name": "aiEmployees",
763
- "attribute": false,
764
- "type": "AIEmployee[]"
765
- },
766
- {
767
- "name": "commands",
768
- "attribute": false,
769
- "type": "Command[]"
770
- },
771
- {
772
- "name": "uploadOptions",
773
- "attribute": false,
774
- "type": "UploadOptions"
775
- }
776
- ],
777
- "events": [
778
- {
779
- "name": "message.submit",
780
- "description": "",
781
- "deprecated": "Use `chat.submit` event instead",
782
- "detail": {
783
- "type": "string"
784
- }
785
- },
786
- {
787
- "name": "chat.submit",
788
- "detail": {
789
- "type": "ChatPayload"
790
- }
791
- }
792
- ],
793
- "slots": [],
794
- "methods": [
795
- {
796
- "name": "setValue",
797
- "params": [
798
- {
799
- "name": "value",
800
- "type": "string"
801
- }
802
- ]
803
- },
804
- {
805
- "name": "getValue",
806
- "params": []
807
- },
808
- {
809
- "name": "focusOnInput",
810
- "params": []
811
- }
812
- ],
813
- "parts": [],
814
- "description": "大型聊天输入框,用于首页"
815
- },
816
856
  {
817
857
  "name": "ai-portal.dropdown-select",
818
858
  "properties": [
@@ -870,91 +910,6 @@
870
910
  "parts": [],
871
911
  "description": "构件 `ai-portal.dropdown-select`"
872
912
  },
873
- {
874
- "name": "ai-portal.icon-button",
875
- "properties": [
876
- {
877
- "name": "icon",
878
- "attribute": false,
879
- "type": "(GeneralIconProps & HTMLAttributes<GeneralIcon>)"
880
- },
881
- {
882
- "name": "tooltip",
883
- "type": "string"
884
- },
885
- {
886
- "name": "tooltipHoist",
887
- "type": "boolean"
888
- },
889
- {
890
- "name": "active",
891
- "type": "boolean"
892
- },
893
- {
894
- "name": "disabled",
895
- "type": "boolean"
896
- },
897
- {
898
- "name": "variant",
899
- "type": "IconButtonVariant"
900
- },
901
- {
902
- "name": "reduceIconSize",
903
- "description": "是否缩小图标尺寸(部分 easyops 图标过大)",
904
- "type": "boolean"
905
- }
906
- ],
907
- "events": [],
908
- "slots": [],
909
- "methods": [],
910
- "parts": [],
911
- "description": "构件 `ai-portal.icon-button`"
912
- },
913
- {
914
- "name": "ai-portal.preview-container",
915
- "properties": [
916
- {
917
- "name": "source",
918
- "attribute": false,
919
- "type": "string"
920
- },
921
- {
922
- "name": "url",
923
- "type": "string"
924
- }
925
- ],
926
- "events": [],
927
- "slots": [],
928
- "methods": [],
929
- "parts": [],
930
- "description": "构件 `ai-portal.preview-container`"
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
913
  {
959
914
  "name": "ai-portal.goal-card-list",
960
915
  "properties": [
@@ -1016,7 +971,26 @@
1016
971
  }
1017
972
  ],
1018
973
  "parts": [],
1019
- "description": "构件 `ai-portal.goal-card-list`"
974
+ "description": "构件 `ai-portal.goal-card-list`"
975
+ },
976
+ {
977
+ "name": "ai-portal.preview-container",
978
+ "properties": [
979
+ {
980
+ "name": "source",
981
+ "attribute": false,
982
+ "type": "string"
983
+ },
984
+ {
985
+ "name": "url",
986
+ "type": "string"
987
+ }
988
+ ],
989
+ "events": [],
990
+ "slots": [],
991
+ "methods": [],
992
+ "parts": [],
993
+ "description": "构件 `ai-portal.preview-container`"
1020
994
  },
1021
995
  {
1022
996
  "name": "ai-portal.project-conversations",
@@ -1060,6 +1034,25 @@
1060
1034
  "parts": [],
1061
1035
  "description": "构件 `ai-portal.project-conversations`"
1062
1036
  },
1037
+ {
1038
+ "name": "ai-portal.activity-timeline",
1039
+ "properties": [
1040
+ {
1041
+ "name": "list",
1042
+ "attribute": false,
1043
+ "type": "Activity[]"
1044
+ },
1045
+ {
1046
+ "name": "chatUrlTemplate",
1047
+ "type": "string"
1048
+ }
1049
+ ],
1050
+ "events": [],
1051
+ "slots": [],
1052
+ "methods": [],
1053
+ "parts": [],
1054
+ "description": "构件 `ai-portal.activity-timeline`"
1055
+ },
1063
1056
  {
1064
1057
  "name": "ai-portal.project-knowledges",
1065
1058
  "properties": [
@@ -1097,6 +1090,32 @@
1097
1090
  "parts": [],
1098
1091
  "description": "构件 `ai-portal.project-knowledges`"
1099
1092
  },
1093
+ {
1094
+ "name": "ai-portal.action-buttons",
1095
+ "properties": [
1096
+ {
1097
+ "name": "items",
1098
+ "attribute": false,
1099
+ "type": "ActionItem[]"
1100
+ },
1101
+ {
1102
+ "name": "activeKey",
1103
+ "type": "string | null"
1104
+ }
1105
+ ],
1106
+ "events": [
1107
+ {
1108
+ "name": "change",
1109
+ "detail": {
1110
+ "type": "ActionItem | null"
1111
+ }
1112
+ }
1113
+ ],
1114
+ "slots": [],
1115
+ "methods": [],
1116
+ "parts": [],
1117
+ "description": "构件 `ai-portal.action-buttons`"
1118
+ },
1100
1119
  {
1101
1120
  "name": "ai-portal.chat-input",
1102
1121
  "properties": [
@@ -1192,25 +1211,6 @@
1192
1211
  "parts": [],
1193
1212
  "description": "构件 `ai-portal.elevo-logo`"
1194
1213
  },
1195
- {
1196
- "name": "ai-portal.activity-timeline",
1197
- "properties": [
1198
- {
1199
- "name": "list",
1200
- "attribute": false,
1201
- "type": "Activity[]"
1202
- },
1203
- {
1204
- "name": "chatUrlTemplate",
1205
- "type": "string"
1206
- }
1207
- ],
1208
- "events": [],
1209
- "slots": [],
1210
- "methods": [],
1211
- "parts": [],
1212
- "description": "构件 `ai-portal.activity-timeline`"
1213
- },
1214
1214
  {
1215
1215
  "name": "ai-portal.show-case",
1216
1216
  "properties": [
@@ -1251,6 +1251,37 @@
1251
1251
  "parts": [],
1252
1252
  "description": "构件 `ai-portal.blank-state`"
1253
1253
  },
1254
+ {
1255
+ "name": "ai-portal.elevo-card",
1256
+ "properties": [
1257
+ {
1258
+ "name": "cardTitle",
1259
+ "type": "string"
1260
+ },
1261
+ {
1262
+ "name": "description",
1263
+ "type": "string"
1264
+ },
1265
+ {
1266
+ "name": "url",
1267
+ "type": "string"
1268
+ },
1269
+ {
1270
+ "name": "avatar",
1271
+ "attribute": false,
1272
+ "type": "string | GeneralIconProps"
1273
+ },
1274
+ {
1275
+ "name": "avatarType",
1276
+ "type": "\"icon\" | \"image\""
1277
+ }
1278
+ ],
1279
+ "events": [],
1280
+ "slots": [],
1281
+ "methods": [],
1282
+ "parts": [],
1283
+ "description": "构件 `ai-portal.elevo-card`"
1284
+ },
1254
1285
  {
1255
1286
  "name": "ai-portal.sticky-container",
1256
1287
  "properties": [
@@ -1285,37 +1316,6 @@
1285
1316
  "parts": [],
1286
1317
  "description": "构件 `ai-portal.sticky-container`"
1287
1318
  },
1288
- {
1289
- "name": "ai-portal.elevo-card",
1290
- "properties": [
1291
- {
1292
- "name": "cardTitle",
1293
- "type": "string"
1294
- },
1295
- {
1296
- "name": "description",
1297
- "type": "string"
1298
- },
1299
- {
1300
- "name": "url",
1301
- "type": "string"
1302
- },
1303
- {
1304
- "name": "avatar",
1305
- "attribute": false,
1306
- "type": "string | GeneralIconProps"
1307
- },
1308
- {
1309
- "name": "avatarType",
1310
- "type": "\"icon\" | \"image\""
1311
- }
1312
- ],
1313
- "events": [],
1314
- "slots": [],
1315
- "methods": [],
1316
- "parts": [],
1317
- "description": "构件 `ai-portal.elevo-card`"
1318
- },
1319
1319
  {
1320
1320
  "name": "ai-portal.flow-tabs",
1321
1321
  "properties": [
@@ -1529,6 +1529,67 @@
1529
1529
  "parts": [],
1530
1530
  "description": "构件 `ai-portal.notice-dropdown`\n\n消息通知下拉框构件,用于展示消息列表"
1531
1531
  },
1532
+ {
1533
+ "name": "ai-portal.notice-list",
1534
+ "properties": [
1535
+ {
1536
+ "name": "dataSource",
1537
+ "description": "消息数据列表",
1538
+ "attribute": false,
1539
+ "type": "NoticeItem[]"
1540
+ },
1541
+ {
1542
+ "name": "emptyText",
1543
+ "description": "空状态文案",
1544
+ "type": "string"
1545
+ },
1546
+ {
1547
+ "name": "urlTemplate",
1548
+ "description": "详情链接",
1549
+ "type": "string"
1550
+ },
1551
+ {
1552
+ "name": "urlTarget",
1553
+ "description": "详情链接目标",
1554
+ "type": "Target"
1555
+ },
1556
+ {
1557
+ "name": "selectedIds",
1558
+ "description": "选中的消息 ID 数组",
1559
+ "attribute": false,
1560
+ "type": "string[]"
1561
+ }
1562
+ ],
1563
+ "events": [
1564
+ {
1565
+ "name": "notice.click",
1566
+ "description": "消息项点击事件",
1567
+ "detail": {
1568
+ "description": "消息项数据",
1569
+ "type": "NoticeItem"
1570
+ }
1571
+ },
1572
+ {
1573
+ "name": "mark.items.read",
1574
+ "description": "标记消息项已读事件",
1575
+ "detail": {
1576
+ "description": "选中的消息 ID 数组",
1577
+ "type": "NoticeItem[]"
1578
+ }
1579
+ },
1580
+ {
1581
+ "name": "mark.all.read",
1582
+ "description": "全部已读事件",
1583
+ "detail": {
1584
+ "type": "void"
1585
+ }
1586
+ }
1587
+ ],
1588
+ "slots": [],
1589
+ "methods": [],
1590
+ "parts": [],
1591
+ "description": "构件 `ai-portal.notice-list`\n\n消息通知列表构件,用于展示消息列表,支持批量操作"
1592
+ },
1532
1593
  {
1533
1594
  "name": "ai-portal.chat-panel",
1534
1595
  "properties": [
@@ -1618,67 +1679,6 @@
1618
1679
  ],
1619
1680
  "parts": [],
1620
1681
  "description": "弹出式对话面板。"
1621
- },
1622
- {
1623
- "name": "ai-portal.notice-list",
1624
- "properties": [
1625
- {
1626
- "name": "dataSource",
1627
- "description": "消息数据列表",
1628
- "attribute": false,
1629
- "type": "NoticeItem[]"
1630
- },
1631
- {
1632
- "name": "emptyText",
1633
- "description": "空状态文案",
1634
- "type": "string"
1635
- },
1636
- {
1637
- "name": "urlTemplate",
1638
- "description": "详情链接",
1639
- "type": "string"
1640
- },
1641
- {
1642
- "name": "urlTarget",
1643
- "description": "详情链接目标",
1644
- "type": "Target"
1645
- },
1646
- {
1647
- "name": "selectedIds",
1648
- "description": "选中的消息 ID 数组",
1649
- "attribute": false,
1650
- "type": "string[]"
1651
- }
1652
- ],
1653
- "events": [
1654
- {
1655
- "name": "notice.click",
1656
- "description": "消息项点击事件",
1657
- "detail": {
1658
- "description": "消息项数据",
1659
- "type": "NoticeItem"
1660
- }
1661
- },
1662
- {
1663
- "name": "mark.items.read",
1664
- "description": "标记消息项已读事件",
1665
- "detail": {
1666
- "description": "选中的消息 ID 数组",
1667
- "type": "NoticeItem[]"
1668
- }
1669
- },
1670
- {
1671
- "name": "mark.all.read",
1672
- "description": "全部已读事件",
1673
- "detail": {
1674
- "type": "void"
1675
- }
1676
- }
1677
- ],
1678
- "slots": [],
1679
- "methods": [],
1680
- "parts": [],
1681
- "description": "构件 `ai-portal.notice-list`\n\n消息通知列表构件,用于展示消息列表,支持批量操作"
1682
1682
  }
1683
1683
  ],
1684
1684
  "providers": [