@esfaenza/forms-and-validations 15.2.60 → 15.2.62
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/esm2020/lib/forms/base-form-control.mjs +1 -1
- package/esm2020/lib/validations/validation-autocomplete/validation-autocomplete.component.mjs +7 -4
- package/esm2020/lib/validations/validation-input/validation-input.component.mjs +1 -1
- package/fesm2015/esfaenza-forms-and-validations.mjs +6 -3
- package/fesm2015/esfaenza-forms-and-validations.mjs.map +1 -1
- package/fesm2020/esfaenza-forms-and-validations.mjs +6 -3
- package/fesm2020/esfaenza-forms-and-validations.mjs.map +1 -1
- package/lib/forms/base-form-control.d.ts +2 -2
- package/lib/validations/validation-autocomplete/validation-autocomplete.component.d.ts +1 -0
- package/lib/validations/validation-input/validation-input.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -134,11 +134,11 @@ export declare abstract class BaseFormControl implements ControlValueAccessor {
|
|
|
134
134
|
/**
|
|
135
135
|
* Max length
|
|
136
136
|
*/
|
|
137
|
-
maxlength:
|
|
137
|
+
maxlength: string;
|
|
138
138
|
/**
|
|
139
139
|
* Max length
|
|
140
140
|
*/
|
|
141
|
-
minlength:
|
|
141
|
+
minlength: string;
|
|
142
142
|
/**
|
|
143
143
|
* Ottiene il valore della variabile **_readonly**
|
|
144
144
|
*
|
|
@@ -49,6 +49,7 @@ export declare class ValidationAutocompleteComponent extends BaseValidation impl
|
|
|
49
49
|
* @param {any} toEmit valore da propagare all'esterno
|
|
50
50
|
*/
|
|
51
51
|
onModelChange(toEmit: any): void;
|
|
52
|
+
optionSelected(toEmit: any): void;
|
|
52
53
|
/** @ignore */
|
|
53
54
|
registerOnChange(fn: any): void;
|
|
54
55
|
/** @ignore */
|
|
@@ -65,11 +65,11 @@ export declare class ValidationInputComponent extends BaseValidation implements
|
|
|
65
65
|
/**
|
|
66
66
|
* Maxlength html
|
|
67
67
|
*/
|
|
68
|
-
maxlength:
|
|
68
|
+
maxlength: string;
|
|
69
69
|
/**
|
|
70
70
|
* Minlength html
|
|
71
71
|
*/
|
|
72
|
-
minlength:
|
|
72
|
+
minlength: string;
|
|
73
73
|
/**
|
|
74
74
|
* Indicazione se il componente ha o meno un suffisso.
|
|
75
75
|
*
|