keevo-components 1.8.467 → 1.8.469

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.
@@ -26,7 +26,7 @@ export declare class KvDropdownComponent extends BaseComponentDropDown implement
26
26
  onWindowResize(): void;
27
27
  setWidth(): void;
28
28
  onInputLazyLoad(event: any): void;
29
- isOptionDisabled: (option: any) => boolean;
29
+ isOptionDisabled: import("@angular/core").Signal<(option: any) => boolean>;
30
30
  getOptionTooltip: (option: any) => any;
31
31
  static ɵfac: i0.ɵɵFactoryDeclaration<KvDropdownComponent, never>;
32
32
  static ɵcmp: i0.ɵɵComponentDeclaration<KvDropdownComponent, "kv-dropdown", never, { "filterPlaceholder": { "alias": "filterPlaceholder"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "dropDowValue": { "alias": "dropDowValue"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; }; "selectedItemTemplate": { "alias": "selectedItemTemplate"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "virtualScrollItemSize": { "alias": "virtualScrollItemSize"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; "isSignal": true; }; "disabledOptions": { "alias": "disabledOptions"; "required": false; "isSignal": true; }; }, { "onLazyLoad": "onLazyLoad"; }, never, ["*"], false, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.8.467",
3
+ "version": "1.8.469",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",
@@ -201,9 +201,15 @@ input {
201
201
  display: inline-block;
202
202
  }
203
203
 
204
-
205
- // class="px-2 py-4"
206
-
207
204
  ::ng-deep .p-menuitem-content {
208
205
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
206
+ }
207
+
208
+ ::ng-deep .p-disabled * {
209
+ pointer-events: auto !important;
210
+ }
211
+
212
+
213
+ ::ng-deep p-tieredmenusub .p-disabled *:active {
214
+ pointer-events: none !important;
209
215
  }