keevo-components 1.8.467 → 1.8.468

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.468",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",
@@ -206,4 +206,18 @@ input {
206
206
 
207
207
  ::ng-deep .p-menuitem-content {
208
208
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
209
+ }
210
+
211
+
212
+ // ::ng-deep p-tieredmenusub .p-tieredmenu-root-list .p-menuitem.p-disabled {
213
+ // pointer-events: auto !important;
214
+ // }
215
+
216
+ ::ng-deep .p-disabled * {
217
+ pointer-events: auto !important;
218
+ }
219
+
220
+
221
+ ::ng-deep p-tieredmenusub .p-disabled *:active {
222
+ pointer-events: none !important;
209
223
  }