UNPKG

fui-fancyui

Version:
109 lines (108 loc) 2.79 kB
import { StoryObj } from '@storybook/react'; import { default as FancyProgressBar } from '../FancyProgressBar'; declare const meta: { component: typeof FancyProgressBar; 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; }; }; }; label: { type: { name: "string"; required: false; }; description: string; }; labelAlign: { control: { type: "radio"; }; description: string; }; progressAlign: { control: { type: "radio"; }; description: string; }; progressCount: { type: { name: "boolean"; required: false; }; description: string; }; themeTypeText: { description: string; control: { type: "select"; }; options: (string | undefined)[]; table: { defaultValue: { summary: string; }; }; }; textLayer: { description: string; control: { type: "range"; min: number; max: number; }; table: { defaultValue: { summary: string; }; }; }; progress: { type: { name: "number"; required: false; }; description: string; }; maxValue: { type: { name: "number"; required: false; }; description: string; }; }; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Primary: Story;