We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04b8cab commit b5a4257Copy full SHA for b5a4257
packages/uui-textarea/lib/uui-textarea.story.ts
@@ -60,6 +60,19 @@ MaxLength.parameters = {
60
},
61
};
62
63
+export const MinLength: Story = props =>
64
+ html`<uui-textarea label="Label" minLength=${props.minLength}></uui-textarea>`;
65
+
66
+MinLength.args = { minLength: 20 };
67
+MinLength.parameters = {
68
+ controls: { include: ['minLength'] },
69
+ docs: {
70
+ source: {
71
+ code: `<uui-textarea label="Label" minLength="20"></uui-textarea>`,
72
+ },
73
74
+};
75
76
export const Disabled: Story = props =>
77
html`<uui-textarea label="Label" ?disabled=${props.disabled}></uui-textarea>`;
78
0 commit comments