2022-09-12 07:13:52 +00:00
|
|
|
const InputTextProps = [
|
|
|
|
{
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'modelValue',
|
|
|
|
type: 'any',
|
|
|
|
default: 'null',
|
|
|
|
description: 'Value of the component.'
|
2022-09-12 07:13:52 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
inputtext: {
|
2022-09-14 14:26:41 +00:00
|
|
|
name: 'InputText',
|
|
|
|
description: 'InputText renders a text field to enter data.',
|
2022-09-12 07:13:52 +00:00
|
|
|
props: InputTextProps
|
|
|
|
}
|
|
|
|
};
|