keevo-components 1.8.352 → 1.8.353
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 +3 -2
- package/fesm2022/keevo-components.mjs +2 -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 +2 -2
- package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -34,7 +34,7 @@ export declare abstract class BaseComponentDropDown extends BaseComponentInput<a
|
|
|
34
34
|
protected addClick(event: Event): void;
|
|
35
35
|
carregarCombo(filtro?: filtroCombo): void;
|
|
36
36
|
protected carregarComboObs(obs: Observable<any>): void;
|
|
37
|
-
emptyMessage(): "
|
|
37
|
+
emptyMessage(): "Nenhum resultado encontrado" | "Digite para pesquisar";
|
|
38
38
|
filterOptions(field: string, value: any): void;
|
|
39
39
|
protected listar(): any;
|
|
40
40
|
protected listarCombo(value: any): any;
|
|
@@ -132,7 +132,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
|
|
|
132
132
|
onClickEvent(event: any): void;
|
|
133
133
|
styleSetter(style: string, data: string): void;
|
|
134
134
|
checkMenuFiltro(col: any): void;
|
|
135
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
135
|
+
sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
|
|
136
136
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
137
137
|
checkHideColumns(): void;
|
|
138
138
|
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
@@ -140,7 +140,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
|
|
|
140
140
|
createTableActions(): void;
|
|
141
141
|
onSort(e: any): void;
|
|
142
142
|
get config(): TableConfig;
|
|
143
|
-
columnsFilter: import("@angular/core").Signal<TableConfigColumn[]
|
|
143
|
+
columnsFilter: import("@angular/core").Signal<TableConfigColumn[]>;
|
|
144
144
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvTableComponent, never>;
|
|
145
145
|
static ɵcmp: i0.ɵɵComponentDeclaration<KvTableComponent, "kv-table", never, { "_templates": { "alias": "templates"; "required": false; }; "setConfig": { "alias": "config"; "required": false; }; "first": { "alias": "first"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "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; }; "tableSize": { "alias": "tableSize"; "required": false; }; "filterColumnsBtn": { "alias": "filterColumnsBtn"; "required": false; }; "replaceEmptyValues": { "alias": "replaceEmptyValues"; "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; }; "disabledHeaderCheckbox": { "alias": "disabledHeaderCheckbox"; "required": false; }; "applyStyle": { "alias": "applyStyle"; "required": false; }; "pageLinksOptions": { "alias": "pageLinksOptions"; "required": false; }; "showFirstLastIcon": { "alias": "showFirstLastIcon"; "required": false; }; }, { "first": "firstChange"; "rows": "rowsChange"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "onPaginate": "onPaginate"; "onSelectionChange": "onSelectionChange"; "doubleClickEvent": "doubleClickEvent"; "filterField": "filterField"; "onSwitchTableChange": "onSwitchTableChange"; }, ["templates"], ["*"], false, never>;
|
|
146
146
|
}
|
|
@@ -64,7 +64,7 @@ export declare class KvTableExpandableComponent implements OnInit, DoCheck {
|
|
|
64
64
|
onGlobalFilter(table: Table, event: Event): void;
|
|
65
65
|
executeCollapsed(): void;
|
|
66
66
|
checkMenuFiltro(col: any): void;
|
|
67
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
67
|
+
sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
|
|
68
68
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
69
69
|
dinamicColumnSet(e: any, col: any): void;
|
|
70
70
|
addColumn(field: string): void;
|