keevo-components 1.7.0 → 1.7.2

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.
@@ -3,6 +3,7 @@ export declare class ImagensService {
3
3
  static getPersonagensWorkSpace(): string;
4
4
  static getLogoKeevo(): string;
5
5
  static getBackgroundWorkSpace(): string;
6
+ static getLogoKeevoCenter(): string;
6
7
  userDefaultImage(): string;
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<ImagensService, never>;
8
9
  static ɵprov: i0.ɵɵInjectableDeclaration<ImagensService>;
@@ -99,6 +99,7 @@ export declare class TableComponent implements OnInit {
99
99
  checkHideColumns(): void;
100
100
  getCustomTemplate(templatename: string): TemplateRef<any>;
101
101
  filtrosAvancadosEvent(e: any): void;
102
+ isButtonDisable(action: any, rowData: any, commandEvent: any): any;
102
103
  static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
103
104
  static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "kv-table", never, { "_templates": { "alias": "templates"; "required": false; }; "setConfig": { "alias": "config"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "pageLinksOptions": { "alias": "pageLinksOptions"; "required": false; }; "showFirstLastIcon": { "alias": "showFirstLastIcon"; "required": false; }; "tableSize": { "alias": "tableSize"; "required": false; }; "applyStyle": { "alias": "applyStyle"; "required": false; }; "acoesLinhaTabela": { "alias": "acoesLinhaTabela"; "required": false; }; "filterColumnsBtn": { "alias": "filterColumnsBtn"; "required": false; }; "filtrosAvancados": { "alias": "filtrosAvancados"; "required": false; }; }, { "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "onPaginate": "onPaginate"; "onSelectionChange": "onSelectionChange"; "doubleClickEvent": "doubleClickEvent"; "filterField": "filterField"; "filtrosAvancadosEmit": "filtrosAvancadosEmit"; }, ["templates"], ["*"], false, never>;
104
105
  }
@@ -6,8 +6,9 @@ import * as i4 from "@angular/forms";
6
6
  import * as i5 from "primeng/progressspinner";
7
7
  import * as i6 from "primeng/autocomplete";
8
8
  import * as i7 from "../buttons/kvbutton.module";
9
+ import * as i8 from "../table/kvtable.module";
9
10
  export declare class KvWorkspaceModule {
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<KvWorkspaceModule, never>;
11
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvWorkspaceModule, [typeof i1.WorkspaceComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.ReactiveFormsModule, typeof i5.ProgressSpinnerModule, typeof i6.AutoCompleteModule, typeof i4.FormsModule, typeof i7.KvButtonsModule], [typeof i1.WorkspaceComponent]>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KvWorkspaceModule, [typeof i1.WorkspaceComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.ReactiveFormsModule, typeof i5.ProgressSpinnerModule, typeof i6.AutoCompleteModule, typeof i4.FormsModule, typeof i7.KvButtonsModule, typeof i8.KvTableModule], [typeof i1.WorkspaceComponent]>;
12
13
  static ɵinj: i0.ɵɵInjectorDeclaration<KvWorkspaceModule>;
13
14
  }
@@ -1,4 +1,5 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
+ import { TableConfig } from '../api/components/table/table.config';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class WorkspaceComponent implements OnInit {
4
5
  nomeSistema: string;
@@ -15,6 +16,17 @@ export declare class WorkspaceComponent implements OnInit {
15
16
  imgPersonagens: string;
16
17
  imgLogoKeevo: string;
17
18
  styleBackground: string;
19
+ imgLogoKeevoCenter: string;
20
+ selectedItemMaster: any;
21
+ selectedItemsLoteMaster: any;
22
+ tableSizeMaster: number;
23
+ tableConfigMaster: TableConfig;
24
+ dataSourceMaster: any;
25
+ selectedItemEmpresa: any;
26
+ selectedItemsLoteEmpresa: any;
27
+ tableSizeEmpresa: number;
28
+ tableConfigEmpresa: TableConfig;
29
+ dataSourceEmpresa: any;
18
30
  constructor();
19
31
  ngOnInit(): void;
20
32
  verificaMasterUnica(): void;
@@ -23,6 +35,12 @@ export declare class WorkspaceComponent implements OnInit {
23
35
  selecionarEmpresa(empresa: any): void;
24
36
  voltar(): void;
25
37
  filtrarEmpresa(event: any): void;
38
+ columnConfigTableMaster(): void;
39
+ activeItemMaster(e: any): void;
40
+ doubleClickMaster(e: any): void;
41
+ columnConfigTableEmpresa(): void;
42
+ activeItemEmpresa(e: any): void;
43
+ doubleClickEmpresa(e: any): void;
26
44
  static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceComponent, never>;
27
45
  static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceComponent, "kv-workspace", never, { "nomeSistema": { "alias": "nomeSistema"; "required": false; }; "nomeUsuario": { "alias": "nomeUsuario"; "required": false; }; "masters": { "alias": "masters"; "required": false; }; "somenteMaster": { "alias": "somenteMaster"; "required": false; }; }, { "onGetMasterSelecionada": "onGetMasterSelecionada"; "onGetEmpresaSelecionada": "onGetEmpresaSelecionada"; }, never, never, false, never>;
28
46
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.7.0",
3
+ "version": "1.7.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.2.12",
6
6
  "@angular/core": "^16.2.12",