@assistant-ui/react-devtools 1.2.6 → 1.2.7
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/README.md +26 -8
- package/dist/DevToolsModal.d.ts +18 -2
- package/dist/DevToolsModal.d.ts.map +1 -1
- package/dist/DevToolsModal.js +25 -232
- package/dist/DevToolsModal.js.map +1 -1
- package/dist/DevToolsModalImpl.d.ts +11 -0
- package/dist/DevToolsModalImpl.d.ts.map +1 -0
- package/dist/DevToolsModalImpl.js +62 -0
- package/dist/DevToolsModalImpl.js.map +1 -0
- package/dist/data/createInProcessClient.d.ts +17 -0
- package/dist/data/createInProcessClient.d.ts.map +1 -0
- package/dist/data/createInProcessClient.js +54 -0
- package/dist/data/createInProcessClient.js.map +1 -0
- package/dist/data/projectApi.d.ts +22 -0
- package/dist/data/projectApi.d.ts.map +1 -0
- package/dist/data/projectApi.js +103 -0
- package/dist/data/projectApi.js.map +1 -0
- package/dist/data/types.d.ts +52 -0
- package/dist/data/types.d.ts.map +1 -0
- package/dist/data/types.js +10 -0
- package/dist/data/types.js.map +1 -0
- package/dist/data/useDevToolsClient.d.ts +19 -0
- package/dist/data/useDevToolsClient.d.ts.map +1 -0
- package/dist/data/useDevToolsClient.js +70 -0
- package/dist/data/useDevToolsClient.js.map +1 -0
- package/dist/index.d.ts +9 -10
- package/dist/index.js +7 -9
- package/dist/shell/DevToolsOverlay.d.ts +23 -0
- package/dist/shell/DevToolsOverlay.d.ts.map +1 -0
- package/dist/shell/DevToolsOverlay.js +106 -0
- package/dist/shell/DevToolsOverlay.js.map +1 -0
- package/dist/shell/DevToolsPanel.d.ts +23 -0
- package/dist/shell/DevToolsPanel.d.ts.map +1 -0
- package/dist/shell/DevToolsPanel.js +256 -0
- package/dist/shell/DevToolsPanel.js.map +1 -0
- package/dist/shell/ShadowRoot.d.ts +24 -0
- package/dist/shell/ShadowRoot.d.ts.map +1 -0
- package/dist/shell/ShadowRoot.js +107 -0
- package/dist/shell/ShadowRoot.js.map +1 -0
- package/dist/shell/SplitLayout.d.ts +28 -0
- package/dist/shell/SplitLayout.d.ts.map +1 -0
- package/dist/shell/SplitLayout.js +67 -0
- package/dist/shell/SplitLayout.js.map +1 -0
- package/dist/shell/registry.d.ts +41 -0
- package/dist/shell/registry.d.ts.map +1 -0
- package/dist/shell/registry.js +36 -0
- package/dist/shell/registry.js.map +1 -0
- package/dist/shell/tabs/ActivityTab.d.ts +13 -0
- package/dist/shell/tabs/ActivityTab.d.ts.map +1 -0
- package/dist/shell/tabs/ActivityTab.js +259 -0
- package/dist/shell/tabs/ActivityTab.js.map +1 -0
- package/dist/shell/tabs/ContextTab.d.ts +11 -0
- package/dist/shell/tabs/ContextTab.d.ts.map +1 -0
- package/dist/shell/tabs/ContextTab.js +210 -0
- package/dist/shell/tabs/ContextTab.js.map +1 -0
- package/dist/shell/tabs/RawTab.d.ts +11 -0
- package/dist/shell/tabs/RawTab.d.ts.map +1 -0
- package/dist/shell/tabs/RawTab.js +238 -0
- package/dist/shell/tabs/RawTab.js.map +1 -0
- package/dist/shell/tabs/ThreadTab.d.ts +12 -0
- package/dist/shell/tabs/ThreadTab.d.ts.map +1 -0
- package/dist/shell/tabs/ThreadTab.js +426 -0
- package/dist/shell/tabs/ThreadTab.js.map +1 -0
- package/dist/shell/tabs/navSelection.d.ts +10 -0
- package/dist/shell/tabs/navSelection.d.ts.map +1 -0
- package/dist/shell/tabs/navSelection.js +37 -0
- package/dist/shell/tabs/navSelection.js.map +1 -0
- package/dist/styles/panel.generated.d.ts +5 -0
- package/dist/styles/panel.generated.d.ts.map +1 -0
- package/dist/styles/panel.generated.js +6 -0
- package/dist/styles/panel.generated.js.map +1 -0
- package/dist/types.d.ts +1 -3
- package/dist/types.d.ts.map +1 -1
- package/dist/utils/common.d.ts +24 -0
- package/dist/utils/common.d.ts.map +1 -0
- package/dist/utils/common.js +64 -0
- package/dist/utils/common.js.map +1 -0
- package/dist/utils/diff.d.ts +16 -0
- package/dist/utils/diff.d.ts.map +1 -0
- package/dist/utils/diff.js +41 -0
- package/dist/utils/diff.js.map +1 -0
- package/dist/utils/serialization.d.ts.map +1 -1
- package/dist/utils/serialization.js +4 -1
- package/dist/utils/serialization.js.map +1 -1
- package/dist/views/activity/EventLogRow.d.ts +28 -0
- package/dist/views/activity/EventLogRow.d.ts.map +1 -0
- package/dist/views/activity/EventLogRow.js +185 -0
- package/dist/views/activity/EventLogRow.js.map +1 -0
- package/dist/views/activity/EventStreamPane.d.ts +11 -0
- package/dist/views/activity/EventStreamPane.d.ts.map +1 -0
- package/dist/views/activity/EventStreamPane.js +98 -0
- package/dist/views/activity/EventStreamPane.js.map +1 -0
- package/dist/views/activity/OrphansPane.d.ts +11 -0
- package/dist/views/activity/OrphansPane.d.ts.map +1 -0
- package/dist/views/activity/OrphansPane.js +39 -0
- package/dist/views/activity/OrphansPane.js.map +1 -0
- package/dist/views/activity/RunDetailPane.d.ts +11 -0
- package/dist/views/activity/RunDetailPane.d.ts.map +1 -0
- package/dist/views/activity/RunDetailPane.js +344 -0
- package/dist/views/activity/RunDetailPane.js.map +1 -0
- package/dist/views/activity/activityNodes.d.ts +39 -0
- package/dist/views/activity/activityNodes.d.ts.map +1 -0
- package/dist/views/activity/activityNodes.js +199 -0
- package/dist/views/activity/activityNodes.js.map +1 -0
- package/dist/views/activity/index.d.ts +6 -0
- package/dist/views/activity/index.js +6 -0
- package/dist/views/attachments/AttachmentList.d.ts +15 -0
- package/dist/views/attachments/AttachmentList.d.ts.map +1 -0
- package/dist/views/attachments/AttachmentList.js +279 -0
- package/dist/views/attachments/AttachmentList.js.map +1 -0
- package/dist/views/attachments/MediaPartView.d.ts +27 -0
- package/dist/views/attachments/MediaPartView.d.ts.map +1 -0
- package/dist/views/attachments/MediaPartView.js +180 -0
- package/dist/views/attachments/MediaPartView.js.map +1 -0
- package/dist/views/attachments/formatBytes.d.ts +8 -0
- package/dist/views/attachments/formatBytes.d.ts.map +1 -0
- package/dist/views/attachments/formatBytes.js +14 -0
- package/dist/views/attachments/formatBytes.js.map +1 -0
- package/dist/views/attachments/index.d.ts +5 -0
- package/dist/views/attachments/index.js +4 -0
- package/dist/views/attachments/parseAttachment.d.ts +8 -0
- package/dist/views/attachments/parseAttachment.d.ts.map +1 -0
- package/dist/views/attachments/parseAttachment.js +58 -0
- package/dist/views/attachments/parseAttachment.js.map +1 -0
- package/dist/views/attachments/types.d.ts +18 -0
- package/dist/views/attachments/types.d.ts.map +1 -0
- package/dist/views/attachments/types.js +0 -0
- package/dist/views/context/ContextDetail.d.ts +14 -0
- package/dist/views/context/ContextDetail.d.ts.map +1 -0
- package/dist/views/context/ContextDetail.js +87 -0
- package/dist/views/context/ContextDetail.js.map +1 -0
- package/dist/views/context/ToolUIsView.d.ts +9 -0
- package/dist/views/context/ToolUIsView.d.ts.map +1 -0
- package/dist/views/context/ToolUIsView.js +80 -0
- package/dist/views/context/ToolUIsView.js.map +1 -0
- package/dist/views/context/contextNodes.d.ts +32 -0
- package/dist/views/context/contextNodes.d.ts.map +1 -0
- package/dist/views/context/contextNodes.js +49 -0
- package/dist/views/context/contextNodes.js.map +1 -0
- package/dist/views/context/index.d.ts +4 -0
- package/dist/views/context/index.js +4 -0
- package/dist/views/mcp/McpView.d.ts +11 -0
- package/dist/views/mcp/McpView.d.ts.map +1 -0
- package/dist/views/mcp/McpView.js +239 -0
- package/dist/views/mcp/McpView.js.map +1 -0
- package/dist/views/mcp/index.d.ts +2 -0
- package/dist/views/mcp/index.js +2 -0
- package/dist/views/mcp/parse.d.ts +7 -0
- package/dist/views/mcp/parse.d.ts.map +1 -0
- package/dist/views/mcp/parse.js +43 -0
- package/dist/views/mcp/parse.js.map +1 -0
- package/dist/views/mcp/types.d.ts +22 -0
- package/dist/views/mcp/types.d.ts.map +1 -0
- package/dist/views/mcp/types.js +0 -0
- package/dist/views/message/ChainOfThought.d.ts +11 -0
- package/dist/views/message/ChainOfThought.d.ts.map +1 -0
- package/dist/views/message/ChainOfThought.js +132 -0
- package/dist/views/message/ChainOfThought.js.map +1 -0
- package/dist/views/message/MessageDetailPane.d.ts +12 -0
- package/dist/views/message/MessageDetailPane.d.ts.map +1 -0
- package/dist/views/message/MessageDetailPane.js +38 -0
- package/dist/views/message/MessageDetailPane.js.map +1 -0
- package/dist/views/message/MessageItem.d.ts +13 -0
- package/dist/views/message/MessageItem.d.ts.map +1 -0
- package/dist/views/message/MessageItem.js +136 -0
- package/dist/views/message/MessageItem.js.map +1 -0
- package/dist/views/message/MessageList.d.ts +13 -0
- package/dist/views/message/MessageList.d.ts.map +1 -0
- package/dist/views/message/MessageList.js +95 -0
- package/dist/views/message/MessageList.js.map +1 -0
- package/dist/views/message/MessageMetrics.d.ts +11 -0
- package/dist/views/message/MessageMetrics.d.ts.map +1 -0
- package/dist/views/message/MessageMetrics.js +93 -0
- package/dist/views/message/MessageMetrics.js.map +1 -0
- package/dist/views/message/MessageTimeline.d.ts +16 -0
- package/dist/views/message/MessageTimeline.d.ts.map +1 -0
- package/dist/views/message/MessageTimeline.js +100 -0
- package/dist/views/message/MessageTimeline.js.map +1 -0
- package/dist/views/message/PartDisclosure.d.ts +18 -0
- package/dist/views/message/PartDisclosure.d.ts.map +1 -0
- package/dist/views/message/PartDisclosure.js +79 -0
- package/dist/views/message/PartDisclosure.js.map +1 -0
- package/dist/views/message/PartView.d.ts +13 -0
- package/dist/views/message/PartView.d.ts.map +1 -0
- package/dist/views/message/PartView.js +416 -0
- package/dist/views/message/PartView.js.map +1 -0
- package/dist/views/message/RoleLabel.d.ts +11 -0
- package/dist/views/message/RoleLabel.d.ts.map +1 -0
- package/dist/views/message/RoleLabel.js +30 -0
- package/dist/views/message/RoleLabel.js.map +1 -0
- package/dist/views/message/StatusBadge.d.ts +17 -0
- package/dist/views/message/StatusBadge.d.ts.map +1 -0
- package/dist/views/message/StatusBadge.js +58 -0
- package/dist/views/message/StatusBadge.js.map +1 -0
- package/dist/views/message/ToolCallView.d.ts +13 -0
- package/dist/views/message/ToolCallView.d.ts.map +1 -0
- package/dist/views/message/ToolCallView.js +289 -0
- package/dist/views/message/ToolCallView.js.map +1 -0
- package/dist/views/message/TtftBar.d.ts +16 -0
- package/dist/views/message/TtftBar.d.ts.map +1 -0
- package/dist/views/message/TtftBar.js +128 -0
- package/dist/views/message/TtftBar.js.map +1 -0
- package/dist/views/message/index.d.ts +6 -0
- package/dist/views/message/index.js +5 -0
- package/dist/views/message/messagePlainText.d.ts +8 -0
- package/dist/views/message/messagePlainText.d.ts.map +1 -0
- package/dist/views/message/messagePlainText.js +39 -0
- package/dist/views/message/messagePlainText.js.map +1 -0
- package/dist/views/message/parse.d.ts +10 -0
- package/dist/views/message/parse.d.ts.map +1 -0
- package/dist/views/message/parse.js +235 -0
- package/dist/views/message/parse.js.map +1 -0
- package/dist/views/message/types.d.ts +114 -0
- package/dist/views/message/types.d.ts.map +1 -0
- package/dist/views/message/types.js +0 -0
- package/dist/views/model-context/ModelContextView.d.ts +26 -0
- package/dist/views/model-context/ModelContextView.d.ts.map +1 -0
- package/dist/views/model-context/ModelContextView.js +214 -0
- package/dist/views/model-context/ModelContextView.js.map +1 -0
- package/dist/views/nav.d.ts +19 -0
- package/dist/views/nav.d.ts.map +1 -0
- package/dist/views/nav.js +8 -0
- package/dist/views/nav.js.map +1 -0
- package/dist/views/raw/RawDetail.d.ts +15 -0
- package/dist/views/raw/RawDetail.d.ts.map +1 -0
- package/dist/views/raw/RawDetail.js +79 -0
- package/dist/views/raw/RawDetail.js.map +1 -0
- package/dist/views/raw/index.d.ts +3 -0
- package/dist/views/raw/index.js +3 -0
- package/dist/views/raw/rawNodes.d.ts +20 -0
- package/dist/views/raw/rawNodes.d.ts.map +1 -0
- package/dist/views/raw/rawNodes.js +78 -0
- package/dist/views/raw/rawNodes.js.map +1 -0
- package/dist/views/raw/statePreview.d.ts +5 -0
- package/dist/views/raw/statePreview.d.ts.map +1 -0
- package/dist/views/raw/statePreview.js +213 -0
- package/dist/views/raw/statePreview.js.map +1 -0
- package/dist/views/runs/PayloadDiff.d.ts +11 -0
- package/dist/views/runs/PayloadDiff.d.ts.map +1 -0
- package/dist/views/runs/PayloadDiff.js +92 -0
- package/dist/views/runs/PayloadDiff.js.map +1 -0
- package/dist/views/runs/parse.d.ts +8 -0
- package/dist/views/runs/parse.d.ts.map +1 -0
- package/dist/views/runs/parse.js +78 -0
- package/dist/views/runs/parse.js.map +1 -0
- package/dist/views/runs/types.d.ts +25 -0
- package/dist/views/runs/types.d.ts.map +1 -0
- package/dist/views/runs/types.js +0 -0
- package/dist/views/scopes/ScopesView.d.ts +9 -0
- package/dist/views/scopes/ScopesView.d.ts.map +1 -0
- package/dist/views/scopes/ScopesView.js +235 -0
- package/dist/views/scopes/ScopesView.js.map +1 -0
- package/dist/views/scopes/index.d.ts +2 -0
- package/dist/views/scopes/index.js +2 -0
- package/dist/views/scopes/parse.d.ts +7 -0
- package/dist/views/scopes/parse.d.ts.map +1 -0
- package/dist/views/scopes/parse.js +23 -0
- package/dist/views/scopes/parse.js.map +1 -0
- package/dist/views/scopes/types.d.ts +10 -0
- package/dist/views/scopes/types.d.ts.map +1 -0
- package/dist/views/scopes/types.js +0 -0
- package/dist/views/thread/ComposerAttachments.d.ts +11 -0
- package/dist/views/thread/ComposerAttachments.d.ts.map +1 -0
- package/dist/views/thread/ComposerAttachments.js +22 -0
- package/dist/views/thread/ComposerAttachments.js.map +1 -0
- package/dist/views/thread/ComposerFlags.d.ts +11 -0
- package/dist/views/thread/ComposerFlags.d.ts.map +1 -0
- package/dist/views/thread/ComposerFlags.js +54 -0
- package/dist/views/thread/ComposerFlags.js.map +1 -0
- package/dist/views/thread/ComposerQueue.d.ts +11 -0
- package/dist/views/thread/ComposerQueue.d.ts.map +1 -0
- package/dist/views/thread/ComposerQueue.js +55 -0
- package/dist/views/thread/ComposerQueue.js.map +1 -0
- package/dist/views/thread/ConversationList.d.ts +18 -0
- package/dist/views/thread/ConversationList.d.ts.map +1 -0
- package/dist/views/thread/ConversationList.js +228 -0
- package/dist/views/thread/ConversationList.js.map +1 -0
- package/dist/views/thread/ConversationStatusDot.d.ts +29 -0
- package/dist/views/thread/ConversationStatusDot.d.ts.map +1 -0
- package/dist/views/thread/ConversationStatusDot.js +91 -0
- package/dist/views/thread/ConversationStatusDot.js.map +1 -0
- package/dist/views/thread/ThreadDetails.d.ts +13 -0
- package/dist/views/thread/ThreadDetails.d.ts.map +1 -0
- package/dist/views/thread/ThreadDetails.js +170 -0
- package/dist/views/thread/ThreadDetails.js.map +1 -0
- package/dist/views/thread/Transcript.d.ts +21 -0
- package/dist/views/thread/Transcript.d.ts.map +1 -0
- package/dist/views/thread/Transcript.js +520 -0
- package/dist/views/thread/Transcript.js.map +1 -0
- package/dist/views/thread/index.d.ts +10 -0
- package/dist/views/thread/index.js +9 -0
- package/dist/views/thread/resolve.d.ts +13 -0
- package/dist/views/thread/resolve.d.ts.map +1 -0
- package/dist/views/thread/resolve.js +29 -0
- package/dist/views/thread/resolve.js.map +1 -0
- package/dist/views/thread/types.d.ts +50 -0
- package/dist/views/thread/types.d.ts.map +1 -0
- package/dist/views/thread/types.js +0 -0
- package/dist/views/thread/utils.d.ts +10 -0
- package/dist/views/thread/utils.d.ts.map +1 -0
- package/dist/views/thread/utils.js +77 -0
- package/dist/views/thread/utils.js.map +1 -0
- package/dist/views/ui/CenteredMessage.d.ts +11 -0
- package/dist/views/ui/CenteredMessage.d.ts.map +1 -0
- package/dist/views/ui/CenteredMessage.js +21 -0
- package/dist/views/ui/CenteredMessage.js.map +1 -0
- package/dist/views/ui/Chip.d.ts +13 -0
- package/dist/views/ui/Chip.d.ts.map +1 -0
- package/dist/views/ui/Chip.js +30 -0
- package/dist/views/ui/Chip.js.map +1 -0
- package/dist/views/ui/ControlButton.d.ts +10 -0
- package/dist/views/ui/ControlButton.d.ts.map +1 -0
- package/dist/views/ui/ControlButton.js +39 -0
- package/dist/views/ui/ControlButton.js.map +1 -0
- package/dist/views/ui/CopyButton.d.ts +19 -0
- package/dist/views/ui/CopyButton.d.ts.map +1 -0
- package/dist/views/ui/CopyButton.js +125 -0
- package/dist/views/ui/CopyButton.js.map +1 -0
- package/dist/views/ui/EmptyState.d.ts +11 -0
- package/dist/views/ui/EmptyState.d.ts.map +1 -0
- package/dist/views/ui/EmptyState.js +21 -0
- package/dist/views/ui/EmptyState.js.map +1 -0
- package/dist/views/ui/InfoCard.d.ts +22 -0
- package/dist/views/ui/InfoCard.d.ts.map +1 -0
- package/dist/views/ui/InfoCard.js +44 -0
- package/dist/views/ui/InfoCard.js.map +1 -0
- package/dist/views/ui/JSONTree.d.ts +16 -0
- package/dist/views/ui/JSONTree.d.ts.map +1 -0
- package/dist/views/ui/JSONTree.js +394 -0
- package/dist/views/ui/JSONTree.js.map +1 -0
- package/dist/views/ui/PaneHeader.d.ts +27 -0
- package/dist/views/ui/PaneHeader.d.ts.map +1 -0
- package/dist/views/ui/PaneHeader.js +71 -0
- package/dist/views/ui/PaneHeader.js.map +1 -0
- package/dist/views/ui/RailTime.d.ts +12 -0
- package/dist/views/ui/RailTime.d.ts.map +1 -0
- package/dist/views/ui/RailTime.js +49 -0
- package/dist/views/ui/RailTime.js.map +1 -0
- package/dist/views/ui/SectionLabel.d.ts +11 -0
- package/dist/views/ui/SectionLabel.d.ts.map +1 -0
- package/dist/views/ui/SectionLabel.js +21 -0
- package/dist/views/ui/SectionLabel.js.map +1 -0
- package/dist/views/ui/SelectableRow.d.ts +18 -0
- package/dist/views/ui/SelectableRow.d.ts.map +1 -0
- package/dist/views/ui/SelectableRow.js +49 -0
- package/dist/views/ui/SelectableRow.js.map +1 -0
- package/dist/views/ui/Sparkline.d.ts +17 -0
- package/dist/views/ui/Sparkline.d.ts.map +1 -0
- package/dist/views/ui/Sparkline.js +96 -0
- package/dist/views/ui/Sparkline.js.map +1 -0
- package/dist/views/ui/SummaryItem.d.ts +23 -0
- package/dist/views/ui/SummaryItem.d.ts.map +1 -0
- package/dist/views/ui/SummaryItem.js +59 -0
- package/dist/views/ui/SummaryItem.js.map +1 -0
- package/dist/views/ui/ToneBadge.d.ts +18 -0
- package/dist/views/ui/ToneBadge.d.ts.map +1 -0
- package/dist/views/ui/ToneBadge.js +34 -0
- package/dist/views/ui/ToneBadge.js.map +1 -0
- package/dist/views/ui/badgeTone.d.ts +21 -0
- package/dist/views/ui/badgeTone.d.ts.map +1 -0
- package/dist/views/ui/badgeTone.js +33 -0
- package/dist/views/ui/badgeTone.js.map +1 -0
- package/dist/views/ui/index.d.ts +16 -0
- package/dist/views/ui/index.js +16 -0
- package/dist/views/ui/useCopyToClipboard.d.ts +12 -0
- package/dist/views/ui/useCopyToClipboard.d.ts.map +1 -0
- package/dist/views/ui/useCopyToClipboard.js +44 -0
- package/dist/views/ui/useCopyToClipboard.js.map +1 -0
- package/package.json +9 -5
- package/src/DevToolsModal.tsx +26 -179
- package/src/DevToolsModalImpl.tsx +60 -0
- package/src/data/createInProcessClient.ts +66 -0
- package/src/data/projectApi.test.ts +100 -0
- package/src/data/projectApi.ts +169 -0
- package/src/data/types.ts +54 -0
- package/src/data/useDevToolsClient.ts +59 -0
- package/src/index.ts +16 -13
- package/src/shell/DevToolsOverlay.tsx +84 -0
- package/src/shell/DevToolsPanel.tsx +192 -0
- package/src/shell/ShadowRoot.tsx +85 -0
- package/src/shell/SplitLayout.tsx +46 -0
- package/src/shell/registry.ts +51 -0
- package/src/shell/tabs/ActivityTab.test.tsx +34 -0
- package/src/shell/tabs/ActivityTab.tsx +161 -0
- package/src/shell/tabs/ContextTab.test.tsx +37 -0
- package/src/shell/tabs/ContextTab.tsx +157 -0
- package/src/shell/tabs/RawTab.test.tsx +43 -0
- package/src/shell/tabs/RawTab.tsx +123 -0
- package/src/shell/tabs/ThreadTab.tsx +220 -0
- package/src/shell/tabs/navSelection.ts +17 -0
- package/src/styles/panel.css +153 -0
- package/src/styles/panel.generated.ts +2 -0
- package/src/types.ts +0 -5
- package/src/utils/common.test.ts +30 -0
- package/src/utils/common.ts +101 -0
- package/src/utils/diff.test.ts +37 -0
- package/src/utils/diff.ts +41 -0
- package/src/utils/serialization.test.ts +31 -0
- package/src/utils/serialization.ts +4 -1
- package/src/views/activity/EventLogRow.tsx +108 -0
- package/src/views/activity/EventStreamPane.tsx +86 -0
- package/src/views/activity/OrphansPane.tsx +23 -0
- package/src/views/activity/RunDetailPane.tsx +128 -0
- package/src/views/activity/activityNodes.test.ts +24 -0
- package/src/views/activity/activityNodes.ts +179 -0
- package/src/views/activity/index.ts +10 -0
- package/src/views/attachments/AttachmentList.tsx +122 -0
- package/src/views/attachments/MediaPartView.tsx +77 -0
- package/src/views/attachments/formatBytes.ts +15 -0
- package/src/views/attachments/index.ts +4 -0
- package/src/views/attachments/parseAttachment.test.ts +37 -0
- package/src/views/attachments/parseAttachment.ts +85 -0
- package/src/views/attachments/types.ts +15 -0
- package/src/views/context/ContextDetail.tsx +37 -0
- package/src/views/context/ToolUIsView.tsx +44 -0
- package/src/views/context/contextNodes.test.ts +31 -0
- package/src/views/context/contextNodes.ts +66 -0
- package/src/views/context/index.ts +4 -0
- package/src/views/mcp/McpView.tsx +125 -0
- package/src/views/mcp/index.ts +1 -0
- package/src/views/mcp/parse.test.ts +63 -0
- package/src/views/mcp/parse.ts +65 -0
- package/src/views/mcp/render.test.tsx +34 -0
- package/src/views/mcp/types.ts +20 -0
- package/src/views/message/ChainOfThought.tsx +74 -0
- package/src/views/message/MessageDetailPane.tsx +26 -0
- package/src/views/message/MessageItem.tsx +94 -0
- package/src/views/message/MessageList.tsx +48 -0
- package/src/views/message/MessageMetrics.tsx +68 -0
- package/src/views/message/MessageTimeline.test.tsx +78 -0
- package/src/views/message/MessageTimeline.tsx +51 -0
- package/src/views/message/PartDisclosure.tsx +32 -0
- package/src/views/message/PartView.tsx +197 -0
- package/src/views/message/RoleLabel.tsx +22 -0
- package/src/views/message/StatusBadge.tsx +28 -0
- package/src/views/message/ToolCallView.tsx +151 -0
- package/src/views/message/TtftBar.tsx +44 -0
- package/src/views/message/index.ts +5 -0
- package/src/views/message/messagePlainText.test.ts +48 -0
- package/src/views/message/messagePlainText.ts +65 -0
- package/src/views/message/parse.test.ts +269 -0
- package/src/views/message/parse.ts +282 -0
- package/src/views/message/render.test.tsx +128 -0
- package/src/views/message/types.ts +137 -0
- package/src/views/model-context/ModelContextView.tsx +71 -0
- package/src/views/model-context/render.test.tsx +24 -0
- package/src/views/nav.ts +18 -0
- package/src/views/raw/RawDetail.tsx +39 -0
- package/src/views/raw/index.ts +3 -0
- package/src/views/raw/rawNodes.test.ts +38 -0
- package/src/views/raw/rawNodes.ts +107 -0
- package/src/views/raw/statePreview.tsx +188 -0
- package/src/views/runs/PayloadDiff.tsx +49 -0
- package/src/views/runs/parse.test.ts +152 -0
- package/src/views/runs/parse.ts +110 -0
- package/src/views/runs/types.ts +23 -0
- package/src/views/scopes/ScopesView.tsx +105 -0
- package/src/views/scopes/index.ts +1 -0
- package/src/views/scopes/parse.test.ts +35 -0
- package/src/views/scopes/parse.ts +30 -0
- package/src/views/scopes/render.test.tsx +35 -0
- package/src/views/scopes/types.ts +6 -0
- package/src/views/thread/ComposerAttachments.test.tsx +36 -0
- package/src/views/thread/ComposerAttachments.tsx +8 -0
- package/src/views/thread/ComposerFlags.test.tsx +23 -0
- package/src/views/thread/ComposerFlags.tsx +19 -0
- package/src/views/thread/ComposerQueue.test.tsx +20 -0
- package/src/views/thread/ComposerQueue.tsx +26 -0
- package/src/views/thread/ConversationList.tsx +127 -0
- package/src/views/thread/ConversationStatusDot.test.ts +86 -0
- package/src/views/thread/ConversationStatusDot.tsx +126 -0
- package/src/views/thread/ThreadDetails.tsx +85 -0
- package/src/views/thread/Transcript.test.tsx +56 -0
- package/src/views/thread/Transcript.tsx +332 -0
- package/src/views/thread/index.ts +19 -0
- package/src/views/thread/render.test.tsx +41 -0
- package/src/views/thread/resolve.ts +36 -0
- package/src/views/thread/types.ts +53 -0
- package/src/views/thread/utils.test.ts +72 -0
- package/src/views/thread/utils.ts +149 -0
- package/src/views/ui/CenteredMessage.tsx +7 -0
- package/src/views/ui/Chip.tsx +17 -0
- package/src/views/ui/ControlButton.tsx +15 -0
- package/src/views/ui/CopyButton.tsx +73 -0
- package/src/views/ui/EmptyState.tsx +7 -0
- package/src/views/ui/InfoCard.tsx +35 -0
- package/src/views/ui/JSONTree.test.tsx +29 -0
- package/src/views/ui/JSONTree.tsx +240 -0
- package/src/views/ui/PaneHeader.tsx +46 -0
- package/src/views/ui/RailTime.tsx +27 -0
- package/src/views/ui/SectionLabel.tsx +7 -0
- package/src/views/ui/SelectableRow.tsx +41 -0
- package/src/views/ui/Sparkline.tsx +49 -0
- package/src/views/ui/SummaryItem.tsx +25 -0
- package/src/views/ui/ToneBadge.tsx +26 -0
- package/src/views/ui/badgeTone.ts +40 -0
- package/src/views/ui/index.ts +20 -0
- package/src/views/ui/useCopyToClipboard.ts +27 -0
- package/dist/DevToolsFrame.d.ts +0 -11
- package/dist/DevToolsFrame.d.ts.map +0 -1
- package/dist/DevToolsFrame.js +0 -66
- package/dist/DevToolsFrame.js.map +0 -1
- package/dist/DevToolsHost.d.ts +0 -38
- package/dist/DevToolsHost.d.ts.map +0 -1
- package/dist/DevToolsHost.js +0 -93
- package/dist/DevToolsHost.js.map +0 -1
- package/dist/ExtensionHost.d.ts +0 -10
- package/dist/ExtensionHost.d.ts.map +0 -1
- package/dist/ExtensionHost.js +0 -42
- package/dist/ExtensionHost.js.map +0 -1
- package/dist/FrameClient.d.ts +0 -38
- package/dist/FrameClient.d.ts.map +0 -1
- package/dist/FrameClient.js +0 -53
- package/dist/FrameClient.js.map +0 -1
- package/dist/FrameHost.d.ts +0 -11
- package/dist/FrameHost.d.ts.map +0 -1
- package/dist/FrameHost.js +0 -26
- package/dist/FrameHost.js.map +0 -1
- package/dist/constants.d.ts +0 -6
- package/dist/constants.d.ts.map +0 -1
- package/dist/constants.js +0 -7
- package/dist/constants.js.map +0 -1
- package/dist/styles/DevToolsModal.styles.d.ts +0 -18
- package/dist/styles/DevToolsModal.styles.d.ts.map +0 -1
- package/dist/styles/DevToolsModal.styles.js +0 -120
- package/dist/styles/DevToolsModal.styles.js.map +0 -1
- package/src/DevToolsFrame.tsx +0 -55
- package/src/DevToolsHost.ts +0 -178
- package/src/ExtensionHost.ts +0 -57
- package/src/FrameClient.ts +0 -99
- package/src/FrameHost.ts +0 -31
- package/src/constants.ts +0 -2
- package/src/styles/DevToolsModal.styles.ts +0 -137
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { AttachmentPreview } from "../attachments/types.js";
|
|
2
|
+
import { MessagePreview } from "../message/types.js";
|
|
3
|
+
|
|
4
|
+
//#region src/views/thread/types.d.ts
|
|
5
|
+
interface ThreadListItemPreview {
|
|
6
|
+
id: string;
|
|
7
|
+
title?: string;
|
|
8
|
+
status?: string;
|
|
9
|
+
externalId?: string;
|
|
10
|
+
remoteId?: string;
|
|
11
|
+
lastMessageAt?: string;
|
|
12
|
+
}
|
|
13
|
+
interface SuggestionPreview {
|
|
14
|
+
prompt?: string;
|
|
15
|
+
}
|
|
16
|
+
interface ComposerQueueItem {
|
|
17
|
+
id?: string;
|
|
18
|
+
prompt: string;
|
|
19
|
+
}
|
|
20
|
+
interface ComposerPreview {
|
|
21
|
+
textLength: number;
|
|
22
|
+
role?: string;
|
|
23
|
+
attachments: AttachmentPreview[];
|
|
24
|
+
isEditing?: boolean;
|
|
25
|
+
canCancel?: boolean;
|
|
26
|
+
canSend?: boolean;
|
|
27
|
+
isEmpty?: boolean;
|
|
28
|
+
type?: string;
|
|
29
|
+
queue: ComposerQueueItem[];
|
|
30
|
+
}
|
|
31
|
+
interface ThreadPreview {
|
|
32
|
+
isDisabled?: boolean;
|
|
33
|
+
isLoading?: boolean;
|
|
34
|
+
isRunning?: boolean;
|
|
35
|
+
messages: MessagePreview[];
|
|
36
|
+
suggestions: SuggestionPreview[];
|
|
37
|
+
capabilities: string[];
|
|
38
|
+
composer?: ComposerPreview;
|
|
39
|
+
}
|
|
40
|
+
interface ThreadListPreview {
|
|
41
|
+
mainThreadId?: string;
|
|
42
|
+
newThreadId?: string | null;
|
|
43
|
+
threadIds: string[];
|
|
44
|
+
archivedThreadIds: string[];
|
|
45
|
+
threadItems: ThreadListItemPreview[];
|
|
46
|
+
main?: ThreadPreview;
|
|
47
|
+
}
|
|
48
|
+
//#endregion
|
|
49
|
+
export { type AttachmentPreview, ComposerPreview, ComposerQueueItem, SuggestionPreview, ThreadListItemPreview, ThreadListPreview, ThreadPreview };
|
|
50
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","names":[],"sources":["../../../src/views/thread/types.ts"],"mappings":";;;;UAKiB,qBAAA;EACf,EAAA;EACA,KAAA;EACA,MAAA;EACA,UAAA;EACA,QAAA;EACA,aAAA;AAAA;AAAA,UAGe,iBAAA;EACf,MAAM;AAAA;AAAA,UAGS,iBAAA;EACf,EAAA;EACA,MAAM;AAAA;AAAA,UAGS,eAAA;EACf,UAAA;EACA,IAAA;EACA,WAAA,EAAa,iBAAA;EACb,SAAA;EACA,SAAA;EACA,OAAA;EACA,OAAA;EACA,IAAA;EACA,KAAA,EAAO,iBAAiB;AAAA;AAAA,UAGT,aAAA;EACf,UAAA;EACA,SAAA;EACA,SAAA;EACA,QAAA,EAAU,cAAA;EACV,WAAA,EAAa,iBAAA;EACb,YAAA;EACA,QAAA,GAAW,eAAA;AAAA;AAAA,UAGI,iBAAA;EACf,YAAA;EACA,WAAA;EACA,SAAA;EACA,iBAAA;EACA,WAAA,EAAa,qBAAA;EACb,IAAA,GAAO,aAAa;AAAA"}
|
|
File without changes
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ComposerPreview, ThreadListItemPreview, ThreadListPreview, ThreadPreview } from "./types.js";
|
|
2
|
+
|
|
3
|
+
//#region src/views/thread/utils.d.ts
|
|
4
|
+
declare const parseComposerPreview: (value: unknown) => ComposerPreview | undefined;
|
|
5
|
+
declare const parseThreadListItemPreview: (value: unknown) => ThreadListItemPreview | null;
|
|
6
|
+
declare const parseThreadPreview: (value: unknown) => ThreadPreview | null;
|
|
7
|
+
declare const parseThreadListPreview: (value: unknown) => ThreadListPreview | null;
|
|
8
|
+
//#endregion
|
|
9
|
+
export { parseComposerPreview, parseThreadListItemPreview, parseThreadListPreview, parseThreadPreview };
|
|
10
|
+
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.d.ts","names":[],"sources":["../../../src/views/thread/utils.ts"],"mappings":";;;cAmBa,oBAAA,GACX,KAAA,cACC,eAAe;AAAA,cAyCL,0BAAA,GACX,KAAA,cACC,qBAAqB;AAAA,cAmBX,kBAAA,GAAsB,KAAA,cAAiB,aAAa;AAAA,cAsCpD,sBAAA,GACX,KAAA,cACC,iBAAiB"}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { isRecord, isStringArray } from "../../utils/common.js";
|
|
2
|
+
import { parseAttachments } from "../attachments/parseAttachment.js";
|
|
3
|
+
import { parseMessage } from "../message/parse.js";
|
|
4
|
+
//#region src/views/thread/utils.ts
|
|
5
|
+
const parseSuggestionPreview = (value) => {
|
|
6
|
+
if (!isRecord(value)) return null;
|
|
7
|
+
if (typeof value.prompt !== "string") return null;
|
|
8
|
+
return { prompt: value.prompt };
|
|
9
|
+
};
|
|
10
|
+
const parseComposerPreview = (value) => {
|
|
11
|
+
if (!isRecord(value)) return void 0;
|
|
12
|
+
const text = typeof value.text === "string" ? value.text : "";
|
|
13
|
+
const attachments = parseAttachments(value.attachments);
|
|
14
|
+
const queue = Array.isArray(value.queue) ? value.queue.map((item) => {
|
|
15
|
+
if (!isRecord(item) || typeof item.prompt !== "string") return null;
|
|
16
|
+
return {
|
|
17
|
+
prompt: item.prompt,
|
|
18
|
+
...typeof item.id === "string" ? { id: item.id } : {}
|
|
19
|
+
};
|
|
20
|
+
}).filter((item) => Boolean(item)) : [];
|
|
21
|
+
return {
|
|
22
|
+
textLength: text.length,
|
|
23
|
+
attachments,
|
|
24
|
+
queue,
|
|
25
|
+
...typeof value.role === "string" ? { role: value.role } : {},
|
|
26
|
+
...typeof value.isEditing === "boolean" ? { isEditing: value.isEditing } : {},
|
|
27
|
+
...typeof value.canCancel === "boolean" ? { canCancel: value.canCancel } : {},
|
|
28
|
+
...typeof value.canSend === "boolean" ? { canSend: value.canSend } : {},
|
|
29
|
+
...typeof value.isEmpty === "boolean" ? { isEmpty: value.isEmpty } : {},
|
|
30
|
+
...typeof value.type === "string" ? { type: value.type } : {}
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
const parseMessages = (value) => Array.isArray(value) ? value.map((message, index) => parseMessage(message, index)).filter((message) => Boolean(message)) : [];
|
|
34
|
+
const parseThreadListItemPreview = (value) => {
|
|
35
|
+
if (!isRecord(value) || typeof value.id !== "string") return null;
|
|
36
|
+
return {
|
|
37
|
+
id: value.id,
|
|
38
|
+
...typeof value.title === "string" ? { title: value.title } : {},
|
|
39
|
+
...typeof value.status === "string" ? { status: value.status } : {},
|
|
40
|
+
...typeof value.externalId === "string" ? { externalId: value.externalId } : {},
|
|
41
|
+
...typeof value.remoteId === "string" ? { remoteId: value.remoteId } : {},
|
|
42
|
+
...typeof value.lastMessageAt === "string" ? { lastMessageAt: value.lastMessageAt } : value.lastMessageAt instanceof Date ? { lastMessageAt: value.lastMessageAt.toISOString() } : {}
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
const parseThreadPreview = (value) => {
|
|
46
|
+
if (!isRecord(value)) return null;
|
|
47
|
+
const messages = parseMessages(value.messages);
|
|
48
|
+
const suggestions = Array.isArray(value.suggestions) ? value.suggestions.map((suggestion) => parseSuggestionPreview(suggestion)).filter((suggestion) => Boolean(suggestion)) : [];
|
|
49
|
+
const capabilities = isRecord(value.capabilities) ? Object.entries(value.capabilities).filter(([, flag]) => flag === true).map(([name]) => name) : [];
|
|
50
|
+
const composer = parseComposerPreview(value.composer);
|
|
51
|
+
return {
|
|
52
|
+
messages,
|
|
53
|
+
suggestions,
|
|
54
|
+
capabilities,
|
|
55
|
+
...typeof value.isDisabled === "boolean" ? { isDisabled: value.isDisabled } : {},
|
|
56
|
+
...typeof value.isLoading === "boolean" ? { isLoading: value.isLoading } : {},
|
|
57
|
+
...typeof value.isRunning === "boolean" ? { isRunning: value.isRunning } : {},
|
|
58
|
+
...composer ? { composer } : {}
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
const parseThreadListPreview = (value) => {
|
|
62
|
+
if (!isRecord(value)) return null;
|
|
63
|
+
const threadItems = Array.isArray(value.threadItems) ? value.threadItems.map((item) => parseThreadListItemPreview(item)).filter((item) => Boolean(item)) : [];
|
|
64
|
+
const main = parseThreadPreview(value.main);
|
|
65
|
+
return {
|
|
66
|
+
threadIds: isStringArray(value.threadIds),
|
|
67
|
+
archivedThreadIds: isStringArray(value.archivedThreadIds),
|
|
68
|
+
threadItems,
|
|
69
|
+
...typeof value.mainThreadId === "string" ? { mainThreadId: value.mainThreadId } : {},
|
|
70
|
+
...typeof value.newThreadId === "string" ? { newThreadId: value.newThreadId } : value.newThreadId === null ? { newThreadId: null } : {},
|
|
71
|
+
...main ? { main } : {}
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
//#endregion
|
|
75
|
+
export { parseComposerPreview, parseThreadListItemPreview, parseThreadListPreview, parseThreadPreview };
|
|
76
|
+
|
|
77
|
+
//# sourceMappingURL=utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.js","names":["isRecord","isStringArray","parseAttachments","parseMessage","MessagePreview","ComposerPreview","ComposerQueueItem","SuggestionPreview","ThreadListItemPreview","ThreadListPreview","ThreadPreview","parseSuggestionPreview","value","prompt","parseComposerPreview","undefined","text","attachments","queue","Array","isArray","map","item","id","filter","Boolean","textLength","length","role","isEditing","canCancel","canSend","isEmpty","type","parseMessages","message","index","parseThreadListItemPreview","title","status","externalId","remoteId","lastMessageAt","Date","toISOString","parseThreadPreview","messages","suggestions","suggestion","capabilities","Object","entries","flag","name","composer","isDisabled","isLoading","isRunning","parseThreadListPreview","threadItems","main","threadIds","archivedThreadIds","mainThreadId","newThreadId"],"sources":["../../../src/views/thread/utils.ts"],"sourcesContent":["import { isRecord, isStringArray } from \"../../utils/common\";\nimport { parseAttachments } from \"../attachments/parseAttachment\";\nimport { parseMessage } from \"../message\";\nimport type { MessagePreview } from \"../message\";\nimport type {\n ComposerPreview,\n ComposerQueueItem,\n SuggestionPreview,\n ThreadListItemPreview,\n ThreadListPreview,\n ThreadPreview,\n} from \"./types\";\n\nconst parseSuggestionPreview = (value: unknown): SuggestionPreview | null => {\n if (!isRecord(value)) return null;\n if (typeof value.prompt !== \"string\") return null;\n return { prompt: value.prompt };\n};\n\nexport const parseComposerPreview = (\n value: unknown,\n): ComposerPreview | undefined => {\n if (!isRecord(value)) return undefined;\n\n const text = typeof value.text === \"string\" ? value.text : \"\";\n const attachments = parseAttachments(value.attachments);\n const queue = Array.isArray(value.queue)\n ? value.queue\n .map((item) => {\n if (!isRecord(item) || typeof item.prompt !== \"string\") return null;\n return {\n prompt: item.prompt,\n ...(typeof item.id === \"string\" ? { id: item.id } : {}),\n };\n })\n .filter((item): item is ComposerQueueItem => Boolean(item))\n : [];\n\n return {\n textLength: text.length,\n attachments,\n queue,\n ...(typeof value.role === \"string\" ? { role: value.role } : {}),\n ...(typeof value.isEditing === \"boolean\"\n ? { isEditing: value.isEditing }\n : {}),\n ...(typeof value.canCancel === \"boolean\"\n ? { canCancel: value.canCancel }\n : {}),\n ...(typeof value.canSend === \"boolean\" ? { canSend: value.canSend } : {}),\n ...(typeof value.isEmpty === \"boolean\" ? { isEmpty: value.isEmpty } : {}),\n ...(typeof value.type === \"string\" ? { type: value.type } : {}),\n };\n};\n\nconst parseMessages = (value: unknown): MessagePreview[] =>\n Array.isArray(value)\n ? value\n .map((message, index) => parseMessage(message, index))\n .filter((message): message is MessagePreview => Boolean(message))\n : [];\n\nexport const parseThreadListItemPreview = (\n value: unknown,\n): ThreadListItemPreview | null => {\n if (!isRecord(value) || typeof value.id !== \"string\") return null;\n\n return {\n id: value.id,\n ...(typeof value.title === \"string\" ? { title: value.title } : {}),\n ...(typeof value.status === \"string\" ? { status: value.status } : {}),\n ...(typeof value.externalId === \"string\"\n ? { externalId: value.externalId }\n : {}),\n ...(typeof value.remoteId === \"string\" ? { remoteId: value.remoteId } : {}),\n ...(typeof value.lastMessageAt === \"string\"\n ? { lastMessageAt: value.lastMessageAt }\n : value.lastMessageAt instanceof Date\n ? { lastMessageAt: value.lastMessageAt.toISOString() }\n : {}),\n };\n};\n\nexport const parseThreadPreview = (value: unknown): ThreadPreview | null => {\n if (!isRecord(value)) return null;\n\n const messages = parseMessages(value.messages);\n\n const suggestions = Array.isArray(value.suggestions)\n ? value.suggestions\n .map((suggestion) => parseSuggestionPreview(suggestion))\n .filter((suggestion): suggestion is SuggestionPreview =>\n Boolean(suggestion),\n )\n : [];\n\n const capabilities = isRecord(value.capabilities)\n ? Object.entries(value.capabilities)\n .filter(([, flag]) => flag === true)\n .map(([name]) => name)\n : [];\n\n const composer = parseComposerPreview(value.composer);\n\n return {\n messages,\n suggestions,\n capabilities,\n ...(typeof value.isDisabled === \"boolean\"\n ? { isDisabled: value.isDisabled }\n : {}),\n ...(typeof value.isLoading === \"boolean\"\n ? { isLoading: value.isLoading }\n : {}),\n ...(typeof value.isRunning === \"boolean\"\n ? { isRunning: value.isRunning }\n : {}),\n ...(composer ? { composer } : {}),\n };\n};\n\nexport const parseThreadListPreview = (\n value: unknown,\n): ThreadListPreview | null => {\n if (!isRecord(value)) return null;\n\n const threadItems = Array.isArray(value.threadItems)\n ? value.threadItems\n .map((item) => parseThreadListItemPreview(item))\n .filter((item): item is ThreadListItemPreview => Boolean(item))\n : [];\n\n const main = parseThreadPreview(value.main);\n\n return {\n threadIds: isStringArray(value.threadIds),\n archivedThreadIds: isStringArray(value.archivedThreadIds),\n threadItems,\n ...(typeof value.mainThreadId === \"string\"\n ? { mainThreadId: value.mainThreadId }\n : {}),\n ...(typeof value.newThreadId === \"string\"\n ? { newThreadId: value.newThreadId }\n : value.newThreadId === null\n ? { newThreadId: null }\n : {}),\n ...(main ? { main } : {}),\n };\n};\n"],"mappings":"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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
|
|
3
|
+
//#region src/views/ui/CenteredMessage.d.ts
|
|
4
|
+
declare const CenteredMessage: ({
|
|
5
|
+
children
|
|
6
|
+
}: {
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
}) => import("react").JSX.Element;
|
|
9
|
+
//#endregion
|
|
10
|
+
export { CenteredMessage };
|
|
11
|
+
//# sourceMappingURL=CenteredMessage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CenteredMessage.d.ts","names":[],"sources":["../../../src/views/ui/CenteredMessage.tsx"],"mappings":";;;cAEa,eAAA;EAAmB;AAAA;EAAgB,QAAA,EAAU,SAAS;AAAA,sBAAE,GAAA,CAAA,OAAA"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { c } from "@assistant-ui/tap/react-shim/compiler-runtime";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
//#region src/views/ui/CenteredMessage.tsx
|
|
4
|
+
const CenteredMessage = (t0) => {
|
|
5
|
+
const $ = c(2);
|
|
6
|
+
const { children } = t0;
|
|
7
|
+
let t1;
|
|
8
|
+
if ($[0] !== children) {
|
|
9
|
+
t1 = /* @__PURE__ */ jsx("div", {
|
|
10
|
+
className: "text-muted-foreground flex h-full items-center justify-center text-[13px]",
|
|
11
|
+
children
|
|
12
|
+
});
|
|
13
|
+
$[0] = children;
|
|
14
|
+
$[1] = t1;
|
|
15
|
+
} else t1 = $[1];
|
|
16
|
+
return t1;
|
|
17
|
+
};
|
|
18
|
+
//#endregion
|
|
19
|
+
export { CenteredMessage };
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=CenteredMessage.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CenteredMessage.js","names":["ReactNode","CenteredMessage","t0","$","_c","children","t1"],"sources":["../../../src/views/ui/CenteredMessage.tsx"],"sourcesContent":["import type { ReactNode } from \"react\";\n\nexport const CenteredMessage = ({ children }: { children: ReactNode }) => (\n <div className=\"text-muted-foreground flex h-full items-center justify-center text-[13px]\">\n {children}\n </div>\n);\n"],"mappings":";;;AAEA,MAAaC,mBAAkBC,OAAA;CAAA,MAAAC,IAAAC,EAAA,CAAA;CAAC,MAAA,EAAAC,aAAAH;CAAqC,IAAAI;CAAA,IAAAH,EAAA,OAAAE,UAAA;EACnEC,KAAA,oBAAA,OAAA;GAAe,WAAA;GACZD;EACG,CAAA;EAAAF,EAAA,KAAAE;EAAAF,EAAA,KAAAG;CAAA,OAAAA,KAAAH,EAAA;CAAA,OAFNG;AAEM"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
|
|
3
|
+
//#region src/views/ui/Chip.d.ts
|
|
4
|
+
declare const Chip: ({
|
|
5
|
+
className,
|
|
6
|
+
children
|
|
7
|
+
}: {
|
|
8
|
+
className?: string | undefined;
|
|
9
|
+
children: ReactNode;
|
|
10
|
+
}) => import("react").JSX.Element;
|
|
11
|
+
//#endregion
|
|
12
|
+
export { Chip };
|
|
13
|
+
//# sourceMappingURL=Chip.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Chip.d.ts","names":[],"sources":["../../../src/views/ui/Chip.tsx"],"mappings":";;;cAIa,IAAA;EAAQ,SAAA;EAAA;AAAA;EAInB,SAAA;EACA,QAAA,EAAU,SAAA;AAAA,sBACX,GAAA,CAAA,OAAA"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { BADGE_BASE } from "./badgeTone.js";
|
|
2
|
+
import { c } from "@assistant-ui/tap/react-shim/compiler-runtime";
|
|
3
|
+
import { jsx } from "react/jsx-runtime";
|
|
4
|
+
import clsx from "clsx";
|
|
5
|
+
//#region src/views/ui/Chip.tsx
|
|
6
|
+
const Chip = (t0) => {
|
|
7
|
+
const $ = c(5);
|
|
8
|
+
const { className, children } = t0;
|
|
9
|
+
let t1;
|
|
10
|
+
if ($[0] !== className) {
|
|
11
|
+
t1 = clsx(BADGE_BASE, "bg-muted text-muted-foreground", className);
|
|
12
|
+
$[0] = className;
|
|
13
|
+
$[1] = t1;
|
|
14
|
+
} else t1 = $[1];
|
|
15
|
+
let t2;
|
|
16
|
+
if ($[2] !== children || $[3] !== t1) {
|
|
17
|
+
t2 = /* @__PURE__ */ jsx("span", {
|
|
18
|
+
className: t1,
|
|
19
|
+
children
|
|
20
|
+
});
|
|
21
|
+
$[2] = children;
|
|
22
|
+
$[3] = t1;
|
|
23
|
+
$[4] = t2;
|
|
24
|
+
} else t2 = $[4];
|
|
25
|
+
return t2;
|
|
26
|
+
};
|
|
27
|
+
//#endregion
|
|
28
|
+
export { Chip };
|
|
29
|
+
|
|
30
|
+
//# sourceMappingURL=Chip.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Chip.js","names":["clsx","ReactNode","BADGE_BASE","Chip","t0","$","_c","className","children","t1","t2"],"sources":["../../../src/views/ui/Chip.tsx"],"sourcesContent":["import clsx from \"clsx\";\nimport type { ReactNode } from \"react\";\nimport { BADGE_BASE } from \"./badgeTone\";\n\nexport const Chip = ({\n className,\n children,\n}: {\n className?: string | undefined;\n children: ReactNode;\n}) => (\n <span\n className={clsx(BADGE_BASE, \"bg-muted text-muted-foreground\", className)}\n >\n {children}\n </span>\n);\n"],"mappings":";;;;;AAIA,MAAaG,QAAOC,OAAA;CAAA,MAAAC,IAAAC,EAAA,CAAA;CAAC,MAAA,EAAAC,WAAAC,aAAAJ;CAMpB,IAAAK;CAAA,IAAAJ,EAAA,OAAAE,WAAA;EAEcE,KAAAT,KAAKE,YAAY,kCAAkCK,SAAS;EAACF,EAAA,KAAAE;EAAAF,EAAA,KAAAI;CAAA,OAAAA,KAAAJ,EAAA;CAAA,IAAAK;CAAA,IAAAL,EAAA,OAAAG,YAAAH,EAAA,OAAAI,IAAA;EAD1EC,KAAA,oBAAA,QAAA;GACa,WAAAD;GAEVD;EACI,CAAA;EAAAH,EAAA,KAAAG;EAAAH,EAAA,KAAAI;EAAAJ,EAAA,KAAAK;CAAA,OAAAA,KAAAL,EAAA;CAAA,OAJPK;AAIO"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ButtonHTMLAttributes } from "react";
|
|
2
|
+
|
|
3
|
+
//#region src/views/ui/ControlButton.d.ts
|
|
4
|
+
declare const ControlButton: ({
|
|
5
|
+
className,
|
|
6
|
+
...props
|
|
7
|
+
}: ButtonHTMLAttributes<HTMLButtonElement>) => import("react").JSX.Element;
|
|
8
|
+
//#endregion
|
|
9
|
+
export { ControlButton };
|
|
10
|
+
//# sourceMappingURL=ControlButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ControlButton.d.ts","names":[],"sources":["../../../src/views/ui/ControlButton.tsx"],"mappings":";;;cAGa,aAAA;EAAiB,SAAA;EAAA,GAAA;AAAA,GAG3B,oBAAA,CAAqB,iBAAA,sBAAkB,GAAA,CAAA,OAAA"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { c } from "@assistant-ui/tap/react-shim/compiler-runtime";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
import clsx from "clsx";
|
|
4
|
+
//#region src/views/ui/ControlButton.tsx
|
|
5
|
+
const ControlButton = (t0) => {
|
|
6
|
+
const $ = c(8);
|
|
7
|
+
let className;
|
|
8
|
+
let props;
|
|
9
|
+
if ($[0] !== t0) {
|
|
10
|
+
({className, ...props} = t0);
|
|
11
|
+
$[0] = t0;
|
|
12
|
+
$[1] = className;
|
|
13
|
+
$[2] = props;
|
|
14
|
+
} else {
|
|
15
|
+
className = $[1];
|
|
16
|
+
props = $[2];
|
|
17
|
+
}
|
|
18
|
+
let t1;
|
|
19
|
+
if ($[3] !== className) {
|
|
20
|
+
t1 = clsx("text-muted-foreground hover:bg-accent hover:text-foreground border-border inline-flex h-8 items-center rounded-md border px-3 text-[13px] font-medium transition-colors", className);
|
|
21
|
+
$[3] = className;
|
|
22
|
+
$[4] = t1;
|
|
23
|
+
} else t1 = $[4];
|
|
24
|
+
let t2;
|
|
25
|
+
if ($[5] !== props || $[6] !== t1) {
|
|
26
|
+
t2 = /* @__PURE__ */ jsx("button", {
|
|
27
|
+
className: t1,
|
|
28
|
+
...props
|
|
29
|
+
});
|
|
30
|
+
$[5] = props;
|
|
31
|
+
$[6] = t1;
|
|
32
|
+
$[7] = t2;
|
|
33
|
+
} else t2 = $[7];
|
|
34
|
+
return t2;
|
|
35
|
+
};
|
|
36
|
+
//#endregion
|
|
37
|
+
export { ControlButton };
|
|
38
|
+
|
|
39
|
+
//# sourceMappingURL=ControlButton.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ControlButton.js","names":["clsx","ButtonHTMLAttributes","ControlButton","t0","$","_c","className","props","t1","t2"],"sources":["../../../src/views/ui/ControlButton.tsx"],"sourcesContent":["import clsx from \"clsx\";\nimport type { ButtonHTMLAttributes } from \"react\";\n\nexport const ControlButton = ({\n className,\n ...props\n}: ButtonHTMLAttributes<HTMLButtonElement>) => (\n <button\n className={clsx(\n \"text-muted-foreground hover:bg-accent hover:text-foreground border-border inline-flex h-8 items-center rounded-md border px-3 text-[13px] font-medium transition-colors\",\n className,\n )}\n {...props}\n />\n);\n"],"mappings":";;;;AAGA,MAAaE,iBAAgBC,OAAA;CAAA,MAAAC,IAAAC,EAAA,CAAA;CAAA,IAAAC;CAAA,IAAAC;CAAA,IAAAH,EAAA,OAAAD,IAAA;EAAC,CAAA,CAAAG,cAAAC,SAAAJ;EAGYC,EAAA,KAAAD;EAAAC,EAAA,KAAAE;EAAAF,EAAA,KAAAG;CAAA,OAAA;EAAAD,YAAAF,EAAA;EAAAG,QAAAH,EAAA;CAAA;CAAA,IAAAI;CAAA,IAAAJ,EAAA,OAAAE,WAAA;EAE3BE,KAAAR,KACT,2KACAM,SACF;EAACF,EAAA,KAAAE;EAAAF,EAAA,KAAAI;CAAA,OAAAA,KAAAJ,EAAA;CAAA,IAAAK;CAAA,IAAAL,EAAA,OAAAG,SAAAH,EAAA,OAAAI,IAAA;EAJHC,KAAA,oBAAA,UAAA;GACa,WAAAD;GAGV,GACGD;EAAK,CAAA;EACTH,EAAA,KAAAG;EAAAH,EAAA,KAAAI;EAAAJ,EAAA,KAAAK;CAAA,OAAAA,KAAAL,EAAA;CAAA,OANFK;AAME"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
//#region src/views/ui/CopyButton.d.ts
|
|
2
|
+
declare const CopyButton: ({
|
|
3
|
+
value,
|
|
4
|
+
label,
|
|
5
|
+
copiedLabel,
|
|
6
|
+
className,
|
|
7
|
+
iconOnly,
|
|
8
|
+
size
|
|
9
|
+
}: {
|
|
10
|
+
value: string;
|
|
11
|
+
label?: string;
|
|
12
|
+
copiedLabel?: string;
|
|
13
|
+
className?: string | undefined;
|
|
14
|
+
iconOnly?: boolean;
|
|
15
|
+
size?: "default" | "sm";
|
|
16
|
+
}) => import("react").JSX.Element;
|
|
17
|
+
//#endregion
|
|
18
|
+
export { CopyButton };
|
|
19
|
+
//# sourceMappingURL=CopyButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CopyButton.d.ts","names":[],"sources":["../../../src/views/ui/CopyButton.tsx"],"mappings":";cA6Ba,UAAA;EAAc,KAAA;EAAA,KAAA;EAAA,WAAA;EAAA,SAAA;EAAA,QAAA;EAAA;AAAA;EAQzB,KAAA;EACA,KAAA;EACA,WAAA;EACA,SAAA;EACA,QAAA;EACA,IAAA;AAAA,sBACD,GAAA,CAAA,OAAA"}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { useCopyToClipboard } from "./useCopyToClipboard.js";
|
|
2
|
+
import { c } from "@assistant-ui/tap/react-shim/compiler-runtime";
|
|
3
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
4
|
+
import clsx from "clsx";
|
|
5
|
+
//#region src/views/ui/CopyButton.tsx
|
|
6
|
+
const ClipboardIcon = (t0) => {
|
|
7
|
+
const $ = c(4);
|
|
8
|
+
const { size: t1 } = t0;
|
|
9
|
+
const size = t1 === void 0 ? 12 : t1;
|
|
10
|
+
let t2;
|
|
11
|
+
let t3;
|
|
12
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
13
|
+
t2 = /* @__PURE__ */ jsx("rect", {
|
|
14
|
+
x: "9",
|
|
15
|
+
y: "9",
|
|
16
|
+
width: "11",
|
|
17
|
+
height: "11",
|
|
18
|
+
rx: "1.5",
|
|
19
|
+
stroke: "currentColor",
|
|
20
|
+
strokeWidth: "1.75"
|
|
21
|
+
});
|
|
22
|
+
t3 = /* @__PURE__ */ jsx("path", {
|
|
23
|
+
d: "M7 15H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h7a2 2 0 0 1 2 2v1",
|
|
24
|
+
stroke: "currentColor",
|
|
25
|
+
strokeWidth: "1.75",
|
|
26
|
+
strokeLinecap: "round"
|
|
27
|
+
});
|
|
28
|
+
$[0] = t2;
|
|
29
|
+
$[1] = t3;
|
|
30
|
+
} else {
|
|
31
|
+
t2 = $[0];
|
|
32
|
+
t3 = $[1];
|
|
33
|
+
}
|
|
34
|
+
let t4;
|
|
35
|
+
if ($[2] !== size) {
|
|
36
|
+
t4 = /* @__PURE__ */ jsxs("svg", {
|
|
37
|
+
width: size,
|
|
38
|
+
height: size,
|
|
39
|
+
viewBox: "0 0 24 24",
|
|
40
|
+
fill: "none",
|
|
41
|
+
"aria-hidden": "true",
|
|
42
|
+
children: [t2, t3]
|
|
43
|
+
});
|
|
44
|
+
$[2] = size;
|
|
45
|
+
$[3] = t4;
|
|
46
|
+
} else t4 = $[3];
|
|
47
|
+
return t4;
|
|
48
|
+
};
|
|
49
|
+
const CopyButton = (t0) => {
|
|
50
|
+
const $ = c(23);
|
|
51
|
+
const { value, label: t1, copiedLabel: t2, className, iconOnly: t3, size: t4 } = t0;
|
|
52
|
+
const label = t1 === void 0 ? "Copy" : t1;
|
|
53
|
+
const copiedLabel = t2 === void 0 ? "Copied" : t2;
|
|
54
|
+
const iconOnly = t3 === void 0 ? false : t3;
|
|
55
|
+
const size = t4 === void 0 ? "default" : t4;
|
|
56
|
+
const { isCopied, copy } = useCopyToClipboard();
|
|
57
|
+
let t5;
|
|
58
|
+
if ($[0] !== value) {
|
|
59
|
+
t5 = value.trim();
|
|
60
|
+
$[0] = value;
|
|
61
|
+
$[1] = t5;
|
|
62
|
+
} else t5 = $[1];
|
|
63
|
+
const empty = !t5;
|
|
64
|
+
const iconPx = size === "sm" ? 10 : 12;
|
|
65
|
+
const t6 = isCopied ? copiedLabel : label;
|
|
66
|
+
const t7 = isCopied ? copiedLabel : label;
|
|
67
|
+
let t8;
|
|
68
|
+
if ($[2] !== copy || $[3] !== value) {
|
|
69
|
+
t8 = (event) => {
|
|
70
|
+
event.stopPropagation();
|
|
71
|
+
copy(value);
|
|
72
|
+
};
|
|
73
|
+
$[2] = copy;
|
|
74
|
+
$[3] = value;
|
|
75
|
+
$[4] = t8;
|
|
76
|
+
} else t8 = $[4];
|
|
77
|
+
const t9 = iconOnly ? size === "sm" ? "hover:bg-accent/60 size-4" : "hover:bg-accent/60 size-6" : "hover:bg-accent/60 h-6 gap-1 px-1.5 text-[10px] font-medium";
|
|
78
|
+
let t10;
|
|
79
|
+
if ($[5] !== className || $[6] !== t9) {
|
|
80
|
+
t10 = clsx("text-muted-foreground hover:text-foreground inline-flex shrink-0 items-center justify-center rounded transition-colors disabled:pointer-events-none disabled:opacity-40", t9, className);
|
|
81
|
+
$[5] = className;
|
|
82
|
+
$[6] = t9;
|
|
83
|
+
$[7] = t10;
|
|
84
|
+
} else t10 = $[7];
|
|
85
|
+
let t11;
|
|
86
|
+
if ($[8] !== iconPx) {
|
|
87
|
+
t11 = /* @__PURE__ */ jsx(ClipboardIcon, { size: iconPx });
|
|
88
|
+
$[8] = iconPx;
|
|
89
|
+
$[9] = t11;
|
|
90
|
+
} else t11 = $[9];
|
|
91
|
+
let t12;
|
|
92
|
+
if ($[10] !== copiedLabel || $[11] !== iconOnly || $[12] !== isCopied || $[13] !== label) {
|
|
93
|
+
t12 = !iconOnly ? /* @__PURE__ */ jsx("span", { children: isCopied ? copiedLabel : label }) : null;
|
|
94
|
+
$[10] = copiedLabel;
|
|
95
|
+
$[11] = iconOnly;
|
|
96
|
+
$[12] = isCopied;
|
|
97
|
+
$[13] = label;
|
|
98
|
+
$[14] = t12;
|
|
99
|
+
} else t12 = $[14];
|
|
100
|
+
let t13;
|
|
101
|
+
if ($[15] !== empty || $[16] !== t10 || $[17] !== t11 || $[18] !== t12 || $[19] !== t6 || $[20] !== t7 || $[21] !== t8) {
|
|
102
|
+
t13 = /* @__PURE__ */ jsxs("button", {
|
|
103
|
+
type: "button",
|
|
104
|
+
disabled: empty,
|
|
105
|
+
"aria-label": t6,
|
|
106
|
+
title: t7,
|
|
107
|
+
onClick: t8,
|
|
108
|
+
className: t10,
|
|
109
|
+
children: [t11, t12]
|
|
110
|
+
});
|
|
111
|
+
$[15] = empty;
|
|
112
|
+
$[16] = t10;
|
|
113
|
+
$[17] = t11;
|
|
114
|
+
$[18] = t12;
|
|
115
|
+
$[19] = t6;
|
|
116
|
+
$[20] = t7;
|
|
117
|
+
$[21] = t8;
|
|
118
|
+
$[22] = t13;
|
|
119
|
+
} else t13 = $[22];
|
|
120
|
+
return t13;
|
|
121
|
+
};
|
|
122
|
+
//#endregion
|
|
123
|
+
export { CopyButton };
|
|
124
|
+
|
|
125
|
+
//# sourceMappingURL=CopyButton.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CopyButton.js","names":["clsx","useCopyToClipboard","ClipboardIcon","t0","$","_c","size","t1","undefined","t2","t3","Symbol","for","t4","CopyButton","value","label","copiedLabel","className","iconOnly","isCopied","copy","t5","trim","empty","iconPx","t6","t7","t8","event","stopPropagation","t9","t10","t11","t12","t13"],"sources":["../../../src/views/ui/CopyButton.tsx"],"sourcesContent":["import clsx from \"clsx\";\nimport { useCopyToClipboard } from \"./useCopyToClipboard\";\n\nconst ClipboardIcon = ({ size = 12 }: { size?: number }) => (\n <svg\n width={size}\n height={size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n aria-hidden=\"true\"\n >\n <rect\n x=\"9\"\n y=\"9\"\n width=\"11\"\n height=\"11\"\n rx=\"1.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.75\"\n />\n <path\n d=\"M7 15H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h7a2 2 0 0 1 2 2v1\"\n stroke=\"currentColor\"\n strokeWidth=\"1.75\"\n strokeLinecap=\"round\"\n />\n </svg>\n);\n\nexport const CopyButton = ({\n value,\n label = \"Copy\",\n copiedLabel = \"Copied\",\n className,\n iconOnly = false,\n size = \"default\",\n}: {\n value: string;\n label?: string;\n copiedLabel?: string;\n className?: string | undefined;\n iconOnly?: boolean;\n size?: \"default\" | \"sm\";\n}) => {\n const { isCopied, copy } = useCopyToClipboard();\n const empty = !value.trim();\n const iconPx = size === \"sm\" ? 10 : 12;\n\n return (\n <button\n type=\"button\"\n disabled={empty}\n aria-label={isCopied ? copiedLabel : label}\n title={isCopied ? copiedLabel : label}\n onClick={(event) => {\n event.stopPropagation();\n copy(value);\n }}\n className={clsx(\n \"text-muted-foreground hover:text-foreground inline-flex shrink-0 items-center justify-center rounded transition-colors disabled:pointer-events-none disabled:opacity-40\",\n iconOnly\n ? size === \"sm\"\n ? \"hover:bg-accent/60 size-4\"\n : \"hover:bg-accent/60 size-6\"\n : \"hover:bg-accent/60 h-6 gap-1 px-1.5 text-[10px] font-medium\",\n className,\n )}\n >\n <ClipboardIcon size={iconPx} />\n {!iconOnly ? <span>{isCopied ? copiedLabel : label}</span> : null}\n </button>\n );\n};\n"],"mappings":"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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
|
|
3
|
+
//#region src/views/ui/EmptyState.d.ts
|
|
4
|
+
declare const EmptyState: ({
|
|
5
|
+
children
|
|
6
|
+
}: {
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
}) => import("react").JSX.Element;
|
|
9
|
+
//#endregion
|
|
10
|
+
export { EmptyState };
|
|
11
|
+
//# sourceMappingURL=EmptyState.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EmptyState.d.ts","names":[],"sources":["../../../src/views/ui/EmptyState.tsx"],"mappings":";;;cAEa,UAAA;EAAc;AAAA;EAAgB,QAAA,EAAU,SAAS;AAAA,sBAAE,GAAA,CAAA,OAAA"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { c } from "@assistant-ui/tap/react-shim/compiler-runtime";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
//#region src/views/ui/EmptyState.tsx
|
|
4
|
+
const EmptyState = (t0) => {
|
|
5
|
+
const $ = c(2);
|
|
6
|
+
const { children } = t0;
|
|
7
|
+
let t1;
|
|
8
|
+
if ($[0] !== children) {
|
|
9
|
+
t1 = /* @__PURE__ */ jsx("div", {
|
|
10
|
+
className: "text-muted-foreground border-border flex items-center justify-center rounded-lg border border-dashed p-6 text-center text-[13px]",
|
|
11
|
+
children
|
|
12
|
+
});
|
|
13
|
+
$[0] = children;
|
|
14
|
+
$[1] = t1;
|
|
15
|
+
} else t1 = $[1];
|
|
16
|
+
return t1;
|
|
17
|
+
};
|
|
18
|
+
//#endregion
|
|
19
|
+
export { EmptyState };
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=EmptyState.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EmptyState.js","names":["ReactNode","EmptyState","t0","$","_c","children","t1"],"sources":["../../../src/views/ui/EmptyState.tsx"],"sourcesContent":["import type { ReactNode } from \"react\";\n\nexport const EmptyState = ({ children }: { children: ReactNode }) => (\n <div className=\"text-muted-foreground border-border flex items-center justify-center rounded-lg border border-dashed p-6 text-center text-[13px]\">\n {children}\n </div>\n);\n"],"mappings":";;;AAEA,MAAaC,cAAaC,OAAA;CAAA,MAAAC,IAAAC,EAAA,CAAA;CAAC,MAAA,EAAAC,aAAAH;CAAqC,IAAAI;CAAA,IAAAH,EAAA,OAAAE,UAAA;EAC9DC,KAAA,oBAAA,OAAA;GAAe,WAAA;GACZD;EACG,CAAA;EAAAF,EAAA,KAAAE;EAAAF,EAAA,KAAAG;CAAA,OAAAA,KAAAH,EAAA;CAAA,OAFNG;AAEM"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
|
|
3
|
+
//#region src/views/ui/InfoCard.d.ts
|
|
4
|
+
/**
|
|
5
|
+
* A flat content section: a header row (title + optional count/action) over its
|
|
6
|
+
* content. No box, no nesting; sections are separated by whitespace on the
|
|
7
|
+
* panel surface.
|
|
8
|
+
*/
|
|
9
|
+
declare const InfoCard: ({
|
|
10
|
+
title,
|
|
11
|
+
count,
|
|
12
|
+
action,
|
|
13
|
+
children
|
|
14
|
+
}: {
|
|
15
|
+
title?: ReactNode;
|
|
16
|
+
count?: ReactNode;
|
|
17
|
+
action?: ReactNode;
|
|
18
|
+
children: ReactNode;
|
|
19
|
+
}) => import("react").JSX.Element;
|
|
20
|
+
//#endregion
|
|
21
|
+
export { InfoCard };
|
|
22
|
+
//# sourceMappingURL=InfoCard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InfoCard.d.ts","names":[],"sources":["../../../src/views/ui/InfoCard.tsx"],"mappings":";;;;;AAOA;;;cAAa,QAAA;EAAY,KAAA;EAAA,KAAA;EAAA,MAAA;EAAA;AAAA;EAMvB,KAAA,GAAQ,SAAA;EACR,KAAA,GAAQ,SAAA;EACR,MAAA,GAAS,SAAA;EACT,QAAA,EAAU,SAAA;AAAA,sBACX,GAAA,CAAA,OAAA"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { c } from "@assistant-ui/tap/react-shim/compiler-runtime";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
//#region src/views/ui/InfoCard.tsx
|
|
4
|
+
/**
|
|
5
|
+
* A flat content section: a header row (title + optional count/action) over its
|
|
6
|
+
* content. No box, no nesting; sections are separated by whitespace on the
|
|
7
|
+
* panel surface.
|
|
8
|
+
*/
|
|
9
|
+
const InfoCard = (t0) => {
|
|
10
|
+
const $ = c(7);
|
|
11
|
+
const { title, count, action, children } = t0;
|
|
12
|
+
let t1;
|
|
13
|
+
if ($[0] !== action || $[1] !== count || $[2] !== title) {
|
|
14
|
+
t1 = title != null || action != null ? /* @__PURE__ */ jsxs("div", {
|
|
15
|
+
className: "flex h-5 items-center justify-between gap-2",
|
|
16
|
+
children: [/* @__PURE__ */ jsxs("h3", {
|
|
17
|
+
className: "text-foreground flex items-center gap-1.5 text-[13px] font-medium",
|
|
18
|
+
children: [title, count != null ? /* @__PURE__ */ jsx("span", {
|
|
19
|
+
className: "text-muted-foreground text-[11px] font-normal tabular-nums",
|
|
20
|
+
children: count
|
|
21
|
+
}) : null]
|
|
22
|
+
}), action]
|
|
23
|
+
}) : null;
|
|
24
|
+
$[0] = action;
|
|
25
|
+
$[1] = count;
|
|
26
|
+
$[2] = title;
|
|
27
|
+
$[3] = t1;
|
|
28
|
+
} else t1 = $[3];
|
|
29
|
+
let t2;
|
|
30
|
+
if ($[4] !== children || $[5] !== t1) {
|
|
31
|
+
t2 = /* @__PURE__ */ jsxs("section", {
|
|
32
|
+
className: "flex flex-col gap-2",
|
|
33
|
+
children: [t1, children]
|
|
34
|
+
});
|
|
35
|
+
$[4] = children;
|
|
36
|
+
$[5] = t1;
|
|
37
|
+
$[6] = t2;
|
|
38
|
+
} else t2 = $[6];
|
|
39
|
+
return t2;
|
|
40
|
+
};
|
|
41
|
+
//#endregion
|
|
42
|
+
export { InfoCard };
|
|
43
|
+
|
|
44
|
+
//# sourceMappingURL=InfoCard.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InfoCard.js","names":["ReactNode","InfoCard","t0","$","_c","title","count","action","children","t1","t2"],"sources":["../../../src/views/ui/InfoCard.tsx"],"sourcesContent":["import type { ReactNode } from \"react\";\n\n/**\n * A flat content section: a header row (title + optional count/action) over its\n * content. No box, no nesting; sections are separated by whitespace on the\n * panel surface.\n */\nexport const InfoCard = ({\n title,\n count,\n action,\n children,\n}: {\n title?: ReactNode;\n count?: ReactNode;\n action?: ReactNode;\n children: ReactNode;\n}) => (\n <section className=\"flex flex-col gap-2\">\n {title != null || action != null ? (\n <div className=\"flex h-5 items-center justify-between gap-2\">\n <h3 className=\"text-foreground flex items-center gap-1.5 text-[13px] font-medium\">\n {title}\n {count != null ? (\n <span className=\"text-muted-foreground text-[11px] font-normal tabular-nums\">\n {count}\n </span>\n ) : null}\n </h3>\n {action}\n </div>\n ) : null}\n {children}\n </section>\n);\n"],"mappings":";;;;;;;;AAOA,MAAaC,YAAWC,OAAA;CAAA,MAAAC,IAAAC,EAAA,CAAA;CAAC,MAAA,EAAAC,OAAAC,OAAAC,QAAAC,aAAAN;CAUxB,IAAAO;CAAA,IAAAN,EAAA,OAAAI,UAAAJ,EAAA,OAAAG,SAAAH,EAAA,OAAAE,OAAA;EAEII,KAAAJ,SAAS,QAAQE,UAAU,OAC1B,qBAAA,OAAA;GAAe,WAAA;aAAf,CACE,qBAAA,MAAA;IAAc,WAAA;cAAd,CACGF,OACAC,SAAS,OACR,oBAAA,QAAA;KAAgB,WAAA;eACbA;IACI,CAAA,IAHR,IAKE;OACJC,MACG;OAXP;EAYOJ,EAAA,KAAAI;EAAAJ,EAAA,KAAAG;EAAAH,EAAA,KAAAE;EAAAF,EAAA,KAAAM;CAAA,OAAAA,KAAAN,EAAA;CAAA,IAAAO;CAAA,IAAAP,EAAA,OAAAK,YAAAL,EAAA,OAAAM,IAAA;EAbVC,KAAA,qBAAA,WAAA;GAAmB,WAAA;aAAnB,CACGD,IAaAD,QACO;;EAAAL,EAAA,KAAAK;EAAAL,EAAA,KAAAM;EAAAN,EAAA,KAAAO;CAAA,OAAAA,KAAAP,EAAA;CAAA,OAfVO;AAeU"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
//#region src/views/ui/JSONTree.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* Recursive JSON view. `compact` fits tool rows; copy always provides formatted JSON.
|
|
4
|
+
*/
|
|
5
|
+
declare const JSONTree: ({
|
|
6
|
+
value,
|
|
7
|
+
openDepth,
|
|
8
|
+
compact
|
|
9
|
+
}: {
|
|
10
|
+
value: unknown;
|
|
11
|
+
openDepth?: number;
|
|
12
|
+
compact?: boolean;
|
|
13
|
+
}) => import("react").JSX.Element;
|
|
14
|
+
//#endregion
|
|
15
|
+
export { JSONTree };
|
|
16
|
+
//# sourceMappingURL=JSONTree.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JSONTree.d.ts","names":[],"sources":["../../../src/views/ui/JSONTree.tsx"],"mappings":";;AA6MA;;cAAa,QAAA;EAAY,KAAA;EAAA,SAAA;EAAA;AAAA;EAKvB,KAAA;EACA,SAAA;EACA,OAAA;AAAA,sBACD,GAAA,CAAA,OAAA"}
|