@teachinglab/omd 0.3.7 → 0.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.
@@ -14,8 +14,8 @@ export class CanvasConfig {
14
14
  this.gridSpacing = options.gridSpacing || 20;
15
15
 
16
16
  // Tool configuration
17
- this.enabledTools = options.enabledTools || ['pencil', 'eraser', 'select'];
18
- this.defaultTool = options.defaultTool || 'pencil';
17
+ this.enabledTools = options.enabledTools || ['pointer', 'pencil', 'eraser', 'select'];
18
+ this.defaultTool = options.defaultTool || 'pointer';
19
19
 
20
20
  // Feature flags
21
21
  this.enableFocusFrames = options.enableFocusFrames !== false;
@@ -69,7 +69,7 @@ export class CanvasConfig {
69
69
  }
70
70
 
71
71
  // Validate enabled tools
72
- const availableTools = ['pencil', 'eraser', 'select'];
72
+ const availableTools = ['pointer', 'pencil', 'eraser', 'select'];
73
73
  const invalidTools = this.enabledTools.filter(tool => !availableTools.includes(tool));
74
74
  if (invalidTools.length > 0) {
75
75
  console.warn(`Invalid tools specified: ${invalidTools.join(', ')}`);