mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-01 15:03:57 +08:00
- Implemented CliStreamMonitor component for real-time CLI output monitoring with multi-execution support. - Created JsonFormatter component for displaying JSON content in various formats (text, card, inline). - Added utility functions for JSON detection and formatting in jsonUtils.ts. - Introduced LogBlock utility functions for styling CLI output lines. - Developed a new Collapsible component for better UI interactions. - Created IssueHubPage for managing issues, queue, and discovery with tab navigation.
11 lines
405 B
TypeScript
11 lines
405 B
TypeScript
// ========================================
|
|
// Issue Hub Components Export
|
|
// ========================================
|
|
|
|
export { IssueHubHeader } from './IssueHubHeader';
|
|
export { IssueHubTabs } from './IssueHubTabs';
|
|
export { IssuesPanel } from './IssuesPanel';
|
|
export { QueuePanel } from './QueuePanel';
|
|
export { DiscoveryPanel } from './DiscoveryPanel';
|
|
export { type IssueTab } from './IssueHubTabs';
|