keevo-components 2.0.19 → 2.0.20

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.
@@ -40,7 +40,7 @@ export declare abstract class BaseComponentDropDown extends BaseComponentInput<a
40
40
  protected addClick(event: Event): void;
41
41
  carregarCombo(filtro?: filtroCombo): void;
42
42
  protected carregarComboObs(obs: Observable<any>): void;
43
- emptyMessage(): "Digite para pesquisar" | "Nenhum resultado encontrado";
43
+ emptyMessage(): "Nenhum resultado encontrado" | "Digite para pesquisar";
44
44
  filterOptions(field: string, value: any): void;
45
45
  protected listar(): any;
46
46
  protected listarCombo(value: any): any;
@@ -6,7 +6,7 @@ export declare class KvButtonComponent {
6
6
  severity: import("@angular/core").InputSignal<"primary" | "secondary" | "tertiary">;
7
7
  size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
8
8
  icon: import("@angular/core").InputSignal<string>;
9
- iconPosition: import("@angular/core").InputSignal<"left" | "right">;
9
+ iconPosition: import("@angular/core").InputSignal<"right" | "left">;
10
10
  label: import("@angular/core").InputSignal<string>;
11
11
  disabled: import("@angular/core").InputSignal<boolean>;
12
12
  onClick: import("@angular/core").OutputEmitterRef<any>;
@@ -12,16 +12,19 @@ export declare class ProgressBarComponent {
12
12
  maxValue: number | undefined;
13
13
  /**
14
14
  * Label value of the progress.
15
+ * @deprecated Use label instead.
15
16
  * @group Props
16
17
  */
17
18
  label: string | undefined;
18
19
  /**
19
20
  * Whether to display the progress bar value.
21
+ * @deprecated Use showValue instead.
20
22
  * @group Props
21
23
  */
22
24
  showValue: boolean;
23
25
  /**
24
26
  * Whether to display the progress bar value.
27
+ * @deprecated Use showValue instead.
25
28
  * @group Props
26
29
  */
27
30
  showLabel: boolean;
@@ -62,6 +65,7 @@ export declare class ProgressBarComponent {
62
65
  * @group Props
63
66
  */
64
67
  color: string | undefined;
68
+ progressBarHeight: string | undefined;
65
69
  static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
66
- static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "kv-progress-bar", never, { "value": { "alias": "value"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showValue": { "alias": "showValue"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "labelStyleClass": { "alias": "labelStyleClass"; "required": false; }; "barStyleClass": { "alias": "barStyleClass"; "required": false; }; "style": { "alias": "style"; "required": false; }; "unit": { "alias": "unit"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never>;
70
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "kv-progress-bar", never, { "value": { "alias": "value"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showValue": { "alias": "showValue"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "labelStyleClass": { "alias": "labelStyleClass"; "required": false; }; "barStyleClass": { "alias": "barStyleClass"; "required": false; }; "style": { "alias": "style"; "required": false; }; "unit": { "alias": "unit"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "color": { "alias": "color"; "required": false; }; "progressBarHeight": { "alias": "progressBarHeight"; "required": false; }; }, {}, never, never, false, never>;
67
71
  }
@@ -5,7 +5,7 @@ export declare class KvStepperComponent {
5
5
  panels: KvStepperPanel[];
6
6
  activeStep: number;
7
7
  orientation: import("@angular/core").InputSignal<"vertical" | "horizontal">;
8
- buttonsAlign: import("@angular/core").InputSignal<"center" | "start" | "end">;
8
+ buttonsAlign: import("@angular/core").InputSignal<"center" | "end" | "start">;
9
9
  linear: import("@angular/core").InputSignal<boolean>;
10
10
  activeStepChange: EventEmitter<number>;
11
11
  concluirCallback: EventEmitter<void>;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "2.0.19",
3
+ "version": "2.0.20",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",