ninegrid2 6.155.0 → 6.156.0

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.
@@ -10719,7 +10719,7 @@ class ninegrid {
10719
10719
  Object.defineProperty(Element.prototype, "isHidden", {
10720
10720
  get: function () {
10721
10721
  const style = window.getComputedStyle(this);
10722
- console.log(style.display, style.visibility, style.opacity);
10722
+ console.log(this, style.display, style.visibility, style.opacity);
10723
10723
  return style.display === "none" || style.visibility === "hidden" || style.opacity === "0";
10724
10724
  }
10725
10725
  });
@@ -10717,7 +10717,7 @@ class ninegrid {
10717
10717
  Object.defineProperty(Element.prototype, "isHidden", {
10718
10718
  get: function () {
10719
10719
  const style = window.getComputedStyle(this);
10720
- console.log(style.display, style.visibility, style.opacity);
10720
+ console.log(this, style.display, style.visibility, style.opacity);
10721
10721
  return style.display === "none" || style.visibility === "hidden" || style.opacity === "0";
10722
10722
  }
10723
10723
  });
@@ -13,7 +13,7 @@ export class ninegrid {
13
13
  Object.defineProperty(Element.prototype, "isHidden", {
14
14
  get: function () {
15
15
  const style = window.getComputedStyle(this);
16
- console.log(style.display, style.visibility, style.opacity);
16
+ console.log(this, style.display, style.visibility, style.opacity);
17
17
  return style.display === "none" || style.visibility === "hidden" || style.opacity === "0";
18
18
  }
19
19
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.155.0",
4
+ "version": "6.156.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
@@ -13,7 +13,7 @@ export class ninegrid {
13
13
  Object.defineProperty(Element.prototype, "isHidden", {
14
14
  get: function () {
15
15
  const style = window.getComputedStyle(this);
16
- console.log(style.display, style.visibility, style.opacity);
16
+ console.log(this, style.display, style.visibility, style.opacity);
17
17
  return style.display === "none" || style.visibility === "hidden" || style.opacity === "0";
18
18
  }
19
19
  });