You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The beforeinput event has two input types for composition. It is insertCompositionText and insertFromComposition. When the user starts typing, he uses Option + ` combination. It fires the beforeinput event with the input type insertCompositionText. Then, the user can type the symbol he wants to use in the composition.
Safari
When the user types some symbol, we receive a beforeinput event with the inputType insertFromComposition.
Demo:
Screen.Recording.2024-01-23.at.20.56.45.mov
Chrome
When the user types some symbol, we receive a beforeinput event with the inputType insertCompositionText.
Demo:
Implement composition input types support in Block Tool Adapter.
https://github.com/editor-js/document-model/blob/main/packages/dom-adapters/src/BlockToolAdapter/index.ts#L109
The text was updated successfully, but these errors were encountered: