mirror of
https://github.com/arikchakma/maily.to.git
synced 2026-04-26 14:45:57 +03:00
[PR #79] [MERGED] feat: Remove 5-item limit from variable suggestions and add scrollable UI #133
Labels
No labels
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/maily.to#133
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/arikchakma/maily.to/pull/79
Author: @yousefhosny1
Created: 11/30/2024
Status: ✅ Merged
Merged: 12/1/2024
Merged by: @arikchakma
Base:
main← Head:feat/variable-suggestions📝 Commits (2)
0435e14improve variable suggestions UI with scrolling and keyboard navigationb67d979fix: minor changes📊 Changes
5 files changed (+99 additions, -32 deletions)
View changed files
📝
packages/core/src/editor/nodes/variable/variable-suggestions.tsx(+76 -29)📝
packages/core/tailwind.config.ts(+4 -2)📝
packages/tailwind-config/package.json(+1 -0)📝
packages/tailwind-config/tailwind.config.ts(+5 -1)📝
pnpm-lock.yaml(+13 -0)📄 Description
Problem
Currently, the variable suggestions dropdown is limited to showing only 5 variables at a time. This restriction prevents users from seeing all available variables when the suggestions list opens, leading to a suboptimal user experience where users can't get a complete overview of their options.
Solution
This PR enhances the variable suggestions UI by:
Changes
.slice(0, 5)from the suggestions filterscrollSelectedIntoViewfunction to handle auto-scrollingScreenshots
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.