ngx-form-stepper 0.0.2 → 0.0.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.fr.md CHANGED
@@ -15,6 +15,12 @@ Destinée aux développeurs Angular qui veulent des formulaires robustes, typés
15
15
  - Clés de retour uniques obligatoires
16
16
  - **Aucun `as const` requis**
17
17
 
18
+ ## Installation
19
+
20
+ ```bash
21
+ npm install ngx-form-stepper
22
+ ```
23
+
18
24
  ## Exemple rapide
19
25
 
20
26
  ```typescript
package/README.md CHANGED
@@ -8,7 +8,7 @@ It prevents creating invalid states **at development time**, not at runtime.
8
8
 
9
9
  Intended for Angular developers who want robust, typed, and maintainable forms without complex configuration.
10
10
 
11
- ## Why ?
11
+ ## Why?
12
12
 
13
13
  - Simple multi-step forms declaration
14
14
  - Quick per-field validation setup
@@ -17,6 +17,12 @@ Intended for Angular developers who want robust, typed, and maintainable forms w
17
17
  - Unique return keys required
18
18
  - **No `as const` needed**
19
19
 
20
+ ## Installation
21
+
22
+ ```bash
23
+ npm install ngx-form-stepper
24
+ ```
25
+
20
26
  ## Quick example
21
27
 
22
28
  ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-form-stepper",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0",
6
6
  "@angular/core": "^20.3.0"