@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,229 @@
|
|
|
1
|
+
export declare const shareAgentModalStyles: {
|
|
2
|
+
agentTitle: {
|
|
3
|
+
alignItems: "center";
|
|
4
|
+
flex: number;
|
|
5
|
+
flexDirection: "row";
|
|
6
|
+
minWidth: number;
|
|
7
|
+
};
|
|
8
|
+
avatarImage: {
|
|
9
|
+
height: "100%";
|
|
10
|
+
width: "100%";
|
|
11
|
+
};
|
|
12
|
+
avatarWrap: {
|
|
13
|
+
alignItems: "center";
|
|
14
|
+
backgroundColor: string;
|
|
15
|
+
borderRadius: number;
|
|
16
|
+
height: number;
|
|
17
|
+
justifyContent: "center";
|
|
18
|
+
overflow: "hidden";
|
|
19
|
+
width: number;
|
|
20
|
+
};
|
|
21
|
+
backdrop: {
|
|
22
|
+
backgroundColor: string;
|
|
23
|
+
flex: number;
|
|
24
|
+
justifyContent: "flex-end";
|
|
25
|
+
};
|
|
26
|
+
badge: {
|
|
27
|
+
color: string;
|
|
28
|
+
fontSize: number;
|
|
29
|
+
fontWeight: "800";
|
|
30
|
+
marginLeft: number;
|
|
31
|
+
};
|
|
32
|
+
closeButton: {
|
|
33
|
+
alignItems: "center";
|
|
34
|
+
height: number;
|
|
35
|
+
justifyContent: "center";
|
|
36
|
+
width: number;
|
|
37
|
+
};
|
|
38
|
+
disabledButton: {
|
|
39
|
+
opacity: number;
|
|
40
|
+
};
|
|
41
|
+
emptyText: {
|
|
42
|
+
color: string;
|
|
43
|
+
fontSize: number;
|
|
44
|
+
paddingVertical: number;
|
|
45
|
+
textAlign: "center";
|
|
46
|
+
};
|
|
47
|
+
errorText: {
|
|
48
|
+
color: string;
|
|
49
|
+
fontSize: number;
|
|
50
|
+
fontWeight: "700";
|
|
51
|
+
marginTop: number;
|
|
52
|
+
};
|
|
53
|
+
guestActions: {
|
|
54
|
+
flexDirection: "row";
|
|
55
|
+
gap: number;
|
|
56
|
+
marginTop: number;
|
|
57
|
+
};
|
|
58
|
+
guestBody: {
|
|
59
|
+
color: string;
|
|
60
|
+
fontSize: number;
|
|
61
|
+
fontWeight: "700";
|
|
62
|
+
lineHeight: number;
|
|
63
|
+
marginTop: number;
|
|
64
|
+
};
|
|
65
|
+
guestCard: {
|
|
66
|
+
backgroundColor: string;
|
|
67
|
+
borderColor: string;
|
|
68
|
+
borderRadius: number;
|
|
69
|
+
borderWidth: number;
|
|
70
|
+
marginTop: number;
|
|
71
|
+
padding: number;
|
|
72
|
+
};
|
|
73
|
+
guestHint: {
|
|
74
|
+
color: string;
|
|
75
|
+
fontSize: number;
|
|
76
|
+
fontWeight: "800";
|
|
77
|
+
lineHeight: number;
|
|
78
|
+
marginTop: number;
|
|
79
|
+
};
|
|
80
|
+
guestPrimaryButton: {
|
|
81
|
+
alignItems: "center";
|
|
82
|
+
backgroundColor: string;
|
|
83
|
+
borderRadius: number;
|
|
84
|
+
flex: number;
|
|
85
|
+
flexDirection: "row";
|
|
86
|
+
gap: number;
|
|
87
|
+
justifyContent: "center";
|
|
88
|
+
paddingVertical: number;
|
|
89
|
+
};
|
|
90
|
+
guestPrimaryButtonText: {
|
|
91
|
+
color: string;
|
|
92
|
+
fontSize: number;
|
|
93
|
+
fontWeight: "900";
|
|
94
|
+
};
|
|
95
|
+
guestSecondaryButton: {
|
|
96
|
+
alignItems: "center";
|
|
97
|
+
backgroundColor: string;
|
|
98
|
+
borderColor: string;
|
|
99
|
+
borderRadius: number;
|
|
100
|
+
borderWidth: number;
|
|
101
|
+
flex: number;
|
|
102
|
+
flexDirection: "row";
|
|
103
|
+
gap: number;
|
|
104
|
+
justifyContent: "center";
|
|
105
|
+
paddingVertical: number;
|
|
106
|
+
};
|
|
107
|
+
guestSecondaryButtonText: {
|
|
108
|
+
color: string;
|
|
109
|
+
fontSize: number;
|
|
110
|
+
fontWeight: "900";
|
|
111
|
+
};
|
|
112
|
+
guestTitle: {
|
|
113
|
+
color: string;
|
|
114
|
+
fontSize: number;
|
|
115
|
+
fontWeight: "900";
|
|
116
|
+
};
|
|
117
|
+
header: {
|
|
118
|
+
alignItems: "center";
|
|
119
|
+
flexDirection: "row";
|
|
120
|
+
marginBottom: number;
|
|
121
|
+
};
|
|
122
|
+
input: {
|
|
123
|
+
color: string;
|
|
124
|
+
fontSize: number;
|
|
125
|
+
maxHeight: number;
|
|
126
|
+
minHeight: number;
|
|
127
|
+
paddingVertical: number;
|
|
128
|
+
};
|
|
129
|
+
inputCard: {
|
|
130
|
+
backgroundColor: string;
|
|
131
|
+
borderColor: string;
|
|
132
|
+
borderRadius: number;
|
|
133
|
+
borderWidth: number;
|
|
134
|
+
padding: number;
|
|
135
|
+
};
|
|
136
|
+
inputLabel: {
|
|
137
|
+
color: string;
|
|
138
|
+
fontSize: number;
|
|
139
|
+
fontWeight: "800";
|
|
140
|
+
};
|
|
141
|
+
inviteButton: {
|
|
142
|
+
alignItems: "center";
|
|
143
|
+
backgroundColor: string;
|
|
144
|
+
borderRadius: number;
|
|
145
|
+
flexDirection: "row";
|
|
146
|
+
gap: number;
|
|
147
|
+
justifyContent: "center";
|
|
148
|
+
marginTop: number;
|
|
149
|
+
paddingVertical: number;
|
|
150
|
+
};
|
|
151
|
+
inviteButtonText: {
|
|
152
|
+
color: string;
|
|
153
|
+
fontSize: number;
|
|
154
|
+
fontWeight: "900";
|
|
155
|
+
};
|
|
156
|
+
memberEmail: {
|
|
157
|
+
color: string;
|
|
158
|
+
fontSize: number;
|
|
159
|
+
marginTop: number;
|
|
160
|
+
};
|
|
161
|
+
memberName: {
|
|
162
|
+
color: string;
|
|
163
|
+
flexShrink: number;
|
|
164
|
+
fontSize: number;
|
|
165
|
+
fontWeight: "800";
|
|
166
|
+
};
|
|
167
|
+
memberNameRow: {
|
|
168
|
+
alignItems: "center";
|
|
169
|
+
flexDirection: "row";
|
|
170
|
+
minWidth: number;
|
|
171
|
+
};
|
|
172
|
+
memberRow: {
|
|
173
|
+
alignItems: "center";
|
|
174
|
+
flexDirection: "row";
|
|
175
|
+
paddingVertical: number;
|
|
176
|
+
};
|
|
177
|
+
memberTextWrap: {
|
|
178
|
+
flex: number;
|
|
179
|
+
marginLeft: number;
|
|
180
|
+
minWidth: number;
|
|
181
|
+
};
|
|
182
|
+
membersHeader: {
|
|
183
|
+
alignItems: "center";
|
|
184
|
+
flexDirection: "row";
|
|
185
|
+
justifyContent: "space-between";
|
|
186
|
+
marginTop: number;
|
|
187
|
+
};
|
|
188
|
+
membersList: {
|
|
189
|
+
paddingBottom: number;
|
|
190
|
+
};
|
|
191
|
+
membersTitle: {
|
|
192
|
+
color: string;
|
|
193
|
+
fontSize: number;
|
|
194
|
+
fontWeight: "900";
|
|
195
|
+
};
|
|
196
|
+
sheet: {
|
|
197
|
+
alignSelf: "center";
|
|
198
|
+
backgroundColor: string;
|
|
199
|
+
borderColor: string;
|
|
200
|
+
borderRadius: number;
|
|
201
|
+
borderWidth: number;
|
|
202
|
+
marginBottom: number;
|
|
203
|
+
maxHeight: "82%";
|
|
204
|
+
padding: number;
|
|
205
|
+
width: "92%";
|
|
206
|
+
};
|
|
207
|
+
subtitle: {
|
|
208
|
+
color: string;
|
|
209
|
+
fontSize: number;
|
|
210
|
+
marginTop: number;
|
|
211
|
+
};
|
|
212
|
+
successText: {
|
|
213
|
+
color: string;
|
|
214
|
+
fontSize: number;
|
|
215
|
+
fontWeight: "800";
|
|
216
|
+
marginTop: number;
|
|
217
|
+
};
|
|
218
|
+
title: {
|
|
219
|
+
color: string;
|
|
220
|
+
fontSize: number;
|
|
221
|
+
fontWeight: "900";
|
|
222
|
+
};
|
|
223
|
+
titleTextWrap: {
|
|
224
|
+
flex: number;
|
|
225
|
+
marginLeft: number;
|
|
226
|
+
minWidth: number;
|
|
227
|
+
};
|
|
228
|
+
};
|
|
229
|
+
//# sourceMappingURL=ShareAgentModal.styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ShareAgentModal.styles.d.ts","sourceRoot":"","sources":["../../../src/ShareAgentModal.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4FhC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SuperagentHomeScreen.d.ts","sourceRoot":"","sources":["../../../src/SuperagentHomeScreen.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAyC,MAAM,OAAO,CAAC;AAY9D,OAAO,KAAK,EAAmB,yBAAyB,EAAmB,MAAM,SAAS,CAAC;AAI3F,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,yBAAyB,qBAEpE"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SuperagentAgent, SuperagentConnector, SuperagentConnectorActionInput, SuperagentConversation, SuperagentToolCall } from './types';
|
|
3
|
+
type SubmitToolCallInput = (toolCallId: string, approve: boolean, extraUserInput?: unknown, originRequestId?: string) => Promise<SuperagentConversation | null>;
|
|
4
|
+
export declare function ToolApprovalCard({ agent, availableConnectors, isLastAssistantMessage, onConnectConnector, submitToolCallInput, toolCall, }: {
|
|
5
|
+
agent: SuperagentAgent;
|
|
6
|
+
availableConnectors?: SuperagentConnector[];
|
|
7
|
+
isLastAssistantMessage: boolean;
|
|
8
|
+
onConnectConnector?: (input: SuperagentConnectorActionInput) => Promise<boolean | void> | boolean | void;
|
|
9
|
+
submitToolCallInput?: SubmitToolCallInput;
|
|
10
|
+
toolCall: SuperagentToolCall;
|
|
11
|
+
}): React.JSX.Element;
|
|
12
|
+
export {};
|
|
13
|
+
//# sourceMappingURL=ToolApprovalCard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ToolApprovalCard.d.ts","sourceRoot":"","sources":["../../../src/ToolApprovalCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAMjD,OAAO,KAAK,EACV,eAAe,EACf,mBAAmB,EACnB,8BAA8B,EAC9B,sBAAsB,EACtB,kBAAkB,EACnB,MAAM,SAAS,CAAC;AAEjB,KAAK,mBAAmB,GAAG,CACzB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,OAAO,EAChB,cAAc,CAAC,EAAE,OAAO,EACxB,eAAe,CAAC,EAAE,MAAM,KACrB,OAAO,CAAC,sBAAsB,GAAG,IAAI,CAAC,CAAC;AAS5C,wBAAgB,gBAAgB,CAAC,EAC/B,KAAK,EACL,mBAAmB,EACnB,sBAAsB,EACtB,kBAAkB,EAClB,mBAAmB,EACnB,QAAQ,GACT,EAAE;IACD,KAAK,EAAE,eAAe,CAAC;IACvB,mBAAmB,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAC5C,sBAAsB,EAAE,OAAO,CAAC;IAChC,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,8BAA8B,KAAK,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;IACzG,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAC1C,QAAQ,EAAE,kBAAkB,CAAC;CAC9B,qBA+PA"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SuperagentAgent, SuperagentConnector, SuperagentConnectorActionInput, SuperagentConversation, SuperagentMessage, SuperagentToolCall, SuperagentToolRenderers } from './types';
|
|
3
|
+
type SubmitToolCallInput = (toolCallId: string, approve: boolean, extraUserInput?: unknown, originRequestId?: string) => Promise<SuperagentConversation | null>;
|
|
4
|
+
export declare function ToolCallSummary({ agent, availableConnectors, conversationId, isLastAssistantMessage, message, onConnectConnector, submitToolCallInput, toolCalls, toolRenderers, }: {
|
|
5
|
+
agent: SuperagentAgent;
|
|
6
|
+
availableConnectors?: SuperagentConnector[];
|
|
7
|
+
conversationId: string | null;
|
|
8
|
+
isLastAssistantMessage: boolean;
|
|
9
|
+
message: SuperagentMessage;
|
|
10
|
+
onConnectConnector?: (input: SuperagentConnectorActionInput) => Promise<boolean | void> | boolean | void;
|
|
11
|
+
submitToolCallInput?: SubmitToolCallInput;
|
|
12
|
+
toolCalls: SuperagentToolCall[];
|
|
13
|
+
toolRenderers?: SuperagentToolRenderers;
|
|
14
|
+
}): React.JSX.Element | null;
|
|
15
|
+
export {};
|
|
16
|
+
//# sourceMappingURL=ToolCallSummary.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ToolCallSummary.d.ts","sourceRoot":"","sources":["../../../src/ToolCallSummary.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAM5D,OAAO,KAAK,EACV,eAAe,EACf,mBAAmB,EACnB,8BAA8B,EAC9B,sBAAsB,EACtB,iBAAiB,EACjB,kBAAkB,EAClB,uBAAuB,EACxB,MAAM,SAAS,CAAC;AAyDjB,KAAK,mBAAmB,GAAG,CACzB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,OAAO,EAChB,cAAc,CAAC,EAAE,OAAO,EACxB,eAAe,CAAC,EAAE,MAAM,KACrB,OAAO,CAAC,sBAAsB,GAAG,IAAI,CAAC,CAAC;AAE5C,wBAAgB,eAAe,CAAC,EAC9B,KAAK,EACL,mBAAmB,EACnB,cAAc,EACd,sBAAsB,EACtB,OAAO,EACP,kBAAkB,EAClB,mBAAmB,EACnB,SAAS,EACT,aAAa,GACd,EAAE;IACD,KAAK,EAAE,eAAe,CAAC;IACvB,mBAAmB,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAC5C,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,sBAAsB,EAAE,OAAO,CAAC;IAChC,OAAO,EAAE,iBAAiB,CAAC;IAC3B,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,8BAA8B,KAAK,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;IACzG,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAC1C,SAAS,EAAE,kBAAkB,EAAE,CAAC;IAChC,aAAa,CAAC,EAAE,uBAAuB,CAAC;CACzC,4BAuCA"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export declare const agentSphereStyles: {
|
|
2
|
+
frame: {
|
|
3
|
+
alignItems: "center";
|
|
4
|
+
justifyContent: "center";
|
|
5
|
+
overflow: "hidden";
|
|
6
|
+
position: "relative";
|
|
7
|
+
};
|
|
8
|
+
builtInFrame: {
|
|
9
|
+
backgroundColor: string;
|
|
10
|
+
};
|
|
11
|
+
userFrame: {
|
|
12
|
+
backgroundColor: string;
|
|
13
|
+
borderColor: string;
|
|
14
|
+
borderWidth: number;
|
|
15
|
+
};
|
|
16
|
+
emojiFrame: {
|
|
17
|
+
backgroundColor: string;
|
|
18
|
+
borderColor: string;
|
|
19
|
+
borderWidth: number;
|
|
20
|
+
};
|
|
21
|
+
image: {
|
|
22
|
+
height: "100%";
|
|
23
|
+
width: "100%";
|
|
24
|
+
};
|
|
25
|
+
emoji: {
|
|
26
|
+
color: string;
|
|
27
|
+
fontWeight: "800";
|
|
28
|
+
textAlign: "center";
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
//# sourceMappingURL=agentSphereStyles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agentSphereStyles.d.ts","sourceRoot":"","sources":["../../../src/agentSphereStyles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsB5B,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { SuperagentNativeClient, SuperagentNativeClientConfig } from './types';
|
|
2
|
+
export declare function createSuperagentNativeClient({ apiBaseUrl, appId, getAuthToken, getHeaders, }: SuperagentNativeClientConfig): SuperagentNativeClient;
|
|
3
|
+
export type { SuperagentNativeClient };
|
|
4
|
+
//# sourceMappingURL=apiClient.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"apiClient.d.ts","sourceRoot":"","sources":["../../../src/apiClient.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAIV,sBAAsB,EACtB,4BAA4B,EAE7B,MAAM,SAAS,CAAC;AAIjB,wBAAgB,4BAA4B,CAAC,EAC3C,UAAU,EACV,KAAK,EACL,YAAY,EACZ,UAAU,GACX,EAAE,4BAA4B,GAAG,sBAAsB,CAqGvD;AAuED,YAAY,EAAE,sBAAsB,EAAE,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { SuperagentNativeMediaItem } from './useSuperagentAttachmentPicker';
|
|
2
|
+
export declare function validateNativeAttachment(item: SuperagentNativeMediaItem, name: string, extension: string): void;
|
|
3
|
+
export declare function getUploadName(item: SuperagentNativeMediaItem, index: number): string;
|
|
4
|
+
export declare function getExtension(value?: string): string;
|
|
5
|
+
export declare function getMimeType(item: SuperagentNativeMediaItem, extension: string): string;
|
|
6
|
+
//# sourceMappingURL=attachmentFileHelpers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attachmentFileHelpers.d.ts","sourceRoot":"","sources":["../../../src/attachmentFileHelpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,iCAAiC,CAAC;AAM/E,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,yBAAyB,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,QASxG;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,yBAAyB,EAAE,KAAK,EAAE,MAAM,UAQ3E;AAED,wBAAgB,YAAY,CAAC,KAAK,CAAC,EAAE,MAAM,UAI1C;AAED,wBAAgB,WAAW,CAAC,IAAI,EAAE,yBAAyB,EAAE,SAAS,EAAE,MAAM,UAgC7E"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { SuperagentMediaActionContext, SuperagentMediaAttachment } from './types';
|
|
2
|
+
import type { SuperagentAttachmentPickerAdapters, SuperagentAttachmentPickerMode } from './useSuperagentAttachmentPicker';
|
|
3
|
+
export declare function pickAndUploadAttachments({ authToken, baseUrl, context, mode, nativeAdapters, onUploadStart, }: {
|
|
4
|
+
authToken: string;
|
|
5
|
+
baseUrl: string;
|
|
6
|
+
context: SuperagentMediaActionContext;
|
|
7
|
+
mode: SuperagentAttachmentPickerMode;
|
|
8
|
+
nativeAdapters: SuperagentAttachmentPickerAdapters;
|
|
9
|
+
onUploadStart?: (count: number) => void;
|
|
10
|
+
}): Promise<SuperagentMediaAttachment[]>;
|
|
11
|
+
export declare function getAttachmentPickerErrorMessage(error: unknown): string;
|
|
12
|
+
//# sourceMappingURL=attachmentUpload.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attachmentUpload.d.ts","sourceRoot":"","sources":["../../../src/attachmentUpload.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,4BAA4B,EAAE,yBAAyB,EAAC,MAAM,SAAS,CAAC;AACrF,OAAO,KAAK,EACV,kCAAkC,EAClC,8BAA8B,EAE/B,MAAM,iCAAiC,CAAC;AAWzC,wBAAsB,wBAAwB,CAAC,EAC7C,SAAS,EACT,OAAO,EACP,OAAO,EACP,IAAI,EACJ,cAAc,EACd,aAAa,GACd,EAAE;IACD,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,4BAA4B,CAAC;IACtC,IAAI,EAAE,8BAA8B,CAAC;IACrC,cAAc,EAAE,kCAAkC,CAAC;IACnD,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACzC,wCAeA;AAED,wBAAgB,+BAA+B,CAAC,KAAK,EAAE,OAAO,UAQ7D"}
|
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
export declare const composerStyles: {
|
|
2
|
+
wrap: {
|
|
3
|
+
alignItems: "center";
|
|
4
|
+
backgroundColor: string;
|
|
5
|
+
paddingBottom: number;
|
|
6
|
+
paddingHorizontal: number;
|
|
7
|
+
paddingTop: number;
|
|
8
|
+
};
|
|
9
|
+
shell: {
|
|
10
|
+
alignItems: "flex-end";
|
|
11
|
+
backgroundColor: string;
|
|
12
|
+
borderColor: string;
|
|
13
|
+
borderRadius: number;
|
|
14
|
+
borderWidth: number;
|
|
15
|
+
flexDirection: "row";
|
|
16
|
+
minHeight: number;
|
|
17
|
+
paddingHorizontal: number;
|
|
18
|
+
paddingVertical: number;
|
|
19
|
+
position: "relative";
|
|
20
|
+
width: "100%";
|
|
21
|
+
};
|
|
22
|
+
attachmentMenu: {
|
|
23
|
+
backgroundColor: string;
|
|
24
|
+
borderColor: string;
|
|
25
|
+
borderRadius: number;
|
|
26
|
+
borderWidth: number;
|
|
27
|
+
bottom: number;
|
|
28
|
+
left: number;
|
|
29
|
+
minWidth: number;
|
|
30
|
+
overflow: "hidden";
|
|
31
|
+
paddingBottom: number;
|
|
32
|
+
paddingTop: number;
|
|
33
|
+
position: "absolute";
|
|
34
|
+
shadowColor: string;
|
|
35
|
+
shadowOffset: {
|
|
36
|
+
height: number;
|
|
37
|
+
width: number;
|
|
38
|
+
};
|
|
39
|
+
shadowOpacity: number;
|
|
40
|
+
shadowRadius: number;
|
|
41
|
+
zIndex: number;
|
|
42
|
+
};
|
|
43
|
+
attachmentMenuIcon: {
|
|
44
|
+
alignItems: "center";
|
|
45
|
+
backgroundColor: string;
|
|
46
|
+
borderRadius: number;
|
|
47
|
+
height: number;
|
|
48
|
+
justifyContent: "center";
|
|
49
|
+
marginRight: number;
|
|
50
|
+
width: number;
|
|
51
|
+
};
|
|
52
|
+
attachmentMenuItem: {
|
|
53
|
+
alignItems: "center";
|
|
54
|
+
flexDirection: "row";
|
|
55
|
+
minHeight: number;
|
|
56
|
+
paddingHorizontal: number;
|
|
57
|
+
};
|
|
58
|
+
attachmentMenuItemText: {
|
|
59
|
+
color: string;
|
|
60
|
+
fontSize: number;
|
|
61
|
+
fontWeight: "600";
|
|
62
|
+
};
|
|
63
|
+
attachmentMenuItemTextDisabled: {
|
|
64
|
+
color: string;
|
|
65
|
+
};
|
|
66
|
+
attachmentMenuSectionLabel: {
|
|
67
|
+
color: string;
|
|
68
|
+
fontSize: number;
|
|
69
|
+
fontWeight: "800";
|
|
70
|
+
marginBottom: number;
|
|
71
|
+
marginTop: number;
|
|
72
|
+
paddingHorizontal: number;
|
|
73
|
+
};
|
|
74
|
+
iconButton: {
|
|
75
|
+
alignItems: "center";
|
|
76
|
+
borderRadius: number;
|
|
77
|
+
height: number;
|
|
78
|
+
justifyContent: "center";
|
|
79
|
+
minWidth: number;
|
|
80
|
+
paddingHorizontal: number;
|
|
81
|
+
};
|
|
82
|
+
iconButtonText: {
|
|
83
|
+
color: string;
|
|
84
|
+
fontSize: number;
|
|
85
|
+
fontWeight: "800";
|
|
86
|
+
};
|
|
87
|
+
activeButton: {
|
|
88
|
+
backgroundColor: string;
|
|
89
|
+
};
|
|
90
|
+
disabledButton: {
|
|
91
|
+
opacity: number;
|
|
92
|
+
};
|
|
93
|
+
input: {
|
|
94
|
+
backgroundColor: string;
|
|
95
|
+
color: string;
|
|
96
|
+
flex: number;
|
|
97
|
+
fontSize: number;
|
|
98
|
+
lineHeight: number;
|
|
99
|
+
maxHeight: number;
|
|
100
|
+
minHeight: number;
|
|
101
|
+
paddingHorizontal: number;
|
|
102
|
+
paddingBottom: number;
|
|
103
|
+
paddingTop: number;
|
|
104
|
+
};
|
|
105
|
+
replyPreview: {
|
|
106
|
+
alignItems: "center";
|
|
107
|
+
backgroundColor: string;
|
|
108
|
+
borderColor: string;
|
|
109
|
+
borderRadius: number;
|
|
110
|
+
borderWidth: number;
|
|
111
|
+
flexDirection: "row";
|
|
112
|
+
marginBottom: number;
|
|
113
|
+
maxWidth: number;
|
|
114
|
+
minHeight: number;
|
|
115
|
+
paddingHorizontal: number;
|
|
116
|
+
paddingVertical: number;
|
|
117
|
+
width: "100%";
|
|
118
|
+
};
|
|
119
|
+
replyPreviewClose: {
|
|
120
|
+
alignItems: "center";
|
|
121
|
+
borderRadius: number;
|
|
122
|
+
height: number;
|
|
123
|
+
justifyContent: "center";
|
|
124
|
+
marginLeft: number;
|
|
125
|
+
width: number;
|
|
126
|
+
};
|
|
127
|
+
replyPreviewMarker: {
|
|
128
|
+
alignSelf: "stretch";
|
|
129
|
+
backgroundColor: string;
|
|
130
|
+
borderRadius: number;
|
|
131
|
+
marginRight: number;
|
|
132
|
+
width: number;
|
|
133
|
+
};
|
|
134
|
+
replyPreviewText: {
|
|
135
|
+
color: string;
|
|
136
|
+
flex: number;
|
|
137
|
+
fontSize: number;
|
|
138
|
+
fontWeight: "700";
|
|
139
|
+
lineHeight: number;
|
|
140
|
+
};
|
|
141
|
+
sendButton: {
|
|
142
|
+
alignItems: "center";
|
|
143
|
+
backgroundColor: string;
|
|
144
|
+
borderRadius: number;
|
|
145
|
+
height: number;
|
|
146
|
+
justifyContent: "center";
|
|
147
|
+
width: number;
|
|
148
|
+
};
|
|
149
|
+
sendButtonDisabled: {
|
|
150
|
+
backgroundColor: string;
|
|
151
|
+
};
|
|
152
|
+
sendButtonText: {
|
|
153
|
+
color: string;
|
|
154
|
+
fontSize: number;
|
|
155
|
+
fontWeight: "900";
|
|
156
|
+
lineHeight: number;
|
|
157
|
+
};
|
|
158
|
+
liveActionButton: {
|
|
159
|
+
backgroundColor: string;
|
|
160
|
+
borderColor: string;
|
|
161
|
+
borderWidth: number;
|
|
162
|
+
};
|
|
163
|
+
stopButton: {
|
|
164
|
+
alignItems: "center";
|
|
165
|
+
backgroundColor: string;
|
|
166
|
+
borderRadius: number;
|
|
167
|
+
height: number;
|
|
168
|
+
justifyContent: "center";
|
|
169
|
+
width: number;
|
|
170
|
+
};
|
|
171
|
+
stopButtonText: {
|
|
172
|
+
color: string;
|
|
173
|
+
fontSize: number;
|
|
174
|
+
fontWeight: "900";
|
|
175
|
+
lineHeight: number;
|
|
176
|
+
};
|
|
177
|
+
attachmentStrip: {
|
|
178
|
+
flexDirection: "row";
|
|
179
|
+
flexWrap: "wrap";
|
|
180
|
+
marginBottom: number;
|
|
181
|
+
maxWidth: number;
|
|
182
|
+
width: "100%";
|
|
183
|
+
};
|
|
184
|
+
attachmentItem: {
|
|
185
|
+
backgroundColor: string;
|
|
186
|
+
borderColor: string;
|
|
187
|
+
borderRadius: number;
|
|
188
|
+
borderWidth: number;
|
|
189
|
+
marginRight: number;
|
|
190
|
+
marginTop: number;
|
|
191
|
+
maxWidth: number;
|
|
192
|
+
overflow: "hidden";
|
|
193
|
+
};
|
|
194
|
+
attachmentImage: {
|
|
195
|
+
height: number;
|
|
196
|
+
width: number;
|
|
197
|
+
};
|
|
198
|
+
attachmentFile: {
|
|
199
|
+
flexDirection: "row";
|
|
200
|
+
alignItems: "center";
|
|
201
|
+
paddingHorizontal: number;
|
|
202
|
+
paddingVertical: number;
|
|
203
|
+
};
|
|
204
|
+
attachmentFileIcon: {
|
|
205
|
+
color: string;
|
|
206
|
+
fontSize: number;
|
|
207
|
+
fontWeight: "800";
|
|
208
|
+
marginRight: number;
|
|
209
|
+
};
|
|
210
|
+
attachmentName: {
|
|
211
|
+
color: string;
|
|
212
|
+
flexShrink: number;
|
|
213
|
+
fontSize: number;
|
|
214
|
+
fontWeight: "700";
|
|
215
|
+
};
|
|
216
|
+
removeAttachment: {
|
|
217
|
+
alignItems: "center";
|
|
218
|
+
backgroundColor: string;
|
|
219
|
+
borderRadius: number;
|
|
220
|
+
height: number;
|
|
221
|
+
justifyContent: "center";
|
|
222
|
+
position: "absolute";
|
|
223
|
+
right: number;
|
|
224
|
+
top: number;
|
|
225
|
+
width: number;
|
|
226
|
+
};
|
|
227
|
+
removeAttachmentText: {
|
|
228
|
+
color: string;
|
|
229
|
+
fontSize: number;
|
|
230
|
+
fontWeight: "800";
|
|
231
|
+
lineHeight: number;
|
|
232
|
+
};
|
|
233
|
+
errorText: {
|
|
234
|
+
color: string;
|
|
235
|
+
fontSize: number;
|
|
236
|
+
marginBottom: number;
|
|
237
|
+
maxWidth: number;
|
|
238
|
+
width: "100%";
|
|
239
|
+
};
|
|
240
|
+
};
|
|
241
|
+
//# sourceMappingURL=composerStyles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"composerStyles.d.ts","sourceRoot":"","sources":["../../../src/composerStyles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoKzB,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare function hasConnectorBrandIcon(connectorId: string): boolean;
|
|
3
|
+
export declare function ConnectorBrandIcon({ connectorId, size }: {
|
|
4
|
+
connectorId: string;
|
|
5
|
+
size: number;
|
|
6
|
+
}): React.JSX.Element | null;
|
|
7
|
+
//# sourceMappingURL=connectorBrandIcons.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"connectorBrandIcons.d.ts","sourceRoot":"","sources":["../../../src/connectorBrandIcons.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAyD1B,wBAAgB,qBAAqB,CAAC,WAAW,EAAE,MAAM,WAExD;AAED,wBAAgB,kBAAkB,CAAC,EAAE,WAAW,EAAE,IAAI,EAAE,EAAE;IAAE,WAAW,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,4BAO9F"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"connectorCatalog.d.ts","sourceRoot":"","sources":["../../../src/connectorCatalog.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAMnD,eAAO,MAAM,4BAA4B,EAAE,mBAAmB,EAuZ7D,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,SAAS,CAAC;AACzC,eAAO,MAAM,kBAAkB,KAAK,CAAC;AAIrC,wBAAgB,aAAa,WAG5B"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SuperagentAgent, SuperagentConnector, SuperagentConnectorActionInput, SuperagentConversation, SuperagentCopyMessageInput, SuperagentEditorTab, SuperagentMarkdownRenderer, SuperagentMessage, SuperagentToolRenderers } from './types';
|
|
3
|
+
export declare function ConversationHeader({ activeTab, agent, onBack, onOpenMenu, onOpenShare, onRenameRequest, }: {
|
|
4
|
+
activeTab: SuperagentEditorTab;
|
|
5
|
+
agent: SuperagentAgent;
|
|
6
|
+
onBack: () => void;
|
|
7
|
+
onOpenMenu: () => void;
|
|
8
|
+
onOpenShare?: () => void;
|
|
9
|
+
onRenameRequest?: () => void;
|
|
10
|
+
}): React.JSX.Element;
|
|
11
|
+
export declare function MessageBubble({ agent, availableConnectors, conversationId, currentUserAvatarUrl, isLastAssistantMessage, message, onConnectConnector, onCopyMessage, onDeleteMessage, onReplyMessage, renderMarkdown, showAvatar, showTimestamp, submitToolCallInput, toolRenderers, }: {
|
|
12
|
+
agent: SuperagentAgent;
|
|
13
|
+
availableConnectors?: SuperagentConnector[];
|
|
14
|
+
conversationId: string | null;
|
|
15
|
+
currentUserAvatarUrl?: string | null;
|
|
16
|
+
isLastAssistantMessage: boolean;
|
|
17
|
+
message: SuperagentMessage;
|
|
18
|
+
onConnectConnector?: (input: SuperagentConnectorActionInput) => Promise<boolean | void> | boolean | void;
|
|
19
|
+
onCopyMessage?: SuperagentCopyMessageInput;
|
|
20
|
+
onDeleteMessage?: (messageId: string) => Promise<boolean> | boolean;
|
|
21
|
+
onReplyMessage?: (message: SuperagentMessage) => void;
|
|
22
|
+
renderMarkdown?: SuperagentMarkdownRenderer;
|
|
23
|
+
showAvatar: boolean;
|
|
24
|
+
showTimestamp: boolean;
|
|
25
|
+
submitToolCallInput?: (toolCallId: string, approve: boolean, extraUserInput?: unknown, originRequestId?: string) => Promise<SuperagentConversation | null>;
|
|
26
|
+
toolRenderers?: SuperagentToolRenderers;
|
|
27
|
+
}): React.JSX.Element;
|
|
28
|
+
export declare function TypingIndicator(): React.JSX.Element;
|
|
29
|
+
//# sourceMappingURL=conversationParts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"conversationParts.d.ts","sourceRoot":"","sources":["../../../src/conversationParts.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAWjD,OAAO,KAAK,EACV,eAAe,EACf,mBAAmB,EACnB,8BAA8B,EAC9B,sBAAsB,EACtB,0BAA0B,EAC1B,mBAAmB,EACnB,0BAA0B,EAC1B,iBAAiB,EACjB,uBAAuB,EACxB,MAAM,SAAS,CAAC;AAEjB,wBAAgB,kBAAkB,CAAC,EACjC,SAAS,EACT,KAAK,EACL,MAAM,EACN,UAAU,EACV,WAAW,EACX,eAAe,GAChB,EAAE;IACD,SAAS,EAAE,mBAAmB,CAAC;IAC/B,KAAK,EAAE,eAAe,CAAC;IACvB,MAAM,EAAE,MAAM,IAAI,CAAC;IACnB,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,IAAI,CAAC;CAC9B,qBAmCA;AAED,wBAAgB,aAAa,CAAC,EAC5B,KAAK,EACL,mBAAmB,EACnB,cAAc,EACd,oBAAoB,EACpB,sBAAsB,EACtB,OAAO,EACP,kBAAkB,EAClB,aAAa,EACb,eAAe,EACf,cAAc,EACd,cAAc,EACd,UAAU,EACV,aAAa,EACb,mBAAmB,EACnB,aAAa,GACd,EAAE;IACD,KAAK,EAAE,eAAe,CAAC;IACvB,mBAAmB,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAC5C,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC,sBAAsB,EAAE,OAAO,CAAC;IAChC,OAAO,EAAE,iBAAiB,CAAC;IAC3B,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,8BAA8B,KAAK,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,GAAG,OAAO,GAAG,IAAI,CAAC;IACzG,aAAa,CAAC,EAAE,0BAA0B,CAAC;IAC3C,eAAe,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,OAAO,CAAC,OAAO,CAAC,GAAG,OAAO,CAAC;IACpE,cAAc,CAAC,EAAE,CAAC,OAAO,EAAE,iBAAiB,KAAK,IAAI,CAAC;IACtD,cAAc,CAAC,EAAE,0BAA0B,CAAC;IAC5C,UAAU,EAAE,OAAO,CAAC;IACpB,aAAa,EAAE,OAAO,CAAC;IACvB,mBAAmB,CAAC,EAAE,CACpB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,OAAO,EAChB,cAAc,CAAC,EAAE,OAAO,EACxB,eAAe,CAAC,EAAE,MAAM,KACrB,OAAO,CAAC,sBAAsB,GAAG,IAAI,CAAC,CAAC;IAC5C,aAAa,CAAC,EAAE,uBAAuB,CAAC;CACzC,qBA4FA;AAiCD,wBAAgB,eAAe,sBA4D9B"}
|