@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.
package/dist/index.cjs.js CHANGED
@@ -239,7 +239,7 @@ const clearTimeout$1 = (timerId) => loadOrReturnBroker().clearTimeout(timerId);
239
239
  const setInterval$1 = (...args) => loadOrReturnBroker().setInterval(...args);
240
240
  const setTimeout$1 = (...args) => loadOrReturnBroker().setTimeout(...args);
241
241
 
242
- const version = "2.11.6";
242
+ const version = "2.11.7";
243
243
 
244
244
  /* eslint-disable */
245
245
  // ==UserScript==
@@ -6194,6 +6194,9 @@ class Utils {
6194
6194
  };
6195
6195
  }
6196
6196
  getMaxZIndexNodeInfoFromPoint($el, deviation) {
6197
+ if (typeof $el === "function") {
6198
+ $el = $el();
6199
+ }
6197
6200
  if (typeof $el === "number") {
6198
6201
  deviation = $el;
6199
6202
  $el = void 0;