keevo-components 2.0.255 → 2.0.257
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-inputs/kv-chips/kv-chips.component.mjs +57 -0
- package/esm2022/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.mjs +3 -3
- package/esm2022/lib/components/kv-select-cards/kv-select-cards.component.mjs +20 -0
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/keevo-components.mjs +76 -3
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-button/kv-button.component.d.ts +1 -1
- package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +1 -1
- package/lib/components/kv-inputs/kv-chips/kv-chips.component.d.ts +16 -0
- package/lib/components/kv-instruction-page/components/cards-instruction/kv-cards-instruction.component.d.ts +1 -1
- package/lib/components/kv-select-cards/kv-select-cards.component.d.ts +14 -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
- package/public-api.d.ts +2 -0
|
@@ -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>;
|
|
@@ -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<"text" | "normal" | "outline">;
|
|
12
12
|
icon: string;
|
|
13
13
|
constructor();
|
|
14
14
|
handleShow(): void;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export interface ChipOption {
|
|
3
|
+
label: string;
|
|
4
|
+
value: any;
|
|
5
|
+
}
|
|
6
|
+
export declare class KvChipsComponent {
|
|
7
|
+
options: import("@angular/core").InputSignal<ChipOption[]>;
|
|
8
|
+
multiple: import("@angular/core").InputSignal<boolean>;
|
|
9
|
+
selection: import("@angular/core").ModelSignal<any>;
|
|
10
|
+
selectionChange: import("@angular/core").OutputEmitterRef<any>;
|
|
11
|
+
toggle(option: ChipOption): void;
|
|
12
|
+
isActive(option: ChipOption): boolean;
|
|
13
|
+
private updateSelection;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvChipsComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvChipsComponent, "kv-chips", never, { "options": { "alias": "options"; "required": true; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "selection": { "alias": "selection"; "required": false; "isSignal": true; }; }, { "selection": "selectionChange"; "selectionChange": "selectionChange"; }, never, never, true, never>;
|
|
16
|
+
}
|
|
@@ -4,7 +4,7 @@ export declare class KvCardsInstructionComponent {
|
|
|
4
4
|
title: string;
|
|
5
5
|
icon: string;
|
|
6
6
|
height: number;
|
|
7
|
-
color?: "blue" | "green" | "orange" | "red" | "purple" | "yellow" | "teal" | "pink" | "
|
|
7
|
+
color?: "blue" | "gray" | "green" | "orange" | "red" | "purple" | "yellow" | "teal" | "pink" | "indigo" | "cyan" | "bluegray" | undefined;
|
|
8
8
|
} | undefined>;
|
|
9
9
|
blackCard: import("@angular/core").InputSignal<{
|
|
10
10
|
title: string;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export interface SelectCardOption {
|
|
3
|
+
title: string;
|
|
4
|
+
description: string;
|
|
5
|
+
value: any;
|
|
6
|
+
icon: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class KvSelectCardsComponent {
|
|
9
|
+
options: import("@angular/core").InputSignal<SelectCardOption[]>;
|
|
10
|
+
selection: import("@angular/core").ModelSignal<any>;
|
|
11
|
+
select(option: SelectCardOption): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvSelectCardsComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvSelectCardsComponent, "kv-select-cards", never, { "options": { "alias": "options"; "required": true; "isSignal": true; }; "selection": { "alias": "selection"; "required": false; "isSignal": true; }; }, { "selection": "selectionChange"; }, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -153,7 +153,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
|
|
|
153
153
|
onClickEvent(event: any): void;
|
|
154
154
|
styleSetter(style: string, data: string): void;
|
|
155
155
|
checkMenuFiltro(col: TableConfigColumn): void;
|
|
156
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
156
|
+
sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
|
|
157
157
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
158
158
|
checkHideColumns(): void;
|
|
159
159
|
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;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -332,3 +332,5 @@ export * from './lib/components/kv-kanban/kv-kanban.component';
|
|
|
332
332
|
export * from './lib/components/kv-kanban/kv-kanban-models.model';
|
|
333
333
|
export * from './lib/components/kv-instruction-page/kv-instruction-page.component';
|
|
334
334
|
export * from './lib/components/kv-instruction-page/components/cards-instruction/kv-cards-instruction.component';
|
|
335
|
+
export * from './lib/components/kv-inputs/kv-chips/kv-chips.component';
|
|
336
|
+
export * from './lib/components/kv-select-cards/kv-select-cards.component';
|