@esfaenza/forms-and-validations 11.2.47-beta1 → 11.2.48
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/bundles/esfaenza-forms-and-validations.umd.js +12 -20
- package/bundles/esfaenza-forms-and-validations.umd.js.map +1 -1
- package/esfaenza-forms-and-validations.metadata.json +1 -1
- package/esm2015/lib/forms/base-form-control.js +9 -1
- package/esm2015/lib/forms-and-validations.module.js +1 -18
- package/fesm2015/esfaenza-forms-and-validations.js +9 -17
- package/fesm2015/esfaenza-forms-and-validations.js.map +1 -1
- package/lib/forms/base-form-control.d.ts +5 -0
- package/package.json +1 -1
|
@@ -214,6 +214,11 @@ export declare abstract class BaseFormControl implements ControlValueAccessor {
|
|
|
214
214
|
* @ignore
|
|
215
215
|
*/
|
|
216
216
|
ngOnInit(): void;
|
|
217
|
+
/**
|
|
218
|
+
* Se sono in modalità detatched devo rimuovere manualmente questo controllo quando entro nella dispose, altrimenti se poi ne andassi a riaggiungere
|
|
219
|
+
* un altro con lo stesso "name" ma magari resettato, Angular lo re-idraterebbe con i valori precedenti nonostante il modello fosse vuoto
|
|
220
|
+
*/
|
|
221
|
+
ngOnDestroy(): void;
|
|
217
222
|
/**
|
|
218
223
|
* Elabora i validatori iniettati e capisce se il valore è obbligatorio o meno
|
|
219
224
|
*/
|