keevo-components 1.8.460 → 1.8.462
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.
- package/esm2022/lib/components/kv-tree-table/kv-tree-table.component.mjs +2 -2
- package/fesm2022/keevo-components.mjs +1 -1
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/api/base-components/base-component-dropdown.d.ts +1 -1
- package/lib/components/kv-table/kv-table.component.d.ts +1 -1
- package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -35,7 +35,7 @@ export declare abstract class BaseComponentDropDown extends BaseComponentInput<a
|
|
|
35
35
|
protected addClick(event: Event): void;
|
|
36
36
|
carregarCombo(filtro?: filtroCombo): void;
|
|
37
37
|
protected carregarComboObs(obs: Observable<any>): void;
|
|
38
|
-
emptyMessage(): "
|
|
38
|
+
emptyMessage(): "Digite para pesquisar" | "Nenhum resultado encontrado";
|
|
39
39
|
filterOptions(field: string, value: any): void;
|
|
40
40
|
protected listar(): any;
|
|
41
41
|
protected listarCombo(value: any): any;
|
|
@@ -138,7 +138,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
|
|
|
138
138
|
onClickEvent(event: any): void;
|
|
139
139
|
styleSetter(style: string, data: string): void;
|
|
140
140
|
checkMenuFiltro(col: TableConfigColumn): void;
|
|
141
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
141
|
+
sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
|
|
142
142
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
143
143
|
checkHideColumns(): void;
|
|
144
144
|
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
@@ -66,7 +66,7 @@ export declare class KvTableExpandableComponent implements OnInit, DoCheck {
|
|
|
66
66
|
onGlobalFilter(table: Table, event: Event): void;
|
|
67
67
|
executeCollapsed(): void;
|
|
68
68
|
checkMenuFiltro(col: any): void;
|
|
69
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
69
|
+
sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
|
|
70
70
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
71
71
|
dinamicColumnSet(e: any, col: any): void;
|
|
72
72
|
addColumn(field: string): void;
|