ninegrid2 6.158.0 → 6.160.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.
@@ -18164,7 +18164,7 @@ class ngFilterButton extends HTMLElement
18164
18164
  //panel.style.display = 'flex' : 'none';
18165
18165
  console.log(panel.isHidden, panel.col, this.closest('th,td').dataset.col);
18166
18166
 
18167
- if (!panel.isHidden && panel.col === this.closest('th,td').dataset.col) {
18167
+ if (panel.col === this.closest('th,td').dataset.col) {
18168
18168
  $(this).hide();
18169
18169
  return;
18170
18170
  }
@@ -18162,7 +18162,7 @@ class ngFilterButton extends HTMLElement
18162
18162
  //panel.style.display = 'flex' : 'none';
18163
18163
  console.log(panel.isHidden, panel.col, this.closest('th,td').dataset.col);
18164
18164
 
18165
- if (!panel.isHidden && panel.col === this.closest('th,td').dataset.col) {
18165
+ if (panel.col === this.closest('th,td').dataset.col) {
18166
18166
  $(this).hide();
18167
18167
  return;
18168
18168
  }
@@ -288,7 +288,7 @@ class ngFilterButton extends HTMLElement
288
288
  //panel.style.display = 'flex' : 'none';
289
289
  console.log(panel.isHidden, panel.col, this.closest('th,td').dataset.col);
290
290
 
291
- if (!panel.isHidden && panel.col === this.closest('th,td').dataset.col) {
291
+ if (panel.col === this.closest('th,td').dataset.col) {
292
292
  $(this).hide();
293
293
  return;
294
294
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.158.0",
4
+ "version": "6.160.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
@@ -288,7 +288,7 @@ class ngFilterButton extends HTMLElement
288
288
  //panel.style.display = 'flex' : 'none';
289
289
  console.log(panel.isHidden, panel.col, this.closest('th,td').dataset.col);
290
290
 
291
- if (!panel.isHidden && panel.col === this.closest('th,td').dataset.col) {
291
+ if (panel.col === this.closest('th,td').dataset.col) {
292
292
  $(this).hide();
293
293
  return;
294
294
  }