e-virt-table 1.2.5 → 1.2.6

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.es.js CHANGED
@@ -4256,15 +4256,15 @@ class Ei {
4256
4256
  }), this.ctx.on("keydown", (t) => {
4257
4257
  if (!this.ctx.editing) {
4258
4258
  if (t.ctrlKey && t.code === "KeyV" || t.metaKey && t.code === "KeyV") {
4259
- t.preventDefault(), this.paste();
4259
+ this.paste();
4260
4260
  return;
4261
4261
  }
4262
4262
  if (t.ctrlKey && t.code === "KeyC" || t.metaKey && t.code === "KeyC") {
4263
- t.preventDefault(), this.copy(), this.isCut = !1;
4263
+ this.copy(), this.isCut = !1;
4264
4264
  return;
4265
4265
  }
4266
4266
  if (t.ctrlKey && t.code === "KeyX" || t.metaKey && t.code === "KeyX") {
4267
- t.preventDefault(), this.isCut = !0, this.copy();
4267
+ this.isCut = !0, this.copy();
4268
4268
  return;
4269
4269
  }
4270
4270
  if ((t.ctrlKey && t.code === "KeyA" || t.metaKey && t.code === "KeyA") && (t.preventDefault(), this.selectAll()), t.code === "ArrowLeft" || t.shiftKey && t.code === "Tab") {