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.
@@ -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<"left" | "right">;
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<"normal" | "text" | "outline">;
11
+ type: import("@angular/core").InputSignal<"text" | "normal" | "outline">;
12
12
  icon: string;
13
13
  constructor();
14
14
  handleShow(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "2.0.123",
3
+ "version": "2.0.124",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",
@@ -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
- // ::ng-deep .p-menuitem-content {
223
- // padding: 0.5rem !important;
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
  }