Rocky_Mountain_Vending/.pnpm-store/v10/files/1f/83a168b466596ebdc092d9d66b34dd8d18f35407f8ecd14dad824806e7d74ba6c9177adf4dcde62af754179a22e7f54cde70ad6653bbbf34fd3c925d5894b0
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

26 lines
930 B
Text

import './dynamic-panel.css';
export declare function DynamicPanel({ header, children, draggable, sizeConfig, closeOnClickOutside, sharePanelSizeGlobally, sharePanelPositionGlobally, containerProps, }: {
header: React.ReactNode;
children: React.ReactNode;
draggable?: boolean;
sharePanelSizeGlobally?: boolean;
sharePanelPositionGlobally?: boolean;
containerProps?: React.HTMLProps<HTMLDivElement>;
sizeConfig?: {
kind: 'resizable';
minWidth: string | number;
minHeight: string | number;
maxWidth: string | number;
maxHeight: string | number;
initialSize: {
height: number;
width: number;
};
sides?: Array<'horizontal' | 'vertical' | 'diagonal'>;
} | {
kind: 'fixed';
height: number;
width: number;
};
closeOnClickOutside?: boolean;
}): import("react/jsx-runtime").JSX.Element;