keevo-components 1.8.349 → 1.8.351
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/api/components/chart/orchartnode.mjs +1 -1
- package/esm2022/lib/api/services/form.service.mjs +3 -1
- package/esm2022/lib/components/kv-orgchart/kv-orgchart.component.mjs +4 -2
- package/esm2022/lib/components/kv-table/kv-table.component.mjs +7 -4
- package/fesm2022/keevo-components.mjs +11 -4
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/api/components/chart/orchartnode.d.ts +2 -0
- package/lib/components/kv-table/kv-table.component.d.ts +2 -1
- package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import OrgChartConfig from "./orchart.config";
|
|
1
2
|
export default interface OrgChartNode {
|
|
2
3
|
/**
|
|
3
4
|
* @type {number}
|
|
@@ -29,4 +30,5 @@ export default interface OrgChartNode {
|
|
|
29
30
|
* @warning Mantenha a consistencia de dados, caso tente acessar um dado que não exista em outro objeto havera um erro
|
|
30
31
|
*/
|
|
31
32
|
expanded: any;
|
|
33
|
+
orgConfig: OrgChartConfig;
|
|
32
34
|
}
|
|
@@ -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) => 0 | 1 | -1;
|
|
136
136
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
137
137
|
checkHideColumns(): void;
|
|
138
138
|
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
@@ -140,6 +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[] | undefined>;
|
|
143
144
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvTableComponent, never>;
|
|
144
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>;
|
|
145
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) => 0 | 1 | -1;
|
|
68
68
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
69
69
|
dinamicColumnSet(e: any, col: any): void;
|
|
70
70
|
addColumn(field: string): void;
|