@lowcodeunit/applications-flow-common 1.37.127-CustomDomainFormValidation → 1.37.128-CustomDomainFormValidation
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/projects/controls/tabs/domains/domains.component.mjs +13 -3
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +13 -3
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +13 -3
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/elements/projects/controls/tabs/domains/domains.component.d.ts +7 -1
- package/package.json +1 -1
@@ -1,13 +1,19 @@
|
|
1
1
|
import { FormsService } from './../../../../../services/forms.service';
|
2
2
|
import { CardFormConfigModel } from './../../../../../models/card-form-config.model';
|
3
3
|
import { OnInit } from '@angular/core';
|
4
|
-
import { AbstractControl, FormGroup } from '@angular/forms';
|
4
|
+
import { AbstractControl, FormControl, FormGroup, FormGroupDirective, NgForm } from '@angular/forms';
|
5
5
|
import { EaCService } from '../../../../../services/eac.service';
|
6
6
|
import { EaCHost, EaCProjectAsCode } from '@semanticjs/common';
|
7
|
+
import { ErrorStateMatcher } from '@angular/material/core';
|
7
8
|
import * as i0 from "@angular/core";
|
9
|
+
/** Error when invalid control is dirty, touched, or submitted. */
|
10
|
+
export declare class URLErrorStateMatcher implements ErrorStateMatcher {
|
11
|
+
isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean;
|
12
|
+
}
|
8
13
|
export declare class DomainsComponent implements OnInit {
|
9
14
|
protected formsService: FormsService;
|
10
15
|
protected eacSvc: EaCService;
|
16
|
+
matcher: URLErrorStateMatcher;
|
11
17
|
/**
|
12
18
|
* Card / Form Config
|
13
19
|
*/
|