fui-fancyui
Version:
FancyUI Libary
84 lines (83 loc) • 2.18 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancySelectWrapper } from '../FancySelectWrapper';
declare const meta: {
component: typeof FancySelectWrapper;
title: string;
parameters: {
docs: {
description: {
component: 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;
};
};
};
align: {
description: string;
control: {
type: "select";
options: string[];
};
};
alignInput: {
description: string;
control: {
type: "select";
options: string[];
};
};
externalStyle: {
description: string;
control: {
type: "object";
};
};
label: {
description: string;
control: {
type: "text";
};
};
description: {
description: string;
control: {
type: "text";
};
};
layerDescription: {
description: string;
control: {
type: "range";
min: number;
max: number;
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;