@stemy/ngx-dynamic-form 19.9.7 → 19.9.8
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.
|
@@ -4,6 +4,6 @@ import { DynamicFormArrayComponent } from "./components/dynamic-form-array/dynam
|
|
|
4
4
|
import { DynamicFormChipsComponent } from "./components/dynamic-form-chips/dynamic-form-chips.component";
|
|
5
5
|
import { DynamicFormTranslationComponent } from "./components/dynamic-form-translation/dynamic-form-translation.component";
|
|
6
6
|
import { DynamicFormAlertComponent } from "./components/dynamic-form-alert/dynamic-form-alert.component";
|
|
7
|
-
export declare const components: (typeof
|
|
7
|
+
export declare const components: (typeof DynamicFormComponent | typeof DynamicFormArrayComponent | typeof DynamicFormChipsComponent | typeof DynamicFormTranslationComponent | typeof DynamicFormAlertComponent)[];
|
|
8
8
|
export declare const directives: Type<any>[];
|
|
9
9
|
export declare const pipes: Type<any>[];
|
|
@@ -7,8 +7,8 @@ export declare function translationValidation(langs?: string[]): ValidatorFn;
|
|
|
7
7
|
export declare function phoneValidation(): ValidatorFn;
|
|
8
8
|
export declare function emailValidation(): ValidatorFn;
|
|
9
9
|
export declare function arrayLengthValidation(min?: number, max?: number): ValidatorFn;
|
|
10
|
-
export declare function minLengthValidation(minLength: number
|
|
11
|
-
export declare function maxLengthValidation(maxLength: number
|
|
12
|
-
export declare function minValueValidation(
|
|
13
|
-
export declare function maxValueValidation(
|
|
10
|
+
export declare function minLengthValidation(minLength: number): ValidatorFn;
|
|
11
|
+
export declare function maxLengthValidation(maxLength: number): ValidatorFn;
|
|
12
|
+
export declare function minValueValidation(): ValidatorFn;
|
|
13
|
+
export declare function maxValueValidation(): ValidatorFn;
|
|
14
14
|
export declare function setFieldMinDate(field: FormFieldConfig, min: Date): void;
|