bfg-common 1.5.948 → 1.5.950

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.
@@ -259,8 +259,11 @@ const onKeyPress = (key: UI_I_KeyboardRowItem): void => {
259
259
  if (isCodeEvent) {
260
260
  checkAndSendModifiers()
261
261
  keyEvent('keydown', isCodeEvent, key)
262
- keyEvent('keypress', isCodeEvent, key)
263
- keyEvent('keyup', isCodeEvent, key)
262
+ if (!isCtrlPressed.value) {
263
+ // TODO DS-1074 Найти решение получе
264
+ keyEvent('keypress', isCodeEvent, key)
265
+ keyEvent('keyup', isCodeEvent, key)
266
+ }
264
267
 
265
268
  checkAndOffModifiers()
266
269
  window.app.inputProcess.clientGui.inputManager.input.val('_')
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.948",
4
+ "version": "1.5.950",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",