keevo-components 2.0.181 → 2.0.182
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-tree-environment/components/kv-tree-environment/kv-tree-environment.component.mjs +16 -12
- package/esm2022/lib/components/kv-tree-environment/components/no-arvore/no-arvore.component.mjs +24 -14
- package/esm2022/lib/components/kv-tree-environment/models/no-arvore.model.mjs +1 -1
- package/fesm2022/keevo-components.mjs +31 -18
- package/fesm2022/keevo-components.mjs.map +1 -1
- 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/lib/components/kv-tree-environment/components/no-arvore/no-arvore.component.d.ts +1 -0
- package/lib/components/kv-tree-environment/models/no-arvore.model.d.ts +6 -3
- package/package.json +1 -1
|
@@ -142,7 +142,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
|
|
|
142
142
|
onClickEvent(event: any): void;
|
|
143
143
|
styleSetter(style: string, data: string): void;
|
|
144
144
|
checkMenuFiltro(col: TableConfigColumn): void;
|
|
145
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
145
|
+
sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
|
|
146
146
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
147
147
|
checkHideColumns(): void;
|
|
148
148
|
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) => 0 | 1 | -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) => 0 | 1 | -1;
|
|
72
72
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
73
73
|
dinamicColumnSet(e: any, col: any): void;
|
|
74
74
|
addColumn(field: string): void;
|
|
@@ -17,6 +17,7 @@ export declare class NoArvoreComponent {
|
|
|
17
17
|
alternarExpansao(): void;
|
|
18
18
|
onActionClick(item: MenuItem, event: Event): void;
|
|
19
19
|
abrirSidebar(event: Event): void;
|
|
20
|
+
toggleMenu(event: Event, menu: any): void;
|
|
20
21
|
private calcularEstilosIcone;
|
|
21
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<NoArvoreComponent, never>;
|
|
22
23
|
static ɵcmp: i0.ɵɵComponentDeclaration<NoArvoreComponent, "no-arvore", never, { "noPlano": { "alias": "noPlano"; "required": true; "isSignal": true; }; "enableSidebar": { "alias": "enableSidebar"; "required": false; "isSignal": true; }; }, { "noAlternado": "noAlternado"; "actionExecuted": "actionExecuted"; "sidebarClick": "sidebarClick"; }, never, never, true, never>;
|
|
@@ -10,7 +10,8 @@ export interface NoPlano {
|
|
|
10
10
|
export interface NoArvore {
|
|
11
11
|
rotulo: string;
|
|
12
12
|
icone: string;
|
|
13
|
-
|
|
13
|
+
backgroundIconColor?: string;
|
|
14
|
+
iconColor?: string;
|
|
14
15
|
ativo?: boolean;
|
|
15
16
|
expanded?: boolean;
|
|
16
17
|
filhos?: NoArvore[];
|
|
@@ -22,7 +23,8 @@ export interface NoArvoreSimples {
|
|
|
22
23
|
key: string;
|
|
23
24
|
rotulo: string;
|
|
24
25
|
icone: string;
|
|
25
|
-
|
|
26
|
+
backgroundIconColor?: string;
|
|
27
|
+
iconColor?: string;
|
|
26
28
|
ativo?: boolean;
|
|
27
29
|
expanded?: boolean;
|
|
28
30
|
}
|
|
@@ -38,7 +40,8 @@ export interface EstruturaArvore {
|
|
|
38
40
|
label: string;
|
|
39
41
|
tipo: 'pasta' | 'item';
|
|
40
42
|
icone: string;
|
|
41
|
-
|
|
43
|
+
backgroundIconColor?: string;
|
|
44
|
+
iconColor?: string;
|
|
42
45
|
expanded?: boolean;
|
|
43
46
|
ordem?: number;
|
|
44
47
|
actions?: MenuItem[];
|