keevo-components 1.8.116 → 1.8.117
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/kv-table.component.mjs +12 -23
- package/esm2022/lib/components/kv-workspace/kv-workspace.component.mjs +1 -1
- package/fesm2022/keevo-components.mjs +12 -23
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-table/kv-table.component.d.ts +3 -5
- package/package.json +1 -1
|
@@ -56,13 +56,10 @@ export declare class KvTableComponent implements OnInit, DoCheck {
|
|
|
56
56
|
onActiveItem: EventEmitter<any>;
|
|
57
57
|
onActiveItemLote: EventEmitter<any>;
|
|
58
58
|
onPaginate: EventEmitter<TablePaginate>;
|
|
59
|
+
onSelectionChange: EventEmitter<any>;
|
|
59
60
|
doubleClickEvent: EventEmitter<any>;
|
|
60
61
|
filterField: EventEmitter<any>;
|
|
61
62
|
onSwitchTableChange: EventEmitter<any>;
|
|
62
|
-
/**
|
|
63
|
-
* @deprecated Use `onActiveItemLote` instead.
|
|
64
|
-
*/
|
|
65
|
-
onSelectionChange: EventEmitter<any>;
|
|
66
63
|
menuFiltroDiv: ElementRef;
|
|
67
64
|
botaoFiltro: ElementRef;
|
|
68
65
|
constructor(datePipe: DatePipe, decimalPipe: DecimalPipe, cpfCnpjPipe: CpfCnpjPipe, telefonePipe: TelefonePipe);
|
|
@@ -106,6 +103,7 @@ export declare class KvTableComponent implements OnInit, DoCheck {
|
|
|
106
103
|
checkHideColumns(): void;
|
|
107
104
|
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
108
105
|
onSwitchChange(estado: any, rowData: boolean, col: any): void;
|
|
106
|
+
returnRowDataActions(rowData: any): MenuItem[] | undefined;
|
|
109
107
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvTableComponent, never>;
|
|
110
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KvTableComponent, "kv-table", never, { "_templates": { "alias": "templates"; "required": false; }; "setConfig": { "alias": "config"; "required": false; }; "defaultSortField": { "alias": "defaultSortField"; "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; }; "filterColumnsBtn": { "alias": "filterColumnsBtn"; "required": false; }; "filtrosAvancados": { "alias": "filtrosAvancados"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "isTableScrollable": { "alias": "isTableScrollable"; "required": false; }; "tableCaptalized": { "alias": "tableCaptalized"; "required": false; }; "rowTrackBy": { "alias": "rowTrackBy"; "required": false; }; "responsiveLayout": { "alias": "responsiveLayout"; "required": false; }; }, { "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "onPaginate": "onPaginate"; "
|
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvTableComponent, "kv-table", never, { "_templates": { "alias": "templates"; "required": false; }; "setConfig": { "alias": "config"; "required": false; }; "defaultSortField": { "alias": "defaultSortField"; "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; }; "filterColumnsBtn": { "alias": "filterColumnsBtn"; "required": false; }; "filtrosAvancados": { "alias": "filtrosAvancados"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "isTableScrollable": { "alias": "isTableScrollable"; "required": false; }; "tableCaptalized": { "alias": "tableCaptalized"; "required": false; }; "rowTrackBy": { "alias": "rowTrackBy"; "required": false; }; "responsiveLayout": { "alias": "responsiveLayout"; "required": false; }; }, { "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "onPaginate": "onPaginate"; "onSelectionChange": "onSelectionChange"; "doubleClickEvent": "doubleClickEvent"; "filterField": "filterField"; "onSwitchTableChange": "onSwitchTableChange"; }, ["templates"], ["*"], false, never>;
|
|
111
109
|
}
|