Convert to PrimeVue monorepo

This commit is contained in:
Mert Sincan 2024-06-11 13:21:12 +01:00
parent 970ba75b06
commit 61929eae75
4144 changed files with 59008 additions and 36177 deletions

View file

@ -0,0 +1,46 @@
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: 'invalid',
type: 'boolean',
default: 'false',
description: 'When present, it specifies that the component should have invalid state style.'
},
{
name: 'variant',
type: 'string',
default: 'null',
description: 'Specifies the input variant of the component.'
},
{
name: 'pt',
type: 'any',
default: 'null',
description: 'Used 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
}
};