/** * Terminal · xterm sub-entry. * * Opt-in module that pulls `@xterm/xterm` and the addon family * (`@xterm/addon-fit`, `addon-web-links`, `addon-search`, `addon-unicode11`). * Consumers that don't render xterm should NOT import this file — the main * `@mks2508/mks-ui/react` barrel does not re-export anything from here. * * @module @mks2508/mks-ui/react/blocks/Terminal/xterm * * @example * ```tsx * import { * TerminalLogsPanel, * XTermWrapper, * } from '@mks2508/mks-ui/react/blocks/Terminal/xterm'; * ``` */ export { TerminalPanel, type ITerminalPanelProps } from './TerminalPanel'; export { TerminalLogsPanel, terminalLogsPanelStyles, type TerminalLogsPanelSlot, } from './panel/TerminalLogsPanel'; export { TerminalInteractivePanelXterm } from './panel/TerminalInteractivePanelXterm'; export { XTermAdapter } from './XTermAdapter'; export { XTermWrapper, useTerminalSearch, type IXTermWrapperProps, } from './TerminalXterm'; export { LogLinesViewer, type ILogLinesViewerProps } from './panel/LogLinesViewer'; export { XTermRenderer } from './renderers/XTermRenderer'; export type { ITerminalLogsPanelProps, ITerminalLogsPanelRef, } from './panel/TerminalLogsPanel.types'; export type { ITerminalRendererProps, ITerminalRendererRef, } from './renderers/types'; //# sourceMappingURL=xterm.d.ts.map