keevo-components 2.0.114 → 2.0.116

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.
@@ -6,8 +6,8 @@ export declare class KvButtonComponent {
6
6
  fullWidth: import("@angular/core").InputSignal<boolean>;
7
7
  type: import("@angular/core").InputSignal<"text" | "outline" | undefined>;
8
8
  loading: import("@angular/core").InputSignal<boolean>;
9
- severity: import("@angular/core").InputSignal<"danger" | "primary" | "secondary" | "tertiary">;
10
- size: import("@angular/core").InputSignal<"small" | "large" | "normal">;
9
+ severity: import("@angular/core").InputSignal<"primary" | "secondary" | "tertiary" | "danger">;
10
+ size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
11
11
  icon: import("@angular/core").ModelSignal<string>;
12
12
  iconPosition: import("@angular/core").InputSignal<"left" | "right">;
13
13
  label: import("@angular/core").InputSignal<string>;
@@ -7,7 +7,7 @@ import * as i0 from "@angular/core";
7
7
  export declare class KvButtonPopupComponent extends BaseComponentButton {
8
8
  items: MenuItem[];
9
9
  classBtn: string;
10
- size: import("@angular/core").InputSignal<"small" | "large" | "normal">;
10
+ size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
11
11
  type: import("@angular/core").InputSignal<"normal" | "text" | "outline">;
12
12
  icon: string;
13
13
  constructor();
@@ -15,9 +15,9 @@ import * as i0 from "@angular/core";
15
15
  */
16
16
  export declare class KvIconComponent {
17
17
  icon: import("@angular/core").InputSignal<string>;
18
- shape: import("@angular/core").InputSignal<"circle" | "hexagon" | "square">;
19
- severity: import("@angular/core").InputSignal<"system" | "warning" | "danger" | "success" | "contrast" | "info">;
20
- size: import("@angular/core").InputSignal<"small" | "medium" | "large">;
18
+ shape: import("@angular/core").InputSignal<"circle" | "square" | "hexagon">;
19
+ severity: import("@angular/core").InputSignal<"success" | "info" | "danger" | "warning" | "system" | "contrast">;
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>;
23
23
  }
@@ -4,7 +4,7 @@ import * as i0 from "@angular/core";
4
4
  export declare class KvStepperComponent {
5
5
  panels: KvStepperPanel[];
6
6
  activeStep: number;
7
- orientation: import("@angular/core").InputSignal<"vertical" | "horizontal">;
7
+ orientation: import("@angular/core").InputSignal<"horizontal" | "vertical">;
8
8
  buttonsAlign: import("@angular/core").InputSignal<"center" | "start" | "end">;
9
9
  linear: import("@angular/core").InputSignal<boolean>;
10
10
  activeStepChange: EventEmitter<number>;
@@ -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) => 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;
@@ -1,6 +1,6 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class KvTagComponent {
3
- severity: import("@angular/core").InputSignal<"system" | "danger" | "success" | "contrast" | "info" | "warn">;
3
+ severity: import("@angular/core").InputSignal<"success" | "info" | "warn" | "danger" | "system" | "contrast">;
4
4
  border: import("@angular/core").InputSignal<boolean>;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<KvTagComponent, never>;
6
6
  static ɵcmp: i0.ɵɵComponentDeclaration<KvTagComponent, "kv-tag", never, { "severity": { "alias": "severity"; "required": false; "isSignal": true; }; "border": { "alias": "border"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
@@ -10,9 +10,11 @@ export declare class KvTimelineComponent {
10
10
  layout: 'horizontal' | 'vertical';
11
11
  oppositeTemplate: TemplateRef<any>;
12
12
  contentTemplate: TemplateRef<any>;
13
- get parsedEvents(): any[];
13
+ lastContentTemplate: TemplateRef<any>;
14
+ parsedEvents: import("@angular/core").Signal<any[]>;
15
+ isLastItem(index: number): boolean;
14
16
  constructor();
15
17
  static ɵfac: i0.ɵɵFactoryDeclaration<KvTimelineComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<KvTimelineComponent, "kv-timeline", never, { "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "getSeverityFn": { "alias": "getSeverityFn"; "required": false; }; "getLastActiveCount": { "alias": "getLastActiveCount"; "required": false; }; "lastOnly": { "alias": "lastOnly"; "required": false; }; "align": { "alias": "align"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "oppositeTemplate": { "alias": "oppositeTemplate"; "required": false; }; "contentTemplate": { "alias": "contentTemplate"; "required": false; }; }, {}, never, never, true, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvTimelineComponent, "kv-timeline", never, { "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "getSeverityFn": { "alias": "getSeverityFn"; "required": false; }; "getLastActiveCount": { "alias": "getLastActiveCount"; "required": false; }; "lastOnly": { "alias": "lastOnly"; "required": false; }; "align": { "alias": "align"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "oppositeTemplate": { "alias": "oppositeTemplate"; "required": false; }; "contentTemplate": { "alias": "contentTemplate"; "required": false; }; "lastContentTemplate": { "alias": "lastContentTemplate"; "required": false; }; }, {}, never, never, true, never>;
17
19
  }
18
20
  export {};
@@ -14,12 +14,12 @@ export declare class KvWidgetCardComponent {
14
14
  * Define o formato do ícone do card.
15
15
  * @required
16
16
  */
17
- iconShape: import("@angular/core").InputSignal<"circle" | "hexagon" | "square">;
17
+ iconShape: import("@angular/core").InputSignal<"circle" | "square" | "hexagon">;
18
18
  /**
19
19
  * Define a cor do ícone do card.
20
20
  * @required
21
21
  */
22
- iconSeverity: import("@angular/core").InputSignal<"system" | "warning" | "danger" | "success" | "contrast" | "info">;
22
+ iconSeverity: import("@angular/core").InputSignal<"success" | "info" | "danger" | "warning" | "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<"system" | "warning" | "danger" | "success">;
42
+ severity: import("@angular/core").InputSignal<"success" | "danger" | "warning" | "system">;
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.114",
3
+ "version": "2.0.116",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",
@@ -162,19 +162,12 @@ input {
162
162
  .p-checkbox-label {
163
163
  font-size: 0.875rem;
164
164
  }
165
+
165
166
  .p-datatable .p-paginator-bottom {
166
167
  border: solid #ffffff;
167
168
  scale: 0.75;
168
169
  }
169
170
 
170
- .p-tieredmenu .p-menuitem > .p-menuitem-content .p-menuitem-link {
171
- padding: 0.5rem 0.5rem;
172
- }
173
-
174
- .p-tieredmenu{
175
- padding: 0.5rem 0.5rem;
176
- }
177
-
178
171
  .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td {
179
172
  padding: 0.1rem 0.1rem;
180
173
  }
@@ -233,7 +226,11 @@ input {
233
226
  pointer-events: auto !important;
234
227
  }
235
228
 
236
-
237
229
  ::ng-deep p-tieredmenusub .p-disabled *:active {
238
230
  pointer-events: none !important;
231
+ font-size: 0.75rem !important;
232
+ }
233
+
234
+ ::ng-deep .p-tieredmenu .p-tieredmenu-root-list {
235
+ font-size: 0.75rem !important;
239
236
  }