keevo-components 2.0.114 → 2.0.115
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-table/kv-table.component.mjs +2 -2
- package/esm2022/lib/components/kv-timeline/kv-timeline.component.mjs +29 -31
- package/fesm2022/keevo-components.mjs +29 -31
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-icon/kv-icon.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-tag/kv-tag.component.d.ts +1 -1
- package/lib/components/kv-timeline/kv-timeline.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/src/lib/components/kv-table/kv-table.component.scss +6 -9
|
@@ -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" | "hexagon" | "square">;
|
|
19
|
-
severity: import("@angular/core").InputSignal<"
|
|
19
|
+
severity: import("@angular/core").InputSignal<"success" | "system" | "warning" | "danger" | "contrast" | "info">;
|
|
20
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>;
|
|
@@ -4,7 +4,7 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class KvStepperComponent {
|
|
5
5
|
panels: KvStepperPanel[];
|
|
6
6
|
activeStep: number;
|
|
7
|
-
orientation: import("@angular/core").InputSignal<"
|
|
7
|
+
orientation: import("@angular/core").InputSignal<"horizontal" | "vertical">;
|
|
8
8
|
buttonsAlign: import("@angular/core").InputSignal<"center" | "start" | "end">;
|
|
9
9
|
linear: import("@angular/core").InputSignal<boolean>;
|
|
10
10
|
activeStepChange: EventEmitter<number>;
|
|
@@ -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) => 1 | 0 | -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) => 1 | 0 | -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<"
|
|
3
|
+
severity: import("@angular/core").InputSignal<"success" | "system" | "danger" | "contrast" | "info" | "warn">;
|
|
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>;
|
|
@@ -10,7 +10,7 @@ export declare class KvTimelineComponent {
|
|
|
10
10
|
layout: 'horizontal' | 'vertical';
|
|
11
11
|
oppositeTemplate: TemplateRef<any>;
|
|
12
12
|
contentTemplate: TemplateRef<any>;
|
|
13
|
-
|
|
13
|
+
parsedEvents: import("@angular/core").Signal<any[]>;
|
|
14
14
|
constructor();
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvTimelineComponent, never>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<KvTimelineComponent, "kv-timeline", never, { "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "getSeverityFn": { "alias": "getSeverityFn"; "required": false; }; "getLastActiveCount": { "alias": "getLastActiveCount"; "required": false; }; "lastOnly": { "alias": "lastOnly"; "required": false; }; "align": { "alias": "align"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "oppositeTemplate": { "alias": "oppositeTemplate"; "required": false; }; "contentTemplate": { "alias": "contentTemplate"; "required": false; }; }, {}, never, never, true, 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<"
|
|
22
|
+
iconSeverity: import("@angular/core").InputSignal<"success" | "system" | "warning" | "danger" | "contrast" | "info">;
|
|
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" | "system" | "warning" | "danger">;
|
|
43
43
|
/**
|
|
44
44
|
* Valor do indicador principal do card.
|
|
45
45
|
* @default
|
package/package.json
CHANGED
|
@@ -162,19 +162,12 @@ input {
|
|
|
162
162
|
.p-checkbox-label {
|
|
163
163
|
font-size: 0.875rem;
|
|
164
164
|
}
|
|
165
|
+
|
|
165
166
|
.p-datatable .p-paginator-bottom {
|
|
166
167
|
border: solid #ffffff;
|
|
167
168
|
scale: 0.75;
|
|
168
169
|
}
|
|
169
170
|
|
|
170
|
-
.p-tieredmenu .p-menuitem > .p-menuitem-content .p-menuitem-link {
|
|
171
|
-
padding: 0.5rem 0.5rem;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
.p-tieredmenu{
|
|
175
|
-
padding: 0.5rem 0.5rem;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
171
|
.p-datatable.p-datatable-sm .p-datatable-tbody > tr > td {
|
|
179
172
|
padding: 0.1rem 0.1rem;
|
|
180
173
|
}
|
|
@@ -233,7 +226,11 @@ input {
|
|
|
233
226
|
pointer-events: auto !important;
|
|
234
227
|
}
|
|
235
228
|
|
|
236
|
-
|
|
237
229
|
::ng-deep p-tieredmenusub .p-disabled *:active {
|
|
238
230
|
pointer-events: none !important;
|
|
231
|
+
font-size: 0.75rem !important;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
::ng-deep .p-tieredmenu .p-tieredmenu-root-list {
|
|
235
|
+
font-size: 0.75rem !important;
|
|
239
236
|
}
|