Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information