@lowcodeunit/applications-flow-common 1.37.89-mobile-friendly → 1.37.92-new-state-setup
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 +39 -39
- package/esm2020/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.mjs +6 -3
- package/esm2020/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.mjs +1 -1
- package/esm2020/lib/dialogs/dfs-modifiers-dialog/dfs-modifiers-dialog.component.mjs +5 -2
- package/esm2020/lib/dialogs/edit-application-dialog/edit-application-dialog.component.mjs +5 -2
- package/esm2020/lib/dialogs/edit-project-dialog/edit-project-dialog.component.mjs +5 -2
- package/esm2020/lib/dialogs/feed-header-dialog/feed-header-dialog.component.mjs +5 -2
- package/esm2020/lib/dialogs/new-application-dialog/new-application-dialog.component.mjs +5 -2
- package/esm2020/lib/dialogs/processor-details-dialog/processor-details-dialog.component.mjs +5 -2
- package/esm2020/lib/dialogs/source-control-dialog/source-control-dialog.component.mjs +5 -2
- package/esm2020/lib/dialogs/state-config-dialog/state-config-dialog.component.mjs +5 -2
- package/esm2020/lib/dialogs/user-account-dialog/user-account-dialog.component.mjs +24 -27
- package/esm2020/lib/elements/breadcrumb/breadcrumb.component.mjs +3 -3
- package/esm2020/lib/elements/project-card/project-card.component.mjs +24 -18
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +135 -108
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +133 -106
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/controls/build-pipeline-form/build-pipeline-form.component.d.ts +9 -9
- package/lib/dialogs/build-pipeline-dialog/build-pipeline-dialog.component.d.ts +5 -2
- package/lib/dialogs/dfs-modifiers-dialog/dfs-modifiers-dialog.component.d.ts +5 -2
- package/lib/dialogs/edit-application-dialog/edit-application-dialog.component.d.ts +5 -2
- package/lib/dialogs/edit-project-dialog/edit-project-dialog.component.d.ts +5 -2
- package/lib/dialogs/feed-header-dialog/feed-header-dialog.component.d.ts +5 -2
- package/lib/dialogs/new-application-dialog/new-application-dialog.component.d.ts +5 -2
- package/lib/dialogs/processor-details-dialog/processor-details-dialog.component.d.ts +5 -2
- package/lib/dialogs/source-control-dialog/source-control-dialog.component.d.ts +5 -2
- package/lib/dialogs/state-config-dialog/state-config-dialog.component.d.ts +5 -2
- package/lib/dialogs/user-account-dialog/user-account-dialog.component.d.ts +12 -7
- package/lib/elements/project-card/project-card.component.d.ts +1 -1
- package/package.json +1 -1
@@ -17,19 +17,19 @@ export declare class BuildPipelineFormComponent implements OnInit {
|
|
17
17
|
HostingDetails: ProjectHostingDetails;
|
18
18
|
Loading: boolean;
|
19
19
|
ResponseEvent: EventEmitter<any>;
|
20
|
+
protected get Artifact(): EaCArtifact;
|
21
|
+
protected get ArtifactLookup(): string;
|
20
22
|
get BuildPipelineFormControl(): AbstractControl;
|
21
|
-
get
|
22
|
-
get
|
23
|
-
Artifact: EaCArtifact;
|
24
|
-
ArtifactLookup: string;
|
25
|
-
DevOpsAction: EaCDevOpsAction;
|
26
|
-
DevOpsActions: {
|
23
|
+
protected get DevOpsAction(): EaCDevOpsAction;
|
24
|
+
protected get DevOpsActions(): {
|
27
25
|
[lookup: string]: EaCDevOpsAction;
|
28
26
|
};
|
29
|
-
|
30
|
-
|
27
|
+
get DevOpsActionNameFormControl(): AbstractControl;
|
28
|
+
get NPMTokenFormControl(): AbstractControl;
|
29
|
+
protected get SelectedHostingOptionInputControlValues(): {
|
31
30
|
[lookup: string]: any;
|
32
31
|
};
|
32
|
+
BuildPipelineFormGroup: FormGroup;
|
33
33
|
SelectedHostingOption: ProjectHostingOption;
|
34
34
|
constructor(eacSvc: EaCService, formBuilder: FormBuilder, appsFlowSvc: ApplicationsFlowService);
|
35
35
|
ngOnInit(): void;
|
@@ -40,5 +40,5 @@ export declare class BuildPipelineFormComponent implements OnInit {
|
|
40
40
|
protected setupControlsForForm(): void;
|
41
41
|
protected loadProjectHostingDetails(): void;
|
42
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<BuildPipelineFormComponent, never>;
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BuildPipelineFormComponent, "lcu-build-pipeline-form", never, { "DevOpsActionLookup": "devops-action-lookup"; "Disabled": "disabled"; "Environment": "environment"; "EnvironmentLookup": "environment-lookup"; "
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BuildPipelineFormComponent, "lcu-build-pipeline-form", never, { "DevOpsActionLookup": "devops-action-lookup"; "Disabled": "disabled"; "Environment": "environment"; "EnvironmentLookup": "environment-lookup"; "Loading": "loading"; }, { "ResponseEvent": "response-event"; }, never, never>;
|
44
44
|
}
|
@@ -1,9 +1,10 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
2
2
|
import { FormGroup } from '@angular/forms';
|
3
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
4
4
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
5
5
|
import { Status } from '@lcu/common';
|
6
6
|
import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
7
|
+
import { Subscription } from 'rxjs';
|
7
8
|
import { BuildPipelineFormComponent } from '../../controls/build-pipeline-form/build-pipeline-form.component';
|
8
9
|
import { EaCService } from '../../services/eac.service';
|
9
10
|
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
@@ -14,7 +15,7 @@ export interface BPDialogData {
|
|
14
15
|
environment: EaCEnvironmentAsCode;
|
15
16
|
environmentLookup: string;
|
16
17
|
}
|
17
|
-
export declare class BuildPipelineDialogComponent implements OnInit {
|
18
|
+
export declare class BuildPipelineDialogComponent implements OnInit, OnDestroy {
|
18
19
|
dialogRef: MatDialogRef<BuildPipelineDialogComponent>;
|
19
20
|
protected eacSvc: EaCService;
|
20
21
|
data: BPDialogData;
|
@@ -23,8 +24,10 @@ export declare class BuildPipelineDialogComponent implements OnInit {
|
|
23
24
|
get BuildPipelineFormGroup(): FormGroup;
|
24
25
|
ErrorMessage: string;
|
25
26
|
State: ApplicationsFlowState;
|
27
|
+
StateSub: Subscription;
|
26
28
|
constructor(dialogRef: MatDialogRef<BuildPipelineDialogComponent>, eacSvc: EaCService, data: BPDialogData, snackBar: MatSnackBar);
|
27
29
|
ngOnInit(): void;
|
30
|
+
ngOnDestroy(): void;
|
28
31
|
CloseDialog(): void;
|
29
32
|
DeleteDevOpsAction(): void;
|
30
33
|
HandleResponseEvent(event: Status): void;
|
@@ -1,10 +1,11 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
2
2
|
import { FormBuilder } from '@angular/forms';
|
3
3
|
import { FormGroup } from '@angular/forms';
|
4
4
|
import { MatDialogRef } from '@angular/material/dialog';
|
5
5
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
6
6
|
import { Status } from '@lcu/common';
|
7
7
|
import { EaCApplicationAsCode } from '@semanticjs/common';
|
8
|
+
import { Subscription } from 'rxjs';
|
8
9
|
import { DFSModifiersFormComponent } from '../../controls/dfs-modifiers-form/dfs-modifiers-form.component';
|
9
10
|
import { EaCService } from '../../services/eac.service';
|
10
11
|
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
@@ -16,7 +17,7 @@ export interface DFSModifiersDialogData {
|
|
16
17
|
level: string;
|
17
18
|
projectLookup?: string;
|
18
19
|
}
|
19
|
-
export declare class DFSModifiersDialogComponent implements OnInit {
|
20
|
+
export declare class DFSModifiersDialogComponent implements OnInit, OnDestroy {
|
20
21
|
protected eacSvc: EaCService;
|
21
22
|
formbldr: FormBuilder;
|
22
23
|
dialogRef: MatDialogRef<DFSModifiersDialogComponent>;
|
@@ -30,9 +31,11 @@ export declare class DFSModifiersDialogComponent implements OnInit {
|
|
30
31
|
ModifierDialogForm: FormGroup;
|
31
32
|
SaveDisabled: boolean;
|
32
33
|
State: ApplicationsFlowState;
|
34
|
+
StateSub: Subscription;
|
33
35
|
ProjectLookups: Array<string>;
|
34
36
|
constructor(eacSvc: EaCService, formbldr: FormBuilder, dialogRef: MatDialogRef<DFSModifiersDialogComponent>, data: DFSModifiersDialogData, snackBar: MatSnackBar);
|
35
37
|
ngOnInit(): void;
|
38
|
+
ngOnDestroy(): void;
|
36
39
|
CloseDialog(): void;
|
37
40
|
DeleteModifier(): void;
|
38
41
|
HandleSaveFormEvent(event: Status): void;
|
@@ -1,9 +1,10 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
2
2
|
import { FormGroup } from '@angular/forms';
|
3
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
4
4
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
5
5
|
import { Status } from '@lcu/common';
|
6
6
|
import { EaCApplicationAsCode } from '@semanticjs/common';
|
7
|
+
import { Subscription } from 'rxjs';
|
7
8
|
import { EditApplicationFormComponent } from '../../controls/edit-application-form/edit-application-form.component';
|
8
9
|
import { EaCService } from '../../services/eac.service';
|
9
10
|
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
@@ -13,7 +14,7 @@ export interface ApplicationDialogData {
|
|
13
14
|
applicationLookup: string;
|
14
15
|
projectLookup: string;
|
15
16
|
}
|
16
|
-
export declare class EditApplicationDialogComponent implements OnInit {
|
17
|
+
export declare class EditApplicationDialogComponent implements OnInit, OnDestroy {
|
17
18
|
eacSvc: EaCService;
|
18
19
|
dialogRef: MatDialogRef<EditApplicationDialogComponent>;
|
19
20
|
data: ApplicationDialogData;
|
@@ -22,8 +23,10 @@ export declare class EditApplicationDialogComponent implements OnInit {
|
|
22
23
|
get ApplicationFormGroup(): FormGroup;
|
23
24
|
ErrorMessage: string;
|
24
25
|
State: ApplicationsFlowState;
|
26
|
+
StateSub: Subscription;
|
25
27
|
constructor(eacSvc: EaCService, dialogRef: MatDialogRef<EditApplicationDialogComponent>, data: ApplicationDialogData, snackBar: MatSnackBar);
|
26
28
|
ngOnInit(): void;
|
29
|
+
ngOnDestroy(): void;
|
27
30
|
CloseDialog(): void;
|
28
31
|
HandleSaveApplicationEvent(event: Status): void;
|
29
32
|
SaveApplication(): void;
|
@@ -1,9 +1,10 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
2
2
|
import { FormGroup } from '@angular/forms';
|
3
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
4
4
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
5
5
|
import { Status } from '@lcu/common';
|
6
6
|
import { EaCProjectAsCode } from '@semanticjs/common';
|
7
|
+
import { Subscription } from 'rxjs';
|
7
8
|
import { EditProjectFormComponent } from '../../controls/edit-project-form/edit-project-form.component';
|
8
9
|
import { EaCService } from '../../services/eac.service';
|
9
10
|
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
@@ -11,7 +12,7 @@ import * as i0 from "@angular/core";
|
|
11
12
|
export interface ProjectDialogData {
|
12
13
|
projectLookup: string;
|
13
14
|
}
|
14
|
-
export declare class EditProjectDialogComponent implements OnInit {
|
15
|
+
export declare class EditProjectDialogComponent implements OnInit, OnDestroy {
|
15
16
|
eacSvc: EaCService;
|
16
17
|
dialogRef: MatDialogRef<EditProjectDialogComponent>;
|
17
18
|
data: ProjectDialogData;
|
@@ -21,8 +22,10 @@ export declare class EditProjectDialogComponent implements OnInit {
|
|
21
22
|
ErrorMessage: string;
|
22
23
|
Project: EaCProjectAsCode;
|
23
24
|
State: ApplicationsFlowState;
|
25
|
+
StateSub: Subscription;
|
24
26
|
constructor(eacSvc: EaCService, dialogRef: MatDialogRef<EditProjectDialogComponent>, data: ProjectDialogData, snackBar: MatSnackBar);
|
25
27
|
ngOnInit(): void;
|
28
|
+
ngOnDestroy(): void;
|
26
29
|
CloseDialog(): void;
|
27
30
|
HandleSaveProjectEvent(event: Status): void;
|
28
31
|
SaveProject(): void;
|
@@ -1,10 +1,11 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
2
2
|
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
3
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
4
4
|
import { MatSelectChange } from '@angular/material/select';
|
5
5
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
6
6
|
import { AngularEditorConfig } from '@kolkov/angular-editor';
|
7
7
|
import { EaCEnvironmentAsCode, EaCSourceControl } from '@semanticjs/common';
|
8
|
+
import { Subscription } from 'rxjs';
|
8
9
|
import { ApplicationsFlowService } from '../../services/applications-flow.service';
|
9
10
|
import { EaCService } from '../../services/eac.service';
|
10
11
|
import { ApplicationsFlowState, GitHubBranch, GitHubOrganization, GitHubRepository } from '../../state/applications-flow.state';
|
@@ -13,7 +14,7 @@ export interface FeedHeaderDialogData {
|
|
13
14
|
dialogTitle: string;
|
14
15
|
type: string;
|
15
16
|
}
|
16
|
-
export declare class FeedHeaderDialogComponent implements OnInit {
|
17
|
+
export declare class FeedHeaderDialogComponent implements OnInit, OnDestroy {
|
17
18
|
protected appsFlowSvc: ApplicationsFlowService;
|
18
19
|
protected eacSvc: EaCService;
|
19
20
|
protected formBldr: FormBuilder;
|
@@ -49,8 +50,10 @@ export declare class FeedHeaderDialogComponent implements OnInit {
|
|
49
50
|
};
|
50
51
|
SlicesCount: number;
|
51
52
|
State: ApplicationsFlowState;
|
53
|
+
StateSub: Subscription;
|
52
54
|
constructor(appsFlowSvc: ApplicationsFlowService, eacSvc: EaCService, formBldr: FormBuilder, dialogRef: MatDialogRef<FeedHeaderDialogComponent>, data: FeedHeaderDialogData, snackBar: MatSnackBar);
|
53
55
|
ngOnInit(): void;
|
56
|
+
ngOnDestroy(): void;
|
54
57
|
CloseDialog(): void;
|
55
58
|
HandleAction(): void;
|
56
59
|
PullRequestSourceControlChanged(event: MatSelectChange): void;
|
@@ -1,8 +1,9 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
2
2
|
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 { EaCApplicationAsCode, EaCEnvironmentAsCode, EaCSourceControl } from '@semanticjs/common';
|
6
|
+
import { Subscription } from 'rxjs';
|
6
7
|
import { EditApplicationFormComponent } from '../../controls/edit-application-form/edit-application-form.component';
|
7
8
|
import { ProcessorDetailsFormComponent } from '../../controls/processor-details-form/processor-details-form.component';
|
8
9
|
import { EaCService } from '../../services/eac.service';
|
@@ -13,7 +14,7 @@ export interface NewApplicationDialogData {
|
|
13
14
|
projectLookup: string;
|
14
15
|
currentRoute: string;
|
15
16
|
}
|
16
|
-
export declare class NewApplicationDialogComponent implements OnInit {
|
17
|
+
export declare class NewApplicationDialogComponent implements OnInit, OnDestroy {
|
17
18
|
protected eacSvc: EaCService;
|
18
19
|
dialogRef: MatDialogRef<NewApplicationDialogComponent>;
|
19
20
|
data: NewApplicationDialogData;
|
@@ -30,8 +31,10 @@ export declare class NewApplicationDialogComponent implements OnInit {
|
|
30
31
|
};
|
31
32
|
SourceControlLookups: Array<string>;
|
32
33
|
State: ApplicationsFlowState;
|
34
|
+
StateSub: Subscription;
|
33
35
|
constructor(eacSvc: EaCService, dialogRef: MatDialogRef<NewApplicationDialogComponent>, data: NewApplicationDialogData, snackBar: MatSnackBar);
|
34
36
|
ngOnInit(): void;
|
37
|
+
ngOnDestroy(): void;
|
35
38
|
CloseDialog(): void;
|
36
39
|
SetupApplication(appLookup: string): void;
|
37
40
|
SaveApplication(): void;
|
@@ -1,9 +1,10 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
2
2
|
import { FormGroup } from '@angular/forms';
|
3
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
4
4
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
5
5
|
import { Status } from '@lcu/common';
|
6
6
|
import { EaCApplicationAsCode, EaCEnvironmentAsCode, EaCSourceControl } from '@semanticjs/common';
|
7
|
+
import { Subscription } from 'rxjs';
|
7
8
|
import { ProcessorDetailsFormComponent } from '../../controls/processor-details-form/processor-details-form.component';
|
8
9
|
import { EaCService } from '../../services/eac.service';
|
9
10
|
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
@@ -13,7 +14,7 @@ export interface ProcessorDetailsDialogData {
|
|
13
14
|
environmentLookup: string;
|
14
15
|
projectLookup: string;
|
15
16
|
}
|
16
|
-
export declare class ProcessorDetailsDialogComponent implements OnInit {
|
17
|
+
export declare class ProcessorDetailsDialogComponent implements OnInit, OnDestroy {
|
17
18
|
protected eacSvc: EaCService;
|
18
19
|
dialogRef: MatDialogRef<ProcessorDetailsDialogComponent>;
|
19
20
|
data: ProcessorDetailsDialogData;
|
@@ -24,12 +25,14 @@ export declare class ProcessorDetailsDialogComponent implements OnInit {
|
|
24
25
|
ErrorMessage: string;
|
25
26
|
Environment: EaCEnvironmentAsCode;
|
26
27
|
State: ApplicationsFlowState;
|
28
|
+
StateSub: Subscription;
|
27
29
|
SourceControls: {
|
28
30
|
[lookup: string]: EaCSourceControl;
|
29
31
|
};
|
30
32
|
SourceControlLookups: Array<string>;
|
31
33
|
constructor(eacSvc: EaCService, dialogRef: MatDialogRef<ProcessorDetailsDialogComponent>, data: ProcessorDetailsDialogData, snackBar: MatSnackBar);
|
32
34
|
ngOnInit(): void;
|
35
|
+
ngOnDestroy(): void;
|
33
36
|
CloseDialog(): void;
|
34
37
|
HandleSaveFormEvent(event: Status): void;
|
35
38
|
SaveProcessorDetails(): void;
|
@@ -1,9 +1,10 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
2
2
|
import { FormGroup } from '@angular/forms';
|
3
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
4
4
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
5
5
|
import { Status } from '@lcu/common';
|
6
6
|
import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
7
|
+
import { Subscription } from 'rxjs';
|
7
8
|
import { DevopsSourceControlFormComponent } from '../../controls/devops-source-control-form/devops-source-control-form.component';
|
8
9
|
import { EaCService } from '../../services/eac.service';
|
9
10
|
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
@@ -14,7 +15,7 @@ export interface SCDialogData {
|
|
14
15
|
scLookup: string;
|
15
16
|
scName: string;
|
16
17
|
}
|
17
|
-
export declare class SourceControlDialogComponent implements OnInit {
|
18
|
+
export declare class SourceControlDialogComponent implements OnInit, OnDestroy {
|
18
19
|
dialogRef: MatDialogRef<SourceControlDialogComponent>;
|
19
20
|
protected eacSvc: EaCService;
|
20
21
|
data: SCDialogData;
|
@@ -23,8 +24,10 @@ export declare class SourceControlDialogComponent implements OnInit {
|
|
23
24
|
get DevOpsSourceControlFormGroup(): FormGroup;
|
24
25
|
ErrorMessage: string;
|
25
26
|
State: ApplicationsFlowState;
|
27
|
+
StateSub: Subscription;
|
26
28
|
constructor(dialogRef: MatDialogRef<SourceControlDialogComponent>, eacSvc: EaCService, data: SCDialogData, snackBar: MatSnackBar);
|
27
29
|
ngOnInit(): void;
|
30
|
+
ngOnDestroy(): void;
|
28
31
|
CloseDialog(): void;
|
29
32
|
DeleteSourceControl(): void;
|
30
33
|
HandleSaveStatusEvent(event: Status): void;
|
@@ -1,9 +1,10 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
2
2
|
import { AbstractControl } from '@angular/forms';
|
3
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
4
4
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
5
5
|
import { Status } from '@lcu/common';
|
6
6
|
import { EaCApplicationAsCode } from '@semanticjs/common';
|
7
|
+
import { Subscription } from 'rxjs';
|
7
8
|
import { StateConfigFormComponent } from '../../controls/state-config-form/state-config-form.component';
|
8
9
|
import { EaCService } from '../../services/eac.service';
|
9
10
|
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
@@ -12,7 +13,7 @@ export interface StateConfigDialogData {
|
|
12
13
|
appLookup: string;
|
13
14
|
config: string;
|
14
15
|
}
|
15
|
-
export declare class StateConfigDialogComponent implements OnInit {
|
16
|
+
export declare class StateConfigDialogComponent implements OnInit, OnDestroy {
|
16
17
|
protected eacSvc: EaCService;
|
17
18
|
dialogRef: MatDialogRef<StateConfigDialogComponent>;
|
18
19
|
data: StateConfigDialogData;
|
@@ -22,8 +23,10 @@ export declare class StateConfigDialogComponent implements OnInit {
|
|
22
23
|
Application: EaCApplicationAsCode;
|
23
24
|
ErrorMessage: string;
|
24
25
|
State: ApplicationsFlowState;
|
26
|
+
StateSub: Subscription;
|
25
27
|
constructor(eacSvc: EaCService, dialogRef: MatDialogRef<StateConfigDialogComponent>, data: StateConfigDialogData, snackBar: MatSnackBar);
|
26
28
|
ngOnInit(): void;
|
29
|
+
ngOnDestroy(): void;
|
27
30
|
CloseDialog(): void;
|
28
31
|
HandleStatusEvent(res: Status): void;
|
29
32
|
SaveStateConfig(): void;
|
@@ -1,10 +1,13 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
2
2
|
import { MatDialogRef } from '@angular/material/dialog';
|
3
|
+
import { Subscription } from 'rxjs';
|
4
|
+
import { EaCService } from '../../services/eac.service';
|
3
5
|
import { ProjectService } from '../../services/project.service';
|
4
6
|
import { ApplicationsFlowState, LicenseAndBillingResponse } from '../../state/applications-flow.state';
|
5
7
|
import * as i0 from "@angular/core";
|
6
|
-
export declare class UserAccountDialogComponent implements OnInit {
|
8
|
+
export declare class UserAccountDialogComponent implements OnInit, OnDestroy {
|
7
9
|
protected dialogRef: MatDialogRef<UserAccountDialogComponent>;
|
10
|
+
protected eacSvc: EaCService;
|
8
11
|
data: ApplicationsFlowState;
|
9
12
|
protected projectSvc: ProjectService;
|
10
13
|
/**
|
@@ -63,15 +66,17 @@ export declare class UserAccountDialogComponent implements OnInit {
|
|
63
66
|
* Date the user has been rgistered since
|
64
67
|
*/
|
65
68
|
RegisteredSince: Date;
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
+
UserInfo: LicenseAndBillingResponse;
|
70
|
+
State: ApplicationsFlowState;
|
71
|
+
StateSub: Subscription;
|
72
|
+
UserPlan: string;
|
69
73
|
/**
|
70
74
|
* The interval of the plan ie annual or Monthly
|
71
75
|
*/
|
72
|
-
|
73
|
-
constructor(dialogRef: MatDialogRef<UserAccountDialogComponent>, data: ApplicationsFlowState, projectSvc: ProjectService);
|
76
|
+
PlanInterval: string;
|
77
|
+
constructor(dialogRef: MatDialogRef<UserAccountDialogComponent>, eacSvc: EaCService, data: ApplicationsFlowState, projectSvc: ProjectService);
|
74
78
|
ngOnInit(): void;
|
79
|
+
ngOnDestroy(): void;
|
75
80
|
ChangePassword(): void;
|
76
81
|
/**
|
77
82
|
* Logs out the user
|
@@ -50,7 +50,7 @@ export declare class ProjectCardComponent implements OnInit {
|
|
50
50
|
ngOnInit(): void;
|
51
51
|
ngOnChanges(): void;
|
52
52
|
RouteToPath(path: string): void;
|
53
|
-
BuildTree():
|
53
|
+
BuildTree(): Array<TreeNode>;
|
54
54
|
HandleRoute(route: string): void;
|
55
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProjectCardComponent, never>;
|
56
56
|
static ɵcmp: i0.ɵɵComponentDeclaration<ProjectCardComponent, "lcu-project-card", never, { "ApplicationsBank": "applications-bank"; "Loading": "loading"; "ProjectLookups": "project-lookups"; "Projects": "projects"; }, {}, never, never>;
|