fui-fancyui
Version:
FancyUI Libary
101 lines (100 loc) • 2.56 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancyChipList } from '../FancyChipList';
declare const meta: {
component: typeof FancyChipList;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
onChange: {
description: string;
control: {
type: "object";
};
};
editable: {
description: string;
control: {
type: "boolean";
};
};
inputPlaceholder: {
description: string;
control: {
type: "text";
};
};
disabled: {
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;
};
};
};
sizeC: {
description: string;
control: {
type: "select";
options: string[];
};
};
chips: {
description: string;
control: {
type: "object";
};
};
legend: {
description: string;
control: {
type: "text";
};
};
systemInformation: {
description: string;
options: (string | undefined)[];
control: {
type: "select";
};
};
outlined: {
description: string;
control: {
type: "boolean";
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
export declare const WithoutChips: Story;