keevo-components 1.8.341 → 1.8.342
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-home-card/kv-home-card.module.mjs +1 -1
- package/esm2022/lib/components/kv-layout/layout/kv-layout.component.mjs +3 -3
- package/esm2022/lib/components/kv-orgchart/kv-orgchart.component.mjs +18 -7
- package/esm2022/lib/components/kv-table/kv-table.component.mjs +28 -9
- package/esm2022/lib/components/kv-tree-table/kv-tree-table.component.mjs +3 -3
- package/esm2022/lib/components/kv-workspace/logo/kv-workspace-logo.component.mjs +3 -3
- package/fesm2022/keevo-components.mjs +50 -20
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-orgchart/kv-orgchart.component.d.ts +0 -1
- package/lib/components/kv-table/kv-table.component.d.ts +6 -2
- package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -21,7 +21,6 @@ export declare class KvOrgchartComponent implements OnInit {
|
|
|
21
21
|
ngOnChanges(): void;
|
|
22
22
|
updateChart(): void;
|
|
23
23
|
stringToTemplateLiteral(string: string): string;
|
|
24
|
-
compactSwap(): void;
|
|
25
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvOrgchartComponent, never>;
|
|
26
25
|
static ɵcmp: i0.ɵɵComponentDeclaration<KvOrgchartComponent, "kv-orgchart", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "config": { "alias": "config"; "required": false; }; "template": { "alias": "template"; "required": false; }; "nodeTemplate": { "alias": "nodeTemplate"; "required": false; }; "generateTemplate": { "alias": "generateTemplate"; "required": false; }; "templateFuncion": { "alias": "templateFuncion"; "required": false; }; "corDeFundo": { "alias": "corDeFundo"; "required": false; }; }, {}, never, never, false, never>;
|
|
27
26
|
}
|
|
@@ -16,7 +16,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
|
|
|
16
16
|
private readonly telefonePipe;
|
|
17
17
|
private renderer;
|
|
18
18
|
private elementRef;
|
|
19
|
-
|
|
19
|
+
private readonly tableConfig;
|
|
20
20
|
globalFilterFields: string[];
|
|
21
21
|
selectedSize: string;
|
|
22
22
|
tamanhoTela: number;
|
|
@@ -85,9 +85,12 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
|
|
|
85
85
|
botaoFiltro: ElementRef;
|
|
86
86
|
inputField: ElementRef;
|
|
87
87
|
constructor(datePipe: DatePipe, decimalPipe: DecimalPipe, cpfCnpjPipe: CpfCnpjPipe, telefonePipe: TelefonePipe, renderer: Renderer2, elementRef: ElementRef);
|
|
88
|
+
configuracaoEffect: import("@angular/core").EffectRef;
|
|
88
89
|
ngDoCheck(): void;
|
|
89
90
|
ngOnInit(): void;
|
|
90
91
|
ngAfterViewInit(): void;
|
|
92
|
+
definirColunasConfiguraveis(config: TableConfig): void;
|
|
93
|
+
definirFiltrosGlobais(config: TableConfig): void;
|
|
91
94
|
resetTable(): void;
|
|
92
95
|
onWindowResize(): void;
|
|
93
96
|
activeItem(rowData: any): void;
|
|
@@ -129,13 +132,14 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
|
|
|
129
132
|
onClickEvent(event: any): void;
|
|
130
133
|
styleSetter(style: string, data: string): void;
|
|
131
134
|
checkMenuFiltro(col: any): void;
|
|
132
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
135
|
+
sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
|
|
133
136
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
134
137
|
checkHideColumns(): void;
|
|
135
138
|
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
136
139
|
onSwitchChange(estado: any, rowData: any, col: any): void;
|
|
137
140
|
createTableActions(): void;
|
|
138
141
|
onSort(e: any): void;
|
|
142
|
+
get config(): TableConfig;
|
|
139
143
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvTableComponent, never>;
|
|
140
144
|
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>;
|
|
141
145
|
}
|
|
@@ -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;
|