fui-fancyui
Version:
FancyUI Libary
105 lines (104 loc) • 2.65 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as Paginator } from '../Paginator';
declare const meta: {
component: typeof Paginator;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
currentPage: {
description: string;
type: {
name: "number";
};
table: {
defaultValue: {
summary: string;
};
};
};
showPages: {
description: string;
type: {
name: "number";
};
table: {
defaultValue: {
summary: string;
};
};
};
onPageChange: {
description: string;
type: {
name: "function";
};
};
outlinedButton: {
description: string;
type: {
name: "boolean";
};
table: {
defaultValue: {
summary: string;
};
};
};
numberButtonStyle: {
description: string;
type: {
name: "string";
};
table: {
defaultValue: {
summary: string;
};
};
};
pageLimits: {
description: string;
type: {
name: "number";
};
table: {
defaultValue: {
summary: string;
};
};
};
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;