-
Notifications
You must be signed in to change notification settings - Fork 0
Make rich text images selectable and resizable #274
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
beNative
merged 19 commits into
main
from
tisi/enable-image-selection-and-resizing-in-editor
Dec 19, 2025
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
fcbdd1c
Make rich text images selectable and resizable
beNative b565a1b
Polish image drag and resize UX
beNative 4180438
Fix image selection overlay sizing and dragging
beNative fb5b1f8
fix: prevent focus stealing in modal dialogs by optimizing focus trap…
fb73cec
chore: bump version to 0.8.1 and update font stack
a66c73a
Refactor RichTextEditor, fix slider styling, and adjust theme tones
0c3abd8
Implement Antigravity styling across UI components
cb894f8
Revert ContextMenu styling changes per user request
a89ac7c
Improve search box styling for professional look
5e9c6ec
Remove rounded focus box from database dropdown
afc7c92
Remove focus ring from LLM provider/model selects
6a8bf72
Darken tree selection color in light mode
1a87715
Disable editor/preview scroll sync
3bd827b
Remove focus ring from zoom buttons
7e02f07
Fix MD preview zoom to reflow text when scaling
5f1d7fe
Further darken tree selection color
c0b3933
Fix tree selection opacity - use full bg-tree-selected instead of /20
7a5c6ec
Fix MD zoom-in reflow with CSS zoom
60e8fe7
Prepare v0.8.2 release: Antigravity Styling Update
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When no width/height are provided we now initialize the component state to
'inherit', soresolvedWidth/resolvedHeightend up set to'inherit'rather than the previous'auto'. Because the wrapping span usesw-full, any image inserted without explicit dimensions now inherits 100% width and expands to fill the container, changing the layout of existing documents even in read-only view. The default should stayauto(natural size) unless the payload explicitly requestsinherit.Useful? React with 👍 / 👎.