Open
Conversation
Add full RTL support, update deps, bump version to release 9.3.9
Release 8.3.10
Update GitHub workflow action versions
Release 8.3.11 to fix regression in 8.3.10
Update dev deps
Release 8.3.13
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
Contributor
Author
|
@icflorescu I got a bit confused with the branches - did I open the PR into the correct branch, or does something need to be changed? |
…erty resolve bug where сomponents like DateInput with absolute-positioned elements (icons) inside non-pinned cells were showing through pinned columns on horizontal scroll due to insufficient z-index on pinned cells.
9458e5b to
d7c7772
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Motivation
I'm a big fan of Mantine DataTable and use it extensively in my projects. I needed the ability to pin more than just the first/last column, and I believe many users would benefit from this as well. This PR extends the pinning system to support arbitrary columns pinned to either side, with an optional interactive UI for end users.
New API
Static pinning —
pinnedprop on columnInteractive pinning — pinnable prop on column
When pinnable: true, a pin icon appears in the column header on hover. Clicking it opens a small popover where the user can choose to pin the column left, right, or unpin it. Pinning state is persisted to localStorage when storeColumnsKey is provided (works alongside existing column toggling/reordering/resizing).
What's inside
New files
Architecture
Backward compatibility
column in the DOM
Integration with existing features
Sorry for the wall of text — it's a big change so I tried to explain everything clearly.
Would love to hear your thoughts. Happy to make any changes needed.