@esfaenza/forms-and-validations 11.2.140 → 11.2.141
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 +5 -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/form-select/form-select.component.js +6 -3
- package/fesm2015/esfaenza-forms-and-validations.js +5 -2
- package/fesm2015/esfaenza-forms-and-validations.js.map +1 -1
- package/lib/forms/form-select/form-select.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SimpleChanges, ChangeDetectorRef } from "@angular/core";
|
|
1
|
+
import { SimpleChanges, ChangeDetectorRef, TemplateRef } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor, NgControl } from "@angular/forms";
|
|
3
3
|
import { LocalizationService } from "@esfaenza/localizations";
|
|
4
4
|
import { AccessControlService, ComponentContext } from '@esfaenza/access-control';
|
|
@@ -24,6 +24,8 @@ export declare class FormSelectComponent extends BaseFormControl implements Cont
|
|
|
24
24
|
EmptyFieldValue: string;
|
|
25
25
|
/** Se **true** rimuove il simbolino di validazione (croce rossa o tick verde) */
|
|
26
26
|
ShowValidationSymbol: boolean;
|
|
27
|
+
/** Template per la visualizzazione delle opzioni */
|
|
28
|
+
OptionTemplate: TemplateRef<any>;
|
|
27
29
|
/** @ignore Costruttore */
|
|
28
30
|
constructor(cdr: ChangeDetectorRef, lc: LocalizationService, ngControl: NgControl, _validators: Array<any>, ac: AccessControlService, AppContext: ComponentContext, ACO_CUSTOMKEY: string, FAV_DEBUG_MODE: boolean);
|
|
29
31
|
/** @ignore */
|