@lowcodeunit/applications-flow-common 1.33.288-lets-get-social-ish → 1.33.291-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/build-pipeline-form/build-pipeline-form.component.mjs +11 -15
- package/esm2020/lib/controls/devops-source-control-form/devops-source-control-form.component.mjs +17 -19
- package/esm2020/lib/controls/edit-application-form/edit-application-form.component.mjs +7 -12
- package/esm2020/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.mjs +19 -6
- package/esm2020/lib/dialogs/edit-application-dialog/edit-application-dialog.component.mjs +32 -17
- package/esm2020/lib/dialogs/source-control-dialog/source-control-dialog.component.mjs +19 -6
- package/esm2020/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.mjs +2 -2
- package/esm2020/lib/elements/projects/controls/tabs/devops/devops.component.mjs +2 -2
- package/esm2020/lib/services/applications-flow.service.mjs +15 -8
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +180 -133
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +175 -130
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/controls/devops-source-control-form/devops-source-control-form.component.d.ts +1 -0
- package/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.d.ts +7 -0
- package/lib/dialogs/edit-application-dialog/edit-application-dialog.component.d.ts +11 -2
- package/lib/dialogs/source-control-dialog/source-control-dialog.component.d.ts +7 -0
- package/lib/services/applications-flow.service.d.ts +1 -2
- package/package.json +1 -1
|
@@ -49,6 +49,7 @@ export declare class DevopsSourceControlFormComponent implements AfterViewInit,
|
|
|
49
49
|
OrganizationOptions: GitHubOrganization[];
|
|
50
50
|
RepositoryOptions: GitHubRepository[];
|
|
51
51
|
SelectedBranches: string[];
|
|
52
|
+
SkeletonEffect: string;
|
|
52
53
|
readonly SeparatorKeysCodes: readonly [13, 188];
|
|
53
54
|
constructor(appsFlowSvc: ApplicationsFlowService, eacSvc: EaCService, formBuilder: FormBuilder);
|
|
54
55
|
ngAfterViewInit(): void;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
2
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
4
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
5
|
import { Status } from '@lcu/common';
|
|
5
6
|
import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
7
|
+
import { BuildPipelineFormComponent } from '../../controls/build-pipeline-form/build-pipeline-form.component';
|
|
6
8
|
import { EaCService } from '../../services/eac.service';
|
|
9
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
7
10
|
import * as i0 from "@angular/core";
|
|
8
11
|
export interface BPDialogData {
|
|
9
12
|
devopsActionLookup: string;
|
|
@@ -15,12 +18,16 @@ export declare class BuildPipelineDialogComponent implements OnInit {
|
|
|
15
18
|
protected eacSvc: EaCService;
|
|
16
19
|
data: BPDialogData;
|
|
17
20
|
protected snackBar: MatSnackBar;
|
|
21
|
+
BuildPipelineControl: BuildPipelineFormComponent;
|
|
22
|
+
get BuildPipelineFormGroup(): FormGroup;
|
|
18
23
|
get HasConnection(): boolean;
|
|
24
|
+
get State(): ApplicationsFlowState;
|
|
19
25
|
ErrorMessage: string;
|
|
20
26
|
constructor(dialogRef: MatDialogRef<BuildPipelineDialogComponent>, eacSvc: EaCService, data: BPDialogData, snackBar: MatSnackBar);
|
|
21
27
|
ngOnInit(): void;
|
|
22
28
|
CloseDialog(): void;
|
|
23
29
|
HandleResponseEvent(event: Status): void;
|
|
30
|
+
SaveBuildPipeline(): void;
|
|
24
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<BuildPipelineDialogComponent, never>;
|
|
25
32
|
static ɵcmp: i0.ɵɵComponentDeclaration<BuildPipelineDialogComponent, "lcu-build-pipeline-dialog", never, {}, {}, never, never>;
|
|
26
33
|
}
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
2
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
4
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
5
|
import { Status } from '@lcu/common';
|
|
5
6
|
import { EaCApplicationAsCode } from '@semanticjs/common';
|
|
7
|
+
import { EditApplicationFormComponent } from '../../controls/edit-application-form/edit-application-form.component';
|
|
8
|
+
import { EaCService } from '../../services/eac.service';
|
|
9
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
6
10
|
import * as i0 from "@angular/core";
|
|
7
11
|
export interface ApplicationDialogData {
|
|
8
12
|
application: EaCApplicationAsCode;
|
|
@@ -10,14 +14,19 @@ export interface ApplicationDialogData {
|
|
|
10
14
|
projectLookup: string;
|
|
11
15
|
}
|
|
12
16
|
export declare class EditApplicationDialogComponent implements OnInit {
|
|
17
|
+
eacSvc: EaCService;
|
|
13
18
|
dialogRef: MatDialogRef<EditApplicationDialogComponent>;
|
|
14
19
|
data: ApplicationDialogData;
|
|
15
20
|
protected snackBar: MatSnackBar;
|
|
21
|
+
EditApplicationControl: EditApplicationFormComponent;
|
|
22
|
+
get ApplicationFormGroup(): FormGroup;
|
|
23
|
+
get State(): ApplicationsFlowState;
|
|
16
24
|
ErrorMessage: string;
|
|
17
|
-
constructor(dialogRef: MatDialogRef<EditApplicationDialogComponent>, data: ApplicationDialogData, snackBar: MatSnackBar);
|
|
25
|
+
constructor(eacSvc: EaCService, dialogRef: MatDialogRef<EditApplicationDialogComponent>, data: ApplicationDialogData, snackBar: MatSnackBar);
|
|
18
26
|
ngOnInit(): void;
|
|
19
27
|
CloseDialog(): void;
|
|
20
|
-
|
|
28
|
+
HandleSaveApplicationEvent(event: Status): void;
|
|
29
|
+
SaveApplication(): void;
|
|
21
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditApplicationDialogComponent, never>;
|
|
22
31
|
static ɵcmp: i0.ɵɵComponentDeclaration<EditApplicationDialogComponent, "lcu-edit-application-dialog", never, {}, {}, never, never>;
|
|
23
32
|
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
2
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
4
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
5
|
import { Status } from '@lcu/common';
|
|
5
6
|
import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
7
|
+
import { DevopsSourceControlFormComponent } from '../../controls/devops-source-control-form/devops-source-control-form.component';
|
|
6
8
|
import { EaCService } from '../../services/eac.service';
|
|
9
|
+
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
7
10
|
import * as i0 from "@angular/core";
|
|
8
11
|
export interface SCDialogData {
|
|
9
12
|
environment: EaCEnvironmentAsCode;
|
|
@@ -15,12 +18,16 @@ export declare class SourceControlDialogComponent implements OnInit {
|
|
|
15
18
|
protected eacSvc: EaCService;
|
|
16
19
|
data: SCDialogData;
|
|
17
20
|
protected snackBar: MatSnackBar;
|
|
21
|
+
DevopsSourceControl: DevopsSourceControlFormComponent;
|
|
22
|
+
get DevOpsSourceControlFormGroup(): FormGroup;
|
|
18
23
|
get HasConnection(): boolean;
|
|
24
|
+
get State(): ApplicationsFlowState;
|
|
19
25
|
ErrorMessage: string;
|
|
20
26
|
constructor(dialogRef: MatDialogRef<SourceControlDialogComponent>, eacSvc: EaCService, data: SCDialogData, snackBar: MatSnackBar);
|
|
21
27
|
ngOnInit(): void;
|
|
22
28
|
CloseDialog(): void;
|
|
23
29
|
HandleSaveStatusEvent(event: Status): void;
|
|
30
|
+
SaveSourceControl(): void;
|
|
24
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<SourceControlDialogComponent, never>;
|
|
25
32
|
static ɵcmp: i0.ɵɵComponentDeclaration<SourceControlDialogComponent, "lcu-source-control-dialog", never, {}, {}, never, never>;
|
|
26
33
|
}
|
|
@@ -25,8 +25,7 @@ export declare class ApplicationsFlowService {
|
|
|
25
25
|
ListOrganizations(): Observable<object>;
|
|
26
26
|
ListRepositories(organization: string): Observable<object>;
|
|
27
27
|
LoadEnterpriseAsCode(): Observable<object>;
|
|
28
|
-
LoadProjectHostingDetails(
|
|
29
|
-
NewLoadProjectHostingDetails(): Observable<object>;
|
|
28
|
+
LoadProjectHostingDetails(): Observable<object>;
|
|
30
29
|
SaveEnterpriseAsCode(eac: EnterpriseAsCode): Observable<object>;
|
|
31
30
|
SetActiveEnterprise(activeEntLookup: string): Observable<object>;
|
|
32
31
|
UnpackLowCodeUnit(req: UnpackLowCodeUnitRequest): Observable<object>;
|