ngx-form-draft 1.0.1 → 1.0.2

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 (2) hide show
  1. package/README.md +12 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,6 +18,18 @@ Zero-dependency Angular form draft auto-save and restore. Works with any Angular
18
18
  npm install ngx-form-draft
19
19
  ```
20
20
 
21
+ ### Angular 12 Users
22
+
23
+ If you're using Angular 12, enable Ivy in your `tsconfig.json`:
24
+
25
+ ```json
26
+ {
27
+ "angularCompilerOptions": {
28
+ "enableIvy": true
29
+ }
30
+ }
31
+ ```
32
+
21
33
  ## Usage
22
34
 
23
35
  ### 1. Import the module
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-form-draft",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Auto-save and restore Angular form drafts with zero dependencies",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",