cnhis-design-vue 3.3.2-beta.17 → 3.3.2-beta.19

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 (50) hide show
  1. package/README.md +87 -87
  2. package/es/components/audio-sdk/index.d.ts +172 -146
  3. package/es/components/audio-sdk/src/Index.vue.d.ts +173 -147
  4. package/es/components/audio-sdk/src/Index.vue2.js +131 -53
  5. package/es/components/audio-sdk/src/audioSDK.d.ts +29 -26
  6. package/es/components/audio-sdk/src/audioSDK.js +124 -42
  7. package/es/components/audio-sdk/src/components/readyCountdown.vue.d.ts +31 -0
  8. package/es/components/audio-sdk/src/components/readyCountdown.vue.js +6 -0
  9. package/es/components/audio-sdk/src/components/readyCountdown.vue2.js +46 -0
  10. package/es/components/audio-sdk/src/components/recording-modal.vue.d.ts +137 -10
  11. package/es/components/audio-sdk/src/components/recording.vue.d.ts +138 -11
  12. package/es/components/audio-sdk/src/components/recording.vue2.js +317 -74
  13. package/es/components/audio-sdk/src/hooks/useChartAudioContext.d.ts +24 -0
  14. package/es/components/audio-sdk/src/hooks/useChartAudioContext.js +176 -0
  15. package/es/components/audio-sdk/src/svgs/Close.vue.js +26 -0
  16. package/es/components/audio-sdk/src/svgs/Continue.vue.js +20 -0
  17. package/es/components/audio-sdk/src/svgs/Enlarge.vue.js +20 -0
  18. package/es/components/audio-sdk/src/svgs/Pause.vue.js +20 -0
  19. package/es/components/audio-sdk/src/svgs/WaveView.vue.js +20 -0
  20. package/es/components/audio-sdk/src/svgs/Zoom.vue.js +27 -0
  21. package/es/components/audio-sdk/src/types/index.d.ts +42 -0
  22. package/es/components/audio-sdk/src/types/index.js +10 -0
  23. package/es/components/audio-sdk/src/utils/recordingModal.d.ts +9 -3
  24. package/es/components/audio-sdk/src/utils/recordingModal.js +57 -32
  25. package/es/components/audio-sdk/style/index.css +1 -1
  26. package/es/components/button-print/index.d.ts +11 -4
  27. package/es/components/button-print/src/ButtonPrint.vue.d.ts +11 -4
  28. package/es/components/button-print/src/components/IdentityVerification.vue.d.ts +4 -2
  29. package/es/components/button-print/src/components/IdentityVerification.vue2.js +6 -2
  30. package/es/components/button-print/src/components/NewPrintComponent.vue.d.ts +7 -2
  31. package/es/components/button-print/src/components/NewPrintComponent.vue2.js +12 -2
  32. package/es/components/button-print/src/components/OldPrintComponent.vue.d.ts +4 -2
  33. package/es/components/button-print/src/components/Preview.vue.d.ts +5 -2
  34. package/es/components/button-print/src/components/Preview.vue2.js +6 -2
  35. package/es/components/button-print/src/utils/dialog.js +2 -2
  36. package/es/components/classification/src/components/table-modal/index.vue.d.ts +0 -3
  37. package/es/components/fabric-chart/src/hooks/birthProcess/useBirthProcess.js +2 -1
  38. package/es/components/field-set/src/FieldColor.vue.d.ts +1 -1
  39. package/es/components/field-set/src/FieldFilter.vue.d.ts +1 -1
  40. package/es/components/field-set/src/FieldSet.vue.d.ts +1 -1
  41. package/es/components/field-set/src/components/table-row.vue.d.ts +1 -1
  42. package/es/components/form-render/src/components/renderer/textarea.js +4 -3
  43. package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
  44. package/es/components/index.css +1 -1
  45. package/es/components/scale-view/src/ScaleView.vue2.js +1 -1
  46. package/es/env.d.ts +25 -25
  47. package/es/shared/package.json.js +1 -1
  48. package/package.json +2 -2
  49. package/es/components/audio-sdk/src/components/recording-modal.vue.js +0 -6
  50. package/es/components/audio-sdk/src/components/recording-modal.vue2.js +0 -40
@@ -35,11 +35,25 @@ declare const _default: import("vue").DefineComponent<{
35
35
  type: BooleanConstructor;
36
36
  default: boolean;
37
37
  };
38
+ wsConnected: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
38
42
  fromSdk: {
39
43
  type: BooleanConstructor;
40
44
  };
