keevo-components 1.8.79 → 1.8.81

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.
@@ -11,8 +11,9 @@ export declare class KvSelectButtonComponent {
11
11
  optionValue: string;
12
12
  mutiple: boolean;
13
13
  disabled: boolean;
14
+ value: any;
14
15
  selectionChange(event: any): void;
15
16
  onOptionClick(event: any): void;
16
17
  static ɵfac: i0.ɵɵFactoryDeclaration<KvSelectButtonComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<KvSelectButtonComponent, "kv-select-button", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "mutiple": { "alias": "mutiple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onSelectionChange": "onSelectionChange"; "optionClick": "optionClick"; }, never, never, false, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvSelectButtonComponent, "kv-select-button", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "mutiple": { "alias": "mutiple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onSelectionChange": "onSelectionChange"; "optionClick": "optionClick"; }, never, never, false, never>;
18
19
  }
@@ -1,11 +1,19 @@
1
- import { DynamicDialogRef } from 'primeng/dynamicdialog';
1
+ import { ElementRef } from '@angular/core';
2
+ import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
2
3
  import { ActionItem } from '../../../public-api';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class KvModalComponent {
5
6
  protected dynamicDialogRef: DynamicDialogRef;
6
- constructor(dynamicDialogRef: DynamicDialogRef);
7
+ private dynamicDialogConfig;
8
+ constructor(dynamicDialogRef: DynamicDialogRef, dynamicDialogConfig: DynamicDialogConfig);
9
+ subHeader: ElementRef;
10
+ subtitle: string;
7
11
  ngOnInit(): void;
8
12
  onWindowResize(): void;
13
+ /**
14
+ * Adiciona sub-título à tela
15
+ */
16
+ addSubTitle(): void;
9
17
  /**
10
18
  * Ações do Dialog
11
19
  */
@@ -16,5 +24,5 @@ export declare class KvModalComponent {
16
24
  setMarginBottom(): void;
17
25
  clickExecute(action: ActionItem): void;
18
26
  static ɵfac: i0.ɵɵFactoryDeclaration<KvModalComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<KvModalComponent, "kv-modal", never, { "actions": { "alias": "actions"; "required": false; }; "actionsPosition": { "alias": "actionsPosition"; "required": false; }; }, {}, never, ["*"], false, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvModalComponent, "kv-modal", never, { "subHeader": { "alias": "subHeader"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "actionsPosition": { "alias": "actionsPosition"; "required": false; }; }, {}, never, ["*"], false, never>;
20
28
  }
@@ -99,7 +99,7 @@ export declare class KvTableComponent implements OnInit {
99
99
  addColumn(field: string): void;
100
100
  dinamicColumnSet(e: any, col: any): void;
101
101
  checkMenuFiltro(col: any): void;
102
- sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
102
+ sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
103
103
  callDisabled(action: KvMenuItem, data: any): boolean;
104
104
  dinamicDisableColumn(col: TableConfigColumn): boolean;
105
105
  checkHideColumns(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.8.79",
3
+ "version": "1.8.81",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",