diff --git a/src/shared/lib/storybook/Providers.svelte b/src/shared/lib/storybook/Providers.svelte index 7c2f2f9..0a66cf6 100644 --- a/src/shared/lib/storybook/Providers.svelte +++ b/src/shared/lib/storybook/Providers.svelte @@ -17,33 +17,9 @@ interface Props { * Content snippet */ children: Snippet; - /** - * Initial viewport width - * @default 1280 - */ - initialWidth?: number; - /** - * Initial viewport height - * @default 720 - */ - initialHeight?: number; - /** - * Tooltip delay duration - */ - tooltipDelayDuration?: number; - /** - * Tooltip skip delay duration - */ - tooltipSkipDelayDuration?: number; } -let { - children, - initialWidth = 1280, - initialHeight = 720, - tooltipDelayDuration = 200, - tooltipSkipDelayDuration = 300, -}: Props = $props(); +let { children }: Props = $props(); // Create a responsive manager with default breakpoints const responsiveManager = createResponsiveManager();