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