valtech-components 2.0.372 → 2.0.374
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/esm2022/lib/components/molecules/hint/hint.component.mjs +30 -5
- package/esm2022/lib/components/molecules/number-from-to/number-from-to.component.mjs +53 -9
- package/esm2022/lib/components/organisms/form/form.component.mjs +2 -1
- package/fesm2022/valtech-components.mjs +82 -11
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/molecules/hint/hint.component.d.ts +1 -0
- package/lib/components/molecules/number-from-to/number-from-to.component.d.ts +3 -0
- package/package.json +1 -1
|
@@ -11,6 +11,7 @@ export declare class HintComponent implements OnInit {
|
|
|
11
11
|
props: InputMetadata;
|
|
12
12
|
constructor();
|
|
13
13
|
ngOnInit(): void;
|
|
14
|
+
get shouldShowErrors(): boolean;
|
|
14
15
|
get Errors(): string[];
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<HintComponent, never>;
|
|
16
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<HintComponent, "val-hint", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -6,6 +6,9 @@ export declare class NumberFromToComponent implements OnInit {
|
|
|
6
6
|
props: InputMetadata;
|
|
7
7
|
constructor();
|
|
8
8
|
ngOnInit(): void;
|
|
9
|
+
private applyDefaultValues;
|
|
10
|
+
private resolveDefaultValue;
|
|
11
|
+
private parseValue;
|
|
9
12
|
get fromControl(): FormControl;
|
|
10
13
|
get toControl(): FormControl;
|
|
11
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumberFromToComponent, never>;
|