-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
[WIP] Migrate to before̬̜input͎ #11456
Merged
Merged
Conversation
This file contains 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
…Enabled InputObserver by default.
…always called in plugins, never in observers).
… by ClipboardObserver + DeleteObserver does not act on keydown any longer.
# Conflicts: # packages/ckeditor5-enter/package.json # packages/ckeditor5-typing/package.json
…oreinput-ime-research-vol1.1-android
…oreinput-ime-research-vol1.1-android
…iller and an inline element (br).
…arch-vol1.1-android Internal (engine, typing, enter, widget): Support for IME on Android. Closes #12058.
Fix (engine): The placeholder should not be visible while composing. Closes #12389.
# Conflicts: # packages/ckeditor5-engine/src/view/observer/mutationobserver.ts # packages/ckeditor5-engine/src/view/renderer.ts
arkflpc
requested changes
Oct 13, 2022
arkflpc
approved these changes
Oct 13, 2022
…nput' into ck/epic/11438-migrate-to-beforeinput
To give some more background. This PR is changing the input flow, so the editor is now using the |
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.
Suggested merge commit message (convention)
Feature (engine, enter, typing): Typing and text composition (IME) support refactored to use
beforeInput
DOM events instead of DOM mutations and keystrokes. Closes #11438.Other (typing): Introduced a new
insertText
event mapped from a subset ofbeforeInput
events.Other (typing): The
delete
event is now mapped from a subset ofbeforeInput
events.Other (enter): The
enter
event is now mapped from a subset ofbeforeInput
events.Fix (engine): Fixed conversion of the non-collapsed selection anchored between
<br>
elements (in Safari).MINOR BREAKING CHANGE (clipboard): The
DataTransfer
class was moved to the engine package.MINOR BREAKING CHANGE: The
input
command is now deprecated, you should useinsertText
command instead.