speechrecorderng 3.6.0 → 3.6.1
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/esm2020/lib/speechrecorder/script/script.mjs +1 -1
- package/esm2020/lib/speechrecorder/session/controlpanel.mjs +14 -7
- package/esm2020/lib/speechrecorder/session/sessionmanager.mjs +72 -19
- package/esm2020/lib/speechrecorderng.component.mjs +2 -2
- package/esm2020/lib/spr.module.version.mjs +2 -2
- package/fesm2015/speechrecorderng.mjs +86 -26
- package/fesm2015/speechrecorderng.mjs.map +1 -1
- package/fesm2020/speechrecorderng.mjs +86 -26
- package/fesm2020/speechrecorderng.mjs.map +1 -1
- package/lib/speechrecorder/script/script.d.ts +1 -0
- package/lib/speechrecorder/session/controlpanel.d.ts +2 -0
- package/lib/speechrecorder/session/sessionmanager.d.ts +7 -1
- package/lib/spr.module.version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -41,6 +41,7 @@ export declare class TransportActions {
|
|
|
41
41
|
pauseAction: Action<void>;
|
|
42
42
|
fwdAction: Action<void>;
|
|
43
43
|
bwdAction: Action<void>;
|
|
44
|
+
stopNonrecordingAction: Action<void>;
|
|
44
45
|
constructor();
|
|
45
46
|
}
|
|
46
47
|
export declare class TransportPanel extends ResponsiveComponent {
|
|
@@ -54,6 +55,7 @@ export declare class TransportPanel extends ResponsiveComponent {
|
|
|
54
55
|
startDisabled(): boolean;
|
|
55
56
|
stopDisabled(): boolean;
|
|
56
57
|
nextDisabled(): boolean;
|
|
58
|
+
stopNonrecordingDisabled(): boolean;
|
|
57
59
|
pauseDisabled(): boolean;
|
|
58
60
|
fwdDisabled(): boolean;
|
|
59
61
|
fwdNextDisabled(): boolean;
|
|
@@ -26,7 +26,8 @@ export declare const enum Status {
|
|
|
26
26
|
POST_REC_PAUSE = 6,
|
|
27
27
|
STOPPING_STOP = 7,
|
|
28
28
|
STOPPING_PAUSE = 8,
|
|
29
|
-
|
|
29
|
+
NON_RECORDING_WAIT = 9,
|
|
30
|
+
ERROR = 10
|
|
30
31
|
}
|
|
31
32
|
export declare class SessionManager extends BasicRecorder implements AfterViewInit, OnDestroy, AudioCaptureListener, ChunkAudioBufferReceiver {
|
|
32
33
|
protected bpo: BreakpointObserver;
|
|
@@ -48,6 +49,8 @@ export declare class SessionManager extends BasicRecorder implements AfterViewIn
|
|
|
48
49
|
private postDelay;
|
|
49
50
|
private postRecTimerId;
|
|
50
51
|
private postRecTimerRunning;
|
|
52
|
+
private nonRecordingDurationTimerId;
|
|
53
|
+
private nonRecordingDurationTimerRunning;
|
|
51
54
|
audio: any;
|
|
52
55
|
_script: Script;
|
|
53
56
|
private _promptIndex;
|
|
@@ -85,6 +88,7 @@ export declare class SessionManager extends BasicRecorder implements AfterViewIn
|
|
|
85
88
|
private clearPreRecTimer;
|
|
86
89
|
private clearPostRecTimer;
|
|
87
90
|
private clearMaxRecTimer;
|
|
91
|
+
private clearNonRecordingDurationTimer;
|
|
88
92
|
startItem(): void;
|
|
89
93
|
private loadScript;
|
|
90
94
|
promptIndexByItemcode(itemcode: string): number | null;
|
|
@@ -108,11 +112,13 @@ export declare class SessionManager extends BasicRecorder implements AfterViewIn
|
|
|
108
112
|
enableNavigation(): void;
|
|
109
113
|
started(): void;
|
|
110
114
|
stopItem(): void;
|
|
115
|
+
stopNonrecording(): void;
|
|
111
116
|
pauseItem(): void;
|
|
112
117
|
stopRecording(): void;
|
|
113
118
|
stopRecordingMaxRec(): void;
|
|
114
119
|
addRecordingFileByDescriptor(rfd: RecordingFileDescriptorImpl): void;
|
|
115
120
|
stopped(): void;
|
|
121
|
+
continueSession(): void;
|
|
116
122
|
error(msg?: string, advice?: string): void;
|
|
117
123
|
postChunkAudioBuffer(audioBuffer: AudioBuffer, chunkIdx: number): void;
|
|
118
124
|
stop(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "3.6.
|
|
1
|
+
export declare const VERSION = "3.6.1";
|