igniteui-angular 21.2.3 → 21.2.4
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/fesm2022/igniteui-angular-grids-core.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-grid.mjs +5 -3
- package/fesm2022/igniteui-angular-grids-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-lite.mjs.map +1 -1
- package/package.json +1 -1
- package/types/igniteui-angular-grids-core.d.ts +5 -4
- package/types/igniteui-angular-grids-lite.d.ts +1 -1
|
@@ -3727,11 +3727,13 @@ class IgxGridBaseDirective {
|
|
|
3727
3727
|
}
|
|
3728
3728
|
return;
|
|
3729
3729
|
}
|
|
3730
|
-
|
|
3731
|
-
if
|
|
3730
|
+
const inRow = overlaySettings?.target?.classList.contains("igx-grid__tr");
|
|
3731
|
+
// do not hide the overlay if it's attached to a row on scroll
|
|
3732
|
+
if (inRow) {
|
|
3732
3733
|
return;
|
|
3733
3734
|
}
|
|
3734
|
-
|
|
3735
|
+
const isInGrid = overlaySettings?.target instanceof Node && this.tbody.nativeElement.contains(overlaySettings?.target);
|
|
3736
|
+
if (isInGrid && this.overlayIDs.indexOf(event.id) === -1) {
|
|
3735
3737
|
this.overlayIDs.push(event.id);
|
|
3736
3738
|
}
|
|
3737
3739
|
});
|