UNPKG

fui-fancyui

Version:
145 lines (144 loc) 3.58 kB
import { StoryObj } from '@storybook/react'; import { default as InputWrapper } from '../InputWrapper'; declare const meta: { component: typeof InputWrapper; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { isActive: { description: string; control: { type: "boolean"; }; }; outlined: { description: string; control: { type: "boolean"; }; }; disabled: { description: string; control: { type: "boolean"; }; }; align: { description: string; control: { type: "select"; }; }; label: { description: string; control: { type: "text"; }; }; systemMessage: { description: string; control: { type: "object"; }; }; hasValue: { description: string; control: { type: "boolean"; }; }; autoWidth: { description: string; control: { type: "boolean"; }; }; underline: { description: string; control: { type: "boolean"; }; }; placeholder: { description: string; control: { type: "text"; }; }; as: { description: string; control: { type: "text"; }; }; externalStyle: { description: string; control: { type: "object"; }; }; outlinedBackgroundStrength: { description: string; control: { type: "number"; min: number; max: number; step: number; }; }; transparentBackground: { description: string; control: { type: "boolean"; }; }; InputElement: { description: string; control: { type: "object"; }; }; icon: { description: string; control: { type: "object"; }; }; labelVariant: { description: string; control: { type: "select"; }; }; layer: { description: string; control: { type: "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"; }; }; }; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Primary: Story; export declare const WithLabelAndIcon: Story; export declare const WithLabelMovedUp: Story; export declare const WithSystemMessage: Story;