bpm-core 0.0.16 → 0.0.18
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/app/app.component.mjs +6 -4
- package/esm2022/lib/components/app-component-sections/form-section/form-section.component.mjs +2 -2
- package/esm2022/lib/components/app-component-sections/layout/header/header.component.mjs +3 -3
- package/esm2022/lib/components/app-component-sections/service-header/service-header.component.mjs +2 -2
- package/esm2022/lib/components/app-component-sections/workflow-section/workflow-section.component.mjs +3 -3
- package/esm2022/lib/components/shared-components/form-field/date-picker/date-picker.component.mjs +1 -1
- package/esm2022/lib/services/core.service.ts.mjs +20 -1
- package/esm2022/lib/testComponent/request-details-section/request-details-section.component.mjs +50 -0
- package/fesm2022/bpm-core.mjs +76 -10
- package/fesm2022/bpm-core.mjs.map +1 -1
- package/lib/components/app-component-sections/form-section/form-section.component.d.ts +1 -1
- package/lib/components/app-component-sections/layout/header/header.component.d.ts +1 -1
- package/lib/services/core.service.ts.d.ts +1 -0
- package/lib/testComponent/request-details-section/request-details-section.component.d.ts +20 -0
- package/package.json +1 -1
|
@@ -49,7 +49,7 @@ export declare class FormSectionComponent implements OnInit, AfterViewChecked, A
|
|
|
49
49
|
getSectionName(): string;
|
|
50
50
|
getFormStepStatus(key: string): string;
|
|
51
51
|
toggleSmallProfileInfo(event: any, personType: any): void;
|
|
52
|
-
statusIconClass(status: string, type: string): "
|
|
52
|
+
statusIconClass(status: string, type: string): "close" | "danger" | "warning" | "clock" | "success" | "check";
|
|
53
53
|
locationHref(hrefLink: any): void;
|
|
54
54
|
statusClass(status: string): "danger" | "warning" | "success";
|
|
55
55
|
statusIcon(status: string): "close" | "clock" | "check";
|
|
@@ -7,7 +7,7 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class HeaderComponent {
|
|
8
8
|
readonly translate: CoreI18nService;
|
|
9
9
|
private sidenavService;
|
|
10
|
-
|
|
10
|
+
coreService: CoreService;
|
|
11
11
|
private router;
|
|
12
12
|
private platformId;
|
|
13
13
|
search: FormControl<string>;
|
|
@@ -22,6 +22,7 @@ export declare class CoreService {
|
|
|
22
22
|
private callPost;
|
|
23
23
|
successWm(...args: any[]): Form;
|
|
24
24
|
loggedInUserId(): any;
|
|
25
|
+
getShortName(name: string): string | string[];
|
|
25
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<CoreService, never>;
|
|
26
27
|
static ɵprov: i0.ɵɵInjectableDeclaration<CoreService>;
|
|
27
28
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Form, Section } from "../../interfaces";
|
|
2
|
+
import { CoreI18nService } from "../../services";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RequestDetailsSectionComponent {
|
|
5
|
+
i18n: CoreI18nService;
|
|
6
|
+
isReadOnly: boolean;
|
|
7
|
+
section: Section;
|
|
8
|
+
lov: any;
|
|
9
|
+
className: string;
|
|
10
|
+
currentSectionId: string;
|
|
11
|
+
lastSectionId: string;
|
|
12
|
+
form: Form;
|
|
13
|
+
constructor(i18n: CoreI18nService);
|
|
14
|
+
ngAfterViewInit(): void;
|
|
15
|
+
ServicesSubScriptions(): void;
|
|
16
|
+
handleAttachment(fieldName: string, data: any): void;
|
|
17
|
+
handleEmitValue(data: any, fieldName: string): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RequestDetailsSectionComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RequestDetailsSectionComponent, "app-request-details-section", never, { "isReadOnly": { "alias": "isReadOnly"; "required": false; }; "section": { "alias": "section"; "required": false; }; "lov": { "alias": "lov"; "required": false; }; "className": { "alias": "className"; "required": false; }; }, {}, never, never, true, never>;
|
|
20
|
+
}
|