ecabs-components 0.0.8 → 0.0.9
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/esm2020/lib/ecabs-phone/ecabs-phone.component.mjs +9 -9
- package/fesm2015/ecabs-components.mjs +8 -10
- package/fesm2015/ecabs-components.mjs.map +1 -1
- package/fesm2020/ecabs-components.mjs +8 -8
- package/fesm2020/ecabs-components.mjs.map +1 -1
- package/lib/ecabs-phone/ecabs-phone.component.d.ts +3 -2
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { AfterViewInit, Injector, OnDestroy } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor, UntypedFormGroup } from '@angular/forms';
|
|
3
3
|
import { NgxMatIntlTelInputComponent } from 'ngx-mat-intl-tel-input';
|
|
4
4
|
import ElementBaseComponent from '../base/element-base';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class EcabsPhoneComponent extends ElementBaseComponent implements ControlValueAccessor, AfterViewInit, OnDestroy {
|
|
6
|
+
export declare class EcabsPhoneComponent extends ElementBaseComponent implements ControlValueAccessor, AfterViewInit, OnDestroy, OnInit {
|
|
7
7
|
private readonly injector;
|
|
8
8
|
preferredCountries: string[];
|
|
9
9
|
enablePlaceholder: boolean;
|
|
@@ -18,6 +18,7 @@ export declare class EcabsPhoneComponent extends ElementBaseComponent implements
|
|
|
18
18
|
set value(val: any);
|
|
19
19
|
constructor(injector: Injector);
|
|
20
20
|
onInput(event: KeyboardEvent): void;
|
|
21
|
+
ngOnInit(): void;
|
|
21
22
|
ngAfterViewInit(): void;
|
|
22
23
|
onChange: any;
|
|
23
24
|
onTouch: any;
|