@next-bricks/ai-portal 0.63.4 → 0.63.5

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.
@@ -4,168 +4,175 @@
4
4
  "name": "ai-portal",
5
5
  "bricks": [
6
6
  {
7
- "name": "ai-portal.cruise-canvas",
7
+ "name": "ai-portal.chat-box",
8
8
  "properties": [
9
9
  {
10
- "name": "conversationId",
11
- "type": "string"
10
+ "name": "disabled",
11
+ "type": "boolean"
12
12
  },
13
13
  {
14
- "name": "initialRequest",
15
- "description": "初始请求数据。仅初始设置有效。",
16
- "attribute": false,
17
- "type": "RequestStore | null"
14
+ "name": "placeholder",
15
+ "type": "string"
18
16
  },
19
17
  {
20
- "name": "replay",
21
- "description": "是否启用回放。仅初始设置有效。",
18
+ "name": "autoFocus",
22
19
  "type": "boolean"
23
20
  },
24
21
  {
25
- "name": "replayDelay",
26
- "description": "设置回放时消息之间的时间间隔,单位为秒。仅初始设置有效。",
27
- "default": "2",
28
- "type": "number"
22
+ "name": "aiEmployees",
23
+ "attribute": false,
24
+ "type": "AIEmployee[]"
29
25
  },
30
26
  {
31
- "name": "supports",
27
+ "name": "commands",
32
28
  "attribute": false,
33
- "type": "Record<string, boolean>"
29
+ "type": "Command[]"
34
30
  },
35
31
  {
36
- "name": "showHiddenJobs",
37
- "type": "boolean"
38
- },
32
+ "name": "uploadOptions",
33
+ "attribute": false,
34
+ "type": "UploadOptions"
35
+ }
36
+ ],
37
+ "events": [
39
38
  {
40
- "name": "showHumanActions",
41
- "type": "boolean"
39
+ "name": "message.submit",
40
+ "description": "",
41
+ "deprecated": "Use `chat.submit` event instead",
42
+ "detail": {
43
+ "type": "string"
44
+ }
42
45
  },
43
46
  {
44
- "name": "showFeedback",
45
- "type": "boolean"
46
- },
47
+ "name": "chat.submit",
48
+ "detail": {
49
+ "type": "ChatPayload"
50
+ }
51
+ }
52
+ ],
53
+ "slots": [],
54
+ "methods": [
47
55
  {
48
- "name": "showFeedbackAfterFailed",
49
- "type": "boolean"
56
+ "name": "setValue",
57
+ "params": [
58
+ {
59
+ "name": "value",
60
+ "type": "string"
61
+ }
62
+ ]
50
63
  },
51
64
  {
52
- "name": "showFeedbackOnView",
53
- "type": "boolean"
65
+ "name": "getValue",
66
+ "params": []
54
67
  },
55
68
  {
56
- "name": "showUiSwitch",
57
- "type": "boolean"
58
- },
69
+ "name": "focusOnInput",
70
+ "params": []
71
+ }
72
+ ],
73
+ "parts": [],
74
+ "description": "大型聊天输入框,用于首页"
75
+ },
76
+ {
77
+ "name": "ai-portal.stat-with-mini-chart",
78
+ "properties": [
59
79
  {
60
- "name": "hideMermaid",
61
- "type": "boolean"
80
+ "name": "label",
81
+ "type": "string"
62
82
  },
63
83
  {
64
- "name": "showJsxEditor",
65
- "type": "boolean"
84
+ "name": "value",
85
+ "type": "string"
66
86
  },
67
87
  {
68
- "name": "previewUrlTemplate",
69
- "type": "string"
88
+ "name": "size",
89
+ "description": "",
90
+ "default": "\"medium\"",
91
+ "type": "\"medium\" | \"small\""
70
92
  },
71
93
  {
72
- "name": "showCases",
73
- "attribute": false,
74
- "type": "ShowCaseType[]"
94
+ "name": "lineColor",
95
+ "description": "",
96
+ "default": "\"var(--color-brand)\"",
97
+ "type": "string"
75
98
  },
76
99
  {
77
- "name": "exampleProjects",
78
- "attribute": false,
79
- "type": "ExampleProject[]"
100
+ "name": "showArea",
101
+ "type": "boolean"
80
102
  },
81
103
  {
82
- "name": "tryItOutUrl",
83
- "type": "string"
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"
84
107
  },
85
108
  {
86
- "name": "separateInstructions",
87
- "type": "boolean"
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"
88
112
  },
89
113
  {
90
- "name": "aiEmployees",
91
- "attribute": false,
92
- "type": "AIEmployee[]"
114
+ "name": "xField",
115
+ "description": "",
116
+ "default": "\"0\"",
117
+ "type": "string"
93
118
  },
94
119
  {
95
- "name": "commands",
96
- "attribute": false,
97
- "type": "Command[]"
120
+ "name": "yField",
121
+ "description": "",
122
+ "default": "\"1\"",
123
+ "type": "string"
98
124
  },
99
125
  {
100
- "name": "uploadOptions",
126
+ "name": "data",
101
127
  "attribute": false,
102
- "type": "UploadOptions"
128
+ "type": "Record<string, number>[]"
103
129
  }
104
130
  ],
105
- "events": [
106
- {
107
- "name": "share",
108
- "detail": {
109
- "type": "void"
110
- }
111
- },
112
- {
113
- "name": "terminate",
114
- "detail": {
115
- "type": "void"
116
- }
117
- },
131
+ "events": [],
132
+ "slots": [],
133
+ "methods": [],
134
+ "parts": [],
135
+ "description": "构件 `ai-portal.stat-with-mini-chart`"
136
+ },
137
+ {
138
+ "name": "ai-portal.icon-button",
139
+ "properties": [
118
140
  {
119
- "name": "feedback.submit",
120
- "detail": {
121
- "type": "FeedbackDetail"
122
- }
141
+ "name": "icon",
142
+ "attribute": false,
143
+ "type": "(GeneralIconProps & HTMLAttributes<GeneralIcon>)"
123
144
  },
124
145
  {
125
- "name": "feedback.on.view",
126
- "detail": {
127
- "type": "string"
128
- }
146
+ "name": "tooltip",
147
+ "type": "string"
129
148
  },
130
149
  {
131
- "name": "ui.switch",
132
- "detail": {
133
- "type": "\"chat\""
134
- }
150
+ "name": "tooltipHoist",
151
+ "type": "boolean"
135
152
  },
136
153
  {
137
- "name": "detail.change",
138
- "detail": {
139
- "type": "ConversationDetail"
140
- }
141
- }
142
- ],
143
- "slots": [],
144
- "methods": [
145
- {
146
- "name": "resumed",
147
- "params": []
154
+ "name": "active",
155
+ "type": "boolean"
148
156
  },
149
157
  {
150
- "name": "feedbackSubmitDone",
151
- "params": []
158
+ "name": "disabled",
159
+ "type": "boolean"
152
160
  },
153
161
  {
154
- "name": "feedbackSubmitFailed",
155
- "params": []
162
+ "name": "variant",
163
+ "type": "IconButtonVariant"
156
164
  },
157
165
  {
158
- "name": "feedbackOnViewDone",
159
- "params": [
160
- {
161
- "name": "viewId",
162
- "type": "string"
163
- }
164
- ]
166
+ "name": "reduceIconSize",
167
+ "description": "是否缩小图标尺寸(部分 easyops 图标过大)",
168
+ "type": "boolean"
165
169
  }
166
170
  ],
171
+ "events": [],
172
+ "slots": [],
173
+ "methods": [],
167
174
  "parts": [],
168
- "description": "构件 `ai-portal.cruise-canvas`"
175
+ "description": "构件 `ai-portal.icon-button`"
169
176
  },
170
177
  {
171
178
  "name": "ai-portal.elevo-sidebar",
@@ -338,60 +345,6 @@
338
345
  "parts": [],
339
346
  "description": "构件 `ai-portal.elevo-sidebar`"
340
347
  },
341
- {
342
- "name": "ai-portal.home-container",
343
- "properties": [
344
- {
345
- "name": "sticky",
346
- "type": "boolean"
347
- }
348
- ],
349
- "events": [],
350
- "slots": [],
351
- "methods": [],
352
- "parts": [],
353
- "description": "构件 `ai-portal.home-container`"
354
- },
355
- {
356
- "name": "ai-portal.icon-button",
357
- "properties": [
358
- {
359
- "name": "icon",
360
- "attribute": false,
361
- "type": "(GeneralIconProps & HTMLAttributes<GeneralIcon>)"
362
- },
363
- {
364
- "name": "tooltip",
365
- "type": "string"
366
- },
367
- {
368
- "name": "tooltipHoist",
369
- "type": "boolean"
370
- },
371
- {
372
- "name": "active",
373
- "type": "boolean"
374
- },
375
- {
376
- "name": "disabled",
377
- "type": "boolean"
378
- },
379
- {
380
- "name": "variant",
381
- "type": "IconButtonVariant"
382
- },
383
- {
384
- "name": "reduceIconSize",
385
- "description": "是否缩小图标尺寸(部分 easyops 图标过大)",
386
- "type": "boolean"
387
- }
388
- ],
389
- "events": [],
390
- "slots": [],
391
- "methods": [],
392
- "parts": [],
393
- "description": "构件 `ai-portal.icon-button`"
394
- },
395
348
  {
396
349
  "name": "ai-portal.mcp-tools",
397
350
  "properties": [
@@ -431,74 +384,32 @@
431
384
  "description": "构件 `ai-portal.show-cases`"
432
385
  },
433
386
  {
434
- "name": "ai-portal.chat-box",
387
+ "name": "ai-portal.ai-employees",
435
388
  "properties": [
436
389
  {
437
- "name": "disabled",
438
- "type": "boolean"
439
- },
440
- {
441
- "name": "placeholder",
442
- "type": "string"
443
- },
444
- {
445
- "name": "autoFocus",
446
- "type": "boolean"
447
- },
448
- {
449
- "name": "aiEmployees",
390
+ "name": "list",
450
391
  "attribute": false,
451
- "type": "AIEmployee[]"
392
+ "type": "Employee[]"
452
393
  },
453
394
  {
454
- "name": "commands",
395
+ "name": "industries",
455
396
  "attribute": false,
456
- "type": "Command[]"
397
+ "type": "string[]"
457
398
  },
458
399
  {
459
- "name": "uploadOptions",
460
- "attribute": false,
461
- "type": "UploadOptions"
462
- }
463
- ],
464
- "events": [
465
- {
466
- "name": "message.submit",
467
- "description": "",
468
- "deprecated": "Use `chat.submit` event instead",
469
- "detail": {
470
- "type": "string"
471
- }
400
+ "name": "urlTemplate",
401
+ "type": "string"
472
402
  },
473
403
  {
474
- "name": "chat.submit",
475
- "detail": {
476
- "type": "ChatPayload"
477
- }
404
+ "name": "stickyTop",
405
+ "type": "number"
478
406
  }
479
407
  ],
408
+ "events": [],
480
409
  "slots": [],
481
- "methods": [
482
- {
483
- "name": "setValue",
484
- "params": [
485
- {
486
- "name": "value",
487
- "type": "string"
488
- }
489
- ]
490
- },
491
- {
492
- "name": "getValue",
493
- "params": []
494
- },
495
- {
496
- "name": "focusOnInput",
497
- "params": []
498
- }
499
- ],
410
+ "methods": [],
500
411
  "parts": [],
501
- "description": "大型聊天输入框,用于首页"
412
+ "description": "构件 `ai-portal.ai-employees`"
502
413
  },
503
414
  {
504
415
  "name": "ai-portal.chat-stream",
@@ -659,163 +570,131 @@
659
570
  "description": "构件 `ai-portal.chat-stream`"
660
571
  },
661
572
  {
662
- "name": "ai-portal.ai-employees",
573
+ "name": "ai-portal.ai-agents",
663
574
  "properties": [
664
575
  {
665
576
  "name": "list",
666
577
  "attribute": false,
667
- "type": "Employee[]"
668
- },
669
- {
670
- "name": "industries",
671
- "attribute": false,
672
- "type": "string[]"
578
+ "type": "Agent[]"
673
579
  },
674
580
  {
675
581
  "name": "urlTemplate",
676
582
  "type": "string"
677
583
  },
678
584
  {
679
- "name": "stickyTop",
680
- "type": "number"
585
+ "name": "withContainer",
586
+ "description": "",
587
+ "deprecated": true,
588
+ "default": "true"
681
589
  }
682
590
  ],
683
591
  "events": [],
684
592
  "slots": [],
685
593
  "methods": [],
686
594
  "parts": [],
687
- "description": "构件 `ai-portal.ai-employees`"
595
+ "description": "构件 `ai-portal.ai-agents`"
688
596
  },
689
597
  {
690
- "name": "ai-portal.stat-with-mini-chart",
598
+ "name": "ai-portal.page-container",
691
599
  "properties": [
692
600
  {
693
- "name": "label",
601
+ "name": "pageTitle",
694
602
  "type": "string"
695
603
  },
696
604
  {
697
- "name": "value",
698
- "type": "string"
605
+ "name": "breadcrumbs",
606
+ "attribute": false,
607
+ "type": "Breadcrumb[]"
699
608
  },
700
609
  {
701
610
  "name": "size",
702
- "description": "",
703
- "default": "\"medium\"",
704
- "type": "\"medium\" | \"small\""
611
+ "type": "\"medium\" | \"small\" | \"full\""
705
612
  },
706
613
  {
707
- "name": "lineColor",
708
- "description": "",
709
- "default": "\"var(--color-brand)\"",
710
- "type": "string"
614
+ "name": "variant",
615
+ "type": "\"default\" | \"form\""
711
616
  },
712
617
  {
713
- "name": "showArea",
618
+ "name": "sticky",
714
619
  "type": "boolean"
715
620
  },
716
621
  {
717
- "name": "min",
718
- "description": "Specify the minimum value of the y-axis.\nIf not specified, the minimum value will be calculated from the data.",
719
- "type": "number"
720
- },
721
- {
722
- "name": "max",
723
- "description": "Specify the maximum value of the y-axis.\nIf not specified, the maximum value will be calculated from the data.",
724
- "type": "number"
725
- },
726
- {
727
- "name": "xField",
728
- "description": "",
729
- "default": "\"0\"",
730
- "type": "string"
731
- },
622
+ "name": "textContent",
623
+ "type": "string",
624
+ "description": "文本内容"
625
+ }
626
+ ],
627
+ "events": [],
628
+ "slots": [
732
629
  {
733
- "name": "yField",
734
- "description": "",
735
- "default": "\"1\"",
736
- "type": "string"
630
+ "name": null,
631
+ "description": "内容"
737
632
  },
738
633
  {
739
- "name": "data",
740
- "attribute": false,
741
- "type": "Record<string, number>[]"
634
+ "name": "toolbar",
635
+ "description": "工具栏"
742
636
  }
743
637
  ],
744
- "events": [],
745
- "slots": [],
746
638
  "methods": [],
747
639
  "parts": [],
748
- "description": "构件 `ai-portal.stat-with-mini-chart`"
640
+ "description": "构件 `ai-portal.page-container`"
749
641
  },
750
642
  {
751
- "name": "ai-portal.ai-agents",
643
+ "name": "ai-portal.dropdown-select",
752
644
  "properties": [
753
645
  {
754
- "name": "list",
755
- "attribute": false,
756
- "type": "Agent[]"
646
+ "name": "value",
647
+ "type": "string"
757
648
  },
758
649
  {
759
- "name": "urlTemplate",
760
- "type": "string"
650
+ "name": "options",
651
+ "attribute": false,
652
+ "type": "DropdownOptions[]"
761
653
  },
762
654
  {
763
- "name": "withContainer",
764
- "description": "",
765
- "deprecated": true,
766
- "default": "true"
767
- }
768
- ],
769
- "events": [],
770
- "slots": [],
771
- "methods": [],
772
- "parts": [],
773
- "description": "构件 `ai-portal.ai-agents`"
774
- },
775
- {
776
- "name": "ai-portal.page-container",
777
- "properties": [
655
+ "name": "labelMaxWidth",
656
+ "attribute": false,
657
+ "type": "string | number"
658
+ },
778
659
  {
779
- "name": "pageTitle",
780
- "type": "string"
660
+ "name": "loading",
661
+ "type": "boolean"
781
662
  },
782
663
  {
783
- "name": "breadcrumbs",
664
+ "name": "searchPlaceholder",
784
665
  "attribute": false,
785
- "type": "Breadcrumb[]"
666
+ "type": "string"
786
667
  },
787
668
  {
788
- "name": "size",
789
- "type": "\"medium\" | \"small\" | \"full\""
669
+ "name": "dropdownContentStyle",
670
+ "attribute": false,
671
+ "type": "React.CSSProperties"
790
672
  },
791
673
  {
792
- "name": "variant",
793
- "type": "\"default\" | \"form\""
674
+ "name": "dropdownMaxWidth",
675
+ "description": "",
676
+ "default": "\"500px\"",
677
+ "attribute": false,
678
+ "type": "string | number"
794
679
  },
795
680
  {
796
- "name": "sticky",
681
+ "name": "showSearch",
682
+ "description": "是否展示搜索框",
797
683
  "type": "boolean"
798
- },
799
- {
800
- "name": "textContent",
801
- "type": "string",
802
- "description": "文本内容"
803
684
  }
804
685
  ],
805
- "events": [],
806
- "slots": [
807
- {
808
- "name": null,
809
- "description": "内容"
810
- },
686
+ "events": [
811
687
  {
812
- "name": "toolbar",
813
- "description": "工具栏"
688
+ "name": "change",
689
+ "detail": {
690
+ "type": "DropdownOptions"
691
+ }
814
692
  }
815
693
  ],
694
+ "slots": [],
816
695
  "methods": [],
817
696
  "parts": [],
818
- "description": "构件 `ai-portal.page-container`"
697
+ "description": "构件 `ai-portal.dropdown-select`"
819
698
  },
820
699
  {
821
700
  "name": "ai-portal.tab-list",
@@ -854,61 +733,30 @@
854
733
  "description": "构件 `ai-portal.tab-list`"
855
734
  },
856
735
  {
857
- "name": "ai-portal.dropdown-select",
736
+ "name": "ai-portal.action-buttons",
858
737
  "properties": [
859
738
  {
860
- "name": "value",
861
- "type": "string"
862
- },
863
- {
864
- "name": "options",
865
- "attribute": false,
866
- "type": "DropdownOptions[]"
867
- },
868
- {
869
- "name": "labelMaxWidth",
870
- "attribute": false,
871
- "type": "string | number"
872
- },
873
- {
874
- "name": "loading",
875
- "type": "boolean"
876
- },
877
- {
878
- "name": "searchPlaceholder",
879
- "attribute": false,
880
- "type": "string"
881
- },
882
- {
883
- "name": "dropdownContentStyle",
884
- "attribute": false,
885
- "type": "React.CSSProperties"
886
- },
887
- {
888
- "name": "dropdownMaxWidth",
889
- "description": "",
890
- "default": "\"500px\"",
739
+ "name": "items",
891
740
  "attribute": false,
892
- "type": "string | number"
741
+ "type": "ActionItem[]"
893
742
  },
894
743
  {
895
- "name": "showSearch",
896
- "description": "是否展示搜索框",
897
- "type": "boolean"
744
+ "name": "activeKey",
745
+ "type": "string | null"
898
746
  }
899
747
  ],
900
748
  "events": [
901
749
  {
902
750
  "name": "change",
903
751
  "detail": {
904
- "type": "DropdownOptions"
752
+ "type": "ActionItem | null"
905
753
  }
906
754
  }
907
755
  ],
908
756
  "slots": [],
909
757
  "methods": [],
910
758
  "parts": [],
911
- "description": "构件 `ai-portal.dropdown-select`"
759
+ "description": "构件 `ai-portal.action-buttons`"
912
760
  },
913
761
  {
914
762
  "name": "ai-portal.preview-container",
@@ -930,30 +778,182 @@
930
778
  "description": "构件 `ai-portal.preview-container`"
931
779
  },
932
780
  {
933
- "name": "ai-portal.action-buttons",
781
+ "name": "ai-portal.home-container",
934
782
  "properties": [
935
783
  {
936
- "name": "items",
784
+ "name": "sticky",
785
+ "type": "boolean"
786
+ }
787
+ ],
788
+ "events": [],
789
+ "slots": [],
790
+ "methods": [],
791
+ "parts": [],
792
+ "description": "构件 `ai-portal.home-container`"
793
+ },
794
+ {
795
+ "name": "ai-portal.cruise-canvas",
796
+ "properties": [
797
+ {
798
+ "name": "conversationId",
799
+ "type": "string"
800
+ },
801
+ {
802
+ "name": "initialRequest",
803
+ "description": "初始请求数据。仅初始设置有效。",
937
804
  "attribute": false,
938
- "type": "ActionItem[]"
805
+ "type": "RequestStore | null"
939
806
  },
940
807
  {
941
- "name": "activeKey",
942
- "type": "string | null"
808
+ "name": "replay",
809
+ "description": "是否启用回放。仅初始设置有效。",
810
+ "type": "boolean"
811
+ },
812
+ {
813
+ "name": "replayDelay",
814
+ "description": "设置回放时消息之间的时间间隔,单位为秒。仅初始设置有效。",
815
+ "default": "2",
816
+ "type": "number"
817
+ },
818
+ {
819
+ "name": "supports",
820
+ "attribute": false,
821
+ "type": "Record<string, boolean>"
822
+ },
823
+ {
824
+ "name": "showHiddenJobs",
825
+ "type": "boolean"
826
+ },
827
+ {
828
+ "name": "showHumanActions",
829
+ "type": "boolean"
830
+ },
831
+ {
832
+ "name": "showFeedback",
833
+ "type": "boolean"
834
+ },
835
+ {
836
+ "name": "showFeedbackAfterFailed",
837
+ "type": "boolean"
838
+ },
839
+ {
840
+ "name": "showFeedbackOnView",
841
+ "type": "boolean"
842
+ },
843
+ {
844
+ "name": "showUiSwitch",
845
+ "type": "boolean"
846
+ },
847
+ {
848
+ "name": "hideMermaid",
849
+ "type": "boolean"
850
+ },
851
+ {
852
+ "name": "showJsxEditor",
853
+ "type": "boolean"
854
+ },
855
+ {
856
+ "name": "previewUrlTemplate",
857
+ "type": "string"
858
+ },
859
+ {
860
+ "name": "showCases",
861
+ "attribute": false,
862
+ "type": "ShowCaseType[]"
863
+ },
864
+ {
865
+ "name": "exampleProjects",
866
+ "attribute": false,
867
+ "type": "ExampleProject[]"
868
+ },
869
+ {
870
+ "name": "tryItOutUrl",
871
+ "type": "string"
872
+ },
873
+ {
874
+ "name": "separateInstructions",
875
+ "type": "boolean"
876
+ },
877
+ {
878
+ "name": "aiEmployees",
879
+ "attribute": false,
880
+ "type": "AIEmployee[]"
881
+ },
882
+ {
883
+ "name": "commands",
884
+ "attribute": false,
885
+ "type": "Command[]"
886
+ },
887
+ {
888
+ "name": "uploadOptions",
889
+ "attribute": false,
890
+ "type": "UploadOptions"
943
891
  }
944
892
  ],
945
893
  "events": [
946
894
  {
947
- "name": "change",
895
+ "name": "share",
948
896
  "detail": {
949
- "type": "ActionItem | null"
897
+ "type": "void"
898
+ }
899
+ },
900
+ {
901
+ "name": "terminate",
902
+ "detail": {
903
+ "type": "void"
904
+ }
905
+ },
906
+ {
907
+ "name": "feedback.submit",
908
+ "detail": {
909
+ "type": "FeedbackDetail"
910
+ }
911
+ },
912
+ {
913
+ "name": "feedback.on.view",
914
+ "detail": {
915
+ "type": "string"
916
+ }
917
+ },
918
+ {
919
+ "name": "ui.switch",
920
+ "detail": {
921
+ "type": "\"chat\""
922
+ }
923
+ },
924
+ {
925
+ "name": "detail.change",
926
+ "detail": {
927
+ "type": "ConversationDetail"
950
928
  }
951
929
  }
952
930
  ],
953
931
  "slots": [],
954
- "methods": [],
932
+ "methods": [
933
+ {
934
+ "name": "resumed",
935
+ "params": []
936
+ },
937
+ {
938
+ "name": "feedbackSubmitDone",
939
+ "params": []
940
+ },
941
+ {
942
+ "name": "feedbackSubmitFailed",
943
+ "params": []
944
+ },
945
+ {
946
+ "name": "feedbackOnViewDone",
947
+ "params": [
948
+ {
949
+ "name": "viewId",
950
+ "type": "string"
951
+ }
952
+ ]
953
+ }
954
+ ],
955
955
  "parts": [],
956
- "description": "构件 `ai-portal.action-buttons`"
956
+ "description": "构件 `ai-portal.cruise-canvas`"
957
957
  },
958
958
  {
959
959
  "name": "ai-portal.goal-card-list",
@@ -1689,10 +1689,10 @@
1689
1689
  "name": "ai-portal.clear-request-store"
1690
1690
  },
1691
1691
  {
1692
- "name": "ai-portal.call-tool"
1692
+ "name": "ai-portal.set-chat-command"
1693
1693
  },
1694
1694
  {
1695
- "name": "ai-portal.set-chat-command"
1695
+ "name": "ai-portal.call-tool"
1696
1696
  }
1697
1697
  ]
1698
1698
  }