keevo-components 1.8.559 → 2.0.1

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 @@ export declare class KvButtonComponent {
4
4
  type: import("@angular/core").InputSignal<"text" | "outline" | undefined>;
5
5
  loading: import("@angular/core").InputSignal<boolean>;
6
6
  severity: import("@angular/core").InputSignal<"primary" | "secondary" | "tertiary">;
7
- size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
7
+ size: import("@angular/core").InputSignal<"normal" | "large" | "small">;
8
8
  icon: import("@angular/core").InputSignal<string>;
9
9
  iconPosition: import("@angular/core").InputSignal<"left" | "right">;
10
10
  label: import("@angular/core").InputSignal<string>;
@@ -4,7 +4,7 @@ import * as i0 from "@angular/core";
4
4
  export declare class KvButtonPopupComponent extends BaseComponentButton {
5
5
  items: MenuItem[];
6
6
  classBtn: string;
7
- size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
7
+ size: import("@angular/core").InputSignal<"normal" | "large" | "small">;
8
8
  icon: string;
9
9
  constructor();
10
10
  handleShow(): void;
@@ -9,8 +9,10 @@ import * as i7 from "../kv-inputs/kv-inputs.module";
9
9
  import * as i8 from "../../api/pipes/pipes.module";
10
10
  import * as i9 from "../../api/modules/primeng.module";
11
11
  import * as i10 from "./top-icons/top-icons.component";
12
+ import * as i11 from "primeng/avatar";
13
+ import * as i12 from "primeng/avatargroup";
12
14
  export declare class KvLayoutModule {
13
15
  static ɵfac: i0.ɵɵFactoryDeclaration<KvLayoutModule, never>;
14
- static ɵmod: i0.ɵɵNgModuleDeclaration<KvLayoutModule, [typeof i1.DropdownMasterComponent, typeof i2.KvLayoutComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.KvButtonsModule, typeof i6.KvButtonModule, typeof i7.KvInputsModule, typeof i8.PipesModule, typeof i9.PrimeNgModule, typeof i4.ReactiveFormsModule, typeof i10.TopIconsComponent, typeof i6.KvButtonModule, typeof i9.PrimeNgModule], [typeof i2.KvLayoutComponent]>;
16
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KvLayoutModule, [typeof i1.DropdownMasterComponent, typeof i2.KvLayoutComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.KvButtonsModule, typeof i6.KvButtonModule, typeof i7.KvInputsModule, typeof i8.PipesModule, typeof i9.PrimeNgModule, typeof i4.ReactiveFormsModule, typeof i10.TopIconsComponent, typeof i6.KvButtonModule, typeof i9.PrimeNgModule, typeof i11.AvatarModule, typeof i12.AvatarGroupModule], [typeof i2.KvLayoutComponent]>;
15
17
  static ɵinj: i0.ɵɵInjectorDeclaration<KvLayoutModule>;
16
18
  }
@@ -139,7 +139,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.8.559",
3
+ "version": "2.0.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",
@@ -149,6 +149,7 @@ input {
149
149
  font-size: 0.875rem;
150
150
  }
151
151
  .p-datatable .p-paginator-bottom {
152
+ border: solid #ffffff;
152
153
  scale: 0.75;
153
154
  }
154
155