ngx-vest-forms 2.3.1 → 2.5.0
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 -0
- package/fesm2022/ngx-vest-forms.mjs +573 -274
- package/fesm2022/ngx-vest-forms.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ngx-vest-forms.d.ts +155 -63
package/README.md
CHANGED
|
@@ -126,6 +126,11 @@ That's all you need. The directive automatically creates controls, wires validat
|
|
|
126
126
|
- **Cross-field dependencies** — `validationConfig` for field-to-field triggers, `ROOT_FORM` for form-level rules
|
|
127
127
|
- **Utilities** — Field paths, field clearing, validation config builder
|
|
128
128
|
|
|
129
|
+
### Compatibility & Safety Notes (v2.x)
|
|
130
|
+
|
|
131
|
+
- `ROOT_FORM_CONSTANT` is retained for compatibility but deprecated; prefer `ROOT_FORM`.
|
|
132
|
+
- `set` / `cloneDeep` are retained for compatibility; prefer `setValueAtPath` / `structuredClone` in new code.
|
|
133
|
+
|
|
129
134
|
### Error & Warning Display Modes
|
|
130
135
|
|
|
131
136
|
Control when validation errors and warnings are shown to users with multiple built-in modes:
|