ninegrid2 6.438.0 → 6.439.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.
@@ -14882,7 +14882,7 @@ class ngColumns
14882
14882
 
14883
14883
  return v ?
14884
14884
  element2Info(this.#owner.activeTmpl.querySelector(`[data-bind="${v}"]`)) :
14885
- Array.from(this.#owner.activeTmpl.querySelectorAll("[data-bind]")).map(el => element2Info(el));
14885
+ Array.from(this.#owner.activeTmpl.querySelectorAll("[data-bind]")).filter(el => el.dataset.bind !== "rowState").map(el => element2Info(el));
14886
14886
  }
14887
14887
 
14888
14888
 
@@ -14880,7 +14880,7 @@ class ngColumns
14880
14880
 
14881
14881
  return v ?
14882
14882
  element2Info(this.#owner.activeTmpl.querySelector(`[data-bind="${v}"]`)) :
14883
- Array.from(this.#owner.activeTmpl.querySelectorAll("[data-bind]")).map(el => element2Info(el));
14883
+ Array.from(this.#owner.activeTmpl.querySelectorAll("[data-bind]")).filter(el => el.dataset.bind !== "rowState").map(el => element2Info(el));
14884
14884
  }
14885
14885
 
14886
14886
 
@@ -29,7 +29,7 @@ export class ngColumns
29
29
 
30
30
  return v ?
31
31
  element2Info(this.#owner.activeTmpl.querySelector(`[data-bind="${v}"]`)) :
32
- Array.from(this.#owner.activeTmpl.querySelectorAll("[data-bind]")).map(el => element2Info(el));
32
+ Array.from(this.#owner.activeTmpl.querySelectorAll("[data-bind]")).filter(el => el.dataset.bind !== "rowState").map(el => element2Info(el));
33
33
  }
34
34
 
35
35
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.438.0",
4
+ "version": "6.439.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
@@ -29,7 +29,7 @@ export class ngColumns
29
29
 
30
30
  return v ?
31
31
  element2Info(this.#owner.activeTmpl.querySelector(`[data-bind="${v}"]`)) :
32
- Array.from(this.#owner.activeTmpl.querySelectorAll("[data-bind]")).map(el => element2Info(el));
32
+ Array.from(this.#owner.activeTmpl.querySelectorAll("[data-bind]")).filter(el => el.dataset.bind !== "rowState").map(el => element2Info(el));
33
33
  }
34
34
 
35
35