keevo-components 2.0.95 → 2.0.97
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.
- package/esm2022/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.mjs +3 -3
- package/esm2022/lib/components/kv-page-form/kv-page-form.component.mjs +3 -3
- package/esm2022/lib/components/kv-table-viewer/components/actions-lote-field/actions-lote-field.component.mjs +5 -3
- package/esm2022/lib/components/kv-table-viewer/kv-table-viewer.component.mjs +11 -4
- package/fesm2022/keevo-components.mjs +16 -9
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/api/base-components/base-component-dropdown.d.ts +1 -1
- package/lib/components/kv-button/kv-button.component.d.ts +1 -1
- package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +1 -1
- package/lib/components/kv-inputs/kv-editor/kv-editor.component.d.ts +1 -1
- package/lib/components/kv-stepper/kv-stepper.component.d.ts +1 -1
- package/lib/components/kv-table/kv-table.component.d.ts +1 -1
- package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +1 -1
- package/lib/components/kv-table-viewer/kv-table-viewer.component.d.ts +2 -0
- package/lib/components/kv-tag/kv-tag.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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(): "
|
|
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;
|
|
@@ -9,7 +9,7 @@ export declare class KvButtonComponent {
|
|
|
9
9
|
severity: import("@angular/core").InputSignal<"primary" | "secondary" | "tertiary" | "danger">;
|
|
10
10
|
size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
|
|
11
11
|
icon: import("@angular/core").ModelSignal<string>;
|
|
12
|
-
iconPosition: import("@angular/core").InputSignal<"
|
|
12
|
+
iconPosition: import("@angular/core").InputSignal<"left" | "right">;
|
|
13
13
|
label: import("@angular/core").InputSignal<string>;
|
|
14
14
|
disabled: import("@angular/core").InputSignal<boolean>;
|
|
15
15
|
onClick: import("@angular/core").OutputEmitterRef<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<"
|
|
11
|
+
type: import("@angular/core").InputSignal<"normal" | "text" | "outline">;
|
|
12
12
|
icon: string;
|
|
13
13
|
constructor();
|
|
14
14
|
handleShow(): void;
|
|
@@ -34,7 +34,7 @@ export declare class KvEditorComponent extends BaseComponentInput<string> implem
|
|
|
34
34
|
initLoadComplete: import("@angular/core").WritableSignal<boolean>;
|
|
35
35
|
isLoading: import("@angular/core").WritableSignal<boolean>;
|
|
36
36
|
editorToolbarHeight: import("@angular/core").WritableSignal<string>;
|
|
37
|
-
tipoVisualizacao: import("@angular/core").WritableSignal<"
|
|
37
|
+
tipoVisualizacao: import("@angular/core").WritableSignal<"descricao" | "valor">;
|
|
38
38
|
filteredVariables: import("@angular/core").WritableSignal<KvEditorVariavel[]>;
|
|
39
39
|
relatorios: import("@angular/core").InputSignal<KvEditorRelatorio[]>;
|
|
40
40
|
idRelatorioInitial: import("@angular/core").InputSignal<number>;
|
|
@@ -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" | "
|
|
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) =>
|
|
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) =>
|
|
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,5 +1,6 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
2
|
import { TablePageEvent } from 'primeng/table';
|
|
3
|
+
import { DatePipe } from '@angular/common';
|
|
3
4
|
import { MenuItem } from 'primeng/api';
|
|
4
5
|
import { CpfCnpjPipe } from '../../api/pipes/cpfcnpj.pipe';
|
|
5
6
|
import { TelefonePipe } from '../../api/pipes/telefone.pipe';
|
|
@@ -23,6 +24,7 @@ interface ColumnTableViewer {
|
|
|
23
24
|
export declare class KvTableViewerComponent {
|
|
24
25
|
cpfCnpjPipe: CpfCnpjPipe;
|
|
25
26
|
telefonePipe: TelefonePipe;
|
|
27
|
+
datePipe: DatePipe;
|
|
26
28
|
columns: import("@angular/core").InputSignal<ColumnTableViewer[]>;
|
|
27
29
|
actionsRow: import("@angular/core").InputSignal<MenuItem[] | undefined>;
|
|
28
30
|
actionsHeader: import("@angular/core").InputSignal<MenuItem[] | undefined>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class KvTagComponent {
|
|
3
|
-
severity: import("@angular/core").InputSignal<"info" | "
|
|
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>;
|