@turnix-co/konva-editor 2.0.33 → 2.0.38

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.d.ts CHANGED
@@ -107,6 +107,10 @@ type CanvasProps = {
107
107
  onDirectDrawingCanvasReady?: (canvasRef: React$1.RefObject<HTMLCanvasElement | null>) => void;
108
108
  /** Configuration for context menu permissions and visibility */
109
109
  contextMenuConfig?: ContextMenuConfig;
110
+ /** Custom className for the canvas container */
111
+ className?: string;
112
+ /** Custom style for the canvas container */
113
+ style?: React$1.CSSProperties;
110
114
  };
111
115
  declare const Canvas: React$1.FC<CanvasProps>;
112
116