keevo-components 2.0.265 → 2.0.266
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-card-color/kv-card-color.component.mjs +18 -0
- package/esm2022/lib/components/kv-image-upload/kv-image-upload.component.mjs +3 -1
- package/esm2022/lib/components/kv-inputs/kv-tree-multi-select/kv-tree-multi-select.component.mjs +3 -3
- package/esm2022/lib/components/kv-progress-bar-new/kv-progress-bar-new.component.mjs +35 -0
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/keevo-components.mjs +54 -3
- package/fesm2022/keevo-components.mjs.map +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 +2 -2
- package/lib/components/kv-card-color/kv-card-color.component.d.ts +10 -0
- package/lib/components/kv-icon/kv-icon.component.d.ts +2 -2
- package/lib/components/kv-progress-bar-new/kv-progress-bar-new.component.d.ts +10 -0
- package/lib/components/kv-table-viewer/kv-table-viewer.component.d.ts +1 -1
- package/lib/components/kv-tag/kv-tag.component.d.ts +1 -1
- package/lib/components/kv-widget-card/kv-widget-card.component.d.ts +2 -2
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -7,7 +7,7 @@ export declare class KvButtonComponent {
|
|
|
7
7
|
type: import("@angular/core").InputSignal<"text" | "outline" | undefined>;
|
|
8
8
|
loading: import("@angular/core").InputSignal<boolean>;
|
|
9
9
|
severity: import("@angular/core").InputSignal<"primary" | "secondary" | "tertiary" | "danger">;
|
|
10
|
-
size: import("@angular/core").InputSignal<"small" | "
|
|
10
|
+
size: import("@angular/core").InputSignal<"small" | "large" | "normal">;
|
|
11
11
|
icon: import("@angular/core").ModelSignal<string>;
|
|
12
12
|
iconPosition: import("@angular/core").InputSignal<"right" | "left">;
|
|
13
13
|
label: import("@angular/core").InputSignal<string>;
|
|
@@ -7,8 +7,8 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class KvButtonPopupComponent extends BaseComponentButton {
|
|
8
8
|
items: MenuItem[];
|
|
9
9
|
classBtn: string;
|
|
10
|
-
size: import("@angular/core").InputSignal<"small" | "
|
|
11
|
-
type: import("@angular/core").InputSignal<"text" | "
|
|
10
|
+
size: import("@angular/core").InputSignal<"small" | "large" | "normal">;
|
|
11
|
+
type: import("@angular/core").InputSignal<"text" | "normal" | "outline">;
|
|
12
12
|
icon: string;
|
|
13
13
|
constructor();
|
|
14
14
|
handleShow(): void;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class KvCardColorComponent {
|
|
3
|
+
color: import("@angular/core").InputSignal<string>;
|
|
4
|
+
icon: import("@angular/core").InputSignal<string>;
|
|
5
|
+
title: import("@angular/core").InputSignal<string>;
|
|
6
|
+
subtitle: import("@angular/core").InputSignal<string | undefined>;
|
|
7
|
+
value: import("@angular/core").InputSignal<string | undefined>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvCardColorComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvCardColorComponent, "kv-card-color", never, { "color": { "alias": "color"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -16,8 +16,8 @@ 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" | "
|
|
20
|
-
size: import("@angular/core").InputSignal<"small" | "
|
|
19
|
+
severity: import("@angular/core").InputSignal<"info" | "success" | "warning" | "danger" | "system" | "contrast">;
|
|
20
|
+
size: import("@angular/core").InputSignal<"small" | "medium" | "large">;
|
|
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>;
|
|
23
23
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class KvProgressBarNewComponent {
|
|
3
|
+
currentProgress: import("@angular/core").InputSignal<number>;
|
|
4
|
+
totalProgress: import("@angular/core").InputSignal<number>;
|
|
5
|
+
size: import("@angular/core").InputSignal<"small" | "medium" | "large">;
|
|
6
|
+
percentage: import("@angular/core").Signal<string | 0>;
|
|
7
|
+
setSize: import("@angular/core").Signal<"xs" | "sm" | "md">;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvProgressBarNewComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvProgressBarNewComponent, "kv-progress-bar-new", never, { "currentProgress": { "alias": "currentProgress"; "required": false; "isSignal": true; }; "totalProgress": { "alias": "totalProgress"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -32,7 +32,7 @@ export declare class KvTableViewerComponent implements OnDestroy {
|
|
|
32
32
|
elementRef: ElementRef<any>;
|
|
33
33
|
renderer: Renderer2;
|
|
34
34
|
columns: import("@angular/core").InputSignal<ColumnTableViewer[]>;
|
|
35
|
-
actionsRow: import("@angular/core").InputSignal<[] |
|
|
35
|
+
actionsRow: import("@angular/core").InputSignal<MenuItem[] | []>;
|
|
36
36
|
actionsHeader: import("@angular/core").InputSignal<MenuItem[] | undefined>;
|
|
37
37
|
actionsLote: import("@angular/core").InputSignal<MenuItem[] | undefined>;
|
|
38
38
|
data: import("@angular/core").InputSignal<any[]>;
|
|
@@ -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
|
color: import("@angular/core").InputSignal<string | null>;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvTagComponent, never>;
|
|
@@ -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" | "success" | "warning" | "danger" | "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<"success" | "warning" | "danger" | "system" | undefined>;
|
|
43
43
|
/**
|
|
44
44
|
* Valor do indicador principal do card.
|
|
45
45
|
* @default
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -336,3 +336,5 @@ export * from './lib/components/kv-inputs/kv-chips/kv-chips.component';
|
|
|
336
336
|
export * from './lib/components/kv-select-cards/kv-select-cards.component';
|
|
337
337
|
export * from './lib/components/kv-file-upload-new/kv-file-upload-new.component';
|
|
338
338
|
export * from './lib/components/kv-accordion/kv-accordion.component';
|
|
339
|
+
export * from './lib/components/kv-card-color/kv-card-color.component';
|
|
340
|
+
export * from './lib/components/kv-progress-bar-new/kv-progress-bar-new.component';
|