@mks2508/mks-ui 0.3.2 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/react-ui/blocks/Terminal/ResttyAdapter.d.ts +146 -0
- package/dist/react-ui/blocks/Terminal/ResttyAdapter.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/ResttyAdapter.js +213 -0
- package/dist/react-ui/blocks/Terminal/Terminal.adapter.d.ts +55 -0
- package/dist/react-ui/blocks/Terminal/Terminal.adapter.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/Terminal.adapter.js +68 -0
- package/dist/react-ui/blocks/Terminal/Terminal.theme.d.ts +43 -0
- package/dist/react-ui/blocks/Terminal/Terminal.theme.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/Terminal.theme.js +59 -0
- package/dist/react-ui/blocks/Terminal/Terminal.theme.restty.d.ts +63 -0
- package/dist/react-ui/blocks/Terminal/Terminal.theme.restty.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/Terminal.theme.restty.js +109 -0
- package/dist/react-ui/blocks/Terminal/Terminal.types.d.ts +351 -0
- package/dist/react-ui/blocks/Terminal/Terminal.types.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/TerminalPanel.d.ts +60 -0
- package/dist/react-ui/blocks/Terminal/TerminalPanel.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/TerminalPanel.js +183 -0
- package/dist/react-ui/blocks/Terminal/TerminalRestty.d.ts +111 -0
- package/dist/react-ui/blocks/Terminal/TerminalRestty.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/TerminalRestty.js +185 -0
- package/dist/react-ui/blocks/Terminal/TerminalXterm.d.ts +58 -0
- package/dist/react-ui/blocks/Terminal/TerminalXterm.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/TerminalXterm.js +143 -0
- package/dist/react-ui/blocks/Terminal/XTermAdapter.d.ts +87 -0
- package/dist/react-ui/blocks/Terminal/XTermAdapter.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/XTermAdapter.js +135 -0
- package/dist/react-ui/blocks/Terminal/components/LogLineBadges.d.ts +160 -0
- package/dist/react-ui/blocks/Terminal/components/LogLineBadges.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/components/LogLineBadges.js +185 -0
- package/dist/react-ui/blocks/Terminal/components/SpecializedSyntaxHighlighter.d.ts +48 -0
- package/dist/react-ui/blocks/Terminal/components/SpecializedSyntaxHighlighter.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/components/SpecializedSyntaxHighlighter.js +139 -0
- package/dist/react-ui/blocks/Terminal/components/SyntaxHighlight.d.ts +60 -0
- package/dist/react-ui/blocks/Terminal/components/SyntaxHighlight.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/components/SyntaxHighlight.js +352 -0
- package/dist/react-ui/blocks/Terminal/components/TerminalLogBadge.d.ts +36 -0
- package/dist/react-ui/blocks/Terminal/components/TerminalLogBadge.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/components/TerminalLogBadge.js +52 -0
- package/dist/react-ui/blocks/Terminal/components/index.d.ts +10 -0
- package/dist/react-ui/blocks/Terminal/components/index.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/components/index.js +4 -0
- package/dist/react-ui/blocks/Terminal/hooks/index.d.ts +11 -0
- package/dist/react-ui/blocks/Terminal/hooks/index.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/hooks/index.js +2 -0
- package/dist/react-ui/blocks/Terminal/hooks/useTerminalSettings.d.ts +69 -0
- package/dist/react-ui/blocks/Terminal/hooks/useTerminalSettings.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/hooks/useTerminalSettings.js +162 -0
- package/dist/react-ui/blocks/Terminal/hooks/useTerminalWebSocket.d.ts +104 -0
- package/dist/react-ui/blocks/Terminal/hooks/useTerminalWebSocket.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/hooks/useTerminalWebSocket.js +180 -0
- package/dist/react-ui/blocks/Terminal/index.d.ts +39 -0
- package/dist/react-ui/blocks/Terminal/index.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/index.js +38 -0
- package/dist/react-ui/blocks/Terminal/panel/LogLinesViewer.d.ts +58 -0
- package/dist/react-ui/blocks/Terminal/panel/LogLinesViewer.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/LogLinesViewer.js +222 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalDebugPanel.d.ts +74 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalDebugPanel.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalDebugPanel.js +168 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalFilterDropdown.d.ts +42 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalFilterDropdown.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalFilterDropdown.js +175 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalFilterTabs.d.ts +43 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalFilterTabs.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalInteractivePanel.d.ts +38 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalInteractivePanel.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalInteractivePanel.js +62 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalInteractivePanel.types.d.ts +67 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalInteractivePanel.types.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalInteractivePanelRestty.d.ts +32 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalInteractivePanelRestty.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalInteractivePanelRestty.js +326 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalInteractivePanelXterm.d.ts +36 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalInteractivePanelXterm.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalInteractivePanelXterm.js +371 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalLogsPanel.d.ts +67 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalLogsPanel.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalLogsPanel.js +417 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalLogsPanel.types.d.ts +197 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalLogsPanel.types.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalPanelChrome.d.ts +54 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalPanelChrome.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalPanelChrome.js +193 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalPanelChrome.types.d.ts +57 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalPanelChrome.types.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalPanelFooter.d.ts +30 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalPanelFooter.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalPanelFooter.js +126 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalPanelHeader.d.ts +31 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalPanelHeader.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalPanelHeader.js +149 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalPanelToolbar.d.ts +35 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalPanelToolbar.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalSessionControl.d.ts +58 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalSessionControl.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalSessionTabs.d.ts +63 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalSessionTabs.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalSessionTabs.js +245 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalSettingsPopover.d.ts +24 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalSettingsPopover.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalSettingsPopover.js +225 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalThemeSelector.d.ts +35 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalThemeSelector.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/TerminalThemeSelector.js +187 -0
- package/dist/react-ui/blocks/Terminal/panel/index.d.ts +30 -0
- package/dist/react-ui/blocks/Terminal/panel/index.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/panel/terminal-filter-dropdown.module-Bovc57nm.css +60 -0
- package/dist/react-ui/blocks/Terminal/panel/terminal-filter-dropdown.module.js +5 -0
- package/dist/react-ui/blocks/Terminal/panel/terminal-session-tabs.module-QyxHO7cN.css +60 -0
- package/dist/react-ui/blocks/Terminal/panel/terminal-session-tabs.module.js +5 -0
- package/dist/react-ui/blocks/Terminal/parsing/BadgeFormatter.d.ts +73 -0
- package/dist/react-ui/blocks/Terminal/parsing/BadgeFormatter.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/BadgeFormatter.js +136 -0
- package/dist/react-ui/blocks/Terminal/parsing/HttpLogParser.d.ts +117 -0
- package/dist/react-ui/blocks/Terminal/parsing/HttpLogParser.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/HttpLogParser.js +174 -0
- package/dist/react-ui/blocks/Terminal/parsing/LogParser.types.d.ts +221 -0
- package/dist/react-ui/blocks/Terminal/parsing/LogParser.types.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/LogParserService.d.ts +184 -0
- package/dist/react-ui/blocks/Terminal/parsing/LogParserService.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/LogParserService.js +478 -0
- package/dist/react-ui/blocks/Terminal/parsing/MultilineAggregator.d.ts +173 -0
- package/dist/react-ui/blocks/Terminal/parsing/MultilineAggregator.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/MultilineAggregator.js +313 -0
- package/dist/react-ui/blocks/Terminal/parsing/PersistentLogBuffer.d.ts +181 -0
- package/dist/react-ui/blocks/Terminal/parsing/PersistentLogBuffer.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/PersistentLogBuffer.js +221 -0
- package/dist/react-ui/blocks/Terminal/parsing/SyntaxHighlighter.d.ts +69 -0
- package/dist/react-ui/blocks/Terminal/parsing/SyntaxHighlighter.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/SyntaxHighlighter.js +142 -0
- package/dist/react-ui/blocks/Terminal/parsing/TableParser.d.ts +125 -0
- package/dist/react-ui/blocks/Terminal/parsing/TableParser.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/TableParser.js +245 -0
- package/dist/react-ui/blocks/Terminal/parsing/ansi/AnsiColorMapper.d.ts +165 -0
- package/dist/react-ui/blocks/Terminal/parsing/ansi/AnsiColorMapper.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/ansi/AnsiColorMapper.js +225 -0
- package/dist/react-ui/blocks/Terminal/parsing/ansi/AnsiParser.d.ts +164 -0
- package/dist/react-ui/blocks/Terminal/parsing/ansi/AnsiParser.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/ansi/AnsiParser.js +285 -0
- package/dist/react-ui/blocks/Terminal/parsing/ansi/ansi.constants.d.ts +188 -0
- package/dist/react-ui/blocks/Terminal/parsing/ansi/ansi.constants.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/ansi/ansi.constants.js +178 -0
- package/dist/react-ui/blocks/Terminal/parsing/ansi/index.d.ts +12 -0
- package/dist/react-ui/blocks/Terminal/parsing/ansi/index.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/index.d.ts +24 -0
- package/dist/react-ui/blocks/Terminal/parsing/index.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/levels/LogLevel.types.d.ts +56 -0
- package/dist/react-ui/blocks/Terminal/parsing/levels/LogLevel.types.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/levels/LogLevelDetector.d.ts +140 -0
- package/dist/react-ui/blocks/Terminal/parsing/levels/LogLevelDetector.d.ts.map +1 -0
- package/dist/react-ui/blocks/Terminal/parsing/levels/LogLevelDetector.js +325 -0
- package/dist/react-ui/blocks/Terminal/parsing/levels/index.d.ts +10 -0
- package/dist/react-ui/blocks/Terminal/parsing/levels/index.d.ts.map +1 -0
- package/dist/react-ui/blocks/index.d.ts +11 -0
- package/dist/react-ui/blocks/index.d.ts.map +1 -0
- package/dist/react-ui/icons/lucide-animated/activity.js +1 -1
- package/dist/react-ui/icons/lucide-animated/bell-electric.js +1 -1
- package/dist/react-ui/icons/lucide-animated/bell.js +1 -1
- package/dist/react-ui/icons/lucide-animated/bot.js +1 -1
- package/dist/react-ui/icons/lucide-animated/box.js +1 -1
- package/dist/react-ui/icons/lucide-animated/circle-check.js +1 -1
- package/dist/react-ui/icons/lucide-animated/delete.js +1 -1
- package/dist/react-ui/icons/lucide-animated/download.js +1 -1
- package/dist/react-ui/icons/lucide-animated/home.js +1 -1
- package/dist/react-ui/icons/lucide-animated/layout-panel-top.js +1 -1
- package/dist/react-ui/icons/lucide-animated/plus.js +1 -1
- package/dist/react-ui/icons/lucide-animated/search.js +1 -1
- package/dist/react-ui/icons/lucide-animated/settings.js +1 -1
- package/dist/react-ui/icons/lucide-animated/trending-down.js +1 -1
- package/dist/react-ui/icons/lucide-animated/trending-up.js +1 -1
- package/dist/react-ui/icons/lucide-animated/x.js +1 -1
- package/dist/react-ui/index.js +3 -1
- package/dist/react-ui/lib/icon-wrapper.d.ts +37 -0
- package/dist/react-ui/lib/icon-wrapper.d.ts.map +1 -0
- package/dist/react-ui/lib/icon-wrapper.js +55 -0
- package/dist/react-ui/lib/index.d.ts +1 -0
- package/dist/react-ui/lib/index.d.ts.map +1 -1
- package/dist/react-ui/lib/index.js +1 -0
- package/dist/react-ui/primitives/AutoHeight/index.d.ts +1 -1
- package/dist/react-ui/primitives/CountingNumber/index.d.ts +1 -1
- package/dist/react-ui/primitives/waapi/SlidingNumber/SlidingNumber.styles.d.ts +1 -1
- package/dist/react-ui/primitives/waapi/SlidingText/SlidingText.styles.d.ts +1 -1
- package/dist/react-ui/ui/Accordion/Accordion.styles.d.ts +1 -1
- package/dist/react-ui/ui/Accordion/Accordion.types.d.ts +1 -1
- package/dist/react-ui/ui/AlertDialog/AlertDialog.styles.d.ts +1 -1
- package/dist/react-ui/ui/AlertDialog/AlertDialog.types.d.ts +1 -1
- package/dist/react-ui/ui/Badge/Badge.styles.d.ts +1 -1
- package/dist/react-ui/ui/Badge/Badge.types.d.ts +1 -1
- package/dist/react-ui/ui/Button/Button.styles.d.ts +2 -2
- package/dist/react-ui/ui/Button/Button.types.d.ts +1 -1
- package/dist/react-ui/ui/Card/Card.styles.d.ts +1 -1
- package/dist/react-ui/ui/Card/Card.types.d.ts +1 -1
- package/dist/react-ui/ui/Checkbox/Checkbox.styles.d.ts +1 -1
- package/dist/react-ui/ui/Checkbox/Checkbox.types.d.ts +1 -1
- package/dist/react-ui/ui/Combobox/Combobox.styles.d.ts +1 -1
- package/dist/react-ui/ui/Combobox/Combobox.types.d.ts +1 -1
- package/dist/react-ui/ui/CornerBracket/CornerBracket.styles.d.ts +2 -2
- package/dist/react-ui/ui/CornerBracket/CornerBracket.styles.js +1 -1
- package/dist/react-ui/ui/CornerBracket/CornerBracket.types.d.ts +1 -1
- package/dist/react-ui/ui/DataCard/DataCard.styles.d.ts +1 -1
- package/dist/react-ui/ui/DataCard/DataCard.types.d.ts +1 -1
- package/dist/react-ui/ui/DataCard/index.d.ts +1 -1
- package/dist/react-ui/ui/Dialog/Dialog.styles.d.ts +1 -1
- package/dist/react-ui/ui/Dialog/Dialog.types.d.ts +1 -1
- package/dist/react-ui/ui/DropdownMenu/DropdownMenu.styles.d.ts +1 -1
- package/dist/react-ui/ui/DropdownMenu/DropdownMenu.types.d.ts +1 -1
- package/dist/react-ui/ui/Field/Field.styles.d.ts +1 -1
- package/dist/react-ui/ui/Field/Field.types.d.ts +1 -1
- package/dist/react-ui/ui/Input/Input.styles.d.ts +1 -1
- package/dist/react-ui/ui/Input/Input.types.d.ts +1 -1
- package/dist/react-ui/ui/InputGroup/InputGroup.styles.d.ts +1 -1
- package/dist/react-ui/ui/InputGroup/InputGroup.types.d.ts +1 -1
- package/dist/react-ui/ui/Label/Label.styles.d.ts +1 -1
- package/dist/react-ui/ui/Label/Label.types.d.ts +1 -1
- package/dist/react-ui/ui/Menu/Menu.styles.d.ts +1 -1
- package/dist/react-ui/ui/Menu/Menu.types.d.ts +2 -2
- package/dist/react-ui/ui/Popover/Popover.styles.d.ts +1 -1
- package/dist/react-ui/ui/Popover/Popover.types.d.ts +1 -1
- package/dist/react-ui/ui/Progress/Progress.styles.d.ts +1 -1
- package/dist/react-ui/ui/Progress/Progress.types.d.ts +2 -2
- package/dist/react-ui/ui/Select/Select.styles.d.ts +1 -1
- package/dist/react-ui/ui/Select/Select.types.d.ts +1 -1
- package/dist/react-ui/ui/Separator/Separator.styles.d.ts +1 -1
- package/dist/react-ui/ui/Separator/Separator.types.d.ts +1 -1
- package/dist/react-ui/ui/Switch/Switch.styles.d.ts +1 -1
- package/dist/react-ui/ui/Switch/Switch.types.d.ts +1 -1
- package/dist/react-ui/ui/Tabs/Tabs.styles.d.ts +43 -25
- package/dist/react-ui/ui/Tabs/Tabs.styles.d.ts.map +1 -1
- package/dist/react-ui/ui/Tabs/Tabs.styles.js +105 -13
- package/dist/react-ui/ui/Tabs/Tabs.types.d.ts +9 -6
- package/dist/react-ui/ui/Tabs/Tabs.types.d.ts.map +1 -1
- package/dist/react-ui/ui/Tabs/index.d.ts +18 -9
- package/dist/react-ui/ui/Tabs/index.d.ts.map +1 -1
- package/dist/react-ui/ui/Tabs/index.js +99 -27
- package/dist/react-ui/ui/TextFlow/TextFlow.styles.d.ts +1 -1
- package/dist/react-ui/ui/Textarea/Textarea.styles.d.ts +1 -1
- package/dist/react-ui/ui/Textarea/Textarea.types.d.ts +1 -1
- package/dist/react-ui/ui/Tooltip/Tooltip.styles.d.ts +1 -1
- package/dist/react-ui/ui/Tooltip/Tooltip.types.d.ts +1 -1
- package/dist/react-ui/ui/index.js +1 -0
- package/package.json +54 -6
- package/src/react-ui/blocks/Terminal/ResttyAdapter.ts +278 -0
- package/src/react-ui/blocks/Terminal/Terminal.adapter.ts +97 -0
- package/src/react-ui/blocks/Terminal/Terminal.theme.restty.ts +155 -0
- package/src/react-ui/blocks/Terminal/Terminal.theme.ts +80 -0
- package/src/react-ui/blocks/Terminal/Terminal.types.ts +438 -0
- package/src/react-ui/blocks/Terminal/TerminalPanel.tsx +269 -0
- package/src/react-ui/blocks/Terminal/TerminalRestty.tsx +326 -0
- package/src/react-ui/blocks/Terminal/TerminalXterm.tsx +230 -0
- package/src/react-ui/blocks/Terminal/XTermAdapter.ts +163 -0
- package/src/react-ui/blocks/Terminal/components/LogLineBadges.tsx +316 -0
- package/src/react-ui/blocks/Terminal/components/SpecializedSyntaxHighlighter.tsx +218 -0
- package/src/react-ui/blocks/Terminal/components/SyntaxHighlight.tsx +386 -0
- package/src/react-ui/blocks/Terminal/components/TerminalLogBadge.tsx +67 -0
- package/src/react-ui/blocks/Terminal/components/index.ts +10 -0
- package/src/react-ui/blocks/Terminal/hooks/index.ts +22 -0
- package/src/react-ui/blocks/Terminal/hooks/useTerminalSettings.ts +229 -0
- package/src/react-ui/blocks/Terminal/hooks/useTerminalWebSocket.ts +292 -0
- package/src/react-ui/blocks/Terminal/index.ts +103 -0
- package/src/react-ui/blocks/Terminal/panel/LogLinesViewer.tsx +330 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalDebugPanel.tsx +242 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalFilterDropdown.tsx +202 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalFilterTabs.tsx +140 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalInteractivePanel.tsx +68 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalInteractivePanel.types.ts +85 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalInteractivePanelRestty.tsx +383 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalInteractivePanelXterm.tsx +439 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalLogsPanel.tsx +550 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalLogsPanel.types.ts +259 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalPanelChrome.tsx +237 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalPanelChrome.types.ts +76 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalPanelFooter.tsx +112 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalPanelHeader.tsx +178 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalPanelToolbar.tsx +203 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalSessionControl.tsx +252 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalSessionTabs.tsx +334 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalSettingsPopover.tsx +261 -0
- package/src/react-ui/blocks/Terminal/panel/TerminalThemeSelector.tsx +248 -0
- package/src/react-ui/blocks/Terminal/panel/index.ts +72 -0
- package/src/react-ui/blocks/Terminal/panel/terminal-filter-dropdown.module.css +59 -0
- package/src/react-ui/blocks/Terminal/panel/terminal-session-tabs.module.css +59 -0
- package/src/react-ui/blocks/Terminal/parsing/BadgeFormatter.ts +180 -0
- package/src/react-ui/blocks/Terminal/parsing/HttpLogParser.ts +248 -0
- package/src/react-ui/blocks/Terminal/parsing/LogParser.types.ts +283 -0
- package/src/react-ui/blocks/Terminal/parsing/LogParserService.ts +686 -0
- package/src/react-ui/blocks/Terminal/parsing/MultilineAggregator.ts +466 -0
- package/src/react-ui/blocks/Terminal/parsing/PersistentLogBuffer.ts +343 -0
- package/src/react-ui/blocks/Terminal/parsing/SyntaxHighlighter.ts +167 -0
- package/src/react-ui/blocks/Terminal/parsing/TableParser.ts +348 -0
- package/src/react-ui/blocks/Terminal/parsing/ansi/AnsiColorMapper.ts +251 -0
- package/src/react-ui/blocks/Terminal/parsing/ansi/AnsiParser.ts +390 -0
- package/src/react-ui/blocks/Terminal/parsing/ansi/ansi.constants.ts +320 -0
- package/src/react-ui/blocks/Terminal/parsing/ansi/index.ts +20 -0
- package/src/react-ui/blocks/Terminal/parsing/index.ts +69 -0
- package/src/react-ui/blocks/Terminal/parsing/levels/LogLevel.types.ts +68 -0
- package/src/react-ui/blocks/Terminal/parsing/levels/LogLevelDetector.ts +436 -0
- package/src/react-ui/blocks/Terminal/parsing/levels/index.ts +14 -0
- package/src/react-ui/blocks/index.ts +11 -0
- package/src/react-ui/icons/lucide-animated/activity.tsx +2 -2
- package/src/react-ui/icons/lucide-animated/bell-electric.tsx +1 -1
- package/src/react-ui/icons/lucide-animated/bell.tsx +2 -2
- package/src/react-ui/icons/lucide-animated/bot.tsx +1 -1
- package/src/react-ui/icons/lucide-animated/box.tsx +2 -2
- package/src/react-ui/icons/lucide-animated/circle-check.tsx +2 -2
- package/src/react-ui/icons/lucide-animated/delete.tsx +2 -2
- package/src/react-ui/icons/lucide-animated/download.tsx +2 -2
- package/src/react-ui/icons/lucide-animated/home.tsx +2 -2
- package/src/react-ui/icons/lucide-animated/layout-panel-top.tsx +1 -1
- package/src/react-ui/icons/lucide-animated/plus.tsx +1 -1
- package/src/react-ui/icons/lucide-animated/search.tsx +1 -1
- package/src/react-ui/icons/lucide-animated/settings.tsx +1 -1
- package/src/react-ui/icons/lucide-animated/trending-down.tsx +2 -2
- package/src/react-ui/icons/lucide-animated/trending-up.tsx +2 -2
- package/src/react-ui/icons/lucide-animated/x.tsx +2 -2
- package/src/react-ui/lib/icon-wrapper.tsx +70 -0
- package/src/react-ui/lib/index.ts +1 -0
- package/src/react-ui/ui/CornerBracket/CornerBracket.styles.ts +1 -1
- package/src/react-ui/ui/Tabs/Tabs.css +39 -0
- package/src/react-ui/ui/Tabs/Tabs.styles.ts +119 -31
- package/src/react-ui/ui/Tabs/Tabs.types.ts +8 -3
- package/src/react-ui/ui/Tabs/index.tsx +135 -27
- package/dist/index.css +0 -129
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../../lib/utils.js";
|
|
4
|
+
import { TerminalPanelHeader } from "./TerminalPanelHeader.js";
|
|
5
|
+
import { TerminalSessionTabs } from "./TerminalSessionTabs.js";
|
|
6
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
7
|
+
|
|
8
|
+
//#region src/react-ui/blocks/Terminal/panel/TerminalPanelChrome.tsx
|
|
9
|
+
/**
|
|
10
|
+
* TerminalPanelChrome Component.
|
|
11
|
+
*
|
|
12
|
+
* Reusable Ghostty-styled wrapper providing shared visual chrome
|
|
13
|
+
* for both log viewer and interactive terminal panels.
|
|
14
|
+
*
|
|
15
|
+
* Includes:
|
|
16
|
+
* - Multi-layer glassmorphism shell
|
|
17
|
+
* - Noise texture SVG overlay for depth
|
|
18
|
+
* - Animated top accent line (primary gradient with glow)
|
|
19
|
+
* - Session tabs (TerminalSessionTabs)
|
|
20
|
+
* - macOS-style header (TerminalPanelHeader)
|
|
21
|
+
* - Slots for action bar, children (terminal content), and footer
|
|
22
|
+
* - Neon magenta scrollbar styles
|
|
23
|
+
*
|
|
24
|
+
* @module components/devenv/terminal/panel/chrome
|
|
25
|
+
*/
|
|
26
|
+
/**
|
|
27
|
+
* Noise texture SVG for glassmorphism depth.
|
|
28
|
+
* Fractal noise pattern applied as background image.
|
|
29
|
+
*/
|
|
30
|
+
const NOISE_TEXTURE_SVG = `"data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"`;
|
|
31
|
+
/**
|
|
32
|
+
* Terminal scroll customization with neon magenta glow effect.
|
|
33
|
+
* Applied to xterm.js viewport scrollbar.
|
|
34
|
+
*/
|
|
35
|
+
const terminalScrollStyles = `
|
|
36
|
+
@keyframes shimmer-line {
|
|
37
|
+
0%, 100% { background-position: 200% 0; }
|
|
38
|
+
50% { background-position: -200% 0; }
|
|
39
|
+
}
|
|
40
|
+
.terminal-scroll .xterm-viewport {
|
|
41
|
+
overflow-y: auto;
|
|
42
|
+
}
|
|
43
|
+
.terminal-scroll .xterm-viewport::-webkit-scrollbar {
|
|
44
|
+
width: 8px;
|
|
45
|
+
}
|
|
46
|
+
.terminal-scroll .xterm-viewport::-webkit-scrollbar-track {
|
|
47
|
+
background: rgba(36, 27, 47, 0.5);
|
|
48
|
+
}
|
|
49
|
+
.terminal-scroll .xterm-viewport::-webkit-scrollbar-thumb {
|
|
50
|
+
background: linear-gradient(
|
|
51
|
+
180deg,
|
|
52
|
+
rgba(212, 12, 103, 0.3) 0%,
|
|
53
|
+
rgba(212, 12, 103, 0.5) 50%,
|
|
54
|
+
rgba(212, 12, 103, 0.3) 100%
|
|
55
|
+
);
|
|
56
|
+
border-radius: 4px;
|
|
57
|
+
box-shadow: 0 0 10px rgba(212, 12, 103, 0.3);
|
|
58
|
+
}
|
|
59
|
+
.terminal-scroll .xterm-viewport::-webkit-scrollbar-thumb:hover {
|
|
60
|
+
background: linear-gradient(
|
|
61
|
+
180deg,
|
|
62
|
+
rgba(212, 12, 103, 0.5) 0%,
|
|
63
|
+
rgba(212, 12, 103, 0.7) 50%,
|
|
64
|
+
rgba(212, 12, 103, 0.5) 100%
|
|
65
|
+
);
|
|
66
|
+
box-shadow: 0 0 15px rgba(212, 12, 103, 0.5);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/* === CRT Shader Effects (opt-in via settings) === */
|
|
70
|
+
|
|
71
|
+
/* Scanline overlay - replicates bettercrt.glsl scanline effect */
|
|
72
|
+
.terminal-crt {
|
|
73
|
+
position: relative;
|
|
74
|
+
}
|
|
75
|
+
.terminal-crt::after {
|
|
76
|
+
content: '';
|
|
77
|
+
position: absolute;
|
|
78
|
+
inset: 0;
|
|
79
|
+
pointer-events: none;
|
|
80
|
+
z-index: 20;
|
|
81
|
+
background: repeating-linear-gradient(
|
|
82
|
+
0deg,
|
|
83
|
+
rgba(0, 0, 0, 0.12) 0px,
|
|
84
|
+
rgba(0, 0, 0, 0.12) 1px,
|
|
85
|
+
transparent 1px,
|
|
86
|
+
transparent 2px
|
|
87
|
+
);
|
|
88
|
+
mix-blend-mode: multiply;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* Vignette - CRT monitor light falloff */
|
|
92
|
+
.terminal-crt::before {
|
|
93
|
+
content: '';
|
|
94
|
+
position: absolute;
|
|
95
|
+
inset: 0;
|
|
96
|
+
pointer-events: none;
|
|
97
|
+
z-index: 19;
|
|
98
|
+
background: radial-gradient(
|
|
99
|
+
ellipse at center,
|
|
100
|
+
transparent 60%,
|
|
101
|
+
rgba(0, 0, 0, 0.15) 100%
|
|
102
|
+
);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/* Bloom/glow - replicates bloom.glsl text glow on bright text */
|
|
106
|
+
.terminal-bloom * {
|
|
107
|
+
text-shadow: 0 0 4px currentColor;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/* Bloom on xterm canvas - subtle drop-shadow filter on the canvas element */
|
|
111
|
+
.terminal-bloom canvas {
|
|
112
|
+
filter: drop-shadow(0 0 1px rgba(255, 200, 100, 0.15));
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
/* Reduced motion - disable all CRT effects */
|
|
116
|
+
@media (prefers-reduced-motion: reduce) {
|
|
117
|
+
.terminal-crt::after,
|
|
118
|
+
.terminal-crt::before { display: none; }
|
|
119
|
+
.terminal-bloom * { text-shadow: none !important; }
|
|
120
|
+
.terminal-bloom canvas { filter: none !important; }
|
|
121
|
+
}
|
|
122
|
+
`;
|
|
123
|
+
/**
|
|
124
|
+
* TerminalPanelChrome Component.
|
|
125
|
+
*
|
|
126
|
+
* Reusable Ghostty-styled shell that wraps terminal content with
|
|
127
|
+
* consistent visual chrome. Used by both TerminalLogsPanel (readonly)
|
|
128
|
+
* and TerminalInteractivePanel (interactive).
|
|
129
|
+
*
|
|
130
|
+
* @example
|
|
131
|
+
* ```tsx
|
|
132
|
+
* <TerminalPanelChrome
|
|
133
|
+
* containerName="devenv-agent-backend"
|
|
134
|
+
* isConnected={true}
|
|
135
|
+
* sessions={sessions}
|
|
136
|
+
* activeSessionId="session-1"
|
|
137
|
+
* onSessionTabClick={(id) => setActiveSession(id)}
|
|
138
|
+
* onSessionClose={(id) => closeSession(id)}
|
|
139
|
+
* onNewSession={() => createSession()}
|
|
140
|
+
* actionBar={<TerminalFilterTabs ... />}
|
|
141
|
+
* footer={<TerminalPanelFooter ... />}
|
|
142
|
+
* >
|
|
143
|
+
* <div ref={containerRef} className="terminal-container" />
|
|
144
|
+
* </TerminalPanelChrome>
|
|
145
|
+
* ```
|
|
146
|
+
*/
|
|
147
|
+
function TerminalPanelChrome({ containerName, isConnected, viewMode = "terminal", onViewModeChange, sessions, activeSessionId, onSessionTabClick, onSessionClose, onNewSession, availableContainers, onAddContainer, children, actionBar, footer, onClose, onMinimize, onMaximize, crtEffect, className }) {
|
|
148
|
+
/** Whether to render session tabs (multi-session mode) */
|
|
149
|
+
const showSessionTabs = sessions && sessions.length > 0 || availableContainers && availableContainers.length > 0;
|
|
150
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
151
|
+
className: cn("glass-heavy glass-noise rounded-2xl overflow-hidden", className),
|
|
152
|
+
children: [
|
|
153
|
+
/* @__PURE__ */ jsxs("div", {
|
|
154
|
+
className: "absolute top-0 left-0 right-0 h-px z-10 pointer-events-none overflow-hidden",
|
|
155
|
+
children: [/* @__PURE__ */ jsx("div", { className: "h-full w-full bg-gradient-to-r from-transparent via-primary/70 to-transparent shadow-[0_0_12px_hsla(330,85%,43%,0.5)]" }), /* @__PURE__ */ jsx("div", {
|
|
156
|
+
className: "absolute inset-0 bg-gradient-to-r from-transparent via-white/40 to-transparent",
|
|
157
|
+
style: {
|
|
158
|
+
backgroundSize: "200% 100%",
|
|
159
|
+
animation: "shimmer-line 4s ease-in-out infinite"
|
|
160
|
+
}
|
|
161
|
+
})]
|
|
162
|
+
}),
|
|
163
|
+
showSessionTabs && /* @__PURE__ */ jsx(TerminalSessionTabs, {
|
|
164
|
+
sessions: sessions || [],
|
|
165
|
+
activeSessionId: activeSessionId || null,
|
|
166
|
+
onTabClick: (sessionId) => onSessionTabClick?.(sessionId),
|
|
167
|
+
onClose: (sessionId) => onSessionClose?.(sessionId),
|
|
168
|
+
onNewSession,
|
|
169
|
+
availableContainers,
|
|
170
|
+
onAddContainer
|
|
171
|
+
}),
|
|
172
|
+
/* @__PURE__ */ jsx(TerminalPanelHeader, {
|
|
173
|
+
containerName,
|
|
174
|
+
isConnected,
|
|
175
|
+
viewMode,
|
|
176
|
+
onViewModeChange,
|
|
177
|
+
onClose,
|
|
178
|
+
onMinimize,
|
|
179
|
+
onMaximize
|
|
180
|
+
}),
|
|
181
|
+
actionBar,
|
|
182
|
+
/* @__PURE__ */ jsx("div", {
|
|
183
|
+
className: cn(crtEffect && "terminal-crt terminal-bloom"),
|
|
184
|
+
children
|
|
185
|
+
}),
|
|
186
|
+
footer,
|
|
187
|
+
/* @__PURE__ */ jsx("style", { children: terminalScrollStyles })
|
|
188
|
+
]
|
|
189
|
+
});
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
//#endregion
|
|
193
|
+
export { NOISE_TEXTURE_SVG, TerminalPanelChrome, terminalScrollStyles };
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Types for TerminalPanelChrome component.
|
|
3
|
+
*
|
|
4
|
+
* @module components/devenv/terminal/panel/chrome/types
|
|
5
|
+
*/
|
|
6
|
+
import type { ITerminalSession } from './TerminalLogsPanel.types';
|
|
7
|
+
/**
|
|
8
|
+
* Props for TerminalPanelChrome - reusable Ghostty-styled wrapper.
|
|
9
|
+
*
|
|
10
|
+
* Provides the shared visual shell for both log viewer
|
|
11
|
+
* and interactive terminal panels.
|
|
12
|
+
*/
|
|
13
|
+
export interface ITerminalPanelChromeProps {
|
|
14
|
+
/** Container/session name displayed in header */
|
|
15
|
+
containerName: string;
|
|
16
|
+
/** Connection status indicator */
|
|
17
|
+
isConnected: boolean;
|
|
18
|
+
/** Current view mode (terminal xterm.js or react viewer) */
|
|
19
|
+
viewMode?: 'terminal' | 'react';
|
|
20
|
+
/** Callback when view mode changes */
|
|
21
|
+
onViewModeChange?: (mode: 'terminal' | 'react') => void;
|
|
22
|
+
/** Available sessions for tab bar */
|
|
23
|
+
sessions?: ITerminalSession[];
|
|
24
|
+
/** Currently active session ID */
|
|
25
|
+
activeSessionId?: string | null;
|
|
26
|
+
/** Callback when a session tab is clicked */
|
|
27
|
+
onSessionTabClick?: (sessionId: string) => void;
|
|
28
|
+
/** Callback when a session tab close button is clicked */
|
|
29
|
+
onSessionClose?: (sessionId: string) => void;
|
|
30
|
+
/** Callback when new session button is clicked */
|
|
31
|
+
onNewSession?: () => void;
|
|
32
|
+
/** Available containers for the add-container dropdown */
|
|
33
|
+
availableContainers?: Array<{
|
|
34
|
+
id: string;
|
|
35
|
+
name: string;
|
|
36
|
+
state: string;
|
|
37
|
+
}>;
|
|
38
|
+
/** Callback when a container is selected from the dropdown */
|
|
39
|
+
onAddContainer?: (containerName: string) => void;
|
|
40
|
+
/** Terminal content (children) */
|
|
41
|
+
children: React.ReactNode;
|
|
42
|
+
/** Action bar slot rendered between header and children */
|
|
43
|
+
actionBar?: React.ReactNode;
|
|
44
|
+
/** Footer slot rendered after children */
|
|
45
|
+
footer?: React.ReactNode;
|
|
46
|
+
/** Traffic light close handler */
|
|
47
|
+
onClose?: () => void;
|
|
48
|
+
/** Traffic light minimize handler */
|
|
49
|
+
onMinimize?: () => void;
|
|
50
|
+
/** Traffic light maximize handler */
|
|
51
|
+
onMaximize?: () => void;
|
|
52
|
+
/** Enable CRT shader effects (scanlines, bloom, vignette) */
|
|
53
|
+
crtEffect?: boolean;
|
|
54
|
+
/** Custom class name appended to outer wrapper */
|
|
55
|
+
className?: string;
|
|
56
|
+
}
|
|
57
|
+
//# sourceMappingURL=TerminalPanelChrome.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TerminalPanelChrome.types.d.ts","sourceRoot":"","sources":["../../../../../src/react-ui/blocks/Terminal/panel/TerminalPanelChrome.types.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAElE;;;;;GAKG;AACH,MAAM,WAAW,yBAAyB;IACxC,iDAAiD;IACjD,aAAa,EAAE,MAAM,CAAC;IAEtB,kCAAkC;IAClC,WAAW,EAAE,OAAO,CAAC;IAErB,4DAA4D;IAC5D,QAAQ,CAAC,EAAE,UAAU,GAAG,OAAO,CAAC;IAEhC,sCAAsC;IACtC,gBAAgB,CAAC,EAAE,CAAC,IAAI,EAAE,UAAU,GAAG,OAAO,KAAK,IAAI,CAAC;IAExD,qCAAqC;IACrC,QAAQ,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAE9B,kCAAkC;IAClC,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAEhC,6CAA6C;IAC7C,iBAAiB,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;IAEhD,0DAA0D;IAC1D,cAAc,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;IAE7C,kDAAkD;IAClD,YAAY,CAAC,EAAE,MAAM,IAAI,CAAC;IAE1B,0DAA0D;IAC1D,mBAAmB,CAAC,EAAE,KAAK,CAAC;QAC1B,EAAE,EAAE,MAAM,CAAC;QACX,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;KACf,CAAC,CAAC;IAEH,8DAA8D;IAC9D,cAAc,CAAC,EAAE,CAAC,aAAa,EAAE,MAAM,KAAK,IAAI,CAAC;IAEjD,kCAAkC;IAClC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAE1B,2DAA2D;IAC3D,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE5B,0CAA0C;IAC1C,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAEzB,kCAAkC;IAClC,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IAErB,qCAAqC;IACrC,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IAExB,qCAAqC;IACrC,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IAExB,6DAA6D;IAC7D,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB,kDAAkD;IAClD,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TerminalPanelFooter Component.
|
|
3
|
+
*
|
|
4
|
+
* Footer displaying line count, byte count, and current filter.
|
|
5
|
+
*
|
|
6
|
+
* @module components/devenv/terminal/panel/footer
|
|
7
|
+
*/
|
|
8
|
+
import type { ITerminalPanelFooterProps } from './TerminalLogsPanel.types';
|
|
9
|
+
/**
|
|
10
|
+
* TerminalPanelFooter Component.
|
|
11
|
+
*
|
|
12
|
+
* Displays footer with:
|
|
13
|
+
* - Line count
|
|
14
|
+
* - Byte count
|
|
15
|
+
* - Current filter level
|
|
16
|
+
* - Filtered count (if applicable)
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* ```tsx
|
|
20
|
+
* <TerminalPanelFooter
|
|
21
|
+
* lineCount={1234}
|
|
22
|
+
* byteCount={45678}
|
|
23
|
+
* filterLevel="all"
|
|
24
|
+
* filteredCount={1200}
|
|
25
|
+
* totalCount={1234}
|
|
26
|
+
* />
|
|
27
|
+
* ```
|
|
28
|
+
*/
|
|
29
|
+
export declare function TerminalPanelFooter({ lineCount, byteCount, filterLevel, filteredCount, totalCount, }: ITerminalPanelFooterProps): import("react/jsx-runtime").JSX.Element;
|
|
30
|
+
//# sourceMappingURL=TerminalPanelFooter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TerminalPanelFooter.d.ts","sourceRoot":"","sources":["../../../../../src/react-ui/blocks/Terminal/panel/TerminalPanelFooter.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,2BAA2B,CAAC;AAQ3E;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,mBAAmB,CAAC,EAClC,SAAS,EACT,SAAS,EACT,WAAW,EACX,aAAa,EACb,UAAU,GACX,EAAE,yBAAyB,2CAmE3B"}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
4
|
+
|
|
5
|
+
//#region src/react-ui/blocks/Terminal/panel/TerminalPanelFooter.tsx
|
|
6
|
+
/**
|
|
7
|
+
* TerminalPanelFooter Component.
|
|
8
|
+
*
|
|
9
|
+
* Footer displaying line count, byte count, and current filter.
|
|
10
|
+
*
|
|
11
|
+
* @module components/devenv/terminal/panel/footer
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Stat item styles.
|
|
15
|
+
*/
|
|
16
|
+
const statItemStyles = "flex items-center gap-1 text-xs text-muted-foreground";
|
|
17
|
+
const statValueStyles = "font-mono font-medium text-foreground";
|
|
18
|
+
/**
|
|
19
|
+
* TerminalPanelFooter Component.
|
|
20
|
+
*
|
|
21
|
+
* Displays footer with:
|
|
22
|
+
* - Line count
|
|
23
|
+
* - Byte count
|
|
24
|
+
* - Current filter level
|
|
25
|
+
* - Filtered count (if applicable)
|
|
26
|
+
*
|
|
27
|
+
* @example
|
|
28
|
+
* ```tsx
|
|
29
|
+
* <TerminalPanelFooter
|
|
30
|
+
* lineCount={1234}
|
|
31
|
+
* byteCount={45678}
|
|
32
|
+
* filterLevel="all"
|
|
33
|
+
* filteredCount={1200}
|
|
34
|
+
* totalCount={1234}
|
|
35
|
+
* />
|
|
36
|
+
* ```
|
|
37
|
+
*/
|
|
38
|
+
function TerminalPanelFooter({ lineCount, byteCount, filterLevel, filteredCount, totalCount }) {
|
|
39
|
+
/**
|
|
40
|
+
* Format byte count for human-readable display.
|
|
41
|
+
*/
|
|
42
|
+
const formatBytes = (bytes) => {
|
|
43
|
+
if (bytes === 0) return "0 B";
|
|
44
|
+
const k = 1024;
|
|
45
|
+
const sizes = [
|
|
46
|
+
"B",
|
|
47
|
+
"KB",
|
|
48
|
+
"MB",
|
|
49
|
+
"GB"
|
|
50
|
+
];
|
|
51
|
+
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
52
|
+
return `${parseFloat((bytes / Math.pow(k, i)).toFixed(1))} ${sizes[i]}`;
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* Format line count with thousands separator.
|
|
56
|
+
*/
|
|
57
|
+
const formatLines = (lines) => {
|
|
58
|
+
return lines.toLocaleString();
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* Get filter display label.
|
|
62
|
+
*/
|
|
63
|
+
const getFilterLabel = () => {
|
|
64
|
+
if (filterLevel === "all") return "All Levels";
|
|
65
|
+
return filterLevel.toUpperCase();
|
|
66
|
+
};
|
|
67
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
68
|
+
className: "relative",
|
|
69
|
+
children: [/* @__PURE__ */ jsx("div", { className: "absolute top-0 left-4 right-4 h-px bg-gradient-to-r from-transparent via-border/40 to-transparent" }), /* @__PURE__ */ jsxs("div", {
|
|
70
|
+
className: "flex items-center justify-between px-4 h-9 bg-background/40",
|
|
71
|
+
children: [/* @__PURE__ */ jsxs("div", {
|
|
72
|
+
className: "flex items-center gap-3",
|
|
73
|
+
children: [
|
|
74
|
+
/* @__PURE__ */ jsxs("div", {
|
|
75
|
+
className: statItemStyles,
|
|
76
|
+
children: [/* @__PURE__ */ jsx("span", {
|
|
77
|
+
className: "text-muted-foreground/50",
|
|
78
|
+
children: "Lines"
|
|
79
|
+
}), /* @__PURE__ */ jsx("span", {
|
|
80
|
+
className: statValueStyles,
|
|
81
|
+
children: formatLines(lineCount)
|
|
82
|
+
})]
|
|
83
|
+
}),
|
|
84
|
+
/* @__PURE__ */ jsx("div", { className: "w-px h-3 bg-border/20" }),
|
|
85
|
+
/* @__PURE__ */ jsxs("div", {
|
|
86
|
+
className: statItemStyles,
|
|
87
|
+
children: [/* @__PURE__ */ jsx("span", {
|
|
88
|
+
className: "text-muted-foreground/50",
|
|
89
|
+
children: "Size"
|
|
90
|
+
}), /* @__PURE__ */ jsx("span", {
|
|
91
|
+
className: statValueStyles,
|
|
92
|
+
children: formatBytes(byteCount)
|
|
93
|
+
})]
|
|
94
|
+
})
|
|
95
|
+
]
|
|
96
|
+
}), /* @__PURE__ */ jsxs("div", {
|
|
97
|
+
className: "flex items-center gap-3",
|
|
98
|
+
children: [filteredCount !== void 0 && totalCount !== void 0 && filteredCount < totalCount && /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsxs("div", {
|
|
99
|
+
className: statItemStyles,
|
|
100
|
+
children: [/* @__PURE__ */ jsx("span", {
|
|
101
|
+
className: "text-muted-foreground/50",
|
|
102
|
+
children: "Showing"
|
|
103
|
+
}), /* @__PURE__ */ jsxs("span", {
|
|
104
|
+
className: statValueStyles,
|
|
105
|
+
children: [formatLines(filteredCount), /* @__PURE__ */ jsxs("span", {
|
|
106
|
+
className: "text-muted-foreground/40",
|
|
107
|
+
children: ["/", formatLines(totalCount)]
|
|
108
|
+
})]
|
|
109
|
+
})]
|
|
110
|
+
}), /* @__PURE__ */ jsx("div", { className: "w-px h-3 bg-border/20" })] }), /* @__PURE__ */ jsxs("div", {
|
|
111
|
+
className: statItemStyles,
|
|
112
|
+
children: [/* @__PURE__ */ jsx("span", {
|
|
113
|
+
className: "text-muted-foreground/50",
|
|
114
|
+
children: "Filter"
|
|
115
|
+
}), /* @__PURE__ */ jsx("span", {
|
|
116
|
+
className: `${statValueStyles} text-primary/80`,
|
|
117
|
+
children: getFilterLabel()
|
|
118
|
+
})]
|
|
119
|
+
})]
|
|
120
|
+
})]
|
|
121
|
+
})]
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
//#endregion
|
|
126
|
+
export { TerminalPanelFooter };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TerminalPanelHeader Component.
|
|
3
|
+
*
|
|
4
|
+
* Enhanced macOS-style header with glassmorphism, dynamic session name,
|
|
5
|
+
* gradient mesh overlay, and premium glass effects.
|
|
6
|
+
*
|
|
7
|
+
* @module components/devenv/terminal/panel/header
|
|
8
|
+
*/
|
|
9
|
+
import type { ITerminalPanelHeaderProps } from './TerminalLogsPanel.types';
|
|
10
|
+
/**
|
|
11
|
+
* TerminalPanelHeader Component.
|
|
12
|
+
*
|
|
13
|
+
* Displays enhanced macOS-style header with:
|
|
14
|
+
* - Traffic light buttons (close, minimize, maximize) with glow effects
|
|
15
|
+
* - Dynamic session/container name display
|
|
16
|
+
* - Connection status badge with pulse animation
|
|
17
|
+
* - Gradient mesh overlay for depth
|
|
18
|
+
* - Multi-layer glassmorphism effect
|
|
19
|
+
* - Animated top accent line
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* ```tsx
|
|
23
|
+
* <TerminalPanelHeader
|
|
24
|
+
* containerName="devenv-agent-backend"
|
|
25
|
+
* isConnected={true}
|
|
26
|
+
* onClose={() => console.log('close')}
|
|
27
|
+
* />
|
|
28
|
+
* ```
|
|
29
|
+
*/
|
|
30
|
+
export declare function TerminalPanelHeader({ containerName, isConnected, viewMode, onViewModeChange, onClose, onMinimize, onMaximize, }: ITerminalPanelHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
//# sourceMappingURL=TerminalPanelHeader.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TerminalPanelHeader.d.ts","sourceRoot":"","sources":["../../../../../src/react-ui/blocks/Terminal/panel/TerminalPanelHeader.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAKH,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,2BAA2B,CAAC;AAkC3E;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,mBAAmB,CAAC,EAClC,aAAa,EACb,WAAW,EACX,QAAqB,EACrB,gBAAgB,EAChB,OAAO,EACP,UAAU,EACV,UAAU,GACX,EAAE,yBAAyB,2CAuG3B"}
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { cn } from "../../../lib/utils.js";
|
|
4
|
+
import { ListIcon } from "../../../icons/lucide-animated/list.js";
|
|
5
|
+
import { TerminalIcon } from "../../../icons/lucide-animated/terminal.js";
|
|
6
|
+
import "../../../icons/lucide-animated/index.js";
|
|
7
|
+
import { IconWrapper } from "../../../lib/icon-wrapper.js";
|
|
8
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
9
|
+
|
|
10
|
+
//#region src/react-ui/blocks/Terminal/panel/TerminalPanelHeader.tsx
|
|
11
|
+
/**
|
|
12
|
+
* TerminalPanelHeader Component.
|
|
13
|
+
*
|
|
14
|
+
* Enhanced macOS-style header with glassmorphism, dynamic session name,
|
|
15
|
+
* gradient mesh overlay, and premium glass effects.
|
|
16
|
+
*
|
|
17
|
+
* @module components/devenv/terminal/panel/header
|
|
18
|
+
*/
|
|
19
|
+
/**
|
|
20
|
+
* Traffic light button styles with macOS group hover behavior.
|
|
21
|
+
* Dots are desaturated until the group is hovered.
|
|
22
|
+
*/
|
|
23
|
+
const trafficLightStyles = {
|
|
24
|
+
close: "w-3 h-3 rounded-full transition-all duration-200 bg-muted-foreground/30 group-hover/traffic:bg-red-500/90 group-hover/traffic:shadow-[0_0_6px_rgba(239,68,68,0.4)] hover:!bg-red-500 hover:!shadow-[0_0_12px_rgba(239,68,68,0.6)] hover:!scale-110",
|
|
25
|
+
minimize: "w-3 h-3 rounded-full transition-all duration-200 bg-muted-foreground/30 group-hover/traffic:bg-yellow-500/90 group-hover/traffic:shadow-[0_0_6px_rgba(234,179,8,0.4)] hover:!bg-yellow-500 hover:!shadow-[0_0_12px_rgba(234,179,8,0.6)] hover:!scale-110",
|
|
26
|
+
maximize: "w-3 h-3 rounded-full transition-all duration-200 bg-muted-foreground/30 group-hover/traffic:bg-green-500/90 group-hover/traffic:shadow-[0_0_6px_rgba(34,197,94,0.4)] hover:!bg-green-500 hover:!shadow-[0_0_12px_rgba(34,197,94,0.6)] hover:!scale-110"
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Segmented control button styles (macOS-style).
|
|
30
|
+
*/
|
|
31
|
+
const segmentedButtonStyles = {
|
|
32
|
+
base: "flex items-center gap-1.5 px-2.5 py-1 rounded-md text-xs font-medium transition-all",
|
|
33
|
+
inactive: "text-muted-foreground hover:text-foreground hover:bg-white/5 hover:shadow-[inset_0_1px_0_0_rgba(255,255,255,0.1)]",
|
|
34
|
+
active: "bg-primary/20 text-primary border border-primary/30 shadow-[0_0_8px_hsla(330,85%,43%,0.15)] hover:shadow-[0_0_12px_hsla(330,85%,43%,0.25)]"
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Connection status color classes with glow effects.
|
|
38
|
+
*/
|
|
39
|
+
function getStatusColor(isConnected) {
|
|
40
|
+
if (isConnected) return "bg-success/80 shadow-[0_0_8px_hsla(142,100%,62%,0.5)] animate-pulse";
|
|
41
|
+
return "bg-muted-foreground/60";
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* TerminalPanelHeader Component.
|
|
45
|
+
*
|
|
46
|
+
* Displays enhanced macOS-style header with:
|
|
47
|
+
* - Traffic light buttons (close, minimize, maximize) with glow effects
|
|
48
|
+
* - Dynamic session/container name display
|
|
49
|
+
* - Connection status badge with pulse animation
|
|
50
|
+
* - Gradient mesh overlay for depth
|
|
51
|
+
* - Multi-layer glassmorphism effect
|
|
52
|
+
* - Animated top accent line
|
|
53
|
+
*
|
|
54
|
+
* @example
|
|
55
|
+
* ```tsx
|
|
56
|
+
* <TerminalPanelHeader
|
|
57
|
+
* containerName="devenv-agent-backend"
|
|
58
|
+
* isConnected={true}
|
|
59
|
+
* onClose={() => console.log('close')}
|
|
60
|
+
* />
|
|
61
|
+
* ```
|
|
62
|
+
*/
|
|
63
|
+
function TerminalPanelHeader({ containerName, isConnected, viewMode = "terminal", onViewModeChange, onClose, onMinimize, onMaximize }) {
|
|
64
|
+
return /* @__PURE__ */ jsx("div", {
|
|
65
|
+
className: cn("relative overflow-hidden", "flex items-center justify-between px-4 h-12", "bg-background/60", "border-b border-border/30"),
|
|
66
|
+
children: /* @__PURE__ */ jsxs("div", {
|
|
67
|
+
className: "flex items-center justify-between w-full",
|
|
68
|
+
children: [
|
|
69
|
+
/* @__PURE__ */ jsxs("div", {
|
|
70
|
+
className: "group/traffic flex items-center gap-2 px-1 py-1 -mx-1 rounded-md",
|
|
71
|
+
children: [
|
|
72
|
+
/* @__PURE__ */ jsx("button", {
|
|
73
|
+
type: "button",
|
|
74
|
+
onClick: onClose,
|
|
75
|
+
className: trafficLightStyles.close,
|
|
76
|
+
"aria-label": "Close",
|
|
77
|
+
title: "Close"
|
|
78
|
+
}),
|
|
79
|
+
/* @__PURE__ */ jsx("button", {
|
|
80
|
+
type: "button",
|
|
81
|
+
onClick: onMinimize,
|
|
82
|
+
className: trafficLightStyles.minimize,
|
|
83
|
+
"aria-label": "Minimize",
|
|
84
|
+
title: "Minimize"
|
|
85
|
+
}),
|
|
86
|
+
/* @__PURE__ */ jsx("button", {
|
|
87
|
+
type: "button",
|
|
88
|
+
onClick: onMaximize,
|
|
89
|
+
className: trafficLightStyles.maximize,
|
|
90
|
+
"aria-label": "Maximize",
|
|
91
|
+
title: "Maximize"
|
|
92
|
+
})
|
|
93
|
+
]
|
|
94
|
+
}),
|
|
95
|
+
/* @__PURE__ */ jsxs("div", {
|
|
96
|
+
className: "flex-1 flex items-center justify-center gap-2",
|
|
97
|
+
children: [/* @__PURE__ */ jsx(IconWrapper, {
|
|
98
|
+
icon: TerminalIcon,
|
|
99
|
+
size: 14,
|
|
100
|
+
className: cn("transition-all duration-500 flex-shrink-0", isConnected ? "text-primary/80" : "text-muted-foreground/40")
|
|
101
|
+
}), /* @__PURE__ */ jsx("h3", {
|
|
102
|
+
className: cn("text-sm font-mono font-medium truncate transition-all duration-500", isConnected ? "text-foreground/95 drop-shadow-[0_0_8px_hsla(330,85%,43%,0.3)]" : "text-foreground/60"),
|
|
103
|
+
children: containerName
|
|
104
|
+
})]
|
|
105
|
+
}),
|
|
106
|
+
/* @__PURE__ */ jsxs("div", {
|
|
107
|
+
className: "flex items-center gap-3",
|
|
108
|
+
children: [/* @__PURE__ */ jsxs("div", {
|
|
109
|
+
className: "flex items-center bg-background/80 rounded-lg p-0.5 border-t border-white/10 border-b border-border/50 border-x border-border/40 shadow-[inset_0_0.5px_0_rgba(255,255,255,0.15),0_0_0_1px_rgba(0,0,0,0.1)]",
|
|
110
|
+
children: [/* @__PURE__ */ jsxs("button", {
|
|
111
|
+
type: "button",
|
|
112
|
+
onClick: () => onViewModeChange?.("terminal"),
|
|
113
|
+
className: cn(segmentedButtonStyles.base, !onViewModeChange && "opacity-70 cursor-not-allowed", viewMode === "terminal" ? segmentedButtonStyles.active : segmentedButtonStyles.inactive),
|
|
114
|
+
title: "Terminal mode - Raw logs with original ANSI colors",
|
|
115
|
+
children: [/* @__PURE__ */ jsx(IconWrapper, {
|
|
116
|
+
icon: TerminalIcon,
|
|
117
|
+
size: 14
|
|
118
|
+
}), /* @__PURE__ */ jsx("span", {
|
|
119
|
+
className: "hidden xs:inline",
|
|
120
|
+
children: "Terminal"
|
|
121
|
+
})]
|
|
122
|
+
}), /* @__PURE__ */ jsxs("button", {
|
|
123
|
+
type: "button",
|
|
124
|
+
onClick: () => onViewModeChange?.("react"),
|
|
125
|
+
className: cn(segmentedButtonStyles.base, !onViewModeChange && "opacity-70 cursor-not-allowed", viewMode === "react" ? segmentedButtonStyles.active : segmentedButtonStyles.inactive),
|
|
126
|
+
title: "React mode - Logs with badges and syntax highlighting",
|
|
127
|
+
children: [/* @__PURE__ */ jsx(IconWrapper, {
|
|
128
|
+
icon: ListIcon,
|
|
129
|
+
size: 14
|
|
130
|
+
}), /* @__PURE__ */ jsx("span", {
|
|
131
|
+
className: "hidden xs:inline",
|
|
132
|
+
children: "List"
|
|
133
|
+
})]
|
|
134
|
+
})]
|
|
135
|
+
}), /* @__PURE__ */ jsxs("div", {
|
|
136
|
+
className: "flex items-center gap-2",
|
|
137
|
+
children: [/* @__PURE__ */ jsx("div", { className: cn("w-2 h-2 rounded-full transition-all duration-300", getStatusColor(isConnected)) }), /* @__PURE__ */ jsx("span", {
|
|
138
|
+
className: "text-xs text-muted-foreground font-medium hidden sm:inline",
|
|
139
|
+
children: isConnected ? "Connected" : "Disconnected"
|
|
140
|
+
})]
|
|
141
|
+
})]
|
|
142
|
+
})
|
|
143
|
+
]
|
|
144
|
+
})
|
|
145
|
+
});
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
//#endregion
|
|
149
|
+
export { TerminalPanelHeader };
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TerminalPanelToolbar Component.
|
|
3
|
+
*
|
|
4
|
+
* Filter toolbar with log level buttons, toggles, and action buttons.
|
|
5
|
+
*
|
|
6
|
+
* @module components/devenv/terminal/panel/toolbar
|
|
7
|
+
*/
|
|
8
|
+
import type { ITerminalPanelToolbarProps } from './TerminalLogsPanel.types';
|
|
9
|
+
/**
|
|
10
|
+
* TerminalPanelToolbar Component.
|
|
11
|
+
*
|
|
12
|
+
* Displays filter toolbar with:
|
|
13
|
+
* - Log level filter buttons with badges
|
|
14
|
+
* - Follow cursor toggle
|
|
15
|
+
* - Line numbers toggle
|
|
16
|
+
* - Action buttons (Search, Clear, Download)
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* ```tsx
|
|
20
|
+
* <TerminalPanelToolbar
|
|
21
|
+
* filterLevel="all"
|
|
22
|
+
* followCursor={true}
|
|
23
|
+
* showLineNumbers={false}
|
|
24
|
+
* levelCounts={{ info: 42, warn: 3, error: 1 }}
|
|
25
|
+
* onFilterChange={(level) => setFilterLevel(level)}
|
|
26
|
+
* onFollowCursorChange={(enabled) => setFollowCursor(enabled)}
|
|
27
|
+
* onShowLineNumbersChange={(enabled) => setShowLineNumbers(enabled)}
|
|
28
|
+
* onClear={() => clearLogs()}
|
|
29
|
+
* onDownload={() => downloadLogs()}
|
|
30
|
+
* onSearch={() => openSearch()}
|
|
31
|
+
* />
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
34
|
+
export declare function TerminalPanelToolbar({ filterLevel, followCursor, showLineNumbers, levelCounts, onFilterChange, onFollowCursorChange, onShowLineNumbersChange, onClear, onDownload, onSearch, }: ITerminalPanelToolbarProps): import("react/jsx-runtime").JSX.Element;
|
|
35
|
+
//# sourceMappingURL=TerminalPanelToolbar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TerminalPanelToolbar.d.ts","sourceRoot":"","sources":["../../../../../src/react-ui/blocks/Terminal/panel/TerminalPanelToolbar.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAKH,OAAO,KAAK,EACV,0BAA0B,EAI3B,MAAM,2BAA2B,CAAC;AA4CnC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,wBAAgB,oBAAoB,CAAC,EACnC,WAAW,EACX,YAAY,EACZ,eAAe,EACf,WAAW,EACX,cAAc,EACd,oBAAoB,EACpB,uBAAuB,EACvB,OAAO,EACP,UAAU,EACV,QAAQ,GACT,EAAE,0BAA0B,2CA0G5B"}
|