@sepveneto/dao 0.1.6 → 0.1.7

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/dist/dao.js CHANGED
@@ -237,6 +237,7 @@ var FederatedEvent = class {
237
237
  }
238
238
  }
239
239
  hitTestRecursive(n, j, M) {
240
+ if (this._interactivePrune(n)) return;
240
241
  let N = n.children;
241
242
  for (let P = N.length - 1; P >= 0; P--) {
242
243
  let F = N[P], I = this.hitTestRecursive(F, this._isInteractive(j) ? j : F.eventMode, M);