cnhis-design-vue 3.3.2-beta.18 → 3.3.2-beta.22

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 (49) hide show
  1. package/README.md +87 -87
  2. package/es/components/audio-sdk/index.d.ts +173 -146
  3. package/es/components/audio-sdk/src/Index.vue.d.ts +174 -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 +123 -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 +138 -10
  11. package/es/components/audio-sdk/src/components/recording.vue.d.ts +139 -11
  12. package/es/components/audio-sdk/src/components/recording.vue2.js +318 -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 +8 -4
  27. package/es/components/button-print/src/ButtonPrint.vue.d.ts +8 -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 +4 -2
  31. package/es/components/button-print/src/components/OldPrintComponent.vue.d.ts +4 -2
  32. package/es/components/button-print/src/components/Preview.vue.d.ts +5 -2
  33. package/es/components/button-print/src/components/Preview.vue2.js +6 -2
  34. package/es/components/button-print/src/utils/dialog.js +2 -2
  35. package/es/components/classification/src/components/table-modal/index.vue.d.ts +3 -0
  36. package/es/components/fabric-chart/src/hooks/birthProcess/useBirthProcess.js +2 -1
  37. package/es/components/field-set/src/FieldColor.vue.d.ts +4 -4
  38. package/es/components/field-set/src/FieldFilter.vue.d.ts +4 -4
  39. package/es/components/field-set/src/FieldSet.vue.d.ts +5 -5
  40. package/es/components/field-set/src/components/table-row.vue.d.ts +4 -4
  41. package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
  42. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/selectUtils.js +17 -3
  43. package/es/components/index.css +1 -1
  44. package/es/components/scale-view/src/ScaleView.vue2.js +1 -1
  45. package/es/env.d.ts +25 -25
  46. package/es/shared/package.json.js +1 -1
  47. package/package.json +2 -2
  48. package/es/components/audio-sdk/src/components/recording-modal.vue.js +0 -6
  49. 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,118 @@ 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
+ isSpining: import("vue").ComputedRef<boolean>;
139
+ isFailStatus: import("vue").ComputedRef<boolean>;
140
+ isActiveStatus: import("vue").ComputedRef<boolean>;
141
+ isWarningStatus: import("vue").ComputedRef<boolean>;
142
+ isPauseStatus: import("vue").ComputedRef<boolean>;
143
+ showContent: import("vue").ComputedRef<boolean>;
144
+ tip: import("vue").ComputedRef<"录音异常!" | "录音识别中..." | "正在录音中..." | "无语音录入,请检测是否录音!" | "已暂停录音">;
145
+ tipSmall: import("vue").ComputedRef<"录入异常" | "识别中..." | "录音中..." | "已暂停">;
146
+ showDom: import("vue").ComputedRef<boolean>;
79
147
  NIcon: any;
80
148
  NButton: any;
