ng-ipa-library 1.3.8 → 1.3.11
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/generate-form/generate-form.component.mjs +26 -5
- package/esm2020/lib/ipa-form/file-upload/file-upload.component.mjs +23 -10
- package/esm2020/lib/ipa-form/ipa-form.service.mjs +13 -5
- package/fesm2015/ng-ipa-library.mjs +52 -15
- package/fesm2015/ng-ipa-library.mjs.map +1 -1
- package/fesm2020/ng-ipa-library.mjs +57 -15
- package/fesm2020/ng-ipa-library.mjs.map +1 -1
- package/lib/generate-form/generate-form.component.d.ts +1 -0
- package/lib/ipa-form/file-upload/file-upload.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -25,6 +25,7 @@ export declare class GenerateFormComponent implements OnInit {
|
|
|
25
25
|
SuccessUpload(event: any): void;
|
|
26
26
|
FileAdded(file: any, formControlName: string): void;
|
|
27
27
|
FileDeleted(event: any, formControlName: string): void;
|
|
28
|
+
private changeDataValueForEngForm;
|
|
28
29
|
private createForm;
|
|
29
30
|
private addCheckboxControl;
|
|
30
31
|
private getCheckboxSelectedValues;
|
|
@@ -5,6 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class FileUploadComponent implements OnInit {
|
|
6
6
|
private toastrService;
|
|
7
7
|
dropzoneDir: DropzoneDirective;
|
|
8
|
+
isArabicForm: boolean;
|
|
8
9
|
label: string;
|
|
9
10
|
required: boolean;
|
|
10
11
|
acceptedFiles: string;
|
|
@@ -32,5 +33,5 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
32
33
|
reset(e: any): void;
|
|
33
34
|
deleteFile(file: any): void;
|
|
34
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ipa-file-upload", never, { "label": "label"; "required": "required"; "acceptedFiles": "acceptedFiles"; "multiple": "multiple"; "maxFileSize": "maxFileSize"; "method": "method"; "autoUpload": "autoUpload"; "apiUrl": "apiUrl"; "authorization": "authorization"; }, { "successUpload": "successUpload"; "fileAdded": "fileAdded"; "fileDeleted": "fileDeleted"; }, never, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ipa-file-upload", never, { "isArabicForm": "isArabicForm"; "label": "label"; "required": "required"; "acceptedFiles": "acceptedFiles"; "multiple": "multiple"; "maxFileSize": "maxFileSize"; "method": "method"; "autoUpload": "autoUpload"; "apiUrl": "apiUrl"; "authorization": "authorization"; }, { "successUpload": "successUpload"; "fileAdded": "fileAdded"; "fileDeleted": "fileDeleted"; }, never, never>;
|
|
36
37
|
}
|