keevo-components 2.0.102 → 2.0.103

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(): "Nenhum resultado encontrado" | "Digite para pesquisar";
43
+ emptyMessage(): "Digite para pesquisar" | "Nenhum resultado encontrado";
44
44
  filterOptions(field: string, value: any): void;
45
45
  protected listar(): any;
46
46
  protected listarCombo(value: any): 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<"text" | "outline" | "normal">;
11
+ type: import("@angular/core").InputSignal<"text" | "normal" | "outline">;
12
12
  icon: string;
13
13
  constructor();
14
14
  handleShow(): void;
@@ -35,6 +35,8 @@ export declare class KvEditorComponent extends BaseComponentInput<string> implem
35
35
  filteredVariables: import("@angular/core").WritableSignal<KvEditorVariavel[]>;
36
36
  relatorios: import("@angular/core").InputSignal<KvEditorRelatorio[]>;
37
37
  idRelatorioInitial: import("@angular/core").InputSignal<number>;
38
+ printButton: import("@angular/core").InputSignal<boolean>;
39
+ labelEmptyDropdown: import("@angular/core").InputSignal<string>;
38
40
  idRelatorioSelected: import("@angular/core").Signal<number>;
39
41
  relatorio: import("@angular/core").Signal<KvEditorRelatorio | null>;
40
42
  isLoadingPdf: import("@angular/core").Signal<boolean>;
@@ -60,5 +62,5 @@ export declare class KvEditorComponent extends BaseComponentInput<string> implem
60
62
  closeVariablesPanel(): void;
61
63
  showInstrucoes(): void;
62
64
  static ɵfac: i0.ɵɵFactoryDeclaration<KvEditorComponent, never>;
63
- static ɵcmp: i0.ɵɵComponentDeclaration<KvEditorComponent, "kv-editor", never, { "canvaHeigth": { "alias": "canvaHeigth"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "debug": { "alias": "debug"; "required": false; }; "relatorios": { "alias": "relatorios"; "required": false; "isSignal": true; }; "idRelatorioInitial": { "alias": "idRelatorioInitial"; "required": false; "isSignal": true; }; }, { "onTextChange": "onTextChange"; "onSelectionChange": "onSelectionChange"; "outputRaw": "outputRaw"; "outputHtml": "outputHtml"; }, never, never, false, never>;
65
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvEditorComponent, "kv-editor", never, { "canvaHeigth": { "alias": "canvaHeigth"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "debug": { "alias": "debug"; "required": false; }; "relatorios": { "alias": "relatorios"; "required": false; "isSignal": true; }; "idRelatorioInitial": { "alias": "idRelatorioInitial"; "required": false; "isSignal": true; }; "printButton": { "alias": "printButton"; "required": false; "isSignal": true; }; "labelEmptyDropdown": { "alias": "labelEmptyDropdown"; "required": false; "isSignal": true; }; }, { "onTextChange": "onTextChange"; "onSelectionChange": "onSelectionChange"; "outputRaw": "outputRaw"; "outputHtml": "outputHtml"; }, never, never, false, never>;
64
66
  }
@@ -5,7 +5,7 @@ export declare class KvStepperComponent {
5
5
  panels: KvStepperPanel[];
6
6
  activeStep: number;
7
7
  orientation: import("@angular/core").InputSignal<"horizontal" | "vertical">;
8
- buttonsAlign: import("@angular/core").InputSignal<"center" | "end" | "start">;
8
+ buttonsAlign: import("@angular/core").InputSignal<"center" | "start" | "end">;
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) => 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" | "warn" | "success" | "system" | "contrast">;
3
+ severity: import("@angular/core").InputSignal<"info" | "success" | "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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "2.0.102",
3
+ "version": "2.0.103",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",