UNPKG

fui-fancyui

Version:
102 lines (101 loc) 2.62 kB
import { StoryObj } from '@storybook/react'; import { default as FancyListBox } from '../FancyListBox'; declare const meta: { component: typeof FancyListBox; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { borderRadius: { description: string; control: { type: "object"; }; }; seperator: { description: string; control: { type: "object"; }; }; boxTitle: { description: string; control: { type: "object"; }; }; outlined: { description: string; control: { type: "boolean"; }; }; itemSettings: { description: string; control: { type: "object"; }; }; boxShadow: { description: string; control: { type: "boolean"; }; }; outlinedBackgroundStrength: { description: string; control: { type: "range"; min: number; max: number; step: number; }; }; 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; }; }; }; sizeC: { description: string; control: { type: "select"; }; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Primary: Story; export declare const WithHoverStyle: Story; export declare const WithMoreApplyedProps: Story;