bpm-core 0.0.104 → 0.0.106
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/fesm2022/bpm-core.mjs +39 -29
- package/fesm2022/bpm-core.mjs.map +1 -1
- package/lib/components/shared-components/form-field/doc-uploader/docs-uploader.component.d.ts +2 -1
- package/lib/components/shared-components/form-field/shared-imports.d.ts +2 -2
- package/lib/directives/currency.directive.d.ts +1 -0
- package/package.json +1 -1
package/lib/components/shared-components/form-field/doc-uploader/docs-uploader.component.d.ts
CHANGED
|
@@ -118,8 +118,9 @@ export declare class DocsUploaderComponent<Type> extends ControlValueAccessorDir
|
|
|
118
118
|
isValidExtension(value: string, type: string): boolean;
|
|
119
119
|
removeAttachedFile(): void;
|
|
120
120
|
downloadFile(event: any, field: any): void;
|
|
121
|
-
private
|
|
121
|
+
private updateValue;
|
|
122
122
|
private deleteFileContents;
|
|
123
|
+
private reset;
|
|
123
124
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocsUploaderComponent<any>, never>;
|
|
124
125
|
static ɵcmp: i0.ɵɵComponentDeclaration<DocsUploaderComponent<any>, "app-file-uploader", never, { "useCrop": { "alias": "useCrop"; "required": false; }; "formKey": { "alias": "formKey"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "downloadLink": { "alias": "downloadLink"; "required": false; }; "showActions": { "alias": "showActions"; "required": false; }; "styleHeight": { "alias": "styleHeight"; "required": false; }; "fileInputHeight": { "alias": "fileInputHeight"; "required": false; }; "styleWidth": { "alias": "styleWidth"; "required": false; }; "hints": { "alias": "hints"; "required": false; }; "allowedExtensions": { "alias": "allowedExtensions"; "required": false; }; "callApi": { "alias": "callApi"; "required": false; }; "display": { "alias": "display"; "required": false; }; "attachType": { "alias": "attachType"; "required": false; }; "error": { "alias": "error"; "required": false; }; "displayedFiles": { "alias": "displayedFiles"; "required": false; }; "getDataFromTemplate": { "alias": "getDataFromTemplate"; "required": false; }; "allowFileContentsWithMultiAttachments": { "alias": "allowFileContentsWithMultiAttachments"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "allAttachments": { "alias": "allAttachments"; "required": false; }; "signType": { "alias": "signType"; "required": false; }; "customDownload": { "alias": "customDownload"; "required": false; }; "showSignButton": { "alias": "showSignButton"; "required": false; }; "printType": { "alias": "printType"; "required": false; }; "showPrintButton": { "alias": "showPrintButton"; "required": false; }; "downloadType": { "alias": "downloadType"; "required": false; }; "showDownloadButton": { "alias": "showDownloadButton"; "required": false; }; "preventFileContents": { "alias": "preventFileContents"; "required": false; }; "maxSize": { "alias": "maxSize"; "required": false; }; }, { "selectedTemplateAttachment": "selectedTemplateAttachment"; "addSignatureClicked": "addSignatureClicked"; "printActionClicked": "printActionClicked"; "emitedValue": "emitedValue"; "downloadActionClicked": "downloadActionClicked"; }, never, never, true, never>;
|
|
125
126
|
}
|
|
@@ -10,6 +10,6 @@ import { ArOnlyDirective } from "../../../directives/ar.directive";
|
|
|
10
10
|
import { NgClass } from "@angular/common";
|
|
11
11
|
import { TranslatePipe } from "../../../pipes/translate.pipe";
|
|
12
12
|
export declare const MatDatePickerImports: (typeof MatDatepickerInput | typeof MatDatepickerToggle | typeof MatDatepickerModule)[];
|
|
13
|
-
export declare const MatFormImports: (typeof
|
|
14
|
-
export declare const Shareds: (typeof NgClass | typeof
|
|
13
|
+
export declare const MatFormImports: (typeof MatFormFieldModule | typeof MatInput | typeof MatFormField)[];
|
|
14
|
+
export declare const Shareds: (typeof NgClass | typeof FormLabelComponent | typeof ValidationErrorsComponent | typeof InfoItemComponent | typeof ReactiveFormsModule | typeof TranslatePipe)[];
|
|
15
15
|
export declare const TextLanguageDirectives: (typeof EnOnlyDirective | typeof ArOnlyDirective)[];
|
|
@@ -11,6 +11,7 @@ export declare class MycurrencyDirective implements OnInit {
|
|
|
11
11
|
onFocus(value: any, event: any): any;
|
|
12
12
|
onBlur(value: any): void;
|
|
13
13
|
onKeyDown(event: any): void;
|
|
14
|
+
onPaste(event: ClipboardEvent): void;
|
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<MycurrencyDirective, never>;
|
|
15
16
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MycurrencyDirective, "[appMycurrency]", never, { "decimals": { "alias": "decimals"; "required": false; }; }, {}, never, never, true, never>;
|
|
16
17
|
}
|