@esfaenza/forms-and-validations 11.2.132 → 11.2.133
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 +9 -9
- package/bundles/esfaenza-forms-and-validations.umd.js.map +1 -1
- package/esm2015/lib/forms/base-form-control.js +7 -7
- package/esm2015/lib/forms/form-adaptive/form-adaptive.component.js +4 -4
- package/fesm2015/esfaenza-forms-and-validations.js +9 -9
- package/fesm2015/esfaenza-forms-and-validations.js.map +1 -1
- package/lib/forms/base-form-control.d.ts +1 -1
- package/lib/forms/form-adaptive/form-adaptive.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -35,7 +35,7 @@ export declare abstract class BaseFormControl implements ControlValueAccessor {
|
|
|
35
35
|
/** Nome generato per il controllo interno. Di default è il nome del controllo esterno con l'aggiunta di "_internal". Serve per evitare cross-bind */
|
|
36
36
|
GeneratedName: string;
|
|
37
37
|
/** Indica se il Form che contiene questo campo è già stato registrato */
|
|
38
|
-
protected
|
|
38
|
+
protected formHasBeenBound: boolean;
|
|
39
39
|
/** @ignore */
|
|
40
40
|
protected propagateChange: (_: any) => void;
|
|
41
41
|
/** @ignore */
|
|
@@ -75,7 +75,7 @@ export declare class FormAdaptiveComponent extends BaseFormControl implements Co
|
|
|
75
75
|
*
|
|
76
76
|
* @param {string} event Input utente
|
|
77
77
|
*/
|
|
78
|
-
filterSource(event
|
|
78
|
+
filterSource(event?: ChangeEvent): void;
|
|
79
79
|
/** @ignore */
|
|
80
80
|
private removeFilteredSourceOnDescriptionSelection;
|
|
81
81
|
/** Metodo richiamato quando viene modificato il modello del campo di input */
|