chore: 🤖 table reduce acceptable minimum column width#923
chore: 🤖 table reduce acceptable minimum column width#923
Conversation
🦋 Changeset detectedLatest commit: d4bf985 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
Claude finished @punkbit's task in 1m 38s —— View job PR ReviewSolid fix for a real usability problem! The opaque background on the resizer is the right approach to prevent text bleed-through. Two things worth a look before merging. 💡 Suggestions (non-blocking)
✅ Everything else looks good
|
This is intentional. By default, the handler is visible to inform the user it's draggable. It might be revised in future iterations. Do ignore for now! |
|
Claude finished @punkbit's task in 26s —— View job PR ReviewNice fix for the column resizer overlap! The opaque background using the theme token is the right approach. One small thing: 💡 Suggestion (non-blocking)
✅ Everything else looks good
|
📚 Storybook Preview Deployed✅ Preview URL: https://click-5eztjkrun-clickhouse.vercel.app Built from commit: |
| transition: opacity 0.2s; | ||
| border-radius: 0.5rem; | ||
| transform: translateX(50%); | ||
| background-color: ${({ theme }) => theme.click.table.header.color.background.default}; |
DreaminDani
left a comment
There was a problem hiding this comment.
Not a huge fan of the way the other columns react. I feel like all the columns should adjust. Like this: https://tanstack.com/table/latest/docs/framework/react/examples/full-width-resizable-table
CleanShot.2026-03-12.at.07.32.00.mp4
That's correct, as stated in the task description. This one's a small iteration to unblock @rndD. Maybe I'll close this for now, and in the future can look into the other approach. |

Why?
The minimum acceptable column width limits resizing. For cases where tables have many columns, this can be obstructive.
In a future iteration, the column resizer may have to push other column resizers to their minimum in order to create space, given the restricted space, or a similar feature to help the user reveal more data.
How?
Preview?
Reported by @rndD:
Screen.Recording.2026-03-11.at.17.07.37.mov
Overlap issue (transparent background)
Screen.Recording.2026-03-12.at.11.12.06.mov
Overlap (opaque background)
Screen.Recording.2026-03-12.at.11.11.06.mov