mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Added style class definitions to *Style.d.ts
This commit is contained in:
parent
290b8e1335
commit
64dca2bdb9
136 changed files with 7542 additions and 1119 deletions
21
components/lib/terminal/style/TerminalStyle.d.ts
vendored
21
components/lib/terminal/style/TerminalStyle.d.ts
vendored
|
@ -1,3 +1,24 @@
|
|||
/**
|
||||
*
|
||||
* Terminal is a text based user interface.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/terminal)
|
||||
*
|
||||
* @module terminalstyle
|
||||
*
|
||||
*/
|
||||
import { BaseStyle } from '../../base/style';
|
||||
|
||||
export enum TerminalClasses {
|
||||
root = 'p-terminal',
|
||||
welcomeMessage = 'p-terminal-welcome-message',
|
||||
commandList = 'p-terminal-command-list',
|
||||
command = 'p-terminal-command',
|
||||
commandValue = 'p-terminal-command-value',
|
||||
commandResponse = 'p-terminal-command-response',
|
||||
prompt = 'p-terminal-prompt',
|
||||
promptLabel = 'p-terminal-prompt-label',
|
||||
promptValue = 'p-terminal-prompt-value'
|
||||
}
|
||||
|
||||
export interface TerminalStyle extends BaseStyle {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue