cnhis-design-vue 3.3.1-beta.4 → 3.3.1-beta.44
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/README.md +87 -87
- package/es/components/ai-chat/index.d.ts +394 -43
- package/es/components/ai-chat/src/Index.vue.d.ts +394 -43
- package/es/components/ai-chat/src/Index.vue2.js +1 -1
- package/es/components/ai-chat/src/api/index.d.ts +8 -0
- package/es/components/ai-chat/src/api/index.js +1 -0
- package/es/components/ai-chat/src/components/ChatAudio.vue.d.ts +38 -0
- package/es/components/ai-chat/src/components/ChatAudio.vue.js +1 -0
- package/es/components/ai-chat/src/components/ChatAudio.vue2.js +1 -0
- package/es/components/ai-chat/src/components/ChatBI.vue.d.ts +2 -2
- package/es/components/ai-chat/src/components/ChatBI.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatCard.js +1 -1
- package/es/components/ai-chat/src/components/ChatFooter.vue.d.ts +75 -31
- package/es/components/ai-chat/src/components/ChatFooter.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatMain.d.ts +1 -7
- package/es/components/ai-chat/src/components/ChatMain.js +1 -1
- package/es/components/ai-chat/src/components/ChatMainDefault.d.ts +2 -0
- package/es/components/ai-chat/src/components/ChatMainDefault.js +1 -0
- package/es/components/ai-chat/src/components/ChatPatient.vue.d.ts +2 -2
- package/es/components/ai-chat/src/components/ChatPatient.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatPrompt.vue.d.ts +2 -2
- package/es/components/ai-chat/src/components/ChatPrompt.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatRight.vue.d.ts +57 -0
- package/es/components/ai-chat/src/components/ChatRight.vue.js +1 -0
- package/es/components/ai-chat/src/components/ChatRight.vue2.js +1 -0
- package/es/components/ai-chat/src/components/card/JsonCard.d.ts +25 -0
- package/es/components/ai-chat/src/components/card/JsonCard.js +1 -0
- package/es/components/ai-chat/src/components/message-render/CardRender.d.ts +16 -0
- package/es/components/ai-chat/src/components/message-render/CardRender.js +1 -0
- package/es/components/ai-chat/src/components/message-render/FormRender.d.ts +16 -0
- package/es/components/ai-chat/src/components/message-render/FormRender.js +1 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatAudio.vue.d.ts +36 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatAudio.vue.js +1 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatAudio.vue2.js +1 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatFooter.vue.d.ts +105 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatFooter.vue.js +1 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatFooter.vue2.js +1 -0
- package/es/components/ai-chat/src/components/svgs/AddIcon.vue.js +1 -0
- package/es/components/ai-chat/src/components/svgs/AudioIcon.vue.js +1 -0
- package/es/components/ai-chat/src/components/svgs/KeyboardIcon.vue.js +1 -0
- package/es/components/ai-chat/src/components/svgs/MicroPhone.vue.js +1 -0
- package/es/components/ai-chat/src/hooks/index.d.ts +2 -0
- package/es/components/ai-chat/src/hooks/index.js +1 -0
- package/es/components/ai-chat/src/hooks/useChartAudioContext.d.ts +18 -0
- package/es/components/ai-chat/src/hooks/useChartAudioContext.js +1 -0
- package/es/components/ai-chat/src/hooks/useData.d.ts +77 -0
- package/es/components/ai-chat/src/hooks/useData.js +1 -0
- package/es/components/ai-chat/src/hooks/useFooterContext.d.ts +38 -0
- package/es/components/ai-chat/src/hooks/useFooterContext.js +1 -0
- package/es/components/ai-chat/src/hooks/useProgram.d.ts +14 -0
- package/es/components/ai-chat/src/hooks/useProgram.js +1 -0
- package/es/components/ai-chat/src/hooks/useSSE.d.ts +9 -0
- package/es/components/ai-chat/src/hooks/useSSE.js +1 -0
- package/es/components/ai-chat/src/hooks/useWebsocket.d.ts +4 -0
- package/es/components/ai-chat/src/hooks/useWebsocket.js +1 -0
- package/es/components/ai-chat/src/types/index.d.ts +1 -3
- package/es/components/ai-chat/src/types/index.js +1 -1
- package/es/components/ai-chat/src/utils/index.d.ts +6 -0
- package/es/components/ai-chat/src/utils/index.js +1 -1
- package/es/components/ai-chat/style/index.css +1 -1
- package/es/components/audio-sdk/index.d.ts +274 -2
- package/es/components/audio-sdk/index.js +1 -1
- package/es/components/audio-sdk/src/Index.vue.d.ts +274 -0
- package/es/components/audio-sdk/src/Index.vue.js +1 -0
- package/es/components/audio-sdk/src/Index.vue2.js +1 -0
- package/es/components/audio-sdk/src/audioSDK.d.ts +60 -28
- package/es/components/audio-sdk/src/audioSDK.js +1 -1
- package/es/components/audio-sdk/src/components/form.vue.d.ts +51 -0
- package/es/components/audio-sdk/src/components/recording-modal.vue.d.ts +100 -0
- package/es/components/audio-sdk/src/components/recording-modal.vue.js +1 -0
- package/es/components/audio-sdk/src/components/recording-modal.vue2.js +1 -0
- package/es/components/audio-sdk/src/components/recording.vue.d.ts +53 -4
- package/es/components/audio-sdk/src/components/recording.vue2.js +1 -1
- package/es/components/audio-sdk/src/utils/index.d.ts +7 -0
- package/es/components/audio-sdk/src/utils/index.js +1 -0
- package/es/components/audio-sdk/src/utils/recordingModal.d.ts +7 -3
- package/es/components/audio-sdk/src/utils/recordingModal.js +1 -1
- package/es/components/audio-sdk/style/index.css +1 -1
- package/es/components/button-print/index.d.ts +30 -0
- package/es/components/button-print/src/ButtonPrint.vue.d.ts +30 -0
- package/es/components/button-print/src/ButtonPrint.vue2.js +1 -1
- package/es/components/button-print/src/components/NewPrintComponent.vue.d.ts +9 -0
- package/es/components/button-print/src/components/NewPrintComponent.vue2.js +1 -1
- package/es/components/button-print/src/components/OldPrintComponent.vue.d.ts +9 -0
- package/es/components/button-print/src/components/OldPrintComponent.vue2.js +1 -1
- package/es/components/button-print/src/utils/print.d.ts +2 -2
- package/es/components/button-print/src/utils/print.js +1 -1
- package/es/components/calendar/index.d.ts +126 -3
- package/es/components/calendar/src/Calendar.vue.d.ts +126 -2
- package/es/components/card-reader-sdk/src/cardReaderSDK.d.ts +4 -8
- package/es/components/card-reader-sdk/src/cardReaderSDK.js +1 -1
- package/es/components/card-render/src/components/Button.vue.d.ts +3 -0
- package/es/components/card-render/src/components/Button.vue2.js +1 -1
- package/es/components/card-render/src/components/ScaleView.vue.d.ts +39 -0
- package/es/components/card-render/src/components/ScaleView.vue.js +1 -0
- package/es/components/card-render/src/components/ScaleView.vue2.js +1 -0
- package/es/components/card-render/src/components/Table.vue.d.ts +104 -0
- package/es/components/card-render/src/components/Table.vue.js +1 -0
- package/es/components/card-render/src/components/Table.vue2.js +1 -0
- package/es/components/card-render/src/components/Text.vue.d.ts +1 -0
- package/es/components/card-render/src/components/Text.vue2.js +1 -1
- package/es/components/card-render/src/components/index.d.ts +162 -23
- package/es/components/card-render/src/components/index.js +1 -1
- package/es/components/card-render/src/constants/index.d.ts +4 -1
- package/es/components/card-render/src/constants/index.js +1 -1
- package/es/components/card-render/style/index.css +1 -1
- package/es/components/classification/src/components/table-modal/index.vue.d.ts +3 -0
- package/es/components/editor/src/Editor.js +1 -1
- package/es/components/editor/style/index.css +1 -0
- package/es/components/fabric-chart/index.d.ts +6 -2
- package/es/components/fabric-chart/src/FabricChart.vue.d.ts +6 -2
- package/es/components/fabric-chart/src/FabricChart.vue2.js +1 -1
- package/es/components/fabric-chart/src/hooks/temperature/useTemperatureChart.js +1 -1
- package/es/components/field-set/src/FieldColor.vue.d.ts +1 -1
- package/es/components/field-set/src/FieldFilter.vue.d.ts +1 -1
- package/es/components/field-set/src/FieldSet.vue.d.ts +1 -1
- package/es/components/field-set/src/components/table-row.vue.d.ts +1 -1
- package/es/components/form-config/index.d.ts +40 -10
- package/es/components/form-config/src/FormConfig.vue.d.ts +40 -10
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +32 -8
- package/es/components/form-config/src/components/FormConfigEventSetting.vue.d.ts +8 -2
- package/es/components/form-render/src/components/renderer/date.d.ts +2 -2
- package/es/components/form-render/src/components/renderer/formItem.d.ts +2 -0
- package/es/components/form-render/src/components/renderer/formItem.js +1 -1
- package/es/components/form-render/src/components/renderer/levelSearchCascader/index.d.ts +9 -0
- package/es/components/form-render/src/components/renderer/levelSearchCascader/index.js +1 -1
- package/es/components/form-render/src/components/renderer/lineBar/FormCollapse.vue.d.ts +12 -1
- package/es/components/form-render/src/components/renderer/lineBar/index.d.ts +12 -1
- package/es/components/form-render/src/components/renderer/searchCascade.js +1 -1
- package/es/components/form-render/src/components/renderer/select.js +1 -1
- package/es/components/form-render/src/components/tooltipMessage.vue.d.ts +12 -1
- package/es/components/form-render/src/components/tooltipMessage.vue2.js +1 -1
- package/es/components/form-render/src/hooks/useBusinessBinding.js +1 -1
- package/es/components/form-render/src/hooks/useFieldListAdaptor.js +1 -1
- package/es/components/form-render/src/hooks/useLowCodeReactions.js +1 -1
- package/es/components/form-render/src/types/fieldItem.d.ts +9 -3
- package/es/components/guide/src/renderer.d.ts +2 -2
- package/es/components/iho-chat/index.d.ts +206 -4
- package/es/components/iho-chat/src/Index.vue.d.ts +206 -4
- package/es/components/iho-chat/src/api/index.d.ts +1 -0
- package/es/components/iho-chat/src/api/index.js +1 -1
- package/es/components/iho-chat/src/components/ChatAdd.vue.d.ts +8 -0
- package/es/components/iho-chat/src/components/ChatAdd.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatFile.vue.d.ts +11 -3
- package/es/components/iho-chat/src/components/ChatFile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatFooter.vue.d.ts +7 -0
- package/es/components/iho-chat/src/components/ChatFooter.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +96 -2
- package/es/components/iho-chat/src/components/ChatMain.vue.d.ts +77 -0
- package/es/components/iho-chat/src/components/ChatMain.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +71 -1
- package/es/components/iho-chat/src/components/ChatRecord.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatSearch.vue.d.ts +8 -2
- package/es/components/iho-chat/src/components/ChatSearch.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatSet.vue.d.ts +10 -0
- package/es/components/iho-chat/src/components/ChatSet.vue2.js +1 -1
- package/es/components/iho-chat/src/components/MessageMergeForward.vue.d.ts +70 -1
- package/es/components/iho-chat/src/components/MessageMergeForward.vue2.js +1 -1
- package/es/components/iho-chat/src/components/MultipleVideo.vue.d.ts +7 -0
- package/es/components/iho-chat/src/components/PersonProfile.vue.d.ts +3 -0
- package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/SiderList.vue.d.ts +3 -1
- package/es/components/iho-chat/src/components/SiderList.vue2.js +1 -1
- package/es/components/iho-chat/src/constants/index.d.ts +9 -2
- package/es/components/iho-chat/src/constants/index.js +1 -1
- package/es/components/iho-chat/src/hooks/useSearchPatientList.d.ts +11 -0
- package/es/components/iho-chat/src/hooks/useSearchPatientList.js +1 -0
- package/es/components/iho-chat/src/utils/chatSock.js +1 -1
- package/es/components/iho-chat/src/utils/index.d.ts +6 -0
- package/es/components/iho-chat/src/utils/index.js +1 -1
- package/es/components/iho-chat/style/index.css +1 -1
- package/es/components/iho-table/index.d.ts +3 -0
- package/es/components/iho-table/index.js +1 -1
- package/es/components/iho-table/src/IhoTable.vue2.js +1 -1
- package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +1 -1
- package/es/components/iho-table/src/hooks/tapHooks/index.js +1 -1
- package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.d.ts +3 -3
- package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.js +1 -1
- package/es/components/iho-table/src/hooks/useTablePlugin.js +1 -1
- package/es/components/iho-table/src/plugins/filterRenderPlugin/index.js +1 -1
- package/es/components/iho-table/src/plugins/headerPlugin/index.d.ts +1 -1
- package/es/components/iho-table/src/plugins/headerPlugin/index.js +1 -1
- package/es/components/iho-table/src/plugins/highLightSetPlugin.js +1 -1
- package/es/components/iho-table/src/plugins/index.d.ts +79 -3
- package/es/components/iho-table/src/plugins/index.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/index.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +1 -1
- package/es/components/iho-table/src/plugins/stickyFixedPlugin.js +1 -1
- package/es/components/iho-table/src/plugins/varialbleHeightPlugin.js +1 -1
- package/es/components/iho-table/src/plugins/verticalTablePlugin/src/utils.js +1 -1
- package/es/components/iho-table/src/types/pluginType.d.ts +2 -2
- package/es/components/iho-table/src/utils/index.js +1 -1
- package/es/components/index.css +1 -1
- package/es/components/index.d.ts +2 -1
- package/es/components/index.js +1 -1
- package/es/components/scale-view/index.d.ts +17 -3
- package/es/components/scale-view/src/ScaleView.vue.d.ts +17 -3
- package/es/components/scale-view/src/ScaleView.vue2.js +1 -1
- package/es/components/scale-view/src/components/EvaluateCountdown.vue.d.ts +1 -1
- package/es/components/scale-view/src/hooks/scaleview-computed.js +1 -1
- package/es/components/scale-view/src/hooks/scaleview-init.d.ts +3 -1
- package/es/components/scale-view/src/hooks/scaleview-init.js +1 -1
- package/es/components/scale-view/src/hooks/scaleview-props.d.ts +4 -0
- package/es/components/scale-view/src/hooks/scaleview-props.js +1 -1
- package/es/components/scale-view/src/hooks/use-component.d.ts +1 -2189
- package/es/components/shortcut-provider/src/ShortcutProvider.vue2.js +1 -1
- package/es/components/shortcut-setter/index.d.ts +8 -2
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +8 -2
- package/es/components/steps-wheel/index.d.ts +18 -0
- package/es/components/steps-wheel/src/StepsWheel.vue.d.ts +18 -0
- package/es/components/steps-wheel/src/StepsWheel.vue2.js +1 -1
- package/es/env.d.ts +25 -25
- package/es/shared/assets/img/ai__avatar.png.js +1 -1
- package/es/shared/assets/img/defaultCover/10review_successful.png.js +1 -1
- package/es/shared/assets/img/defaultCover/11review_fail.png.js +1 -1
- package/es/shared/assets/img/defaultCover/12no_setting.png.js +1 -1
- package/es/shared/assets/img/defaultCover/13no_menu_setting.png.js +1 -1
- package/es/shared/assets/img/defaultCover/14no_call_setting.png.js +1 -1
- package/es/shared/assets/img/defaultCover/15no_use_tag.png.js +1 -1
- package/es/shared/assets/img/defaultCover/16no_table_data.png.js +1 -1
- package/es/shared/assets/img/defaultCover/1location.png.js +1 -1
- package/es/shared/assets/img/defaultCover/2notfound.png.js +1 -1
- package/es/shared/assets/img/defaultCover/3loading.png.js +1 -1
- package/es/shared/assets/img/defaultCover/4no_permission.png.js +1 -1
- package/es/shared/assets/img/defaultCover/5no_data.png.js +1 -1
- package/es/shared/assets/img/defaultCover/6no_network.png.js +1 -1
- package/es/shared/assets/img/defaultCover/7no_doctor.png.js +1 -1
- package/es/shared/assets/img/defaultCover/8system_error.png.js +1 -1
- package/es/shared/assets/img/defaultCover/9system_upgrade.png.js +1 -1
- package/es/shared/assets/img/failure.png.js +1 -1
- package/es/shared/assets/img/file-emr.png.js +1 -0
- package/es/shared/assets/img/file.png.js +1 -0
- package/es/shared/assets/img/logo.png.js +1 -1
- package/es/shared/assets/img/no-permission.png.js +1 -1
- package/es/shared/assets/img/nodata.png.js +1 -1
- package/es/shared/assets/img/notfound.png.js +1 -1
- package/es/shared/assets/img/qr.png.js +1 -1
- package/es/shared/assets/img/success.png.js +1 -1
- package/es/shared/assets/img/table_style_2.png.js +1 -1
- package/es/shared/assets/img/use.png.js +1 -0
- package/es/shared/assets/img/video.png.js +1 -1
- package/es/shared/assets/img/video_default_cover.png.js +1 -1
- package/es/shared/assets/img/xb_big.png.js +1 -1
- package/es/shared/assets/img/xb_small.png.js +1 -1
- package/es/shared/hooks/useLevelSearchCascader.d.ts +1 -0
- package/es/shared/hooks/useLevelSearchCascader.js +1 -1
- package/es/shared/package.json.js +1 -1
- package/package.json +5 -3
- package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
- package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +0 -1
- package/es/components/bpmn-workflow/types/ModelingModule.d.ts +0 -1
- package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +0 -1
- package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +0 -86
- package/es/shared/utils/fabricjs/index.d.ts +0 -6823
- package/es/shared/utils/tapable/index.d.ts +0 -139
@@ -15,17 +15,16 @@ declare const AiChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
15
15
|
};
|
16
16
|
queryData: {
|
17
17
|
type: import("vue").PropType<import("./src/types").QueryData>;
|
18
|
-
reuired: boolean;
|
19
18
|
};
|
20
19
|
queryRecord: {
|
21
20
|
type: import("vue").PropType<import("./src/types").QueryRecord>;
|
22
|
-
reuired: boolean;
|
23
21
|
};
|
24
22
|
hideInput: {
|
25
23
|
type: BooleanConstructor;
|
26
24
|
};
|
27
25
|
uiStyle: {
|
28
26
|
type: StringConstructor;
|
27
|
+
default: string;
|
29
28
|
};
|
30
29
|
audioTimed: {
|
31
30
|
type: NumberConstructor;
|
@@ -49,8 +48,42 @@ declare const AiChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
49
48
|
appId: {
|
50
49
|
type: StringConstructor;
|
51
50
|
};
|
51
|
+
immediatelyRecording: {
|
52
|
+
type: BooleanConstructor;
|
53
|
+
default: boolean;
|
54
|
+
};
|
55
|
+
isStreamingOutput: {
|
56
|
+
type: BooleanConstructor;
|
57
|
+
default: boolean;
|
58
|
+
};
|
59
|
+
showLBtn: {
|
60
|
+
type: BooleanConstructor;
|
61
|
+
default: boolean;
|
62
|
+
};
|
63
|
+
disabled: {
|
64
|
+
type: BooleanConstructor;
|
65
|
+
default: boolean;
|
66
|
+
};
|
67
|
+
appCode: {
|
68
|
+
type: StringConstructor;
|
69
|
+
};
|
70
|
+
sessionId: {
|
71
|
+
type: StringConstructor;
|
72
|
+
};
|
73
|
+
prologue: {
|
74
|
+
type: StringConstructor;
|
75
|
+
};
|
76
|
+
configs: {
|
77
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
78
|
+
};
|
79
|
+
bpmnProcessIdAndStartToken: {
|
80
|
+
type: StringConstructor;
|
81
|
+
};
|
82
|
+
mobile: {
|
83
|
+
type: BooleanConstructor;
|
84
|
+
default: boolean;
|
85
|
+
};
|
52
86
|
}, {
|
53
|
-
cssVars: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
|
54
87
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
55
88
|
token: {
|
56
89
|
type: StringConstructor;
|
@@ -67,17 +100,16 @@ declare const AiChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
67
100
|
};
|
68
101
|
queryData: {
|
69
102
|
type: import("vue").PropType<import("./src/types").QueryData>;
|
70
|
-
reuired: boolean;
|
71
103
|
};
|
72
104
|
queryRecord: {
|
73
105
|
type: import("vue").PropType<import("./src/types").QueryRecord>;
|
74
|
-
reuired: boolean;
|
75
106
|
};
|
76
107
|
hideInput: {
|
77
108
|
type: BooleanConstructor;
|
78
109
|
};
|
79
110
|
uiStyle: {
|
80
111
|
type: StringConstructor;
|
112
|
+
default: string;
|
81
113
|
};
|
82
114
|
audioTimed: {
|
83
115
|
type: NumberConstructor;
|
@@ -101,31 +133,107 @@ declare const AiChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
101
133
|
appId: {
|
102
134
|
type: StringConstructor;
|
103
135
|
};
|
136
|
+
immediatelyRecording: {
|
137
|
+
type: BooleanConstructor;
|
138
|
+
default: boolean;
|
139
|
+
};
|
140
|
+
isStreamingOutput: {
|
141
|
+
type: BooleanConstructor;
|
142
|
+
default: boolean;
|
143
|
+
};
|
144
|
+
showLBtn: {
|
145
|
+
type: BooleanConstructor;
|
146
|
+
default: boolean;
|
147
|
+
};
|
148
|
+
disabled: {
|
149
|
+
type: BooleanConstructor;
|
150
|
+
default: boolean;
|
151
|
+
};
|
152
|
+
appCode: {
|
153
|
+
type: StringConstructor;
|
154
|
+
};
|
155
|
+
sessionId: {
|
156
|
+
type: StringConstructor;
|
157
|
+
};
|
158
|
+
prologue: {
|
159
|
+
type: StringConstructor;
|
160
|
+
};
|
161
|
+
configs: {
|
162
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
163
|
+
};
|
164
|
+
bpmnProcessIdAndStartToken: {
|
165
|
+
type: StringConstructor;
|
166
|
+
};
|
167
|
+
mobile: {
|
168
|
+
type: BooleanConstructor;
|
169
|
+
default: boolean;
|
170
|
+
};
|
104
171
|
}>> & {
|
105
172
|
"onButton-click"?: ((...args: any[]) => any) | undefined;
|
173
|
+
onProgram?: ((...args: any[]) => any) | undefined;
|
106
174
|
}>>;
|
107
|
-
|
108
|
-
|
175
|
+
emit: (event: "button-click" | "program", ...args: any[]) => void;
|
176
|
+
data: {
|
177
|
+
chatMainRef: import("vue").Ref<any>;
|
178
|
+
patientInfo: import("vue").Ref<any>;
|
179
|
+
configs: import("vue").Ref<any>;
|
180
|
+
queryPrompt: import("vue").Ref<any>;
|
181
|
+
queryData: import("vue").Ref<any>;
|
182
|
+
queryRecord: import("vue").Ref<any>;
|
183
|
+
defaultShortcutList: import("vue").Ref<any>;
|
184
|
+
hideInput: import("vue").Ref<any>;
|
185
|
+
shortcutList: import("vue").Ref<any>;
|
186
|
+
audioTimed: import("vue").Ref<any>;
|
187
|
+
commandList: import("vue").Ref<any>;
|
188
|
+
appId: import("vue").Ref<any>;
|
189
|
+
immediatelyRecording: import("vue").Ref<any>;
|
190
|
+
isStreamingOutput: import("vue").Ref<any>;
|
191
|
+
showLBtn: import("vue").Ref<any>;
|
192
|
+
disabled: import("vue").Ref<any>;
|
193
|
+
appCode: import("vue").Ref<any>;
|
194
|
+
prologue: import("vue").Ref<any>;
|
195
|
+
mobile: import("vue").Ref<any>;
|
196
|
+
bpmnProcessIdAndStartToken: import("vue").Ref<any>;
|
197
|
+
cssVars: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
|
198
|
+
state: import("../../shared/types").AnyObject;
|
199
|
+
isSmall: import("vue").ComputedRef<boolean>;
|
200
|
+
isDefault: import("vue").ComputedRef<boolean>;
|
201
|
+
vaa07: import("vue").ComputedRef<any>;
|
202
|
+
sessionId: import("vue").ComputedRef<any>;
|
203
|
+
axiosInstance: import("axios").AxiosInstance;
|
204
|
+
$dialog: import("naive-ui").DialogApi;
|
205
|
+
emit: (event: "button-click" | "program", ...args: any[]) => void;
|
206
|
+
appendMessage: (item: import("../../shared/types").AnyObject) => Promise<void>;
|
207
|
+
sendMessage: (params?: import("../../shared/types").AnyObject) => Promise<void>;
|
208
|
+
toFinishProgram: (bpmnProcessId: string) => void;
|
209
|
+
toNext: (bpmnProcessId?: string | undefined, variables?: any) => void;
|
210
|
+
toReplyAiConditions: (params?: import("../../shared/types").AnyObject | undefined) => void;
|
211
|
+
formatProcessInfo: (result: string) => void;
|
212
|
+
};
|
213
|
+
cssVars: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
|
109
214
|
state: import("../../shared/types").AnyObject;
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
} | {}>;
|
215
|
+
chatMainRef: import("vue").Ref<any>;
|
216
|
+
sessionId: import("vue").ComputedRef<any>;
|
217
|
+
onClose: () => void;
|
218
|
+
NIcon: any;
|
219
|
+
NButton: any;
|
220
|
+
NDialogProvider: any;
|
221
|
+
ChatMain: import("vue").DefineComponent<{}, () => JSX.Element[], {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
118
222
|
ChatFooter: import("vue").DefineComponent<{}, {
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
audioTimed: any;
|
126
|
-
commandList: any;
|
127
|
-
inputRef: import("vue").Ref<any>;
|
223
|
+
state: import("../../shared/types").AnyObject;
|
224
|
+
shortcutList: import("vue").Ref<any>;
|
225
|
+
getShortcutName: (item: string | import("../../shared/types").AnyObject) => any;
|
226
|
+
isAllDisabled: import("vue").ComputedRef<any>;
|
227
|
+
isStreamingOutput: import("vue").Ref<any>;
|
228
|
+
handleShortcut: (item: string | import("../../shared/types").AnyObject) => void;
|
128
229
|
showPopover: import("vue").Ref<boolean>;
|
230
|
+
handleKeyDown: (event: KeyboardEvent) => void;
|
231
|
+
handleInput: (value: string) => void;
|
232
|
+
btnDisabled: import("vue").ComputedRef<any>;
|
233
|
+
commandList: import("vue").Ref<any>;
|
234
|
+
showAudio: import("vue").Ref<boolean>;
|
235
|
+
handleSend: () => void;
|
236
|
+
isDefault: import("vue").ComputedRef<boolean>;
|
129
237
|
breadcrumb: import("vue").Ref<{
|
130
238
|
[x: string]: any;
|
131
239
|
shortcutTitle: string;
|
@@ -133,6 +241,7 @@ declare const AiChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
133
241
|
shortcutDescription?: string | undefined;
|
134
242
|
children?: any[] | undefined;
|
135
243
|
}[]>;
|
244
|
+
currentShortcutId: import("vue").Ref<string>;
|
136
245
|
currentCommand: import("vue").Ref<{
|
137
246
|
[x: string]: any;
|
138
247
|
shortcutTitle: string;
|
@@ -140,22 +249,23 @@ declare const AiChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
140
249
|
shortcutDescription?: string | undefined;
|
141
250
|
children?: any[] | undefined;
|
142
251
|
}[]>;
|
252
|
+
clickMenu: (menu: import("./src/types").CommandItem) => void;
|
253
|
+
audioTimed: import("vue").Ref<any>;
|
254
|
+
showLBtn: import("vue").Ref<any>;
|
255
|
+
isSmall: import("vue").ComputedRef<boolean>;
|
256
|
+
cssVars: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
|
257
|
+
railStyle: ({ focused, checked }: {
|
258
|
+
focused: boolean;
|
259
|
+
checked: boolean;
|
260
|
+
}) => import("vue").CSSProperties;
|
261
|
+
inputRef: import("vue").Ref<any>;
|
262
|
+
placeholder: import("vue").ComputedRef<"请向我提问,Shift+Enter换行" | "请向我提问或输入\"/\"查看指令" | "请向我提问或输入\"/\"查看指令,Shift+Enter换行">;
|
263
|
+
audioSdk: import("..").CAudioSDK;
|
264
|
+
recorderStart: () => Promise<void>;
|
143
265
|
showPrompt: import("vue").Ref<boolean>;
|
144
|
-
currentShortcutId: import("vue").Ref<string>;
|
145
266
|
showPatient: import("vue").Ref<boolean>;
|
146
|
-
placeholder: import("vue").ComputedRef<"请向我提问或输入\"/\"查看指令" | "请向我提问或输入\"/\"查看指令,Shift+Enter换行">;
|
147
|
-
btnDisabled: import("vue").ComputedRef<any>;
|
148
267
|
showMagicWand: import("vue").ComputedRef<boolean>;
|
149
268
|
patient: import("vue").ComputedRef<string>;
|
150
|
-
recorderStart: () => Promise<void>;
|
151
|
-
getShortcutName: (item: string | import("../../shared/types").AnyObject) => any;
|
152
|
-
handleShortcut: (item: string | import("../../shared/types").AnyObject) => void;
|
153
|
-
resetCurrentCommand: () => void;
|
154
|
-
handleKeyDown: (event: KeyboardEvent) => void;
|
155
|
-
isWrap: (event: KeyboardEvent) => boolean;
|
156
|
-
handleInput: (value: string) => void;
|
157
|
-
handleSend: () => void;
|
158
|
-
clickMenu: (menu: import("./src/types").CommandItem) => void;
|
159
269
|
handleBack: () => void;
|
160
270
|
updateShow: (value: boolean) => void;
|
161
271
|
NButton: any;
|
@@ -165,6 +275,7 @@ declare const AiChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
165
275
|
NBreadcrumb: any;
|
166
276
|
NBreadcrumbItem: any;
|
167
277
|
NTag: any;
|
278
|
+
NSwitch: any;
|
168
279
|
PaperPlane: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
169
280
|
ChevronBack: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
170
281
|
ChevronForward: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
@@ -187,8 +298,8 @@ declare const AiChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
187
298
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
188
299
|
}>>;
|
189
300
|
emit: (event: "update:show", ...args: any[]) => void;
|
190
|
-
|
191
|
-
|
301
|
+
state: import("../../shared/types").AnyObject;
|
302
|
+
queryPrompt: import("vue").Ref<any>;
|
192
303
|
listRef: import("vue").Ref<any>;
|
193
304
|
keyword: import("vue").Ref<string>;
|
194
305
|
list: import("vue").Ref<import("../../shared/types").AnyObject[]>;
|
@@ -226,8 +337,8 @@ declare const AiChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
226
337
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
227
338
|
}>>;
|
228
339
|
emit: (event: "update:show", ...args: any[]) => void;
|
229
|
-
|
230
|
-
|
340
|
+
state: import("../../shared/types").AnyObject;
|
341
|
+
patientInfo: import("vue").Ref<any>;
|
231
342
|
formValue: {
|
232
343
|
businessType: string;
|
233
344
|
vaa01: null;
|
@@ -269,8 +380,207 @@ declare const AiChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
269
380
|
}, {
|
270
381
|
show: boolean;
|
271
382
|
}>;
|
383
|
+
ChatAudio: import("vue").DefineComponent<{
|
384
|
+
show: {
|
385
|
+
type: BooleanConstructor;
|
386
|
+
};
|
387
|
+
}, {
|
388
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
389
|
+
show: {
|
390
|
+
type: BooleanConstructor;
|
391
|
+
};
|
392
|
+
}>> & {
|
393
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
394
|
+
}>>;
|
395
|
+
emit: (event: "update:show", ...args: any[]) => void;
|
396
|
+
audioChartRef: import("vue").Ref<HTMLDivElement | undefined>;
|
397
|
+
isWarning: import("vue").Ref<boolean>;
|
398
|
+
isActive: import("vue").Ref<boolean>;
|
399
|
+
handlePlay: () => void;
|
400
|
+
handlePause: () => void;
|
401
|
+
handleEnd: (trigger?: string | undefined) => Promise<void>;
|
402
|
+
formattedTime: import("vue").ComputedRef<string>;
|
403
|
+
warnTime: import("vue").Ref<number>;
|
404
|
+
tip: import("vue").ComputedRef<"未识别录音" | "正在录音中..." | "录音已暂停">;
|
405
|
+
NSpace: any;
|
406
|
+
NButton: any;
|
407
|
+
NIcon: any;
|
408
|
+
StopCircleOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
409
|
+
MicOff: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
410
|
+
AlertCircle: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
411
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:show"[], "update:show", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
412
|
+
show: {
|
413
|
+
type: BooleanConstructor;
|
414
|
+
};
|
415
|
+
}>> & {
|
416
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
417
|
+
}, {
|
418
|
+
show: boolean;
|
419
|
+
}>;
|
420
|
+
MicroPhone: any;
|
272
421
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
273
|
-
|
422
|
+
ChatRight: import("vue").DefineComponent<{}, {
|
423
|
+
medicalLabel: {
|
424
|
+
key: string;
|
425
|
+
title: string;
|
426
|
+
}[];
|
427
|
+
state: import("../../shared/types").AnyObject;
|
428
|
+
configs: import("vue").Ref<any>;
|
429
|
+
sendMessage: (params?: import("../../shared/types").AnyObject) => Promise<void>;
|
430
|
+
isStreamingOutput: import("vue").Ref<any>;
|
431
|
+
toolbarConfig: {
|
432
|
+
toolbarKeys: never[];
|
433
|
+
};
|
434
|
+
content: import("vue").Ref<string>;
|
435
|
+
saveDisabled: import("vue").ComputedRef<any>;
|
436
|
+
handleSave: () => Promise<void>;
|
437
|
+
handleDelete: () => Promise<void>;
|
438
|
+
createMedicalRecord: () => void;
|
439
|
+
extractContentByTitle: () => import("../../shared/types").AnyObject;
|
440
|
+
NSpace: any;
|
441
|
+
NButton: any;
|
442
|
+
Editor: SFCWithInstall<import("vue").DefineComponent<{
|
443
|
+
editorConfig: {
|
444
|
+
type: ObjectConstructor;
|
445
|
+
};
|
446
|
+
toolbarConfig: {
|
447
|
+
type: ObjectConstructor;
|
448
|
+
};
|
449
|
+
uploadImgUrl: {
|
450
|
+
type: StringConstructor;
|
451
|
+
};
|
452
|
+
isDisabled: {
|
453
|
+
type: BooleanConstructor;
|
454
|
+
default: boolean;
|
455
|
+
};
|
456
|
+
}, {
|
457
|
+
editorRef: import("vue").ShallowRef<any>;
|
458
|
+
renderVN: () => JSX.Element;
|
459
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, never[], never, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
460
|
+
editorConfig: {
|
461
|
+
type: ObjectConstructor;
|
462
|
+
};
|
463
|
+
toolbarConfig: {
|
464
|
+
type: ObjectConstructor;
|
465
|
+
};
|
466
|
+
uploadImgUrl: {
|
467
|
+
type: StringConstructor;
|
468
|
+
};
|
469
|
+
isDisabled: {
|
470
|
+
type: BooleanConstructor;
|
471
|
+
default: boolean;
|
472
|
+
};
|
473
|
+
}>> & {}, {
|
474
|
+
isDisabled: boolean;
|
475
|
+
}>>;
|
476
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
477
|
+
ChatMainDefault: import("vue").DefineComponent<{}, () => JSX.Element[], {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
478
|
+
CloseOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
479
|
+
MobileChatFooter: import("vue").DefineComponent<{}, {
|
480
|
+
state: import("../../shared/types").AnyObject;
|
481
|
+
shortcutList: import("vue").Ref<any>;
|
482
|
+
getShortcutName: (item: string | import("../../shared/types").AnyObject) => any;
|
483
|
+
isAllDisabled: import("vue").ComputedRef<any>;
|
484
|
+
isStreamingOutput: import("vue").Ref<any>;
|
485
|
+
handleShortcut: (item: string | import("../../shared/types").AnyObject) => void;
|
486
|
+
showPopover: import("vue").Ref<boolean>;
|
487
|
+
handleKeyDown: (event: KeyboardEvent) => void;
|
488
|
+
handleInput: (value: string) => void;
|
489
|
+
btnDisabled: import("vue").ComputedRef<any>;
|
490
|
+
showAudio: import("vue").Ref<boolean>;
|
491
|
+
breadcrumb: import("vue").Ref<{
|
492
|
+
[x: string]: any;
|
493
|
+
shortcutTitle: string;
|
494
|
+
shortcutId: string;
|
495
|
+
shortcutDescription?: string | undefined;
|
496
|
+
children?: any[] | undefined;
|
497
|
+
}[]>;
|
498
|
+
currentShortcutId: import("vue").Ref<string>;
|
499
|
+
currentCommand: import("vue").Ref<{
|
500
|
+
[x: string]: any;
|
501
|
+
shortcutTitle: string;
|
502
|
+
shortcutId: string;
|
503
|
+
shortcutDescription?: string | undefined;
|
504
|
+
children?: any[] | undefined;
|
505
|
+
}[]>;
|
506
|
+
commandList: import("vue").Ref<any>;
|
507
|
+
clickMenu: (menu: import("./src/types").CommandItem) => void;
|
508
|
+
handleBack: () => void;
|
509
|
+
AudioStateMap: {
|
510
|
+
INPUT: string;
|
511
|
+
AUDIO: string;
|
512
|
+
AUDIO_DOING: string;
|
513
|
+
AUDIO_CANCEL: string;
|
514
|
+
};
|
515
|
+
audioState: any;
|
516
|
+
showState: {
|
517
|
+
show: boolean;
|
518
|
+
};
|
519
|
+
footerRef: import("vue").Ref<HTMLDivElement | undefined>;
|
520
|
+
footerRect: null;
|
521
|
+
onBarTouchStart: () => void;
|
522
|
+
onFooterTouchMove: (event: TouchEvent) => void;
|
523
|
+
onFooterTouchEnd: () => void;
|
524
|
+
onFooterTouchCancel: () => void;
|
525
|
+
audioChartRef: import("vue").Ref<HTMLDivElement | undefined>;
|
526
|
+
isWarning: import("vue").Ref<boolean>;
|
527
|
+
isActive: import("vue").Ref<boolean>;
|
528
|
+
handlePlay: () => void;
|
529
|
+
handlePause: () => void;
|
530
|
+
handleEnd: (trigger?: string | undefined) => Promise<void>;
|
531
|
+
handleCancel: () => void;
|
532
|
+
formattedTime: import("vue").ComputedRef<string>;
|
533
|
+
warnTime: import("vue").Ref<number>;
|
534
|
+
audioSdk: import("..").CAudioSDK;
|
535
|
+
ChevronBack: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
536
|
+
ChevronForward: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
537
|
+
NBreadcrumb: any;
|
538
|
+
NBreadcrumbItem: any;
|
539
|
+
NButton: any;
|
540
|
+
NIcon: any;
|
541
|
+
NInput: any;
|
542
|
+
NPopover: any;
|
543
|
+
MobileChatAudio: import("vue").DefineComponent<{
|
544
|
+
show: {
|
545
|
+
type: BooleanConstructor;
|
546
|
+
};
|
547
|
+
}, {
|
548
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
549
|
+
show: {
|
550
|
+
type: BooleanConstructor;
|
551
|
+
};
|
552
|
+
}>> & {
|
553
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
554
|
+
}>>;
|
555
|
+
emit: (event: "update:show", ...args: any[]) => void;
|
556
|
+
audioChatRef: import("vue").Ref<HTMLDivElement | undefined>;
|
557
|
+
isWarning: import("vue").Ref<boolean>;
|
558
|
+
isActive: import("vue").Ref<boolean>;
|
559
|
+
handlePlay: () => void;
|
560
|
+
handlePause: () => void;
|
561
|
+
handleEnd: (trigger?: string | undefined) => Promise<void>;
|
562
|
+
formattedTime: import("vue").ComputedRef<string>;
|
563
|
+
warnTime: import("vue").Ref<number>;
|
564
|
+
audioSdk: import("..").CAudioSDK;
|
565
|
+
audioSdkContentRef: import("vue").Ref<string>;
|
566
|
+
tip: import("vue").ComputedRef<"未识别录音" | "录音已暂停" | "正在听...">;
|
567
|
+
stateText: import("vue").ComputedRef<"" | "已暂停">;
|
568
|
+
NButton: any;
|
569
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:show"[], "update:show", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
570
|
+
show: {
|
571
|
+
type: BooleanConstructor;
|
572
|
+
};
|
573
|
+
}>> & {
|
574
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
575
|
+
}, {
|
576
|
+
show: boolean;
|
577
|
+
}>;
|
578
|
+
AddIcon: any;
|
579
|
+
MicroPhone: any;
|
580
|
+
AudioIcon: any;
|
581
|
+
KeyboardIcon: any;
|
582
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
583
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("button-click" | "program")[], "button-click" | "program", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
274
584
|
token: {
|
275
585
|
type: StringConstructor;
|
276
586
|
required: true;
|
@@ -286,17 +596,16 @@ declare const AiChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
286
596
|
};
|
287
597
|
queryData: {
|
288
598
|
type: import("vue").PropType<import("./src/types").QueryData>;
|
289
|
-
reuired: boolean;
|
290
599
|
};
|
291
600
|
queryRecord: {
|
292
601
|
type: import("vue").PropType<import("./src/types").QueryRecord>;
|
293
|
-
reuired: boolean;
|
294
602
|
};
|
295
603
|
hideInput: {
|
296
604
|
type: BooleanConstructor;
|
297
605
|
};
|
298
606
|
uiStyle: {
|
299
607
|
type: StringConstructor;
|
608
|
+
default: string;
|
300
609
|
};
|
301
610
|
audioTimed: {
|
302
611
|
type: NumberConstructor;
|
@@ -320,10 +629,52 @@ declare const AiChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
320
629
|
appId: {
|
321
630
|
type: StringConstructor;
|
322
631
|
};
|
632
|
+
immediatelyRecording: {
|
633
|
+
type: BooleanConstructor;
|
634
|
+
default: boolean;
|
635
|
+
};
|
636
|
+
isStreamingOutput: {
|
637
|
+
type: BooleanConstructor;
|
638
|
+
default: boolean;
|
639
|
+
};
|
640
|
+
showLBtn: {
|
641
|
+
type: BooleanConstructor;
|
642
|
+
default: boolean;
|
643
|
+
};
|
644
|
+
disabled: {
|
645
|
+
type: BooleanConstructor;
|
646
|
+
default: boolean;
|
647
|
+
};
|
648
|
+
appCode: {
|
649
|
+
type: StringConstructor;
|
650
|
+
};
|
651
|
+
sessionId: {
|
652
|
+
type: StringConstructor;
|
653
|
+
};
|
654
|
+
prologue: {
|
655
|
+
type: StringConstructor;
|
656
|
+
};
|
657
|
+
configs: {
|
658
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
659
|
+
};
|
660
|
+
bpmnProcessIdAndStartToken: {
|
661
|
+
type: StringConstructor;
|
662
|
+
};
|
663
|
+
mobile: {
|
664
|
+
type: BooleanConstructor;
|
665
|
+
default: boolean;
|
666
|
+
};
|
323
667
|
}>> & {
|
324
668
|
"onButton-click"?: ((...args: any[]) => any) | undefined;
|
669
|
+
onProgram?: ((...args: any[]) => any) | undefined;
|
325
670
|
}, {
|
671
|
+
disabled: boolean;
|
326
672
|
hideInput: boolean;
|
673
|
+
uiStyle: string;
|
327
674
|
audioTimed: number;
|
675
|
+
immediatelyRecording: boolean;
|
676
|
+
isStreamingOutput: boolean;
|
677
|
+
showLBtn: boolean;
|
678
|
+
mobile: boolean;
|
328
679
|
}>>;
|
329
680
|
export default AiChat;
|