UNPKG

fui-fancyui

Version:
114 lines (113 loc) 3.1 kB
import { default as React } from 'react'; import { StoryObj } from '@storybook/react'; import { default as FancySwipeUpModal } from '../FancySwipeUpModal'; import { TSwipeUpModal } from '../../../molecules/SwipeUpModal/TSwipeUpModal.model'; declare const meta: { component: typeof HelperComponent; title: string; parameters: { docs: { description: { component: string; }; story: { height: string; }; }; }; argTypes: { themeType: { description: string; control: { type: "select"; }; options: ("primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent" | undefined)[]; table: { defaultValue: { summary: "primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent"; }; }; }; layer: { description: string; control: { type: "range"; min: number; max: number; }; table: { defaultValue: { summary: string; }; }; }; appendToDomID: { description: string; control: { type: "text"; }; table: { defaultValue: { summary: string; }; }; }; isOpen: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; isScalable: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; isCloseable: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; modals: { description: string; control: { type: "object"; }; table: { defaultValue: { summary: string; }; }; }; closeModal: { description: string; control: { type: "object"; }; }; }; }; export default meta; type Story = StoryObj<typeof meta>; declare function HelperComponent(props: Partial<React.ComponentProps<typeof FancySwipeUpModal>> & Omit<TSwipeUpModal, 'onClose'>): import("react/jsx-runtime").JSX.Element; declare namespace HelperComponent { var displayName: string; } export declare const Primary: Story;