@revolist/revogrid 3.7.10 → 3.7.11
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/custom-element/revogr-overlay-selection2.js +1 -1
- package/dist/cjs/revo-grid_11.cjs.entry.js +1 -1
- package/dist/collection/components/overlay/revogr-overlay-selection.js +1 -1
- package/dist/esm/revo-grid_11.entry.js +1 -1
- package/dist/esm-es5/revo-grid_11.entry.js +1 -1
- package/dist/revo-grid/revo-grid_11.entry.js +1 -1
- package/dist/revo-grid/revo-grid_11.system.entry.js +1 -1
- package/package.json +1 -1
|
@@ -513,7 +513,7 @@ const OverlaySelection = /*@__PURE__*/ proxyCustomElement(class extends HTMLElem
|
|
|
513
513
|
onKeyDown(e) {
|
|
514
514
|
var _a;
|
|
515
515
|
// Emit before key down event and check if default prevention is set.
|
|
516
|
-
const proxy = this.beforeKeyDown.emit(Object.assign(
|
|
516
|
+
const proxy = this.beforeKeyDown.emit(Object.assign({ original: e }, this.getData()));
|
|
517
517
|
if (e.defaultPrevented || proxy.defaultPrevented) {
|
|
518
518
|
return;
|
|
519
519
|
}
|
|
@@ -27631,7 +27631,7 @@ const OverlaySelection = class {
|
|
|
27631
27631
|
onKeyDown(e) {
|
|
27632
27632
|
var _a;
|
|
27633
27633
|
// Emit before key down event and check if default prevention is set.
|
|
27634
|
-
const proxy = this.beforeKeyDown.emit(Object.assign(
|
|
27634
|
+
const proxy = this.beforeKeyDown.emit(Object.assign({ original: e }, this.getData()));
|
|
27635
27635
|
if (e.defaultPrevented || proxy.defaultPrevented) {
|
|
27636
27636
|
return;
|
|
27637
27637
|
}
|
|
@@ -52,7 +52,7 @@ export class OverlaySelection {
|
|
|
52
52
|
onKeyDown(e) {
|
|
53
53
|
var _a;
|
|
54
54
|
// Emit before key down event and check if default prevention is set.
|
|
55
|
-
const proxy = this.beforeKeyDown.emit(Object.assign(
|
|
55
|
+
const proxy = this.beforeKeyDown.emit(Object.assign({ original: e }, this.getData()));
|
|
56
56
|
if (e.defaultPrevented || proxy.defaultPrevented) {
|
|
57
57
|
return;
|
|
58
58
|
}
|
|
@@ -27627,7 +27627,7 @@ const OverlaySelection = class {
|
|
|
27627
27627
|
onKeyDown(e) {
|
|
27628
27628
|
var _a;
|
|
27629
27629
|
// Emit before key down event and check if default prevention is set.
|
|
27630
|
-
const proxy = this.beforeKeyDown.emit(Object.assign(
|
|
27630
|
+
const proxy = this.beforeKeyDown.emit(Object.assign({ original: e }, this.getData()));
|
|
27631
27631
|
if (e.defaultPrevented || proxy.defaultPrevented) {
|
|
27632
27632
|
return;
|
|
27633
27633
|
}
|