primeng 17.18.2 → 17.18.3

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,6 +9,7 @@
9
9
  }
10
10
 
11
11
  .p-splitter-panel {
12
+ overflow: hidden;
12
13
  flex-grow: 1;
13
14
  }
14
15
 
@@ -62,4 +63,8 @@
62
63
  width: 24px;
63
64
  height: 100%;
64
65
  }
66
+
67
+ .p-splitter-resizing .p-splitter-panel {
68
+ pointer-events: none;
69
+ }
65
70
  }
package/table/table.d.ts CHANGED
@@ -776,7 +776,7 @@ export declare class Table implements OnInit, AfterViewInit, AfterContentInit, B
776
776
  handleRowClick(event: any): void;
777
777
  handleRowTouchEnd(event: Event): void;
778
778
  handleRowRightClick(event: any): void;
779
- selectRange(event: MouseEvent | KeyboardEvent, rowIndex: number): void;
779
+ selectRange(event: MouseEvent | KeyboardEvent, rowIndex: number, isMetaKeySelection?: boolean | undefined): void;
780
780
  clearSelectionRange(event: MouseEvent | KeyboardEvent): void;
781
781
  isSelected(rowData: any): boolean;
782
782
  findIndexInSelection(rowData: any): number;
@@ -140,6 +140,7 @@ export declare class Tooltip implements AfterViewInit, OnDestroy {
140
140
  blurListener: Nullable<Function>;
141
141
  scrollHandler: any;
142
142
  resizeListener: any;
143
+ interactionInProgress: boolean;
143
144
  constructor(platformId: any, el: ElementRef, zone: NgZone, config: PrimeNGConfig, renderer: Renderer2, viewContainer: ViewContainerRef);
144
145
  ngAfterViewInit(): void;
145
146
  ngOnChanges(simpleChange: SimpleChanges): void;