primeng
Version:
PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB
71 lines (70 loc) • 1.77 kB
TypeScript
import { BaseStyle } from 'primeng/base';
import * as i0 from "@angular/core";
export declare class TerminalStyle extends BaseStyle {
name: string;
theme: ({ dt }: {
dt: any;
}) => string;
classes: {
root: string;
welcomeMessage: string;
commandList: string;
command: string;
commandValue: string;
commandResponse: string;
prompt: string;
promptLabel: string;
promptValue: string;
};
static ɵfac: i0.ɵɵFactoryDeclaration<TerminalStyle, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<TerminalStyle>;
}
/**
*
* Terminal is a text based user interface.
*
* [Live Demo](https://www.primeng.org/terminal)
*
* @module terminalstyle
*
*/
export declare enum TerminalClasses {
/**
* Class name of the root element
*/
root = "p-terminal",
/**
* Class name of the welcome message element
*/
welcomeMessage = "p-terminal-welcome-message",
/**
* Class name of the command list element
*/
commandList = "p-terminal-command-list",
/**
* Class name of the command element
*/
command = "p-terminal-command",
/**
* Class name of the command value element
*/
commandValue = "p-terminal-command-value",
/**
* Class name of the command response element
*/
commandResponse = "p-terminal-command-response",
/**
* Class name of the prompt element
*/
prompt = "p-terminal-prompt",
/**
* Class name of the prompt label element
*/
promptLabel = "p-terminal-prompt-label",
/**
* Class name of the prompt value element
*/
promptValue = "p-terminal-prompt-value"
}
export interface TerminalStyle extends BaseStyle {
}