@fundamental-ngx/cdk 0.55.2-rc.3 → 0.55.2-rc.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -189,6 +189,8 @@ class KeyUtil {
189
189
  // some service commands as alt, ctr, insert, print, f4 etc. All except letters, numbers and symbols
190
190
  case 'control':
191
191
  return event.keyCode < 48 || (event.keyCode >= 112 && event.keyCode <= 123);
192
+ case 'ime':
193
+ return event.key?.toLowerCase() === 'process' || event.keyCode === 229;
192
194
  }
193
195
  }
194
196
  if (isDevMode()) {