@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gipisistemas/ng-core",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "~8.2.3",
6
6
  "@angular/core": "~8.2.3",
@@ -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
+ }