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
fix(core): combobox handle IME input correctly to prevent accidental deletion of characters (#12340)
* fix(core): handle IME input correctly to prevent accidental deletion of characters
closes [#12232](#12232)
## Description
- Added handling for `compositionstart` and `compositionend` events to properly manage IME input (e.g., Chinese, Japanese).
- Introduced `isComposing` flag to bypass autocomplete logic during IME composition.
- Updated `inputText` synchronization after IME input ends to ensure it matches the finalized value.
- Prevented unwanted modifications of input value when using IME, addressing the issue where typing and deleting partially composed characters could remove the last English character.
* fix(core): combobox handle IME input correctly to prevent accidental deletion of characters
closes [#12232](#12232)
## Description
Fixed `isComposing` prefix
0 commit comments