ngx-form-draft 2.2.2 → 2.2.3
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 +5 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ngx-form-draft
|
|
2
2
|
|
|
3
|
-
Zero-dependency Angular form draft auto-save and restore. Works with Angular 14
|
|
3
|
+
Zero-dependency Angular form draft auto-save and restore. Works with Angular 14-20.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
@@ -11,12 +11,15 @@ Zero-dependency Angular form draft auto-save and restore. Works with Angular 14+
|
|
|
11
11
|
- Visual banner with discard option
|
|
12
12
|
- 7-day draft expiration
|
|
13
13
|
- Zero external dependencies
|
|
14
|
+
- No Angular animations required (pure CSS)
|
|
14
15
|
|
|
15
16
|
## Requirements
|
|
16
17
|
|
|
17
|
-
- Angular 14
|
|
18
|
+
- Angular 14-20
|
|
18
19
|
- TypeScript 4.7+
|
|
19
20
|
|
|
21
|
+
> **Note:** Angular 21+ support is not yet tested. The package uses stable Angular APIs that should work, but may require updates for newer versions. Please report any issues.
|
|
22
|
+
|
|
20
23
|
## Installation
|
|
21
24
|
|
|
22
25
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-form-draft",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.3",
|
|
4
4
|
"description": "Auto-save and restore Angular form drafts with zero dependencies",
|
|
5
5
|
"author": "Neokyuubi",
|
|
6
6
|
"publishConfig": {
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
},
|
|
16
16
|
"homepage": "https://github.com/neokyuubi/ngx-form-draft#readme",
|
|
17
17
|
"peerDependencies": {
|
|
18
|
-
"@angular/core": ">=14.0.0",
|
|
19
|
-
"@angular/common": ">=14.0.0",
|
|
20
|
-
"@angular/forms": ">=14.0.0",
|
|
18
|
+
"@angular/core": ">=14.0.0 <21.0.0",
|
|
19
|
+
"@angular/common": ">=14.0.0 <21.0.0",
|
|
20
|
+
"@angular/forms": ">=14.0.0 <21.0.0",
|
|
21
21
|
"rxjs": ">=6.0.0"
|
|
22
22
|
},
|
|
23
23
|
"keywords": [
|