@progress/kendo-spreadsheet-common 1.1.0-develop.2 → 1.1.0-develop.4

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.
package/dist/index-esm.js CHANGED
@@ -1067,7 +1067,10 @@ const keys = {
1067
1067
  F12: 123,
1068
1068
  NUMPAD_PLUS: 107,
1069
1069
  NUMPAD_MINUS: 109,
1070
- NUMPAD_DOT: 110
1070
+ NUMPAD_DOT: 110,
1071
+ B: 66,
1072
+ I: 73,
1073
+ U: 85
1071
1074
  };
1072
1075
 
1073
1076
  /* eslint-disable no-nested-ternary */
@@ -11746,6 +11749,10 @@ class Controller {
11746
11749
  this.clipboardElement.focus();
11747
11750
  this.navigator.navigateInSelection(ENTRY_ACTIONS[action]);
11748
11751
  }
11752
+
11753
+ if (action === 'tab') {
11754
+ e.preventDefault();
11755
+ }
11749
11756
  }
11750
11757
 
11751
11758
  onEditorAction(event, action) {
@@ -27784,6 +27791,8 @@ class SpreadsheetWidget extends Widget {
27784
27791
  let key = e.keyCode;
27785
27792
  let controlKey = e.ctrlKey || e.metaKey;
27786
27793
 
27794
+ this.trigger("keydown", e);
27795
+
27787
27796
  if (key === keys.F11 && e.shiftKey) {
27788
27797
  this._view.sheetsbar._onAddSelect();
27789
27798
  e.preventDefault();
package/dist/index.js CHANGED
@@ -1068,7 +1068,10 @@
1068
1068
  F12: 123,
1069
1069
  NUMPAD_PLUS: 107,
1070
1070
  NUMPAD_MINUS: 109,
1071
- NUMPAD_DOT: 110
1071
+ NUMPAD_DOT: 110,
1072
+ B: 66,
1073
+ I: 73,
1074
+ U: 85
1072
1075
  };
1073
1076
 
1074
1077
  /* eslint-disable no-nested-ternary */
@@ -11747,6 +11750,10 @@
11747
11750
  this.clipboardElement.focus();
11748
11751
  this.navigator.navigateInSelection(ENTRY_ACTIONS[action]);
11749
11752
  }
11753
+
11754
+ if (action === 'tab') {
11755
+ e.preventDefault();
11756
+ }
11750
11757
  }
11751
11758
 
11752
11759
  onEditorAction(event, action) {
@@ -27785,6 +27792,8 @@
27785
27792
  let key = e.keyCode;
27786
27793
  let controlKey = e.ctrlKey || e.metaKey;
27787
27794
 
27795
+ this.trigger("keydown", e);
27796
+
27788
27797
  if (key === keys.F11 && e.shiftKey) {
27789
27798
  this._view.sheetsbar._onAddSelect();
27790
27799
  e.preventDefault();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-spreadsheet-common",
3
3
  "description": "Kendo UI platform-independent Spreadsheet library",
4
- "version": "1.1.0-develop.2",
4
+ "version": "1.1.0-develop.4",
5
5
  "keywords": [
6
6
  "Kendo UI"
7
7
  ],