@lowcodeunit/applications-flow-common 1.33.250-lets-get-social-ish → 1.33.251-lets-get-social-ish
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/esm2020/lib/controls/edit-application-form/edit-application-form.component.mjs +8 -5
- package/esm2020/lib/dialogs/edit-application-dialog/edit-application-dialog.component.mjs +3 -3
- package/esm2020/lib/dialogs/new-application-dialog/new-application-dialog.component.mjs +3 -3
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +12 -10
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +11 -8
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/controls/edit-application-form/edit-application-form.component.d.ts +2 -1
- package/lib/dialogs/edit-application-dialog/edit-application-dialog.component.d.ts +2 -0
- package/lib/dialogs/new-application-dialog/new-application-dialog.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ export declare class EditApplicationFormComponent implements OnInit {
|
|
|
8
8
|
protected formBldr: FormBuilder;
|
|
9
9
|
protected eacSvc: EaCService;
|
|
10
10
|
ApplicationLookup: string;
|
|
11
|
+
CurrentRoute: string;
|
|
11
12
|
EditingApplication: EaCApplicationAsCode;
|
|
12
13
|
HasSaveButton: boolean;
|
|
13
14
|
ProjectLookup: string;
|
|
@@ -23,5 +24,5 @@ export declare class EditApplicationFormComponent implements OnInit {
|
|
|
23
24
|
SaveApplication(): void;
|
|
24
25
|
protected setupApplicationForm(): void;
|
|
25
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditApplicationFormComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditApplicationFormComponent, "lcu-edit-application-form", never, { "ApplicationLookup": "application-lookup"; "EditingApplication": "editing-application"; "HasSaveButton": "has-save-button"; "ProjectLookup": "project-lookup"; }, { "SaveFormEvent": "save-form-event"; }, never, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditApplicationFormComponent, "lcu-edit-application-form", never, { "ApplicationLookup": "application-lookup"; "CurrentRoute": "current-route"; "EditingApplication": "editing-application"; "HasSaveButton": "has-save-button"; "ProjectLookup": "project-lookup"; }, { "SaveFormEvent": "save-form-event"; }, never, never>;
|
|
27
28
|
}
|
|
@@ -6,6 +6,8 @@ import { EaCApplicationAsCode } from '@semanticjs/common';
|
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export interface ApplicationDialogData {
|
|
8
8
|
application: EaCApplicationAsCode;
|
|
9
|
+
applicationLookup: string;
|
|
10
|
+
projectLookup: string;
|
|
9
11
|
}
|
|
10
12
|
export declare class EditApplicationDialogComponent implements OnInit {
|
|
11
13
|
dialogRef: MatDialogRef<EditApplicationDialogComponent>;
|
|
@@ -11,6 +11,7 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
export interface NewApplicationDialogData {
|
|
12
12
|
environmentLookup: string;
|
|
13
13
|
projectLookup: string;
|
|
14
|
+
currentRoute: string;
|
|
14
15
|
}
|
|
15
16
|
export declare class NewApplicationDialogComponent implements OnInit {
|
|
16
17
|
protected eacSvc: EaCService;
|