@markup-canvas/core 1.3.8 → 1.3.9

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.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Markup Canvas
3
3
  * High-performance markup canvas with zoom and pan capabilities
4
- * @version 1.3.8
4
+ * @version 1.3.9
5
5
  */
6
6
  'use strict';
7
7
 
@@ -19,7 +19,7 @@ const EDITOR_PRESET = {
19
19
  enableZoom: true,
20
20
  enablePan: true,
21
21
  enableTouch: true,
22
- enableKeyboard: false,
22
+ enableKeyboard: true,
23
23
  bindKeyboardEventsTo: "document",
24
24
  sendKeyboardEventsToParent: true,
25
25
  // Zoom behavior
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Markup Canvas
3
3
  * High-performance markup canvas with zoom and pan capabilities
4
- * @version 1.3.8
4
+ * @version 1.3.9
5
5
  */
6
6
  const EDITOR_PRESET = {
7
7
  // Canvas dimensions
@@ -15,7 +15,7 @@ const EDITOR_PRESET = {
15
15
  enableZoom: true,
16
16
  enablePan: true,
17
17
  enableTouch: true,
18
- enableKeyboard: false,
18
+ enableKeyboard: true,
19
19
  bindKeyboardEventsTo: "document",
20
20
  sendKeyboardEventsToParent: true,
21
21
  // Zoom behavior
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Markup Canvas
3
3
  * High-performance markup canvas with zoom and pan capabilities
4
- * @version 1.3.8
4
+ * @version 1.3.9
5
5
  */
6
6
  (function (global, factory) {
7
7
  typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markup-canvas/core",
3
- "version": "1.3.8",
3
+ "version": "1.3.9",
4
4
  "description": "High-performance canvas-like container with pan and zoom capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/markup-canvas.cjs.js",
@@ -14,7 +14,7 @@ export const EDITOR_PRESET: MarkupCanvasConfig = {
14
14
  enableZoom: true,
15
15
  enablePan: true,
16
16
  enableTouch: true,
17
- enableKeyboard: false,
17
+ enableKeyboard: true,
18
18
  bindKeyboardEventsTo: "document",
19
19
  sendKeyboardEventsToParent: true,
20
20