@dineug/erd-editor
Version:
Entity-Relationship Diagram Editor
42 lines (41 loc) • 897 B
TypeScript
import { StoryObj } from '@storybook/html';
import { TextInputProps } from './TextInput';
declare const meta: {
title: string;
render: (args: TextInputProps) => DocumentFragment;
argTypes: {
title: {
control: string;
};
placeholder: {
control: string;
};
readonly: {
control: string;
};
width: {
control: string;
};
value: {
control: string;
};
numberOnly: {
control: string;
};
onInput: {
action: string;
};
onChange: {
action: string;
};
onBlur: {
action: string;
};
onKeyup: {
action: string;
};
};
};
export default meta;
type Story = StoryObj<TextInputProps>;
export declare const Normal: Story;