material-react-table 1.5.0-beta.2 → 1.5.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/package.json
CHANGED
package/src/column.utils.ts
CHANGED
@@ -258,9 +258,7 @@ export const getCommonCellStyles = ({
|
|
258
258
|
column.getIsPinned() === 'left' &&
|
259
259
|
column.getPinnedIndex() === 0
|
260
260
|
? `-${
|
261
|
-
column.getSize() *
|
262
|
-
(table.getState().columnPinning.left?.length ?? 1) *
|
263
|
-
1.2
|
261
|
+
column.getSize() * (table.getState().columnPinning.left?.length ?? 1)
|
264
262
|
}px`
|
265
263
|
: undefined,
|
266
264
|
mr:
|
package/src/table/MRT_Table.tsx
CHANGED