bpm-core 0.0.65 → 0.0.67
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/esm2022/lib/components/app-component-sections/form-section/form-section.component.mjs +2 -2
- package/esm2022/lib/components/shared-components/form-field/attachment-section/attachment-section.component.mjs +13 -4
- package/esm2022/lib/testComponent/request-details-section/request-details-section.component.mjs +1 -1
- package/fesm2022/bpm-core.mjs +14 -5
- package/fesm2022/bpm-core.mjs.map +1 -1
- package/lib/components/app-component-sections/approvals-workflow/approvals-workflow.component.d.ts +1 -1
- package/lib/components/shared-components/dialogs/submit-dialog/submit-dialog.component.d.ts +1 -1
- package/lib/components/shared-components/form-field/attachment-section/attachment-section.component.d.ts +4 -1
- package/lib/components/shared-components/form-field/shared-imports.d.ts +1 -1
- package/package.json +1 -1
package/lib/components/app-component-sections/approvals-workflow/approvals-workflow.component.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export declare class ApprovalsWorkflowComponent {
|
|
|
29
29
|
getStageDetails(approval: any): Section<any>;
|
|
30
30
|
handleError(err: any): void;
|
|
31
31
|
transformStatus(status: string): string;
|
|
32
|
-
getClassBasedOnStatus(status: string): "
|
|
32
|
+
getClassBasedOnStatus(status: string): "danger" | "warning" | "success";
|
|
33
33
|
showProspectiveApprovals(): void;
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApprovalsWorkflowComponent, never>;
|
|
35
35
|
static ɵcmp: i0.ɵɵComponentDeclaration<ApprovalsWorkflowComponent, "lib-approvals-workflow", never, { "section": { "alias": "section"; "required": false; }; "form": { "alias": "form"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -9,7 +9,7 @@ export declare class SubmitDialogComponent {
|
|
|
9
9
|
constructor(data: any, i18n: CoreI18nService, coreService: CoreService);
|
|
10
10
|
getImage(email: string): string;
|
|
11
11
|
viewForm(formId: string, formName?: string): void;
|
|
12
|
-
getStatus(statusKey: string): "
|
|
12
|
+
getStatus(statusKey: string): "danger" | "warning" | "success";
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<SubmitDialogComponent, never>;
|
|
14
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<SubmitDialogComponent, "app-submit-dialog", never, {}, {}, never, never, true, never>;
|
|
15
15
|
}
|
|
@@ -7,6 +7,8 @@ import { MatTableDataSource } from "@angular/material/table";
|
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class AttachmentSectionComponent extends ControlValueAccessorDirective<any> implements AfterViewInit {
|
|
9
9
|
className: string;
|
|
10
|
+
downloadActionClicked: EventEmitter<any>;
|
|
11
|
+
customDownload: boolean;
|
|
10
12
|
attachmentsMax: number;
|
|
11
13
|
isSortable: boolean;
|
|
12
14
|
downloadAll: boolean;
|
|
@@ -37,6 +39,7 @@ export declare class AttachmentSectionComponent extends ControlValueAccessorDire
|
|
|
37
39
|
editRow(rowData: any, index: any): void;
|
|
38
40
|
downloadAllAttachments(event: any): void;
|
|
39
41
|
downloadFile(event: any, field: any): Promise<void>;
|
|
42
|
+
customDownloadAction(event: any): void;
|
|
40
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<AttachmentSectionComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AttachmentSectionComponent, "app-attachment-section", never, { "className": { "alias": "className"; "required": false; }; "attachmentsMax": { "alias": "attachmentsMax"; "required": false; }; "isSortable": { "alias": "isSortable"; "required": false; }; "downloadAll": { "alias": "downloadAll"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "descriptionRequired": { "alias": "descriptionRequired"; "required": false; }; "commentsRequired": { "alias": "commentsRequired"; "required": false; }; "allowedExtensions": { "alias": "allowedExtensions"; "required": false; }; }, { "emitedValue": "emitedValue"; }, never, never, true, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AttachmentSectionComponent, "app-attachment-section", never, { "className": { "alias": "className"; "required": false; }; "customDownload": { "alias": "customDownload"; "required": false; }; "attachmentsMax": { "alias": "attachmentsMax"; "required": false; }; "isSortable": { "alias": "isSortable"; "required": false; }; "downloadAll": { "alias": "downloadAll"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; "descriptionRequired": { "alias": "descriptionRequired"; "required": false; }; "commentsRequired": { "alias": "commentsRequired"; "required": false; }; "allowedExtensions": { "alias": "allowedExtensions"; "required": false; }; }, { "downloadActionClicked": "downloadActionClicked"; "emitedValue": "emitedValue"; }, never, never, true, never>;
|
|
42
45
|
}
|
|
@@ -11,5 +11,5 @@ 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
13
|
export declare const MatFormImports: (typeof MatInput | typeof MatFormFieldModule | typeof MatFormField)[];
|
|
14
|
-
export declare const Shareds: (typeof NgClass | typeof
|
|
14
|
+
export declare const Shareds: (typeof NgClass | typeof ReactiveFormsModule | typeof TranslatePipe | typeof InfoItemComponent | typeof FormLabelComponent | typeof ValidationErrorsComponent)[];
|
|
15
15
|
export declare const TextLanguageDirectives: (typeof EnOnlyDirective | typeof ArOnlyDirective)[];
|