@esfaenza/forms-and-validations 15.2.37 → 15.2.39
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/form-multiselect/form-multiselect.component.mjs +10 -2
- package/esm2020/lib/forms/form-time/form-time.component.mjs +3 -3
- package/fesm2015/esfaenza-forms-and-validations.mjs +11 -3
- package/fesm2015/esfaenza-forms-and-validations.mjs.map +1 -1
- package/fesm2020/esfaenza-forms-and-validations.mjs +11 -3
- package/fesm2020/esfaenza-forms-and-validations.mjs.map +1 -1
- package/lib/forms/form-multiselect/form-multiselect.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -27,6 +27,8 @@ export declare class FormMultiSelectComponent extends BaseFormControl implements
|
|
|
27
27
|
UseKeyValues: boolean;
|
|
28
28
|
/** Indica al componente di emettere una lista di chiavi separate da virgola piuttosto che una lista vera e propria di chiavi/KeyValue */
|
|
29
29
|
UseCommaSeparatedList: boolean;
|
|
30
|
+
/** Indica se effettuare l'emit come lista di valori in un Json */
|
|
31
|
+
UseJsonList: boolean;
|
|
30
32
|
/** Impostazioni del componente interno **angular2-multiselect** */
|
|
31
33
|
Settings: {
|
|
32
34
|
selectAllText: string;
|
|
@@ -61,5 +63,5 @@ export declare class FormMultiSelectComponent extends BaseFormControl implements
|
|
|
61
63
|
/** @ignore Override per gestire input in uscita */
|
|
62
64
|
changed(): void;
|
|
63
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormMultiSelectComponent, [null, null, { optional: true; self: true; }, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormMultiSelectComponent, "form-multiselect", never, { "SelectLabel": "SelectLabel"; "UseKeyValues": "UseKeyValues"; "UseCommaSeparatedList": "UseCommaSeparatedList"; }, {}, never, never, false, never>;
|
|
66
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormMultiSelectComponent, "form-multiselect", never, { "SelectLabel": "SelectLabel"; "UseKeyValues": "UseKeyValues"; "UseCommaSeparatedList": "UseCommaSeparatedList"; "UseJsonList": "UseJsonList"; }, {}, never, never, false, never>;
|
|
65
67
|
}
|