From af054437634dc3e9b2992aac3aade69a542a1e89 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Sat, 18 Apr 2026 11:02:34 +0300 Subject: [PATCH] chore(storybook): purge unused Providers props --- src/shared/lib/storybook/Providers.svelte | 26 +---------------------- 1 file changed, 1 insertion(+), 25 deletions(-) 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();