@gipisistemas/ng-core 1.1.12 → 1.1.14
Sign up to get free protection for your applications and to get access to all the features.
- package/assets/styles/styles.scss +4 -0
- package/bundles/gipisistemas-ng-core.umd.js +128 -21
- 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/gipisistemas-ng-core.js +8 -7
- package/esm2015/shared/components/button/button.component.js +2 -2
- package/esm2015/shared/components/icon/icon.component.js +2 -4
- package/esm2015/shared/components/input/input.component.js +12 -3
- package/esm2015/shared/directives/input-trim.directive.js +70 -0
- package/esm2015/shared/directives/lower-case.directive.js +1 -1
- package/esm2015/shared/directives/phone-mask.directive.js +1 -1
- package/esm2015/shared/directives/space-drop.directive.js +1 -1
- package/esm2015/shared/directives/upper-case.directive.js +1 -1
- package/esm2015/shared/gipi-components/button/button.component.js +2 -2
- package/esm2015/shared/gipi-components/form-field/form-field.component.js +8 -3
- package/esm2015/shared/gipi-components/input-select-enum/input-select-enum.component.js +20 -6
- package/esm2015/shared/gipi-components/split-button/split-button.component.js +2 -2
- package/esm2015/shared/gipi-components/tabs/tab-group/tab-group.component.js +5 -2
- package/esm2015/shared/shared.module.js +3 -1
- package/esm5/gipisistemas-ng-core.js +8 -7
- package/esm5/shared/components/button/button.component.js +2 -2
- package/esm5/shared/components/icon/icon.component.js +2 -4
- package/esm5/shared/components/input/input.component.js +16 -3
- package/esm5/shared/directives/input-trim.directive.js +71 -0
- package/esm5/shared/directives/lower-case.directive.js +1 -1
- package/esm5/shared/directives/phone-mask.directive.js +1 -1
- package/esm5/shared/directives/space-drop.directive.js +1 -1
- package/esm5/shared/directives/upper-case.directive.js +1 -1
- package/esm5/shared/gipi-components/button/button.component.js +2 -2
- package/esm5/shared/gipi-components/form-field/form-field.component.js +8 -3
- package/esm5/shared/gipi-components/input-select-enum/input-select-enum.component.js +25 -6
- package/esm5/shared/gipi-components/split-button/split-button.component.js +2 -2
- package/esm5/shared/gipi-components/tabs/tab-group/tab-group.component.js +5 -2
- package/esm5/shared/shared.module.js +3 -1
- package/fesm2015/gipisistemas-ng-core.js +112 -16
- package/fesm2015/gipisistemas-ng-core.js.map +1 -1
- package/fesm5/gipisistemas-ng-core.js +122 -16
- package/fesm5/gipisistemas-ng-core.js.map +1 -1
- package/gipisistemas-ng-core.d.ts +7 -6
- package/gipisistemas-ng-core.metadata.json +1 -1
- package/package.json +1 -1
- package/shared/components/icon/icon.component.d.ts +1 -3
- package/shared/components/input/input.component.d.ts +3 -1
- package/shared/directives/input-trim.directive.d.ts +9 -0
- package/shared/gipi-components/form-field/form-field.component.d.ts +1 -0
- package/shared/gipi-components/input-select-enum/input-select-enum.component.d.ts +4 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, OnInit, TemplateRef } from '@angular/core';
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
3
|
-
import { BehaviorSubject } from 'rxjs';
|
3
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
4
4
|
export declare class InputComponent implements ControlValueAccessor, OnInit {
|
5
5
|
elementRef: ElementRef;
|
6
6
|
private _changeDetectorRef;
|
@@ -33,10 +33,12 @@ export declare class InputComponent implements ControlValueAccessor, OnInit {
|
|
33
33
|
dropSpecialCharacters: boolean;
|
34
34
|
upperCase: boolean;
|
35
35
|
lowerCase: boolean;
|
36
|
+
inputTrim: boolean;
|
36
37
|
patterns: any;
|
37
38
|
spaceDrop: boolean;
|
38
39
|
focus: EventEmitter<Event>;
|
39
40
|
blur: EventEmitter<Event>;
|
41
|
+
get isPassword$(): Observable<boolean>;
|
40
42
|
constructor(elementRef: ElementRef, _changeDetectorRef: ChangeDetectorRef);
|
41
43
|
ngOnInit(): void;
|
42
44
|
onChange: any;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { NgControl } from '@angular/forms';
|
2
|
+
export declare class InputTrimDirective {
|
3
|
+
ngControl: NgControl;
|
4
|
+
enabledInputTrim: boolean;
|
5
|
+
constructor(ngControl: NgControl);
|
6
|
+
keydown(event: any): void;
|
7
|
+
onInput(event: any): void;
|
8
|
+
onBlur(event: any): void;
|
9
|
+
}
|
@@ -13,8 +13,9 @@ export declare class GIPIInputSelectEnumComponent implements OnInit, OnDestroy,
|
|
13
13
|
popoverTrigger: GIPIPopoverTrigger;
|
14
14
|
id: string;
|
15
15
|
name: string;
|
16
|
-
ariaLabel: string;
|
17
16
|
label: string;
|
17
|
+
tooltip: string;
|
18
|
+
ariaLabel: string;
|
18
19
|
placeholder: string;
|
19
20
|
required: boolean;
|
20
21
|
private _disabled;
|
@@ -43,7 +44,8 @@ export declare class GIPIInputSelectEnumComponent implements OnInit, OnDestroy,
|
|
43
44
|
onFocus: EventEmitter<Event>;
|
44
45
|
onBlur: EventEmitter<Event>;
|
45
46
|
onOpenedChange: EventEmitter<boolean>;
|
46
|
-
get
|
47
|
+
get optionSelectedValue(): string;
|
48
|
+
get optionSelectedKey(): string;
|
47
49
|
get scrollViewportHeight(): number;
|
48
50
|
constructor(elementRef: ElementRef, _changeDetectorRef: ChangeDetectorRef);
|
49
51
|
ngOnInit(): void;
|