speechrecorderng 3.11.1 → 3.11.4
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 +2 -2
- package/fesm2022/speechrecorderng.mjs +161 -161
- package/fesm2022/speechrecorderng.mjs.map +1 -1
- package/lib/spr.module.version.d.ts +1 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SpeechRecorderNg
|
|
2
2
|
|
|
3
|
-
A Speech Recording Tool implemented as an Angular
|
|
3
|
+
A Speech Recording Tool implemented as an Angular 19 module.
|
|
4
4
|
|
|
5
5
|
## Migrate from version 2.x.x to 3.x.x
|
|
6
6
|
For backwards compatibility to server REST API v1 set the property `apiVersion: 1` in your environment file.
|
|
@@ -9,7 +9,7 @@ For backwards compatibility to server REST API v1 set the property `apiVersion:
|
|
|
9
9
|
|
|
10
10
|
### Install NPM package
|
|
11
11
|
Speechrecorder module is available as NPM package.
|
|
12
|
-
Add `"speechrecorderng": "3.11.
|
|
12
|
+
Add `"speechrecorderng": "3.11.4"` to the `dependencies` array property in the `package.json` file of your application. Run `npm install` to install the package.
|
|
13
13
|
### Module integration
|
|
14
14
|
Add SpeechRecorderNg module to imports property of your `AppModule` annotation. The module main component `SpeechRecorder` should be activated by an Angular route.
|
|
15
15
|
|