@energycap/components 0.39.4-ECAP-23220-bc-file-upload-dialog.20231221-1411 → 0.39.4-ECAP-23220-bc-file-upload-dialog.20240104-1113
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/controls/file-upload/file-upload.component.mjs +9 -3
- package/fesm2015/energycap-components.mjs +8 -2
- package/fesm2015/energycap-components.mjs.map +1 -1
- package/fesm2020/energycap-components.mjs +8 -2
- package/fesm2020/energycap-components.mjs.map +1 -1
- package/lib/controls/file-upload/file-upload.component.d.ts +5 -1
- package/package.json +1 -1
@@ -51,6 +51,10 @@ export declare class FileUploadComponent extends FormControlBase implements OnIn
|
|
51
51
|
* When display type is set to button this property will control the button label
|
52
52
|
*/
|
53
53
|
buttonLabel?: string;
|
54
|
+
/**
|
55
|
+
* When display type is set to button this property will control the button type
|
56
|
+
*/
|
57
|
+
buttonType?: string;
|
54
58
|
/**
|
55
59
|
* Optional property to control whether the user can select multiple files
|
56
60
|
*/
|
@@ -94,5 +98,5 @@ export declare class FileUploadComponent extends FormControlBase implements OnIn
|
|
94
98
|
private handleMultipleFiles;
|
95
99
|
private readFile;
|
96
100
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
|
97
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ec-file-upload", never, { "placeholder": "placeholder"; "fileType": "fileType"; "fileOutput": "fileOutput"; "customExtensions": "customExtensions"; "onFileSelected": "onFileSelected"; "onMultipleFilesSelected": "onMultipleFilesSelected"; "displayType": "displayType"; "buttonLabel": "buttonLabel"; "multiSelect": "multiSelect"; }, {}, never, never, false, never>;
|
101
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ec-file-upload", never, { "placeholder": "placeholder"; "fileType": "fileType"; "fileOutput": "fileOutput"; "customExtensions": "customExtensions"; "onFileSelected": "onFileSelected"; "onMultipleFilesSelected": "onMultipleFilesSelected"; "displayType": "displayType"; "buttonLabel": "buttonLabel"; "buttonType": "buttonType"; "multiSelect": "multiSelect"; }, {}, never, never, false, never>;
|
98
102
|
}
|