keevo-components 1.8.136 → 1.8.137
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-table-expandable/kv-table-expandable.component.mjs +10 -4
- package/fesm2022/keevo-components.mjs +9 -3
- package/fesm2022/keevo-components.mjs.map +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 +2 -1
- package/package.json +1 -1
|
@@ -99,7 +99,7 @@ export declare class KvTableComponent implements OnInit, DoCheck {
|
|
|
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) =>
|
|
102
|
+
sortByPosition(): (elem1: any, elem2: any) => 1 | -1 | 0;
|
|
103
103
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
104
104
|
checkHideColumns(): void;
|
|
105
105
|
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
@@ -61,7 +61,7 @@ export declare class KvTableExpandableComponent implements OnInit, DoCheck {
|
|
|
61
61
|
onGlobalFilter(table: Table, event: Event): void;
|
|
62
62
|
adicionaAcoesTabela(): void;
|
|
63
63
|
checkMenuFiltro(col: any): void;
|
|
64
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
64
|
+
sortByPosition(): (elem1: any, elem2: any) => 1 | -1 | 0;
|
|
65
65
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
66
66
|
dinamicColumnSet(e: any, col: any): void;
|
|
67
67
|
addColumn(field: string): void;
|
|
@@ -104,6 +104,7 @@ export declare class KvTableExpandableComponent implements OnInit, DoCheck {
|
|
|
104
104
|
collapseAll(): void;
|
|
105
105
|
createDataIndex(): void;
|
|
106
106
|
returnRowDataActions(rowData: any): void;
|
|
107
|
+
onSort(e: any): void;
|
|
107
108
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvTableExpandableComponent, never>;
|
|
108
109
|
static ɵcmp: i0.ɵɵComponentDeclaration<KvTableExpandableComponent, "kv-table-expandable", never, { "_templates": { "alias": "templates"; "required": false; }; "setConfig": { "alias": "config"; "required": false; }; "filtrosAvancados": { "alias": "filtrosAvancados"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "tableCaptalized": { "alias": "tableCaptalized"; "required": false; }; "applyStyle": { "alias": "applyStyle"; "required": false; }; "tableSize": { "alias": "tableSize"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "pageLinksOptions": { "alias": "pageLinksOptions"; "required": false; }; "responsiveLayout": { "alias": "responsiveLayout"; "required": false; }; "isTableScrollable": { "alias": "isTableScrollable"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "rowTrackBy": { "alias": "rowTrackBy"; "required": false; }; "showFirstLastIcon": { "alias": "showFirstLastIcon"; "required": false; }; }, { "filterField": "filterField"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "doubleClickEvent": "doubleClickEvent"; "onSwitchTableChange": "onSwitchTableChange"; "onPaginate": "onPaginate"; "onSelectionChange": "onSelectionChange"; }, never, ["*"], false, never>;
|
|
109
110
|
}
|