@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.
Files changed (479) hide show
  1. package/README.md +274 -0
  2. package/dist/module.d.mts +3 -0
  3. package/dist/module.json +9 -0
  4. package/dist/module.mjs +250 -0
  5. package/dist/runtime/assets/css/code-theme.css +1 -0
  6. package/dist/runtime/assets/css/markstream.css +1 -0
  7. package/dist/runtime/components/AppStatusToast.d.vue.ts +3 -0
  8. package/dist/runtime/components/AppStatusToast.vue +42 -0
  9. package/dist/runtime/components/AppStatusToast.vue.d.ts +3 -0
  10. package/dist/runtime/components/TelaChat.d.vue.ts +19 -0
  11. package/dist/runtime/components/TelaChat.vue +25 -0
  12. package/dist/runtime/components/TelaChat.vue.d.ts +19 -0
  13. package/dist/runtime/components/app-markdown-render.d.vue.ts +15 -0
  14. package/dist/runtime/components/app-markdown-render.vue +45 -0
  15. package/dist/runtime/components/app-markdown-render.vue.d.ts +15 -0
  16. package/dist/runtime/components/application-card.d.vue.ts +9 -0
  17. package/dist/runtime/components/application-card.vue +52 -0
  18. package/dist/runtime/components/application-card.vue.d.ts +9 -0
  19. package/dist/runtime/components/audio-preview.d.vue.ts +14 -0
  20. package/dist/runtime/components/audio-preview.vue +52 -0
  21. package/dist/runtime/components/audio-preview.vue.d.ts +14 -0
  22. package/dist/runtime/components/chat/bash-widget.d.vue.ts +9 -0
  23. package/dist/runtime/components/chat/bash-widget.vue +86 -0
  24. package/dist/runtime/components/chat/bash-widget.vue.d.ts +9 -0
  25. package/dist/runtime/components/chat/canvas-selector-modal.d.vue.ts +14 -0
  26. package/dist/runtime/components/chat/canvas-selector-modal.vue +290 -0
  27. package/dist/runtime/components/chat/canvas-selector-modal.vue.d.ts +14 -0
  28. package/dist/runtime/components/chat/context-config.d.vue.ts +30 -0
  29. package/dist/runtime/components/chat/context-config.vue +423 -0
  30. package/dist/runtime/components/chat/context-config.vue.d.ts +30 -0
  31. package/dist/runtime/components/chat/conversation-item.d.vue.ts +20 -0
  32. package/dist/runtime/components/chat/conversation-item.vue +184 -0
  33. package/dist/runtime/components/chat/conversation-item.vue.d.ts +20 -0
  34. package/dist/runtime/components/chat/conversation-list.d.vue.ts +10 -0
  35. package/dist/runtime/components/chat/conversation-list.vue +78 -0
  36. package/dist/runtime/components/chat/conversation-list.vue.d.ts +10 -0
  37. package/dist/runtime/components/chat/doc-sdk-widget.d.vue.ts +9 -0
  38. package/dist/runtime/components/chat/doc-sdk-widget.vue +74 -0
  39. package/dist/runtime/components/chat/doc-sdk-widget.vue.d.ts +9 -0
  40. package/dist/runtime/components/chat/file-preview.d.vue.ts +7 -0
  41. package/dist/runtime/components/chat/file-preview.vue +313 -0
  42. package/dist/runtime/components/chat/file-preview.vue.d.ts +7 -0
  43. package/dist/runtime/components/chat/files-view.d.vue.ts +6 -0
  44. package/dist/runtime/components/chat/files-view.vue +399 -0
  45. package/dist/runtime/components/chat/files-view.vue.d.ts +6 -0
  46. package/dist/runtime/components/chat/generic-tool-widget.d.vue.ts +9 -0
  47. package/dist/runtime/components/chat/generic-tool-widget.vue +334 -0
  48. package/dist/runtime/components/chat/generic-tool-widget.vue.d.ts +9 -0
  49. package/dist/runtime/components/chat/grep-widget.d.vue.ts +9 -0
  50. package/dist/runtime/components/chat/grep-widget.vue +259 -0
  51. package/dist/runtime/components/chat/grep-widget.vue.d.ts +9 -0
  52. package/dist/runtime/components/chat/mention-dropdown.d.vue.ts +14 -0
  53. package/dist/runtime/components/chat/mention-dropdown.vue +90 -0
  54. package/dist/runtime/components/chat/mention-dropdown.vue.d.ts +14 -0
  55. package/dist/runtime/components/chat/message-bubble.d.vue.ts +11 -0
  56. package/dist/runtime/components/chat/message-bubble.vue +288 -0
  57. package/dist/runtime/components/chat/message-bubble.vue.d.ts +11 -0
  58. package/dist/runtime/components/chat/message-input.d.vue.ts +34 -0
  59. package/dist/runtime/components/chat/message-input.vue +428 -0
  60. package/dist/runtime/components/chat/message-input.vue.d.ts +34 -0
  61. package/dist/runtime/components/chat/message-list.d.vue.ts +11 -0
  62. package/dist/runtime/components/chat/message-list.vue +36 -0
  63. package/dist/runtime/components/chat/message-list.vue.d.ts +11 -0
  64. package/dist/runtime/components/chat/model-selector.d.vue.ts +15 -0
  65. package/dist/runtime/components/chat/model-selector.vue +35 -0
  66. package/dist/runtime/components/chat/model-selector.vue.d.ts +15 -0
  67. package/dist/runtime/components/chat/new-conversation-modal.d.vue.ts +14 -0
  68. package/dist/runtime/components/chat/new-conversation-modal.vue +271 -0
  69. package/dist/runtime/components/chat/new-conversation-modal.vue.d.ts +14 -0
  70. package/dist/runtime/components/chat/read-widget.d.vue.ts +9 -0
  71. package/dist/runtime/components/chat/read-widget.vue +195 -0
  72. package/dist/runtime/components/chat/read-widget.vue.d.ts +9 -0
  73. package/dist/runtime/components/chat/reasoning-message.d.vue.ts +13 -0
  74. package/dist/runtime/components/chat/reasoning-message.vue +341 -0
  75. package/dist/runtime/components/chat/reasoning-message.vue.d.ts +13 -0
  76. package/dist/runtime/components/chat/reasoning-step-item.d.vue.ts +37 -0
  77. package/dist/runtime/components/chat/reasoning-step-item.vue +125 -0
  78. package/dist/runtime/components/chat/reasoning-step-item.vue.d.ts +37 -0
  79. package/dist/runtime/components/chat/reasoning-steps.d.vue.ts +12 -0
  80. package/dist/runtime/components/chat/reasoning-steps.vue +47 -0
  81. package/dist/runtime/components/chat/reasoning-steps.vue.d.ts +12 -0
  82. package/dist/runtime/components/chat/reasoning-thought.d.vue.ts +11 -0
  83. package/dist/runtime/components/chat/reasoning-thought.vue +287 -0
  84. package/dist/runtime/components/chat/reasoning-thought.vue.d.ts +11 -0
  85. package/dist/runtime/components/chat/tela-skill-widget.d.vue.ts +9 -0
  86. package/dist/runtime/components/chat/tela-skill-widget.vue +94 -0
  87. package/dist/runtime/components/chat/tela-skill-widget.vue.d.ts +9 -0
  88. package/dist/runtime/components/chat/thinking-indicator.d.vue.ts +3 -0
  89. package/dist/runtime/components/chat/thinking-indicator.vue +52 -0
  90. package/dist/runtime/components/chat/thinking-indicator.vue.d.ts +3 -0
  91. package/dist/runtime/components/chat/thinking-widget.d.vue.ts +8 -0
  92. package/dist/runtime/components/chat/thinking-widget.vue +53 -0
  93. package/dist/runtime/components/chat/thinking-widget.vue.d.ts +8 -0
  94. package/dist/runtime/components/chat/topbar.d.vue.ts +43 -0
  95. package/dist/runtime/components/chat/topbar.vue +223 -0
  96. package/dist/runtime/components/chat/topbar.vue.d.ts +43 -0
  97. package/dist/runtime/components/chat/usage-view.d.vue.ts +8 -0
  98. package/dist/runtime/components/chat/usage-view.vue +393 -0
  99. package/dist/runtime/components/chat/usage-view.vue.d.ts +8 -0
  100. package/dist/runtime/components/chat/vault-link.d.vue.ts +20 -0
  101. package/dist/runtime/components/chat/vault-link.vue +34 -0
  102. package/dist/runtime/components/chat/vault-link.vue.d.ts +20 -0
  103. package/dist/runtime/components/chat/web-search-widget.d.vue.ts +9 -0
  104. package/dist/runtime/components/chat/web-search-widget.vue +121 -0
  105. package/dist/runtime/components/chat/web-search-widget.vue.d.ts +9 -0
  106. package/dist/runtime/components/chat/workstation-query-widget.d.vue.ts +10 -0
  107. package/dist/runtime/components/chat/workstation-query-widget.vue +552 -0
  108. package/dist/runtime/components/chat/workstation-query-widget.vue.d.ts +10 -0
  109. package/dist/runtime/components/chat/workstation-selector-modal.d.vue.ts +14 -0
  110. package/dist/runtime/components/chat/workstation-selector-modal.vue +272 -0
  111. package/dist/runtime/components/chat/workstation-selector-modal.vue.d.ts +14 -0
  112. package/dist/runtime/components/chat/write-widget.d.vue.ts +9 -0
  113. package/dist/runtime/components/chat/write-widget.vue +165 -0
  114. package/dist/runtime/components/chat/write-widget.vue.d.ts +9 -0
  115. package/dist/runtime/components/conversation-files-panel.d.vue.ts +3 -0
  116. package/dist/runtime/components/conversation-files-panel.vue +252 -0
  117. package/dist/runtime/components/conversation-files-panel.vue.d.ts +3 -0
  118. package/dist/runtime/components/csv-preview.d.vue.ts +20 -0
  119. package/dist/runtime/components/csv-preview.vue +157 -0
  120. package/dist/runtime/components/csv-preview.vue.d.ts +20 -0
  121. package/dist/runtime/components/file-preview-panel.d.vue.ts +3 -0
  122. package/dist/runtime/components/file-preview-panel.vue +185 -0
  123. package/dist/runtime/components/file-preview-panel.vue.d.ts +3 -0
  124. package/dist/runtime/components/file-uploader.d.vue.ts +16 -0
  125. package/dist/runtime/components/file-uploader.vue +136 -0
  126. package/dist/runtime/components/file-uploader.vue.d.ts +16 -0
  127. package/dist/runtime/components/icons/anthropic.d.vue.ts +3 -0
  128. package/dist/runtime/components/icons/anthropic.vue +5 -0
  129. package/dist/runtime/components/icons/anthropic.vue.d.ts +3 -0
  130. package/dist/runtime/components/image-preview.d.vue.ts +14 -0
  131. package/dist/runtime/components/image-preview.vue +54 -0
  132. package/dist/runtime/components/image-preview.vue.d.ts +14 -0
  133. package/dist/runtime/components/json-tree-node.d.vue.ts +9 -0
  134. package/dist/runtime/components/json-tree-node.vue +109 -0
  135. package/dist/runtime/components/json-tree-node.vue.d.ts +9 -0
  136. package/dist/runtime/components/json-viewer.d.vue.ts +6 -0
  137. package/dist/runtime/components/json-viewer.vue +88 -0
  138. package/dist/runtime/components/json-viewer.vue.d.ts +6 -0
  139. package/dist/runtime/components/pdf-preview.d.vue.ts +20 -0
  140. package/dist/runtime/components/pdf-preview.vue +89 -0
  141. package/dist/runtime/components/pdf-preview.vue.d.ts +20 -0
  142. package/dist/runtime/components/pdf-viewer.d.vue.ts +10 -0
  143. package/dist/runtime/components/pdf-viewer.vue +265 -0
  144. package/dist/runtime/components/pdf-viewer.vue.d.ts +10 -0
  145. package/dist/runtime/components/powered-by-tela.d.vue.ts +3 -0
  146. package/dist/runtime/components/powered-by-tela.vue +14 -0
  147. package/dist/runtime/components/powered-by-tela.vue.d.ts +3 -0
  148. package/dist/runtime/components/renderers/artifact-display.d.vue.ts +15 -0
  149. package/dist/runtime/components/renderers/artifact-display.vue +105 -0
  150. package/dist/runtime/components/renderers/artifact-display.vue.d.ts +15 -0
  151. package/dist/runtime/components/renderers/audio-renderer.d.vue.ts +7 -0
  152. package/dist/runtime/components/renderers/audio-renderer.vue +52 -0
  153. package/dist/runtime/components/renderers/audio-renderer.vue.d.ts +7 -0
  154. package/dist/runtime/components/renderers/csv-renderer.d.vue.ts +6 -0
  155. package/dist/runtime/components/renderers/csv-renderer.vue +203 -0
  156. package/dist/runtime/components/renderers/csv-renderer.vue.d.ts +6 -0
  157. package/dist/runtime/components/renderers/image-renderer.d.vue.ts +7 -0
  158. package/dist/runtime/components/renderers/image-renderer.vue +44 -0
  159. package/dist/runtime/components/renderers/image-renderer.vue.d.ts +7 -0
  160. package/dist/runtime/components/renderers/markdown-renderer.d.vue.ts +6 -0
  161. package/dist/runtime/components/renderers/markdown-renderer.vue +66 -0
  162. package/dist/runtime/components/renderers/markdown-renderer.vue.d.ts +6 -0
  163. package/dist/runtime/components/renderers/mermaid-diagram.d.vue.ts +7 -0
  164. package/dist/runtime/components/renderers/mermaid-diagram.vue +165 -0
  165. package/dist/runtime/components/renderers/mermaid-diagram.vue.d.ts +7 -0
  166. package/dist/runtime/components/renderers/text-renderer.d.vue.ts +7 -0
  167. package/dist/runtime/components/renderers/text-renderer.vue +70 -0
  168. package/dist/runtime/components/renderers/text-renderer.vue.d.ts +7 -0
  169. package/dist/runtime/components/renderers/video-renderer.d.vue.ts +6 -0
  170. package/dist/runtime/components/renderers/video-renderer.vue +43 -0
  171. package/dist/runtime/components/renderers/video-renderer.vue.d.ts +6 -0
  172. package/dist/runtime/components/text-preview.d.vue.ts +19 -0
  173. package/dist/runtime/components/text-preview.vue +105 -0
  174. package/dist/runtime/components/text-preview.vue.d.ts +19 -0
  175. package/dist/runtime/components/video-preview.d.vue.ts +14 -0
  176. package/dist/runtime/components/video-preview.vue +55 -0
  177. package/dist/runtime/components/video-preview.vue.d.ts +14 -0
  178. package/dist/runtime/composables/PageNavigation.d.ts +13 -0
  179. package/dist/runtime/composables/PageNavigation.js +18 -0
  180. package/dist/runtime/composables/useChat.d.ts +25 -0
  181. package/dist/runtime/composables/useChat.js +512 -0
  182. package/dist/runtime/composables/useChatApi.d.ts +6 -0
  183. package/dist/runtime/composables/useChatApi.js +28 -0
  184. package/dist/runtime/composables/useConversationFiles.d.ts +13 -0
  185. package/dist/runtime/composables/useConversationFiles.js +98 -0
  186. package/dist/runtime/composables/useConversationFilesPanel.d.ts +11 -0
  187. package/dist/runtime/composables/useConversationFilesPanel.js +35 -0
  188. package/dist/runtime/composables/useConversations.d.ts +15 -0
  189. package/dist/runtime/composables/useConversations.js +191 -0
  190. package/dist/runtime/composables/useDiagramExport.d.ts +11 -0
  191. package/dist/runtime/composables/useDiagramExport.js +186 -0
  192. package/dist/runtime/composables/useEmbedConfig.d.ts +13 -0
  193. package/dist/runtime/composables/useEmbedConfig.js +11 -0
  194. package/dist/runtime/composables/useFeatureFlags.d.ts +19 -0
  195. package/dist/runtime/composables/useFeatureFlags.js +67 -0
  196. package/dist/runtime/composables/useFileDrop.d.ts +17 -0
  197. package/dist/runtime/composables/useFileDrop.js +89 -0
  198. package/dist/runtime/composables/useFilePreviewPanel.d.ts +30 -0
  199. package/dist/runtime/composables/useFilePreviewPanel.js +42 -0
  200. package/dist/runtime/composables/useFileUpload.d.ts +7 -0
  201. package/dist/runtime/composables/useFileUpload.js +39 -0
  202. package/dist/runtime/composables/useGitHubSkills.d.ts +6 -0
  203. package/dist/runtime/composables/useGitHubSkills.js +68 -0
  204. package/dist/runtime/composables/useGitHubSkillsCallback.d.ts +5 -0
  205. package/dist/runtime/composables/useGitHubSkillsCallback.js +42 -0
  206. package/dist/runtime/composables/useIDB.d.ts +11 -0
  207. package/dist/runtime/composables/useIDB.js +57 -0
  208. package/dist/runtime/composables/useInputHistory.d.ts +7 -0
  209. package/dist/runtime/composables/useInputHistory.js +36 -0
  210. package/dist/runtime/composables/useKnowledgeSources.d.ts +6 -0
  211. package/dist/runtime/composables/useKnowledgeSources.js +15 -0
  212. package/dist/runtime/composables/useMediaCache.d.ts +13 -0
  213. package/dist/runtime/composables/useMediaCache.js +92 -0
  214. package/dist/runtime/composables/useMentionAutocomplete.d.ts +10 -0
  215. package/dist/runtime/composables/useMentionAutocomplete.js +272 -0
  216. package/dist/runtime/composables/useMermaidRenderer.d.ts +5 -0
  217. package/dist/runtime/composables/useMermaidRenderer.js +121 -0
  218. package/dist/runtime/composables/usePdf.d.ts +21 -0
  219. package/dist/runtime/composables/usePdf.js +138 -0
  220. package/dist/runtime/composables/usePolling.d.ts +12 -0
  221. package/dist/runtime/composables/usePolling.js +55 -0
  222. package/dist/runtime/composables/useSelectedModel.d.ts +4 -0
  223. package/dist/runtime/composables/useSelectedModel.js +46 -0
  224. package/dist/runtime/composables/useSplashScreen.d.ts +3 -0
  225. package/dist/runtime/composables/useSplashScreen.js +4 -0
  226. package/dist/runtime/composables/useStatusToast.d.ts +22 -0
  227. package/dist/runtime/composables/useStatusToast.js +40 -0
  228. package/dist/runtime/composables/useTela.d.ts +12 -0
  229. package/dist/runtime/composables/useTela.js +47 -0
  230. package/dist/runtime/composables/useToolFormatting.d.ts +5 -0
  231. package/dist/runtime/composables/useToolFormatting.js +61 -0
  232. package/dist/runtime/composables/useVault.d.ts +13 -0
  233. package/dist/runtime/composables/useVault.js +35 -0
  234. package/dist/runtime/composables/useVerbConjugation.d.ts +6 -0
  235. package/dist/runtime/composables/useVerbConjugation.js +256 -0
  236. package/dist/runtime/composables/useWorkspaceContextFiles.d.ts +19 -0
  237. package/dist/runtime/composables/useWorkspaceContextFiles.js +74 -0
  238. package/dist/runtime/composables/useWorkspaceCredentials.d.ts +34 -0
  239. package/dist/runtime/composables/useWorkspaceCredentials.js +175 -0
  240. package/dist/runtime/composables/useWorkspaceExternalSkills.d.ts +22 -0
  241. package/dist/runtime/composables/useWorkspaceExternalSkills.js +135 -0
  242. package/dist/runtime/composables/useWorkspaceKnowledgeSources.d.ts +11 -0
  243. package/dist/runtime/composables/useWorkspaceKnowledgeSources.js +88 -0
  244. package/dist/runtime/composables/useWorkspaceMembers.d.ts +13 -0
  245. package/dist/runtime/composables/useWorkspaceMembers.js +37 -0
  246. package/dist/runtime/composables/useWorkspacePersonalization.d.ts +6 -0
  247. package/dist/runtime/composables/useWorkspacePersonalization.js +19 -0
  248. package/dist/runtime/composables/useWorkspaceSettings.d.ts +30 -0
  249. package/dist/runtime/composables/useWorkspaceSettings.js +135 -0
  250. package/dist/runtime/composables/useWorkspaceTelaTools.d.ts +13 -0
  251. package/dist/runtime/composables/useWorkspaceTelaTools.js +91 -0
  252. package/dist/runtime/composables/useWorkspaces.d.ts +5 -0
  253. package/dist/runtime/composables/useWorkspaces.js +14 -0
  254. package/dist/runtime/composables/useZoomPan.d.ts +18 -0
  255. package/dist/runtime/composables/useZoomPan.js +130 -0
  256. package/dist/runtime/embed/components/ChatEmbed.d.vue.ts +23 -0
  257. package/dist/runtime/embed/components/ChatEmbed.vue +27 -0
  258. package/dist/runtime/embed/components/ChatEmbed.vue.d.ts +23 -0
  259. package/dist/runtime/embed/components/ChatEmbedInner.d.vue.ts +19 -0
  260. package/dist/runtime/embed/components/ChatEmbedInner.vue +604 -0
  261. package/dist/runtime/embed/components/ChatEmbedInner.vue.d.ts +19 -0
  262. package/dist/runtime/public/favicon.svg +4 -0
  263. package/dist/runtime/public/files/archive.svg +9 -0
  264. package/dist/runtime/public/files/audio.svg +4 -0
  265. package/dist/runtime/public/files/c.svg +4 -0
  266. package/dist/runtime/public/files/cpp.svg +6 -0
  267. package/dist/runtime/public/files/css.svg +4 -0
  268. package/dist/runtime/public/files/doc.svg +5 -0
  269. package/dist/runtime/public/files/generic.svg +7 -0
  270. package/dist/runtime/public/files/go.svg +6 -0
  271. package/dist/runtime/public/files/html.svg +4 -0
  272. package/dist/runtime/public/files/image.svg +3 -0
  273. package/dist/runtime/public/files/java.svg +7 -0
  274. package/dist/runtime/public/files/javascript.svg +4 -0
  275. package/dist/runtime/public/files/json.svg +5 -0
  276. package/dist/runtime/public/files/markdown.svg +5 -0
  277. package/dist/runtime/public/files/pdf.svg +5 -0
  278. package/dist/runtime/public/files/presentation.svg +5 -0
  279. package/dist/runtime/public/files/python.svg +5 -0
  280. package/dist/runtime/public/files/ruby.svg +5 -0
  281. package/dist/runtime/public/files/rust.svg +13 -0
  282. package/dist/runtime/public/files/sheet.svg +9 -0
  283. package/dist/runtime/public/files/shell.svg +5 -0
  284. package/dist/runtime/public/files/sql.svg +6 -0
  285. package/dist/runtime/public/files/typescript.svg +5 -0
  286. package/dist/runtime/public/files/video.svg +5 -0
  287. package/dist/runtime/public/files/yaml.svg +7 -0
  288. package/dist/runtime/public/github.svg +3 -0
  289. package/dist/runtime/public/robots.txt +1 -0
  290. package/dist/runtime/server/api/admin/trigger-usage-report.post.d.ts +2 -0
  291. package/dist/runtime/server/api/admin/trigger-usage-report.post.js +15 -0
  292. package/dist/runtime/server/api/chat/conversations/[id]/cancel.post.d.ts +1 -0
  293. package/dist/runtime/server/api/chat/conversations/[id]/cancel.post.js +1 -0
  294. package/dist/runtime/server/api/chat/conversations/[id]/clear.post.d.ts +1 -0
  295. package/dist/runtime/server/api/chat/conversations/[id]/clear.post.js +1 -0
  296. package/dist/runtime/server/api/chat/conversations/[id]/duplicate.post.d.ts +1 -0
  297. package/dist/runtime/server/api/chat/conversations/[id]/duplicate.post.js +1 -0
  298. package/dist/runtime/server/api/chat/conversations/[id]/files.get.d.ts +1 -0
  299. package/dist/runtime/server/api/chat/conversations/[id]/files.get.js +1 -0
  300. package/dist/runtime/server/api/chat/conversations/[id]/index.delete.d.ts +1 -0
  301. package/dist/runtime/server/api/chat/conversations/[id]/index.delete.js +1 -0
  302. package/dist/runtime/server/api/chat/conversations/[id]/index.get.d.ts +1 -0
  303. package/dist/runtime/server/api/chat/conversations/[id]/index.get.js +1 -0
  304. package/dist/runtime/server/api/chat/conversations/[id]/index.patch.d.ts +1 -0
  305. package/dist/runtime/server/api/chat/conversations/[id]/index.patch.js +1 -0
  306. package/dist/runtime/server/api/chat/conversations/[id]/messages/[messageId]/retry.post.d.ts +1 -0
  307. package/dist/runtime/server/api/chat/conversations/[id]/messages/[messageId]/retry.post.js +1 -0
  308. package/dist/runtime/server/api/chat/conversations/[id]/messages/index.get.d.ts +1 -0
  309. package/dist/runtime/server/api/chat/conversations/[id]/messages/index.get.js +1 -0
  310. package/dist/runtime/server/api/chat/conversations/[id]/messages/index.post.d.ts +1 -0
  311. package/dist/runtime/server/api/chat/conversations/[id]/messages/index.post.js +1 -0
  312. package/dist/runtime/server/api/chat/conversations/[id]/usage.get.d.ts +1 -0
  313. package/dist/runtime/server/api/chat/conversations/[id]/usage.get.js +1 -0
  314. package/dist/runtime/server/api/chat/conversations/generate-title.post.d.ts +1 -0
  315. package/dist/runtime/server/api/chat/conversations/generate-title.post.js +1 -0
  316. package/dist/runtime/server/api/chat/conversations/index.get.d.ts +1 -0
  317. package/dist/runtime/server/api/chat/conversations/index.get.js +1 -0
  318. package/dist/runtime/server/api/chat/conversations/index.post.d.ts +1 -0
  319. package/dist/runtime/server/api/chat/conversations/index.post.js +1 -0
  320. package/dist/runtime/server/api/chat/workspace/settings.get.d.ts +2 -0
  321. package/dist/runtime/server/api/chat/workspace/settings.get.js +14 -0
  322. package/dist/runtime/server/api/conversations/[id]/cancel.post.d.ts +2 -0
  323. package/dist/runtime/server/api/conversations/[id]/cancel.post.js +58 -0
  324. package/dist/runtime/server/api/conversations/[id]/clear.post.d.ts +2 -0
  325. package/dist/runtime/server/api/conversations/[id]/clear.post.js +38 -0
  326. package/dist/runtime/server/api/conversations/[id]/duplicate.post.d.ts +2 -0
  327. package/dist/runtime/server/api/conversations/[id]/duplicate.post.js +41 -0
  328. package/dist/runtime/server/api/conversations/[id]/files.get.d.ts +2 -0
  329. package/dist/runtime/server/api/conversations/[id]/files.get.js +131 -0
  330. package/dist/runtime/server/api/conversations/[id]/index.delete.d.ts +2 -0
  331. package/dist/runtime/server/api/conversations/[id]/index.delete.js +35 -0
  332. package/dist/runtime/server/api/conversations/[id]/index.get.d.ts +2 -0
  333. package/dist/runtime/server/api/conversations/[id]/index.get.js +34 -0
  334. package/dist/runtime/server/api/conversations/[id]/index.patch.d.ts +2 -0
  335. package/dist/runtime/server/api/conversations/[id]/index.patch.js +54 -0
  336. package/dist/runtime/server/api/conversations/[id]/messages/[messageId]/retry.post.d.ts +2 -0
  337. package/dist/runtime/server/api/conversations/[id]/messages/[messageId]/retry.post.js +168 -0
  338. package/dist/runtime/server/api/conversations/[id]/messages/index.get.d.ts +2 -0
  339. package/dist/runtime/server/api/conversations/[id]/messages/index.get.js +220 -0
  340. package/dist/runtime/server/api/conversations/[id]/messages/index.post.d.ts +2 -0
  341. package/dist/runtime/server/api/conversations/[id]/messages/index.post.js +181 -0
  342. package/dist/runtime/server/api/conversations/[id]/usage.get.d.ts +8 -0
  343. package/dist/runtime/server/api/conversations/[id]/usage.get.js +96 -0
  344. package/dist/runtime/server/api/conversations/generate-title.post.d.ts +2 -0
  345. package/dist/runtime/server/api/conversations/generate-title.post.js +49 -0
  346. package/dist/runtime/server/api/conversations/index.get.d.ts +2 -0
  347. package/dist/runtime/server/api/conversations/index.get.js +11 -0
  348. package/dist/runtime/server/api/conversations/index.post.d.ts +2 -0
  349. package/dist/runtime/server/api/conversations/index.post.js +41 -0
  350. package/dist/runtime/server/api/external-skills/discover.post.d.ts +2 -0
  351. package/dist/runtime/server/api/external-skills/discover.post.js +65 -0
  352. package/dist/runtime/server/api/github/disconnect.post.d.ts +2 -0
  353. package/dist/runtime/server/api/github/disconnect.post.js +21 -0
  354. package/dist/runtime/server/api/github/status.get.d.ts +2 -0
  355. package/dist/runtime/server/api/github/status.get.js +23 -0
  356. package/dist/runtime/server/api/tela/canvas.get.d.ts +2 -0
  357. package/dist/runtime/server/api/tela/canvas.get.js +18 -0
  358. package/dist/runtime/server/api/tela/projects.get.d.ts +2 -0
  359. package/dist/runtime/server/api/tela/projects.get.js +9 -0
  360. package/dist/runtime/server/api/tela/workspaces.get.d.ts +2 -0
  361. package/dist/runtime/server/api/tela/workspaces.get.js +9 -0
  362. package/dist/runtime/server/api/tela/workstations.get.d.ts +2 -0
  363. package/dist/runtime/server/api/tela/workstations.get.js +24 -0
  364. package/dist/runtime/server/api/vault/permalink-metadata.post.d.ts +2 -0
  365. package/dist/runtime/server/api/vault/permalink-metadata.post.js +77 -0
  366. package/dist/runtime/server/api/vault/resolve.post.d.ts +2 -0
  367. package/dist/runtime/server/api/vault/resolve.post.js +82 -0
  368. package/dist/runtime/server/api/vault/upload.post.d.ts +2 -0
  369. package/dist/runtime/server/api/vault/upload.post.js +55 -0
  370. package/dist/runtime/server/api/workspace/credentials/[id].delete.d.ts +2 -0
  371. package/dist/runtime/server/api/workspace/credentials/[id].delete.js +18 -0
  372. package/dist/runtime/server/api/workspace/credentials/[id].put.d.ts +2 -0
  373. package/dist/runtime/server/api/workspace/credentials/[id].put.js +28 -0
  374. package/dist/runtime/server/api/workspace/credentials/index.get.d.ts +2 -0
  375. package/dist/runtime/server/api/workspace/credentials/index.get.js +10 -0
  376. package/dist/runtime/server/api/workspace/credentials/index.post.d.ts +2 -0
  377. package/dist/runtime/server/api/workspace/credentials/index.post.js +33 -0
  378. package/dist/runtime/server/api/workspace/settings.get.d.ts +2 -0
  379. package/dist/runtime/server/api/workspace/settings.get.js +27 -0
  380. package/dist/runtime/server/api/workspace/settings.patch.d.ts +2 -0
  381. package/dist/runtime/server/api/workspace/settings.patch.js +86 -0
  382. package/dist/runtime/server/api/workspace/usage.get.d.ts +48 -0
  383. package/dist/runtime/server/api/workspace/usage.get.js +186 -0
  384. package/dist/runtime/server/db/index.d.ts +6 -0
  385. package/dist/runtime/server/db/index.js +19 -0
  386. package/dist/runtime/server/db/schema/conversation-usage.d.ts +438 -0
  387. package/dist/runtime/server/db/schema/conversation-usage.js +34 -0
  388. package/dist/runtime/server/db/schema/conversations.d.ts +197 -0
  389. package/dist/runtime/server/db/schema/conversations.js +18 -0
  390. package/dist/runtime/server/db/schema/external-skills.d.ts +235 -0
  391. package/dist/runtime/server/db/schema/external-skills.js +26 -0
  392. package/dist/runtime/server/db/schema/index.d.ts +5 -0
  393. package/dist/runtime/server/db/schema/index.js +5 -0
  394. package/dist/runtime/server/db/schema/messages.d.ts +221 -0
  395. package/dist/runtime/server/db/schema/messages.js +19 -0
  396. package/dist/runtime/server/db/schema/workspace-settings.d.ts +164 -0
  397. package/dist/runtime/server/db/schema/workspace-settings.js +15 -0
  398. package/dist/runtime/server/db/schema.d.ts +1 -0
  399. package/dist/runtime/server/db/schema.js +1 -0
  400. package/dist/runtime/server/middleware/domain-validation.d.ts +2 -0
  401. package/dist/runtime/server/middleware/domain-validation.js +22 -0
  402. package/dist/runtime/server/middleware/request-logger.d.ts +2 -0
  403. package/dist/runtime/server/middleware/request-logger.js +15 -0
  404. package/dist/runtime/server/prompts/base-system.d.ts +2 -0
  405. package/dist/runtime/server/prompts/base-system.js +100 -0
  406. package/dist/runtime/server/prompts/base-system.md +99 -0
  407. package/dist/runtime/server/prompts/knowledge-sources.d.ts +2 -0
  408. package/dist/runtime/server/prompts/knowledge-sources.js +37 -0
  409. package/dist/runtime/server/prompts/knowledge-sources.md +36 -0
  410. package/dist/runtime/server/tasks/send-daily-usage-report.d.ts +2 -0
  411. package/dist/runtime/server/tasks/send-daily-usage-report.js +73 -0
  412. package/dist/runtime/server/tsconfig.json +21 -0
  413. package/dist/runtime/server/utils/agent-api.d.ts +39 -0
  414. package/dist/runtime/server/utils/agent-api.js +169 -0
  415. package/dist/runtime/server/utils/auth-api.d.ts +1 -0
  416. package/dist/runtime/server/utils/auth-api.js +25 -0
  417. package/dist/runtime/server/utils/auth.d.ts +17 -0
  418. package/dist/runtime/server/utils/auth.js +28 -0
  419. package/dist/runtime/server/utils/billing.d.ts +37 -0
  420. package/dist/runtime/server/utils/billing.js +68 -0
  421. package/dist/runtime/server/utils/chat-context.d.ts +9 -0
  422. package/dist/runtime/server/utils/chat-context.js +24 -0
  423. package/dist/runtime/server/utils/chat-message-builder.d.ts +4 -0
  424. package/dist/runtime/server/utils/chat-message-builder.js +39 -0
  425. package/dist/runtime/server/utils/chat-prompts.d.ts +7 -0
  426. package/dist/runtime/server/utils/chat-prompts.js +9 -0
  427. package/dist/runtime/server/utils/chat-workspace-settings.d.ts +16 -0
  428. package/dist/runtime/server/utils/chat-workspace-settings.js +115 -0
  429. package/dist/runtime/server/utils/external-skills.d.ts +2 -0
  430. package/dist/runtime/server/utils/external-skills.js +15 -0
  431. package/dist/runtime/server/utils/logger.d.ts +2 -0
  432. package/dist/runtime/server/utils/logger.js +12 -0
  433. package/dist/runtime/server/utils/slack.d.ts +32 -0
  434. package/dist/runtime/server/utils/slack.js +102 -0
  435. package/dist/runtime/server/utils/tela-api.d.ts +2 -0
  436. package/dist/runtime/server/utils/tela-api.js +29 -0
  437. package/dist/runtime/server/utils/vault.d.ts +3 -0
  438. package/dist/runtime/server/utils/vault.js +52 -0
  439. package/dist/runtime/server/utils/workspace-settings-resolver.stub.d.ts +2 -0
  440. package/dist/runtime/server/utils/workspace-settings-resolver.stub.js +1 -0
  441. package/dist/runtime/server/utils/workspace.d.ts +4 -0
  442. package/dist/runtime/server/utils/workspace.js +21 -0
  443. package/dist/runtime/types/agent.d.ts +168 -0
  444. package/dist/runtime/types/agent.js +95 -0
  445. package/dist/runtime/types/chat-workspace-settings-resolver.d.ts +4 -0
  446. package/dist/runtime/types/chat.d.ts +81 -0
  447. package/dist/runtime/types/chat.js +12 -0
  448. package/dist/runtime/types/credential.d.ts +8 -0
  449. package/dist/runtime/types/credential.js +0 -0
  450. package/dist/runtime/types/csv.d.ts +4 -0
  451. package/dist/runtime/types/csv.js +0 -0
  452. package/dist/runtime/types/external-skills.d.ts +8 -0
  453. package/dist/runtime/types/external-skills.js +0 -0
  454. package/dist/runtime/types/feature-flags.d.ts +7 -0
  455. package/dist/runtime/types/feature-flags.js +6 -0
  456. package/dist/runtime/types/reasoning.d.ts +17 -0
  457. package/dist/runtime/types/reasoning.js +0 -0
  458. package/dist/runtime/types/tela.d.ts +46 -0
  459. package/dist/runtime/types/tela.js +0 -0
  460. package/dist/runtime/types/workspace.d.ts +20 -0
  461. package/dist/runtime/types/workspace.js +0 -0
  462. package/dist/runtime/utils/calculate-usage.d.ts +48 -0
  463. package/dist/runtime/utils/calculate-usage.js +63 -0
  464. package/dist/runtime/utils/code-detection.d.ts +1 -0
  465. package/dist/runtime/utils/code-detection.js +24 -0
  466. package/dist/runtime/utils/export-conversation.d.ts +2 -0
  467. package/dist/runtime/utils/export-conversation.js +43 -0
  468. package/dist/runtime/utils/file.d.ts +46 -0
  469. package/dist/runtime/utils/file.js +500 -0
  470. package/dist/runtime/utils/format-time.d.ts +22 -0
  471. package/dist/runtime/utils/format-time.js +96 -0
  472. package/dist/runtime/utils/markdown-nodes.d.ts +22 -0
  473. package/dist/runtime/utils/markdown-nodes.js +40 -0
  474. package/dist/runtime/utils/string.d.ts +4 -0
  475. package/dist/runtime/utils/string.js +5 -0
  476. package/dist/runtime/utils/tela-chat.d.ts +19 -0
  477. package/dist/runtime/utils/tela-chat.js +20 -0
  478. package/dist/types.d.mts +7 -0
  479. package/package.json +72 -0
