bpm-core 0.0.26 → 0.0.27
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 +9 -10
- package/esm2022/lib/components/app-component-sections/form-section/form-section.component.mjs +4 -40
- package/esm2022/lib/components/shared-components/action-buttons/action-buttons.component.mjs +6 -4
- package/esm2022/lib/environments/environment.local.mjs +2 -2
- package/esm2022/lib/services/core.service.ts.mjs +7 -8
- package/fesm2022/bpm-core.mjs +19 -55
- package/fesm2022/bpm-core.mjs.map +1 -1
- package/lib/app/app.component.d.ts +1 -2
- package/lib/components/app-component-sections/form-section/form-section.component.d.ts +2 -3
- package/lib/components/app-component-sections/service-header/service-header.component.d.ts +1 -1
- package/lib/components/shared-components/action-buttons/action-buttons.component.d.ts +3 -1
- package/lib/services/core.service.ts.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Router } from "@angular/router";
|
|
2
|
-
import { SidenavService } from "../services";
|
|
3
|
-
import { CoreService } from "../services";
|
|
2
|
+
import { CoreService, SidenavService } from "../services";
|
|
4
3
|
import { Form } from "../interfaces";
|
|
5
4
|
import { SegmentDynamicLoaderService } from "../testComponent/services/segment-dynamic-loader.service";
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
2
|
import { CoreI18nService, CoreService, SidenavService } from '../../../services';
|
|
3
3
|
import { Form, Section } from '../../../interfaces';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class FormSectionComponent implements OnInit
|
|
5
|
+
export declare class FormSectionComponent implements OnInit {
|
|
6
6
|
i18n: CoreI18nService;
|
|
7
7
|
private readonly coreService;
|
|
8
8
|
private readonly sidenavService;
|
|
@@ -35,7 +35,6 @@ export declare class FormSectionComponent implements OnInit, AfterViewChecked {
|
|
|
35
35
|
constructor(i18n: CoreI18nService, coreService: CoreService, sidenavService: SidenavService);
|
|
36
36
|
ngOnInit(): void;
|
|
37
37
|
get isExpanded(): boolean;
|
|
38
|
-
ngAfterViewChecked(): void;
|
|
39
38
|
sectionId(): string;
|
|
40
39
|
private createUserProfileFromResponse;
|
|
41
40
|
private openOrCreateUserProfile;
|
|
@@ -28,7 +28,7 @@ export declare class ServiceHeaderComponent implements AfterViewInit {
|
|
|
28
28
|
feedback(): void;
|
|
29
29
|
showUserInfo(): void;
|
|
30
30
|
setFlagPriority(id: string): void;
|
|
31
|
-
statusClass(status: string): "success" | "
|
|
31
|
+
statusClass(status: string): "success" | "danger" | "warning" | "loading";
|
|
32
32
|
openFaq(): void;
|
|
33
33
|
getApprovalHistory(): void;
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<ServiceHeaderComponent, never>;
|
|
@@ -26,7 +26,9 @@ export declare class ActionButtonsComponent implements AfterViewInit {
|
|
|
26
26
|
actionStates: {
|
|
27
27
|
[action: string]: boolean;
|
|
28
28
|
};
|
|
29
|
-
isSubmitting: {
|
|
29
|
+
isSubmitting: {
|
|
30
|
+
SUBMIT: boolean;
|
|
31
|
+
};
|
|
30
32
|
submittingForm: boolean;
|
|
31
33
|
constructor(i18n: CoreI18nService, actionStateService: ActionStateService, coreService: CoreService, dialog: MatDialog, toasterService: ToastrService, cdRef: ChangeDetectorRef, sidenavService: SidenavService);
|
|
32
34
|
ngAfterViewInit(): void;
|
|
@@ -21,7 +21,7 @@ export declare class CoreService {
|
|
|
21
21
|
approvals: any;
|
|
22
22
|
constructor(http: HttpClient, config: MyLibConfig);
|
|
23
23
|
getLoggedInUserData(): void;
|
|
24
|
-
loadForm():
|
|
24
|
+
loadForm(): import("rxjs").Observable<Form | import("rxjs").Observable<never>>;
|
|
25
25
|
private buildAuthUrl;
|
|
26
26
|
private buildBody;
|
|
27
27
|
employeeProfile(employeeEmail: any): import("rxjs").Observable<any>;
|