45
+ show: {
46
+ type: BooleanConstructor;
47
+ default: boolean;
48
+ };
49
+ startWaveViewMethod: {
50
+ type: import("vue").PropType<import("../../../../shared/types").AnyFn>;
51
+ };
52
+ recorderStatus: {
53
+ type: import("vue").PropType<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
54
+ default: string;
55
+ };
41
56
  }, {
42
- consultationRecordUrl: string;
43
57
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
44
58
  content: {
45
59
  type: import("vue").PropType<string | {
@@ -63,24 +77,117 @@ declare const _default: import("vue").DefineComponent<{
63
77
  type: BooleanConstructor;
64
78
  default: boolean;
65
79
  };
80
+ wsConnected: {
81
+ type: BooleanConstructor;
82
+ default: boolean;
83
+ };
66
84
  fromSdk: {
67
85
  type: BooleanConstructor;
68
86
  };
87
+ show: {
88
+ type: BooleanConstructor;
89
+ default: boolean;
90
+ };
91
+ startWaveViewMethod: {
92
+ type: import("vue").PropType<import("../../../../shared/types").AnyFn>;
93
+ };
94
+ recorderStatus: {
95
+ type: import("vue").PropType<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
96
+ default: string;
97
+ };
69
98
  }>> & {
70
99
  onSuccess?: ((...args: any[]) => any) | undefined;
71
100
  onClose?: ((...args: any[]) => any) | undefined;
72
101
  onFail?: ((...args: any[]) => any) | undefined;
73
- onEnd?: ((...args: any[]) => any) | undefined;
74
- "onUpdate:loading"?: ((...args: any[]) => any) | undefined;
102
+ onPause?: ((...args: any[]) => any) | undefined;
103
+ onResume?: ((...args: any[]) => any) | undefined;
104
+ onToAnalyzing?: ((...args: any[]) => any) | undefined;
105
+ onHeightChange?: ((...args: any[]) => any) | undefined;
75
106
  }>>;
76
- emit: (event: "close" | "success" | "end" | "fail" | "update:loading", ...args: any[]) => void;
77
- close: () => void;
78
- toAnalyzing: () => Promise<void>;
107
+ emit: (event: "close" | "success" | "fail" | "pause" | "resume" | "toAnalyzing" | "heightChange", ...args: any[]) => void;
108
+ loading: import("vue").Ref<boolean>;
109
+ content: import("vue").Ref<string | {
110
+ data: string;
111
+ }>;
112
+ wsConnected: import("vue").Ref<boolean>;
113
+ recorderStatus: import("vue").Ref<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
114
+ audioChartRef: import("vue").Ref<HTMLDivElement | undefined>;
115
+ audioChartSamllRef: import("vue").Ref<HTMLDivElement | undefined>;
116
+ contentScrollRef: import("vue").Ref<HTMLDivElement | undefined>;
117
+ isActive: import("vue").Ref<boolean>;
118
+ isWarning: import("vue").Ref<boolean>;
119
+ formattedTime: import("vue").ComputedRef<string>;
120
+ isCountFinished: import("vue").Ref<boolean>;
121
+ isCountActive: import("vue").Ref<boolean>;
122
+ isZoomSmall: import("vue").Ref<boolean>;
123
+ pause: any;
124
+ btnDisabled: import("vue").ComputedRef<any>;
125
+ handleEnd: (closeType?: string) => Promise<any>;
126
+ handlePause: () => Promise<void>;
127
+ handlePlay: () => Promise<void>;
128
+ handleZoom: () => Promise<void>;
129
+ setWarningState: (state: boolean) => void;
130
+ startWarningTimer: (initTime?: number) => void;
131
+ initStartWaveView: () => Promise<void>;
132
+ cleanupState: () => void;
133
+ handleHeightChange: (showContent: boolean) => void;
134
+ onEnd: (closeType?: string) => Promise<any>;
135
+ onPause: () => Promise<void>;
136
+ onPlay: () => Promise<void>;
137
+ onZoom: () => Promise<void>;
138
+ isFailStatus: import("vue").ComputedRef<boolean>;
139
+ isActiveStatus: import("vue").ComputedRef<boolean>;
140
+ isWarningStatus: import("vue").ComputedRef<boolean>;
141
+ isPauseStatus: import("vue").ComputedRef<boolean>;
142
+ showContent: import("vue").ComputedRef<boolean>;
143
+ tip: import("vue").ComputedRef<"录音异常!" | "录音识别中..." | "正在录音中..." | "无语音录入,请检测是否录音!" | "已暂停录音">;
144
+ tipSmall: import("vue").ComputedRef<"录入异常" | "识别中..." | "录音中..." | "已暂停">;
145
+ showDom: import("vue").ComputedRef<boolean>;
79
146
  NIcon: any;
80
147
  NButton: any;
81
148
  NSpin: any;
82
- Mic: 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<{}>>, {}>;
83
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "success" | "end" | "fail" | "update:loading")[], "close" | "success" | "end" | "fail" | "update:loading", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
149
+ NSpace: any;
150
+ NTooltip: any;
151
+ 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<{}>>, {}>;
152
+ PlayCircleOutline: 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<{}>>, {}>;
153
+ StopCircle: 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<{}>>, {}>;
154
+ ReadyCountdown: import("vue").DefineComponent<{
155
+ isCountActive: {
156
+ type: BooleanConstructor;
157
+ default: boolean;
158
+ };
159
+ }, {
160
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
161
+ isCountActive: {
162
+ type: BooleanConstructor;
163
+ default: boolean;
164
+ };
165
+ }>> & {
166
+ "onUpdate:isCountFinished"?: ((...args: any[]) => any) | undefined;
167
+ }>>;
168
+ emit: (event: "update:isCountFinished", ...args: any[]) => void;
169
+ renderCountdown: ({ seconds }: {
170
+ seconds: number;
171
+ }) => number;
172
+ countDownFinish: () => void;
173
+ NCountdown: any;
174
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:isCountFinished"[], "update:isCountFinished", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
175
+ isCountActive: {
176
+ type: BooleanConstructor;
177
+ default: boolean;
178
+ };
179
+ }>> & {
180
+ "onUpdate:isCountFinished"?: ((...args: any[]) => any) | undefined;
181
+ }, {
182
+ isCountActive: boolean;
183
+ }>;
184
+ CloseSvg: any;
185
+ ZoomSvg: any;
186
+ PauseSvg: any;
187
+ ContinueSvg: any;
188
+ EnlargeSvg: any;
189
+ WaveView: any;
190
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "success" | "fail" | "pause" | "resume" | "toAnalyzing" | "heightChange")[], "close" | "success" | "fail" | "pause" | "resume" | "toAnalyzing" | "heightChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
84
191
  content: {
85
192
  type: import("vue").PropType<string | {
86
193
  data: string;
@@ -103,22 +210,42 @@ declare const _default: import("vue").DefineComponent<{
103
210
  type: BooleanConstructor;
104
211
  default: boolean;
105
212
  };
213
+ wsConnected: {
214
+ type: BooleanConstructor;
215
+ default: boolean;
216
+ };
106
217
  fromSdk: {
107
218
  type: BooleanConstructor;
108
219
  };
220
+ show: {
221
+ type: BooleanConstructor;
222
+ default: boolean;
223
+ };
224
+ startWaveViewMethod: {
225
+ type: import("vue").PropType<import("../../../../shared/types").AnyFn>;
226
+ };
227
+ recorderStatus: {
228
+ type: import("vue").PropType<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
229
+ default: string;
230
+ };
109
231
  }>> & {
110
232
  onSuccess?: ((...args: any[]) => any) | undefined;
111
233
  onClose?: ((...args: any[]) => any) | undefined;
112
234
  onFail?: ((...args: any[]) => any) | undefined;
113
- onEnd?: ((...args: any[]) => any) | undefined;
114
- "onUpdate:loading"?: ((...args: any[]) => any) | undefined;
235
+ onPause?: ((...args: any[]) => any) | undefined;
236
+ onResume?: ((...args: any[]) => any) | undefined;
237
+ onToAnalyzing?: ((...args: any[]) => any) | undefined;
238
+ onHeightChange?: ((...args: any[]) => any) | undefined;
115
239
  }, {
116
240
  content: string | {
117
241
  data: string;
118
242
  };
119
243
  loading: boolean;
244
+ show: boolean;
120
245
  showBtn: boolean;
246
+ wsConnected: boolean;
121
247
  fromSdk: boolean;
248
+ recorderStatus: "" | "fail" | "recording" | "pause" | "ws_close" | "stop";
122
249
  }>;
123
250
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
124
251
  content: {
@@ -1,5 +1,5 @@
1
1
  import { PropType } from 'vue';
2
- import { AnyObject } from '../../../../shared/types';
2
+ import { AnyObject, AnyFn } from '../../../../shared/types';
3
3
  declare const _default: import("vue").DefineComponent<{
4
4
  content: {
5
5
  type: PropType<string | {
@@ -23,11 +23,25 @@ declare const _default: import("vue").DefineComponent<{
23
23
  type: BooleanConstructor;
24
24
  default: boolean;
25
25
  };
26
+ wsConnected: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
26
30
  fromSdk: {
27
31
  type: BooleanConstructor;
28
32
  };
33
+ show: {
34
+ type: BooleanConstructor;
35
+ default: boolean;
36
+ };
37
+ startWaveViewMethod: {
38
+ type: PropType<AnyFn>;
39
+ };
40
+ recorderStatus: {
41
+ type: PropType<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
42
+ default: string;
43
+ };
29
44
  }, {
30
- consultationRecordUrl: string;
31
45
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
32
46
  content: {
33
47
  type: PropType<string | {
@@ -51,24 +65,117 @@ declare const _default: import("vue").DefineComponent<{
51
65
  type: BooleanConstructor;
52
66
  default: boolean;
53
67
  };
68
+ wsConnected: {
69
+ type: BooleanConstructor;
70
+ default: boolean;
71
+ };
54
72
  fromSdk: {
55
73
  type: BooleanConstructor;
56
74
  };
75
+ show: {
76
+ type: BooleanConstructor;
77
+ default: boolean;
78
+ };
79
+ startWaveViewMethod: {
80
+ type: PropType<AnyFn>;
81
+ };
82
+ recorderStatus: {
83
+ type: PropType<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
84
+ default: string;
85
+ };
57
86
  }>> & {
58
87
  onSuccess?: ((...args: any[]) => any) | undefined;
59
88
  onClose?: ((...args: any[]) => any) | undefined;
60
89
  onFail?: ((...args: any[]) => any) | undefined;
61
- onEnd?: ((...args: any[]) => any) | undefined;
62
- "onUpdate:loading"?: ((...args: any[]) => any) | undefined;
90
+ onPause?: ((...args: any[]) => any) | undefined;
91
+ onResume?: ((...args: any[]) => any) | undefined;
92
+ onToAnalyzing?: ((...args: any[]) => any) | undefined;
93
+ onHeightChange?: ((...args: any[]) => any) | undefined;
63
94
  }>>;
64
- emit: (event: "close" | "success" | "end" | "fail" | "update:loading", ...args: any[]) => void;
65
- close: () => void;
66
- toAnalyzing: () => Promise<void>;
95
+ emit: (event: "close" | "success" | "fail" | "pause" | "resume" | "toAnalyzing" | "heightChange", ...args: any[]) => void;
96
+ loading: import("vue").Ref<boolean>;
97
+ content: import("vue").Ref<string | {
98
+ data: string;
99
+ }>;
100
+ wsConnected: import("vue").Ref<boolean>;
101
+ recorderStatus: import("vue").Ref<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
102
+ audioChartRef: import("vue").Ref<HTMLDivElement | undefined>;
103
+ audioChartSamllRef: import("vue").Ref<HTMLDivElement | undefined>;
104
+ contentScrollRef: import("vue").Ref<HTMLDivElement | undefined>;
105
+ isActive: import("vue").Ref<boolean>;
106
+ isWarning: import("vue").Ref<boolean>;
107
+ formattedTime: import("vue").ComputedRef<string>;
108
+ isCountFinished: import("vue").Ref<boolean>;
109
+ isCountActive: import("vue").Ref<boolean>;
110
+ isZoomSmall: import("vue").Ref<boolean>;
111
+ pause: any;
112
+ btnDisabled: import("vue").ComputedRef<any>;
113
+ handleEnd: (closeType?: string) => Promise<any>;
114
+ handlePause: () => Promise<void>;
115
+ handlePlay: () => Promise<void>;
116
+ handleZoom: () => Promise<void>;
117
+ setWarningState: (state: boolean) => void;
118
+ startWarningTimer: (initTime?: number) => void;
119
+ initStartWaveView: () => Promise<void>;
120
+ cleanupState: () => void;
121
+ handleHeightChange: (showContent: boolean) => void;
122
+ onEnd: (closeType?: string) => Promise<any>;
123
+ onPause: () => Promise<void>;
124
+ onPlay: () => Promise<void>;
125
+ onZoom: () => Promise<void>;
126
+ isFailStatus: import("vue").ComputedRef<boolean>;
127
+ isActiveStatus: import("vue").ComputedRef<boolean>;
128
+ isWarningStatus: import("vue").ComputedRef<boolean>;
129
+ isPauseStatus: import("vue").ComputedRef<boolean>;
130
+ showContent: import("vue").ComputedRef<boolean>;
131
+ tip: import("vue").ComputedRef<"录音异常!" | "录音识别中..." | "正在录音中..." | "无语音录入,请检测是否录音!" | "已暂停录音">;
132
+ tipSmall: import("vue").ComputedRef<"录入异常" | "识别中..." | "录音中..." | "已暂停">;
133
+ showDom: import("vue").ComputedRef<boolean>;
67
134
  NIcon: any;
68
135
  NButton: any;
69
136
  NSpin: any;
70
- Mic: 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<{}>>, {}>;
71
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "success" | "end" | "fail" | "update:loading")[], "close" | "success" | "end" | "fail" | "update:loading", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
137
+ NSpace: any;
138
+ NTooltip: any;
139
+ 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<{}>>, {}>;
140
+ PlayCircleOutline: 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<{}>>, {}>;
141
+ StopCircle: 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<{}>>, {}>;
142
+ ReadyCountdown: import("vue").DefineComponent<{
143
+ isCountActive: {
144
+ type: BooleanConstructor;
145
+ default: boolean;
146
+ };
147
+ }, {
148
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
149
+ isCountActive: {
150
+ type: BooleanConstructor;
151
+ default: boolean;
152
+ };
153
+ }>> & {
154
+ "onUpdate:isCountFinished"?: ((...args: any[]) => any) | undefined;
155
+ }>>;
156
+ emit: (event: "update:isCountFinished", ...args: any[]) => void;
157
+ renderCountdown: ({ seconds }: {
158
+ seconds: number;
159
+ }) => number;
160
+ countDownFinish: () => void;
161
+ NCountdown: any;
162
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:isCountFinished"[], "update:isCountFinished", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
163
+ isCountActive: {
164
+ type: BooleanConstructor;
165
+ default: boolean;
166
+ };
167
+ }>> & {
168
+ "onUpdate:isCountFinished"?: ((...args: any[]) => any) | undefined;
169
+ }, {
170
+ isCountActive: boolean;
171
+ }>;
172
+ CloseSvg: any;
173
+ ZoomSvg: any;
174
+ PauseSvg: any;
175
+ ContinueSvg: any;
176
+ EnlargeSvg: any;
177
+ WaveView: any;
178
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "success" | "fail" | "pause" | "resume" | "toAnalyzing" | "heightChange")[], "close" | "success" | "fail" | "pause" | "resume" | "toAnalyzing" | "heightChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
72
179
  content: {
73
180
  type: PropType<string | {
74
181
  data: string;
@@ -91,21 +198,41 @@ declare const _default: import("vue").DefineComponent<{
91
198
  type: BooleanConstructor;
92
199
  default: boolean;
93
200
  };
201
+ wsConnected: {
202
+ type: BooleanConstructor;
203
+ default: boolean;
204
+ };
94
205
  fromSdk: {
95
206
  type: BooleanConstructor;
96
207
  };
208
+ show: {
209
+ type: BooleanConstructor;
210
+ default: boolean;
211
+ };
212
+ startWaveViewMethod: {
213
+ type: PropType<AnyFn>;
214
+ };
215
+ recorderStatus: {
216
+ type: PropType<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
217
+ default: string;
218
+ };
97
219
  }>> & {
98
220
  onSuccess?: ((...args: any[]) => any) | undefined;
99
221
  onClose?: ((...args: any[]) => any) | undefined;
100
222
  onFail?: ((...args: any[]) => any) | undefined;
101
- onEnd?: ((...args: any[]) => any) | undefined;
102
- "onUpdate:loading"?: ((...args: any[]) => any) | undefined;
223
+ onPause?: ((...args: any[]) => any) | undefined;
224
+ onResume?: ((...args: any[]) => any) | undefined;
225
+ onToAnalyzing?: ((...args: any[]) => any) | undefined;
226
+ onHeightChange?: ((...args: any[]) => any) | undefined;
103
227
  }, {
104
228
  content: string | {
105
229
  data: string;
106
230
  };
107
231
  loading: boolean;
232
+ show: boolean;
108
233
  showBtn: boolean;
234
+ wsConnected: boolean;
109
235
  fromSdk: boolean;
236
+ recorderStatus: "" | "fail" | "recording" | "pause" | "ws_close" | "stop";
110
237
  }>;
111
238
  export default _default;