asksuite-citrus 1.14.10 → 1.14.11-beta.0
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.
@@ -23,13 +23,14 @@ export declare class PhoneDdiComponent implements OnInit, ControlValueAccessor {
|
|
23
23
|
onChange: (value?: any) => void;
|
24
24
|
onTouch: () => void;
|
25
25
|
protected closed: boolean;
|
26
|
-
protected
|
26
|
+
protected inputValue: string;
|
27
27
|
protected searchFieldControl: FormControl<string | null>;
|
28
28
|
protected filteredOptions: any[];
|
29
29
|
protected isValid: boolean;
|
30
30
|
private _overlayRef;
|
31
31
|
private _portal;
|
32
32
|
private _destroy;
|
33
|
+
private _ngZone;
|
33
34
|
private scrollSub?;
|
34
35
|
constructor(overlay: Overlay, viewContainerRef: ViewContainerRef, countryFlagService: CountryFlagService);
|
35
36
|
ngOnInit(): void;
|
@@ -48,6 +49,7 @@ export declare class PhoneDdiComponent implements OnInit, ControlValueAccessor {
|
|
48
49
|
private addAvailableFlags;
|
49
50
|
private initSelectedFlag;
|
50
51
|
private handleInputChange;
|
52
|
+
handlePhoneChange(event: any): void;
|
51
53
|
private getOverlayConfig;
|
52
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneDdiComponent, never>;
|
53
55
|
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneDdiComponent, "ask-phone-ddi", never, { "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "onChangeFlag": "onChangeFlag"; }, never, never, false, never>;
|