keevo-components 2.0.252 → 2.0.253

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.
@@ -4,7 +4,7 @@ import * as i0 from "@angular/core";
4
4
  export declare class KvButtonComponent {
5
5
  menu: import("@angular/core").Signal<Menu | undefined>;
6
6
  fullWidth: import("@angular/core").InputSignal<boolean>;
7
- type: import("@angular/core").InputSignal<"outline" | "text" | undefined>;
7
+ type: import("@angular/core").InputSignal<"text" | "outline" | undefined>;
8
8
  loading: import("@angular/core").InputSignal<boolean>;
9
9
  severity: import("@angular/core").InputSignal<"primary" | "secondary" | "tertiary" | "danger">;
10
10
  size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
@@ -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<"outline" | "text" | "normal">;
11
+ type: import("@angular/core").InputSignal<"normal" | "text" | "outline">;
12
12
  icon: string;
13
13
  constructor();
14
14
  handleShow(): void;
@@ -16,7 +16,7 @@ import * as i0 from "@angular/core";
16
16
  export declare class KvIconComponent {
17
17
  icon: import("@angular/core").InputSignal<string>;
18
18
  shape: import("@angular/core").InputSignal<"circle" | "square" | "hexagon">;
19
- severity: import("@angular/core").InputSignal<"danger" | "info" | "success" | "warning" | "system" | "contrast">;
19
+ severity: import("@angular/core").InputSignal<"info" | "success" | "warning" | "danger" | "system" | "contrast">;
20
20
  size: import("@angular/core").InputSignal<"small" | "large" | "medium">;
21
21
  static ɵfac: i0.ɵɵFactoryDeclaration<KvIconComponent, never>;
22
22
  static ɵcmp: i0.ɵɵComponentDeclaration<KvIconComponent, "kv-icon", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "shape": { "alias": "shape"; "required": true; "isSignal": true; }; "severity": { "alias": "severity"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
@@ -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) => 1 | 0 | -1;
156
+ sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -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) => 1 | 0 | -1;
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) => 1 | 0 | -1;
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;
@@ -1,6 +1,6 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class KvTagComponent {
3
- severity: import("@angular/core").InputSignal<"danger" | "info" | "success" | "warn" | "system" | "contrast">;
3
+ severity: import("@angular/core").InputSignal<"info" | "success" | "warn" | "danger" | "system" | "contrast">;
4
4
  border: import("@angular/core").InputSignal<boolean>;
5
5
  color: import("@angular/core").InputSignal<string | null>;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<KvTagComponent, never>;
@@ -19,7 +19,7 @@ export declare class KvWidgetCardComponent {
19
19
  * Define a cor do ícone do card.
20
20
  * @required
21
21
  */
22
- iconSeverity: import("@angular/core").InputSignal<"danger" | "info" | "success" | "warning" | "system" | "contrast">;
22
+ iconSeverity: import("@angular/core").InputSignal<"info" | "success" | "warning" | "danger" | "system" | "contrast">;
23
23
  /**
24
24
  * Título do card.
25
25
  * @required
@@ -39,7 +39,7 @@ export declare class KvWidgetCardComponent {
39
39
  * Define o background-color do card.
40
40
  * @default true
41
41
  */
42
- severity: import("@angular/core").InputSignal<"danger" | "success" | "warning" | "system" | undefined>;
42
+ severity: import("@angular/core").InputSignal<"success" | "warning" | "danger" | "system" | undefined>;
43
43
  /**
44
44
  * Valor do indicador principal do card.
45
45
  * @default
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "2.0.252",
3
+ "version": "2.0.253",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",