@next-bricks/ai-portal 0.59.1 → 0.59.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.
package/dist/types.json CHANGED
@@ -103,91 +103,6 @@
103
103
  "events": [],
104
104
  "methods": []
105
105
  },
106
- "ai-portal.icon-button": {
107
- "properties": [
108
- {
109
- "name": "icon",
110
- "annotation": {
111
- "type": "reference",
112
- "typeName": {
113
- "type": "identifier",
114
- "name": "GeneralIconProps"
115
- }
116
- }
117
- },
118
- {
119
- "name": "tooltip",
120
- "annotation": {
121
- "type": "keyword",
122
- "value": "string"
123
- }
124
- },
125
- {
126
- "name": "tooltipHoist",
127
- "annotation": {
128
- "type": "keyword",
129
- "value": "boolean"
130
- }
131
- },
132
- {
133
- "name": "disabled",
134
- "annotation": {
135
- "type": "keyword",
136
- "value": "boolean"
137
- }
138
- },
139
- {
140
- "name": "variant",
141
- "annotation": {
142
- "type": "reference",
143
- "typeName": {
144
- "type": "identifier",
145
- "name": "IconButtonVariant"
146
- }
147
- }
148
- },
149
- {
150
- "name": "reduceIconSize",
151
- "annotation": {
152
- "type": "keyword",
153
- "value": "boolean"
154
- }
155
- }
156
- ],
157
- "events": [],
158
- "methods": [],
159
- "types": [
160
- {
161
- "type": "typeAlias",
162
- "name": "IconButtonVariant",
163
- "annotation": {
164
- "type": "union",
165
- "types": [
166
- {
167
- "type": "jsLiteral",
168
- "value": "default"
169
- },
170
- {
171
- "type": "jsLiteral",
172
- "value": "light"
173
- },
174
- {
175
- "type": "jsLiteral",
176
- "value": "mini"
177
- },
178
- {
179
- "type": "jsLiteral",
180
- "value": "mini-light"
181
- },
182
- {
183
- "type": "jsLiteral",
184
- "value": "bordered"
185
- }
186
- ]
187
- }
188
- }
189
- ]
190
- },
191
106
  "ai-portal.home-container": {
192
107
  "properties": [
193
108
  {
@@ -309,198 +224,6 @@
309
224
  }
310
225
  ]
311
226
  },
