claude-web/node_modules/primevue/terminal/style/index.mjs

23 lines
658 B
JavaScript
Raw Normal View History

2026-02-23 02:23:38 +00:00
import { style } from '@primeuix/styles/terminal';
import BaseStyle from '@primevue/core/base/style';
var classes = {
root: 'p-terminal p-component',
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'
};
var TerminalStyle = BaseStyle.extend({
name: 'terminal',
style: style,
classes: classes
});
export { TerminalStyle as default };
//# sourceMappingURL=index.mjs.map