fui-fancyui
Version:
FancyUI Libary
81 lines (80 loc) • 2.07 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as DateOutputFromTo } from '../DateOutputFromTo';
declare const meta: {
component: typeof DateOutputFromTo;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
whichIsSelecting: {
description: string;
control: {
type: "radio";
};
};
dateFrom: {
description: string;
control: {
type: "date";
};
};
dateTo: {
description: string;
control: {
type: "date";
};
};
handleFromTo: {
description: string;
control: {
type: "object";
};
};
textCustom: {
description: string;
control: {
type: "object";
};
};
sizeC: {
description: string;
options: string[];
control: {
type: "select";
};
};
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;
};
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;