keevo-components 2.0.243 → 2.0.246

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.
@@ -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<"text" | "normal" | "outline">;
11
+ type: import("@angular/core").InputSignal<"normal" | "text" | "outline">;
12
12
  icon: string;
13
13
  constructor();
14
14
  handleShow(): void;
@@ -6,10 +6,13 @@ export interface KanbanAction {
6
6
  export interface KanbanCard {
7
7
  id?: number | string;
8
8
  titulo: string;
9
- status?: string;
9
+ status?: CardStatus[];
10
+ [key: string]: any;
11
+ }
12
+ export interface CardStatus {
13
+ label: string;
10
14
  statusColor?: string;
11
15
  statusLabelColor?: string;
12
- [key: string]: any;
13
16
  }
14
17
  export interface KanbanColumnConfig {
15
18
  id: number;
@@ -30,6 +30,7 @@ export declare class KvKanbanComponent {
30
30
  getColumnTotalItems(columnId: number): number;
31
31
  getActionsForCard(card: KanbanCard): MenuItem[];
32
32
  getColumnFlex(): string;
33
+ getStatusTooltip(status: any[]): string;
33
34
  static ɵfac: i0.ɵɵFactoryDeclaration<KvKanbanComponent, never>;
34
35
  static ɵcmp: i0.ɵɵComponentDeclaration<KvKanbanComponent, "kv-kanban", never, { "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "columnConfigs": { "alias": "columnConfigs"; "required": false; "isSignal": true; }; "columnLists": { "alias": "columnLists"; "required": false; "isSignal": true; }; "cardTemplate": { "alias": "cardTemplate"; "required": false; "isSignal": true; }; "showColumnsCounter": { "alias": "showColumnsCounter"; "required": false; "isSignal": true; }; "enableDrag": { "alias": "enableDrag"; "required": false; "isSignal": true; }; }, { "onCardMoved": "onCardMoved"; "onActionClicked": "onActionClicked"; "onLoadMoreCards": "onLoadMoreCards"; "onSelectedCard": "onSelectedCard"; }, never, never, true, never>;
35
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "2.0.243",
3
+ "version": "2.0.246",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",