All files / webview-app/src/lib constants.ts

100% Statements 9/9
100% Branches 0/0
100% Functions 0/0
100% Lines 9/9

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 167x 7x 7x   7x 7x 7x 7x   7x         7x  
export const ZOOM_MIN = 0.4 as const;
export const ZOOM_MAX = 2.5 as const;
export const ZOOM_DEFAULT = 1 as const;
 
export const DEFAULT_BG = "#ffffff" as const;
export const DEFAULT_TEXT_COLOR = "#000000" as const;
export const DEFAULT_FONT_FAMILY = "Arial" as const;
export const DEFAULT_FONT_SIZE = 12 as const;
 
export const MIN_COMPONENT_SIZE = {
  width: 48,
  height: 28,
} as const;
 
export const GRID_SIZE = 8 as const;