keevo-components 2.0.128 → 2.0.129
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-filter-cards/kv-filter-cards.component.mjs +3 -3
- package/esm2022/lib/components/kv-icon/kv-icon.component.mjs +3 -3
- package/esm2022/lib/components/kv-stacked-bar-chart/kv-stacked-bar-chart.component.mjs +3 -3
- package/esm2022/lib/components/kv-widget-card/kv-widget-card.component.mjs +3 -3
- package/fesm2022/keevo-components.mjs +8 -8
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +1 -1
- 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/lib/components/kv-table-viewer/kv-table-viewer.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ export declare class KvButtonPopupComponent extends BaseComponentButton {
|
|
|
8
8
|
items: MenuItem[];
|
|
9
9
|
classBtn: string;
|
|
10
10
|
size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
|
|
11
|
-
type: import("@angular/core").InputSignal<"
|
|
11
|
+
type: import("@angular/core").InputSignal<"normal" | "text" | "outline">;
|
|
12
12
|
icon: string;
|
|
13
13
|
constructor();
|
|
14
14
|
handleShow(): void;
|
|
@@ -141,7 +141,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
|
|
|
141
141
|
onClickEvent(event: any): void;
|
|
142
142
|
styleSetter(style: string, data: string): void;
|
|
143
143
|
checkMenuFiltro(col: TableConfigColumn): void;
|
|
144
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
144
|
+
sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
|
|
145
145
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
146
146
|
checkHideColumns(): void;
|
|
147
147
|
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
@@ -68,7 +68,7 @@ export declare class KvTableExpandableComponent implements OnInit, DoCheck {
|
|
|
68
68
|
onGlobalFilter(table: Table, event: Event): void;
|
|
69
69
|
executeCollapsed(): void;
|
|
70
70
|
checkMenuFiltro(col: any): void;
|
|
71
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
71
|
+
sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
|
|
72
72
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
73
73
|
dinamicColumnSet(e: any, col: any): void;
|
|
74
74
|
addColumn(field: string): void;
|
|
@@ -26,7 +26,7 @@ export declare class KvTableViewerComponent {
|
|
|
26
26
|
telefonePipe: TelefonePipe;
|
|
27
27
|
datePipe: DatePipe;
|
|
28
28
|
columns: import("@angular/core").InputSignal<ColumnTableViewer[]>;
|
|
29
|
-
actionsRow: import("@angular/core").InputSignal<
|
|
29
|
+
actionsRow: import("@angular/core").InputSignal<[] | MenuItem[]>;
|
|
30
30
|
actionsHeader: import("@angular/core").InputSignal<MenuItem[] | undefined>;
|
|
31
31
|
actionsLote: import("@angular/core").InputSignal<MenuItem[] | undefined>;
|
|
32
32
|
data: import("@angular/core").InputSignal<any[]>;
|