@lowcodeunit/applications-flow-common 1.34.34-krakyn-app → 1.34.37-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/dfs-modifiers-form/dfs-modifiers-form.component.mjs +3 -3
- package/esm2020/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.mjs +10 -3
- package/esm2020/lib/dialogs/source-control-dialog/source-control-dialog.component.mjs +10 -3
- package/esm2020/lib/elements/feed-card-sm/feed-card-sm.component.mjs +2 -2
- package/esm2020/lib/elements/feed-header/feed-header.component.mjs +2 -2
- package/esm2020/lib/elements/main-feed-card/main-feed-card.component.mjs +2 -2
- package/esm2020/lib/elements/skeleton-feed-card/skeleton-feed-card.component.mjs +2 -2
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +50 -38
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +50 -38
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.d.ts +2 -0
- package/lib/dialogs/source-control-dialog/source-control-dialog.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export interface BPDialogData {
|
|
12
12
|
devopsActionLookup: string;
|
|
13
|
+
doaName: string;
|
|
13
14
|
environment: EaCEnvironmentAsCode;
|
|
14
15
|
environmentLookup: string;
|
|
15
16
|
}
|
|
@@ -26,6 +27,7 @@ export declare class BuildPipelineDialogComponent implements OnInit {
|
|
|
26
27
|
constructor(dialogRef: MatDialogRef<BuildPipelineDialogComponent>, eacSvc: EaCService, data: BPDialogData, snackBar: MatSnackBar);
|
|
27
28
|
ngOnInit(): void;
|
|
28
29
|
CloseDialog(): void;
|
|
30
|
+
DeleteDevOpsAction(): void;
|
|
29
31
|
HandleResponseEvent(event: Status): void;
|
|
30
32
|
SaveBuildPipeline(): void;
|
|
31
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<BuildPipelineDialogComponent, never>;
|
|
@@ -26,6 +26,7 @@ export declare class SourceControlDialogComponent implements OnInit {
|
|
|
26
26
|
constructor(dialogRef: MatDialogRef<SourceControlDialogComponent>, eacSvc: EaCService, data: SCDialogData, snackBar: MatSnackBar);
|
|
27
27
|
ngOnInit(): void;
|
|
28
28
|
CloseDialog(): void;
|
|
29
|
+
DeleteSourceControl(scLookup: string): void;
|
|
29
30
|
HandleSaveStatusEvent(event: Status): void;
|
|
30
31
|
SaveSourceControl(): void;
|
|
31
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<SourceControlDialogComponent, never>;
|