keevo-components 2.0.94 → 2.0.95
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-filter-cards/kv-filter-cards.component.mjs +31 -11
- package/esm2022/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.mjs +3 -3
- package/fesm2022/keevo-components.mjs +32 -12
- 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-filter-cards/kv-filter-cards.component.d.ts +2 -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-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(): "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;
|
|
@@ -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<"right" | "left">;
|
|
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<"text" | "normal" | "outline">;
|
|
12
12
|
icon: string;
|
|
13
13
|
constructor();
|
|
14
14
|
handleShow(): void;
|
|
@@ -3,7 +3,8 @@ export declare class KvFilterCardsComponent {
|
|
|
3
3
|
cards: import("@angular/core").InputSignal<KvFilterCardConfig[] | undefined>;
|
|
4
4
|
staticCards: import("@angular/core").InputSignal<boolean>;
|
|
5
5
|
cursorPointer: import("@angular/core").InputSignal<boolean>;
|
|
6
|
-
selectedCards: import("@angular/core").ModelSignal<KvFilterCardConfig[]>;
|
|
6
|
+
selectedCards: import("@angular/core").ModelSignal<number[] | KvFilterCardConfig[]>;
|
|
7
|
+
selectedCardsTratado: import("@angular/core").Signal<KvFilterCardConfig[]>;
|
|
7
8
|
loadingCards: import("@angular/core").InputSignal<boolean>;
|
|
8
9
|
wrapCards: import("@angular/core").InputSignal<boolean>;
|
|
9
10
|
alignCardsCenter: import("@angular/core").InputSignal<boolean>;
|
|
@@ -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<"valor" | "descricao">;
|
|
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" | "end" | "start">;
|
|
9
9
|
linear: import("@angular/core").InputSignal<boolean>;
|
|
10
10
|
activeStepChange: EventEmitter<number>;
|
|
11
11
|
concluirCallback: EventEmitter<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<"info" | "
|
|
3
|
+
severity: import("@angular/core").InputSignal<"info" | "warn" | "danger" | "success" | "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>;
|