@lowcodeunit/applications-flow-common 1.33.291-lets-get-social-ish → 1.33.294-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.
@@ -1,4 +1,5 @@
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';
@@ -25,11 +26,13 @@ export declare class ProcessorDetailsDialogComponent implements OnInit {
25
26
  };
26
27
  get SourceControlLookups(): Array<string>;
27
28
  get State(): ApplicationsFlowState;
29
+ get ProcessorDetailsFormGroup(): FormGroup;
28
30
  ErrorMessage: string;
29
31
  constructor(eacSvc: EaCService, dialogRef: MatDialogRef<ProcessorDetailsDialogComponent>, data: ProcessorDetailsDialogData, snackBar: MatSnackBar);
30
32
  ngOnInit(): void;
31
33
  CloseDialog(): void;
32
34
  HandleSaveFormEvent(event: Status): void;
35
+ SaveProcessorDetails(): void;
33
36
  static ɵfac: i0.ɵɵFactoryDeclaration<ProcessorDetailsDialogComponent, never>;
34
37
  static ɵcmp: i0.ɵɵComponentDeclaration<ProcessorDetailsDialogComponent, "lcu-processor-details-dialog", never, {}, {}, never, never>;
35
38
  }
@@ -1,16 +1,25 @@
1
1
  import { OnInit } from '@angular/core';
2
+ import { MatDialog } from '@angular/material/dialog';
3
+ import { EaCService } from '../../services/eac.service';
4
+ import { ApplicationsFlowState } from '../../state/applications-flow.state';
2
5
  import * as i0 from "@angular/core";
3
6
  export declare class GhControlComponent implements OnInit {
7
+ protected eacSvc: EaCService;
8
+ protected dialog: MatDialog;
9
+ get ActiveEnvironmentLookup(): string;
10
+ get State(): ApplicationsFlowState;
4
11
  InputLabel: string;
12
+ SkeletonEffect: string;
5
13
  protected selectedBtn: string;
6
14
  value: string;
7
- constructor();
15
+ constructor(eacSvc: EaCService, dialog: MatDialog);
8
16
  ngOnInit(): void;
9
17
  ngAfterViewInit(): void;
10
18
  CreateFeatureBranch(): void;
11
19
  OpenIssue(): void;
12
20
  CreatePullRequest(): void;
13
- OpenMoreInfo(): void;
21
+ CreateNewApp(): void;
22
+ RouteToPath(path: string): void;
14
23
  Submit(): void;
15
24
  protected addSelectBtn(): void;
16
25
  protected removeSelectedBtn(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowcodeunit/applications-flow-common",
3
- "version": "1.33.291-lets-get-social-ish",
3
+ "version": "1.33.294-lets-get-social-ish",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },