@progress/kendo-spreadsheet-common 1.1.0-develop.3 → 1.1.0
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 +6 -1
- package/dist/index.js +6 -1
- package/package.json +1 -1
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 */
|
|
@@ -27788,6 +27791,8 @@ class SpreadsheetWidget extends Widget {
|
|
|
27788
27791
|
let key = e.keyCode;
|
|
27789
27792
|
let controlKey = e.ctrlKey || e.metaKey;
|
|
27790
27793
|
|
|
27794
|
+
this.trigger("keydown", e);
|
|
27795
|
+
|
|
27791
27796
|
if (key === keys.F11 && e.shiftKey) {
|
|
27792
27797
|
this._view.sheetsbar._onAddSelect();
|
|
27793
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 */
|
|
@@ -27789,6 +27792,8 @@
|
|
|
27789
27792
|
let key = e.keyCode;
|
|
27790
27793
|
let controlKey = e.ctrlKey || e.metaKey;
|
|
27791
27794
|
|
|
27795
|
+
this.trigger("keydown", e);
|
|
27796
|
+
|
|
27792
27797
|
if (key === keys.F11 && e.shiftKey) {
|
|
27793
27798
|
this._view.sheetsbar._onAddSelect();
|
|
27794
27799
|
e.preventDefault();
|