1
0
Fork 0
mirror of https://github.com/primefaces/primevue.git synced 2025-05-08 16:37:15 +00:00
primevue-mirror/api-generator/components/textarea.js
Tuğçe Küçükoğlu f8f071f5ff Update api-generator
2023-07-06 16:20:37 +03:00

34 lines
841 B
JavaScript

const TextareaProps = [
{
name: 'modelValue',
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.'
},
{
name: 'pt',
type: 'any',
default: 'null',
description: 'Uses to pass attributes to DOM elements inside the component.'
},
{
name: 'unstyled',
type: 'boolean',
default: 'false',
description: 'When enabled, it removes component related styles in the core.'
}
];
module.exports = {
textarea: {
name: 'Textarea',
description: 'Textarea is a multi-line text input element.',
props: TextareaProps
}
};