keevo-components 1.5.201 → 1.5.202

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.
@@ -1,12 +1,14 @@
1
+ import { TemplateRef } from '@angular/core';
1
2
  import { ComponentService } from '../../api/services/component.service';
2
3
  import { BaseComponentMultiSelect } from '../../api/base-components/base-component-multi-select';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class MultiSelectComponent extends BaseComponentMultiSelect {
5
6
  optionInactive: boolean;
6
7
  group: boolean;
8
+ itemTemplate: TemplateRef<any>;
7
9
  inactiveOptions: string;
8
10
  ngOnInit(): void;
9
11
  constructor(componentService: ComponentService);
10
12
  static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "kv-multi-select", never, { "optionInactive": "optionInactive"; "group": "group"; }, {}, never, ["*"], false, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "kv-multi-select", never, { "optionInactive": "optionInactive"; "group": "group"; "itemTemplate": "itemTemplate"; }, {}, never, ["*"], false, never>;
12
14
  }
@@ -1,5 +1,5 @@
1
1
  import { DatePipe, DecimalPipe } from '@angular/common';
2
- import { ElementRef, EventEmitter, OnInit, QueryList, Renderer2, TemplateRef } from '@angular/core';
2
+ import { ElementRef, EventEmitter, OnInit, QueryList, TemplateRef } from '@angular/core';
3
3
  import { Table } from 'primeng/table';
4
4
  import { TableConfig } from '../api/components/table/table.config';
5
5
  import { TableConfigColumn } from '../api/components/table/table.config.column';
@@ -7,7 +7,6 @@ import { CodigoFipePipe } from '../pipes/codigofile.pipe';
7
7
  import { CpfCnpjPipe } from '../pipes/cpfcnpj.pipe';
8
8
  import { TelefonePipe } from '../pipes/telefone.pipe';
9
9
  import { KvMenuItem } from '../api/components/table/kv-menuitem';
10
- import { DomSanitizer } from '@angular/platform-browser';
11
10
  import * as i0 from "@angular/core";
12
11
  export declare class TableComponent implements OnInit {
13
12
  private readonly datePipe;
@@ -15,9 +14,6 @@ export declare class TableComponent implements OnInit {
15
14
  private readonly codigoFipePipe;
16
15
  private readonly cpfCnpjPipe;
17
16
  private readonly telefonePipe;
18
- private renderer;
19
- private elementRef;
20
- private sanitizer;
21
17
  config: TableConfig;
22
18
  pesquisaValue: string;
23
19
  globalFilterFields: string[];
@@ -60,7 +56,7 @@ export declare class TableComponent implements OnInit {
60
56
  filtrosAvancadosEmit: EventEmitter<boolean>;
61
57
  menuFiltroDiv: ElementRef;
62
58
  botaoFiltro: ElementRef;
63
- constructor(datePipe: DatePipe, decimalPipe: DecimalPipe, codigoFipePipe: CodigoFipePipe, cpfCnpjPipe: CpfCnpjPipe, telefonePipe: TelefonePipe, renderer: Renderer2, elementRef: ElementRef, sanitizer: DomSanitizer);
59
+ constructor(datePipe: DatePipe, decimalPipe: DecimalPipe, codigoFipePipe: CodigoFipePipe, cpfCnpjPipe: CpfCnpjPipe, telefonePipe: TelefonePipe);
64
60
  ngOnInit(): void;
65
61
  onWindowResize(): void;
66
62
  activeItem(rowData: any): void;
@@ -90,6 +86,7 @@ export declare class TableComponent implements OnInit {
90
86
  returnClassChip(rowData: any, col: any): string;
91
87
  returnClassIcon(rowData: any, col: any): string;
92
88
  returnTooltipIcon(rowData: any, col: any): string;
89
+ returnTooltipRow(rowData: any, col: any): any;
93
90
  deleteColumn(field: string): void;
94
91
  addColumn(field: string): void;
95
92
  dinamicColumnSet(e: any, col: any): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.5.201",
3
+ "version": "1.5.202",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0",