ninegrid2 6.143.0 → 6.145.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 +1 -1
- package/dist/bundle.esm.js +1 -1
- package/dist/etc/ngFiltering.js +1 -1
- package/package.json +1 -1
- package/src/etc/ngFiltering.js +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -18036,7 +18036,7 @@ class ngFiltering
|
|
|
18036
18036
|
}
|
|
18037
18037
|
});
|
|
18038
18038
|
|
|
18039
|
-
if (
|
|
18039
|
+
if (options.length > 0) {
|
|
18040
18040
|
const filterButton = document.createElement("ng-filter-button"); // ✅ `ng-filter-button` 생성
|
|
18041
18041
|
el.appendChild(filterButton);
|
|
18042
18042
|
filterButton.filterOptions = options; // ✅ 속성 설정
|
package/dist/bundle.esm.js
CHANGED
|
@@ -18034,7 +18034,7 @@ class ngFiltering
|
|
|
18034
18034
|
}
|
|
18035
18035
|
});
|
|
18036
18036
|
|
|
18037
|
-
if (
|
|
18037
|
+
if (options.length > 0) {
|
|
18038
18038
|
const filterButton = document.createElement("ng-filter-button"); // ✅ `ng-filter-button` 생성
|
|
18039
18039
|
el.appendChild(filterButton);
|
|
18040
18040
|
filterButton.filterOptions = options; // ✅ 속성 설정
|
package/dist/etc/ngFiltering.js
CHANGED
|
@@ -171,7 +171,7 @@ export class ngFiltering
|
|
|
171
171
|
}
|
|
172
172
|
});
|
|
173
173
|
|
|
174
|
-
if (
|
|
174
|
+
if (options.length > 0) {
|
|
175
175
|
const filterButton = document.createElement("ng-filter-button"); // ✅ `ng-filter-button` 생성
|
|
176
176
|
el.appendChild(filterButton);
|
|
177
177
|
filterButton.filterOptions = options; // ✅ 속성 설정
|
package/package.json
CHANGED
package/src/etc/ngFiltering.js
CHANGED
|
@@ -171,7 +171,7 @@ export class ngFiltering
|
|
|
171
171
|
}
|
|
172
172
|
});
|
|
173
173
|
|
|
174
|
-
if (
|
|
174
|
+
if (options.length > 0) {
|
|
175
175
|
const filterButton = document.createElement("ng-filter-button"); // ✅ `ng-filter-button` 생성
|
|
176
176
|
el.appendChild(filterButton);
|
|
177
177
|
filterButton.filterOptions = options; // ✅ 속성 설정
|