ninegrid2 6.154.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,6 +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(this, style.display, style.visibility, style.opacity);
10722
10723
  return style.display === "none" || style.visibility === "hidden" || style.opacity === "0";
10723
10724
  }
10724
10725
  });
@@ -10717,6 +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(this, style.display, style.visibility, style.opacity);
10720
10721
  return style.display === "none" || style.visibility === "hidden" || style.opacity === "0";
10721
10722
  }
10722
10723
  });
@@ -283,7 +283,7 @@ class ngFilterButton extends HTMLElement
283
283
 
284
284
  const panel = this.#owner.shadowRoot.querySelector('ng-filter-panel');
285
285
 
286
- console.log(panel.isHidden)
286
+ console.log(panel.isHidden);
287
287
 
288
288
  panel.style.display = panel.isHidden ? 'flex' : 'none';
289
289
 
@@ -13,6 +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(this, style.display, style.visibility, style.opacity);
16
17
  return style.display === "none" || style.visibility === "hidden" || style.opacity === "0";
17
18
  }
18
19
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.154.0",
4
+ "version": "6.156.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
@@ -283,7 +283,7 @@ class ngFilterButton extends HTMLElement
283
283
 
284
284
  const panel = this.#owner.shadowRoot.querySelector('ng-filter-panel');
285
285
 
286
- console.log(panel.isHidden)
286
+ console.log(panel.isHidden);
287
287
 
288
288
  panel.style.display = panel.isHidden ? 'flex' : 'none';
289
289
 
@@ -13,6 +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(this, style.display, style.visibility, style.opacity);
16
17
  return style.display === "none" || style.visibility === "hidden" || style.opacity === "0";
17
18
  }
18
19
  });