keevo-components 1.8.349 → 1.8.350
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/components/kv-orgchart/kv-orgchart.component.mjs +4 -2
- package/fesm2022/keevo-components.mjs +3 -1
- 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 +1 -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>;
|
|
@@ -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;
|