ninegrid2 6.160.0 → 6.162.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/etc/ngFiltering.js +1 -1
- package/package.json +1 -1
- package/src/etc/ngFiltering.js +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -18165,7 +18165,7 @@ class ngFilterButton extends HTMLElement
|
|
|
18165
18165
|
console.log(panel.isHidden, panel.col, this.closest('th,td').dataset.col);
|
|
18166
18166
|
|
|
18167
18167
|
if (panel.col === this.closest('th,td').dataset.col) {
|
|
18168
|
-
|
|
18168
|
+
panel.style.display = 'none';
|
|
18169
18169
|
return;
|
|
18170
18170
|
}
|
|
18171
18171
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -18163,7 +18163,7 @@ class ngFilterButton extends HTMLElement
|
|
|
18163
18163
|
console.log(panel.isHidden, panel.col, this.closest('th,td').dataset.col);
|
|
18164
18164
|
|
|
18165
18165
|
if (panel.col === this.closest('th,td').dataset.col) {
|
|
18166
|
-
|
|
18166
|
+
panel.style.display = 'none';
|
|
18167
18167
|
return;
|
|
18168
18168
|
}
|
|
18169
18169
|
|
package/dist/etc/ngFiltering.js
CHANGED
|
@@ -289,7 +289,7 @@ class ngFilterButton extends HTMLElement
|
|
|
289
289
|
console.log(panel.isHidden, panel.col, this.closest('th,td').dataset.col);
|
|
290
290
|
|
|
291
291
|
if (panel.col === this.closest('th,td').dataset.col) {
|
|
292
|
-
|
|
292
|
+
panel.style.display = 'none';
|
|
293
293
|
return;
|
|
294
294
|
}
|
|
295
295
|
|
package/package.json
CHANGED
package/src/etc/ngFiltering.js
CHANGED
|
@@ -289,7 +289,7 @@ class ngFilterButton extends HTMLElement
|
|
|
289
289
|
console.log(panel.isHidden, panel.col, this.closest('th,td').dataset.col);
|
|
290
290
|
|
|
291
291
|
if (panel.col === this.closest('th,td').dataset.col) {
|
|
292
|
-
|
|
292
|
+
panel.style.display = 'none';
|
|
293
293
|
return;
|
|
294
294
|
}
|
|
295
295
|
|