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/terminal.js
Cagatay Civici 56e3f23eb3 Fixed typo
2023-08-01 17:01:12 +03:00

34 lines
824 B
JavaScript

const TerminalProps = [
{
name: 'welcomeMessage',
type: 'string',
default: 'null',
description: 'Initial text to display on terminal.'
},
{
name: 'prompt',
type: 'string',
default: 'null',
description: 'Prompt text for each command.'
},
{
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 = {
terminal: {
name: 'Terminal',
description: 'Terminal is a text based user interface.',
props: TerminalProps
}
};