@esfaenza/forms-and-validations 11.2.151 → 11.2.152
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 -26
- 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 -2
- package/esm2015/lib/forms/form-adaptive/form-adaptive.component.js +1 -1
- package/esm2015/lib/forms/form-file/form-file.component.js +3 -25
- package/fesm2015/esfaenza-forms-and-validations.js +5 -26
- package/fesm2015/esfaenza-forms-and-validations.js.map +1 -1
- package/lib/forms/form-file/form-file.component.d.ts +0 -4
- package/package.json +1 -1
|
@@ -16,8 +16,6 @@ export declare class FormFileComponent extends BaseFormControl implements Contro
|
|
|
16
16
|
AllowDownload: boolean;
|
|
17
17
|
/** Controllo sulla dimensione di ogni singolo file in Byte. 0 -> nessun limite */
|
|
18
18
|
MaxSize: number;
|
|
19
|
-
/** Sportivo */
|
|
20
|
-
FancyMode: boolean;
|
|
21
19
|
/** Riferimento all'elemento input di tipo file */
|
|
22
20
|
inputEl: ElementRef;
|
|
23
21
|
/** @ignore Costruttore */
|
|
@@ -36,6 +34,4 @@ export declare class FormFileComponent extends BaseFormControl implements Contro
|
|
|
36
34
|
downloadAttachment(): void;
|
|
37
35
|
/** @ignore */
|
|
38
36
|
onNotNullValueSet(): void;
|
|
39
|
-
onFileDragOver(event: DragEvent): void;
|
|
40
|
-
onFileDropped(event: DragEvent): void;
|
|
41
37
|
}
|