bpm-core 0.0.85 → 0.0.86
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/previous-requests/previous-requests.component.mjs +16 -3
- package/fesm2022/bpm-core.mjs +15 -2
- 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/app-component-sections/previous-requests/previous-requests.component.d.ts +11 -0
- package/lib/components/shared-components/dialogs/submit-dialog/submit-dialog.component.d.ts +1 -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>;
|
package/lib/components/app-component-sections/previous-requests/previous-requests.component.d.ts
CHANGED
|
@@ -159,6 +159,17 @@ export declare class PreviousRequestsComponent implements OnInit, AfterViewInit
|
|
|
159
159
|
* @return {void}
|
|
160
160
|
*/
|
|
161
161
|
viewForm(formId: string): void;
|
|
162
|
+
/**
|
|
163
|
+
* Closes the side navigation panel.
|
|
164
|
+
*
|
|
165
|
+
* @return {void}
|
|
166
|
+
*/
|
|
167
|
+
closeSidenav(): void;
|
|
168
|
+
/**
|
|
169
|
+
* Emit the value to complete all active subscriptions
|
|
170
|
+
*
|
|
171
|
+
* @return {void}
|
|
172
|
+
*/
|
|
162
173
|
ngOnDestroy(): void;
|
|
163
174
|
static ɵfac: i0.ɵɵFactoryDeclaration<PreviousRequestsComponent, never>;
|
|
164
175
|
static ɵcmp: i0.ɵɵComponentDeclaration<PreviousRequestsComponent, "app-history", never, {}, {}, 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
|
}
|
|
@@ -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
|
|
14
|
+
export declare const Shareds: (typeof ReactiveFormsModule | typeof NgClass | typeof TranslatePipe | typeof FormLabelComponent | typeof ValidationErrorsComponent | typeof InfoItemComponent)[];
|
|
15
15
|
export declare const TextLanguageDirectives: (typeof EnOnlyDirective | typeof ArOnlyDirective)[];
|