bpm-core 0.0.4 → 0.0.6
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 +5 -5
- package/esm2022/lib/services/index.mjs +3 -1
- package/fesm2022/bpm-core.mjs +79 -79
- package/fesm2022/bpm-core.mjs.map +1 -1
- package/lib/app/app.component.d.ts +3 -3
- package/lib/components/app-component-sections/form-section/form-section.component.d.ts +2 -2
- package/lib/components/app-component-sections/service-header/service-header.component.d.ts +1 -1
- package/lib/components/shared-components/dialogs/submit-dialog/submit-dialog.component.d.ts +1 -1
- package/lib/services/core.service.ts.d.ts +1 -1
- package/lib/services/index.d.ts +2 -0
- package/package.json +2 -2
|
@@ -3,7 +3,7 @@ import { SidenavService } from "../services";
|
|
|
3
3
|
import { CoreService } from "../services/core.service.ts";
|
|
4
4
|
import { Form } from "../interfaces";
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class
|
|
6
|
+
export declare class CoreAppComponent {
|
|
7
7
|
private readonly document;
|
|
8
8
|
private readonly router;
|
|
9
9
|
private readonly sidenavService;
|
|
@@ -15,6 +15,6 @@ export declare class AppComponent {
|
|
|
15
15
|
formTitle: string;
|
|
16
16
|
constructor(document: Document, router: Router, sidenavService: SidenavService, coreService: CoreService);
|
|
17
17
|
errorResponse(form: any): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CoreAppComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CoreAppComponent, "lib-app", never, {}, {}, never, never, true, never>;
|
|
20
20
|
}
|
|
@@ -49,9 +49,9 @@ 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): "danger" | "warning" | "success" | "close" | "clock" | "check";
|
|
53
53
|
locationHref(hrefLink: any): void;
|
|
54
|
-
statusClass(status: string): "
|
|
54
|
+
statusClass(status: string): "danger" | "warning" | "success";
|
|
55
55
|
statusIcon(status: string): "close" | "clock" | "check";
|
|
56
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormSectionComponent, never>;
|
|
57
57
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormSectionComponent, "app-form-section", never, { "requestDetails": { "alias": "requestDetails"; "required": false; }; "section": { "alias": "section"; "required": false; }; "form": { "alias": "form"; "required": false; }; "lov": { "alias": "lov"; "required": false; }; "isReadOnly": { "alias": "isReadOnly"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "isFinalApproval": { "alias": "isFinalApproval"; "required": false; }; "controllers": { "alias": "controllers"; "required": false; }; "segmentDynamicLoaderService": { "alias": "segmentDynamicLoaderService"; "required": false; }; "sectionFormComponent": { "alias": "sectionFormComponent"; "required": false; }; "sectionName": { "alias": "sectionName"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -27,7 +27,7 @@ export declare class ServiceHeaderComponent implements AfterViewInit {
|
|
|
27
27
|
feedback(): void;
|
|
28
28
|
showUserInfo(): void;
|
|
29
29
|
setFlagPriority(id: string): void;
|
|
30
|
-
statusClass(status: string): "
|
|
30
|
+
statusClass(status: string): "loading" | "danger" | "warning" | "success";
|
|
31
31
|
openFaq(): void;
|
|
32
32
|
getApprovalHistory(): void;
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<ServiceHeaderComponent, never>;
|
|
@@ -9,7 +9,7 @@ export declare class SubmitDialogComponent {
|
|
|
9
9
|
backHome(): void;
|
|
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
|
}
|
|
@@ -14,7 +14,7 @@ export declare class CoreService {
|
|
|
14
14
|
loggedInUserData: {};
|
|
15
15
|
constructor(http: HttpClient, config: MyLibConfig);
|
|
16
16
|
getLoggedInUserData(): void;
|
|
17
|
-
loadForm(): Promise<import("rxjs").Observable<never
|
|
17
|
+
loadForm(): Promise<Form | import("rxjs").Observable<never>>;
|
|
18
18
|
private buildAuthUrl;
|
|
19
19
|
private buildBody;
|
|
20
20
|
employeeProfile(employeeEmail: any): import("rxjs").Observable<any>;
|
package/lib/services/index.d.ts
CHANGED
package/package.json
CHANGED