ca-components 1.0.85 → 1.0.86
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.
|
@@ -5,10 +5,12 @@ import { InputChangeValue } from '../utils';
|
|
|
5
5
|
import { LabelColor } from '../models';
|
|
6
6
|
import { InputCommandsType, InputStringEnum } from '../enums';
|
|
7
7
|
import { DropdownTemplateTypeEnum } from '../../ca-input-dropdown/enums';
|
|
8
|
+
import { NgxMaskService } from 'ngx-mask';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class InputTestComponent implements ControlValueAccessor, AfterViewInit {
|
|
10
11
|
ngControl: NgControl;
|
|
11
12
|
chdet: ChangeDetectorRef;
|
|
13
|
+
private maskApplier;
|
|
12
14
|
inputValue: InputChangeValue;
|
|
13
15
|
_inputConfig: ICaInput;
|
|
14
16
|
inputElement: ElementRef;
|
|
@@ -27,7 +29,7 @@ export declare class InputTestComponent implements ControlValueAccessor, AfterVi
|
|
|
27
29
|
dropdownTemplateTypeEnum: typeof DropdownTemplateTypeEnum;
|
|
28
30
|
isTogglePassword: boolean;
|
|
29
31
|
get inputConfig(): ICaInput;
|
|
30
|
-
constructor(ngControl: NgControl, chdet: ChangeDetectorRef);
|
|
32
|
+
constructor(ngControl: NgControl, chdet: ChangeDetectorRef, maskApplier: NgxMaskService);
|
|
31
33
|
ngAfterViewInit(): void;
|
|
32
34
|
get control(): import("@angular/forms").AbstractControl<any, any> | null;
|
|
33
35
|
registerOnChange(fn: any): void;
|
|
@@ -45,6 +47,6 @@ export declare class InputTestComponent implements ControlValueAccessor, AfterVi
|
|
|
45
47
|
handleCapsLock(status: boolean): void;
|
|
46
48
|
identify(index: number): number;
|
|
47
49
|
onPlaceholderIconEvent(event: Event): void;
|
|
48
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputTestComponent, [{ optional: true; self: true; }, null]>;
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTestComponent, [{ optional: true; self: true; }, null, null]>;
|
|
49
51
|
static ɵcmp: i0.ɵɵComponentDeclaration<InputTestComponent, "ca-input-test", never, { "selectedDropdownLabelColor": { "alias": "selectedDropdownLabelColor"; "required": false; }; "template": { "alias": "template"; "required": false; }; "incorrectValue": { "alias": "incorrectValue"; "required": false; }; "inputConfig": { "alias": "inputConfig"; "required": false; }; }, {}, never, never, true, never>;
|
|
50
52
|
}
|