@esfaenza/forms-and-validations 11.2.73 → 11.2.76
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 +24 -2
- 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 +3 -3
- package/esm2015/lib/forms/form-adaptive/form-adaptive.component.js +11 -1
- package/esm2015/lib/forms/form-autocomplete/form-autocomplete.component.js +11 -1
- package/esm2015/lib/forms/form-file/form-file.component.js +3 -1
- package/fesm2015/esfaenza-forms-and-validations.js +24 -2
- package/fesm2015/esfaenza-forms-and-validations.js.map +1 -1
- package/lib/forms/form-adaptive/form-adaptive.component.d.ts +2 -0
- package/lib/forms/form-autocomplete/form-autocomplete.component.d.ts +2 -0
- package/package.json +1 -1
|
@@ -70,6 +70,8 @@ export declare class FormAdaptiveComponent extends BaseFormControl implements Co
|
|
|
70
70
|
* @param {string} event Input utente
|
|
71
71
|
*/
|
|
72
72
|
filterSource(event: string): void;
|
|
73
|
+
/** @ignore */
|
|
74
|
+
private removeFilteredSourceOnDescriptionSelection;
|
|
73
75
|
/** Metodo richiamato quando viene modificato il modello del campo di input */
|
|
74
76
|
changed(): void;
|
|
75
77
|
/** @ignore */
|
|
@@ -52,6 +52,8 @@ export declare class FormAutocompleteComponent extends BaseFormControl implement
|
|
|
52
52
|
*/
|
|
53
53
|
filterSource(event: string): void;
|
|
54
54
|
/** @ignore */
|
|
55
|
+
private removeFilteredSourceOnDescriptionSelection;
|
|
56
|
+
/** @ignore */
|
|
55
57
|
ngOnChanges(changes: SimpleChanges): void;
|
|
56
58
|
/** @ignore Override che marca anche il prossimo evento di filterSource da ignorare */
|
|
57
59
|
changed(forcedValue?: any, markForCheck?: boolean): void;
|