@gipisistemas/ng-core 1.1.8 → 1.1.9
Sign up to get free protection for your applications and to get access to all the features.
- package/bundles/gipisistemas-ng-core.umd.js +223 -41
- package/bundles/gipisistemas-ng-core.umd.js.map +1 -1
- package/bundles/gipisistemas-ng-core.umd.min.js +8 -8
- package/bundles/gipisistemas-ng-core.umd.min.js.map +1 -1
- package/esm2015/core/utils/phone.util.js +12 -7
- package/esm2015/gipi-components.js +2 -1
- package/esm2015/shared/gipi-components/datepicker/datepicker/datepicker.component.js +2 -2
- package/esm2015/shared/gipi-components/input-phone/input-phone.component.js +175 -0
- package/esm2015/shared/shared.module.js +3 -1
- package/esm5/core/utils/phone.util.js +12 -7
- package/esm5/gipi-components.js +2 -1
- package/esm5/shared/gipi-components/datepicker/datepicker/datepicker.component.js +2 -2
- package/esm5/shared/gipi-components/input-phone/input-phone.component.js +182 -0
- package/esm5/shared/shared.module.js +3 -1
- package/fesm2015/gipisistemas-ng-core.js +219 -45
- package/fesm2015/gipisistemas-ng-core.js.map +1 -1
- package/fesm5/gipisistemas-ng-core.js +225 -44
- package/fesm5/gipisistemas-ng-core.js.map +1 -1
- package/gipi-components.d.ts +1 -0
- package/gipisistemas-ng-core.metadata.json +1 -1
- package/package.json +1 -1
- package/shared/gipi-components/input-phone/input-phone.component.d.ts +39 -0
package/package.json
CHANGED
@@ -0,0 +1,39 @@
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, OnInit } from '@angular/core';
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
3
|
+
import { BehaviorSubject } from 'rxjs';
|
4
|
+
export declare class GIPIInputPhoneComponent implements ControlValueAccessor, OnInit {
|
5
|
+
elementRef: ElementRef;
|
6
|
+
private _changeDetectorRef;
|
7
|
+
_elementRef: ElementRef;
|
8
|
+
private _name;
|
9
|
+
private _inputEnter$;
|
10
|
+
maskPhone$: BehaviorSubject<string>;
|
11
|
+
id: number | string;
|
12
|
+
name: string;
|
13
|
+
label: string;
|
14
|
+
tooltip: string;
|
15
|
+
placeholder: string;
|
16
|
+
disabled: boolean;
|
17
|
+
loading: boolean;
|
18
|
+
required: boolean;
|
19
|
+
/** Indica se é um número estrangeiro */
|
20
|
+
foreign: boolean;
|
21
|
+
appearance: string;
|
22
|
+
private _value;
|
23
|
+
get value(): string;
|
24
|
+
set value(value: string);
|
25
|
+
focus: EventEmitter<FocusEvent>;
|
26
|
+
blur: EventEmitter<FocusEvent>;
|
27
|
+
onChange: any;
|
28
|
+
onTouch: any;
|
29
|
+
constructor(elementRef: ElementRef, _changeDetectorRef: ChangeDetectorRef);
|
30
|
+
ngOnInit(): void;
|
31
|
+
writeValue(value: string): void;
|
32
|
+
registerOnChange(fn: any): void;
|
33
|
+
registerOnTouched(fn: any): void;
|
34
|
+
setDisabledState?(isDisabled: boolean): void;
|
35
|
+
onFocus(event: FocusEvent): void;
|
36
|
+
onBlur(event: FocusEvent): void;
|
37
|
+
onInputEnter(): void;
|
38
|
+
onInputExit(): void;
|
39
|
+
}
|