nectiasw 0.0.196 → 0.0.197
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Textarea/TextArea.stories.d.ts +11 -0
- package/dist/components/Textarea/index.d.ts +1 -0
- package/dist/index.es.js +6635 -6629
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +222 -216
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { TextArea } from '.';
|
|
3
|
+
|
|
4
|
+
declare const meta: Meta<typeof TextArea>;
|
|
5
|
+
export default meta;
|
|
6
|
+
type Story = StoryObj<typeof TextArea>;
|
|
7
|
+
export declare const Default: Story;
|
|
8
|
+
export declare const WithText: Story;
|
|
9
|
+
export declare const Disabled: Story;
|
|
10
|
+
export declare const WithMaxLength: Story;
|
|
11
|
+
export declare const CustomColors: Story;
|