import type { Meta, StoryObj } from "@storybook/react"; import { MediaCarouselModule } from "../"; // @ts-ignore import Arrow from "../../assets/icons/zhaArrow.svg"; import data from "./__mockdata__.json"; declare const window: { innerWidth: number; addEventListener: any; removeEventListener: any; }; const meta: Meta = { component: MediaCarouselModule, tags: ["autodocs"], parameters: { layout: "fullscreen", backgrounds: { default: "dark", }, }, }; export default meta; type Story = StoryObj; export const MediaCarousel: Story = { args: { data, carouselProps: { animationStyle: "elegant", controls: { show: true, directionComponent: , }, paginationType: "leadingZeroNumbers", showPagination: true, gap: 5, variant: "jagged", inactiveWidth: { sm: "100%", md: "30%" }, inactiveHeight: { sm: "100%", md: "60%", lg: "70%" }, width: { sm: "95%", md: "80%" }, height: 500, crop: false, }, }, };