keevo-components 2.0.123 → 2.0.124
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-icon/kv-icon.component.mjs +3 -3
- package/esm2022/lib/components/kv-stacked-bar-chart/kv-stacked-bar-chart.component.mjs +3 -3
- package/esm2022/lib/components/kv-table/kv-table.component.mjs +2 -2
- package/esm2022/lib/components/kv-widget-card/kv-widget-card.component.mjs +3 -3
- package/fesm2022/keevo-components.mjs +8 -8
- 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 +1 -1
- package/package.json +1 -1
- package/src/lib/components/kv-table/kv-table.component.scss +9 -5
|
@@ -9,7 +9,7 @@ export declare class KvButtonComponent {
|
|
|
9
9
|
severity: import("@angular/core").InputSignal<"danger" | "primary" | "secondary" | "tertiary">;
|
|
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;
|
package/package.json
CHANGED
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
// color: #64748b;
|
|
61
61
|
color: rgb(var(--kv-color-system), .75);
|
|
62
62
|
transition: all 0.4s;
|
|
63
|
-
padding: 0.1rem !important;
|
|
63
|
+
// padding: 0.1rem !important;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
.icon-more:hover,
|
|
@@ -219,9 +219,9 @@ input {
|
|
|
219
219
|
display: inline-block;
|
|
220
220
|
}
|
|
221
221
|
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
222
|
+
::ng-deep .p-tieredmenu {
|
|
223
|
+
padding: 0.5rem !important;
|
|
224
|
+
}
|
|
225
225
|
|
|
226
226
|
:host ::ng-deep .p-disabled * {
|
|
227
227
|
pointer-events: auto !important;
|
|
@@ -235,5 +235,9 @@ input {
|
|
|
235
235
|
|
|
236
236
|
::ng-deep .p-tieredmenu .p-tieredmenu-root-list {
|
|
237
237
|
font-size: 0.75rem !important;
|
|
238
|
-
padding: 0.5rem !important;
|
|
238
|
+
// padding: 0.5rem !important;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
::ng-deep .p-tieredmenu .p-menuitem > .p-menuitem-content {
|
|
242
|
+
padding: 0.5rem;
|
|
239
243
|
}
|