@moontra/moonui-pro 2.26.16 → 2.26.17
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/index.global.js +1 -1
- package/dist/index.global.js.map +1 -1
- package/dist/index.mjs +8 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -73510,7 +73510,15 @@ function DataTableQuickFilter({
|
|
|
73510
73510
|
}) {
|
|
73511
73511
|
const [searchValue, setSearchValue] = useState("");
|
|
73512
73512
|
const column = table.getColumn(filter.column);
|
|
73513
|
+
if (typeof window !== "undefined" && true) {
|
|
73514
|
+
const allColumns = table.getAllColumns();
|
|
73515
|
+
console.log(`QuickFilter: Looking for column '${filter.column}'`, {
|
|
73516
|
+
availableColumns: allColumns.map((c2) => c2.id),
|
|
73517
|
+
columnFound: !!column
|
|
73518
|
+
});
|
|
73519
|
+
}
|
|
73513
73520
|
if (!column) {
|
|
73521
|
+
console.warn(`QuickFilter: Column '${filter.column}' not found in table`);
|
|
73514
73522
|
return null;
|
|
73515
73523
|
}
|
|
73516
73524
|
const columnDef = column.columnDef;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moontra/moonui-pro",
|
|
3
|
-
"version": "2.26.
|
|
3
|
+
"version": "2.26.17",
|
|
4
4
|
"description": "Premium React components for MoonUI - Advanced UI library with 50+ pro components including performance, interactive, and gesture components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|