312
- "ai-portal.call-tool": {
313
- "type": "provider",
314
- "params": [
315
- {
316
- "name": "tool",
317
- "annotation": {
318
- "type": "reference",
319
- "typeName": {
320
- "type": "identifier",
321
- "name": "ToolInfo"
322
- }
323
- }
324
- },
325
- {
326
- "name": "params",
327
- "annotation": {
328
- "type": "reference",
329
- "typeName": {
330
- "type": "identifier",
331
- "name": "Record"
332
- },
333
- "typeParameters": {
334
- "type": "typeParameterInstantiation",
335
- "params": [
336
- {
337
- "type": "keyword",
338
- "value": "string"
339
- },
340
- {
341
- "type": "keyword",
342
- "value": "unknown"
343
- }
344
- ]
345
- }
346
- }
347
- }
348
- ],
349
- "returns": {
350
- "annotation": {
351
- "type": "reference",
352
- "typeName": {
353
- "type": "identifier",
354
- "name": "Promise"
355
- },
356
- "typeParameters": {
357
- "type": "typeParameterInstantiation",
358
- "params": [
359
- {
360
- "type": "keyword",
361
- "value": "unknown"
362
- }
363
- ]
364
- }
365
- }
366
- }
367
- },
368
- "ai-portal.tab-list": {
369
- "properties": [
370
- {
371
- "name": "tabs",
372
- "annotation": {
373
- "type": "array",
374
- "elementType": {
375
- "type": "reference",
376
- "typeName": {
377
- "type": "identifier",
378
- "name": "Tab"
379
- }
380
- }
381
- }
382
- },
383
- {
384
- "name": "activeTab",
385
- "annotation": {
386
- "type": "keyword",
387
- "value": "string"
388
- }
389
- }
390
- ],
391
- "events": [
392
- {
393
- "name": "tab.click",
394
- "detail": {
395
- "annotation": {
396
- "type": "reference",
397
- "typeName": {
398
- "type": "identifier",
399
- "name": "Tab"
400
- }
401
- }
402
- }
403
- }
404
- ],
405
- "methods": [],
406
- "types": [
407
- {
408
- "type": "interface",
409
- "name": "Tab",
410
- "body": [
411
- {
412
- "type": "propertySignature",
413
- "key": {
414
- "type": "identifier",
415
- "name": "id"
416
- },
417
- "annotation": {
418
- "type": "keyword",
419
- "value": "string"
420
- },
421
- "computed": false
422
- },
423
- {
424
- "type": "propertySignature",
425
- "key": {
426
- "type": "identifier",
427
- "name": "label"
428
- },
429
- "annotation": {
430
- "type": "keyword",
431
- "value": "string"
432
- },
433
- "computed": false
434
- }
435
- ]
436
- }
437
- ]
438
- },
439
- "ai-portal.set-chat-command": {
440
- "type": "provider",
441
- "params": [
442
- {
443
- "name": "command",
444
- "annotation": {
445
- "type": "union",
446
- "types": [
447
- {
448
- "type": "reference",
449
- "typeName": {
450
- "type": "identifier",
451
- "name": "ChatCommand"
452
- }
453
- },
454
- {
455
- "type": "keyword",
456
- "value": "null"
457
- }
458
- ]
459
- }
460
- }
461
- ],
462
- "returns": {
463
- "annotation": {
464
- "type": "keyword",
465
- "value": "void"
466
- }
467
- },
468
- "types": [
469
- {
470
- "type": "interface",
471
- "name": "ChatCommand",
472
- "body": [
473
- {
474
- "type": "propertySignature",
475
- "key": {
476
- "type": "identifier",
477
- "name": "command"
478
- },
479
- "annotation": {
480
- "type": "keyword",
481
- "value": "string"
482
- },
483
- "computed": false
484
- },
485
- {
486
- "type": "propertySignature",
487
- "key": {
488
- "type": "identifier",
489
- "name": "payload"
490
- },
491
- "annotation": {
492
- "type": "reference",
493
- "typeName": {
494
- "type": "identifier",
495
- "name": "CommandPayload"
496
- }
497
- },
498
- "computed": false
499
- }
500
- ]
501
- }
502
- ]
503
- },
504
227
  "ai-portal.save-request-store": {
505
228
  "type": "provider",
506
229
  "params": [
@@ -992,39 +715,257 @@
992
715
  }
993
716
  ]
994
717
  },
