@lowcodeunit/applications-flow-common 1.33.236-lets-get-social-ish → 1.33.239-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 +2 -2
- package/esm2020/lib/controls/processor-details-form/processor-details-form.component.mjs +4 -4
- package/esm2020/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.mjs +23 -10
- package/esm2020/lib/dialogs/edit-application-dialog/edit-application-dialog.component.mjs +25 -13
- package/esm2020/lib/dialogs/new-application-dialog/new-application-dialog.component.mjs +31 -14
- package/esm2020/lib/dialogs/processor-details-dialog/processor-details-dialog.component.mjs +23 -10
- package/esm2020/lib/dialogs/source-control-dialog/source-control-dialog.component.mjs +26 -10
- package/esm2020/lib/elements/breadcrumb/breadcrumb.component.mjs +3 -3
- package/esm2020/lib/services/project.service.mjs +2 -2
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +127 -68
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +125 -67
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.d.ts +6 -2
- package/lib/dialogs/edit-application-dialog/edit-application-dialog.component.d.ts +6 -2
- package/lib/dialogs/new-application-dialog/new-application-dialog.component.d.ts +6 -1
- package/lib/dialogs/processor-details-dialog/processor-details-dialog.component.d.ts +6 -2
- package/lib/dialogs/source-control-dialog/source-control-dialog.component.d.ts +6 -1
- package/package.json +1 -1
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
|
+
import { Status } from '@lcu/common';
|
|
3
5
|
import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
4
6
|
import * as i0 from "@angular/core";
|
|
5
7
|
export interface BPDialogData {
|
|
@@ -10,10 +12,12 @@ export interface BPDialogData {
|
|
|
10
12
|
export declare class BuildPipelineDialogComponent implements OnInit {
|
|
11
13
|
dialogRef: MatDialogRef<BuildPipelineDialogComponent>;
|
|
12
14
|
data: BPDialogData;
|
|
13
|
-
|
|
15
|
+
protected snackBar: MatSnackBar;
|
|
16
|
+
ErrorMessage: string;
|
|
17
|
+
constructor(dialogRef: MatDialogRef<BuildPipelineDialogComponent>, data: BPDialogData, snackBar: MatSnackBar);
|
|
14
18
|
ngOnInit(): void;
|
|
15
19
|
CloseDialog(): void;
|
|
16
|
-
HandleResponseEvent(event:
|
|
20
|
+
HandleResponseEvent(event: Status): void;
|
|
17
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<BuildPipelineDialogComponent, never>;
|
|
18
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<BuildPipelineDialogComponent, "lcu-build-pipeline-dialog", never, {}, {}, never, never>;
|
|
19
23
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
|
+
import { Status } from '@lcu/common';
|
|
3
5
|
import { EaCApplicationAsCode } from '@semanticjs/common';
|
|
4
6
|
import * as i0 from "@angular/core";
|
|
5
7
|
export interface ApplicationDialogData {
|
|
@@ -8,10 +10,12 @@ export interface ApplicationDialogData {
|
|
|
8
10
|
export declare class EditApplicationDialogComponent implements OnInit {
|
|
9
11
|
dialogRef: MatDialogRef<EditApplicationDialogComponent>;
|
|
10
12
|
data: ApplicationDialogData;
|
|
11
|
-
|
|
13
|
+
protected snackBar: MatSnackBar;
|
|
14
|
+
ErrorMessage: string;
|
|
15
|
+
constructor(dialogRef: MatDialogRef<EditApplicationDialogComponent>, data: ApplicationDialogData, snackBar: MatSnackBar);
|
|
12
16
|
ngOnInit(): void;
|
|
13
17
|
CloseDialog(): void;
|
|
14
|
-
SaveApplication(
|
|
18
|
+
SaveApplication(event: Status): void;
|
|
15
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditApplicationDialogComponent, never>;
|
|
16
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<EditApplicationDialogComponent, "lcu-edit-application-dialog", never, {}, {}, never, never>;
|
|
17
21
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
|
+
import { Status } from '@lcu/common';
|
|
3
5
|
import { EaCApplicationAsCode, EaCEnvironmentAsCode, EaCSourceControl } from '@semanticjs/common';
|
|
4
6
|
import { EditApplicationFormComponent } from '../../controls/edit-application-form/edit-application-form.component';
|
|
5
7
|
import { ProcessorDetailsFormComponent } from '../../controls/processor-details-form/processor-details-form.component';
|
|
@@ -14,6 +16,7 @@ export declare class NewApplicationDialogComponent implements OnInit {
|
|
|
14
16
|
protected eacSvc: EaCService;
|
|
15
17
|
dialogRef: MatDialogRef<NewApplicationDialogComponent>;
|
|
16
18
|
data: NewApplicationDialogData;
|
|
19
|
+
protected snackBar: MatSnackBar;
|
|
17
20
|
ApplicationFormControls: EditApplicationFormComponent;
|
|
18
21
|
ProcessorDetailsFormControls: ProcessorDetailsFormComponent;
|
|
19
22
|
get Environment(): EaCEnvironmentAsCode;
|
|
@@ -22,14 +25,16 @@ export declare class NewApplicationDialogComponent implements OnInit {
|
|
|
22
25
|
};
|
|
23
26
|
get SourceControlLookups(): Array<string>;
|
|
24
27
|
get State(): ApplicationsFlowState;
|
|
28
|
+
ErrorMessage: string;
|
|
25
29
|
HasSaveButton: boolean;
|
|
26
30
|
NewApplication: EaCApplicationAsCode;
|
|
27
31
|
NewApplicationLookup: string;
|
|
28
|
-
constructor(eacSvc: EaCService, dialogRef: MatDialogRef<NewApplicationDialogComponent>, data: NewApplicationDialogData);
|
|
32
|
+
constructor(eacSvc: EaCService, dialogRef: MatDialogRef<NewApplicationDialogComponent>, data: NewApplicationDialogData, snackBar: MatSnackBar);
|
|
29
33
|
ngOnInit(): void;
|
|
30
34
|
CloseDialog(): void;
|
|
31
35
|
SetupApplication(appLookup: string): void;
|
|
32
36
|
SaveApplication(): void;
|
|
37
|
+
protected handleSaveStatus(status: Status): void;
|
|
33
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<NewApplicationDialogComponent, never>;
|
|
34
39
|
static ɵcmp: i0.ɵɵComponentDeclaration<NewApplicationDialogComponent, "lcu-new-application-dialog", never, {}, {}, never, never>;
|
|
35
40
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
|
+
import { Status } from '@lcu/common';
|
|
3
5
|
import { EaCApplicationAsCode, EaCEnvironmentAsCode, EaCSourceControl } from '@semanticjs/common';
|
|
4
6
|
import { ProcessorDetailsFormComponent } from '../../controls/processor-details-form/processor-details-form.component';
|
|
5
7
|
import { EaCService } from '../../services/eac.service';
|
|
@@ -14,6 +16,7 @@ export declare class ProcessorDetailsDialogComponent implements OnInit {
|
|
|
14
16
|
protected eacSvc: EaCService;
|
|
15
17
|
dialogRef: MatDialogRef<ProcessorDetailsDialogComponent>;
|
|
16
18
|
data: ProcessorDetailsDialogData;
|
|
19
|
+
protected snackBar: MatSnackBar;
|
|
17
20
|
ProcessorDetailsFormControls: ProcessorDetailsFormComponent;
|
|
18
21
|
get Application(): EaCApplicationAsCode;
|
|
19
22
|
get Environment(): EaCEnvironmentAsCode;
|
|
@@ -22,10 +25,11 @@ export declare class ProcessorDetailsDialogComponent implements OnInit {
|
|
|
22
25
|
};
|
|
23
26
|
get SourceControlLookups(): Array<string>;
|
|
24
27
|
get State(): ApplicationsFlowState;
|
|
25
|
-
|
|
28
|
+
ErrorMessage: string;
|
|
29
|
+
constructor(eacSvc: EaCService, dialogRef: MatDialogRef<ProcessorDetailsDialogComponent>, data: ProcessorDetailsDialogData, snackBar: MatSnackBar);
|
|
26
30
|
ngOnInit(): void;
|
|
27
31
|
CloseDialog(): void;
|
|
28
|
-
HandleSaveFormEvent(event:
|
|
32
|
+
HandleSaveFormEvent(event: Status): void;
|
|
29
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProcessorDetailsDialogComponent, never>;
|
|
30
34
|
static ɵcmp: i0.ɵɵComponentDeclaration<ProcessorDetailsDialogComponent, "lcu-processor-details-dialog", never, {}, {}, never, never>;
|
|
31
35
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
|
+
import { Status } from '@lcu/common';
|
|
3
5
|
import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
4
6
|
import * as i0 from "@angular/core";
|
|
5
7
|
export interface SCDialogData {
|
|
@@ -10,9 +12,12 @@ export interface SCDialogData {
|
|
|
10
12
|
export declare class SourceControlDialogComponent implements OnInit {
|
|
11
13
|
dialogRef: MatDialogRef<SourceControlDialogComponent>;
|
|
12
14
|
data: SCDialogData;
|
|
13
|
-
|
|
15
|
+
protected snackBar: MatSnackBar;
|
|
16
|
+
ErrorMessage: string;
|
|
17
|
+
constructor(dialogRef: MatDialogRef<SourceControlDialogComponent>, data: SCDialogData, snackBar: MatSnackBar);
|
|
14
18
|
ngOnInit(): void;
|
|
15
19
|
CloseDialog(): void;
|
|
20
|
+
HandleSaveStatusEvent(event: Status): void;
|
|
16
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<SourceControlDialogComponent, never>;
|
|
17
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<SourceControlDialogComponent, "lcu-source-control-dialog", never, {}, {}, never, never>;
|
|
18
23
|
}
|