81
149
  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<{
150
+ NSpace: any;
151
+ NTooltip: any;
152
+ 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<{}>>, {}>;
153
+ 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<{}>>, {}>;
154
+ 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<{}>>, {}>;
155
+ ReadyCountdown: import("vue").DefineComponent<{
156
+ isCountActive: {
157
+ type: BooleanConstructor;
158
+ default: boolean;
159
+ };
160
+ }, {
161
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
162
+ isCountActive: {
163
+ type: BooleanConstructor;
164
+ default: boolean;
165
+ };
166
+ }>> & {
167
+ "onUpdate:isCountFinished"?: ((...args: any[]) => any) | undefined;
168
+ }>>;
169
+ emit: (event: "update:isCountFinished", ...args: any[]) => void;
170
+ renderCountdown: ({ seconds }: {
171
+ seconds: number;
172
+ }) => number;
173
+ countDownFinish: () => void;
174
+ NCountdown: any;
175
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:isCountFinished"[], "update:isCountFinished", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
176
+ isCountActive: {
177
+ type: BooleanConstructor;
178
+ default: boolean;
179
+ };
180
+ }>> & {
181
+ "onUpdate:isCountFinished"?: ((...args: any[]) => any) | undefined;
182
+ }, {
183
+ isCountActive: boolean;
184
+ }>;
185
+ CloseSvg: any;
186
+ ZoomSvg: any;
187
+ PauseSvg: any;
188
+ ContinueSvg: any;
189
+ EnlargeSvg: any;
190
+ WaveView: any;
191
+ }, 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
192
  content: {
85
193
  type: import("vue").PropType<string | {
86
194
  data: string;
@@ -103,22 +211,42 @@ declare const _default: import("vue").DefineComponent<{
103
211
  type: BooleanConstructor;
104
212
  default: boolean;
105
213
  };
214
+ wsConnected: {
215
+ type: BooleanConstructor;
216
+ default: boolean;
217
+ };
106
218
  fromSdk: {
107
219
  type: BooleanConstructor;
108
220
  };
221
+ show: {
222
+ type: BooleanConstructor;
223
+ default: boolean;
224
+ };
225
+ startWaveViewMethod: {
226
+ type: import("vue").PropType<import("../../../../shared/types").AnyFn>;
227
+ };
228
+ recorderStatus: {
229
+ type: import("vue").PropType<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
230
+ default: string;
231
+ };
109
232
  }>> & {
110
233
  onSuccess?: ((...args: any[]) => any) | undefined;
111
234
  onClose?: ((...args: any[]) => any) | undefined;
112
235
  onFail?: ((...args: any[]) => any) | undefined;
113
- onEnd?: ((...args: any[]) => any) | undefined;
114
- "onUpdate:loading"?: ((...args: any[]) => any) | undefined;
236
+ onPause?: ((...args: any[]) => any) | undefined;
237
+ onResume?: ((...args: any[]) => any) | undefined;
238
+ onToAnalyzing?: ((...args: any[]) => any) | undefined;
239
+ onHeightChange?: ((...args: any[]) => any) | undefined;
115
240
  }, {
116
241
  content: string | {
117
242
  data: string;
118
243
  };
119
244
  loading: boolean;
245
+ show: boolean;
120
246
  showBtn: boolean;
247
+ wsConnected: boolean;
121
248
  fromSdk: boolean;
249
+ recorderStatus: "" | "fail" | "recording" | "pause" | "ws_close" | "stop";
122
250
  }>;
123
251
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
124
252
  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,118 @@ 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
+ isSpining: import("vue").ComputedRef<boolean>;
127
+ isFailStatus: import("vue").ComputedRef<boolean>;
128
+ isActiveStatus: import("vue").ComputedRef<boolean>;
129
+ isWarningStatus: import("vue").ComputedRef<boolean>;
130
+ isPauseStatus: import("vue").ComputedRef<boolean>;
131
+ showContent: import("vue").ComputedRef<boolean>;
132
+ tip: import("vue").ComputedRef<"录音异常!" | "录音识别中..." | "正在录音中..." | "无语音录入,请检测是否录音!" | "已暂停录音">;
133
+ tipSmall: import("vue").ComputedRef<"录入异常" | "识别中..." | "录音中..." | "已暂停">;
134
+ showDom: import("vue").ComputedRef<boolean>;
67
135
  NIcon: any;
68
136
  NButton: any;
69
137
  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<{
138
+ NSpace: any;
139
+ NTooltip: any;
140
+ 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<{}>>, {}>;
141
+ 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<{}>>, {}>;
142
+ 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<{}>>, {}>;
143
+ ReadyCountdown: import("vue").DefineComponent<{
144
+ isCountActive: {
145
+ type: BooleanConstructor;
146
+ default: boolean;
147
+ };
148
+ }, {
149
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
150
+ isCountActive: {
151
+ type: BooleanConstructor;
152
+ default: boolean;
153
+ };
154
+ }>> & {
155
+ "onUpdate:isCountFinished"?: ((...args: any[]) => any) | undefined;
156
+ }>>;
157
+ emit: (event: "update:isCountFinished", ...args: any[]) => void;
158
+ renderCountdown: ({ seconds }: {
159
+ seconds: number;
160
+ }) => number;
161
+ countDownFinish: () => void;
162
+ NCountdown: any;
163
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:isCountFinished"[], "update:isCountFinished", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
164
+ isCountActive: {
165
+ type: BooleanConstructor;
166
+ default: boolean;
167
+ };
168
+ }>> & {
169
+ "onUpdate:isCountFinished"?: ((...args: any[]) => any) | undefined;
170
+ }, {
171
+ isCountActive: boolean;
172
+ }>;
173
+ CloseSvg: any;
174
+ ZoomSvg: any;
175
+ PauseSvg: any;
176
+ ContinueSvg: any;
177
+ EnlargeSvg: any;
178
+ WaveView: any;
179
+ }, 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
180
  content: {
73
181
  type: PropType<string | {
74
182
  data: string;
@@ -91,21 +199,41 @@ declare const _default: import("vue").DefineComponent<{
91
199
  type: BooleanConstructor;
92
200
  default: boolean;
93
201
  };
202
+ wsConnected: {
203
+ type: BooleanConstructor;
204
+ default: boolean;
205
+ };
94
206
  fromSdk: {
95
207
  type: BooleanConstructor;
96
208
  };
209
+ show: {
210
+ type: BooleanConstructor;
211
+ default: boolean;
212
+ };
213
+ startWaveViewMethod: {
214
+ type: PropType<AnyFn>;
215
+ };
216
+ recorderStatus: {
217
+ type: PropType<"" | "fail" | "recording" | "pause" | "ws_close" | "stop">;
218
+ default: string;
219
+ };
97
220
  }>> & {
98
221
  onSuccess?: ((...args: any[]) => any) | undefined;
99
222
  onClose?: ((...args: any[]) => any) | undefined;
100
223
  onFail?: ((...args: any[]) => any) | undefined;
101
- onEnd?: ((...args: any[]) => any) | undefined;
102
- "onUpdate:loading"?: ((...args: any[]) => any) | undefined;
224
+ onPause?: ((...args: any[]) => any) | undefined;
225
+ onResume?: ((...args: any[]) => any) | undefined;
226
+ onToAnalyzing?: ((...args: any[]) => any) | undefined;
227
+ onHeightChange?: ((...args: any[]) => any) | undefined;
103
228
  }, {
104
229
  content: string | {
105
230
  data: string;
106
231
  };
107
232
  loading: boolean;
233
+ show: boolean;
108
234
  showBtn: boolean;
235
+ wsConnected: boolean;
109
236
  fromSdk: boolean;
237
+ recorderStatus: "" | "fail" | "recording" | "pause" | "ws_close" | "stop";
110
238
  }>;
111
239
  export default _default;