@gipisistemas/ng-core 1.1.12 → 1.1.13

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.
Files changed (28) hide show
  1. package/assets/styles/styles.scss +4 -0
  2. package/bundles/gipisistemas-ng-core.umd.js +39 -14
  3. package/bundles/gipisistemas-ng-core.umd.js.map +1 -1
  4. package/bundles/gipisistemas-ng-core.umd.min.js +1 -1
  5. package/bundles/gipisistemas-ng-core.umd.min.js.map +1 -1
  6. package/esm2015/shared/components/button/button.component.js +2 -2
  7. package/esm2015/shared/components/icon/icon.component.js +2 -4
  8. package/esm2015/shared/gipi-components/button/button.component.js +2 -2
  9. package/esm2015/shared/gipi-components/form-field/form-field.component.js +8 -3
  10. package/esm2015/shared/gipi-components/input-select-enum/input-select-enum.component.js +20 -6
  11. package/esm2015/shared/gipi-components/split-button/split-button.component.js +2 -2
  12. package/esm2015/shared/gipi-components/tabs/tab-group/tab-group.component.js +5 -2
  13. package/esm5/shared/components/button/button.component.js +2 -2
  14. package/esm5/shared/components/icon/icon.component.js +2 -4
  15. package/esm5/shared/gipi-components/button/button.component.js +2 -2
  16. package/esm5/shared/gipi-components/form-field/form-field.component.js +8 -3
  17. package/esm5/shared/gipi-components/input-select-enum/input-select-enum.component.js +25 -6
  18. package/esm5/shared/gipi-components/split-button/split-button.component.js +2 -2
  19. package/esm5/shared/gipi-components/tabs/tab-group/tab-group.component.js +5 -2
  20. package/fesm2015/gipisistemas-ng-core.js +34 -14
  21. package/fesm2015/gipisistemas-ng-core.js.map +1 -1
  22. package/fesm5/gipisistemas-ng-core.js +39 -14
  23. package/fesm5/gipisistemas-ng-core.js.map +1 -1
  24. package/gipisistemas-ng-core.metadata.json +1 -1
  25. package/package.json +1 -1
  26. package/shared/components/icon/icon.component.d.ts +1 -3
  27. package/shared/gipi-components/form-field/form-field.component.d.ts +1 -0
  28. 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
  {
2
2
  "name": "@gipisistemas/ng-core",
3
- "version": "1.1.12",
3
+ "version": "1.1.13",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "~8.2.3",
6
6
  "@angular/core": "~8.2.3",
@@ -1,9 +1,7 @@
1
- import { OnInit } from '@angular/core';
2
- export declare class IconComponent implements OnInit {
1
+ export declare class IconComponent {
3
2
  color: string;
4
3
  icon: string;
5
4
  svgIcon: string;
6
5
  tooltip: string;
7
6
  iconSize: number;
8
- ngOnInit(): void;
9
7
  }
@@ -8,6 +8,7 @@ export declare class GIPIFormFieldComponent implements OnInit, ControlValueAcces
8
8
  id: number | string;
9
9
  name: string;
10
10
  label: string;
11
+ tooltip: string;
11
12
  ariaLabel: string;
12
13
  placeholder: string;
13
14
  readonly: boolean;
@@ -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 optionSelected(): string;
47
+ get optionSelectedValue(): string;
48
+ get optionSelectedKey(): string;
47
49
  get scrollViewportHeight(): number;
48
50
  constructor(elementRef: ElementRef, _changeDetectorRef: ChangeDetectorRef);
49
51
  ngOnInit(): void;