ninegrid2 6.465.0 → 6.467.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
CHANGED
|
@@ -23966,8 +23966,6 @@ class ngFiltering
|
|
|
23966
23966
|
|
|
23967
23967
|
Object.entries(jsonFilter).forEach(([key, arr]) => {
|
|
23968
23968
|
|
|
23969
|
-
|
|
23970
|
-
|
|
23971
23969
|
const idx = this.#owner.fields.indexOf(key);
|
|
23972
23970
|
|
|
23973
23971
|
// ✅ 숫자 판별 및 변환
|
|
@@ -23984,6 +23982,8 @@ class ngFiltering
|
|
|
23984
23982
|
.forEach(m => { m.__ng.filtered = true; });
|
|
23985
23983
|
*/
|
|
23986
23984
|
|
|
23985
|
+
console.log(this.#owner.data.getValidData(), this.#owner.data.getValidData().filter(m => arr.includes(m.v[idx] || '')));
|
|
23986
|
+
|
|
23987
23987
|
this.#owner.data.getValidData()
|
|
23988
23988
|
.filter(m => arr.includes(m.v[idx] || ''))
|
|
23989
23989
|
.forEach(m => { m.__ng.filtered = true; });
|
package/dist/bundle.esm.js
CHANGED
|
@@ -23964,8 +23964,6 @@ class ngFiltering
|
|
|
23964
23964
|
|
|
23965
23965
|
Object.entries(jsonFilter).forEach(([key, arr]) => {
|
|
23966
23966
|
|
|
23967
|
-
|
|
23968
|
-
|
|
23969
23967
|
const idx = this.#owner.fields.indexOf(key);
|
|
23970
23968
|
|
|
23971
23969
|
// ✅ 숫자 판별 및 변환
|
|
@@ -23982,6 +23980,8 @@ class ngFiltering
|
|
|
23982
23980
|
.forEach(m => { m.__ng.filtered = true; });
|
|
23983
23981
|
*/
|
|
23984
23982
|
|
|
23983
|
+
console.log(this.#owner.data.getValidData(), this.#owner.data.getValidData().filter(m => arr.includes(m.v[idx] || '')));
|
|
23984
|
+
|
|
23985
23985
|
this.#owner.data.getValidData()
|
|
23986
23986
|
.filter(m => arr.includes(m.v[idx] || ''))
|
|
23987
23987
|
.forEach(m => { m.__ng.filtered = true; });
|
|
@@ -104,8 +104,6 @@ export class ngFiltering
|
|
|
104
104
|
|
|
105
105
|
Object.entries(jsonFilter).forEach(([key, arr]) => {
|
|
106
106
|
|
|
107
|
-
|
|
108
|
-
|
|
109
107
|
const idx = this.#owner.fields.indexOf(key);
|
|
110
108
|
|
|
111
109
|
// ✅ 숫자 판별 및 변환
|
|
@@ -122,6 +120,8 @@ export class ngFiltering
|
|
|
122
120
|
.forEach(m => { m.__ng.filtered = true; });
|
|
123
121
|
*/
|
|
124
122
|
|
|
123
|
+
console.log(this.#owner.data.getValidData(), this.#owner.data.getValidData().filter(m => arr.includes(m.v[idx] || '')));
|
|
124
|
+
|
|
125
125
|
this.#owner.data.getValidData()
|
|
126
126
|
.filter(m => arr.includes(m.v[idx] || ''))
|
|
127
127
|
.forEach(m => { m.__ng.filtered = true; });
|
package/package.json
CHANGED
package/src/utils/ngFiltering.js
CHANGED
|
@@ -104,8 +104,6 @@ export class ngFiltering
|
|
|
104
104
|
|
|
105
105
|
Object.entries(jsonFilter).forEach(([key, arr]) => {
|
|
106
106
|
|
|
107
|
-
|
|
108
|
-
|
|
109
107
|
const idx = this.#owner.fields.indexOf(key);
|
|
110
108
|
|
|
111
109
|
// ✅ 숫자 판별 및 변환
|
|
@@ -122,6 +120,8 @@ export class ngFiltering
|
|
|
122
120
|
.forEach(m => { m.__ng.filtered = true; });
|
|
123
121
|
*/
|
|
124
122
|
|
|
123
|
+
console.log(this.#owner.data.getValidData(), this.#owner.data.getValidData().filter(m => arr.includes(m.v[idx] || '')));
|
|
124
|
+
|
|
125
125
|
this.#owner.data.getValidData()
|
|
126
126
|
.filter(m => arr.includes(m.v[idx] || ''))
|
|
127
127
|
.forEach(m => { m.__ng.filtered = true; });
|