1
0
Fork 0
mirror of https://github.com/primefaces/primevue.git synced 2025-05-09 08:52:34 +00:00
primevue-mirror/packages/primevue/scripts/components/terminal.js
2024-06-11 13:21:12 +01: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
}
};