ui-core-abv 0.3.28 → 0.3.29
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.
|
@@ -44,6 +44,8 @@ export declare class UicPhoneInputComponent extends base implements OnChanges, O
|
|
|
44
44
|
selectedCountry: PhoneCountry;
|
|
45
45
|
filteredCountries: PhoneCountry[];
|
|
46
46
|
readonly dropdownId: string;
|
|
47
|
+
private pendingNormalizedValue;
|
|
48
|
+
private changeRegistered;
|
|
47
49
|
private _countries;
|
|
48
50
|
private readonly host;
|
|
49
51
|
private readonly overlay;
|
|
@@ -54,6 +56,7 @@ export declare class UicPhoneInputComponent extends base implements OnChanges, O
|
|
|
54
56
|
ngOnChanges(changes: SimpleChanges): void;
|
|
55
57
|
ngOnDestroy(): void;
|
|
56
58
|
writeValue(value: PhoneInputModel | string): void;
|
|
59
|
+
registerOnChange(fn: any): void;
|
|
57
60
|
toggleDropdown(): void;
|
|
58
61
|
selectCountry(country: PhoneCountry): void;
|
|
59
62
|
onNumberInput(event: Event): void;
|