@lowcodeunit/applications-flow-common 1.37.108-new-project-page → 1.37.111-new-project-page
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/elements/dashboard-toolbar/dashboard-toolbar.component.mjs +3 -3
- package/esm2020/lib/elements/projects/controls/tabs/domains/domains.component.mjs +46 -32
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +47 -32
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +44 -30
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/elements/projects/controls/tabs/domains/domains.component.d.ts +5 -8
- package/package.json +1 -1
@@ -1,11 +1,11 @@
|
|
1
1
|
import { FormsService } from './../../../../../services/forms.service';
|
2
2
|
import { CardFormConfigModel } from './../../../../../models/card-form-config.model';
|
3
|
-
import { OnInit } from '@angular/core';
|
3
|
+
import { OnChanges, OnInit } from '@angular/core';
|
4
4
|
import { AbstractControl, FormGroup } from '@angular/forms';
|
5
5
|
import { EaCService } from '../../../../../services/eac.service';
|
6
6
|
import { EaCHost, EaCProjectAsCode } from '@semanticjs/common';
|
7
7
|
import * as i0 from "@angular/core";
|
8
|
-
export declare class DomainsComponent implements OnInit {
|
8
|
+
export declare class DomainsComponent implements OnInit, OnChanges {
|
9
9
|
protected formsService: FormsService;
|
10
10
|
protected eacSvc: EaCService;
|
11
11
|
/**
|
@@ -20,10 +20,12 @@ export declare class DomainsComponent implements OnInit {
|
|
20
20
|
* Form name
|
21
21
|
*/
|
22
22
|
protected formName: string;
|
23
|
+
Host: EaCHost;
|
23
24
|
/**
|
24
25
|
* When form is dirty, ties into formsService.DisableForms
|
25
26
|
*/
|
26
27
|
IsDirty: boolean;
|
28
|
+
HostDNSInstance: string;
|
27
29
|
/**
|
28
30
|
* Access form control for root directory
|
29
31
|
*/
|
@@ -36,14 +38,9 @@ export declare class DomainsComponent implements OnInit {
|
|
36
38
|
Project: EaCProjectAsCode;
|
37
39
|
ProjectLookup: string;
|
38
40
|
};
|
39
|
-
get Host(): EaCHost;
|
40
|
-
get HostLookup(): string;
|
41
|
-
get HostDNSInstance(): string;
|
42
|
-
get PrimaryHost(): string;
|
43
|
-
get Project(): EaCProjectAsCode;
|
44
|
-
get ProjectLookup(): string;
|
45
41
|
constructor(formsService: FormsService, eacSvc: EaCService);
|
46
42
|
ngOnInit(): void;
|
43
|
+
ngOnChanges(): void;
|
47
44
|
protected config(): void;
|
48
45
|
protected setupForm(): void;
|
49
46
|
protected onChange(): void;
|