@lowcodeunit/applications-flow-common 1.33.277-krakyn-app → 1.33.280-krakyn-app
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/build-pipeline-form/build-pipeline-form.component.mjs +12 -11
- package/esm2020/lib/controls/devops-source-control-form/devops-source-control-form.component.mjs +27 -60
- package/esm2020/lib/controls/edit-application-form/edit-application-form.component.mjs +12 -10
- package/esm2020/lib/controls/processor-details-form/processor-details-form.component.mjs +30 -17
- package/esm2020/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.mjs +20 -14
- package/esm2020/lib/dialogs/new-application-dialog/new-application-dialog.component.mjs +3 -2
- package/esm2020/lib/dialogs/source-control-dialog/source-control-dialog.component.mjs +20 -14
- package/esm2020/lib/elements/breadcrumb/breadcrumb.component.mjs +4 -4
- package/esm2020/lib/elements/projects/controls/git-auth/git-auth.component.mjs +2 -2
- package/esm2020/lib/services/project.service.mjs +3 -1
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +108 -107
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +108 -118
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/controls/processor-details-form/processor-details-form.component.d.ts +1 -0
- package/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.d.ts +4 -1
- package/lib/dialogs/source-control-dialog/source-control-dialog.component.d.ts +4 -1
- package/package.json +1 -1
|
@@ -40,6 +40,7 @@ export declare class ProcessorDetailsFormComponent implements OnInit {
|
|
|
40
40
|
get SourceControlFormControl(): AbstractControl;
|
|
41
41
|
get SPARootFormControl(): AbstractControl;
|
|
42
42
|
get TokenLookupFormControl(): AbstractControl;
|
|
43
|
+
get ValidFormControls(): Array<AbstractControl>;
|
|
43
44
|
get VersionFormControl(): AbstractControl;
|
|
44
45
|
get ZipFileFormControl(): AbstractControl;
|
|
45
46
|
BuildPathOptions: string[];
|
|
@@ -3,6 +3,7 @@ import { MatDialogRef } from '@angular/material/dialog';
|
|
|
3
3
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
4
|
import { Status } from '@lcu/common';
|
|
5
5
|
import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
6
|
+
import { EaCService } from '../../services/eac.service';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export interface BPDialogData {
|
|
8
9
|
devopsActionLookup: string;
|
|
@@ -11,10 +12,12 @@ export interface BPDialogData {
|
|
|
11
12
|
}
|
|
12
13
|
export declare class BuildPipelineDialogComponent implements OnInit {
|
|
13
14
|
dialogRef: MatDialogRef<BuildPipelineDialogComponent>;
|
|
15
|
+
protected eacSvc: EaCService;
|
|
14
16
|
data: BPDialogData;
|
|
15
17
|
protected snackBar: MatSnackBar;
|
|
18
|
+
get HasConnection(): boolean;
|
|
16
19
|
ErrorMessage: string;
|
|
17
|
-
constructor(dialogRef: MatDialogRef<BuildPipelineDialogComponent>, data: BPDialogData, snackBar: MatSnackBar);
|
|
20
|
+
constructor(dialogRef: MatDialogRef<BuildPipelineDialogComponent>, eacSvc: EaCService, data: BPDialogData, snackBar: MatSnackBar);
|
|
18
21
|
ngOnInit(): void;
|
|
19
22
|
CloseDialog(): void;
|
|
20
23
|
HandleResponseEvent(event: Status): void;
|
|
@@ -3,6 +3,7 @@ import { MatDialogRef } from '@angular/material/dialog';
|
|
|
3
3
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
4
|
import { Status } from '@lcu/common';
|
|
5
5
|
import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
6
|
+
import { EaCService } from '../../services/eac.service';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export interface SCDialogData {
|
|
8
9
|
environment: EaCEnvironmentAsCode;
|
|
@@ -11,10 +12,12 @@ export interface SCDialogData {
|
|
|
11
12
|
}
|
|
12
13
|
export declare class SourceControlDialogComponent implements OnInit {
|
|
13
14
|
dialogRef: MatDialogRef<SourceControlDialogComponent>;
|
|
15
|
+
protected eacSvc: EaCService;
|
|
14
16
|
data: SCDialogData;
|
|
15
17
|
protected snackBar: MatSnackBar;
|
|
18
|
+
get HasConnection(): boolean;
|
|
16
19
|
ErrorMessage: string;
|
|
17
|
-
constructor(dialogRef: MatDialogRef<SourceControlDialogComponent>, data: SCDialogData, snackBar: MatSnackBar);
|
|
20
|
+
constructor(dialogRef: MatDialogRef<SourceControlDialogComponent>, eacSvc: EaCService, data: SCDialogData, snackBar: MatSnackBar);
|
|
18
21
|
ngOnInit(): void;
|
|
19
22
|
CloseDialog(): void;
|
|
20
23
|
HandleSaveStatusEvent(event: Status): void;
|