ninegrid2 6.225.0 → 6.227.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.
@@ -18071,11 +18071,14 @@ class ngFiltering
18071
18071
 
18072
18072
  options.forEach(opt => {
18073
18073
 
18074
- console.log(opt, key, arr);
18075
- if (opt.hasOwnProperty(key)) {
18074
+ console.log(opt.hasOwnProperty(key), Object.keys(opt).includes(key));
18075
+ if (Object.keys(opt).includes(key)) {
18076
+ console.log("*******************");
18076
18077
  opt.data = arr;
18077
18078
  }
18078
18079
 
18080
+ console.log(opt);
18081
+
18079
18082
  /**
18080
18083
  //console.log(colnms, colnm);
18081
18084
  if (colnms.includes(colnm)) {
@@ -18069,11 +18069,14 @@ class ngFiltering
18069
18069
 
18070
18070
  options.forEach(opt => {
18071
18071
 
18072
- console.log(opt, key, arr);
18073
- if (opt.hasOwnProperty(key)) {
18072
+ console.log(opt.hasOwnProperty(key), Object.keys(opt).includes(key));
18073
+ if (Object.keys(opt).includes(key)) {
18074
+ console.log("*******************");
18074
18075
  opt.data = arr;
18075
18076
  }
18076
18077
 
18078
+ console.log(opt);
18079
+
18077
18080
  /**
18078
18081
  //console.log(colnms, colnm);
18079
18082
  if (colnms.includes(colnm)) {
@@ -139,11 +139,14 @@ export class ngFiltering
139
139
 
140
140
  options.forEach(opt => {
141
141
 
142
- console.log(opt, key, arr);
143
- if (opt.hasOwnProperty(key)) {
142
+ console.log(opt.hasOwnProperty(key), Object.keys(opt).includes(key));
143
+ if (Object.keys(opt).includes(key)) {
144
+ console.log("*******************");
144
145
  opt.data = arr;
145
146
  }
146
147
 
148
+ console.log(opt);
149
+
147
150
  /**
148
151
  //console.log(colnms, colnm);
149
152
  if (colnms.includes(colnm)) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.225.0",
4
+ "version": "6.227.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
@@ -139,11 +139,14 @@ export class ngFiltering
139
139
 
140
140
  options.forEach(opt => {
141
141
 
142
- console.log(opt, key, arr);
143
- if (opt.hasOwnProperty(key)) {
142
+ console.log(opt.hasOwnProperty(key), Object.keys(opt).includes(key));
143
+ if (Object.keys(opt).includes(key)) {
144
+ console.log("*******************");
144
145
  opt.data = arr;
145
146
  }
146
147
 
148
+ console.log(opt);
149
+
147
150
  /**
148
151
  //console.log(colnms, colnm);
149
152
  if (colnms.includes(colnm)) {