ninegrid2 6.154.0 → 6.155.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 -0
- package/dist/bundle.esm.js +1 -0
- package/dist/etc/ngFiltering.js +1 -1
- package/dist/utils/ninegrid.js +1 -0
- package/package.json +1 -1
- package/src/etc/ngFiltering.js +1 -1
- package/src/utils/ninegrid.js +1 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -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(style.display, style.visibility, style.opacity);
|
|
10722
10723
|
return style.display === "none" || style.visibility === "hidden" || style.opacity === "0";
|
|
10723
10724
|
}
|
|
10724
10725
|
});
|
package/dist/bundle.esm.js
CHANGED
|
@@ -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(style.display, style.visibility, style.opacity);
|
|
10720
10721
|
return style.display === "none" || style.visibility === "hidden" || style.opacity === "0";
|
|
10721
10722
|
}
|
|
10722
10723
|
});
|
package/dist/etc/ngFiltering.js
CHANGED
|
@@ -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
|
|
package/dist/utils/ninegrid.js
CHANGED
|
@@ -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(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
package/src/etc/ngFiltering.js
CHANGED
|
@@ -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
|
|
package/src/utils/ninegrid.js
CHANGED
|
@@ -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(style.display, style.visibility, style.opacity);
|
|
16
17
|
return style.display === "none" || style.visibility === "hidden" || style.opacity === "0";
|
|
17
18
|
}
|
|
18
19
|
});
|