@meistrari/chat-nuxt 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +274 -0
- package/dist/module.d.mts +3 -0
- package/dist/module.json +9 -0
- package/dist/module.mjs +250 -0
- package/dist/runtime/assets/css/code-theme.css +1 -0
- package/dist/runtime/assets/css/markstream.css +1 -0
- package/dist/runtime/components/AppStatusToast.d.vue.ts +3 -0
- package/dist/runtime/components/AppStatusToast.vue +42 -0
- package/dist/runtime/components/AppStatusToast.vue.d.ts +3 -0
- package/dist/runtime/components/TelaChat.d.vue.ts +19 -0
- package/dist/runtime/components/TelaChat.vue +25 -0
- package/dist/runtime/components/TelaChat.vue.d.ts +19 -0
- package/dist/runtime/components/app-markdown-render.d.vue.ts +15 -0
- package/dist/runtime/components/app-markdown-render.vue +45 -0
- package/dist/runtime/components/app-markdown-render.vue.d.ts +15 -0
- package/dist/runtime/components/application-card.d.vue.ts +9 -0
- package/dist/runtime/components/application-card.vue +52 -0
- package/dist/runtime/components/application-card.vue.d.ts +9 -0
- package/dist/runtime/components/audio-preview.d.vue.ts +14 -0
- package/dist/runtime/components/audio-preview.vue +52 -0
- package/dist/runtime/components/audio-preview.vue.d.ts +14 -0
- package/dist/runtime/components/chat/bash-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/bash-widget.vue +86 -0
- package/dist/runtime/components/chat/bash-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/canvas-selector-modal.d.vue.ts +14 -0
- package/dist/runtime/components/chat/canvas-selector-modal.vue +290 -0
- package/dist/runtime/components/chat/canvas-selector-modal.vue.d.ts +14 -0
- package/dist/runtime/components/chat/context-config.d.vue.ts +30 -0
- package/dist/runtime/components/chat/context-config.vue +423 -0
- package/dist/runtime/components/chat/context-config.vue.d.ts +30 -0
- package/dist/runtime/components/chat/conversation-item.d.vue.ts +20 -0
- package/dist/runtime/components/chat/conversation-item.vue +184 -0
- package/dist/runtime/components/chat/conversation-item.vue.d.ts +20 -0
- package/dist/runtime/components/chat/conversation-list.d.vue.ts +10 -0
- package/dist/runtime/components/chat/conversation-list.vue +78 -0
- package/dist/runtime/components/chat/conversation-list.vue.d.ts +10 -0
- package/dist/runtime/components/chat/doc-sdk-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/doc-sdk-widget.vue +74 -0
- package/dist/runtime/components/chat/doc-sdk-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/file-preview.d.vue.ts +7 -0
- package/dist/runtime/components/chat/file-preview.vue +313 -0
- package/dist/runtime/components/chat/file-preview.vue.d.ts +7 -0
- package/dist/runtime/components/chat/files-view.d.vue.ts +6 -0
- package/dist/runtime/components/chat/files-view.vue +399 -0
- package/dist/runtime/components/chat/files-view.vue.d.ts +6 -0
- package/dist/runtime/components/chat/generic-tool-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/generic-tool-widget.vue +334 -0
- package/dist/runtime/components/chat/generic-tool-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/grep-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/grep-widget.vue +259 -0
- package/dist/runtime/components/chat/grep-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/mention-dropdown.d.vue.ts +14 -0
- package/dist/runtime/components/chat/mention-dropdown.vue +90 -0
- package/dist/runtime/components/chat/mention-dropdown.vue.d.ts +14 -0
- package/dist/runtime/components/chat/message-bubble.d.vue.ts +11 -0
- package/dist/runtime/components/chat/message-bubble.vue +288 -0
- package/dist/runtime/components/chat/message-bubble.vue.d.ts +11 -0
- package/dist/runtime/components/chat/message-input.d.vue.ts +34 -0
- package/dist/runtime/components/chat/message-input.vue +428 -0
- package/dist/runtime/components/chat/message-input.vue.d.ts +34 -0
- package/dist/runtime/components/chat/message-list.d.vue.ts +11 -0
- package/dist/runtime/components/chat/message-list.vue +36 -0
- package/dist/runtime/components/chat/message-list.vue.d.ts +11 -0
- package/dist/runtime/components/chat/model-selector.d.vue.ts +15 -0
- package/dist/runtime/components/chat/model-selector.vue +35 -0
- package/dist/runtime/components/chat/model-selector.vue.d.ts +15 -0
- package/dist/runtime/components/chat/new-conversation-modal.d.vue.ts +14 -0
- package/dist/runtime/components/chat/new-conversation-modal.vue +271 -0
- package/dist/runtime/components/chat/new-conversation-modal.vue.d.ts +14 -0
- package/dist/runtime/components/chat/read-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/read-widget.vue +195 -0
- package/dist/runtime/components/chat/read-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/reasoning-message.d.vue.ts +13 -0
- package/dist/runtime/components/chat/reasoning-message.vue +341 -0
- package/dist/runtime/components/chat/reasoning-message.vue.d.ts +13 -0
- package/dist/runtime/components/chat/reasoning-step-item.d.vue.ts +37 -0
- package/dist/runtime/components/chat/reasoning-step-item.vue +125 -0
- package/dist/runtime/components/chat/reasoning-step-item.vue.d.ts +37 -0
- package/dist/runtime/components/chat/reasoning-steps.d.vue.ts +12 -0
- package/dist/runtime/components/chat/reasoning-steps.vue +47 -0
- package/dist/runtime/components/chat/reasoning-steps.vue.d.ts +12 -0
- package/dist/runtime/components/chat/reasoning-thought.d.vue.ts +11 -0
- package/dist/runtime/components/chat/reasoning-thought.vue +287 -0
- package/dist/runtime/components/chat/reasoning-thought.vue.d.ts +11 -0
- package/dist/runtime/components/chat/tela-skill-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/tela-skill-widget.vue +94 -0
- package/dist/runtime/components/chat/tela-skill-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/thinking-indicator.d.vue.ts +3 -0
- package/dist/runtime/components/chat/thinking-indicator.vue +52 -0
- package/dist/runtime/components/chat/thinking-indicator.vue.d.ts +3 -0
- package/dist/runtime/components/chat/thinking-widget.d.vue.ts +8 -0
- package/dist/runtime/components/chat/thinking-widget.vue +53 -0
- package/dist/runtime/components/chat/thinking-widget.vue.d.ts +8 -0
- package/dist/runtime/components/chat/topbar.d.vue.ts +43 -0
- package/dist/runtime/components/chat/topbar.vue +223 -0
- package/dist/runtime/components/chat/topbar.vue.d.ts +43 -0
- package/dist/runtime/components/chat/usage-view.d.vue.ts +8 -0
- package/dist/runtime/components/chat/usage-view.vue +393 -0
- package/dist/runtime/components/chat/usage-view.vue.d.ts +8 -0
- package/dist/runtime/components/chat/vault-link.d.vue.ts +20 -0
- package/dist/runtime/components/chat/vault-link.vue +34 -0
- package/dist/runtime/components/chat/vault-link.vue.d.ts +20 -0
- package/dist/runtime/components/chat/web-search-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/web-search-widget.vue +121 -0
- package/dist/runtime/components/chat/web-search-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/workstation-query-widget.d.vue.ts +10 -0
- package/dist/runtime/components/chat/workstation-query-widget.vue +552 -0
- package/dist/runtime/components/chat/workstation-query-widget.vue.d.ts +10 -0
- package/dist/runtime/components/chat/workstation-selector-modal.d.vue.ts +14 -0
- package/dist/runtime/components/chat/workstation-selector-modal.vue +272 -0
- package/dist/runtime/components/chat/workstation-selector-modal.vue.d.ts +14 -0
- package/dist/runtime/components/chat/write-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/write-widget.vue +165 -0
- package/dist/runtime/components/chat/write-widget.vue.d.ts +9 -0
- package/dist/runtime/components/conversation-files-panel.d.vue.ts +3 -0
- package/dist/runtime/components/conversation-files-panel.vue +252 -0
- package/dist/runtime/components/conversation-files-panel.vue.d.ts +3 -0
- package/dist/runtime/components/csv-preview.d.vue.ts +20 -0
- package/dist/runtime/components/csv-preview.vue +157 -0
- package/dist/runtime/components/csv-preview.vue.d.ts +20 -0
- package/dist/runtime/components/file-preview-panel.d.vue.ts +3 -0
- package/dist/runtime/components/file-preview-panel.vue +185 -0
- package/dist/runtime/components/file-preview-panel.vue.d.ts +3 -0
- package/dist/runtime/components/file-uploader.d.vue.ts +16 -0
- package/dist/runtime/components/file-uploader.vue +136 -0
- package/dist/runtime/components/file-uploader.vue.d.ts +16 -0
- package/dist/runtime/components/icons/anthropic.d.vue.ts +3 -0
- package/dist/runtime/components/icons/anthropic.vue +5 -0
- package/dist/runtime/components/icons/anthropic.vue.d.ts +3 -0
- package/dist/runtime/components/image-preview.d.vue.ts +14 -0
- package/dist/runtime/components/image-preview.vue +54 -0
- package/dist/runtime/components/image-preview.vue.d.ts +14 -0
- package/dist/runtime/components/json-tree-node.d.vue.ts +9 -0
- package/dist/runtime/components/json-tree-node.vue +109 -0
- package/dist/runtime/components/json-tree-node.vue.d.ts +9 -0
- package/dist/runtime/components/json-viewer.d.vue.ts +6 -0
- package/dist/runtime/components/json-viewer.vue +88 -0
- package/dist/runtime/components/json-viewer.vue.d.ts +6 -0
- package/dist/runtime/components/pdf-preview.d.vue.ts +20 -0
- package/dist/runtime/components/pdf-preview.vue +89 -0
- package/dist/runtime/components/pdf-preview.vue.d.ts +20 -0
- package/dist/runtime/components/pdf-viewer.d.vue.ts +10 -0
- package/dist/runtime/components/pdf-viewer.vue +265 -0
- package/dist/runtime/components/pdf-viewer.vue.d.ts +10 -0
- package/dist/runtime/components/powered-by-tela.d.vue.ts +3 -0
- package/dist/runtime/components/powered-by-tela.vue +14 -0
- package/dist/runtime/components/powered-by-tela.vue.d.ts +3 -0
- package/dist/runtime/components/renderers/artifact-display.d.vue.ts +15 -0
- package/dist/runtime/components/renderers/artifact-display.vue +105 -0
- package/dist/runtime/components/renderers/artifact-display.vue.d.ts +15 -0
- package/dist/runtime/components/renderers/audio-renderer.d.vue.ts +7 -0
- package/dist/runtime/components/renderers/audio-renderer.vue +52 -0
- package/dist/runtime/components/renderers/audio-renderer.vue.d.ts +7 -0
- package/dist/runtime/components/renderers/csv-renderer.d.vue.ts +6 -0
- package/dist/runtime/components/renderers/csv-renderer.vue +203 -0
- package/dist/runtime/components/renderers/csv-renderer.vue.d.ts +6 -0
- package/dist/runtime/components/renderers/image-renderer.d.vue.ts +7 -0
- package/dist/runtime/components/renderers/image-renderer.vue +44 -0
- package/dist/runtime/components/renderers/image-renderer.vue.d.ts +7 -0
- package/dist/runtime/components/renderers/markdown-renderer.d.vue.ts +6 -0
- package/dist/runtime/components/renderers/markdown-renderer.vue +66 -0
- package/dist/runtime/components/renderers/markdown-renderer.vue.d.ts +6 -0
- package/dist/runtime/components/renderers/mermaid-diagram.d.vue.ts +7 -0
- package/dist/runtime/components/renderers/mermaid-diagram.vue +165 -0
- package/dist/runtime/components/renderers/mermaid-diagram.vue.d.ts +7 -0
- package/dist/runtime/components/renderers/text-renderer.d.vue.ts +7 -0
- package/dist/runtime/components/renderers/text-renderer.vue +70 -0
- package/dist/runtime/components/renderers/text-renderer.vue.d.ts +7 -0
- package/dist/runtime/components/renderers/video-renderer.d.vue.ts +6 -0
- package/dist/runtime/components/renderers/video-renderer.vue +43 -0
- package/dist/runtime/components/renderers/video-renderer.vue.d.ts +6 -0
- package/dist/runtime/components/text-preview.d.vue.ts +19 -0
- package/dist/runtime/components/text-preview.vue +105 -0
- package/dist/runtime/components/text-preview.vue.d.ts +19 -0
- package/dist/runtime/components/video-preview.d.vue.ts +14 -0
- package/dist/runtime/components/video-preview.vue +55 -0
- package/dist/runtime/components/video-preview.vue.d.ts +14 -0
- package/dist/runtime/composables/PageNavigation.d.ts +13 -0
- package/dist/runtime/composables/PageNavigation.js +18 -0
- package/dist/runtime/composables/useChat.d.ts +25 -0
- package/dist/runtime/composables/useChat.js +512 -0
- package/dist/runtime/composables/useChatApi.d.ts +6 -0
- package/dist/runtime/composables/useChatApi.js +28 -0
- package/dist/runtime/composables/useConversationFiles.d.ts +13 -0
- package/dist/runtime/composables/useConversationFiles.js +98 -0
- package/dist/runtime/composables/useConversationFilesPanel.d.ts +11 -0
- package/dist/runtime/composables/useConversationFilesPanel.js +35 -0
- package/dist/runtime/composables/useConversations.d.ts +15 -0
- package/dist/runtime/composables/useConversations.js +191 -0
- package/dist/runtime/composables/useDiagramExport.d.ts +11 -0
- package/dist/runtime/composables/useDiagramExport.js +186 -0
- package/dist/runtime/composables/useEmbedConfig.d.ts +13 -0
- package/dist/runtime/composables/useEmbedConfig.js +11 -0
- package/dist/runtime/composables/useFeatureFlags.d.ts +19 -0
- package/dist/runtime/composables/useFeatureFlags.js +67 -0
- package/dist/runtime/composables/useFileDrop.d.ts +17 -0
- package/dist/runtime/composables/useFileDrop.js +89 -0
- package/dist/runtime/composables/useFilePreviewPanel.d.ts +30 -0
- package/dist/runtime/composables/useFilePreviewPanel.js +42 -0
- package/dist/runtime/composables/useFileUpload.d.ts +7 -0
- package/dist/runtime/composables/useFileUpload.js +39 -0
- package/dist/runtime/composables/useGitHubSkills.d.ts +6 -0
- package/dist/runtime/composables/useGitHubSkills.js +68 -0
- package/dist/runtime/composables/useGitHubSkillsCallback.d.ts +5 -0
- package/dist/runtime/composables/useGitHubSkillsCallback.js +42 -0
- package/dist/runtime/composables/useIDB.d.ts +11 -0
- package/dist/runtime/composables/useIDB.js +57 -0
- package/dist/runtime/composables/useInputHistory.d.ts +7 -0
- package/dist/runtime/composables/useInputHistory.js +36 -0
- package/dist/runtime/composables/useKnowledgeSources.d.ts +6 -0
- package/dist/runtime/composables/useKnowledgeSources.js +15 -0
- package/dist/runtime/composables/useMediaCache.d.ts +13 -0
- package/dist/runtime/composables/useMediaCache.js +92 -0
- package/dist/runtime/composables/useMentionAutocomplete.d.ts +10 -0
- package/dist/runtime/composables/useMentionAutocomplete.js +272 -0
- package/dist/runtime/composables/useMermaidRenderer.d.ts +5 -0
- package/dist/runtime/composables/useMermaidRenderer.js +121 -0
- package/dist/runtime/composables/usePdf.d.ts +21 -0
- package/dist/runtime/composables/usePdf.js +138 -0
- package/dist/runtime/composables/usePolling.d.ts +12 -0
- package/dist/runtime/composables/usePolling.js +55 -0
- package/dist/runtime/composables/useSelectedModel.d.ts +4 -0
- package/dist/runtime/composables/useSelectedModel.js +46 -0
- package/dist/runtime/composables/useSplashScreen.d.ts +3 -0
- package/dist/runtime/composables/useSplashScreen.js +4 -0
- package/dist/runtime/composables/useStatusToast.d.ts +22 -0
- package/dist/runtime/composables/useStatusToast.js +40 -0
- package/dist/runtime/composables/useTela.d.ts +12 -0
- package/dist/runtime/composables/useTela.js +47 -0
- package/dist/runtime/composables/useToolFormatting.d.ts +5 -0
- package/dist/runtime/composables/useToolFormatting.js +61 -0
- package/dist/runtime/composables/useVault.d.ts +13 -0
- package/dist/runtime/composables/useVault.js +35 -0
- package/dist/runtime/composables/useVerbConjugation.d.ts +6 -0
- package/dist/runtime/composables/useVerbConjugation.js +256 -0
- package/dist/runtime/composables/useWorkspaceContextFiles.d.ts +19 -0
- package/dist/runtime/composables/useWorkspaceContextFiles.js +74 -0
- package/dist/runtime/composables/useWorkspaceCredentials.d.ts +34 -0
- package/dist/runtime/composables/useWorkspaceCredentials.js +175 -0
- package/dist/runtime/composables/useWorkspaceExternalSkills.d.ts +22 -0
- package/dist/runtime/composables/useWorkspaceExternalSkills.js +135 -0
- package/dist/runtime/composables/useWorkspaceKnowledgeSources.d.ts +11 -0
- package/dist/runtime/composables/useWorkspaceKnowledgeSources.js +88 -0
- package/dist/runtime/composables/useWorkspaceMembers.d.ts +13 -0
- package/dist/runtime/composables/useWorkspaceMembers.js +37 -0
- package/dist/runtime/composables/useWorkspacePersonalization.d.ts +6 -0
- package/dist/runtime/composables/useWorkspacePersonalization.js +19 -0
- package/dist/runtime/composables/useWorkspaceSettings.d.ts +30 -0
- package/dist/runtime/composables/useWorkspaceSettings.js +135 -0
- package/dist/runtime/composables/useWorkspaceTelaTools.d.ts +13 -0
- package/dist/runtime/composables/useWorkspaceTelaTools.js +91 -0
- package/dist/runtime/composables/useWorkspaces.d.ts +5 -0
- package/dist/runtime/composables/useWorkspaces.js +14 -0
- package/dist/runtime/composables/useZoomPan.d.ts +18 -0
- package/dist/runtime/composables/useZoomPan.js +130 -0
- package/dist/runtime/embed/components/ChatEmbed.d.vue.ts +23 -0
- package/dist/runtime/embed/components/ChatEmbed.vue +27 -0
- package/dist/runtime/embed/components/ChatEmbed.vue.d.ts +23 -0
- package/dist/runtime/embed/components/ChatEmbedInner.d.vue.ts +19 -0
- package/dist/runtime/embed/components/ChatEmbedInner.vue +604 -0
- package/dist/runtime/embed/components/ChatEmbedInner.vue.d.ts +19 -0
- package/dist/runtime/public/favicon.svg +4 -0
- package/dist/runtime/public/files/archive.svg +9 -0
- package/dist/runtime/public/files/audio.svg +4 -0
- package/dist/runtime/public/files/c.svg +4 -0
- package/dist/runtime/public/files/cpp.svg +6 -0
- package/dist/runtime/public/files/css.svg +4 -0
- package/dist/runtime/public/files/doc.svg +5 -0
- package/dist/runtime/public/files/generic.svg +7 -0
- package/dist/runtime/public/files/go.svg +6 -0
- package/dist/runtime/public/files/html.svg +4 -0
- package/dist/runtime/public/files/image.svg +3 -0
- package/dist/runtime/public/files/java.svg +7 -0
- package/dist/runtime/public/files/javascript.svg +4 -0
- package/dist/runtime/public/files/json.svg +5 -0
- package/dist/runtime/public/files/markdown.svg +5 -0
- package/dist/runtime/public/files/pdf.svg +5 -0
- package/dist/runtime/public/files/presentation.svg +5 -0
- package/dist/runtime/public/files/python.svg +5 -0
- package/dist/runtime/public/files/ruby.svg +5 -0
- package/dist/runtime/public/files/rust.svg +13 -0
- package/dist/runtime/public/files/sheet.svg +9 -0
- package/dist/runtime/public/files/shell.svg +5 -0
- package/dist/runtime/public/files/sql.svg +6 -0
- package/dist/runtime/public/files/typescript.svg +5 -0
- package/dist/runtime/public/files/video.svg +5 -0
- package/dist/runtime/public/files/yaml.svg +7 -0
- package/dist/runtime/public/github.svg +3 -0
- package/dist/runtime/public/robots.txt +1 -0
- package/dist/runtime/server/api/admin/trigger-usage-report.post.d.ts +2 -0
- package/dist/runtime/server/api/admin/trigger-usage-report.post.js +15 -0
- package/dist/runtime/server/api/chat/conversations/[id]/cancel.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/cancel.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/clear.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/clear.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/duplicate.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/duplicate.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/files.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/files.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.delete.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.delete.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.patch.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.patch.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/[messageId]/retry.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/[messageId]/retry.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/index.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/index.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/index.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/index.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/usage.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/usage.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/generate-title.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/generate-title.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/index.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/index.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/index.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/index.post.js +1 -0
- package/dist/runtime/server/api/chat/workspace/settings.get.d.ts +2 -0
- package/dist/runtime/server/api/chat/workspace/settings.get.js +14 -0
- package/dist/runtime/server/api/conversations/[id]/cancel.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/cancel.post.js +58 -0
- package/dist/runtime/server/api/conversations/[id]/clear.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/clear.post.js +38 -0
- package/dist/runtime/server/api/conversations/[id]/duplicate.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/duplicate.post.js +41 -0
- package/dist/runtime/server/api/conversations/[id]/files.get.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/files.get.js +131 -0
- package/dist/runtime/server/api/conversations/[id]/index.delete.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/index.delete.js +35 -0
- package/dist/runtime/server/api/conversations/[id]/index.get.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/index.get.js +34 -0
- package/dist/runtime/server/api/conversations/[id]/index.patch.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/index.patch.js +54 -0
- package/dist/runtime/server/api/conversations/[id]/messages/[messageId]/retry.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/messages/[messageId]/retry.post.js +168 -0
- package/dist/runtime/server/api/conversations/[id]/messages/index.get.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/messages/index.get.js +220 -0
- package/dist/runtime/server/api/conversations/[id]/messages/index.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/messages/index.post.js +181 -0
- package/dist/runtime/server/api/conversations/[id]/usage.get.d.ts +8 -0
- package/dist/runtime/server/api/conversations/[id]/usage.get.js +96 -0
- package/dist/runtime/server/api/conversations/generate-title.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/generate-title.post.js +49 -0
- package/dist/runtime/server/api/conversations/index.get.d.ts +2 -0
- package/dist/runtime/server/api/conversations/index.get.js +11 -0
- package/dist/runtime/server/api/conversations/index.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/index.post.js +41 -0
- package/dist/runtime/server/api/external-skills/discover.post.d.ts +2 -0
- package/dist/runtime/server/api/external-skills/discover.post.js +65 -0
- package/dist/runtime/server/api/github/disconnect.post.d.ts +2 -0
- package/dist/runtime/server/api/github/disconnect.post.js +21 -0
- package/dist/runtime/server/api/github/status.get.d.ts +2 -0
- package/dist/runtime/server/api/github/status.get.js +23 -0
- package/dist/runtime/server/api/tela/canvas.get.d.ts +2 -0
- package/dist/runtime/server/api/tela/canvas.get.js +18 -0
- package/dist/runtime/server/api/tela/projects.get.d.ts +2 -0
- package/dist/runtime/server/api/tela/projects.get.js +9 -0
- package/dist/runtime/server/api/tela/workspaces.get.d.ts +2 -0
- package/dist/runtime/server/api/tela/workspaces.get.js +9 -0
- package/dist/runtime/server/api/tela/workstations.get.d.ts +2 -0
- package/dist/runtime/server/api/tela/workstations.get.js +24 -0
- package/dist/runtime/server/api/vault/permalink-metadata.post.d.ts +2 -0
- package/dist/runtime/server/api/vault/permalink-metadata.post.js +77 -0
- package/dist/runtime/server/api/vault/resolve.post.d.ts +2 -0
- package/dist/runtime/server/api/vault/resolve.post.js +82 -0
- package/dist/runtime/server/api/vault/upload.post.d.ts +2 -0
- package/dist/runtime/server/api/vault/upload.post.js +55 -0
- package/dist/runtime/server/api/workspace/credentials/[id].delete.d.ts +2 -0
- package/dist/runtime/server/api/workspace/credentials/[id].delete.js +18 -0
- package/dist/runtime/server/api/workspace/credentials/[id].put.d.ts +2 -0
- package/dist/runtime/server/api/workspace/credentials/[id].put.js +28 -0
- package/dist/runtime/server/api/workspace/credentials/index.get.d.ts +2 -0
- package/dist/runtime/server/api/workspace/credentials/index.get.js +10 -0
- package/dist/runtime/server/api/workspace/credentials/index.post.d.ts +2 -0
- package/dist/runtime/server/api/workspace/credentials/index.post.js +33 -0
- package/dist/runtime/server/api/workspace/settings.get.d.ts +2 -0
- package/dist/runtime/server/api/workspace/settings.get.js +27 -0
- package/dist/runtime/server/api/workspace/settings.patch.d.ts +2 -0
- package/dist/runtime/server/api/workspace/settings.patch.js +86 -0
- package/dist/runtime/server/api/workspace/usage.get.d.ts +48 -0
- package/dist/runtime/server/api/workspace/usage.get.js +186 -0
- package/dist/runtime/server/db/index.d.ts +6 -0
- package/dist/runtime/server/db/index.js +19 -0
- package/dist/runtime/server/db/schema/conversation-usage.d.ts +438 -0
- package/dist/runtime/server/db/schema/conversation-usage.js +34 -0
- package/dist/runtime/server/db/schema/conversations.d.ts +197 -0
- package/dist/runtime/server/db/schema/conversations.js +18 -0
- package/dist/runtime/server/db/schema/external-skills.d.ts +235 -0
- package/dist/runtime/server/db/schema/external-skills.js +26 -0
- package/dist/runtime/server/db/schema/index.d.ts +5 -0
- package/dist/runtime/server/db/schema/index.js +5 -0
- package/dist/runtime/server/db/schema/messages.d.ts +221 -0
- package/dist/runtime/server/db/schema/messages.js +19 -0
- package/dist/runtime/server/db/schema/workspace-settings.d.ts +164 -0
- package/dist/runtime/server/db/schema/workspace-settings.js +15 -0
- package/dist/runtime/server/db/schema.d.ts +1 -0
- package/dist/runtime/server/db/schema.js +1 -0
- package/dist/runtime/server/middleware/domain-validation.d.ts +2 -0
- package/dist/runtime/server/middleware/domain-validation.js +22 -0
- package/dist/runtime/server/middleware/request-logger.d.ts +2 -0
- package/dist/runtime/server/middleware/request-logger.js +15 -0
- package/dist/runtime/server/prompts/base-system.d.ts +2 -0
- package/dist/runtime/server/prompts/base-system.js +100 -0
- package/dist/runtime/server/prompts/base-system.md +99 -0
- package/dist/runtime/server/prompts/knowledge-sources.d.ts +2 -0
- package/dist/runtime/server/prompts/knowledge-sources.js +37 -0
- package/dist/runtime/server/prompts/knowledge-sources.md +36 -0
- package/dist/runtime/server/tasks/send-daily-usage-report.d.ts +2 -0
- package/dist/runtime/server/tasks/send-daily-usage-report.js +73 -0
- package/dist/runtime/server/tsconfig.json +21 -0
- package/dist/runtime/server/utils/agent-api.d.ts +39 -0
- package/dist/runtime/server/utils/agent-api.js +169 -0
- package/dist/runtime/server/utils/auth-api.d.ts +1 -0
- package/dist/runtime/server/utils/auth-api.js +25 -0
- package/dist/runtime/server/utils/auth.d.ts +17 -0
- package/dist/runtime/server/utils/auth.js +28 -0
- package/dist/runtime/server/utils/billing.d.ts +37 -0
- package/dist/runtime/server/utils/billing.js +68 -0
- package/dist/runtime/server/utils/chat-context.d.ts +9 -0
- package/dist/runtime/server/utils/chat-context.js +24 -0
- package/dist/runtime/server/utils/chat-message-builder.d.ts +4 -0
- package/dist/runtime/server/utils/chat-message-builder.js +39 -0
- package/dist/runtime/server/utils/chat-prompts.d.ts +7 -0
- package/dist/runtime/server/utils/chat-prompts.js +9 -0
- package/dist/runtime/server/utils/chat-workspace-settings.d.ts +16 -0
- package/dist/runtime/server/utils/chat-workspace-settings.js +115 -0
- package/dist/runtime/server/utils/external-skills.d.ts +2 -0
- package/dist/runtime/server/utils/external-skills.js +15 -0
- package/dist/runtime/server/utils/logger.d.ts +2 -0
- package/dist/runtime/server/utils/logger.js +12 -0
- package/dist/runtime/server/utils/slack.d.ts +32 -0
- package/dist/runtime/server/utils/slack.js +102 -0
- package/dist/runtime/server/utils/tela-api.d.ts +2 -0
- package/dist/runtime/server/utils/tela-api.js +29 -0
- package/dist/runtime/server/utils/vault.d.ts +3 -0
- package/dist/runtime/server/utils/vault.js +52 -0
- package/dist/runtime/server/utils/workspace-settings-resolver.stub.d.ts +2 -0
- package/dist/runtime/server/utils/workspace-settings-resolver.stub.js +1 -0
- package/dist/runtime/server/utils/workspace.d.ts +4 -0
- package/dist/runtime/server/utils/workspace.js +21 -0
- package/dist/runtime/types/agent.d.ts +168 -0
- package/dist/runtime/types/agent.js +95 -0
- package/dist/runtime/types/chat-workspace-settings-resolver.d.ts +4 -0
- package/dist/runtime/types/chat.d.ts +81 -0
- package/dist/runtime/types/chat.js +12 -0
- package/dist/runtime/types/credential.d.ts +8 -0
- package/dist/runtime/types/credential.js +0 -0
- package/dist/runtime/types/csv.d.ts +4 -0
- package/dist/runtime/types/csv.js +0 -0
- package/dist/runtime/types/external-skills.d.ts +8 -0
- package/dist/runtime/types/external-skills.js +0 -0
- package/dist/runtime/types/feature-flags.d.ts +7 -0
- package/dist/runtime/types/feature-flags.js +6 -0
- package/dist/runtime/types/reasoning.d.ts +17 -0
- package/dist/runtime/types/reasoning.js +0 -0
- package/dist/runtime/types/tela.d.ts +46 -0
- package/dist/runtime/types/tela.js +0 -0
- package/dist/runtime/types/workspace.d.ts +20 -0
- package/dist/runtime/types/workspace.js +0 -0
- package/dist/runtime/utils/calculate-usage.d.ts +48 -0
- package/dist/runtime/utils/calculate-usage.js +63 -0
- package/dist/runtime/utils/code-detection.d.ts +1 -0
- package/dist/runtime/utils/code-detection.js +24 -0
- package/dist/runtime/utils/export-conversation.d.ts +2 -0
- package/dist/runtime/utils/export-conversation.js +43 -0
- package/dist/runtime/utils/file.d.ts +46 -0
- package/dist/runtime/utils/file.js +500 -0
- package/dist/runtime/utils/format-time.d.ts +22 -0
- package/dist/runtime/utils/format-time.js +96 -0
- package/dist/runtime/utils/markdown-nodes.d.ts +22 -0
- package/dist/runtime/utils/markdown-nodes.js +40 -0
- package/dist/runtime/utils/string.d.ts +4 -0
- package/dist/runtime/utils/string.js +5 -0
- package/dist/runtime/utils/tela-chat.d.ts +19 -0
- package/dist/runtime/utils/tela-chat.js +20 -0
- package/dist/types.d.mts +7 -0
- package/package.json +72 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
const MIN_PANEL_WIDTH = 320;
|
|
2
|
+
const MAX_PANEL_WIDTH = 600;
|
|
3
|
+
export function useConversationFilesPanel() {
|
|
4
|
+
const isOpen = useState("filesPanel:isOpen", () => false);
|
|
5
|
+
const conversationId = useState("filesPanel:conversationId", () => null);
|
|
6
|
+
const panelWidth = useState("filesPanel:width", () => 400);
|
|
7
|
+
function openPanel(id) {
|
|
8
|
+
conversationId.value = id;
|
|
9
|
+
isOpen.value = true;
|
|
10
|
+
}
|
|
11
|
+
function closePanel() {
|
|
12
|
+
isOpen.value = false;
|
|
13
|
+
}
|
|
14
|
+
function togglePanel(id) {
|
|
15
|
+
if (isOpen.value && conversationId.value === id) {
|
|
16
|
+
closePanel();
|
|
17
|
+
} else {
|
|
18
|
+
openPanel(id);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
function setPanelWidth(width) {
|
|
22
|
+
panelWidth.value = Math.min(Math.max(width, MIN_PANEL_WIDTH), MAX_PANEL_WIDTH);
|
|
23
|
+
}
|
|
24
|
+
return {
|
|
25
|
+
isOpen: readonly(isOpen),
|
|
26
|
+
conversationId: readonly(conversationId),
|
|
27
|
+
panelWidth: readonly(panelWidth),
|
|
28
|
+
minPanelWidth: MIN_PANEL_WIDTH,
|
|
29
|
+
maxPanelWidth: MAX_PANEL_WIDTH,
|
|
30
|
+
openPanel,
|
|
31
|
+
closePanel,
|
|
32
|
+
togglePanel,
|
|
33
|
+
setPanelWidth
|
|
34
|
+
};
|
|
35
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { DeepReadonly } from 'vue';
|
|
2
|
+
import type { Conversation, ModelOption } from '../types/chat.js';
|
|
3
|
+
export declare function useConversations(): {
|
|
4
|
+
conversations: any;
|
|
5
|
+
loading: any;
|
|
6
|
+
error: any;
|
|
7
|
+
fetchConversations: () => Promise<void>;
|
|
8
|
+
createConversation: (options?: {
|
|
9
|
+
model?: ModelOption | null;
|
|
10
|
+
}) => Promise<Conversation | null>;
|
|
11
|
+
deleteConversation: (id: string) => Promise<boolean>;
|
|
12
|
+
renameConversation: (id: string, title: string) => Promise<boolean>;
|
|
13
|
+
duplicateConversation: (id: string) => Promise<Conversation | null>;
|
|
14
|
+
updateConversationInList: (updated: Conversation | DeepReadonly<Conversation>) => void;
|
|
15
|
+
};
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
import * as Sentry from "@sentry/nuxt";
|
|
2
|
+
export function useConversations() {
|
|
3
|
+
const chatApi = useChatApi();
|
|
4
|
+
const embedConfig = useEmbedConfig();
|
|
5
|
+
const conversationBuckets = useState("conversations", () => ({}));
|
|
6
|
+
const loadingBuckets = useState("conversations-loading", () => ({}));
|
|
7
|
+
const errorBuckets = useState("conversations-error", () => ({}));
|
|
8
|
+
const workspaceScope = computed(() => embedConfig?.workspaceId.value.trim() || "default");
|
|
9
|
+
const conversations = computed({
|
|
10
|
+
get: () => conversationBuckets.value[workspaceScope.value] ?? [],
|
|
11
|
+
set: (value) => {
|
|
12
|
+
conversationBuckets.value = {
|
|
13
|
+
...conversationBuckets.value,
|
|
14
|
+
[workspaceScope.value]: value
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
const loading = computed({
|
|
19
|
+
get: () => loadingBuckets.value[workspaceScope.value] ?? false,
|
|
20
|
+
set: (value) => {
|
|
21
|
+
loadingBuckets.value = {
|
|
22
|
+
...loadingBuckets.value,
|
|
23
|
+
[workspaceScope.value]: value
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
const error = computed({
|
|
28
|
+
get: () => errorBuckets.value[workspaceScope.value] ?? null,
|
|
29
|
+
set: (value) => {
|
|
30
|
+
errorBuckets.value = {
|
|
31
|
+
...errorBuckets.value,
|
|
32
|
+
[workspaceScope.value]: value
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
function cloneAppliedSettingsSnapshot(snapshot) {
|
|
37
|
+
if (!snapshot)
|
|
38
|
+
return null;
|
|
39
|
+
return JSON.parse(JSON.stringify(snapshot));
|
|
40
|
+
}
|
|
41
|
+
const fetchConversations = async () => {
|
|
42
|
+
loading.value = true;
|
|
43
|
+
error.value = null;
|
|
44
|
+
try {
|
|
45
|
+
const data = await $fetch(
|
|
46
|
+
chatApi.path("/conversations"),
|
|
47
|
+
chatApi.withChatHeaders()
|
|
48
|
+
);
|
|
49
|
+
conversations.value = data;
|
|
50
|
+
} catch (err) {
|
|
51
|
+
const message = err instanceof Error ? err.message : "Erro ao carregar conversas";
|
|
52
|
+
error.value = message;
|
|
53
|
+
Sentry.captureException(err);
|
|
54
|
+
} finally {
|
|
55
|
+
loading.value = false;
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
const createConversation = async (options) => {
|
|
59
|
+
error.value = null;
|
|
60
|
+
try {
|
|
61
|
+
const conversation = await $fetch(
|
|
62
|
+
chatApi.path("/conversations"),
|
|
63
|
+
chatApi.withChatHeaders({
|
|
64
|
+
method: "POST",
|
|
65
|
+
body: options?.model ? { model: options.model } : void 0
|
|
66
|
+
})
|
|
67
|
+
);
|
|
68
|
+
conversations.value = [conversation, ...conversations.value];
|
|
69
|
+
return conversation;
|
|
70
|
+
} catch (err) {
|
|
71
|
+
const message = err instanceof Error ? err.message : "Erro ao criar conversa";
|
|
72
|
+
error.value = message;
|
|
73
|
+
return null;
|
|
74
|
+
}
|
|
75
|
+
};
|
|
76
|
+
const deleteConversation = async (id) => {
|
|
77
|
+
error.value = null;
|
|
78
|
+
const statusToast = useStatusToast();
|
|
79
|
+
const deletedConversation = conversations.value.find((c) => c.id === id);
|
|
80
|
+
conversations.value = conversations.value.filter((c) => c.id !== id);
|
|
81
|
+
try {
|
|
82
|
+
await $fetch(
|
|
83
|
+
chatApi.path(`/conversations/${id}`),
|
|
84
|
+
chatApi.withChatHeaders({
|
|
85
|
+
method: "DELETE"
|
|
86
|
+
})
|
|
87
|
+
);
|
|
88
|
+
statusToast.update({
|
|
89
|
+
text: "Conversa exclu\xEDda",
|
|
90
|
+
icon: "i-ph-check"
|
|
91
|
+
});
|
|
92
|
+
return true;
|
|
93
|
+
} catch (err) {
|
|
94
|
+
if (deletedConversation) {
|
|
95
|
+
conversations.value = [...conversations.value, deletedConversation].sort(
|
|
96
|
+
(a, b) => new Date(b.updatedAt).getTime() - new Date(a.updatedAt).getTime()
|
|
97
|
+
);
|
|
98
|
+
}
|
|
99
|
+
const message = err instanceof Error ? err.message : "Erro ao deletar conversa";
|
|
100
|
+
error.value = message;
|
|
101
|
+
statusToast.update({
|
|
102
|
+
text: "Erro ao excluir conversa",
|
|
103
|
+
icon: "i-ph-warning"
|
|
104
|
+
});
|
|
105
|
+
return false;
|
|
106
|
+
}
|
|
107
|
+
};
|
|
108
|
+
const updateConversationInList = (updated) => {
|
|
109
|
+
const index = conversations.value.findIndex((c) => c.id === updated.id);
|
|
110
|
+
if (index !== -1) {
|
|
111
|
+
const nextConversations = [...conversations.value];
|
|
112
|
+
nextConversations[index] = {
|
|
113
|
+
id: updated.id,
|
|
114
|
+
workspaceId: updated.workspaceId,
|
|
115
|
+
userId: updated.userId,
|
|
116
|
+
title: updated.title,
|
|
117
|
+
threadSessionId: updated.threadSessionId,
|
|
118
|
+
model: updated.model,
|
|
119
|
+
appliedSettingsAt: updated.appliedSettingsAt,
|
|
120
|
+
appliedSettingsSnapshot: cloneAppliedSettingsSnapshot(updated.appliedSettingsSnapshot),
|
|
121
|
+
createdBy: updated.createdBy,
|
|
122
|
+
createdAt: updated.createdAt,
|
|
123
|
+
updatedAt: updated.updatedAt
|
|
124
|
+
};
|
|
125
|
+
conversations.value = nextConversations.sort(
|
|
126
|
+
(a, b) => new Date(b.updatedAt).getTime() - new Date(a.updatedAt).getTime()
|
|
127
|
+
);
|
|
128
|
+
}
|
|
129
|
+
};
|
|
130
|
+
const renameConversation = async (id, title) => {
|
|
131
|
+
error.value = null;
|
|
132
|
+
const conversation = conversations.value.find((c) => c.id === id);
|
|
133
|
+
if (!conversation)
|
|
134
|
+
return false;
|
|
135
|
+
const previousTitle = conversation.title;
|
|
136
|
+
updateConversationInList({ ...conversation, title, updatedAt: /* @__PURE__ */ new Date() });
|
|
137
|
+
try {
|
|
138
|
+
await $fetch(
|
|
139
|
+
chatApi.path(`/conversations/${id}`),
|
|
140
|
+
chatApi.withChatHeaders({
|
|
141
|
+
method: "PATCH",
|
|
142
|
+
body: { title }
|
|
143
|
+
})
|
|
144
|
+
);
|
|
145
|
+
return true;
|
|
146
|
+
} catch (err) {
|
|
147
|
+
updateConversationInList({ ...conversation, title: previousTitle });
|
|
148
|
+
const message = err instanceof Error ? err.message : "Erro ao renomear conversa";
|
|
149
|
+
error.value = message;
|
|
150
|
+
Sentry.captureException(err);
|
|
151
|
+
return false;
|
|
152
|
+
}
|
|
153
|
+
};
|
|
154
|
+
const duplicateConversation = async (id) => {
|
|
155
|
+
error.value = null;
|
|
156
|
+
const statusToast = useStatusToast();
|
|
157
|
+
try {
|
|
158
|
+
const duplicated = await $fetch(
|
|
159
|
+
chatApi.path(`/conversations/${id}/duplicate`),
|
|
160
|
+
chatApi.withChatHeaders({
|
|
161
|
+
method: "POST"
|
|
162
|
+
})
|
|
163
|
+
);
|
|
164
|
+
conversations.value = [duplicated, ...conversations.value];
|
|
165
|
+
statusToast.update({
|
|
166
|
+
text: "Conversa duplicada",
|
|
167
|
+
icon: "i-ph-check"
|
|
168
|
+
});
|
|
169
|
+
return duplicated;
|
|
170
|
+
} catch (err) {
|
|
171
|
+
const message = err instanceof Error ? err.message : "Erro ao duplicar conversa";
|
|
172
|
+
error.value = message;
|
|
173
|
+
statusToast.update({
|
|
174
|
+
text: "Erro ao duplicar conversa",
|
|
175
|
+
icon: "i-ph-warning"
|
|
176
|
+
});
|
|
177
|
+
return null;
|
|
178
|
+
}
|
|
179
|
+
};
|
|
180
|
+
return {
|
|
181
|
+
conversations: readonly(conversations),
|
|
182
|
+
loading: readonly(loading),
|
|
183
|
+
error: readonly(error),
|
|
184
|
+
fetchConversations,
|
|
185
|
+
createConversation,
|
|
186
|
+
deleteConversation,
|
|
187
|
+
renameConversation,
|
|
188
|
+
duplicateConversation,
|
|
189
|
+
updateConversationInList
|
|
190
|
+
};
|
|
191
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare function useDiagramExport(diagramSource: Ref<string>, renderedSvg: Ref<string>, svgContainerRef: Ref<HTMLElement | null>, svgSize: Ref<{
|
|
2
|
+
width: number;
|
|
3
|
+
height: number;
|
|
4
|
+
}>): {
|
|
5
|
+
copyState: any;
|
|
6
|
+
exportState: any;
|
|
7
|
+
copyLabel: any;
|
|
8
|
+
exportLabel: any;
|
|
9
|
+
handleCopy: () => Promise<void>;
|
|
10
|
+
handleDownloadJpeg: () => Promise<void>;
|
|
11
|
+
};
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
import { useClipboard } from "@vueuse/core";
|
|
2
|
+
const EXPORT_PADDING = 24;
|
|
3
|
+
const EXPORT_MIN_LONGEST_EDGE = 2400;
|
|
4
|
+
const EXPORT_MAX_SCALE = 4;
|
|
5
|
+
function withSvgNamespace(svgMarkup) {
|
|
6
|
+
if (svgMarkup.includes("xmlns=")) {
|
|
7
|
+
return svgMarkup;
|
|
8
|
+
}
|
|
9
|
+
return svgMarkup.replace("<svg", '<svg xmlns="http://www.w3.org/2000/svg"');
|
|
10
|
+
}
|
|
11
|
+
function buildExportableSvg(container) {
|
|
12
|
+
const svgElement = container?.querySelector("svg");
|
|
13
|
+
if (!svgElement) {
|
|
14
|
+
return null;
|
|
15
|
+
}
|
|
16
|
+
const exportSvg = svgElement.cloneNode(true);
|
|
17
|
+
exportSvg.setAttribute("xmlns", "http://www.w3.org/2000/svg");
|
|
18
|
+
exportSvg.setAttribute("xmlns:xlink", "http://www.w3.org/1999/xlink");
|
|
19
|
+
exportSvg.setAttribute("preserveAspectRatio", "xMidYMid meet");
|
|
20
|
+
exportSvg.style.background = "#ffffff";
|
|
21
|
+
exportSvg.style.maxWidth = "none";
|
|
22
|
+
exportSvg.style.height = "auto";
|
|
23
|
+
try {
|
|
24
|
+
const box = svgElement.getBBox();
|
|
25
|
+
if (box.width > 0 && box.height > 0) {
|
|
26
|
+
const width2 = Math.ceil(box.width + EXPORT_PADDING * 2);
|
|
27
|
+
const height2 = Math.ceil(box.height + EXPORT_PADDING * 2);
|
|
28
|
+
const minX = Math.floor(box.x - EXPORT_PADDING);
|
|
29
|
+
const minY = Math.floor(box.y - EXPORT_PADDING);
|
|
30
|
+
exportSvg.setAttribute("viewBox", `${minX} ${minY} ${width2} ${height2}`);
|
|
31
|
+
exportSvg.setAttribute("width", `${width2}`);
|
|
32
|
+
exportSvg.setAttribute("height", `${height2}`);
|
|
33
|
+
return {
|
|
34
|
+
markup: withSvgNamespace(new XMLSerializer().serializeToString(exportSvg)),
|
|
35
|
+
width: width2,
|
|
36
|
+
height: height2
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
} catch {
|
|
40
|
+
}
|
|
41
|
+
const viewBox = svgElement.viewBox?.baseVal;
|
|
42
|
+
if (viewBox && viewBox.width > 0 && viewBox.height > 0) {
|
|
43
|
+
const width2 = Math.ceil(viewBox.width);
|
|
44
|
+
const height2 = Math.ceil(viewBox.height);
|
|
45
|
+
exportSvg.setAttribute("viewBox", `${viewBox.x} ${viewBox.y} ${viewBox.width} ${viewBox.height}`);
|
|
46
|
+
exportSvg.setAttribute("width", `${width2}`);
|
|
47
|
+
exportSvg.setAttribute("height", `${height2}`);
|
|
48
|
+
return {
|
|
49
|
+
markup: withSvgNamespace(new XMLSerializer().serializeToString(exportSvg)),
|
|
50
|
+
width: width2,
|
|
51
|
+
height: height2
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
const width = Number.parseFloat(svgElement.getAttribute("width") ?? "");
|
|
55
|
+
const height = Number.parseFloat(svgElement.getAttribute("height") ?? "");
|
|
56
|
+
if (Number.isFinite(width) && width > 0 && Number.isFinite(height) && height > 0) {
|
|
57
|
+
exportSvg.setAttribute("width", `${width}`);
|
|
58
|
+
exportSvg.setAttribute("height", `${height}`);
|
|
59
|
+
return {
|
|
60
|
+
markup: withSvgNamespace(new XMLSerializer().serializeToString(exportSvg)),
|
|
61
|
+
width,
|
|
62
|
+
height
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
return null;
|
|
66
|
+
}
|
|
67
|
+
function extractDiagramTitle(source) {
|
|
68
|
+
const frontMatterMatch = source.match(/^---\s*\n[\s\S]*?title\s*:\s*(.+?)\s*\n[\s\S]*?---/i);
|
|
69
|
+
if (frontMatterMatch?.[1]) {
|
|
70
|
+
return frontMatterMatch[1];
|
|
71
|
+
}
|
|
72
|
+
const titleMatch = source.match(/^\s*title\s+(.+)$/m);
|
|
73
|
+
if (titleMatch?.[1]) {
|
|
74
|
+
return titleMatch[1].trim();
|
|
75
|
+
}
|
|
76
|
+
const accTitleMatch = source.match(/^\s*accTitle\s*:\s*(.+)$/m);
|
|
77
|
+
if (accTitleMatch?.[1]) {
|
|
78
|
+
return accTitleMatch[1].trim();
|
|
79
|
+
}
|
|
80
|
+
return null;
|
|
81
|
+
}
|
|
82
|
+
function slugify(text) {
|
|
83
|
+
return text.toLowerCase().replace(/[^\w\s-]/g, "").replace(/[\s_]+/g, "-").replace(/^-+|-+$/g, "").slice(0, 80);
|
|
84
|
+
}
|
|
85
|
+
export function useDiagramExport(diagramSource, renderedSvg, svgContainerRef, svgSize) {
|
|
86
|
+
const { copy } = useClipboard();
|
|
87
|
+
const statusToast = useStatusToast();
|
|
88
|
+
const copyState = ref("idle");
|
|
89
|
+
const exportState = ref("idle");
|
|
90
|
+
const downloadFilename = computed(() => {
|
|
91
|
+
const title = extractDiagramTitle(diagramSource.value);
|
|
92
|
+
return title ? `${slugify(title)}.jpg` : "diagram.jpg";
|
|
93
|
+
});
|
|
94
|
+
const copyLabel = computed(() => copyState.value === "done" ? "Copiado" : "Copiar c\xF3digo");
|
|
95
|
+
const exportLabel = computed(() => {
|
|
96
|
+
if (exportState.value === "running") {
|
|
97
|
+
return "Exportando...";
|
|
98
|
+
}
|
|
99
|
+
if (exportState.value === "done") {
|
|
100
|
+
return "Baixado";
|
|
101
|
+
}
|
|
102
|
+
return "Baixar JPEG";
|
|
103
|
+
});
|
|
104
|
+
async function handleCopy() {
|
|
105
|
+
if (!diagramSource.value || !import.meta.client) {
|
|
106
|
+
return;
|
|
107
|
+
}
|
|
108
|
+
try {
|
|
109
|
+
await copy(diagramSource.value);
|
|
110
|
+
copyState.value = "done";
|
|
111
|
+
statusToast.update({ text: "C\xF3digo copiado", icon: "i-ph-check" });
|
|
112
|
+
} catch {
|
|
113
|
+
copyState.value = "error";
|
|
114
|
+
statusToast.update({ text: "Erro ao copiar c\xF3digo", icon: "i-ph-warning" });
|
|
115
|
+
} finally {
|
|
116
|
+
window.setTimeout(() => {
|
|
117
|
+
copyState.value = "idle";
|
|
118
|
+
}, 1600);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
async function handleDownloadJpeg() {
|
|
122
|
+
if (!renderedSvg.value || !import.meta.client || exportState.value === "running") {
|
|
123
|
+
return;
|
|
124
|
+
}
|
|
125
|
+
exportState.value = "running";
|
|
126
|
+
try {
|
|
127
|
+
const exportSvg = buildExportableSvg(svgContainerRef.value);
|
|
128
|
+
const svgMarkup = exportSvg?.markup ?? withSvgNamespace(renderedSvg.value);
|
|
129
|
+
const svgBlob = new Blob([svgMarkup], { type: "image/svg+xml;charset=utf-8" });
|
|
130
|
+
const svgUrl = URL.createObjectURL(svgBlob);
|
|
131
|
+
try {
|
|
132
|
+
const image = await new Promise((resolve, reject) => {
|
|
133
|
+
const img = new Image();
|
|
134
|
+
img.onload = () => resolve(img);
|
|
135
|
+
img.onerror = () => reject(new Error("Unable to load SVG for export"));
|
|
136
|
+
img.src = svgUrl;
|
|
137
|
+
});
|
|
138
|
+
const baseWidth = Math.max(1, Math.round(exportSvg?.width || image.naturalWidth || svgSize.value.width));
|
|
139
|
+
const baseHeight = Math.max(1, Math.round(exportSvg?.height || image.naturalHeight || svgSize.value.height));
|
|
140
|
+
const longestEdge = Math.max(baseWidth, baseHeight);
|
|
141
|
+
const scale = Math.min(
|
|
142
|
+
EXPORT_MAX_SCALE,
|
|
143
|
+
Math.max(window.devicePixelRatio || 1, EXPORT_MIN_LONGEST_EDGE / longestEdge)
|
|
144
|
+
);
|
|
145
|
+
const canvas = document.createElement("canvas");
|
|
146
|
+
canvas.width = Math.max(1, Math.round(baseWidth * scale));
|
|
147
|
+
canvas.height = Math.max(1, Math.round(baseHeight * scale));
|
|
148
|
+
const context = canvas.getContext("2d");
|
|
149
|
+
if (!context) {
|
|
150
|
+
throw new Error("Canvas export is not available");
|
|
151
|
+
}
|
|
152
|
+
context.scale(scale, scale);
|
|
153
|
+
context.fillStyle = "#ffffff";
|
|
154
|
+
context.fillRect(0, 0, baseWidth, baseHeight);
|
|
155
|
+
context.drawImage(image, 0, 0, baseWidth, baseHeight);
|
|
156
|
+
const jpegBlob = await new Promise((resolve) => canvas.toBlob(resolve, "image/jpeg", 0.94));
|
|
157
|
+
if (!jpegBlob) {
|
|
158
|
+
throw new Error("JPEG export failed");
|
|
159
|
+
}
|
|
160
|
+
const downloadUrl = URL.createObjectURL(jpegBlob);
|
|
161
|
+
const anchor = document.createElement("a");
|
|
162
|
+
anchor.href = downloadUrl;
|
|
163
|
+
anchor.download = downloadFilename.value;
|
|
164
|
+
anchor.click();
|
|
165
|
+
URL.revokeObjectURL(downloadUrl);
|
|
166
|
+
exportState.value = "done";
|
|
167
|
+
} finally {
|
|
168
|
+
URL.revokeObjectURL(svgUrl);
|
|
169
|
+
}
|
|
170
|
+
} catch {
|
|
171
|
+
exportState.value = "error";
|
|
172
|
+
} finally {
|
|
173
|
+
window.setTimeout(() => {
|
|
174
|
+
exportState.value = "idle";
|
|
175
|
+
}, 1800);
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
return {
|
|
179
|
+
copyState,
|
|
180
|
+
exportState,
|
|
181
|
+
copyLabel,
|
|
182
|
+
exportLabel,
|
|
183
|
+
handleCopy,
|
|
184
|
+
handleDownloadJpeg
|
|
185
|
+
};
|
|
186
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { DeepReadonly, Ref } from 'vue';
|
|
2
|
+
import type { WorkspaceSettings } from './useWorkspaceSettings.js';
|
|
3
|
+
export type EmbedConfig = {
|
|
4
|
+
workspaceId: Ref<string>;
|
|
5
|
+
workspaceSettings: Ref<DeepReadonly<WorkspaceSettings> | WorkspaceSettings | null | undefined>;
|
|
6
|
+
hideSidebar: Ref<boolean>;
|
|
7
|
+
};
|
|
8
|
+
export declare function provideEmbedConfig(props: {
|
|
9
|
+
workspaceId: string;
|
|
10
|
+
workspaceSettings?: DeepReadonly<WorkspaceSettings> | WorkspaceSettings | null;
|
|
11
|
+
hideSidebar?: boolean;
|
|
12
|
+
}): void;
|
|
13
|
+
export declare function useEmbedConfig(): EmbedConfig | null;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
const EMBED_CONFIG_KEY = "embed-config";
|
|
2
|
+
export function provideEmbedConfig(props) {
|
|
3
|
+
provide(EMBED_CONFIG_KEY, {
|
|
4
|
+
workspaceId: computed(() => props.workspaceId),
|
|
5
|
+
workspaceSettings: toRef(props, "workspaceSettings"),
|
|
6
|
+
hideSidebar: computed(() => props.hideSidebar ?? true)
|
|
7
|
+
});
|
|
8
|
+
}
|
|
9
|
+
export function useEmbedConfig() {
|
|
10
|
+
return inject(EMBED_CONFIG_KEY, null);
|
|
11
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { FeatureFlagKey } from '../types/feature-flags.js';
|
|
2
|
+
type AuthUser = {
|
|
3
|
+
id: string;
|
|
4
|
+
email: string;
|
|
5
|
+
name: string;
|
|
6
|
+
image?: string | null;
|
|
7
|
+
};
|
|
8
|
+
type Workspace = {
|
|
9
|
+
id: string;
|
|
10
|
+
name?: string | null;
|
|
11
|
+
};
|
|
12
|
+
export declare function initPosthog(publicKey: string, host: string, defaults: string): Promise<void>;
|
|
13
|
+
export declare function identifyPosthogUser(user: AuthUser): void;
|
|
14
|
+
export declare function resetPosthogIdentity(): void;
|
|
15
|
+
export declare function setPosthogWorkspace(workspace: Workspace): void;
|
|
16
|
+
export declare function useFeatureFlags(): {
|
|
17
|
+
isFeatureEnabled: (flag: FeatureFlagKey) => boolean;
|
|
18
|
+
};
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
const posthogClient = shallowRef(null);
|
|
2
|
+
const flagsVersion = ref(0);
|
|
3
|
+
let identifiedUserFingerprint = null;
|
|
4
|
+
export async function initPosthog(publicKey, host, defaults) {
|
|
5
|
+
if (posthogClient.value)
|
|
6
|
+
return;
|
|
7
|
+
try {
|
|
8
|
+
const { default: posthog } = await import("posthog-js");
|
|
9
|
+
const client = posthog.init(publicKey, {
|
|
10
|
+
api_host: host,
|
|
11
|
+
defaults,
|
|
12
|
+
person_profiles: "identified_only",
|
|
13
|
+
loaded: (c) => {
|
|
14
|
+
if (import.meta.dev)
|
|
15
|
+
c.debug();
|
|
16
|
+
c.onFeatureFlags(() => {
|
|
17
|
+
flagsVersion.value++;
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
}) ?? null;
|
|
21
|
+
posthogClient.value = client;
|
|
22
|
+
} catch (error) {
|
|
23
|
+
console.error("PostHog initialization failed:", error);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export function identifyPosthogUser(user) {
|
|
27
|
+
const client = posthogClient.value;
|
|
28
|
+
if (!client)
|
|
29
|
+
return;
|
|
30
|
+
const fingerprint = [user.id, user.email, user.name, user.image].filter(Boolean).join("|");
|
|
31
|
+
if (!fingerprint || identifiedUserFingerprint === fingerprint)
|
|
32
|
+
return;
|
|
33
|
+
client.identify(user.id, {
|
|
34
|
+
email: user.email,
|
|
35
|
+
name: user.name,
|
|
36
|
+
avatar_url: user.image ?? void 0
|
|
37
|
+
});
|
|
38
|
+
identifiedUserFingerprint = fingerprint;
|
|
39
|
+
}
|
|
40
|
+
export function resetPosthogIdentity() {
|
|
41
|
+
posthogClient.value?.reset();
|
|
42
|
+
identifiedUserFingerprint = null;
|
|
43
|
+
}
|
|
44
|
+
export function setPosthogWorkspace(workspace) {
|
|
45
|
+
const client = posthogClient.value;
|
|
46
|
+
if (!client)
|
|
47
|
+
return;
|
|
48
|
+
client.group("workspace", workspace.id, {
|
|
49
|
+
name: workspace.name ?? workspace.id
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
export function useFeatureFlags() {
|
|
53
|
+
const isFeatureEnabled = (flag) => {
|
|
54
|
+
void flagsVersion.value;
|
|
55
|
+
try {
|
|
56
|
+
const client = posthogClient.value;
|
|
57
|
+
if (!client)
|
|
58
|
+
return false;
|
|
59
|
+
return client.isFeatureEnabled(flag) ?? false;
|
|
60
|
+
} catch {
|
|
61
|
+
return false;
|
|
62
|
+
}
|
|
63
|
+
};
|
|
64
|
+
return {
|
|
65
|
+
isFeatureEnabled
|
|
66
|
+
};
|
|
67
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare function useFileDrop(options?: {
|
|
2
|
+
maxFiles?: number;
|
|
3
|
+
maxFileSize?: number;
|
|
4
|
+
onDrop?: (files: File[]) => void;
|
|
5
|
+
onFilesRejected?: (rejectedFiles: {
|
|
6
|
+
file: File;
|
|
7
|
+
reason: 'size' | 'limit';
|
|
8
|
+
}[]) => void;
|
|
9
|
+
}): {
|
|
10
|
+
isDragging: any;
|
|
11
|
+
rejectedFiles: any;
|
|
12
|
+
setupDropZone: (element: Ref<HTMLElement | null>) => void;
|
|
13
|
+
handleDragEnter: (e: DragEvent) => void;
|
|
14
|
+
handleDragLeave: (e: DragEvent) => void;
|
|
15
|
+
handleDragOver: (e: DragEvent) => void;
|
|
16
|
+
handleDrop: (e: DragEvent) => void;
|
|
17
|
+
};
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
export function useFileDrop(options = {}) {
|
|
2
|
+
const {
|
|
3
|
+
maxFiles = 5,
|
|
4
|
+
maxFileSize = 10 * 1024 * 1024,
|
|
5
|
+
onDrop,
|
|
6
|
+
onFilesRejected
|
|
7
|
+
} = options;
|
|
8
|
+
const isDragging = ref(false);
|
|
9
|
+
const dragCounter = ref(0);
|
|
10
|
+
const rejectedFiles = ref([]);
|
|
11
|
+
function validateFiles(files) {
|
|
12
|
+
const rejected = [];
|
|
13
|
+
const valid = [];
|
|
14
|
+
for (const file of files) {
|
|
15
|
+
if (file.size > maxFileSize) {
|
|
16
|
+
console.warn(`File ${file.name} exceeds max size of ${maxFileSize} bytes`);
|
|
17
|
+
rejected.push({ file, reason: "size" });
|
|
18
|
+
} else if (valid.length >= maxFiles) {
|
|
19
|
+
rejected.push({ file, reason: "limit" });
|
|
20
|
+
} else {
|
|
21
|
+
valid.push(file);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
if (rejected.length > 0) {
|
|
25
|
+
rejectedFiles.value = rejected;
|
|
26
|
+
onFilesRejected?.(rejected);
|
|
27
|
+
}
|
|
28
|
+
return valid;
|
|
29
|
+
}
|
|
30
|
+
function handleDragEnter(e) {
|
|
31
|
+
e.preventDefault();
|
|
32
|
+
e.stopPropagation();
|
|
33
|
+
dragCounter.value++;
|
|
34
|
+
if (e.dataTransfer?.types.includes("Files")) {
|
|
35
|
+
isDragging.value = true;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
function handleDragLeave(e) {
|
|
39
|
+
e.preventDefault();
|
|
40
|
+
e.stopPropagation();
|
|
41
|
+
dragCounter.value--;
|
|
42
|
+
if (dragCounter.value === 0) {
|
|
43
|
+
isDragging.value = false;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
function handleDragOver(e) {
|
|
47
|
+
e.preventDefault();
|
|
48
|
+
e.stopPropagation();
|
|
49
|
+
}
|
|
50
|
+
function handleDrop(e) {
|
|
51
|
+
e.preventDefault();
|
|
52
|
+
e.stopPropagation();
|
|
53
|
+
isDragging.value = false;
|
|
54
|
+
dragCounter.value = 0;
|
|
55
|
+
const files = Array.from(e.dataTransfer?.files ?? []);
|
|
56
|
+
if (files.length === 0)
|
|
57
|
+
return;
|
|
58
|
+
const validFiles = validateFiles(files);
|
|
59
|
+
if (validFiles.length > 0 && onDrop) {
|
|
60
|
+
onDrop(validFiles);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
function setupDropZone(element) {
|
|
64
|
+
watchEffect((onCleanup) => {
|
|
65
|
+
const el = element.value;
|
|
66
|
+
if (!el)
|
|
67
|
+
return;
|
|
68
|
+
el.addEventListener("dragenter", handleDragEnter);
|
|
69
|
+
el.addEventListener("dragleave", handleDragLeave);
|
|
70
|
+
el.addEventListener("dragover", handleDragOver);
|
|
71
|
+
el.addEventListener("drop", handleDrop);
|
|
72
|
+
onCleanup(() => {
|
|
73
|
+
el.removeEventListener("dragenter", handleDragEnter);
|
|
74
|
+
el.removeEventListener("dragleave", handleDragLeave);
|
|
75
|
+
el.removeEventListener("dragover", handleDragOver);
|
|
76
|
+
el.removeEventListener("drop", handleDrop);
|
|
77
|
+
});
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
return {
|
|
81
|
+
isDragging: readonly(isDragging),
|
|
82
|
+
rejectedFiles: readonly(rejectedFiles),
|
|
83
|
+
setupDropZone,
|
|
84
|
+
handleDragEnter,
|
|
85
|
+
handleDragLeave,
|
|
86
|
+
handleDragOver,
|
|
87
|
+
handleDrop
|
|
88
|
+
};
|
|
89
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { DetectedFile } from '../utils/file.js';
|
|
2
|
+
export type FilePreviewData = {
|
|
3
|
+
file: DetectedFile;
|
|
4
|
+
resolvedUrl?: string;
|
|
5
|
+
cachedBase64?: string;
|
|
6
|
+
originalFileName?: string;
|
|
7
|
+
resolvedMimeType?: string;
|
|
8
|
+
fileSize?: number;
|
|
9
|
+
pdfTotalPages?: number;
|
|
10
|
+
csvInfo?: {
|
|
11
|
+
totalRows: number;
|
|
12
|
+
totalColumns: number;
|
|
13
|
+
};
|
|
14
|
+
textInfo?: {
|
|
15
|
+
totalLines: number;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export declare function useFilePreviewPanel(): {
|
|
19
|
+
isOpen: any;
|
|
20
|
+
isLoading: any;
|
|
21
|
+
currentFile: any;
|
|
22
|
+
panelWidth: any;
|
|
23
|
+
minPanelWidth: number;
|
|
24
|
+
maxPanelWidth: number;
|
|
25
|
+
openPreview: (data: FilePreviewData) => void;
|
|
26
|
+
updatePreview: (data: Partial<FilePreviewData>) => void;
|
|
27
|
+
setError: () => void;
|
|
28
|
+
closePreview: () => void;
|
|
29
|
+
setPanelWidth: (width: number) => void;
|
|
30
|
+
};
|