fui-fancyui
Version:
FancyUI Libary
117 lines (116 loc) • 3.23 kB
TypeScript
import { StoryObj } from '@storybook/react';
declare const meta: {
component: import('react').ForwardRefExoticComponent<Omit<import('../../../molecules/InputWrapper').TInputWrapperUserInputProps, "InputElement"> & import('../../../atoms/DropDownSelect').TDropDownSelect & import('../../../atoms/DropDownSelect').TDropDownSelectNativeAttrs & import('react').RefAttributes<HTMLSelectElement>>;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
systemMessage: {
description: string;
control: {
type: "object";
};
};
values: {
description: string;
control: {
type: "object";
};
};
value: {
description: string;
control: {
type: "text";
};
};
emptySelect: {
description: string;
control: {
type: "boolean";
};
};
transparentBackground: {
description: string;
control: {
type: "boolean";
};
table: {
defaultValue: {
summary: string;
};
};
};
outlined: {
description: string;
control: {
type: "boolean";
};
};
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;
};
};
};
label: {
description: string;
control: {
type: "text";
};
};
placeholder: {
description: string;
control: {
type: "text";
};
};
disabled: {
description: string;
control: {
type: "boolean";
};
table: {
defaultValue: {
summary: string;
};
};
};
align: {
description: string;
control: {
type: "radio";
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
export declare const WithKeyValue: Story;
export declare const WithErrorState: Story;
export declare const WithSuccessState: Story;
export declare const WithInfoState: Story;