2021-05-12 09:35:29 +00:00
|
|
|
const TextareaProps = [
|
|
|
|
{
|
2022-08-22 13:47:07 +00:00
|
|
|
name: "value",
|
2021-05-12 09:35:29 +00:00
|
|
|
type: "any",
|
|
|
|
default: "null",
|
|
|
|
description: "Value of the component."
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "autoResize",
|
|
|
|
type: "boolean",
|
|
|
|
default: "false",
|
|
|
|
description: "When present, height of textarea changes as being typed."
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
textarea: {
|
|
|
|
name: "Textarea",
|
|
|
|
description: "Textarea is a multi-line text input element.",
|
|
|
|
props: TextareaProps
|
|
|
|
}
|
|
|
|
};
|