47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
|
const InputTextProps = [
|
||
|
{
|
||
|
name: 'modelValue',
|
||
|
type: 'any',
|
||
|
default: 'null',
|
||
|
description: 'Value of the component.'
|
||
|
},
|
||
|
{
|
||
|
name: 'size',
|
||
|
type: 'string',
|
||
|
default: 'null',
|
||
|
description: 'Defines the size of the component, valid values are "small" and "large".'
|
||
|
},
|
||
|
{
|
||
|
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 = {
|
||
|
inputtext: {
|
||
|
name: 'InputText',
|
||
|
description: 'InputText renders a text field to enter data.',
|
||
|
props: InputTextProps
|
||
|
}
|
||
|
};
|