primevue-mirror/api-generator/components/textarea.js

23 lines
501 B
JavaScript
Raw Normal View History

const TextareaProps = [
{
2022-09-14 14:26:41 +00:00
name: 'modelValue',
type: 'any',
default: 'null',
description: 'Value of the component.'
},
{
2022-09-14 14:26:41 +00:00
name: 'autoResize',
type: 'boolean',
default: 'false',
description: 'When present, height of textarea changes as being typed.'
}
];
module.exports = {
textarea: {
2022-09-14 14:26:41 +00:00
name: 'Textarea',
description: 'Textarea is a multi-line text input element.',
props: TextareaProps
}
};