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.
- package/dist/bundle.cjs.js +5 -2
- package/dist/bundle.esm.js +5 -2
- package/dist/etc/ngFiltering.js +5 -2
- package/package.json +1 -1
- package/src/etc/ngFiltering.js +5 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -18071,11 +18071,14 @@ class ngFiltering
|
|
|
18071
18071
|
|
|
18072
18072
|
options.forEach(opt => {
|
|
18073
18073
|
|
|
18074
|
-
console.log(opt
|
|
18075
|
-
if (opt.
|
|
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)) {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -18069,11 +18069,14 @@ class ngFiltering
|
|
|
18069
18069
|
|
|
18070
18070
|
options.forEach(opt => {
|
|
18071
18071
|
|
|
18072
|
-
console.log(opt
|
|
18073
|
-
if (opt.
|
|
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)) {
|
package/dist/etc/ngFiltering.js
CHANGED
|
@@ -139,11 +139,14 @@ export class ngFiltering
|
|
|
139
139
|
|
|
140
140
|
options.forEach(opt => {
|
|
141
141
|
|
|
142
|
-
console.log(opt
|
|
143
|
-
if (opt.
|
|
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
package/src/etc/ngFiltering.js
CHANGED
|
@@ -139,11 +139,14 @@ export class ngFiltering
|
|
|
139
139
|
|
|
140
140
|
options.forEach(opt => {
|
|
141
141
|
|
|
142
|
-
console.log(opt
|
|
143
|
-
if (opt.
|
|
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)) {
|