@pdg/react-table 1.0.24 → 1.0.25
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.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9220,10 +9220,10 @@ var Table = React__default["default"].forwardRef(function (_a, ref) {
|
|
|
9220
9220
|
var simpleBarStyle = React.useMemo(function () {
|
|
9221
9221
|
if (fullHeight) {
|
|
9222
9222
|
return {
|
|
9223
|
-
height: (containerHeight || 0) - (finalPagingHeight || 0) -
|
|
9223
|
+
height: (containerHeight || 0) - (finalPagingHeight || 0) - 1,
|
|
9224
9224
|
flex: 1,
|
|
9225
9225
|
position: 'absolute',
|
|
9226
|
-
top:
|
|
9226
|
+
top: 0,
|
|
9227
9227
|
left: 0,
|
|
9228
9228
|
right: 0,
|
|
9229
9229
|
marginBottom: finalPagingHeight || 0,
|