@whitesev/utils 2.11.6 → 2.11.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.
@@ -242,7 +242,7 @@ System.register('Utils', [], (function (exports) {
242
242
  const setInterval$1 = (...args) => loadOrReturnBroker().setInterval(...args);
243
243
  const setTimeout$1 = (...args) => loadOrReturnBroker().setTimeout(...args);
244
244
 
245
- const version = "2.11.6";
245
+ const version = "2.11.7";
246
246
 
247
247
  /* eslint-disable */
248
248
  // ==UserScript==
@@ -6197,6 +6197,9 @@ System.register('Utils', [], (function (exports) {
6197
6197
  };
6198
6198
  }
6199
6199
  getMaxZIndexNodeInfoFromPoint($el, deviation) {
6200
+ if (typeof $el === "function") {
6201
+ $el = $el();
6202
+ }
6200
6203
  if (typeof $el === "number") {
6201
6204
  deviation = $el;
6202
6205
  $el = void 0;