@lowcodeunit/applications-flow-common 1.36.14-lets-get-social-ish → 1.36.17-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,13 +1,18 @@
1
- import { OnInit } from '@angular/core';
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
3
- import { EaCDataToken } from '@semanticjs/common';
3
+ import { Status } from '@lcu/common';
4
+ import { EaCApplicationAsCode, EaCDataToken } from '@semanticjs/common';
4
5
  import { EaCService } from '../../services/eac.service';
6
+ import { ApplicationsFlowState } from '../../state/applications-flow.state';
5
7
  import * as i0 from "@angular/core";
6
8
  export declare class StateConfigFormComponent implements OnInit {
7
9
  protected eacSvc: EaCService;
8
10
  formbldr: FormBuilder;
9
11
  AppLookup: string;
10
12
  Config: EaCDataToken;
13
+ StatusEvent: EventEmitter<Status>;
14
+ get Application(): EaCApplicationAsCode;
15
+ get State(): ApplicationsFlowState;
11
16
  get StateConfigNameFormControl(): AbstractControl;
12
17
  get StateConfigDescriptionFormControl(): AbstractControl;
13
18
  get StateConfigValueFormControl(): AbstractControl;
@@ -17,5 +22,5 @@ export declare class StateConfigFormComponent implements OnInit {
17
22
  SaveStateConfig(): void;
18
23
  protected buildForm(): void;
19
24
  static ɵfac: i0.ɵɵFactoryDeclaration<StateConfigFormComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<StateConfigFormComponent, "lcu-state-config-form", never, { "AppLookup": "app-lookup"; "Config": "config"; }, {}, never, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<StateConfigFormComponent, "lcu-state-config-form", never, { "AppLookup": "app-lookup"; "Config": "config"; }, { "StatusEvent": "status-event"; }, never, never>;
21
26
  }
@@ -2,6 +2,7 @@ import { 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
+ import { Status } from '@lcu/common';
5
6
  import { EaCApplicationAsCode } from '@semanticjs/common';
6
7
  import { StateConfigFormComponent } from '../../controls/state-config-form/state-config-form.component';
7
8
  import { EaCService } from '../../services/eac.service';
@@ -20,9 +21,11 @@ export declare class StateConfigDialogComponent implements OnInit {
20
21
  get Application(): EaCApplicationAsCode;
21
22
  get State(): ApplicationsFlowState;
22
23
  get StateConfigFormControl(): AbstractControl;
24
+ ErrorMessage: string;
23
25
  constructor(eacSvc: EaCService, dialogRef: MatDialogRef<StateConfigDialogComponent>, data: StateConfigDialogData, snackBar: MatSnackBar);
24
26
  ngOnInit(): void;
25
27
  CloseDialog(): void;
28
+ HandleStatusEvent(res: Status): void;
26
29
  SaveStateConfig(): void;
27
30
  static ɵfac: i0.ɵɵFactoryDeclaration<StateConfigDialogComponent, never>;
28
31
  static ɵcmp: i0.ɵɵComponentDeclaration<StateConfigDialogComponent, "lcu-state-config-dialog", never, {}, {}, never, never>;
@@ -9,8 +9,6 @@ import * as i0 from "@angular/core";
9
9
  export declare class SaveApplicationAsCodeEventRequest {
10
10
  Application?: EaCApplicationAsCode;
11
11
  ApplicationLookup?: string;
12
- DataToken?: EaCDataToken;
13
- DataTokenLookup?: string;
14
12
  ProjectLookup?: string;
15
13
  }
16
14
  export declare class SaveDFSModifierEventRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowcodeunit/applications-flow-common",
3
- "version": "1.36.14-lets-get-social-ish",
3
+ "version": "1.36.17-lets-get-social-ish",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },