ninegrid2 6.177.0 → 6.178.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
|
@@ -18493,7 +18493,7 @@ class ngFilterPanel extends HTMLElement
|
|
|
18493
18493
|
if (el.dataset.bind) colnms.push(el.dataset.bind);
|
|
18494
18494
|
});
|
|
18495
18495
|
|
|
18496
|
-
owner.activeTmpl.querySelectorAll(`[data-col
|
|
18496
|
+
owner.activeTmpl.querySelectorAll(`[data-col="${col}"]`).forEach(el => {
|
|
18497
18497
|
if (el.dataset.bind) colnms.push(el.dataset.bind);
|
|
18498
18498
|
});
|
|
18499
18499
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -18491,7 +18491,7 @@ class ngFilterPanel extends HTMLElement
|
|
|
18491
18491
|
if (el.dataset.bind) colnms.push(el.dataset.bind);
|
|
18492
18492
|
});
|
|
18493
18493
|
|
|
18494
|
-
owner.activeTmpl.querySelectorAll(`[data-col
|
|
18494
|
+
owner.activeTmpl.querySelectorAll(`[data-col="${col}"]`).forEach(el => {
|
|
18495
18495
|
if (el.dataset.bind) colnms.push(el.dataset.bind);
|
|
18496
18496
|
});
|
|
18497
18497
|
|
package/dist/etc/ngFiltering.js
CHANGED
|
@@ -559,7 +559,7 @@ class ngFilterPanel extends HTMLElement
|
|
|
559
559
|
if (el.dataset.bind) colnms.push(el.dataset.bind);
|
|
560
560
|
});
|
|
561
561
|
|
|
562
|
-
owner.activeTmpl.querySelectorAll(`[data-col
|
|
562
|
+
owner.activeTmpl.querySelectorAll(`[data-col="${col}"]`).forEach(el => {
|
|
563
563
|
if (el.dataset.bind) colnms.push(el.dataset.bind);
|
|
564
564
|
});
|
|
565
565
|
|
package/package.json
CHANGED
package/src/etc/ngFiltering.js
CHANGED
|
@@ -559,7 +559,7 @@ class ngFilterPanel extends HTMLElement
|
|
|
559
559
|
if (el.dataset.bind) colnms.push(el.dataset.bind);
|
|
560
560
|
});
|
|
561
561
|
|
|
562
|
-
owner.activeTmpl.querySelectorAll(`[data-col
|
|
562
|
+
owner.activeTmpl.querySelectorAll(`[data-col="${col}"]`).forEach(el => {
|
|
563
563
|
if (el.dataset.bind) colnms.push(el.dataset.bind);
|
|
564
564
|
});
|
|
565
565
|
|