Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
zurfyx
approved these changes
Sep 5, 2025
zurfyx
approved these changes
Sep 5, 2025
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.
v0.35.0 is a monthly release with much improved RTL bidirectional text support (#7727) and several bug fixes
Breaking Changes
All of the breaking changes in this release are related to the improved RTL bidirectional text support in #7727
ltrandrtltheme CSS classes removedltrandrtltheme CSS classes are no longer added to DOM elements. If you have custom CSS to settext-align(or any other properties) for bidirectional text, this can be removed. You can target elements that have customized theirdirby targeting the attr in CSS, for example:$isParentElementRTLrequires an active editor$isParentElementRTLnow relies on accessing the DOM to determine element direction, meaning there must be an active editor when calling the function. If you have code that calls$isParentElementRTLinsideeditorState.read(), you will need to pass in aneditorargument. For example:__dirproperty is synced to/from Yjs (again)Prior to #7330, the text direction of nodes (as determined by the reconciler) was synced to Yjs, even though this value was ignored on other clients. This property is now used for any manually-set direction attribute on
ElementNode.If you have documents that were created prior to v0.30.0, the previously-reconciled direction will now be read and applied to nodes in the editor. This may lead to unexpected behaviour if, for example, your document contains a paragraph that contained RTL text but content changed to LTR in >= v0.30.0.
Highlights
Core:
Markdown:
React:
Internal:
What's Changed
New Contributors
Full Changelog: v0.34.0...v0.35.0