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.
- package/dist/bundle.cjs.js +1 -1
- package/dist/bundle.esm.js +1 -1
- package/dist/utils/ninegrid.js +1 -1
- package/package.json +1 -1
- package/src/utils/ninegrid.js +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -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
|
});
|
package/dist/bundle.esm.js
CHANGED
|
@@ -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
|
});
|
package/dist/utils/ninegrid.js
CHANGED
|
@@ -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
package/src/utils/ninegrid.js
CHANGED
|
@@ -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
|
});
|