keevo-components 2.0.130 → 2.0.131
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 +3 -3
- package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.component.mjs +1 -1
- package/esm2022/lib/components/kv-table-viewer/kv-table-viewer.component.mjs +5 -5
- package/esm2022/lib/components/kv-tags/kv-tags.component.mjs +4 -3
- package/fesm2022/keevo-components.mjs +10 -9
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-icon/kv-icon.component.d.ts +1 -1
- package/lib/components/kv-tag/kv-tag.component.d.ts +1 -1
- package/lib/components/kv-tags/kv-tags.component.d.ts +3 -1
- package/lib/components/kv-widget-card/kv-widget-card.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -16,7 +16,7 @@ import * as i0 from "@angular/core";
|
|
|
16
16
|
export declare class KvIconComponent {
|
|
17
17
|
icon: import("@angular/core").InputSignal<string>;
|
|
18
18
|
shape: import("@angular/core").InputSignal<"circle" | "square" | "hexagon">;
|
|
19
|
-
severity: import("@angular/core").InputSignal<"info" | "
|
|
19
|
+
severity: import("@angular/core").InputSignal<"info" | "warning" | "danger" | "success" | "system" | "contrast">;
|
|
20
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>;
|
|
@@ -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" | "danger" | "success" | "warn" | "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>;
|
|
@@ -8,6 +8,7 @@ export declare class KvTagsComponent {
|
|
|
8
8
|
severity?: KvSeverity;
|
|
9
9
|
icon?: string;
|
|
10
10
|
}) => string>;
|
|
11
|
+
clickable: import("@angular/core").InputSignal<boolean>;
|
|
11
12
|
background: import("@angular/core").Signal<(tag: {
|
|
12
13
|
label: string;
|
|
13
14
|
severity?: KvSeverity;
|
|
@@ -22,10 +23,11 @@ export declare class KvTagsComponent {
|
|
|
22
23
|
clickTag(event: KvTagConfig): void;
|
|
23
24
|
private getTransparentMix;
|
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvTagsComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KvTagsComponent, "kv-tags", never, { "tags": { "alias": "tags"; "required": false; "isSignal": true; }; "hover": { "alias": "hover"; "required": false; "isSignal": true; }; }, { "onClickTag": "onClickTag"; }, never, never, false, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvTagsComponent, "kv-tags", never, { "tags": { "alias": "tags"; "required": false; "isSignal": true; }; "hover": { "alias": "hover"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; }, { "onClickTag": "onClickTag"; }, never, never, false, never>;
|
|
26
27
|
}
|
|
27
28
|
export type KvTagConfig = {
|
|
28
29
|
label: string;
|
|
29
30
|
severity?: KvSeverity;
|
|
30
31
|
icon?: string;
|
|
32
|
+
value?: number;
|
|
31
33
|
};
|
|
@@ -19,7 +19,7 @@ export declare class KvWidgetCardComponent {
|
|
|
19
19
|
* Define a cor do ícone do card.
|
|
20
20
|
* @required
|
|
21
21
|
*/
|
|
22
|
-
iconSeverity: import("@angular/core").InputSignal<"info" | "
|
|
22
|
+
iconSeverity: import("@angular/core").InputSignal<"info" | "warning" | "danger" | "success" | "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<"
|
|
42
|
+
severity: import("@angular/core").InputSignal<"warning" | "danger" | "success" | "system" | undefined>;
|
|
43
43
|
/**
|
|
44
44
|
* Valor do indicador principal do card.
|
|
45
45
|
* @default
|