@c10t/nice-component-library 0.0.21-f → 0.0.21-g
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,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter, Injector, OnInit } from '@angular/core';
|
|
2
2
|
import { AbstractControl, ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
3
|
import { ValidatorService } from '../services/validator.service';
|
|
4
4
|
import { NiceComponentLibraryConfig } from '../models/nice-component-library.config';
|
|
5
5
|
import { AlignEnum } from '../enums/align.enum';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class CvaInputComponent implements ControlValueAccessor, OnInit
|
|
7
|
+
export declare class CvaInputComponent implements ControlValueAccessor, OnInit {
|
|
8
8
|
private injector;
|
|
9
9
|
label: string;
|
|
10
10
|
name: string;
|
|
@@ -30,13 +30,12 @@ export declare class CvaInputComponent implements ControlValueAccessor, OnInit,
|
|
|
30
30
|
patternFilter: string;
|
|
31
31
|
isFormControl: boolean;
|
|
32
32
|
formatFunc: any;
|
|
33
|
-
|
|
33
|
+
formControl: AbstractControl | undefined;
|
|
34
34
|
config: NiceComponentLibraryConfig;
|
|
35
35
|
constructor(injector: Injector, ngControl: NgControl);
|
|
36
36
|
get NsValidator(): typeof ValidatorService;
|
|
37
37
|
get textValue(): string;
|
|
38
38
|
set textValue(val: string);
|
|
39
|
-
ngAfterViewInit(): void;
|
|
40
39
|
ngOnInit(): void;
|
|
41
40
|
callValidator(): void;
|
|
42
41
|
propagateChange: (_: any) => void;
|
|
@@ -23,7 +23,7 @@ export declare class CvaLiveSearchingComponent implements ControlValueAccessor,
|
|
|
23
23
|
isFormControl: boolean;
|
|
24
24
|
row?: any;
|
|
25
25
|
columnDef?: string;
|
|
26
|
-
|
|
26
|
+
formControl: AbstractControl | undefined;
|
|
27
27
|
textControl: FormControl<string>;
|
|
28
28
|
filteredOptions: any[];
|
|
29
29
|
selected: any;
|