@bsol-oss/react-datatable5 1.0.17 → 1.0.18
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.js +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -312,7 +312,9 @@ const TableFooter = () => {
|
|
|
312
312
|
backgroundColor: header.column.getIsPinned()
|
|
313
313
|
? "gray.700"
|
|
314
314
|
: undefined,
|
|
315
|
-
},
|
|
315
|
+
},
|
|
316
|
+
// styling resize and pinning end
|
|
317
|
+
display: "flex", alignItems: "center", children: header.isPlaceholder
|
|
316
318
|
? null
|
|
317
319
|
: reactTable.flexRender(header.column.columnDef.footer, header.getContext()) }, crypto.randomUUID())))] }, crypto.randomUUID()))) }));
|
|
318
320
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -310,7 +310,9 @@ const TableFooter = () => {
|
|
|
310
310
|
backgroundColor: header.column.getIsPinned()
|
|
311
311
|
? "gray.700"
|
|
312
312
|
: undefined,
|
|
313
|
-
},
|
|
313
|
+
},
|
|
314
|
+
// styling resize and pinning end
|
|
315
|
+
display: "flex", alignItems: "center", children: header.isPlaceholder
|
|
314
316
|
? null
|
|
315
317
|
: flexRender(header.column.columnDef.footer, header.getContext()) }, crypto.randomUUID())))] }, crypto.randomUUID()))) }));
|
|
316
318
|
};
|