fui-fancyui
Version:
FancyUI Libary
92 lines (91 loc) • 2.34 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as MonthWithDays } from '../MonthWithDays';
declare const meta: {
component: typeof MonthWithDays;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
monthIdx: {
description: string;
control: {
type: "number";
};
};
startWeekOn: {
description: string;
control: {
type: "number";
};
};
year: {
description: string;
control: {
type: "number";
};
};
handleDateClick: {
description: string;
control: {
type: "object";
};
};
selectedDates: {
description: string;
control: {
type: "object";
};
};
isRangePicking: {
description: string;
control: {
type: "boolean";
};
};
disabledDateSetting: {
description: string;
control: {
type: "object";
};
};
externalMonthWithDays: {
description: string;
control: {
type: "object";
};
};
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;