ninegrid2 6.476.0 → 6.478.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
|
@@ -24061,6 +24061,8 @@ class ngFiltering
|
|
|
24061
24061
|
|
|
24062
24062
|
Object.entries(jsonFilter).forEach(([key, arr]) => {
|
|
24063
24063
|
|
|
24064
|
+
|
|
24065
|
+
|
|
24064
24066
|
const idx = this.#owner.fields.indexOf(key);
|
|
24065
24067
|
|
|
24066
24068
|
// ✅ 숫자 판별 및 변환
|
|
@@ -24068,6 +24070,8 @@ class ngFiltering
|
|
|
24068
24070
|
arr = arr.map(Number);
|
|
24069
24071
|
}
|
|
24070
24072
|
|
|
24073
|
+
arr = arr.sort();
|
|
24074
|
+
|
|
24071
24075
|
console.log(key, arr, idx);
|
|
24072
24076
|
|
|
24073
24077
|
// ✅ 필터 적용
|
package/dist/bundle.esm.js
CHANGED
|
@@ -24059,6 +24059,8 @@ class ngFiltering
|
|
|
24059
24059
|
|
|
24060
24060
|
Object.entries(jsonFilter).forEach(([key, arr]) => {
|
|
24061
24061
|
|
|
24062
|
+
|
|
24063
|
+
|
|
24062
24064
|
const idx = this.#owner.fields.indexOf(key);
|
|
24063
24065
|
|
|
24064
24066
|
// ✅ 숫자 판별 및 변환
|
|
@@ -24066,6 +24068,8 @@ class ngFiltering
|
|
|
24066
24068
|
arr = arr.map(Number);
|
|
24067
24069
|
}
|
|
24068
24070
|
|
|
24071
|
+
arr = arr.sort();
|
|
24072
|
+
|
|
24069
24073
|
console.log(key, arr, idx);
|
|
24070
24074
|
|
|
24071
24075
|
// ✅ 필터 적용
|
|
@@ -105,6 +105,8 @@ export class ngFiltering
|
|
|
105
105
|
|
|
106
106
|
Object.entries(jsonFilter).forEach(([key, arr]) => {
|
|
107
107
|
|
|
108
|
+
|
|
109
|
+
|
|
108
110
|
const idx = this.#owner.fields.indexOf(key);
|
|
109
111
|
|
|
110
112
|
// ✅ 숫자 판별 및 변환
|
|
@@ -112,6 +114,8 @@ export class ngFiltering
|
|
|
112
114
|
arr = arr.map(Number);
|
|
113
115
|
}
|
|
114
116
|
|
|
117
|
+
arr = arr.sort();
|
|
118
|
+
|
|
115
119
|
console.log(key, arr, idx);
|
|
116
120
|
|
|
117
121
|
// ✅ 필터 적용
|
package/package.json
CHANGED
package/src/utils/ngFiltering.js
CHANGED
|
@@ -105,6 +105,8 @@ export class ngFiltering
|
|
|
105
105
|
|
|
106
106
|
Object.entries(jsonFilter).forEach(([key, arr]) => {
|
|
107
107
|
|
|
108
|
+
|
|
109
|
+
|
|
108
110
|
const idx = this.#owner.fields.indexOf(key);
|
|
109
111
|
|
|
110
112
|
// ✅ 숫자 판별 및 변환
|
|
@@ -112,6 +114,8 @@ export class ngFiltering
|
|
|
112
114
|
arr = arr.map(Number);
|
|
113
115
|
}
|
|
114
116
|
|
|
117
|
+
arr = arr.sort();
|
|
118
|
+
|
|
115
119
|
console.log(key, arr, idx);
|
|
116
120
|
|
|
117
121
|
// ✅ 필터 적용
|