keevo-components 2.0.155 → 2.0.156
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-icon/kv-icon.component.mjs +3 -3
- package/esm2022/lib/components/kv-layout/layout/kv-layout.component.mjs +24 -3
- package/esm2022/lib/components/kv-table-draggable/kv-table-draggable.component.mjs +35 -35
- package/esm2022/lib/components/kv-widget-card/kv-widget-card.component.mjs +3 -3
- package/fesm2022/keevo-components.mjs +61 -40
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-button/kv-button.component.d.ts +1 -1
- package/lib/components/kv-layout/layout/kv-layout.component.d.ts +3 -0
- package/lib/components/kv-table/kv-table.component.d.ts +1 -1
- package/lib/components/kv-table-draggable/kv-table-draggable.component.d.ts +1 -1
- package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ export declare class KvButtonComponent {
|
|
|
9
9
|
severity: import("@angular/core").InputSignal<"primary" | "secondary" | "tertiary" | "danger">;
|
|
10
10
|
size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
|
|
11
11
|
icon: import("@angular/core").ModelSignal<string>;
|
|
12
|
-
iconPosition: import("@angular/core").InputSignal<"
|
|
12
|
+
iconPosition: import("@angular/core").InputSignal<"right" | "left">;
|
|
13
13
|
label: import("@angular/core").InputSignal<string>;
|
|
14
14
|
disabled: import("@angular/core").InputSignal<boolean>;
|
|
15
15
|
onClick: import("@angular/core").OutputEmitterRef<any>;
|
|
@@ -78,6 +78,7 @@ export declare class KvLayoutComponent implements OnInit, OnChanges {
|
|
|
78
78
|
menus: import("@angular/core").ModelSignal<LayoutMenuItem[]>;
|
|
79
79
|
menuVisivel: WritableSignal<number | undefined>;
|
|
80
80
|
showMenuSistemas: WritableSignal<boolean>;
|
|
81
|
+
menuVisivelChild: WritableSignal<number | undefined>;
|
|
81
82
|
expandMenu: import("@angular/core").ModelSignal<boolean>;
|
|
82
83
|
logoMenuExpand: any;
|
|
83
84
|
logoMenuHide: any;
|
|
@@ -143,12 +144,14 @@ export declare class KvLayoutComponent implements OnInit, OnChanges {
|
|
|
143
144
|
isSelectedMenuPai(menu: any): boolean;
|
|
144
145
|
selecionarMenu(): void;
|
|
145
146
|
returnMenuChild(idmenu: number): LayoutMenuItem[];
|
|
147
|
+
temFilhos(menu: any): boolean;
|
|
146
148
|
selectApp(idaplicativo: number): void;
|
|
147
149
|
showLicencas(): boolean;
|
|
148
150
|
toggleMenu(): void;
|
|
149
151
|
navigateToDefaultRoute(): void;
|
|
150
152
|
get exibirNomes(): string | false;
|
|
151
153
|
exibirMenuChild(event: any, index: number): void;
|
|
154
|
+
exibirSubMenuChild(event: any, idmenu: number): void;
|
|
152
155
|
downloadDoc(trilha: any): void;
|
|
153
156
|
showVideoDoc(trilha: any): void;
|
|
154
157
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvLayoutComponent, never>;
|
|
@@ -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>;
|
|
@@ -139,7 +139,7 @@ export declare class KvTableDraggableComponent implements OnInit, DoCheck, After
|
|
|
139
139
|
onClickEvent(event: any): void;
|
|
140
140
|
styleSetter(style: string, data: string): void;
|
|
141
141
|
checkMenuFiltro(col: TableConfigColumn): void;
|
|
142
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
142
|
+
sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
|
|
143
143
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
144
144
|
checkHideColumns(): void;
|
|
145
145
|
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;
|