File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,14 @@ import { NgClass } from "@angular/common";
24
24
} )
25
25
export class IntlTelInputComponent implements AfterViewInit {
26
26
27
- cssClass = model < string > ( ) ;
28
- label = model < string > ( ) ;
29
- labelCssClass = model < string > ( ) ;
30
- name = model < string > ( 'intl-tel-input-name' ) ;
31
- options = model < IntlTelInputOptions > ( { } ) ;
32
- required = model < boolean > ( false ) ;
33
- E164PhoneNumber = model < string | null > ( ) ;
34
- @ViewChild ( 'intlTelInput' ) private _inputElement ! : ElementRef ;
27
+ readonly cssClass = model < string > ( ) ;
28
+ readonly label = model < string > ( ) ;
29
+ readonly labelCssClass = model < string > ( ) ;
30
+ readonly name = model < string > ( 'intl-tel-input-name' ) ;
31
+ readonly options = model < IntlTelInputOptions > ( { } ) ;
32
+ readonly required = model < boolean > ( false ) ;
33
+ readonly E164PhoneNumber = model < string | null > ( ) ;
34
+ @ViewChild ( 'intlTelInput' ) private readonly _inputElement ! : ElementRef ;
35
35
private _phoneNumber ! : string ;
36
36
private _intlTelInput ! : IntlTelInput ;
37
37
You can’t perform that action at this time.
0 commit comments