primevue-mirror/components/lib/terminal/style/TerminalStyle.d.ts

52 lines
1.2 KiB
TypeScript
Raw Normal View History

/**
*
* Terminal is a text based user interface.
*
* [Live Demo](https://www.primevue.org/terminal)
*
* @module terminalstyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum TerminalClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-terminal',
2024-05-22 13:52:02 +00:00
/**
* Class name of the welcome message element
*/
welcomeMessage = 'p-terminal-welcome-message',
2024-05-22 13:52:02 +00:00
/**
* Class name of the command list element
*/
commandList = 'p-terminal-command-list',
2024-05-22 13:52:02 +00:00
/**
* Class name of the command element
*/
command = 'p-terminal-command',
2024-05-22 13:52:02 +00:00
/**
* Class name of the command value element
*/
commandValue = 'p-terminal-command-value',
2024-05-22 13:52:02 +00:00
/**
* Class name of the command response element
*/
commandResponse = 'p-terminal-command-response',
2024-05-22 13:52:02 +00:00
/**
* Class name of the prompt element
*/
prompt = 'p-terminal-prompt',
2024-05-22 13:52:02 +00:00
/**
* Class name of the prompt label element
*/
promptLabel = 'p-terminal-prompt-label',
2024-05-22 13:52:02 +00:00
/**
* Class name of the prompt value element
*/
promptValue = 'p-terminal-prompt-value'
}
2023-10-02 13:15:41 +00:00
export interface TerminalStyle extends BaseStyle {}