ninegrid2 6.148.0 → 6.150.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
|
@@ -18038,7 +18038,7 @@ class ngFiltering
|
|
|
18038
18038
|
|
|
18039
18039
|
if (options.length > 0) {
|
|
18040
18040
|
const filterButton = document.createElement("ng-filter-button"); // ✅ `ng-filter-button` 생성
|
|
18041
|
-
|
|
18041
|
+
td.appendChild(filterButton);
|
|
18042
18042
|
filterButton.filterOptions = options; // ✅ 속성 설정
|
|
18043
18043
|
|
|
18044
18044
|
console.log(filterButton, filterButton.filterOptions);
|
package/dist/bundle.esm.js
CHANGED
|
@@ -18036,7 +18036,7 @@ class ngFiltering
|
|
|
18036
18036
|
|
|
18037
18037
|
if (options.length > 0) {
|
|
18038
18038
|
const filterButton = document.createElement("ng-filter-button"); // ✅ `ng-filter-button` 생성
|
|
18039
|
-
|
|
18039
|
+
td.appendChild(filterButton);
|
|
18040
18040
|
filterButton.filterOptions = options; // ✅ 속성 설정
|
|
18041
18041
|
|
|
18042
18042
|
console.log(filterButton, filterButton.filterOptions);
|
package/dist/etc/ngFiltering.js
CHANGED
|
@@ -173,7 +173,7 @@ export class ngFiltering
|
|
|
173
173
|
|
|
174
174
|
if (options.length > 0) {
|
|
175
175
|
const filterButton = document.createElement("ng-filter-button"); // ✅ `ng-filter-button` 생성
|
|
176
|
-
|
|
176
|
+
td.appendChild(filterButton);
|
|
177
177
|
filterButton.filterOptions = options; // ✅ 속성 설정
|
|
178
178
|
|
|
179
179
|
console.log(filterButton, filterButton.filterOptions);
|
package/package.json
CHANGED
package/src/etc/ngFiltering.js
CHANGED
|
@@ -173,7 +173,7 @@ export class ngFiltering
|
|
|
173
173
|
|
|
174
174
|
if (options.length > 0) {
|
|
175
175
|
const filterButton = document.createElement("ng-filter-button"); // ✅ `ng-filter-button` 생성
|
|
176
|
-
|
|
176
|
+
td.appendChild(filterButton);
|
|
177
177
|
filterButton.filterOptions = options; // ✅ 속성 설정
|
|
178
178
|
|
|
179
179
|
console.log(filterButton, filterButton.filterOptions);
|