fui-fancyui
Version:
FancyUI Libary
134 lines (133 loc) • 3.23 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancyHandyNav } from '../FancyHandyNav';
declare const meta: {
component: typeof FancyHandyNav;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
isVisible: {
description: string;
table: {
defaultValue: {
summary: string;
};
};
control: {
type: "boolean";
};
};
wichIndexIsActive: {
description: string;
table: {
defaultValue: {
summary: string;
};
};
control: {
type: "text";
};
};
items: {
description: string;
defaultValue: string;
control: {
type: "object";
};
};
themeType: {
description: string;
table: {
defaultValue: {
summary: string;
};
};
control: {
type: "select";
};
};
themeTypeSwitchList: {
description: string;
table: {
defaultValue: {
summary: string;
};
};
control: {
type: "select";
};
};
layer: {
description: string;
table: {
defaultValue: {
summary: string;
};
};
control: {
type: "range";
min: number;
max: number;
step: number;
};
};
switchListLayer: {
description: string;
table: {
defaultValue: {
summary: string;
};
};
control: {
type: "range";
min: number;
max: number;
step: number;
};
};
externalStyle: {
description: string;
table: {
defaultValue: {
summary: string;
};
};
control: {
type: "object";
};
};
outlined: {
description: string;
table: {
defaultValue: {
summary: string;
};
};
control: {
type: "boolean";
};
};
outlinedBackgroundStrength: {
description: string;
table: {
defaultValue: {
summary: string;
};
};
control: {
type: "range";
min: number;
max: number;
step: number;
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;