995
- "ai-portal.clear-request-store": {
996
- "type": "provider",
997
- "params": [],
998
- "returns": {
999
- "annotation": {
1000
- "type": "keyword",
1001
- "value": "void"
1002
- }
1003
- }
1004
- },
1005
- "ai-portal.elevo-logo": {
1006
- "properties": [],
1007
- "events": [],
1008
- "methods": []
1009
- },
1010
- "ai-portal.blank-state": {
718
+ "ai-portal.clear-request-store": {
719
+ "type": "provider",
720
+ "params": [],
721
+ "returns": {
722
+ "annotation": {
723
+ "type": "keyword",
724
+ "value": "void"
725
+ }
726
+ }
727
+ },
728
+ "ai-portal.call-tool": {
729
+ "type": "provider",
730
+ "params": [
731
+ {
732
+ "name": "tool",
733
+ "annotation": {
734
+ "type": "reference",
735
+ "typeName": {
736
+ "type": "identifier",
737
+ "name": "ToolInfo"
738
+ }
739
+ }
740
+ },
741
+ {
742
+ "name": "params",
743
+ "annotation": {
744
+ "type": "reference",
745
+ "typeName": {
746
+ "type": "identifier",
747
+ "name": "Record"
748
+ },
749
+ "typeParameters": {
750
+ "type": "typeParameterInstantiation",
751
+ "params": [
752
+ {
753
+ "type": "keyword",
754
+ "value": "string"
755
+ },
756
+ {
757
+ "type": "keyword",
758
+ "value": "unknown"
759
+ }
760
+ ]
761
+ }
762
+ }
763
+ }
764
+ ],
765
+ "returns": {
766
+ "annotation": {
767
+ "type": "reference",
768
+ "typeName": {
769
+ "type": "identifier",
770
+ "name": "Promise"
771
+ },
772
+ "typeParameters": {
773
+ "type": "typeParameterInstantiation",
774
+ "params": [
775
+ {
776
+ "type": "keyword",
777
+ "value": "unknown"
778
+ }
779
+ ]
780
+ }
781
+ }
782
+ }
783
+ },
784
+ "ai-portal.set-chat-command": {
785
+ "type": "provider",
786
+ "params": [
787
+ {
788
+ "name": "command",
789
+ "annotation": {
790
+ "type": "union",
791
+ "types": [
792
+ {
793
+ "type": "reference",
794
+ "typeName": {
795
+ "type": "identifier",
796
+ "name": "ChatCommand"
797
+ }
798
+ },
799
+ {
800
+ "type": "keyword",
801
+ "value": "null"
802
+ }
803
+ ]
804
+ }
805
+ }
806
+ ],
807
+ "returns": {
808
+ "annotation": {
809
+ "type": "keyword",
810
+ "value": "void"
811
+ }
812
+ },
813
+ "types": [
814
+ {
815
+ "type": "interface",
816
+ "name": "ChatCommand",
817
+ "body": [
818
+ {
819
+ "type": "propertySignature",
820
+ "key": {
821
+ "type": "identifier",
822
+ "name": "command"
823
+ },
824
+ "annotation": {
825
+ "type": "keyword",
826
+ "value": "string"
827
+ },
828
+ "computed": false
829
+ },
830
+ {
831
+ "type": "propertySignature",
832
+ "key": {
833
+ "type": "identifier",
834
+ "name": "payload"
835
+ },
836
+ "annotation": {
837
+ "type": "reference",
838
+ "typeName": {
839
+ "type": "identifier",
840
+ "name": "CommandPayload"
841
+ }
842
+ },
843
+ "computed": false
844
+ }
845
+ ]
846
+ }
847
+ ]
848
+ },
849
+ "ai-portal.tab-list": {
850
+ "properties": [
851
+ {
852
+ "name": "tabs",
853
+ "annotation": {
854
+ "type": "array",
855
+ "elementType": {
856
+ "type": "reference",
857
+ "typeName": {
858
+ "type": "identifier",
859
+ "name": "Tab"
860
+ }
861
+ }
862
+ }
863
+ },
864
+ {
865
+ "name": "activeTab",
866
+ "annotation": {
867
+ "type": "keyword",
868
+ "value": "string"
869
+ }
870
+ }
871
+ ],
872
+ "events": [
873
+ {
874
+ "name": "tab.click",
875
+ "detail": {
876
+ "annotation": {
877
+ "type": "reference",
878
+ "typeName": {
879
+ "type": "identifier",
880
+ "name": "Tab"
881
+ }
882
+ }
883
+ }
884
+ }
885
+ ],
886
+ "methods": [],
887
+ "types": [
888
+ {
889
+ "type": "interface",
890
+ "name": "Tab",
891
+ "body": [
892
+ {
893
+ "type": "propertySignature",
894
+ "key": {
895
+ "type": "identifier",
896
+ "name": "id"
897
+ },
898
+ "annotation": {
899
+ "type": "keyword",
900
+ "value": "string"
901
+ },
902
+ "computed": false
903
+ },
904
+ {
905
+ "type": "propertySignature",
906
+ "key": {
907
+ "type": "identifier",
908
+ "name": "label"
909
+ },
910
+ "annotation": {
911
+ "type": "keyword",
912
+ "value": "string"
913
+ },
914
+ "computed": false
915
+ }
916
+ ]
917
+ }
918
+ ]
919
+ },
920
+ "ai-portal.icon-button": {
1011
921
  "properties": [
1012
922
  {
1013
- "name": "illustration",
923
+ "name": "icon",
1014
924
  "annotation": {
1015
925
  "type": "reference",
1016
926
  "typeName": {
1017
927
  "type": "identifier",
1018
- "name": "BlankStateIllustration"
928
+ "name": "GeneralIconProps"
1019
929
  }
1020
930
  }
1021
931
  },
1022
932
  {
1023
- "name": "description",
933
+ "name": "tooltip",
1024
934
  "annotation": {
1025
935
  "type": "keyword",
1026
936
  "value": "string"
1027
937
  }
938
+ },
939
+ {
940
+ "name": "tooltipHoist",
941
+ "annotation": {
942
+ "type": "keyword",
943
+ "value": "boolean"
944
+ }
945
+ },
946
+ {
947
+ "name": "disabled",
948
+ "annotation": {
949
+ "type": "keyword",
950
+ "value": "boolean"
951
+ }
952
+ },
953
+ {
954
+ "name": "variant",
955
+ "annotation": {
956
+ "type": "reference",
957
+ "typeName": {
958
+ "type": "identifier",
959
+ "name": "IconButtonVariant"
960
+ }
961
+ }
962
+ },
963
+ {
964
+ "name": "reduceIconSize",
965
+ "annotation": {
966
+ "type": "keyword",
967
+ "value": "boolean"
968
+ }
1028
969
  }
1029
970
  ],
1030
971
  "events": [],
@@ -1032,45 +973,54 @@
1032
973
  "types": [
1033
974
  {
1034
975
  "type": "typeAlias",
1035
- "name": "BlankStateIllustration",
976
+ "name": "IconButtonVariant",
1036
977
  "annotation": {
1037
978
  "type": "union",
1038
979
  "types": [
1039
980
  {
1040
981
  "type": "jsLiteral",
1041
- "value": "goals"
982
+ "value": "default"
1042
983
  },
1043
984
  {
1044
985
  "type": "jsLiteral",
1045
- "value": "activities"
986
+ "value": "light"
1046
987
  },
1047
988
  {
1048
989
  "type": "jsLiteral",
1049
- "value": "collaboration-spaces"
990
+ "value": "mini"
1050
991
  },
1051
992
  {
1052
993
  "type": "jsLiteral",
1053
- "value": "serviceflows"
994
+ "value": "mini-light"
995
+ },
996
+ {
997
+ "type": "jsLiteral",
998
+ "value": "bordered"
1054
999
  }
1055
1000
  ]
1056
1001
  }
1057
1002
  }
1058
1003
  ]
1059
1004
  },
1060
- "ai-portal.sticky-container": {
1005
+ "ai-portal.elevo-logo": {
1006
+ "properties": [],
1007
+ "events": [],
1008
+ "methods": []
1009
+ },
1010
+ "ai-portal.blank-state": {
1061
1011
  "properties": [
1062
1012
  {
1063
- "name": "variant",
1013
+ "name": "illustration",
1064
1014
  "annotation": {
1065
1015
  "type": "reference",
1066
1016
  "typeName": {
1067
1017
  "type": "identifier",
1068
- "name": "StickyContainerVariant"
1018
+ "name": "BlankStateIllustration"
1069
1019
  }
1070
1020
  }
1071
1021
  },
1072
1022
  {
1073
- "name": "textContent",
1023
+ "name": "description",
1074
1024
  "annotation": {
1075
1025
  "type": "keyword",
1076
1026
  "value": "string"
@@ -1082,17 +1032,25 @@
1082
1032
  "types": [
1083
1033
  {
1084
1034
  "type": "typeAlias",
1085
- "name": "StickyContainerVariant",
1035
+ "name": "BlankStateIllustration",
1086
1036
  "annotation": {
1087
1037
  "type": "union",
1088
1038
  "types": [
1089
1039
  {
1090
1040
  "type": "jsLiteral",
1091
- "value": "default"
1041
+ "value": "goals"
1092
1042
  },
1093
1043
  {
1094
1044
  "type": "jsLiteral",
1095
- "value": "home"
1045
+ "value": "activities"
1046
+ },
1047
+ {
1048
+ "type": "jsLiteral",
1049
+ "value": "collaboration-spaces"
1050
+ },
1051
+ {
1052
+ "type": "jsLiteral",
1053
+ "value": "serviceflows"
1096
1054
  }
1097
1055
  ]
1098
1056
  }
@@ -1161,6 +1119,48 @@
1161
1119
  "events": [],
1162
1120
  "methods": []
1163
1121
  },
1122
+ "ai-portal.sticky-container": {
1123
+ "properties": [
1124
+ {
1125
+ "name": "variant",
1126
+ "annotation": {
1127
+ "type": "reference",
1128
+ "typeName": {
1129
+ "type": "identifier",
1130
+ "name": "StickyContainerVariant"
1131
+ }
1132
+ }
1133
+ },
1134
+ {
1135
+ "name": "textContent",
1136
+ "annotation": {
1137
+ "type": "keyword",
1138
+ "value": "string"
1139
+ }
1140
+ }
1141
+ ],
1142
+ "events": [],
1143
+ "methods": [],
1144
+ "types": [
1145
+ {
1146
+ "type": "typeAlias",
1147
+ "name": "StickyContainerVariant",
1148
+ "annotation": {
1149
+ "type": "union",
1150
+ "types": [
1151
+ {
1152
+ "type": "jsLiteral",
1153
+ "value": "default"
1154
+ },
1155
+ {
1156
+ "type": "jsLiteral",
1157
+ "value": "home"
1158
+ }
1159
+ ]
1160
+ }
1161
+ }
1162
+ ]
1163
+ },
1164
1164
  "ai-portal.project-knowledges": {
1165
1165
  "properties": [
1166
1166
  {
@@ -1656,11 +1656,108 @@
1656
1656
  "type": "propertySignature",
1657
1657
  "key": {
1658
1658
  "type": "identifier",
1659
- "name": "avatar"
1659
+ "name": "avatar"
1660
+ },
1661
+ "annotation": {
1662
+ "type": "keyword",
1663
+ "value": "string"
1664
+ },
1665
+ "optional": true,
1666
+ "computed": false
1667
+ }
1668
+ ]
1669
+ }
1670
+ ]
1671
+ },
1672
+ "ai-portal.ai-agents": {
1673
+ "properties": [
1674
+ {
1675
+ "name": "list",
1676
+ "annotation": {
1677
+ "type": "array",
1678
+ "elementType": {
1679
+ "type": "reference",
1680
+ "typeName": {
1681
+ "type": "identifier",
1682
+ "name": "Agent"
1683
+ }
1684
+ }
1685
+ }
1686
+ },
1687
+ {
1688
+ "name": "urlTemplate",
1689
+ "annotation": {
1690
+ "type": "keyword",
1691
+ "value": "string"
1692
+ }
1693
+ },
1694
+ {
1695
+ "name": "withContainer",
1696
+ "annotation": {
1697
+ "type": "keyword",
1698
+ "value": "boolean"
1699
+ }
1700
+ }
1701
+ ],
1702
+ "events": [],
1703
+ "methods": [],
1704
+ "types": [
1705
+ {
1706
+ "type": "interface",
1707
+ "name": "Agent",
1708
+ "body": [
1709
+ {
1710
+ "type": "propertySignature",
1711
+ "key": {
1712
+ "type": "identifier",
1713
+ "name": "name"
1714
+ },
1715
+ "annotation": {
1716
+ "type": "keyword",
1717
+ "value": "string"
1718
+ },
1719
+ "computed": false
1720
+ },
1721
+ {
1722
+ "type": "propertySignature",
1723
+ "key": {
1724
+ "type": "identifier",
1725
+ "name": "description"
1726
+ },
1727
+ "annotation": {
1728
+ "type": "keyword",
1729
+ "value": "string"
1730
+ },
1731
+ "computed": false
1732
+ },
1733
+ {
1734
+ "type": "propertySignature",
1735
+ "key": {
1736
+ "type": "identifier",
1737
+ "name": "icon"
1738
+ },
1739
+ "annotation": {
1740
+ "type": "reference",
1741
+ "typeName": {
1742
+ "type": "identifier",
1743
+ "name": "GeneralIconProps"
1744
+ }
1745
+ },
1746
+ "optional": true,
1747
+ "computed": false
1748
+ },
1749
+ {
1750
+ "type": "propertySignature",
1751
+ "key": {
1752
+ "type": "identifier",
1753
+ "name": "tags"
1660
1754
  },
1661
1755
  "annotation": {
1662
- "type": "keyword",
1663
- "value": "string"
1756
+ "type": "array",
1757
+ "elementType": {
1758
+ "type": "keyword",
1759
+ "value": "string"
1760
+ }
1664
1761
  },
1665
1762
  "optional": true,
1666
1763
  "computed": false
@@ -1838,103 +1935,6 @@
1838
1935
  }
1839
1936
  ]
1840
1937
  },
1841
- "ai-portal.ai-agents": {
1842
- "properties": [
1843
- {
1844
- "name": "list",
1845
- "annotation": {
1846
- "type": "array",
1847
- "elementType": {
1848
- "type": "reference",
1849
- "typeName": {
1850
- "type": "identifier",
1851
- "name": "Agent"
1852
- }
1853
- }
1854
- }
1855
- },
1856
- {
1857
- "name": "urlTemplate",
1858
- "annotation": {
1859
- "type": "keyword",
1860
- "value": "string"
1861
- }
1862
- },
1863
- {
1864
- "name": "withContainer",
1865
- "annotation": {
1866
- "type": "keyword",
1867
- "value": "boolean"
1868
- }
1869
- }
1870
- ],
1871
- "events": [],
1872
- "methods": [],
1873
- "types": [
1874
- {
1875
- "type": "interface",
1876
- "name": "Agent",
1877
- "body": [
1878
- {
1879
- "type": "propertySignature",
1880
- "key": {
1881
- "type": "identifier",
1882
- "name": "name"
1883
- },
1884
- "annotation": {
1885
- "type": "keyword",
1886
- "value": "string"
1887
- },
1888
- "computed": false
1889
- },
1890
- {
1891
- "type": "propertySignature",
1892
- "key": {
1893
- "type": "identifier",
1894
- "name": "description"
1895
- },
1896
- "annotation": {
1897
- "type": "keyword",
1898
- "value": "string"
1899
- },
1900
- "computed": false
1901
- },
1902
- {
1903
- "type": "propertySignature",
1904
- "key": {
1905
- "type": "identifier",
1906
- "name": "icon"
1907
- },
1908
- "annotation": {
1909
- "type": "reference",
1910
- "typeName": {
1911
- "type": "identifier",
1912
- "name": "GeneralIconProps"
1913
- }
1914
- },
1915
- "optional": true,
1916
- "computed": false
1917
- },
1918
- {
1919
- "type": "propertySignature",
1920
- "key": {
1921
- "type": "identifier",
1922
- "name": "tags"
1923
- },
1924
- "annotation": {
1925
- "type": "array",
1926
- "elementType": {
1927
- "type": "keyword",
1928
- "value": "string"
1929
- }
1930
- },
1931
- "optional": true,
1932
- "computed": false
1933
- }
1934
- ]
1935
- }
1936
- ]
1937
- },
1938
1938
  "ai-portal.preview-container": {
1939
1939
  "properties": [
1940
1940
  {
@@ -4316,7 +4316,7 @@
4316
4316
  }
4317
4317
  ]
4318
4318
  },
4319
- "ai-portal.notice-list": {
4319
+ "ai-portal.notice-dropdown": {
4320
4320
  "properties": [
4321
4321
  {
4322
4322
  "name": "dataSource",
@@ -4331,6 +4331,16 @@
4331
4331
  }
4332
4332
  }
4333
4333
  },
4334
+ {
4335
+ "name": "popoverPlacement",
4336
+ "annotation": {
4337
+ "type": "reference",
4338
+ "typeName": {
4339
+ "type": "identifier",
4340
+ "name": "Placement"
4341
+ }
4342
+ }
4343
+ },
4334
4344
  {
4335
4345
  "name": "emptyText",
4336
4346
  "annotation": {
@@ -4338,6 +4348,13 @@
4338
4348
  "value": "string"
4339
4349
  }
4340
4350
  },
4351
+ {
4352
+ "name": "notifyCenterUrl",
4353
+ "annotation": {
4354
+ "type": "keyword",
4355
+ "value": "string"
4356
+ }
4357
+ },
4341
4358
  {
4342
4359
  "name": "urlTemplate",
4343
4360
  "annotation": {
@@ -4356,14 +4373,44 @@
4356
4373
  }
4357
4374
  },
4358
4375
  {
4359
- "name": "selectedIds",
4376
+ "name": "dropdownMaxWidth",
4360
4377
  "annotation": {
4361
- "type": "array",
4362
- "elementType": {
4363
- "type": "keyword",
4364
- "value": "string"
4378
+ "type": "union",
4379
+ "types": [
4380
+ {
4381
+ "type": "keyword",
4382
+ "value": "string"
4383
+ },
4384
+ {
4385
+ "type": "keyword",
4386
+ "value": "number"
4387
+ }
4388
+ ]
4389
+ }
4390
+ },
4391
+ {
4392
+ "name": "dropdownContentStyle",
4393
+ "annotation": {
4394
+ "type": "reference",
4395
+ "typeName": {
4396
+ "type": "qualifiedName",
4397
+ "left": {
4398
+ "type": "identifier",
4399
+ "name": "React"
4400
+ },
4401
+ "right": {
4402
+ "type": "identifier",
4403
+ "name": "CSSProperties"
4404
+ }
4365
4405
  }
4366
4406
  }
4407
+ },
4408
+ {
4409
+ "name": "hideNotifyCenterButton",
4410
+ "annotation": {
4411
+ "type": "keyword",
4412
+ "value": "boolean"
4413
+ }
4367
4414
  }
4368
4415
  ],
4369
4416
  "events": [
@@ -4379,21 +4426,6 @@
4379
4426
  }
4380
4427
  }
4381
4428
  },
4382
- {
4383
- "name": "mark.items.read",
4384
- "detail": {
4385
- "annotation": {
4386
- "type": "array",
4387
- "elementType": {
4388
- "type": "reference",
4389
- "typeName": {
4390
- "type": "identifier",
4391
- "name": "NoticeItem"
4392
- }
4393
- }
4394
- }
4395
- }
4396
- },
4397
4429
  {
4398
4430
  "name": "mark.all.read",
4399
4431
  "detail": {
@@ -4487,7 +4519,7 @@
4487
4519
  }
4488
4520
  ]
4489
4521
  },
4490
- "ai-portal.notice-dropdown": {
4522
+ "ai-portal.notice-list": {
4491
4523
  "properties": [
4492
4524
  {
4493
4525
  "name": "dataSource",
@@ -4502,16 +4534,6 @@
4502
4534
  }
4503
4535
  }
4504
4536
  },
4505
- {
4506
- "name": "popoverPlacement",
4507
- "annotation": {
4508
- "type": "reference",
4509
- "typeName": {
4510
- "type": "identifier",
4511
- "name": "Placement"
4512
- }
4513
- }
4514
- },
4515
4537
  {
4516
4538
  "name": "emptyText",
4517
4539
  "annotation": {
@@ -4519,13 +4541,6 @@
4519
4541
  "value": "string"
4520
4542
  }
4521
4543
  },
4522
- {
4523
- "name": "notifyCenterUrl",
4524
- "annotation": {
4525
- "type": "keyword",
4526
- "value": "string"
4527
- }
4528
- },
4529
4544
  {
4530
4545
  "name": "urlTemplate",
4531
4546
  "annotation": {
@@ -4544,44 +4559,14 @@
4544
4559
  }
4545
4560
  },
4546
4561
  {
4547
- "name": "dropdownMaxWidth",
4548
- "annotation": {
4549
- "type": "union",
4550
- "types": [
4551
- {
4552
- "type": "keyword",
4553
- "value": "string"
4554
- },
4555
- {
4556
- "type": "keyword",
4557
- "value": "number"
4558
- }
4559
- ]
4560
- }
4561
- },
4562
- {
4563
- "name": "dropdownContentStyle",
4562
+ "name": "selectedIds",
4564
4563
  "annotation": {
4565
- "type": "reference",
4566
- "typeName": {
4567
- "type": "qualifiedName",
4568
- "left": {
4569
- "type": "identifier",
4570
- "name": "React"
4571
- },
4572
- "right": {
4573
- "type": "identifier",
4574
- "name": "CSSProperties"
4575
- }
4564
+ "type": "array",
4565
+ "elementType": {
4566
+ "type": "keyword",
4567
+ "value": "string"
4576
4568
  }
4577
4569
  }
4578
- },
4579
- {
4580
- "name": "hideNotifyCenterButton",
4581
- "annotation": {
4582
- "type": "keyword",
4583
- "value": "boolean"
4584
- }
4585
4570
  }
4586
4571
  ],
4587
4572
  "events": [
@@ -4597,6 +4582,21 @@
4597
4582
  }
4598
4583
  }
4599
4584
  },
4585
+ {
4586
+ "name": "mark.items.read",
4587
+ "detail": {
4588
+ "annotation": {
4589
+ "type": "array",
4590
+ "elementType": {
4591
+ "type": "reference",
4592
+ "typeName": {
4593
+ "type": "identifier",
4594
+ "name": "NoticeItem"
4595
+ }
4596
+ }
4597
+ }
4598
+ }
4599
+ },
4600
4600
  {
4601
4601
  "name": "mark.all.read",
4602
4602
  "detail": {