@base44/superagent-native 0.0.1
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 +132 -0
- package/lib/commonjs/AgentSettingsPanel.js +1067 -0
- package/lib/commonjs/AgentSettingsPanel.js.map +1 -0
- package/lib/commonjs/AgentSphereIcon.js +243 -0
- package/lib/commonjs/AgentSphereIcon.js.map +1 -0
- package/lib/commonjs/AttachmentPickerStatusModal.js +96 -0
- package/lib/commonjs/AttachmentPickerStatusModal.js.map +1 -0
- package/lib/commonjs/AttachmentPreviewStrip.js +49 -0
- package/lib/commonjs/AttachmentPreviewStrip.js.map +1 -0
- package/lib/commonjs/ChannelsPanel.js +733 -0
- package/lib/commonjs/ChannelsPanel.js.map +1 -0
- package/lib/commonjs/ConversationChat.js +219 -0
- package/lib/commonjs/ConversationChat.js.map +1 -0
- package/lib/commonjs/ConversationComposer.js +323 -0
- package/lib/commonjs/ConversationComposer.js.map +1 -0
- package/lib/commonjs/ConversationMessageList.js +105 -0
- package/lib/commonjs/ConversationMessageList.js.map +1 -0
- package/lib/commonjs/ConversationScreen.js +241 -0
- package/lib/commonjs/ConversationScreen.js.map +1 -0
- package/lib/commonjs/EditorDrawer.js +1127 -0
- package/lib/commonjs/EditorDrawer.js.map +1 -0
- package/lib/commonjs/EditorTabPanel.js +28 -0
- package/lib/commonjs/EditorTabPanel.js.map +1 -0
- package/lib/commonjs/FilesPanel.js +533 -0
- package/lib/commonjs/FilesPanel.js.map +1 -0
- package/lib/commonjs/MarkdownText.js +313 -0
- package/lib/commonjs/MarkdownText.js.map +1 -0
- package/lib/commonjs/MessageActionBar.js +90 -0
- package/lib/commonjs/MessageActionBar.js.map +1 -0
- package/lib/commonjs/RenameAgentModal.js +99 -0
- package/lib/commonjs/RenameAgentModal.js.map +1 -0
- package/lib/commonjs/ShareAgentModal.js +349 -0
- package/lib/commonjs/ShareAgentModal.js.map +1 -0
- package/lib/commonjs/ShareAgentModal.styles.js +236 -0
- package/lib/commonjs/ShareAgentModal.styles.js.map +1 -0
- package/lib/commonjs/SuperagentHomeScreen.js +316 -0
- package/lib/commonjs/SuperagentHomeScreen.js.map +1 -0
- package/lib/commonjs/ToolApprovalCard.js +542 -0
- package/lib/commonjs/ToolApprovalCard.js.map +1 -0
- package/lib/commonjs/ToolCallSummary.js +632 -0
- package/lib/commonjs/ToolCallSummary.js.map +1 -0
- package/lib/commonjs/agentSphereStyles.js +38 -0
- package/lib/commonjs/agentSphereStyles.js.map +1 -0
- package/lib/commonjs/apiClient.js +158 -0
- package/lib/commonjs/apiClient.js.map +1 -0
- package/lib/commonjs/attachmentFileHelpers.js +104 -0
- package/lib/commonjs/attachmentFileHelpers.js.map +1 -0
- package/lib/commonjs/attachmentUpload.js +87 -0
- package/lib/commonjs/attachmentUpload.js.map +1 -0
- package/lib/commonjs/composerStyles.js +248 -0
- package/lib/commonjs/composerStyles.js.map +1 -0
- package/lib/commonjs/connectorBrandIcons.js +82 -0
- package/lib/commonjs/connectorBrandIcons.js.map +1 -0
- package/lib/commonjs/connectorCatalog.js +377 -0
- package/lib/commonjs/connectorCatalog.js.map +1 -0
- package/lib/commonjs/constants.js +15 -0
- package/lib/commonjs/constants.js.map +1 -0
- package/lib/commonjs/conversationParts.js +273 -0
- package/lib/commonjs/conversationParts.js.map +1 -0
- package/lib/commonjs/conversationRuntime.js +144 -0
- package/lib/commonjs/conversationRuntime.js.map +1 -0
- package/lib/commonjs/conversationStyles.js +758 -0
- package/lib/commonjs/conversationStyles.js.map +1 -0
- package/lib/commonjs/editorShellStyles.js +1032 -0
- package/lib/commonjs/editorShellStyles.js.map +1 -0
- package/lib/commonjs/editorTabs.js +42 -0
- package/lib/commonjs/editorTabs.js.map +1 -0
- package/lib/commonjs/fileTreeUtils.js +133 -0
- package/lib/commonjs/fileTreeUtils.js.map +1 -0
- package/lib/commonjs/index.js +110 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/markdownStyles.js +157 -0
- package/lib/commonjs/markdownStyles.js.map +1 -0
- package/lib/commonjs/mediaUtils.js +61 -0
- package/lib/commonjs/mediaUtils.js.map +1 -0
- package/lib/commonjs/messageActionStyles.js +45 -0
- package/lib/commonjs/messageActionStyles.js.map +1 -0
- package/lib/commonjs/messageUtils.js +55 -0
- package/lib/commonjs/messageUtils.js.map +1 -0
- package/lib/commonjs/nativeActionSheet.js +21 -0
- package/lib/commonjs/nativeActionSheet.js.map +1 -0
- package/lib/commonjs/nativeActionSheet.web.js +10 -0
- package/lib/commonjs/nativeActionSheet.web.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/paperTheme.js +59 -0
- package/lib/commonjs/paperTheme.js.map +1 -0
- package/lib/commonjs/realtimeClient.js +99 -0
- package/lib/commonjs/realtimeClient.js.map +1 -0
- package/lib/commonjs/renameAgentModalStyles.js +83 -0
- package/lib/commonjs/renameAgentModalStyles.js.map +1 -0
- package/lib/commonjs/screenParts.js +220 -0
- package/lib/commonjs/screenParts.js.map +1 -0
- package/lib/commonjs/styles.js +343 -0
- package/lib/commonjs/styles.js.map +1 -0
- package/lib/commonjs/superagentApiClient.js +613 -0
- package/lib/commonjs/superagentApiClient.js.map +1 -0
- package/lib/commonjs/types.js +6 -0
- package/lib/commonjs/types.js.map +1 -0
- package/lib/commonjs/useSuperagentAttachmentPicker.js +80 -0
- package/lib/commonjs/useSuperagentAttachmentPicker.js.map +1 -0
- package/lib/commonjs/useSuperagentConversation.js +216 -0
- package/lib/commonjs/useSuperagentConversation.js.map +1 -0
- package/lib/commonjs/useSuperagentRuntime.js +1207 -0
- package/lib/commonjs/useSuperagentRuntime.js.map +1 -0
- package/lib/module/AgentSettingsPanel.js +1062 -0
- package/lib/module/AgentSettingsPanel.js.map +1 -0
- package/lib/module/AgentSphereIcon.js +237 -0
- package/lib/module/AgentSphereIcon.js.map +1 -0
- package/lib/module/AttachmentPickerStatusModal.js +91 -0
- package/lib/module/AttachmentPickerStatusModal.js.map +1 -0
- package/lib/module/AttachmentPreviewStrip.js +44 -0
- package/lib/module/AttachmentPreviewStrip.js.map +1 -0
- package/lib/module/ChannelsPanel.js +728 -0
- package/lib/module/ChannelsPanel.js.map +1 -0
- package/lib/module/ConversationChat.js +214 -0
- package/lib/module/ConversationChat.js.map +1 -0
- package/lib/module/ConversationComposer.js +318 -0
- package/lib/module/ConversationComposer.js.map +1 -0
- package/lib/module/ConversationMessageList.js +100 -0
- package/lib/module/ConversationMessageList.js.map +1 -0
- package/lib/module/ConversationScreen.js +236 -0
- package/lib/module/ConversationScreen.js.map +1 -0
- package/lib/module/EditorDrawer.js +1122 -0
- package/lib/module/EditorDrawer.js.map +1 -0
- package/lib/module/EditorTabPanel.js +23 -0
- package/lib/module/EditorTabPanel.js.map +1 -0
- package/lib/module/FilesPanel.js +528 -0
- package/lib/module/FilesPanel.js.map +1 -0
- package/lib/module/MarkdownText.js +308 -0
- package/lib/module/MarkdownText.js.map +1 -0
- package/lib/module/MessageActionBar.js +85 -0
- package/lib/module/MessageActionBar.js.map +1 -0
- package/lib/module/RenameAgentModal.js +94 -0
- package/lib/module/RenameAgentModal.js.map +1 -0
- package/lib/module/ShareAgentModal.js +344 -0
- package/lib/module/ShareAgentModal.js.map +1 -0
- package/lib/module/ShareAgentModal.styles.js +232 -0
- package/lib/module/ShareAgentModal.styles.js.map +1 -0
- package/lib/module/SuperagentHomeScreen.js +311 -0
- package/lib/module/SuperagentHomeScreen.js.map +1 -0
- package/lib/module/ToolApprovalCard.js +537 -0
- package/lib/module/ToolApprovalCard.js.map +1 -0
- package/lib/module/ToolCallSummary.js +627 -0
- package/lib/module/ToolCallSummary.js.map +1 -0
- package/lib/module/agentSphereStyles.js +34 -0
- package/lib/module/agentSphereStyles.js.map +1 -0
- package/lib/module/apiClient.js +154 -0
- package/lib/module/apiClient.js.map +1 -0
- package/lib/module/attachmentFileHelpers.js +97 -0
- package/lib/module/attachmentFileHelpers.js.map +1 -0
- package/lib/module/attachmentUpload.js +82 -0
- package/lib/module/attachmentUpload.js.map +1 -0
- package/lib/module/composerStyles.js +244 -0
- package/lib/module/composerStyles.js.map +1 -0
- package/lib/module/connectorBrandIcons.js +76 -0
- package/lib/module/connectorBrandIcons.js.map +1 -0
- package/lib/module/connectorCatalog.js +373 -0
- package/lib/module/connectorCatalog.js.map +1 -0
- package/lib/module/constants.js +10 -0
- package/lib/module/constants.js.map +1 -0
- package/lib/module/conversationParts.js +266 -0
- package/lib/module/conversationParts.js.map +1 -0
- package/lib/module/conversationRuntime.js +129 -0
- package/lib/module/conversationRuntime.js.map +1 -0
- package/lib/module/conversationStyles.js +754 -0
- package/lib/module/conversationStyles.js.map +1 -0
- package/lib/module/editorShellStyles.js +1028 -0
- package/lib/module/editorShellStyles.js.map +1 -0
- package/lib/module/editorTabs.js +37 -0
- package/lib/module/editorTabs.js.map +1 -0
- package/lib/module/fileTreeUtils.js +120 -0
- package/lib/module/fileTreeUtils.js.map +1 -0
- package/lib/module/index.js +17 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/markdownStyles.js +153 -0
- package/lib/module/markdownStyles.js.map +1 -0
- package/lib/module/mediaUtils.js +53 -0
- package/lib/module/mediaUtils.js.map +1 -0
- package/lib/module/messageActionStyles.js +41 -0
- package/lib/module/messageActionStyles.js.map +1 -0
- package/lib/module/messageUtils.js +46 -0
- package/lib/module/messageUtils.js.map +1 -0
- package/lib/module/nativeActionSheet.js +17 -0
- package/lib/module/nativeActionSheet.js.map +1 -0
- package/lib/module/nativeActionSheet.web.js +6 -0
- package/lib/module/nativeActionSheet.web.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/module/paperTheme.js +55 -0
- package/lib/module/paperTheme.js.map +1 -0
- package/lib/module/realtimeClient.js +95 -0
- package/lib/module/realtimeClient.js.map +1 -0
- package/lib/module/renameAgentModalStyles.js +79 -0
- package/lib/module/renameAgentModalStyles.js.map +1 -0
- package/lib/module/screenParts.js +210 -0
- package/lib/module/screenParts.js.map +1 -0
- package/lib/module/styles.js +339 -0
- package/lib/module/styles.js.map +1 -0
- package/lib/module/superagentApiClient.js +609 -0
- package/lib/module/superagentApiClient.js.map +1 -0
- package/lib/module/types.js +4 -0
- package/lib/module/types.js.map +1 -0
- package/lib/module/useSuperagentAttachmentPicker.js +75 -0
- package/lib/module/useSuperagentAttachmentPicker.js.map +1 -0
- package/lib/module/useSuperagentConversation.js +212 -0
- package/lib/module/useSuperagentConversation.js.map +1 -0
- package/lib/module/useSuperagentRuntime.js +1203 -0
- package/lib/module/useSuperagentRuntime.js.map +1 -0
- package/lib/typescript/commonjs/AgentSettingsPanel.d.ts +19 -0
- package/lib/typescript/commonjs/AgentSettingsPanel.d.ts.map +1 -0
- package/lib/typescript/commonjs/AgentSphereIcon.d.ts +15 -0
- package/lib/typescript/commonjs/AgentSphereIcon.d.ts.map +1 -0
- package/lib/typescript/commonjs/AttachmentPickerStatusModal.d.ts +8 -0
- package/lib/typescript/commonjs/AttachmentPickerStatusModal.d.ts.map +1 -0
- package/lib/typescript/commonjs/AttachmentPreviewStrip.d.ts +7 -0
- package/lib/typescript/commonjs/AttachmentPreviewStrip.d.ts.map +1 -0
- package/lib/typescript/commonjs/ChannelsPanel.d.ts +21 -0
- package/lib/typescript/commonjs/ChannelsPanel.d.ts.map +1 -0
- package/lib/typescript/commonjs/ConversationChat.d.ts +22 -0
- package/lib/typescript/commonjs/ConversationChat.d.ts.map +1 -0
- package/lib/typescript/commonjs/ConversationComposer.d.ts +24 -0
- package/lib/typescript/commonjs/ConversationComposer.d.ts.map +1 -0
- package/lib/typescript/commonjs/ConversationMessageList.d.ts +17 -0
- package/lib/typescript/commonjs/ConversationMessageList.d.ts.map +1 -0
- package/lib/typescript/commonjs/ConversationScreen.d.ts +80 -0
- package/lib/typescript/commonjs/ConversationScreen.d.ts.map +1 -0
- package/lib/typescript/commonjs/EditorDrawer.d.ts +67 -0
- package/lib/typescript/commonjs/EditorDrawer.d.ts.map +1 -0
- package/lib/typescript/commonjs/EditorTabPanel.d.ts +6 -0
- package/lib/typescript/commonjs/EditorTabPanel.d.ts.map +1 -0
- package/lib/typescript/commonjs/FilesPanel.d.ts +14 -0
- package/lib/typescript/commonjs/FilesPanel.d.ts.map +1 -0
- package/lib/typescript/commonjs/MarkdownText.d.ts +10 -0
- package/lib/typescript/commonjs/MarkdownText.d.ts.map +1 -0
- package/lib/typescript/commonjs/MessageActionBar.d.ts +8 -0
- package/lib/typescript/commonjs/MessageActionBar.d.ts.map +1 -0
- package/lib/typescript/commonjs/RenameAgentModal.d.ts +10 -0
- package/lib/typescript/commonjs/RenameAgentModal.d.ts.map +1 -0
- package/lib/typescript/commonjs/ShareAgentModal.d.ts +15 -0
- package/lib/typescript/commonjs/ShareAgentModal.d.ts.map +1 -0
- package/lib/typescript/commonjs/ShareAgentModal.styles.d.ts +229 -0
- package/lib/typescript/commonjs/ShareAgentModal.styles.d.ts.map +1 -0
- package/lib/typescript/commonjs/SuperagentHomeScreen.d.ts +4 -0
- package/lib/typescript/commonjs/SuperagentHomeScreen.d.ts.map +1 -0
- package/lib/typescript/commonjs/ToolApprovalCard.d.ts +13 -0
- package/lib/typescript/commonjs/ToolApprovalCard.d.ts.map +1 -0
- package/lib/typescript/commonjs/ToolCallSummary.d.ts +16 -0
- package/lib/typescript/commonjs/ToolCallSummary.d.ts.map +1 -0
- package/lib/typescript/commonjs/agentSphereStyles.d.ts +31 -0
- package/lib/typescript/commonjs/agentSphereStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/apiClient.d.ts +4 -0
- package/lib/typescript/commonjs/apiClient.d.ts.map +1 -0
- package/lib/typescript/commonjs/attachmentFileHelpers.d.ts +6 -0
- package/lib/typescript/commonjs/attachmentFileHelpers.d.ts.map +1 -0
- package/lib/typescript/commonjs/attachmentUpload.d.ts +12 -0
- package/lib/typescript/commonjs/attachmentUpload.d.ts.map +1 -0
- package/lib/typescript/commonjs/composerStyles.d.ts +241 -0
- package/lib/typescript/commonjs/composerStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/connectorBrandIcons.d.ts +7 -0
- package/lib/typescript/commonjs/connectorBrandIcons.d.ts.map +1 -0
- package/lib/typescript/commonjs/connectorCatalog.d.ts +3 -0
- package/lib/typescript/commonjs/connectorCatalog.d.ts.map +1 -0
- package/lib/typescript/commonjs/constants.d.ts +4 -0
- package/lib/typescript/commonjs/constants.d.ts.map +1 -0
- package/lib/typescript/commonjs/conversationParts.d.ts +29 -0
- package/lib/typescript/commonjs/conversationParts.d.ts.map +1 -0
- package/lib/typescript/commonjs/conversationRuntime.d.ts +67 -0
- package/lib/typescript/commonjs/conversationRuntime.d.ts.map +1 -0
- package/lib/typescript/commonjs/conversationStyles.d.ts +742 -0
- package/lib/typescript/commonjs/conversationStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/editorShellStyles.d.ts +1025 -0
- package/lib/typescript/commonjs/editorShellStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/editorTabs.d.ts +11 -0
- package/lib/typescript/commonjs/editorTabs.d.ts.map +1 -0
- package/lib/typescript/commonjs/fileTreeUtils.d.ts +17 -0
- package/lib/typescript/commonjs/fileTreeUtils.d.ts.map +1 -0
- package/lib/typescript/commonjs/index.d.ts +20 -0
- package/lib/typescript/commonjs/index.d.ts.map +1 -0
- package/lib/typescript/commonjs/markdownStyles.d.ts +150 -0
- package/lib/typescript/commonjs/markdownStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/mediaUtils.d.ts +9 -0
- package/lib/typescript/commonjs/mediaUtils.d.ts.map +1 -0
- package/lib/typescript/commonjs/messageActionStyles.d.ts +38 -0
- package/lib/typescript/commonjs/messageActionStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/messageUtils.d.ts +8 -0
- package/lib/typescript/commonjs/messageUtils.d.ts.map +1 -0
- package/lib/typescript/commonjs/nativeActionSheet.d.ts +6 -0
- package/lib/typescript/commonjs/nativeActionSheet.d.ts.map +1 -0
- package/lib/typescript/commonjs/nativeActionSheet.web.d.ts +3 -0
- package/lib/typescript/commonjs/nativeActionSheet.web.d.ts.map +1 -0
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/paperTheme.d.ts +3 -0
- package/lib/typescript/commonjs/paperTheme.d.ts.map +1 -0
- package/lib/typescript/commonjs/realtimeClient.d.ts +16 -0
- package/lib/typescript/commonjs/realtimeClient.d.ts.map +1 -0
- package/lib/typescript/commonjs/renameAgentModalStyles.d.ts +76 -0
- package/lib/typescript/commonjs/renameAgentModalStyles.d.ts.map +1 -0
- package/lib/typescript/commonjs/screenParts.d.ts +31 -0
- package/lib/typescript/commonjs/screenParts.d.ts.map +1 -0
- package/lib/typescript/commonjs/styles.d.ts +336 -0
- package/lib/typescript/commonjs/styles.d.ts.map +1 -0
- package/lib/typescript/commonjs/superagentApiClient.d.ts +66 -0
- package/lib/typescript/commonjs/superagentApiClient.d.ts.map +1 -0
- package/lib/typescript/commonjs/types.d.ts +437 -0
- package/lib/typescript/commonjs/types.d.ts.map +1 -0
- package/lib/typescript/commonjs/useSuperagentAttachmentPicker.d.ts +30 -0
- package/lib/typescript/commonjs/useSuperagentAttachmentPicker.d.ts.map +1 -0
- package/lib/typescript/commonjs/useSuperagentConversation.d.ts +36 -0
- package/lib/typescript/commonjs/useSuperagentConversation.d.ts.map +1 -0
- package/lib/typescript/commonjs/useSuperagentRuntime.d.ts +163 -0
- package/lib/typescript/commonjs/useSuperagentRuntime.d.ts.map +1 -0
- package/lib/typescript/module/AgentSettingsPanel.d.ts +19 -0
- package/lib/typescript/module/AgentSettingsPanel.d.ts.map +1 -0
- package/lib/typescript/module/AgentSphereIcon.d.ts +15 -0
- package/lib/typescript/module/AgentSphereIcon.d.ts.map +1 -0
- package/lib/typescript/module/AttachmentPickerStatusModal.d.ts +8 -0
- package/lib/typescript/module/AttachmentPickerStatusModal.d.ts.map +1 -0
- package/lib/typescript/module/AttachmentPreviewStrip.d.ts +7 -0
- package/lib/typescript/module/AttachmentPreviewStrip.d.ts.map +1 -0
- package/lib/typescript/module/ChannelsPanel.d.ts +21 -0
- package/lib/typescript/module/ChannelsPanel.d.ts.map +1 -0
- package/lib/typescript/module/ConversationChat.d.ts +22 -0
- package/lib/typescript/module/ConversationChat.d.ts.map +1 -0
- package/lib/typescript/module/ConversationComposer.d.ts +24 -0
- package/lib/typescript/module/ConversationComposer.d.ts.map +1 -0
- package/lib/typescript/module/ConversationMessageList.d.ts +17 -0
- package/lib/typescript/module/ConversationMessageList.d.ts.map +1 -0
- package/lib/typescript/module/ConversationScreen.d.ts +80 -0
- package/lib/typescript/module/ConversationScreen.d.ts.map +1 -0
- package/lib/typescript/module/EditorDrawer.d.ts +67 -0
- package/lib/typescript/module/EditorDrawer.d.ts.map +1 -0
- package/lib/typescript/module/EditorTabPanel.d.ts +6 -0
- package/lib/typescript/module/EditorTabPanel.d.ts.map +1 -0
- package/lib/typescript/module/FilesPanel.d.ts +14 -0
- package/lib/typescript/module/FilesPanel.d.ts.map +1 -0
- package/lib/typescript/module/MarkdownText.d.ts +10 -0
- package/lib/typescript/module/MarkdownText.d.ts.map +1 -0
- package/lib/typescript/module/MessageActionBar.d.ts +8 -0
- package/lib/typescript/module/MessageActionBar.d.ts.map +1 -0
- package/lib/typescript/module/RenameAgentModal.d.ts +10 -0
- package/lib/typescript/module/RenameAgentModal.d.ts.map +1 -0
- package/lib/typescript/module/ShareAgentModal.d.ts +15 -0
- package/lib/typescript/module/ShareAgentModal.d.ts.map +1 -0
- package/lib/typescript/module/ShareAgentModal.styles.d.ts +229 -0
- package/lib/typescript/module/ShareAgentModal.styles.d.ts.map +1 -0
- package/lib/typescript/module/SuperagentHomeScreen.d.ts +4 -0
- package/lib/typescript/module/SuperagentHomeScreen.d.ts.map +1 -0
- package/lib/typescript/module/ToolApprovalCard.d.ts +13 -0
- package/lib/typescript/module/ToolApprovalCard.d.ts.map +1 -0
- package/lib/typescript/module/ToolCallSummary.d.ts +16 -0
- package/lib/typescript/module/ToolCallSummary.d.ts.map +1 -0
- package/lib/typescript/module/agentSphereStyles.d.ts +31 -0
- package/lib/typescript/module/agentSphereStyles.d.ts.map +1 -0
- package/lib/typescript/module/apiClient.d.ts +4 -0
- package/lib/typescript/module/apiClient.d.ts.map +1 -0
- package/lib/typescript/module/attachmentFileHelpers.d.ts +6 -0
- package/lib/typescript/module/attachmentFileHelpers.d.ts.map +1 -0
- package/lib/typescript/module/attachmentUpload.d.ts +12 -0
- package/lib/typescript/module/attachmentUpload.d.ts.map +1 -0
- package/lib/typescript/module/composerStyles.d.ts +241 -0
- package/lib/typescript/module/composerStyles.d.ts.map +1 -0
- package/lib/typescript/module/connectorBrandIcons.d.ts +7 -0
- package/lib/typescript/module/connectorBrandIcons.d.ts.map +1 -0
- package/lib/typescript/module/connectorCatalog.d.ts +3 -0
- package/lib/typescript/module/connectorCatalog.d.ts.map +1 -0
- package/lib/typescript/module/constants.d.ts +4 -0
- package/lib/typescript/module/constants.d.ts.map +1 -0
- package/lib/typescript/module/conversationParts.d.ts +29 -0
- package/lib/typescript/module/conversationParts.d.ts.map +1 -0
- package/lib/typescript/module/conversationRuntime.d.ts +67 -0
- package/lib/typescript/module/conversationRuntime.d.ts.map +1 -0
- package/lib/typescript/module/conversationStyles.d.ts +742 -0
- package/lib/typescript/module/conversationStyles.d.ts.map +1 -0
- package/lib/typescript/module/editorShellStyles.d.ts +1025 -0
- package/lib/typescript/module/editorShellStyles.d.ts.map +1 -0
- package/lib/typescript/module/editorTabs.d.ts +11 -0
- package/lib/typescript/module/editorTabs.d.ts.map +1 -0
- package/lib/typescript/module/fileTreeUtils.d.ts +17 -0
- package/lib/typescript/module/fileTreeUtils.d.ts.map +1 -0
- package/lib/typescript/module/index.d.ts +20 -0
- package/lib/typescript/module/index.d.ts.map +1 -0
- package/lib/typescript/module/markdownStyles.d.ts +150 -0
- package/lib/typescript/module/markdownStyles.d.ts.map +1 -0
- package/lib/typescript/module/mediaUtils.d.ts +9 -0
- package/lib/typescript/module/mediaUtils.d.ts.map +1 -0
- package/lib/typescript/module/messageActionStyles.d.ts +38 -0
- package/lib/typescript/module/messageActionStyles.d.ts.map +1 -0
- package/lib/typescript/module/messageUtils.d.ts +8 -0
- package/lib/typescript/module/messageUtils.d.ts.map +1 -0
- package/lib/typescript/module/nativeActionSheet.d.ts +6 -0
- package/lib/typescript/module/nativeActionSheet.d.ts.map +1 -0
- package/lib/typescript/module/nativeActionSheet.web.d.ts +3 -0
- package/lib/typescript/module/nativeActionSheet.web.d.ts.map +1 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/paperTheme.d.ts +3 -0
- package/lib/typescript/module/paperTheme.d.ts.map +1 -0
- package/lib/typescript/module/realtimeClient.d.ts +16 -0
- package/lib/typescript/module/realtimeClient.d.ts.map +1 -0
- package/lib/typescript/module/renameAgentModalStyles.d.ts +76 -0
- package/lib/typescript/module/renameAgentModalStyles.d.ts.map +1 -0
- package/lib/typescript/module/screenParts.d.ts +31 -0
- package/lib/typescript/module/screenParts.d.ts.map +1 -0
- package/lib/typescript/module/styles.d.ts +336 -0
- package/lib/typescript/module/styles.d.ts.map +1 -0
- package/lib/typescript/module/superagentApiClient.d.ts +66 -0
- package/lib/typescript/module/superagentApiClient.d.ts.map +1 -0
- package/lib/typescript/module/types.d.ts +437 -0
- package/lib/typescript/module/types.d.ts.map +1 -0
- package/lib/typescript/module/useSuperagentAttachmentPicker.d.ts +30 -0
- package/lib/typescript/module/useSuperagentAttachmentPicker.d.ts.map +1 -0
- package/lib/typescript/module/useSuperagentConversation.d.ts +36 -0
- package/lib/typescript/module/useSuperagentConversation.d.ts.map +1 -0
- package/lib/typescript/module/useSuperagentRuntime.d.ts +163 -0
- package/lib/typescript/module/useSuperagentRuntime.d.ts.map +1 -0
- package/package.json +87 -0
- package/src/AgentSettingsPanel.tsx +1122 -0
- package/src/AgentSphereIcon.tsx +170 -0
- package/src/AttachmentPickerStatusModal.tsx +80 -0
- package/src/AttachmentPreviewStrip.tsx +38 -0
- package/src/ChannelsPanel.tsx +705 -0
- package/src/ConversationChat.tsx +245 -0
- package/src/ConversationComposer.tsx +368 -0
- package/src/ConversationMessageList.tsx +140 -0
- package/src/ConversationScreen.tsx +320 -0
- package/src/EditorDrawer.tsx +1297 -0
- package/src/EditorTabPanel.tsx +19 -0
- package/src/FilesPanel.tsx +577 -0
- package/src/MarkdownText.tsx +317 -0
- package/src/MessageActionBar.tsx +126 -0
- package/src/RenameAgentModal.tsx +107 -0
- package/src/ShareAgentModal.styles.ts +95 -0
- package/src/ShareAgentModal.tsx +320 -0
- package/src/SuperagentHomeScreen.tsx +318 -0
- package/src/ToolApprovalCard.tsx +592 -0
- package/src/ToolCallSummary.tsx +599 -0
- package/src/agentSphereStyles.ts +25 -0
- package/src/apiClient.ts +189 -0
- package/src/attachmentFileHelpers.ts +109 -0
- package/src/attachmentUpload.ts +112 -0
- package/src/composerStyles.ts +167 -0
- package/src/connectorBrandIcons.tsx +69 -0
- package/src/connectorCatalog.ts +414 -0
- package/src/constants.ts +9 -0
- package/src/conversationParts.tsx +307 -0
- package/src/conversationRuntime.ts +171 -0
- package/src/conversationStyles.ts +412 -0
- package/src/editorShellStyles.ts +1023 -0
- package/src/editorTabs.ts +26 -0
- package/src/fileTreeUtils.ts +165 -0
- package/src/index.ts +110 -0
- package/src/markdownStyles.ts +64 -0
- package/src/mediaUtils.ts +75 -0
- package/src/messageActionStyles.ts +26 -0
- package/src/messageUtils.ts +58 -0
- package/src/nativeActionSheet.ts +25 -0
- package/src/nativeActionSheet.web.ts +5 -0
- package/src/paperTheme.ts +52 -0
- package/src/realtimeClient.ts +149 -0
- package/src/renameAgentModalStyles.ts +77 -0
- package/src/screenParts.tsx +185 -0
- package/src/styles.ts +190 -0
- package/src/superagentApiClient.ts +895 -0
- package/src/types.ts +514 -0
- package/src/useSuperagentAttachmentPicker.tsx +117 -0
- package/src/useSuperagentConversation.ts +242 -0
- package/src/useSuperagentRuntime.ts +1371 -0
|
@@ -0,0 +1,412 @@
|
|
|
1
|
+
import { Platform, StyleSheet } from 'react-native';
|
|
2
|
+
|
|
3
|
+
export const conversationStyles = StyleSheet.create({
|
|
4
|
+
safeArea: { flex: 1, backgroundColor: '#000000' },
|
|
5
|
+
keyboard: { flex: 1 },
|
|
6
|
+
header: {
|
|
7
|
+
alignItems: 'center',
|
|
8
|
+
backgroundColor: '#000000',
|
|
9
|
+
flexDirection: 'row',
|
|
10
|
+
minHeight: 62,
|
|
11
|
+
paddingBottom: 6,
|
|
12
|
+
paddingHorizontal: 16,
|
|
13
|
+
paddingTop: 4,
|
|
14
|
+
},
|
|
15
|
+
headerIconButton: {
|
|
16
|
+
alignItems: 'center',
|
|
17
|
+
backgroundColor: '#171717',
|
|
18
|
+
borderColor: '#2A2A2A',
|
|
19
|
+
borderRadius: 24,
|
|
20
|
+
borderWidth: 1,
|
|
21
|
+
height: 48,
|
|
22
|
+
justifyContent: 'center',
|
|
23
|
+
width: 48,
|
|
24
|
+
},
|
|
25
|
+
headerTitleWrap: { alignItems: 'center', flex: 1, flexDirection: 'row', justifyContent: 'center', marginHorizontal: 10, minWidth: 0 },
|
|
26
|
+
headerTitleTextWrap: { flexShrink: 1, marginLeft: 9, minWidth: 0 },
|
|
27
|
+
headerTitle: { color: '#F7F7F7', fontSize: 16, fontWeight: '800', maxWidth: '100%', textAlign: 'left' },
|
|
28
|
+
headerSubtitle: { color: '#8E8E93', fontSize: 12, marginTop: 2, maxWidth: '100%', textAlign: 'left' },
|
|
29
|
+
headerActions: { alignItems: 'center', flexDirection: 'row', gap: 8 },
|
|
30
|
+
headerMenuButton: {
|
|
31
|
+
alignItems: 'center',
|
|
32
|
+
backgroundColor: '#171717',
|
|
33
|
+
borderColor: '#2A2A2A',
|
|
34
|
+
borderRadius: 24,
|
|
35
|
+
borderWidth: 1,
|
|
36
|
+
height: 48,
|
|
37
|
+
justifyContent: 'center',
|
|
38
|
+
minWidth: 64,
|
|
39
|
+
paddingHorizontal: 16,
|
|
40
|
+
},
|
|
41
|
+
headerShareButton: {
|
|
42
|
+
alignItems: 'center',
|
|
43
|
+
backgroundColor: '#171717',
|
|
44
|
+
borderColor: '#2A2A2A',
|
|
45
|
+
borderRadius: 24,
|
|
46
|
+
borderWidth: 1,
|
|
47
|
+
height: 48,
|
|
48
|
+
justifyContent: 'center',
|
|
49
|
+
width: 48,
|
|
50
|
+
},
|
|
51
|
+
scrollContent: {
|
|
52
|
+
flexGrow: 1,
|
|
53
|
+
justifyContent: 'flex-end',
|
|
54
|
+
paddingHorizontal: 2,
|
|
55
|
+
paddingTop: 8,
|
|
56
|
+
},
|
|
57
|
+
messagesContainer: {
|
|
58
|
+
alignSelf: 'center',
|
|
59
|
+
flexGrow: 1,
|
|
60
|
+
justifyContent: 'flex-end',
|
|
61
|
+
paddingBottom: 14,
|
|
62
|
+
width: '100%',
|
|
63
|
+
},
|
|
64
|
+
loadPreviousButton: {
|
|
65
|
+
alignSelf: 'center',
|
|
66
|
+
backgroundColor: '#151515',
|
|
67
|
+
borderColor: '#2A2A2A',
|
|
68
|
+
borderRadius: 18,
|
|
69
|
+
borderWidth: 1,
|
|
70
|
+
marginBottom: 14,
|
|
71
|
+
paddingHorizontal: 14,
|
|
72
|
+
paddingVertical: 8,
|
|
73
|
+
},
|
|
74
|
+
loadPreviousText: { color: '#BDBDC2', fontSize: 12, fontWeight: '700' },
|
|
75
|
+
statePanel: {
|
|
76
|
+
alignItems: 'center',
|
|
77
|
+
alignSelf: 'center',
|
|
78
|
+
backgroundColor: '#151515',
|
|
79
|
+
borderColor: '#2A2A2A',
|
|
80
|
+
borderRadius: 18,
|
|
81
|
+
borderWidth: 1,
|
|
82
|
+
flexDirection: 'row',
|
|
83
|
+
marginBottom: 14,
|
|
84
|
+
paddingHorizontal: 14,
|
|
85
|
+
paddingVertical: 10,
|
|
86
|
+
},
|
|
87
|
+
statePanelText: { color: '#BDBDC2', fontSize: 13, marginLeft: 8 },
|
|
88
|
+
errorPanel: {
|
|
89
|
+
alignSelf: 'center',
|
|
90
|
+
backgroundColor: '#241111',
|
|
91
|
+
borderColor: '#5F2424',
|
|
92
|
+
borderRadius: 16,
|
|
93
|
+
borderWidth: 1,
|
|
94
|
+
marginBottom: 14,
|
|
95
|
+
maxWidth: '96%',
|
|
96
|
+
padding: 14,
|
|
97
|
+
},
|
|
98
|
+
errorPanelTitle: { color: '#FCA5A5', fontSize: 14, fontWeight: '800' },
|
|
99
|
+
errorPanelText: { color: '#FECACA', fontSize: 13, lineHeight: 19, marginTop: 5 },
|
|
100
|
+
messageGroup: { marginBottom: 3, width: '100%' },
|
|
101
|
+
messageGroupWithAvatar: { marginTop: 20 },
|
|
102
|
+
userMessageGroup: { alignItems: 'flex-end' },
|
|
103
|
+
assistantMessageGroup: { alignItems: 'flex-start' },
|
|
104
|
+
messageRow: { alignItems: 'flex-start', flexDirection: 'row', width: '100%' },
|
|
105
|
+
messageRowReversed: { flexDirection: 'row-reverse' },
|
|
106
|
+
messageAvatarSlot: { alignItems: 'center', marginTop: 2, width: 28 },
|
|
107
|
+
messageAvatarSpacer: { height: 28, width: 28 },
|
|
108
|
+
messageContent: { flex: 1, minWidth: 0 },
|
|
109
|
+
assistantMessageContent: { paddingLeft: 20 },
|
|
110
|
+
userMessageContent: { alignItems: 'flex-end' },
|
|
111
|
+
messageBubbleWrap: { maxWidth: '96%', minWidth: 0 },
|
|
112
|
+
scrollableMessageBubbleWrap: { width: '100%' },
|
|
113
|
+
assistantMessageBubbleWrap: { alignSelf: 'flex-start', marginLeft: 4 },
|
|
114
|
+
userMessageBubbleWrap: { alignSelf: 'flex-end', marginRight: 4 },
|
|
115
|
+
messageBubble: { paddingBottom: 9, paddingTop: 4 },
|
|
116
|
+
userBubble: {
|
|
117
|
+
backgroundColor: '#171717',
|
|
118
|
+
borderColor: '#2A2A2A',
|
|
119
|
+
borderRadius: 20,
|
|
120
|
+
borderWidth: 1,
|
|
121
|
+
paddingHorizontal: 13,
|
|
122
|
+
paddingTop: 11,
|
|
123
|
+
},
|
|
124
|
+
assistantBubble: {
|
|
125
|
+
backgroundColor: 'transparent',
|
|
126
|
+
paddingHorizontal: 0,
|
|
127
|
+
},
|
|
128
|
+
userBubbleStacked: { borderTopRightRadius: 20 },
|
|
129
|
+
assistantBubbleStacked: { paddingTop: 0 },
|
|
130
|
+
messageTime: { color: '#73737A', fontSize: 12, marginTop: 9 },
|
|
131
|
+
dateSeparator: { alignItems: 'center', flexDirection: 'row', marginVertical: 14 },
|
|
132
|
+
dateSeparatorLine: { backgroundColor: '#242424', flex: 1, height: 1 },
|
|
133
|
+
dateSeparatorText: { color: '#8E8E93', fontSize: 12, fontWeight: '800', paddingHorizontal: 14 },
|
|
134
|
+
replyQuote: {
|
|
135
|
+
backgroundColor: '#111111',
|
|
136
|
+
borderLeftColor: '#3F3F46',
|
|
137
|
+
borderLeftWidth: 2,
|
|
138
|
+
borderRadius: 10,
|
|
139
|
+
marginBottom: 9,
|
|
140
|
+
paddingHorizontal: 10,
|
|
141
|
+
paddingVertical: 7,
|
|
142
|
+
},
|
|
143
|
+
replyQuoteText: { color: '#A1A1AA', fontSize: 13, lineHeight: 18 },
|
|
144
|
+
fileChipsWrap: { flexDirection: 'row', flexWrap: 'wrap', marginTop: 10 },
|
|
145
|
+
fileChip: {
|
|
146
|
+
backgroundColor: '#171717',
|
|
147
|
+
borderColor: '#2A2A2A',
|
|
148
|
+
borderRadius: 12,
|
|
149
|
+
borderWidth: 1,
|
|
150
|
+
marginRight: 6,
|
|
151
|
+
marginTop: 6,
|
|
152
|
+
maxWidth: 180,
|
|
153
|
+
paddingHorizontal: 10,
|
|
154
|
+
paddingVertical: 7,
|
|
155
|
+
},
|
|
156
|
+
fileChipText: { color: '#D4D4D8', fontSize: 12, fontWeight: '700' },
|
|
157
|
+
toolCallWrap: { marginTop: 12, width: '100%' },
|
|
158
|
+
toolCallSlot: { marginTop: 8, width: '100%' },
|
|
159
|
+
toolCallItem: {
|
|
160
|
+
backgroundColor: '#101010',
|
|
161
|
+
borderColor: '#29292E',
|
|
162
|
+
borderRadius: 13,
|
|
163
|
+
borderWidth: 1,
|
|
164
|
+
padding: 11,
|
|
165
|
+
},
|
|
166
|
+
customToolWidget: { width: '100%' },
|
|
167
|
+
toolCallHeader: { alignItems: 'center', flexDirection: 'row' },
|
|
168
|
+
toolCallIcon: { alignItems: 'center', height: 24, justifyContent: 'center', marginRight: 8, width: 24 },
|
|
169
|
+
toolCallMeta: { flex: 1, minWidth: 0 },
|
|
170
|
+
toolCallName: { color: '#E4E4E7', fontSize: 12, fontWeight: '800' },
|
|
171
|
+
toolCallStatus: { color: '#8E8E93', fontSize: 11, fontWeight: '700', marginTop: 2 },
|
|
172
|
+
toolCallResult: { color: '#A1A1AA', fontSize: 12, lineHeight: 17 },
|
|
173
|
+
toolCallResultBox: {
|
|
174
|
+
backgroundColor: '#080808',
|
|
175
|
+
borderColor: '#1F1F23',
|
|
176
|
+
borderRadius: 10,
|
|
177
|
+
borderWidth: 1,
|
|
178
|
+
marginTop: 9,
|
|
179
|
+
padding: 9,
|
|
180
|
+
},
|
|
181
|
+
toolTimelineHeader: {
|
|
182
|
+
alignItems: 'center',
|
|
183
|
+
alignSelf: 'flex-start',
|
|
184
|
+
flexDirection: 'row',
|
|
185
|
+
minHeight: 30,
|
|
186
|
+
paddingHorizontal: 3,
|
|
187
|
+
paddingVertical: 3,
|
|
188
|
+
},
|
|
189
|
+
toolTimelineHeaderText: { color: '#C7C7CC', fontSize: 13, fontWeight: '800' },
|
|
190
|
+
toolTimelineChevron: { marginLeft: 5 },
|
|
191
|
+
toolTimelineChevronOpen: { marginLeft: 5, transform: [{ rotate: '90deg' }] },
|
|
192
|
+
toolTimelineRows: { marginTop: 3 },
|
|
193
|
+
toolTimelineItem: { minHeight: 39, width: '100%' },
|
|
194
|
+
toolTimelineRow: { flexDirection: 'row', minHeight: 39 },
|
|
195
|
+
toolTimelineIconCol: { alignItems: 'center', width: 28 },
|
|
196
|
+
toolTimelineLine: { backgroundColor: '#3A3A3E', flex: 1, marginTop: 1, width: 1 },
|
|
197
|
+
toolTimelineMeta: { alignSelf: 'stretch', flex: 1, minWidth: 0, paddingBottom: 8 },
|
|
198
|
+
toolTimelineRowHeader: { alignItems: 'center', flexDirection: 'row', minHeight: 27, width: '100%' },
|
|
199
|
+
toolTimelineTitle: { color: '#F4F4F5', flexShrink: 1, fontSize: 15, fontWeight: '800' },
|
|
200
|
+
toolTimelineInline: {
|
|
201
|
+
color: '#A1A1AA',
|
|
202
|
+
flex: 1,
|
|
203
|
+
fontFamily: Platform.select({ android: 'monospace', ios: 'Menlo' }),
|
|
204
|
+
fontSize: 13,
|
|
205
|
+
fontWeight: '700',
|
|
206
|
+
marginLeft: 8,
|
|
207
|
+
},
|
|
208
|
+
toolTimelineStatus: { color: '#A1A1AA', fontSize: 13, fontWeight: '700', marginLeft: 20, marginTop: 1 },
|
|
209
|
+
toolTimelineDetailsSlot: {
|
|
210
|
+
alignSelf: 'stretch',
|
|
211
|
+
marginLeft: 8,
|
|
212
|
+
marginRight: 2,
|
|
213
|
+
paddingBottom: 10,
|
|
214
|
+
},
|
|
215
|
+
toolTimelineDetails: {
|
|
216
|
+
backgroundColor: '#070707',
|
|
217
|
+
borderColor: '#242429',
|
|
218
|
+
borderRadius: 11,
|
|
219
|
+
borderWidth: 1,
|
|
220
|
+
marginLeft: 0,
|
|
221
|
+
marginRight: 0,
|
|
222
|
+
marginTop: 8,
|
|
223
|
+
overflow: 'hidden',
|
|
224
|
+
paddingHorizontal: 0,
|
|
225
|
+
paddingVertical: 0,
|
|
226
|
+
width: '100%',
|
|
227
|
+
},
|
|
228
|
+
toolTimelineDetailVerticalScroll: {
|
|
229
|
+
maxHeight: 220,
|
|
230
|
+
width: '100%',
|
|
231
|
+
},
|
|
232
|
+
toolTimelineDetailHorizontalScroll: {
|
|
233
|
+
width: '100%',
|
|
234
|
+
},
|
|
235
|
+
toolTimelineDetailScrollContent: {
|
|
236
|
+
paddingHorizontal: 10,
|
|
237
|
+
paddingVertical: 9,
|
|
238
|
+
},
|
|
239
|
+
toolTimelineDetailText: {
|
|
240
|
+
color: '#D4D4D8',
|
|
241
|
+
fontFamily: Platform.select({ android: 'monospace', ios: 'Menlo' }),
|
|
242
|
+
fontSize: 12,
|
|
243
|
+
lineHeight: 18,
|
|
244
|
+
},
|
|
245
|
+
toolApprovalCard: {
|
|
246
|
+
backgroundColor: '#111111',
|
|
247
|
+
borderColor: '#2A2A2E',
|
|
248
|
+
borderRadius: 15,
|
|
249
|
+
borderWidth: 1,
|
|
250
|
+
marginTop: 8,
|
|
251
|
+
padding: 13,
|
|
252
|
+
width: '100%',
|
|
253
|
+
},
|
|
254
|
+
toolApprovalHeader: {
|
|
255
|
+
alignItems: 'center',
|
|
256
|
+
flexDirection: 'row',
|
|
257
|
+
},
|
|
258
|
+
toolApprovalHeaderText: { flex: 1, marginLeft: 10, minWidth: 0 },
|
|
259
|
+
toolApprovalTitle: { color: '#F4F4F5', fontSize: 14, fontWeight: '900' },
|
|
260
|
+
toolApprovalSubtitle: { color: '#A1A1AA', fontSize: 12, fontWeight: '700', marginTop: 2 },
|
|
261
|
+
toolApprovalBody: { color: '#D4D4D8', fontSize: 13, lineHeight: 19, marginTop: 12 },
|
|
262
|
+
toolApprovalMuted: { color: '#8E8E93', fontSize: 11, fontWeight: '800', marginBottom: 7 },
|
|
263
|
+
toolApprovalIcon: {
|
|
264
|
+
alignItems: 'center',
|
|
265
|
+
backgroundColor: '#1F1F22',
|
|
266
|
+
borderColor: '#34343A',
|
|
267
|
+
borderRadius: 13,
|
|
268
|
+
borderWidth: 1,
|
|
269
|
+
height: 34,
|
|
270
|
+
justifyContent: 'center',
|
|
271
|
+
width: 34,
|
|
272
|
+
},
|
|
273
|
+
toolApprovalBrandIcon: {
|
|
274
|
+
alignItems: 'center',
|
|
275
|
+
backgroundColor: '#F4F0E6',
|
|
276
|
+
borderRadius: 13,
|
|
277
|
+
height: 34,
|
|
278
|
+
justifyContent: 'center',
|
|
279
|
+
overflow: 'hidden',
|
|
280
|
+
width: 34,
|
|
281
|
+
},
|
|
282
|
+
toolApprovalBrandFallback: { color: '#111111', fontSize: 12, fontWeight: '900' },
|
|
283
|
+
toolApprovalScopeWrap: { marginTop: 12 },
|
|
284
|
+
toolApprovalChipWrap: { flexDirection: 'row', flexWrap: 'wrap', gap: 6, marginTop: 10 },
|
|
285
|
+
toolApprovalChip: {
|
|
286
|
+
backgroundColor: '#181818',
|
|
287
|
+
borderColor: '#303035',
|
|
288
|
+
borderRadius: 10,
|
|
289
|
+
borderWidth: 1,
|
|
290
|
+
maxWidth: '100%',
|
|
291
|
+
paddingHorizontal: 8,
|
|
292
|
+
paddingVertical: 5,
|
|
293
|
+
},
|
|
294
|
+
toolApprovalChipText: {
|
|
295
|
+
color: '#C7C7CC',
|
|
296
|
+
fontFamily: Platform.select({ android: 'monospace', ios: 'Menlo' }),
|
|
297
|
+
fontSize: 11,
|
|
298
|
+
fontWeight: '700',
|
|
299
|
+
},
|
|
300
|
+
toolApprovalInputs: { gap: 11, marginTop: 12 },
|
|
301
|
+
toolApprovalInputGroup: { gap: 5 },
|
|
302
|
+
toolApprovalInputLabel: { color: '#F4F4F5', fontSize: 12, fontWeight: '800' },
|
|
303
|
+
toolApprovalInputHelp: { color: '#A1A1AA', fontSize: 11, lineHeight: 15 },
|
|
304
|
+
toolApprovalInput: {
|
|
305
|
+
backgroundColor: '#080808',
|
|
306
|
+
borderColor: '#2A2A2E',
|
|
307
|
+
borderRadius: 10,
|
|
308
|
+
borderWidth: 1,
|
|
309
|
+
color: '#F4F4F5',
|
|
310
|
+
fontSize: 14,
|
|
311
|
+
minHeight: 42,
|
|
312
|
+
paddingHorizontal: 11,
|
|
313
|
+
paddingVertical: 9,
|
|
314
|
+
},
|
|
315
|
+
toolApprovalMultilineInput: {
|
|
316
|
+
minHeight: 92,
|
|
317
|
+
paddingTop: 10,
|
|
318
|
+
},
|
|
319
|
+
toolApprovalActions: { flexDirection: 'row', gap: 8, marginTop: 13 },
|
|
320
|
+
toolApprovalPrimaryButton: {
|
|
321
|
+
alignItems: 'center',
|
|
322
|
+
backgroundColor: '#F4F4F5',
|
|
323
|
+
borderRadius: 11,
|
|
324
|
+
flexDirection: 'row',
|
|
325
|
+
gap: 6,
|
|
326
|
+
justifyContent: 'center',
|
|
327
|
+
minHeight: 38,
|
|
328
|
+
paddingHorizontal: 13,
|
|
329
|
+
},
|
|
330
|
+
toolApprovalSecondaryButton: {
|
|
331
|
+
alignItems: 'center',
|
|
332
|
+
backgroundColor: '#171717',
|
|
333
|
+
borderColor: '#333338',
|
|
334
|
+
borderRadius: 11,
|
|
335
|
+
borderWidth: 1,
|
|
336
|
+
justifyContent: 'center',
|
|
337
|
+
minHeight: 38,
|
|
338
|
+
paddingHorizontal: 13,
|
|
339
|
+
},
|
|
340
|
+
toolApprovalButtonDisabled: { opacity: 0.55 },
|
|
341
|
+
toolApprovalPrimaryText: { color: '#111111', fontSize: 13, fontWeight: '900' },
|
|
342
|
+
toolApprovalSecondaryText: { color: '#E4E4E7', fontSize: 13, fontWeight: '800' },
|
|
343
|
+
toolApprovalPreviousText: { color: '#8E8E93', fontSize: 12, fontStyle: 'italic', lineHeight: 17, marginTop: 12 },
|
|
344
|
+
toolApprovalError: { color: '#FCA5A5', fontSize: 12, fontWeight: '700', lineHeight: 17, marginTop: 10 },
|
|
345
|
+
toolDoneRow: { alignItems: 'center', flexDirection: 'row', minHeight: 32 },
|
|
346
|
+
toolDoneText: { color: '#F4F4F5', fontSize: 15, fontWeight: '800', marginLeft: 0 },
|
|
347
|
+
toolRunningWrap: {
|
|
348
|
+
alignItems: 'center',
|
|
349
|
+
alignSelf: 'flex-start',
|
|
350
|
+
flexDirection: 'row',
|
|
351
|
+
paddingHorizontal: 3,
|
|
352
|
+
paddingVertical: 5,
|
|
353
|
+
},
|
|
354
|
+
toolRunningDots: { alignItems: 'center', flexDirection: 'row', marginRight: 10 },
|
|
355
|
+
toolRunningDot: {
|
|
356
|
+
backgroundColor: '#BDBDC2',
|
|
357
|
+
borderRadius: 3,
|
|
358
|
+
height: 5,
|
|
359
|
+
marginRight: 3,
|
|
360
|
+
width: 5,
|
|
361
|
+
},
|
|
362
|
+
toolRunningText: { color: '#C9CAF8', fontSize: 15, fontWeight: '800' },
|
|
363
|
+
identityRow: {
|
|
364
|
+
alignItems: 'center',
|
|
365
|
+
flexDirection: 'row',
|
|
366
|
+
marginBottom: 6,
|
|
367
|
+
},
|
|
368
|
+
identityName: { color: '#BDBDC2', flexShrink: 1, fontSize: 15, fontWeight: '700', minWidth: 0 },
|
|
369
|
+
userIdentityRow: { alignSelf: 'flex-end', flexDirection: 'row-reverse', marginRight: 0 },
|
|
370
|
+
userIdentityName: { color: '#8E8E93', marginRight: 8, textAlign: 'right' },
|
|
371
|
+
assistantIdentityRow: {
|
|
372
|
+
alignItems: 'center',
|
|
373
|
+
alignSelf: 'flex-start',
|
|
374
|
+
flexDirection: 'row',
|
|
375
|
+
marginBottom: 6,
|
|
376
|
+
},
|
|
377
|
+
assistantIdentityName: { color: '#F4F4F5', fontSize: 15, fontWeight: '800', marginLeft: 8 },
|
|
378
|
+
typingWrap: {
|
|
379
|
+
alignItems: 'center',
|
|
380
|
+
alignSelf: 'flex-start',
|
|
381
|
+
flexDirection: 'row',
|
|
382
|
+
marginLeft: 4,
|
|
383
|
+
marginTop: 8,
|
|
384
|
+
paddingHorizontal: 3,
|
|
385
|
+
paddingVertical: 6,
|
|
386
|
+
},
|
|
387
|
+
thinkingIcon: {
|
|
388
|
+
alignItems: 'center',
|
|
389
|
+
backgroundColor: '#1D120D',
|
|
390
|
+
borderColor: '#3A2317',
|
|
391
|
+
borderRadius: 12,
|
|
392
|
+
borderWidth: 1,
|
|
393
|
+
height: 24,
|
|
394
|
+
justifyContent: 'center',
|
|
395
|
+
width: 24,
|
|
396
|
+
},
|
|
397
|
+
typingTextWrap: { marginLeft: 8 },
|
|
398
|
+
typingText: { color: '#C9CAF8', fontSize: 15, fontWeight: '800' },
|
|
399
|
+
queuedWrap: {
|
|
400
|
+
alignSelf: 'flex-end',
|
|
401
|
+
backgroundColor: '#151515',
|
|
402
|
+
borderColor: '#2A2A2A',
|
|
403
|
+
borderRadius: 14,
|
|
404
|
+
borderWidth: 1,
|
|
405
|
+
marginRight: 4,
|
|
406
|
+
marginTop: 8,
|
|
407
|
+
maxWidth: '92%',
|
|
408
|
+
padding: 11,
|
|
409
|
+
},
|
|
410
|
+
queuedTitle: { color: '#8E8E93', fontSize: 11, fontWeight: '800', marginBottom: 4 },
|
|
411
|
+
queuedMessage: { color: '#C7C7CC', fontSize: 12, lineHeight: 17, marginTop: 2 },
|
|
412
|
+
});
|