@automattic/agenttic-ui
Version:
UI components for the Agenttic framework
44 lines • 1.13 kB
TypeScript
import type { StoryObj } from '@storybook/react';
import React from 'react';
declare const meta: {
title: string;
component: React.ForwardRefExoticComponent<import("./textarea").TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
parameters: {
layout: string;
};
tags: string[];
argTypes: {
placeholder: {
control: "text";
};
value: {
control: "text";
};
disabled: {
control: "boolean";
};
rows: {
control: "number";
};
maxLength: {
control: "number";
};
onChange: {
action: string;
};
onFocus: {
action: string;
};
onBlur: {
action: string;
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;
export declare const WithValue: Story;
export declare const Disabled: Story;
export declare const WithMaxLength: Story;
export declare const MultipleTextareas: Story;
//# sourceMappingURL=textarea.stories.d.ts.map