import { WidgetType, WIDGET_DIMENSIONS } from '../constants'; export function getDefaultWidth(type: string): number { return WIDGET_DIMENSIONS[type as WidgetType]?.width || WIDGET_DIMENSIONS.DEFAULT.width; } export function getDefaultHeight(type: string): number { return WIDGET_DIMENSIONS[type as WidgetType]?.height || WIDGET_DIMENSIONS.DEFAULT.height; }