@@ -0,0 +1,265 @@
1
+ <script setup>
2
+ const props = defineProps({
3
+ url: { type: String, required: true },
4
+ initialPage: { type: Number, required: false },
5
+ initialScale: { type: Number, required: false },
6
+ highlight: { type: [String, null], required: false },
7
+ highlightPage: { type: [Number, null], required: false }
8
+ });
9
+ const url = computed(() => props.url);
10
+ const { state, loadPdf, renderPage } = usePdf(url);
11
+ const scrollContainerRef = ref(null);
12
+ const pageRefs = ref(/* @__PURE__ */ new Map());
13
+ const scale = ref(props.initialScale ?? 0.95);
14
+ const renderedPages = ref(/* @__PURE__ */ new Set());
15
+ const currentPage = ref(1);
16
+ const pageInputValue = ref("1");
17
+ const isDragging = ref(false);
18
+ const isPanMode = ref(false);
19
+ const dragStart = ref({ x: 0, y: 0, scrollLeft: 0, scrollTop: 0 });
20
+ function handleMouseDown(e) {
21
+ if (!scrollContainerRef.value || !isPanMode.value)
22
+ return;
23
+ isDragging.value = true;
24
+ dragStart.value = {
25
+ x: e.clientX,
26
+ y: e.clientY,
27
+ scrollLeft: scrollContainerRef.value.scrollLeft,
28
+ scrollTop: scrollContainerRef.value.scrollTop
29
+ };
30
+ }
31
+ function handleMouseMove(e) {
32
+ if (!isDragging.value || !scrollContainerRef.value)
33
+ return;
34
+ e.preventDefault();
35
+ const dx = e.clientX - dragStart.value.x;
36
+ const dy = e.clientY - dragStart.value.y;
37
+ scrollContainerRef.value.scrollLeft = dragStart.value.scrollLeft - dx;
38
+ scrollContainerRef.value.scrollTop = dragStart.value.scrollTop - dy;
39
+ }
40
+ function handleMouseUp() {
41
+ isDragging.value = false;
42
+ }
43
+ function handleMouseLeave() {
44
+ isDragging.value = false;
45
+ }
46
+ function togglePanMode() {
47
+ isPanMode.value = !isPanMode.value;
48
+ }
49
+ function handleScroll() {
50
+ if (!scrollContainerRef.value)
51
+ return;
52
+ const container = scrollContainerRef.value;
53
+ const containerRect = container.getBoundingClientRect();
54
+ const containerCenter = containerRect.top + containerRect.height / 2;
55
+ let closestPage = 1;
56
+ let closestDistance = Infinity;
57
+ for (const [pageNum, el] of pageRefs.value) {
58
+ const rect = el.getBoundingClientRect();
59
+ const pageCenter = rect.top + rect.height / 2;
60
+ const distance = Math.abs(pageCenter - containerCenter);
61
+ if (distance < closestDistance) {
62
+ closestDistance = distance;
63
+ closestPage = pageNum;
64
+ }
65
+ }
66
+ if (currentPage.value !== closestPage) {
67
+ currentPage.value = closestPage;
68
+ pageInputValue.value = String(closestPage);
69
+ }
70
+ }
71
+ function handlePageInputChange() {
72
+ const pageNum = Number.parseInt(pageInputValue.value, 10);
73
+ if (!Number.isNaN(pageNum) && pageNum >= 1 && pageNum <= state.totalPages) {
74
+ currentPage.value = pageNum;
75
+ scrollToPage(pageNum);
76
+ } else {
77
+ pageInputValue.value = String(currentPage.value);
78
+ }
79
+ }
80
+ function fitToScreen() {
81
+ scale.value = 0.95;
82
+ reRenderAllPages();
83
+ }
84
+ function setPageRef(pageNum, el) {
85
+ if (el) {
86
+ pageRefs.value.set(pageNum, el);
87
+ } else {
88
+ pageRefs.value.delete(pageNum);
89
+ }
90
+ }
91
+ async function renderAllPages() {
92
+ if (!state.pdfDoc)
93
+ return;
94
+ for (let pageNum = 1; pageNum <= state.totalPages; pageNum++) {
95
+ await renderPageWithTextLayer(pageNum);
96
+ }
97
+ }
98
+ async function renderPageWithTextLayer(pageNum) {
99
+ if (!state.pdfDoc)
100
+ return;
101
+ const pageContainer = pageRefs.value.get(pageNum);
102
+ if (!pageContainer)
103
+ return;
104
+ const canvas = pageContainer.querySelector("canvas");
105
+ const textLayer = pageContainer.querySelector(".text-layer");
106
+ if (!canvas)
107
+ return;
108
+ await renderPage({
109
+ pageNum,
110
+ canvas,
111
+ textLayer,
112
+ scale: scale.value,
113
+ highlight: props.highlight,
114
+ highlightPage: props.highlightPage
115
+ });
116
+ renderedPages.value.add(pageNum);
117
+ }
118
+ function scrollToPage(pageNum) {
119
+ const pageContainer = pageRefs.value.get(pageNum);
120
+ if (pageContainer && scrollContainerRef.value) {
121
+ pageContainer.scrollIntoView({ behavior: "smooth", block: "start" });
122
+ }
123
+ }
124
+ async function reRenderAllPages() {
125
+ renderedPages.value.clear();
126
+ await nextTick();
127
+ await renderAllPages();
128
+ }
129
+ function zoomIn() {
130
+ if (scale.value < 3) {
131
+ scale.value = Math.min(scale.value + 0.25, 3);
132
+ reRenderAllPages();
133
+ }
134
+ }
135
+ function zoomOut() {
136
+ if (scale.value > 0.5) {
137
+ scale.value = Math.max(scale.value - 0.25, 0.5);
138
+ reRenderAllPages();
139
+ }
140
+ }
141
+ onMounted(async () => {
142
+ await nextTick();
143
+ const doc = await loadPdf();
144
+ if (doc) {
145
+ await nextTick();
146
+ await renderAllPages();
147
+ scrollToPage(props.initialPage || 1);
148
+ }
149
+ });
150
+ watch(url, async () => {
151
+ renderedPages.value.clear();
152
+ const doc = await loadPdf();
153
+ if (doc) {
154
+ await nextTick();
155
+ await renderAllPages();
156
+ scrollToPage(props.initialPage || 1);
157
+ }
158
+ });
159
+ watch(() => props.initialPage, (page) => {
160
+ if (page && page > 0 && page <= state.totalPages) {
161
+ scrollToPage(page);
162
+ }
163
+ });
164
+ </script>
165
+
166
+ <template>
167
+ <div class="flex flex-col h-full min-h-[60vh]">
168
+ <div v-if="state.isLoading" class="flex-1 flex items-center justify-center bg-gray-100 rounded-8px">
169
+ <div flex items-center gap-8px text-secondary>
170
+ <TelaIconSpinner animate-spin />
171
+ <span body-small-regular>Carregando documento...</span>
172
+ </div>
173
+ </div>
174
+
175
+ <div v-else-if="state.loadError" flex-1 flex items-center justify-center bg-gray-100 rounded-8px>
176
+ <div flex items-center gap-8px text-negative-dark>
177
+ <TelaIcon name="i-ph-warning" />
178
+ <span body-small-regular>{{ state.loadError }}</span>
179
+ </div>
180
+ </div>
181
+
182
+ <template v-else>
183
+ <div class="relative flex-1 min-h-0">
184
+ <div
185
+ ref="scrollContainerRef"
186
+ class="absolute inset-0 overflow-auto bg-gray-100 rounded-8px select-none"
187
+ :class="[
188
+ isPanMode ? isDragging ? 'cursor-grabbing' : 'cursor-grab' : 'cursor-default'
189
+ ]"
190
+ @mousedown="handleMouseDown"
191
+ @mousemove="handleMouseMove"
192
+ @mouseup="handleMouseUp"
193
+ @mouseleave="handleMouseLeave"
194
+ @scroll="handleScroll"
195
+ >
196
+ <div class="flex flex-col items-start gap-16px p-16px pb-80px">
197
+ <div
198
+ v-for="pageNum in state.totalPages"
199
+ :key="pageNum"
200
+ :ref="(el) => setPageRef(pageNum, el)"
201
+ class="relative flex-shrink-0 bg-white rounded-12px overflow-hidden mx-auto"
202
+ style="border: 0.5px solid rgba(0, 0, 0, 0.08);"
203
+ >
204
+ <canvas />
205
+ <div class="text-layer absolute top-0 left-0 pointer-events-none" />
206
+ </div>
207
+ </div>
208
+ </div>
209
+
210
+ <div
211
+ v-if="state.totalPages > 0"
212
+ class="floating-nav absolute bottom-16px left-1/2 -translate-x-1/2 flex items-center gap-4px px-6px shrink-0"
213
+ >
214
+ <div class="flex items-center shrink-0">
215
+ <button
216
+ class="nav-btn"
217
+ :disabled="scale >= 3"
218
+ @click="zoomIn"
219
+ >
220
+ <span class="i-ph-magnifying-glass-plus w-20px h-20px" :class="scale >= 3 ? 'text-neutral-500' : 'text-white'" />
221
+ </button>
222
+ <button
223
+ class="nav-btn"
224
+ :disabled="scale <= 0.5"
225
+ @click="zoomOut"
226
+ >
227
+ <span class="i-ph-magnifying-glass-minus w-20px h-20px" :class="scale <= 0.5 ? 'text-neutral-500' : 'text-white'" />
228
+ </button>
229
+ <button
230
+ class="nav-btn"
231
+ @click="fitToScreen"
232
+ >
233
+ <span class="i-ph-corners-in w-20px h-20px text-white" />
234
+ </button>
235
+ <button
236
+ class="nav-btn"
237
+ :class="isPanMode ? 'bg-white/12' : ''"
238
+ @click="togglePanMode"
239
+ >
240
+ <span class="i-ph-hand w-20px h-20px text-white" />
241
+ </button>
242
+ </div>
243
+
244
+ <div class="divider" />
245
+
246
+ <div class="flex items-center gap-5px px-12px py-10px shrink-0">
247
+ <span class="text-12px text-white leading-16px">Página</span>
248
+ <input
249
+ v-model="pageInputValue"
250
+ type="text"
251
+ class="page-input"
252
+ @keydown.enter="handlePageInputChange"
253
+ @blur="handlePageInputChange"
254
+ >
255
+ <span class="text-12px text-white leading-16px whitespace-nowrap">de {{ state.totalPages }}</span>
256
+ </div>
257
+ </div>
258
+ </div>
259
+ </template>
260
+ </div>
261
+ </template>
262
+
263
+ <style scoped>
264
+ .floating-nav{backdrop-filter:blur(8px);background:rgba(0,0,0,.8);border-radius:16px;box-shadow:0 6px 16px 0 rgba(0,0,0,.24);height:48px}.nav-btn{align-items:center;background:transparent;border-radius:6px;cursor:pointer;display:flex;height:40px;justify-content:center;transition:background-color .15s ease;width:40px}.nav-btn:hover:not(:disabled){background:hsla(0,0%,100%,.12)}.nav-btn:disabled{cursor:not-allowed}.page-input{background:rgba(0,0,0,.24);border:.5px solid hsla(0,0%,100%,.12);border-radius:6px;color:#fff;font-size:12px;font-weight:460;line-height:16px;outline:none;padding:2px 8px;text-align:center;width:32px}.page-input:focus{border-color:hsla(0,0%,100%,.24)}.divider{background:hsla(0,0%,100%,.5);flex-shrink:0;height:24px;width:1px}
265
+ </style>
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ url: string;
3
+ initialPage?: number;
4
+ initialScale?: number;
5
+ highlight?: string | null;
6
+ highlightPage?: number | null;
7
+ };
8
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,14 @@
1
+ <template>
2
+ <div flex="~ col" gap-8px items-start>
3
+ <div body-9-medium text="#9DA2AA">
4
+ Desenvolvido por
5
+ </div>
6
+ <svg h-12px viewBox="0 0 38 12" fill="none" xmlns="http://www.w3.org/2000/svg">
7
+ <path d="M36.2775 6.40644C36.2775 5.46937 35.6276 4.89503 34.6301 4.89503C33.7081 4.89503 33.0582 5.43914 32.9524 6.34599L31.4712 6.07393C31.7131 4.57763 33.0129 3.59521 34.6301 3.59521C36.5647 3.59521 37.8947 4.68343 37.8947 6.58781V11.3337H36.2775V10.1699C35.8392 10.9407 34.9021 11.4546 33.8895 11.4546C32.3781 11.4546 31.3352 10.5024 31.3352 9.20256C31.3352 7.70626 32.499 6.90521 34.8417 6.66338L36.2775 6.51224V6.40644ZM32.9524 9.15721C32.9524 9.76178 33.4512 10.185 34.222 10.185C35.5067 10.185 36.2624 9.29324 36.2775 8.05388V7.73649L34.8266 7.90274C33.5872 8.03877 32.9524 8.49219 32.9524 9.15721Z" fill="#030C16" />
8
+ <path d="M28.5046 11.3331V0.632324H30.152V11.3331H28.5046Z" fill="#030C16" />
9
+ <path d="M20.1277 7.5244C20.1277 5.46888 21.3927 3.59473 23.7463 3.59473C26.1293 3.59473 27.3944 5.37819 27.3944 7.23723C27.3944 7.46394 27.3796 7.78134 27.3649 7.91737H21.7016C21.8487 9.2323 22.6725 10.0485 23.8493 10.0485C24.8201 10.0485 25.5115 9.57992 25.7027 8.74865L27.2178 9.14161C26.8207 10.6077 25.5556 11.4541 23.8199 11.4541C21.4663 11.4541 20.1277 9.57992 20.1277 7.5244ZM21.7752 6.6629H25.688C25.585 5.63513 24.9231 4.89454 23.7463 4.89454C22.7313 4.89454 22.0105 5.52934 21.7752 6.6629Z" fill="#030C16" />
10
+ <path d="M19.6861 11.2729C19.3234 11.3938 18.9002 11.4543 18.477 11.4543C17.0412 11.4543 15.9681 10.6684 15.9681 8.93023V5.12147H14.638V3.71585H15.9681V1.44873H17.6155V3.71585H19.5803V5.12147H17.6155V8.83954C17.6155 9.59525 18.0387 9.98822 18.6584 9.98822C18.9455 9.98822 19.2932 9.94287 19.5803 9.80685L19.6861 11.2729Z" fill="#030C16" />
11
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12 0H0V12H12V0ZM10.2512 1.74939H1.75122V10.2494H10.2512V1.74939Z" fill="#030C16" />
12
+ </svg>
13
+ </div>
14
+ </template>
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,15 @@
1
+ type __VLS_Props = {
2
+ url: string;
3
+ mimeType: string;
4
+ name?: string;
5
+ isDownloading?: boolean;
6
+ initialPdfScale?: number;
7
+ initialPdfPage?: number;
8
+ };
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ download: () => any;
11
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
12
+ onDownload?: (() => any) | undefined;
13
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
@@ -0,0 +1,105 @@
1
+ <script setup>
2
+ import { normalizeMimeType } from "../../utils/file";
3
+ const props = defineProps({
4
+ url: { type: String, required: true },
5
+ mimeType: { type: String, required: true },
6
+ name: { type: String, required: false },
7
+ isDownloading: { type: Boolean, required: false },
8
+ initialPdfScale: { type: Number, required: false },
9
+ initialPdfPage: { type: Number, required: false }
10
+ });
11
+ const emit = defineEmits(["download"]);
12
+ const normalizedMimeType = computed(() => normalizeMimeType(props.mimeType));
13
+ const isImage = computed(() => normalizedMimeType.value.startsWith("image/"));
14
+ const isPdf = computed(() => normalizedMimeType.value === "application/pdf");
15
+ const isVideo = computed(() => normalizedMimeType.value.startsWith("video/"));
16
+ const isAudio = computed(() => normalizedMimeType.value.startsWith("audio/"));
17
+ const isCsv = computed(() => normalizedMimeType.value === "text/csv");
18
+ const isJson = computed(() => normalizedMimeType.value === "application/json");
19
+ const isMarkdown = computed(() => {
20
+ const mime = normalizedMimeType.value;
21
+ if (mime === "text/markdown" || mime === "text/x-markdown")
22
+ return true;
23
+ const name = props.name?.toLowerCase() ?? "";
24
+ return name.endsWith(".md") || name.endsWith(".markdown");
25
+ });
26
+ const isText = computed(() => {
27
+ const mime = normalizedMimeType.value;
28
+ if (isCsv.value || isMarkdown.value)
29
+ return false;
30
+ return mime.startsWith("text/") || isJson.value || mime === "application/xml";
31
+ });
32
+ </script>
33
+
34
+ <template>
35
+ <div class="relative h-full min-h-[60vh] p-16px">
36
+ <!-- Image -->
37
+ <RenderersImageRenderer
38
+ v-if="isImage"
39
+ :url="url"
40
+ :alt="name"
41
+ />
42
+
43
+ <!-- PDF -->
44
+ <PdfViewer v-else-if="isPdf" :url="url" :initial-scale="initialPdfScale" :initial-page="initialPdfPage" @download="emit('download')" />
45
+
46
+ <!-- Video -->
47
+ <RenderersVideoRenderer
48
+ v-else-if="isVideo"
49
+ :url="url"
50
+ />
51
+
52
+ <!-- Audio -->
53
+ <RenderersAudioRenderer
54
+ v-else-if="isAudio"
55
+ :url="url"
56
+ :name="name"
57
+ />
58
+
59
+ <!-- CSV -->
60
+ <RenderersCsvRenderer
61
+ v-else-if="isCsv"
62
+ :url="url"
63
+ />
64
+
65
+ <!-- Markdown -->
66
+ <RenderersMarkdownRenderer
67
+ v-else-if="isMarkdown"
68
+ :url="url"
69
+ />
70
+
71
+ <!-- Text/Code -->
72
+ <RenderersTextRenderer
73
+ v-else-if="isText"
74
+ :url="url"
75
+ :mime-type="normalizedMimeType"
76
+ />
77
+
78
+ <!-- Generic Fallback -->
79
+ <div v-else class="h-full flex items-center justify-center p-40px">
80
+ <div class="text-center">
81
+ <div class="w-80px h-80px mx-auto mb-16px rounded-20px flex items-center justify-center bg-gray-100">
82
+ <TelaIcon name="i-ph-file" class="text-48px text-gray-400" />
83
+ </div>
84
+ <p class="text-14px text-gray-500">
85
+ Preview não disponível
86
+ </p>
87
+ <p class="text-12px text-gray-400 mt-4px">
88
+ Use o botão de download para baixar o arquivo
89
+ </p>
90
+ <TelaButton
91
+ v-if="url"
92
+ class="mt-16px"
93
+ variant="secondary"
94
+ :loading="isDownloading"
95
+ @click="emit('download')"
96
+ >
97
+ <template #leading>
98
+ <TelaIcon name="i-ph-download-simple" />
99
+ </template>
100
+ Download
101
+ </TelaButton>
102
+ </div>
103
+ </div>
104
+ </div>
105
+ </template>
@@ -0,0 +1,15 @@
1
+ type __VLS_Props = {
2
+ url: string;
3
+ mimeType: string;
4
+ name?: string;
5
+ isDownloading?: boolean;
6
+ initialPdfScale?: number;
7
+ initialPdfPage?: number;
8
+ };
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ download: () => any;
11
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
12
+ onDownload?: (() => any) | undefined;
13
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
@@ -0,0 +1,7 @@
1
+ type __VLS_Props = {
2
+ url: string;
3
+ name?: string;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,52 @@
1
+ <script setup>
2
+ defineProps({
3
+ url: { type: String, required: true },
4
+ name: { type: String, required: false }
5
+ });
6
+ const isLoading = ref(true);
7
+ const error = ref(false);
8
+ function onCanPlay() {
9
+ isLoading.value = false;
10
+ }
11
+ function onError() {
12
+ isLoading.value = false;
13
+ error.value = true;
14
+ }
15
+ </script>
16
+
17
+ <template>
18
+ <div class="h-full flex flex-col min-h-[60vh]">
19
+ <!-- Loading -->
20
+ <div v-if="isLoading" class="flex-1 flex items-center justify-center">
21
+ <TelaIconSpinner animate-spin class="text-24px text-gray-400" />
22
+ </div>
23
+
24
+ <!-- Error -->
25
+ <div v-else-if="error" class="flex-1 flex items-center justify-center">
26
+ <div class="text-center">
27
+ <TelaIcon name="i-ph-speaker-x" class="text-32px text-gray-400" />
28
+ <p class="text-14px text-gray-500 mt-8px">
29
+ Falha ao carregar áudio
30
+ </p>
31
+ </div>
32
+ </div>
33
+
34
+ <div v-show="!isLoading && !error" class="flex-1 flex items-center justify-center p-20px">
35
+ <div class="w-full max-w-400px">
36
+ <div class="w-80px h-80px mx-auto mb-16px rounded-full flex items-center justify-center bg-gray-100">
37
+ <span class="i-ph-music-notes text-32px text-gray-600" />
38
+ </div>
39
+ <p v-if="name" class="text-center text-14px text-gray-700 mb-12px truncate">
40
+ {{ name }}
41
+ </p>
42
+ <audio
43
+ :src="url"
44
+ controls
45
+ class="w-full"
46
+ @canplay="onCanPlay"
47
+ @error="onError"
48
+ />
49
+ </div>
50
+ </div>
51
+ </div>
52
+ </template>
@@ -0,0 +1,7 @@
1
+ type __VLS_Props = {
2
+ url: string;
3
+ name?: string;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,6 @@
1
+ type __VLS_Props = {
2
+ url: string;
3
+ };
4
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
+ declare const _default: typeof __VLS_export;
6
+ export default _default;