igniteui-angular 12.3.22 → 12.3.23

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.
@@ -21400,7 +21400,7 @@ class IgxDragDirective {
21400
21400
  let elementsFromPoint = this.getElementsAtPoint(pageX, pageY);
21401
21401
  // Check for shadowRoot instance and use it if present
21402
21402
  for (const elFromPoint of elementsFromPoint) {
21403
- if ((elFromPoint === null || elFromPoint === void 0 ? void 0 : elFromPoint.shadowRoot) !== null) {
21403
+ if (!!(elFromPoint === null || elFromPoint === void 0 ? void 0 : elFromPoint.shadowRoot)) {
21404
21404
  elementsFromPoint = elFromPoint.shadowRoot.elementsFromPoint(pageX, pageY);
21405
21405
  }
21406
21406
  }