You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR forks theuseResizeColumnsreact-table hook with the following main adjustments:
Deferred resize: CSS transform feedback during drag (zero renders), single state dispatch on mouseup
RTL delta inversion inlined into the reducer (previously handled in stateReducer.ts)
Added e.preventDefault() on mousedown to prevent text selection in Firefox during drag
Added 3px dead zone and data-active-resizer attribute for double-click compatibility
Clamped resize width to minWidth in both the visual drag and the reducer (original clamps to 0)
Also, the useOnClumnResize plugin hook needed to be adjusted, as deferred resizing doesn't update the table state on each tick. Threfore, for the live mode of the hook, the respective event handler is now registered inside the hook.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR forks the
useResizeColumnsreact-tablehook with the following main adjustments:stateReducer.ts)e.preventDefault()on mousedown to prevent text selection in Firefox during dragdata-active-resizerattribute for double-click compatibilityminWidthin both the visual drag and the reducer (original clamps to 0)Also, the
useOnClumnResizeplugin hook needed to be adjusted, as deferred resizing doesn't update the table state on each tick. Threfore, for the live mode of the hook, the respective event handler is now registered inside the hook.Fixes #2665