keevo-components 2.0.256 → 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.
@@ -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<"left" | "right">;
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<"normal" | "text" | "outline">;
11
+ type: import("@angular/core").InputSignal<"text" | "normal" | "outline">;
12
12
  icon: string;
13
13
  constructor();
14
14
  handleShow(): void;
@@ -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) => 0 | 1 | -1;
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) => 0 | 1 | -1;
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) => 0 | 1 | -1;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "2.0.256",
3
+ "version": "2.0.257",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",
package/public-api.d.ts CHANGED
@@ -333,3 +333,4 @@ 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
335
  export * from './lib/components/kv-inputs/kv-chips/kv-chips.component';
336
+ export * from './lib/components/kv-select-cards/kv-select-cards.component';