@vertesia/ui 1.0.0-dev.20260305.083323Z → 1.0.0-dev.20260331.091034Z

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 (783) hide show
  1. package/lib/esm/core/components/SelectList.js +3 -1
  2. package/lib/esm/core/components/SelectList.js.map +1 -1
  3. package/lib/esm/core/components/SidePanel.js +2 -2
  4. package/lib/esm/core/components/SidePanel.js.map +1 -1
  5. package/lib/esm/core/components/index.js +0 -5
  6. package/lib/esm/core/components/index.js.map +1 -1
  7. package/lib/esm/core/components/shadcn/breadcrumb.js +11 -7
  8. package/lib/esm/core/components/shadcn/breadcrumb.js.map +1 -1
  9. package/lib/esm/core/components/shadcn/button.js +5 -3
  10. package/lib/esm/core/components/shadcn/button.js.map +1 -1
  11. package/lib/esm/core/components/shadcn/collaspible.js +14 -0
  12. package/lib/esm/core/components/shadcn/collaspible.js.map +1 -0
  13. package/lib/esm/core/components/shadcn/dropdown.js +64 -0
  14. package/lib/esm/core/components/shadcn/dropdown.js.map +1 -0
  15. package/lib/esm/core/components/shadcn/filters/comboBox/DateCombobox.js +3 -1
  16. package/lib/esm/core/components/shadcn/filters/comboBox/DateCombobox.js.map +1 -1
  17. package/lib/esm/core/components/shadcn/filters/comboBox/SelectCombobox.js +3 -1
  18. package/lib/esm/core/components/shadcn/filters/comboBox/SelectCombobox.js.map +1 -1
  19. package/lib/esm/core/components/shadcn/filters/comboBox/StringListCombobox.js +1 -1
  20. package/lib/esm/core/components/shadcn/filters/comboBox/StringListCombobox.js.map +1 -1
  21. package/lib/esm/core/components/shadcn/filters/filter/StringListFilter.js +1 -1
  22. package/lib/esm/core/components/shadcn/filters/filter/StringListFilter.js.map +1 -1
  23. package/lib/esm/core/components/shadcn/filters/filter/dateFilter.js +4 -2
  24. package/lib/esm/core/components/shadcn/filters/filter/dateFilter.js.map +1 -1
  25. package/lib/esm/core/components/shadcn/filters/filterBar.js +7 -4
  26. package/lib/esm/core/components/shadcn/filters/filterBar.js.map +1 -1
  27. package/lib/esm/core/components/shadcn/index.js +4 -0
  28. package/lib/esm/core/components/shadcn/index.js.map +1 -1
  29. package/lib/esm/core/components/shadcn/modal/ConfirmModal.js +4 -2
  30. package/lib/esm/core/components/shadcn/modal/ConfirmModal.js.map +1 -1
  31. package/lib/esm/core/components/shadcn/modal/DeleteModal.js +5 -3
  32. package/lib/esm/core/components/shadcn/modal/DeleteModal.js.map +1 -1
  33. package/lib/esm/core/components/shadcn/popover.js +11 -7
  34. package/lib/esm/core/components/shadcn/popover.js.map +1 -1
  35. package/lib/esm/core/components/shadcn/radioGroup.js +29 -0
  36. package/lib/esm/core/components/shadcn/radioGroup.js.map +1 -0
  37. package/lib/esm/core/components/shadcn/switch.js +19 -0
  38. package/lib/esm/core/components/shadcn/switch.js.map +1 -0
  39. package/lib/esm/core/components/shadcn/tabs.js +6 -6
  40. package/lib/esm/core/components/shadcn/tabs.js.map +1 -1
  41. package/lib/esm/core/components/shadcn/theme/ThemeSwitcher.js +7 -4
  42. package/lib/esm/core/components/shadcn/theme/ThemeSwitcher.js.map +1 -1
  43. package/lib/esm/core/components/toast/NotificationPanel.js +3 -3
  44. package/lib/esm/core/components/toast/NotificationPanel.js.map +1 -1
  45. package/lib/esm/core/hooks/PortalContainerProvider.js +9 -3
  46. package/lib/esm/core/hooks/PortalContainerProvider.js.map +1 -1
  47. package/lib/esm/env/index.js +16 -9
  48. package/lib/esm/env/index.js.map +1 -1
  49. package/lib/esm/features/agent/PayloadBuilder.js +87 -15
  50. package/lib/esm/features/agent/PayloadBuilder.js.map +1 -1
  51. package/lib/esm/features/agent/chat/AgentRightPanel.js +159 -0
  52. package/lib/esm/features/agent/chat/AgentRightPanel.js.map +1 -0
  53. package/lib/esm/features/agent/chat/ArtifactsTab.js +69 -0
  54. package/lib/esm/features/agent/chat/ArtifactsTab.js.map +1 -0
  55. package/lib/esm/features/agent/chat/AskUserWidget.js +12 -6
  56. package/lib/esm/features/agent/chat/AskUserWidget.js.map +1 -1
  57. package/lib/esm/features/agent/chat/DocumentPanel.js +6 -3
  58. package/lib/esm/features/agent/chat/DocumentPanel.js.map +1 -1
  59. package/lib/esm/features/agent/chat/ImageLightbox.js +3 -1
  60. package/lib/esm/features/agent/chat/ImageLightbox.js.map +1 -1
  61. package/lib/esm/features/agent/chat/ModernAgentConversation.js +241 -113
  62. package/lib/esm/features/agent/chat/ModernAgentConversation.js.map +1 -1
  63. package/lib/esm/features/agent/chat/ModernAgentOutput/AllMessagesMixed.js +122 -52
  64. package/lib/esm/features/agent/chat/ModernAgentOutput/AllMessagesMixed.js.map +1 -1
  65. package/lib/esm/features/agent/chat/ModernAgentOutput/BatchProgressPanel.js +5 -3
  66. package/lib/esm/features/agent/chat/ModernAgentOutput/BatchProgressPanel.js.map +1 -1
  67. package/lib/esm/features/agent/chat/ModernAgentOutput/Header.js +76 -33
  68. package/lib/esm/features/agent/chat/ModernAgentOutput/Header.js.map +1 -1
  69. package/lib/esm/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.js +82 -83
  70. package/lib/esm/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.js.map +1 -1
  71. package/lib/esm/features/agent/chat/ModernAgentOutput/MessageInput.js +16 -14
  72. package/lib/esm/features/agent/chat/ModernAgentOutput/MessageInput.js.map +1 -1
  73. package/lib/esm/features/agent/chat/ModernAgentOutput/MessageItem.js +20 -5
  74. package/lib/esm/features/agent/chat/ModernAgentOutput/MessageItem.js.map +1 -1
  75. package/lib/esm/features/agent/chat/ModernAgentOutput/PlanPanel.js +8 -6
  76. package/lib/esm/features/agent/chat/ModernAgentOutput/PlanPanel.js.map +1 -1
  77. package/lib/esm/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.js +12 -10
  78. package/lib/esm/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.js.map +1 -1
  79. package/lib/esm/features/agent/chat/ModernAgentOutput/StreamingMessage.js +5 -3
  80. package/lib/esm/features/agent/chat/ModernAgentOutput/StreamingMessage.js.map +1 -1
  81. package/lib/esm/features/agent/chat/ModernAgentOutput/ToolCallGroup.js +104 -13
  82. package/lib/esm/features/agent/chat/ModernAgentOutput/ToolCallGroup.js.map +1 -1
  83. package/lib/esm/features/agent/chat/ModernAgentOutput/WorkstreamTabs.js +9 -5
  84. package/lib/esm/features/agent/chat/ModernAgentOutput/WorkstreamTabs.js.map +1 -1
  85. package/lib/esm/features/agent/chat/ModernAgentOutput/utils.js +160 -76
  86. package/lib/esm/features/agent/chat/ModernAgentOutput/utils.js.map +1 -1
  87. package/lib/esm/features/agent/chat/SlidingThinkingIndicator.js +3 -1
  88. package/lib/esm/features/agent/chat/SlidingThinkingIndicator.js.map +1 -1
  89. package/lib/esm/features/agent/chat/VegaLiteChart.js +14 -2
  90. package/lib/esm/features/agent/chat/VegaLiteChart.js.map +1 -1
  91. package/lib/esm/features/agent/chat/hooks/useAgentPlans.js +3 -8
  92. package/lib/esm/features/agent/chat/hooks/useAgentPlans.js.map +1 -1
  93. package/lib/esm/features/agent/chat/hooks/useAgentStream.js +79 -16
  94. package/lib/esm/features/agent/chat/hooks/useAgentStream.js.map +1 -1
  95. package/lib/esm/features/agent/chat/hooks/useArtifacts.js +108 -0
  96. package/lib/esm/features/agent/chat/hooks/useArtifacts.js.map +1 -0
  97. package/lib/esm/features/agent/chat/hooks/useDocumentPanel.js +56 -5
  98. package/lib/esm/features/agent/chat/hooks/useDocumentPanel.js.map +1 -1
  99. package/lib/esm/features/agent/chat/hooks/useFileProcessing.js +12 -10
  100. package/lib/esm/features/agent/chat/hooks/useFileProcessing.js.map +1 -1
  101. package/lib/esm/features/errors/PanelErrorBoundary.js +3 -1
  102. package/lib/esm/features/errors/PanelErrorBoundary.js.map +1 -1
  103. package/lib/esm/features/facets/AgentRunnerFacetsNav.js +45 -33
  104. package/lib/esm/features/facets/AgentRunnerFacetsNav.js.map +1 -1
  105. package/lib/esm/features/facets/RunsFacetsNav.js +9 -2
  106. package/lib/esm/features/facets/RunsFacetsNav.js.map +1 -1
  107. package/lib/esm/features/facets/index.js +1 -1
  108. package/lib/esm/features/facets/index.js.map +1 -1
  109. package/lib/esm/features/layout/GenericPageNavHeader.js +40 -28
  110. package/lib/esm/features/layout/GenericPageNavHeader.js.map +1 -1
  111. package/lib/esm/features/layout/NotFoundView.js +3 -1
  112. package/lib/esm/features/layout/NotFoundView.js.map +1 -1
  113. package/lib/esm/features/magic-pdf/AnnotatedImageSlider.js +9 -5
  114. package/lib/esm/features/magic-pdf/AnnotatedImageSlider.js.map +1 -1
  115. package/lib/esm/features/magic-pdf/DownloadPopover.js +5 -4
  116. package/lib/esm/features/magic-pdf/DownloadPopover.js.map +1 -1
  117. package/lib/esm/features/magic-pdf/MagicPdfView.js +8 -5
  118. package/lib/esm/features/magic-pdf/MagicPdfView.js.map +1 -1
  119. package/lib/esm/features/pdf-viewer/PdfPageSlider.js +9 -5
  120. package/lib/esm/features/pdf-viewer/PdfPageSlider.js.map +1 -1
  121. package/lib/esm/features/pdf-viewer/SimplePdfViewer.js +5 -3
  122. package/lib/esm/features/pdf-viewer/SimplePdfViewer.js.map +1 -1
  123. package/lib/esm/features/permissions/UserPermissionsProvider.js +3 -1
  124. package/lib/esm/features/permissions/UserPermissionsProvider.js.map +1 -1
  125. package/lib/esm/features/store/collections/BrowseCollectionView.js +9 -1
  126. package/lib/esm/features/store/collections/BrowseCollectionView.js.map +1 -1
  127. package/lib/esm/features/store/collections/CollectionsTable.js +14 -7
  128. package/lib/esm/features/store/collections/CollectionsTable.js.map +1 -1
  129. package/lib/esm/features/store/collections/CreateCollection.js +12 -9
  130. package/lib/esm/features/store/collections/CreateCollection.js.map +1 -1
  131. package/lib/esm/features/store/collections/EditCollectionView.js +23 -19
  132. package/lib/esm/features/store/collections/EditCollectionView.js.map +1 -1
  133. package/lib/esm/features/store/collections/SelectCollection.js +25 -10
  134. package/lib/esm/features/store/collections/SelectCollection.js.map +1 -1
  135. package/lib/esm/features/store/collections/SharedPropsEditor.js +5 -3
  136. package/lib/esm/features/store/collections/SharedPropsEditor.js.map +1 -1
  137. package/lib/esm/features/store/collections/SyncMemberHeadsToggle.js +5 -3
  138. package/lib/esm/features/store/collections/SyncMemberHeadsToggle.js.map +1 -1
  139. package/lib/esm/features/store/objects/DocumentPreviewPanel.js +14 -12
  140. package/lib/esm/features/store/objects/DocumentPreviewPanel.js.map +1 -1
  141. package/lib/esm/features/store/objects/DocumentSearchResults.js +15 -5
  142. package/lib/esm/features/store/objects/DocumentSearchResults.js.map +1 -1
  143. package/lib/esm/features/store/objects/DocumentTable.js +10 -7
  144. package/lib/esm/features/store/objects/DocumentTable.js.map +1 -1
  145. package/lib/esm/features/store/objects/ExportPropertiesModal.js +5 -2
  146. package/lib/esm/features/store/objects/ExportPropertiesModal.js.map +1 -1
  147. package/lib/esm/features/store/objects/components/ContentDispositionButton.js +3 -1
  148. package/lib/esm/features/store/objects/components/ContentDispositionButton.js.map +1 -1
  149. package/lib/esm/features/store/objects/components/ContentOverview.js +55 -40
  150. package/lib/esm/features/store/objects/components/ContentOverview.js.map +1 -1
  151. package/lib/esm/features/store/objects/components/DocumentIcon.js +4 -3
  152. package/lib/esm/features/store/objects/components/DocumentIcon.js.map +1 -1
  153. package/lib/esm/features/store/objects/components/PropertiesEditorModal.js +13 -11
  154. package/lib/esm/features/store/objects/components/PropertiesEditorModal.js.map +1 -1
  155. package/lib/esm/features/store/objects/components/SaveVersionConfirmModal.js +15 -18
  156. package/lib/esm/features/store/objects/components/SaveVersionConfirmModal.js.map +1 -1
  157. package/lib/esm/features/store/objects/components/SelectDocument.js +9 -6
  158. package/lib/esm/features/store/objects/components/SelectDocument.js.map +1 -1
  159. package/lib/esm/features/store/objects/components/TextEditorPanel.js +97 -0
  160. package/lib/esm/features/store/objects/components/TextEditorPanel.js.map +1 -0
  161. package/lib/esm/features/store/objects/components/VectorSearchWidget.js +3 -1
  162. package/lib/esm/features/store/objects/components/VectorSearchWidget.js.map +1 -1
  163. package/lib/esm/features/store/objects/components/useContentPanelHooks.js +4 -2
  164. package/lib/esm/features/store/objects/components/useContentPanelHooks.js.map +1 -1
  165. package/lib/esm/features/store/objects/components/useDownloadFile.js +12 -10
  166. package/lib/esm/features/store/objects/components/useDownloadFile.js.map +1 -1
  167. package/lib/esm/features/store/objects/layout/documentLayout.js +10 -6
  168. package/lib/esm/features/store/objects/layout/documentLayout.js.map +1 -1
  169. package/lib/esm/features/store/objects/layout/renderers.js +10 -1
  170. package/lib/esm/features/store/objects/layout/renderers.js.map +1 -1
  171. package/lib/esm/features/store/objects/search/DocumentSearchContext.js +3 -2
  172. package/lib/esm/features/store/objects/search/DocumentSearchContext.js.map +1 -1
  173. package/lib/esm/features/store/objects/search/DocumentSearchProvider.js +3 -0
  174. package/lib/esm/features/store/objects/search/DocumentSearchProvider.js.map +1 -1
  175. package/lib/esm/features/store/objects/selection/ObjectsActionContext.js +22 -109
  176. package/lib/esm/features/store/objects/selection/ObjectsActionContext.js.map +1 -1
  177. package/lib/esm/features/store/objects/selection/ObjectsActionContextClass.js +50 -0
  178. package/lib/esm/features/store/objects/selection/ObjectsActionContextClass.js.map +1 -0
  179. package/lib/esm/features/store/objects/selection/ObjectsActionHooks.js +27 -0
  180. package/lib/esm/features/store/objects/selection/ObjectsActionHooks.js.map +1 -0
  181. package/lib/esm/features/store/objects/selection/SelectionActions.js +10 -6
  182. package/lib/esm/features/store/objects/selection/SelectionActions.js.map +1 -1
  183. package/lib/esm/features/store/objects/selection/actions/AddToCollectionAction.js +17 -12
  184. package/lib/esm/features/store/objects/selection/actions/AddToCollectionAction.js.map +1 -1
  185. package/lib/esm/features/store/objects/selection/actions/ChangeTypeAction.js +9 -5
  186. package/lib/esm/features/store/objects/selection/actions/ChangeTypeAction.js.map +1 -1
  187. package/lib/esm/features/store/objects/selection/actions/ConfirmAction.js +4 -2
  188. package/lib/esm/features/store/objects/selection/actions/ConfirmAction.js.map +1 -1
  189. package/lib/esm/features/store/objects/selection/actions/DeleteObjectsAction.js +24 -23
  190. package/lib/esm/features/store/objects/selection/actions/DeleteObjectsAction.js.map +1 -1
  191. package/lib/esm/features/store/objects/selection/actions/ExportPropertiesAction.js +10 -5
  192. package/lib/esm/features/store/objects/selection/actions/ExportPropertiesAction.js.map +1 -1
  193. package/lib/esm/features/store/objects/selection/actions/RemoveFromCollectionAction.js +13 -9
  194. package/lib/esm/features/store/objects/selection/actions/RemoveFromCollectionAction.js.map +1 -1
  195. package/lib/esm/features/store/objects/selection/actions/StartWorkflowComponent.js +14 -8
  196. package/lib/esm/features/store/objects/selection/actions/StartWorkflowComponent.js.map +1 -1
  197. package/lib/esm/features/store/objects/upload/DocumentUploadModal.js +42 -39
  198. package/lib/esm/features/store/objects/upload/DocumentUploadModal.js.map +1 -1
  199. package/lib/esm/features/store/objects/upload/useSmartFileUploadProcessing.js +4 -2
  200. package/lib/esm/features/store/objects/upload/useSmartFileUploadProcessing.js.map +1 -1
  201. package/lib/esm/features/store/objects/upload/useUploadHandler.js +9 -7
  202. package/lib/esm/features/store/objects/upload/useUploadHandler.js.map +1 -1
  203. package/lib/esm/features/store/types/ContentObjectTypesSearch.js +6 -4
  204. package/lib/esm/features/store/types/ContentObjectTypesSearch.js.map +1 -1
  205. package/lib/esm/features/store/types/ContentObjectTypesTable.js +3 -1
  206. package/lib/esm/features/store/types/ContentObjectTypesTable.js.map +1 -1
  207. package/lib/esm/features/store/types/CreateOrUpdateTypeModal.js +6 -7
  208. package/lib/esm/features/store/types/CreateOrUpdateTypeModal.js.map +1 -1
  209. package/lib/esm/features/store/types/ObjectSchemaEditor.js +9 -7
  210. package/lib/esm/features/store/types/ObjectSchemaEditor.js.map +1 -1
  211. package/lib/esm/features/store/types/SelectContentType.js +9 -7
  212. package/lib/esm/features/store/types/SelectContentType.js.map +1 -1
  213. package/lib/esm/features/store/types/SelectContentTypeModal.js +5 -2
  214. package/lib/esm/features/store/types/SelectContentTypeModal.js.map +1 -1
  215. package/lib/esm/features/store/types/TableLayoutEditor.js +6 -4
  216. package/lib/esm/features/store/types/TableLayoutEditor.js.map +1 -1
  217. package/lib/esm/features/user/UserInfo.js +40 -50
  218. package/lib/esm/features/user/UserInfo.js.map +1 -1
  219. package/lib/esm/i18n/index.js +31 -0
  220. package/lib/esm/i18n/index.js.map +1 -0
  221. package/lib/esm/i18n/instance.js +46 -0
  222. package/lib/esm/i18n/instance.js.map +1 -0
  223. package/lib/esm/i18n/locales/ar.json +696 -0
  224. package/lib/esm/i18n/locales/de.json +664 -0
  225. package/lib/esm/i18n/locales/en.json +665 -0
  226. package/lib/esm/i18n/locales/es.json +670 -0
  227. package/lib/esm/i18n/locales/fr.json +672 -0
  228. package/lib/esm/i18n/locales/it.json +670 -0
  229. package/lib/esm/i18n/locales/ja.json +664 -0
  230. package/lib/esm/i18n/locales/ko.json +664 -0
  231. package/lib/esm/i18n/locales/pt.json +670 -0
  232. package/lib/esm/i18n/locales/ru.json +680 -0
  233. package/lib/esm/i18n/locales/tr.json +664 -0
  234. package/lib/esm/i18n/locales/zh-TW.json +664 -0
  235. package/lib/esm/i18n/locales/zh.json +664 -0
  236. package/lib/esm/layout/FullHeightLayout.js +3 -0
  237. package/lib/esm/layout/FullHeightLayout.js.map +1 -1
  238. package/lib/esm/layout/Navbar.js +3 -1
  239. package/lib/esm/layout/Navbar.js.map +1 -1
  240. package/lib/esm/layout/RegionTag.js +15 -0
  241. package/lib/esm/layout/RegionTag.js.map +1 -0
  242. package/lib/esm/layout/Sidebar.js +2 -2
  243. package/lib/esm/layout/Sidebar.js.map +1 -1
  244. package/lib/esm/layout/index.js +1 -0
  245. package/lib/esm/layout/index.js.map +1 -1
  246. package/lib/esm/router/HistoryNavigator.js +1 -1
  247. package/lib/esm/router/HistoryNavigator.js.map +1 -1
  248. package/lib/esm/router/Nav.js +5 -3
  249. package/lib/esm/router/Nav.js.map +1 -1
  250. package/lib/esm/router/NestedNavigationContext.js +4 -0
  251. package/lib/esm/router/NestedNavigationContext.js.map +1 -1
  252. package/lib/esm/router/NestedRouterProvider.js +3 -1
  253. package/lib/esm/router/NestedRouterProvider.js.map +1 -1
  254. package/lib/esm/router/Router.js +21 -6
  255. package/lib/esm/router/Router.js.map +1 -1
  256. package/lib/esm/session/UserSession.js +25 -4
  257. package/lib/esm/session/UserSession.js.map +1 -1
  258. package/lib/esm/session/UserSessionProvider.js +6 -13
  259. package/lib/esm/session/UserSessionProvider.js.map +1 -1
  260. package/lib/esm/session/auth/composable.js +1 -1
  261. package/lib/esm/session/auth/composable.js.map +1 -1
  262. package/lib/esm/session/auth/domainRouting.js +17 -0
  263. package/lib/esm/session/auth/domainRouting.js.map +1 -0
  264. package/lib/esm/session/auth/firebase.js +1 -1
  265. package/lib/esm/session/auth/firebase.js.map +1 -1
  266. package/lib/esm/session/auth/useCurrentTenant.js +3 -1
  267. package/lib/esm/session/auth/useCurrentTenant.js.map +1 -1
  268. package/lib/esm/shell/SplashScreen.js +3 -7
  269. package/lib/esm/shell/SplashScreen.js.map +1 -1
  270. package/lib/esm/shell/apps/StandaloneApp.js +5 -2
  271. package/lib/esm/shell/apps/StandaloneApp.js.map +1 -1
  272. package/lib/esm/shell/login/EnterpriseSigninButton.js +5 -3
  273. package/lib/esm/shell/login/EnterpriseSigninButton.js.map +1 -1
  274. package/lib/esm/shell/login/GitHubSignInButton.js +3 -7
  275. package/lib/esm/shell/login/GitHubSignInButton.js.map +1 -1
  276. package/lib/esm/shell/login/GoogleSignInButton.js +3 -1
  277. package/lib/esm/shell/login/GoogleSignInButton.js.map +1 -1
  278. package/lib/esm/shell/login/InviteAcceptModal.js +5 -2
  279. package/lib/esm/shell/login/InviteAcceptModal.js.map +1 -1
  280. package/lib/esm/shell/login/MicrosoftSigninButton.js +4 -6
  281. package/lib/esm/shell/login/MicrosoftSigninButton.js.map +1 -1
  282. package/lib/esm/shell/login/SigninScreen.js +6 -2
  283. package/lib/esm/shell/login/SigninScreen.js.map +1 -1
  284. package/lib/esm/shell/login/SignupForm.js +36 -34
  285. package/lib/esm/shell/login/SignupForm.js.map +1 -1
  286. package/lib/esm/shell/login/TerminalLogin.js +28 -21
  287. package/lib/esm/shell/login/TerminalLogin.js.map +1 -1
  288. package/lib/esm/shell/login/UserInfo.js +6 -4
  289. package/lib/esm/shell/login/UserInfo.js.map +1 -1
  290. package/lib/esm/shell/login/UserSessionMenu.js +3 -4
  291. package/lib/esm/shell/login/UserSessionMenu.js.map +1 -1
  292. package/lib/esm/widgets/index.js +0 -1
  293. package/lib/esm/widgets/index.js.map +1 -1
  294. package/lib/esm/widgets/json-view/JSONCode.js +1 -1
  295. package/lib/esm/widgets/json-view/JSONCode.js.map +1 -1
  296. package/lib/esm/widgets/json-view/JSONDisplay.js +6 -2
  297. package/lib/esm/widgets/json-view/JSONDisplay.js.map +1 -1
  298. package/lib/esm/widgets/json-view/JSONSwitcher.js +6 -0
  299. package/lib/esm/widgets/json-view/JSONSwitcher.js.map +1 -0
  300. package/lib/esm/widgets/json-view/JSONView.js +1 -1
  301. package/lib/esm/widgets/json-view/JSONView.js.map +1 -1
  302. package/lib/esm/widgets/json-view/index.js +1 -0
  303. package/lib/esm/widgets/json-view/index.js.map +1 -1
  304. package/lib/esm/widgets/markdown/ArtifactContentRenderer.js +6 -5
  305. package/lib/esm/widgets/markdown/ArtifactContentRenderer.js.map +1 -1
  306. package/lib/esm/widgets/markdown/CodeBlockContext.js +11 -0
  307. package/lib/esm/widgets/markdown/CodeBlockContext.js.map +1 -0
  308. package/lib/esm/widgets/markdown/MarkdownRenderer.js +11 -10
  309. package/lib/esm/widgets/markdown/MarkdownRenderer.js.map +1 -1
  310. package/lib/esm/widgets/markdown/codeBlockHandlers.js +11 -12
  311. package/lib/esm/widgets/markdown/codeBlockHandlers.js.map +1 -1
  312. package/lib/esm/widgets/markdown/index.js +10 -9
  313. package/lib/esm/widgets/markdown/index.js.map +1 -1
  314. package/lib/esm/widgets/markdown/remarkDirectiveHandler.js +0 -1
  315. package/lib/esm/widgets/markdown/remarkDirectiveHandler.js.map +1 -1
  316. package/lib/esm/widgets/schema-editor/ManagedSchema.js +6 -5
  317. package/lib/esm/widgets/schema-editor/ManagedSchema.js.map +1 -1
  318. package/lib/esm/widgets/schema-editor/editor/PropertyEditor.js +7 -3
  319. package/lib/esm/widgets/schema-editor/editor/PropertyEditor.js.map +1 -1
  320. package/lib/esm/widgets/schema-editor/editor/SchemaEditor.js +3 -1
  321. package/lib/esm/widgets/schema-editor/editor/SchemaEditor.js.map +1 -1
  322. package/lib/esm/widgets/upload/DropZone.js +9 -11
  323. package/lib/esm/widgets/upload/DropZone.js.map +1 -1
  324. package/lib/esm/widgets/upload/UploadResultCategory.js +3 -1
  325. package/lib/esm/widgets/upload/UploadResultCategory.js.map +1 -1
  326. package/lib/esm/widgets/upload/UploadSummary.js +3 -1
  327. package/lib/esm/widgets/upload/UploadSummary.js.map +1 -1
  328. package/lib/tsconfig.tsbuildinfo +1 -1
  329. package/lib/types/core/components/SelectList.d.ts.map +1 -1
  330. package/lib/types/core/components/SidePanel.d.ts +4 -2
  331. package/lib/types/core/components/SidePanel.d.ts.map +1 -1
  332. package/lib/types/core/components/index.d.ts +0 -5
  333. package/lib/types/core/components/index.d.ts.map +1 -1
  334. package/lib/types/core/components/shadcn/badge.d.ts +2 -2
  335. package/lib/types/core/components/shadcn/breadcrumb.d.ts +1 -1
  336. package/lib/types/core/components/shadcn/breadcrumb.d.ts.map +1 -1
  337. package/lib/types/core/components/shadcn/button.d.ts.map +1 -1
  338. package/lib/types/core/components/shadcn/collaspible.d.ts +6 -0
  339. package/lib/types/core/components/shadcn/collaspible.d.ts.map +1 -0
  340. package/lib/types/core/components/shadcn/dropdown.d.ts +51 -0
  341. package/lib/types/core/components/shadcn/dropdown.d.ts.map +1 -0
  342. package/lib/types/core/components/shadcn/filters/comboBox/DateCombobox.d.ts.map +1 -1
  343. package/lib/types/core/components/shadcn/filters/comboBox/SelectCombobox.d.ts.map +1 -1
  344. package/lib/types/core/components/shadcn/filters/filter/dateFilter.d.ts.map +1 -1
  345. package/lib/types/core/components/shadcn/filters/filterBar.d.ts.map +1 -1
  346. package/lib/types/core/components/shadcn/index.d.ts +4 -0
  347. package/lib/types/core/components/shadcn/index.d.ts.map +1 -1
  348. package/lib/types/core/components/shadcn/input.d.ts +1 -1
  349. package/lib/types/core/components/shadcn/modal/ConfirmModal.d.ts +2 -1
  350. package/lib/types/core/components/shadcn/modal/ConfirmModal.d.ts.map +1 -1
  351. package/lib/types/core/components/shadcn/modal/DeleteModal.d.ts.map +1 -1
  352. package/lib/types/core/components/shadcn/popover.d.ts +11 -3
  353. package/lib/types/core/components/shadcn/popover.d.ts.map +1 -1
  354. package/lib/types/core/components/shadcn/radioGroup.d.ts +26 -0
  355. package/lib/types/core/components/shadcn/radioGroup.d.ts.map +1 -0
  356. package/lib/types/core/components/shadcn/switch.d.ts +12 -0
  357. package/lib/types/core/components/shadcn/switch.d.ts.map +1 -0
  358. package/lib/types/core/components/shadcn/tabs.d.ts +4 -2
  359. package/lib/types/core/components/shadcn/tabs.d.ts.map +1 -1
  360. package/lib/types/core/components/shadcn/theme/ThemeSwitcher.d.ts +3 -2
  361. package/lib/types/core/components/shadcn/theme/ThemeSwitcher.d.ts.map +1 -1
  362. package/lib/types/core/components/toast/NotificationPanel.d.ts.map +1 -1
  363. package/lib/types/core/hooks/PortalContainerProvider.d.ts +1 -0
  364. package/lib/types/core/hooks/PortalContainerProvider.d.ts.map +1 -1
  365. package/lib/types/env/index.d.ts +12 -3
  366. package/lib/types/env/index.d.ts.map +1 -1
  367. package/lib/types/features/agent/PayloadBuilder.d.ts +31 -3
  368. package/lib/types/features/agent/PayloadBuilder.d.ts.map +1 -1
  369. package/lib/types/features/agent/chat/AgentRightPanel.d.ts +50 -0
  370. package/lib/types/features/agent/chat/AgentRightPanel.d.ts.map +1 -0
  371. package/lib/types/features/agent/chat/ArtifactsTab.d.ts +9 -0
  372. package/lib/types/features/agent/chat/ArtifactsTab.d.ts.map +1 -0
  373. package/lib/types/features/agent/chat/AskUserWidget.d.ts.map +1 -1
  374. package/lib/types/features/agent/chat/DocumentPanel.d.ts.map +1 -1
  375. package/lib/types/features/agent/chat/ImageLightbox.d.ts.map +1 -1
  376. package/lib/types/features/agent/chat/ModernAgentConversation.d.ts +22 -9
  377. package/lib/types/features/agent/chat/ModernAgentConversation.d.ts.map +1 -1
  378. package/lib/types/features/agent/chat/ModernAgentOutput/AllMessagesMixed.d.ts +3 -1
  379. package/lib/types/features/agent/chat/ModernAgentOutput/AllMessagesMixed.d.ts.map +1 -1
  380. package/lib/types/features/agent/chat/ModernAgentOutput/BatchProgressPanel.d.ts.map +1 -1
  381. package/lib/types/features/agent/chat/ModernAgentOutput/Header.d.ts +13 -4
  382. package/lib/types/features/agent/chat/ModernAgentOutput/Header.d.ts.map +1 -1
  383. package/lib/types/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.d.ts +1 -1
  384. package/lib/types/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.d.ts.map +1 -1
  385. package/lib/types/features/agent/chat/ModernAgentOutput/MessageInput.d.ts.map +1 -1
  386. package/lib/types/features/agent/chat/ModernAgentOutput/MessageItem.d.ts.map +1 -1
  387. package/lib/types/features/agent/chat/ModernAgentOutput/PlanPanel.d.ts.map +1 -1
  388. package/lib/types/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.d.ts.map +1 -1
  389. package/lib/types/features/agent/chat/ModernAgentOutput/StreamingMessage.d.ts +3 -1
  390. package/lib/types/features/agent/chat/ModernAgentOutput/StreamingMessage.d.ts.map +1 -1
  391. package/lib/types/features/agent/chat/ModernAgentOutput/ToolCallGroup.d.ts +5 -1
  392. package/lib/types/features/agent/chat/ModernAgentOutput/ToolCallGroup.d.ts.map +1 -1
  393. package/lib/types/features/agent/chat/ModernAgentOutput/WorkstreamTabs.d.ts.map +1 -1
  394. package/lib/types/features/agent/chat/ModernAgentOutput/utils.d.ts +16 -1
  395. package/lib/types/features/agent/chat/ModernAgentOutput/utils.d.ts.map +1 -1
  396. package/lib/types/features/agent/chat/SlidingThinkingIndicator.d.ts.map +1 -1
  397. package/lib/types/features/agent/chat/VegaLiteChart.d.ts.map +1 -1
  398. package/lib/types/features/agent/chat/hooks/useAgentPlans.d.ts.map +1 -1
  399. package/lib/types/features/agent/chat/hooks/useAgentStream.d.ts +5 -3
  400. package/lib/types/features/agent/chat/hooks/useAgentStream.d.ts.map +1 -1
  401. package/lib/types/features/agent/chat/hooks/useArtifacts.d.ts +18 -0
  402. package/lib/types/features/agent/chat/hooks/useArtifacts.d.ts.map +1 -0
  403. package/lib/types/features/agent/chat/hooks/useDocumentPanel.d.ts.map +1 -1
  404. package/lib/types/features/agent/chat/hooks/useFileProcessing.d.ts +4 -4
  405. package/lib/types/features/agent/chat/hooks/useFileProcessing.d.ts.map +1 -1
  406. package/lib/types/features/agent/chat/types/document.d.ts +2 -0
  407. package/lib/types/features/agent/chat/types/document.d.ts.map +1 -1
  408. package/lib/types/features/errors/PanelErrorBoundary.d.ts.map +1 -1
  409. package/lib/types/features/facets/AgentRunnerFacetsNav.d.ts +2 -1
  410. package/lib/types/features/facets/AgentRunnerFacetsNav.d.ts.map +1 -1
  411. package/lib/types/features/facets/RunsFacetsNav.d.ts.map +1 -1
  412. package/lib/types/features/facets/index.d.ts +1 -1
  413. package/lib/types/features/facets/index.d.ts.map +1 -1
  414. package/lib/types/features/layout/GenericPageNavHeader.d.ts +2 -2
  415. package/lib/types/features/layout/GenericPageNavHeader.d.ts.map +1 -1
  416. package/lib/types/features/layout/NotFoundView.d.ts.map +1 -1
  417. package/lib/types/features/magic-pdf/AnnotatedImageSlider.d.ts.map +1 -1
  418. package/lib/types/features/magic-pdf/DownloadPopover.d.ts.map +1 -1
  419. package/lib/types/features/magic-pdf/MagicPdfView.d.ts.map +1 -1
  420. package/lib/types/features/pdf-viewer/PdfPageSlider.d.ts.map +1 -1
  421. package/lib/types/features/pdf-viewer/SimplePdfViewer.d.ts.map +1 -1
  422. package/lib/types/features/permissions/UserPermissionsProvider.d.ts.map +1 -1
  423. package/lib/types/features/store/collections/BrowseCollectionView.d.ts.map +1 -1
  424. package/lib/types/features/store/collections/CollectionsTable.d.ts +4 -0
  425. package/lib/types/features/store/collections/CollectionsTable.d.ts.map +1 -1
  426. package/lib/types/features/store/collections/CreateCollection.d.ts.map +1 -1
  427. package/lib/types/features/store/collections/EditCollectionView.d.ts.map +1 -1
  428. package/lib/types/features/store/collections/SelectCollection.d.ts.map +1 -1
  429. package/lib/types/features/store/collections/SharedPropsEditor.d.ts.map +1 -1
  430. package/lib/types/features/store/collections/SyncMemberHeadsToggle.d.ts.map +1 -1
  431. package/lib/types/features/store/objects/DocumentPreviewPanel.d.ts.map +1 -1
  432. package/lib/types/features/store/objects/DocumentSearchResults.d.ts.map +1 -1
  433. package/lib/types/features/store/objects/DocumentTable.d.ts.map +1 -1
  434. package/lib/types/features/store/objects/ExportPropertiesModal.d.ts.map +1 -1
  435. package/lib/types/features/store/objects/components/ContentDispositionButton.d.ts.map +1 -1
  436. package/lib/types/features/store/objects/components/ContentOverview.d.ts.map +1 -1
  437. package/lib/types/features/store/objects/components/DocumentIcon.d.ts +2 -1
  438. package/lib/types/features/store/objects/components/DocumentIcon.d.ts.map +1 -1
  439. package/lib/types/features/store/objects/components/PropertiesEditorModal.d.ts.map +1 -1
  440. package/lib/types/features/store/objects/components/SaveVersionConfirmModal.d.ts.map +1 -1
  441. package/lib/types/features/store/objects/components/SelectDocument.d.ts +3 -1
  442. package/lib/types/features/store/objects/components/SelectDocument.d.ts.map +1 -1
  443. package/lib/types/features/store/objects/components/TextEditorPanel.d.ts +10 -0
  444. package/lib/types/features/store/objects/components/TextEditorPanel.d.ts.map +1 -0
  445. package/lib/types/features/store/objects/components/VectorSearchWidget.d.ts.map +1 -1
  446. package/lib/types/features/store/objects/components/useContentPanelHooks.d.ts.map +1 -1
  447. package/lib/types/features/store/objects/components/useDownloadFile.d.ts.map +1 -1
  448. package/lib/types/features/store/objects/layout/documentLayout.d.ts +3 -2
  449. package/lib/types/features/store/objects/layout/documentLayout.d.ts.map +1 -1
  450. package/lib/types/features/store/objects/layout/renderers.d.ts.map +1 -1
  451. package/lib/types/features/store/objects/search/DocumentSearchContext.d.ts.map +1 -1
  452. package/lib/types/features/store/objects/search/DocumentSearchProvider.d.ts.map +1 -1
  453. package/lib/types/features/store/objects/selection/ObjectsActionContext.d.ts +3 -20
  454. package/lib/types/features/store/objects/selection/ObjectsActionContext.d.ts.map +1 -1
  455. package/lib/types/features/store/objects/selection/ObjectsActionContextClass.d.ts +16 -0
  456. package/lib/types/features/store/objects/selection/ObjectsActionContextClass.d.ts.map +1 -0
  457. package/lib/types/features/store/objects/selection/ObjectsActionHooks.d.ts +7 -0
  458. package/lib/types/features/store/objects/selection/ObjectsActionHooks.d.ts.map +1 -0
  459. package/lib/types/features/store/objects/selection/ObjectsActionSpec.d.ts +4 -1
  460. package/lib/types/features/store/objects/selection/ObjectsActionSpec.d.ts.map +1 -1
  461. package/lib/types/features/store/objects/selection/SelectionActions.d.ts +6 -1
  462. package/lib/types/features/store/objects/selection/SelectionActions.d.ts.map +1 -1
  463. package/lib/types/features/store/objects/selection/actions/AddToCollectionAction.d.ts.map +1 -1
  464. package/lib/types/features/store/objects/selection/actions/ChangeTypeAction.d.ts.map +1 -1
  465. package/lib/types/features/store/objects/selection/actions/ConfirmAction.d.ts +1 -1
  466. package/lib/types/features/store/objects/selection/actions/ConfirmAction.d.ts.map +1 -1
  467. package/lib/types/features/store/objects/selection/actions/DeleteObjectsAction.d.ts.map +1 -1
  468. package/lib/types/features/store/objects/selection/actions/ExportPropertiesAction.d.ts.map +1 -1
  469. package/lib/types/features/store/objects/selection/actions/RemoveFromCollectionAction.d.ts.map +1 -1
  470. package/lib/types/features/store/objects/selection/actions/StartWorkflowComponent.d.ts.map +1 -1
  471. package/lib/types/features/store/objects/upload/DocumentUploadModal.d.ts.map +1 -1
  472. package/lib/types/features/store/objects/upload/useSmartFileUploadProcessing.d.ts.map +1 -1
  473. package/lib/types/features/store/objects/upload/useUploadHandler.d.ts.map +1 -1
  474. package/lib/types/features/store/types/ContentObjectTypesSearch.d.ts.map +1 -1
  475. package/lib/types/features/store/types/ContentObjectTypesTable.d.ts.map +1 -1
  476. package/lib/types/features/store/types/CreateOrUpdateTypeModal.d.ts +2 -1
  477. package/lib/types/features/store/types/CreateOrUpdateTypeModal.d.ts.map +1 -1
  478. package/lib/types/features/store/types/ObjectSchemaEditor.d.ts.map +1 -1
  479. package/lib/types/features/store/types/SelectContentType.d.ts.map +1 -1
  480. package/lib/types/features/store/types/SelectContentTypeModal.d.ts.map +1 -1
  481. package/lib/types/features/store/types/TableLayoutEditor.d.ts.map +1 -1
  482. package/lib/types/features/user/UserInfo.d.ts +2 -2
  483. package/lib/types/features/user/UserInfo.d.ts.map +1 -1
  484. package/lib/types/i18n/index.d.ts +14 -0
  485. package/lib/types/i18n/index.d.ts.map +1 -0
  486. package/lib/types/i18n/instance.d.ts +5 -0
  487. package/lib/types/i18n/instance.d.ts.map +1 -0
  488. package/lib/types/layout/FullHeightLayout.d.ts +3 -0
  489. package/lib/types/layout/FullHeightLayout.d.ts.map +1 -1
  490. package/lib/types/layout/Navbar.d.ts.map +1 -1
  491. package/lib/types/layout/RegionTag.d.ts +4 -0
  492. package/lib/types/layout/RegionTag.d.ts.map +1 -0
  493. package/lib/types/layout/Sidebar.d.ts +2 -1
  494. package/lib/types/layout/Sidebar.d.ts.map +1 -1
  495. package/lib/types/layout/index.d.ts +1 -0
  496. package/lib/types/layout/index.d.ts.map +1 -1
  497. package/lib/types/router/Nav.d.ts +5 -1
  498. package/lib/types/router/Nav.d.ts.map +1 -1
  499. package/lib/types/router/NestedNavigationContext.d.ts.map +1 -1
  500. package/lib/types/router/NestedRouterProvider.d.ts.map +1 -1
  501. package/lib/types/router/Router.d.ts +2 -0
  502. package/lib/types/router/Router.d.ts.map +1 -1
  503. package/lib/types/session/UserSession.d.ts +1 -0
  504. package/lib/types/session/UserSession.d.ts.map +1 -1
  505. package/lib/types/session/UserSessionProvider.d.ts +0 -1
  506. package/lib/types/session/UserSessionProvider.d.ts.map +1 -1
  507. package/lib/types/session/auth/domainRouting.d.ts +3 -0
  508. package/lib/types/session/auth/domainRouting.d.ts.map +1 -0
  509. package/lib/types/session/auth/useCurrentTenant.d.ts.map +1 -1
  510. package/lib/types/shell/SplashScreen.d.ts.map +1 -1
  511. package/lib/types/shell/apps/StandaloneApp.d.ts.map +1 -1
  512. package/lib/types/shell/login/EnterpriseSigninButton.d.ts.map +1 -1
  513. package/lib/types/shell/login/GitHubSignInButton.d.ts.map +1 -1
  514. package/lib/types/shell/login/GoogleSignInButton.d.ts.map +1 -1
  515. package/lib/types/shell/login/InviteAcceptModal.d.ts.map +1 -1
  516. package/lib/types/shell/login/MicrosoftSigninButton.d.ts +1 -1
  517. package/lib/types/shell/login/MicrosoftSigninButton.d.ts.map +1 -1
  518. package/lib/types/shell/login/SigninScreen.d.ts.map +1 -1
  519. package/lib/types/shell/login/SignupForm.d.ts.map +1 -1
  520. package/lib/types/shell/login/TerminalLogin.d.ts.map +1 -1
  521. package/lib/types/shell/login/UserInfo.d.ts.map +1 -1
  522. package/lib/types/shell/login/UserSessionMenu.d.ts.map +1 -1
  523. package/lib/types/widgets/index.d.ts +0 -1
  524. package/lib/types/widgets/index.d.ts.map +1 -1
  525. package/lib/types/widgets/json-view/JSONDisplay.d.ts.map +1 -1
  526. package/lib/types/widgets/json-view/JSONSwitcher.d.ts +6 -0
  527. package/lib/types/widgets/json-view/JSONSwitcher.d.ts.map +1 -0
  528. package/lib/types/widgets/json-view/index.d.ts +1 -0
  529. package/lib/types/widgets/json-view/index.d.ts.map +1 -1
  530. package/lib/types/widgets/markdown/ArtifactContentRenderer.d.ts.map +1 -1
  531. package/lib/types/widgets/markdown/CodeBlockContext.d.ts +21 -0
  532. package/lib/types/widgets/markdown/CodeBlockContext.d.ts.map +1 -0
  533. package/lib/types/widgets/markdown/MarkdownRenderer.d.ts.map +1 -1
  534. package/lib/types/widgets/markdown/codeBlockHandlers.d.ts +0 -12
  535. package/lib/types/widgets/markdown/codeBlockHandlers.d.ts.map +1 -1
  536. package/lib/types/widgets/markdown/index.d.ts +10 -9
  537. package/lib/types/widgets/markdown/index.d.ts.map +1 -1
  538. package/lib/types/widgets/schema-editor/ManagedSchema.d.ts +1 -1
  539. package/lib/types/widgets/schema-editor/ManagedSchema.d.ts.map +1 -1
  540. package/lib/types/widgets/schema-editor/editor/PropertyEditor.d.ts.map +1 -1
  541. package/lib/types/widgets/schema-editor/editor/SchemaEditor.d.ts.map +1 -1
  542. package/lib/types/widgets/upload/DropZone.d.ts.map +1 -1
  543. package/lib/types/widgets/upload/UploadResultCategory.d.ts.map +1 -1
  544. package/lib/types/widgets/upload/UploadSummary.d.ts.map +1 -1
  545. package/lib/vertesia-ui-core.js +1 -1
  546. package/lib/vertesia-ui-core.js.map +1 -1
  547. package/lib/vertesia-ui-env.js +1 -1
  548. package/lib/vertesia-ui-env.js.map +1 -1
  549. package/lib/vertesia-ui-features.js +1 -1
  550. package/lib/vertesia-ui-features.js.map +1 -1
  551. package/lib/vertesia-ui-i18n.js +2 -0
  552. package/lib/vertesia-ui-i18n.js.map +1 -0
  553. package/lib/vertesia-ui-layout.js +1 -1
  554. package/lib/vertesia-ui-layout.js.map +1 -1
  555. package/lib/vertesia-ui-router.js +1 -1
  556. package/lib/vertesia-ui-router.js.map +1 -1
  557. package/lib/vertesia-ui-session.js +1 -1
  558. package/lib/vertesia-ui-session.js.map +1 -1
  559. package/lib/vertesia-ui-shell.js +1 -1
  560. package/lib/vertesia-ui-shell.js.map +1 -1
  561. package/lib/vertesia-ui-widgets.js +1 -1
  562. package/lib/vertesia-ui-widgets.js.map +1 -1
  563. package/package.json +36 -22
  564. package/src/core/components/SelectList.tsx +3 -1
  565. package/src/core/components/SidePanel.tsx +5 -4
  566. package/src/core/components/index.ts +0 -5
  567. package/src/core/components/shadcn/breadcrumb.tsx +16 -9
  568. package/src/core/components/shadcn/button.tsx +5 -3
  569. package/src/core/components/shadcn/collaspible.tsx +33 -0
  570. package/src/core/components/shadcn/dropdown.tsx +325 -0
  571. package/src/core/components/shadcn/filters/comboBox/DateCombobox.tsx +3 -1
  572. package/src/core/components/shadcn/filters/comboBox/SelectCombobox.tsx +3 -1
  573. package/src/core/components/shadcn/filters/comboBox/StringListCombobox.tsx +1 -1
  574. package/src/core/components/shadcn/filters/filter/StringListFilter.tsx +1 -1
  575. package/src/core/components/shadcn/filters/filter/dateFilter.tsx +5 -3
  576. package/src/core/components/shadcn/filters/filterBar.tsx +8 -5
  577. package/src/core/components/shadcn/index.ts +5 -1
  578. package/src/core/components/shadcn/modal/ConfirmModal.tsx +7 -3
  579. package/src/core/components/shadcn/modal/DeleteModal.tsx +5 -3
  580. package/src/core/components/shadcn/popover.tsx +12 -7
  581. package/src/core/components/shadcn/radioGroup.tsx +100 -0
  582. package/src/core/components/shadcn/switch.tsx +60 -0
  583. package/src/core/components/shadcn/tabs.tsx +29 -27
  584. package/src/core/components/shadcn/theme/ThemeSwitcher.tsx +13 -9
  585. package/src/core/components/toast/NotificationPanel.tsx +38 -44
  586. package/src/core/hooks/PortalContainerProvider.tsx +11 -3
  587. package/src/env/index.ts +24 -13
  588. package/src/features/agent/PayloadBuilder.tsx +100 -13
  589. package/src/features/agent/chat/AgentRightPanel.tsx +424 -0
  590. package/src/features/agent/chat/ArtifactsTab.tsx +197 -0
  591. package/src/features/agent/chat/AskUserWidget.tsx +14 -8
  592. package/src/features/agent/chat/DocumentPanel.tsx +24 -9
  593. package/src/features/agent/chat/ImageLightbox.tsx +6 -3
  594. package/src/features/agent/chat/ModernAgentConversation.tsx +460 -279
  595. package/src/features/agent/chat/ModernAgentOutput/AllMessagesMixed.tsx +151 -55
  596. package/src/features/agent/chat/ModernAgentOutput/BatchProgressPanel.tsx +6 -4
  597. package/src/features/agent/chat/ModernAgentOutput/Header.tsx +183 -105
  598. package/src/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.tsx +21 -31
  599. package/src/features/agent/chat/ModernAgentOutput/MessageInput.tsx +119 -114
  600. package/src/features/agent/chat/ModernAgentOutput/MessageItem.tsx +26 -9
  601. package/src/features/agent/chat/ModernAgentOutput/PlanPanel.tsx +9 -7
  602. package/src/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.tsx +15 -13
  603. package/src/features/agent/chat/ModernAgentOutput/StreamingMessage.tsx +8 -3
  604. package/src/features/agent/chat/ModernAgentOutput/ToolCallGroup.tsx +149 -49
  605. package/src/features/agent/chat/ModernAgentOutput/WorkstreamTabs.tsx +9 -5
  606. package/src/features/agent/chat/ModernAgentOutput/utils.test.ts +229 -0
  607. package/src/features/agent/chat/ModernAgentOutput/utils.ts +202 -97
  608. package/src/features/agent/chat/SlidingThinkingIndicator.tsx +5 -3
  609. package/src/features/agent/chat/VegaLiteChart.tsx +20 -8
  610. package/src/features/agent/chat/hooks/useAgentPlans.ts +3 -9
  611. package/src/features/agent/chat/hooks/useAgentStream.ts +86 -19
  612. package/src/features/agent/chat/hooks/useArtifacts.ts +151 -0
  613. package/src/features/agent/chat/hooks/useDocumentPanel.ts +65 -5
  614. package/src/features/agent/chat/hooks/useFileProcessing.ts +14 -13
  615. package/src/features/agent/chat/types/document.ts +2 -0
  616. package/src/features/errors/PanelErrorBoundary.tsx +5 -3
  617. package/src/features/facets/AgentRunnerFacetsNav.tsx +54 -35
  618. package/src/features/facets/RunsFacetsNav.tsx +15 -7
  619. package/src/features/facets/index.ts +1 -1
  620. package/src/features/layout/GenericPageNavHeader.tsx +64 -41
  621. package/src/features/layout/NotFoundView.tsx +4 -1
  622. package/src/features/magic-pdf/AnnotatedImageSlider.tsx +12 -8
  623. package/src/features/magic-pdf/DownloadPopover.tsx +11 -10
  624. package/src/features/magic-pdf/MagicPdfView.tsx +10 -7
  625. package/src/features/pdf-viewer/PdfPageSlider.tsx +10 -6
  626. package/src/features/pdf-viewer/SimplePdfViewer.tsx +5 -3
  627. package/src/features/permissions/UserPermissionsProvider.tsx +3 -1
  628. package/src/features/store/collections/BrowseCollectionView.tsx +11 -1
  629. package/src/features/store/collections/CollectionsTable.tsx +20 -12
  630. package/src/features/store/collections/CreateCollection.tsx +14 -11
  631. package/src/features/store/collections/EditCollectionView.tsx +31 -28
  632. package/src/features/store/collections/SelectCollection.tsx +50 -14
  633. package/src/features/store/collections/SharedPropsEditor.tsx +7 -5
  634. package/src/features/store/collections/SyncMemberHeadsToggle.tsx +6 -4
  635. package/src/features/store/objects/DocumentPreviewPanel.tsx +30 -28
  636. package/src/features/store/objects/DocumentSearchResults.tsx +31 -21
  637. package/src/features/store/objects/DocumentTable.tsx +11 -5
  638. package/src/features/store/objects/ExportPropertiesModal.tsx +8 -5
  639. package/src/features/store/objects/components/ContentDispositionButton.tsx +3 -1
  640. package/src/features/store/objects/components/ContentOverview.tsx +96 -50
  641. package/src/features/store/objects/components/DocumentIcon.tsx +11 -3
  642. package/src/features/store/objects/components/PropertiesEditorModal.tsx +14 -12
  643. package/src/features/store/objects/components/SaveVersionConfirmModal.tsx +24 -37
  644. package/src/features/store/objects/components/SelectDocument.tsx +15 -6
  645. package/src/features/store/objects/components/TextEditorPanel.tsx +143 -0
  646. package/src/features/store/objects/components/VectorSearchWidget.tsx +11 -8
  647. package/src/features/store/objects/components/useContentPanelHooks.ts +4 -2
  648. package/src/features/store/objects/components/useDownloadFile.ts +12 -10
  649. package/src/features/store/objects/layout/documentLayout.tsx +16 -6
  650. package/src/features/store/objects/layout/renderers.tsx +27 -1
  651. package/src/features/store/objects/search/DocumentSearchContext.ts +3 -2
  652. package/src/features/store/objects/search/DocumentSearchProvider.tsx +3 -0
  653. package/src/features/store/objects/selection/ObjectsActionContext.tsx +26 -128
  654. package/src/features/store/objects/selection/ObjectsActionContextClass.ts +59 -0
  655. package/src/features/store/objects/selection/ObjectsActionHooks.ts +33 -0
  656. package/src/features/store/objects/selection/ObjectsActionSpec.ts +4 -1
  657. package/src/features/store/objects/selection/SelectionActions.tsx +14 -6
  658. package/src/features/store/objects/selection/actions/AddToCollectionAction.tsx +19 -14
  659. package/src/features/store/objects/selection/actions/ChangeTypeAction.tsx +9 -5
  660. package/src/features/store/objects/selection/actions/ConfirmAction.tsx +4 -3
  661. package/src/features/store/objects/selection/actions/DeleteObjectsAction.tsx +24 -23
  662. package/src/features/store/objects/selection/actions/ExportPropertiesAction.tsx +10 -5
  663. package/src/features/store/objects/selection/actions/RemoveFromCollectionAction.tsx +13 -9
  664. package/src/features/store/objects/selection/actions/StartWorkflowComponent.tsx +14 -8
  665. package/src/features/store/objects/upload/DocumentUploadModal.tsx +56 -55
  666. package/src/features/store/objects/upload/useSmartFileUploadProcessing.ts +4 -2
  667. package/src/features/store/objects/upload/useUploadHandler.ts +9 -7
  668. package/src/features/store/types/ContentObjectTypesSearch.tsx +10 -8
  669. package/src/features/store/types/ContentObjectTypesTable.tsx +6 -4
  670. package/src/features/store/types/CreateOrUpdateTypeModal.tsx +11 -12
  671. package/src/features/store/types/ObjectSchemaEditor.tsx +11 -9
  672. package/src/features/store/types/SelectContentType.tsx +15 -13
  673. package/src/features/store/types/SelectContentTypeModal.tsx +16 -13
  674. package/src/features/store/types/TableLayoutEditor.tsx +16 -12
  675. package/src/features/user/UserInfo.tsx +47 -56
  676. package/src/i18n/index.tsx +45 -0
  677. package/src/i18n/instance.ts +49 -0
  678. package/src/i18n/locales/ar.json +696 -0
  679. package/src/i18n/locales/de.json +664 -0
  680. package/src/i18n/locales/en.json +665 -0
  681. package/src/i18n/locales/es.json +670 -0
  682. package/src/i18n/locales/fr.json +672 -0
  683. package/src/i18n/locales/it.json +670 -0
  684. package/src/i18n/locales/ja.json +664 -0
  685. package/src/i18n/locales/ko.json +664 -0
  686. package/src/i18n/locales/pt.json +670 -0
  687. package/src/i18n/locales/ru.json +680 -0
  688. package/src/i18n/locales/tr.json +664 -0
  689. package/src/i18n/locales/zh-TW.json +664 -0
  690. package/src/i18n/locales/zh.json +664 -0
  691. package/src/layout/FullHeightLayout.tsx +8 -0
  692. package/src/layout/Navbar.tsx +4 -2
  693. package/src/layout/RegionTag.tsx +25 -0
  694. package/src/layout/Sidebar.tsx +4 -3
  695. package/src/layout/index.ts +2 -1
  696. package/src/router/HistoryNavigator.ts +10 -10
  697. package/src/router/Nav.tsx +9 -3
  698. package/src/router/NestedNavigationContext.tsx +4 -0
  699. package/src/router/NestedRouterProvider.tsx +3 -1
  700. package/src/router/Router.tsx +23 -7
  701. package/src/session/UserSession.ts +26 -5
  702. package/src/session/UserSessionProvider.tsx +6 -14
  703. package/src/session/auth/composable.ts +1 -1
  704. package/src/session/auth/domainRouting.test.ts +110 -0
  705. package/src/session/auth/domainRouting.ts +22 -0
  706. package/src/session/auth/firebase.ts +1 -1
  707. package/src/session/auth/useCurrentTenant.ts +3 -1
  708. package/src/shell/SplashScreen.tsx +22 -26
  709. package/src/shell/apps/StandaloneApp.tsx +9 -6
  710. package/src/shell/login/EnterpriseSigninButton.tsx +6 -4
  711. package/src/shell/login/GitHubSignInButton.tsx +3 -7
  712. package/src/shell/login/GoogleSignInButton.tsx +3 -1
  713. package/src/shell/login/InviteAcceptModal.tsx +5 -2
  714. package/src/shell/login/MicrosoftSigninButton.tsx +4 -6
  715. package/src/shell/login/SigninScreen.tsx +18 -13
  716. package/src/shell/login/SignupForm.tsx +46 -46
  717. package/src/shell/login/TerminalLogin.tsx +35 -31
  718. package/src/shell/login/UserInfo.tsx +15 -13
  719. package/src/shell/login/UserSessionMenu.tsx +28 -31
  720. package/src/widgets/index.ts +0 -1
  721. package/src/widgets/json-view/JSONCode.tsx +1 -1
  722. package/src/widgets/json-view/JSONDisplay.tsx +8 -3
  723. package/src/widgets/json-view/JSONSwitcher.tsx +24 -0
  724. package/src/widgets/json-view/JSONView.tsx +1 -1
  725. package/src/widgets/json-view/index.ts +1 -0
  726. package/src/widgets/markdown/ArtifactContentRenderer.tsx +15 -7
  727. package/src/widgets/markdown/CodeBlockContext.tsx +34 -0
  728. package/src/widgets/markdown/MarkdownRenderer.tsx +14 -13
  729. package/src/widgets/markdown/codeBlockHandlers.tsx +17 -36
  730. package/src/widgets/markdown/index.ts +27 -34
  731. package/src/widgets/markdown/remarkDirectiveHandler.ts +1 -1
  732. package/src/widgets/schema-editor/ManagedSchema.ts +6 -5
  733. package/src/widgets/schema-editor/editor/PropertyEditor.tsx +7 -3
  734. package/src/widgets/schema-editor/editor/SchemaEditor.tsx +3 -1
  735. package/src/widgets/upload/DropZone.tsx +10 -13
  736. package/src/widgets/upload/UploadResultCategory.tsx +3 -1
  737. package/src/widgets/upload/UploadSummary.tsx +13 -11
  738. package/tsconfig.dist.json +1 -1
  739. package/lib/esm/core/components/Dropdown.js +0 -16
  740. package/lib/esm/core/components/Dropdown.js.map +0 -1
  741. package/lib/esm/core/components/DropdownList.js +0 -9
  742. package/lib/esm/core/components/DropdownList.js.map +0 -1
  743. package/lib/esm/core/components/RadioGroup.js +0 -34
  744. package/lib/esm/core/components/RadioGroup.js.map +0 -1
  745. package/lib/esm/core/components/SelectStack.js +0 -8
  746. package/lib/esm/core/components/SelectStack.js.map +0 -1
  747. package/lib/esm/core/components/Switch.js +0 -12
  748. package/lib/esm/core/components/Switch.js.map +0 -1
  749. package/lib/esm/widgets/popover/Popover.js +0 -73
  750. package/lib/esm/widgets/popover/Popover.js.map +0 -1
  751. package/lib/esm/widgets/popover/context.js +0 -7
  752. package/lib/esm/widgets/popover/context.js.map +0 -1
  753. package/lib/esm/widgets/popover/index.js +0 -3
  754. package/lib/esm/widgets/popover/index.js.map +0 -1
  755. package/lib/esm/widgets/popover/slots.js +0 -22
  756. package/lib/esm/widgets/popover/slots.js.map +0 -1
  757. package/lib/types/core/components/Dropdown.d.ts +0 -15
  758. package/lib/types/core/components/Dropdown.d.ts.map +0 -1
  759. package/lib/types/core/components/DropdownList.d.ts +0 -13
  760. package/lib/types/core/components/DropdownList.d.ts.map +0 -1
  761. package/lib/types/core/components/RadioGroup.d.ts +0 -26
  762. package/lib/types/core/components/RadioGroup.d.ts.map +0 -1
  763. package/lib/types/core/components/SelectStack.d.ts +0 -13
  764. package/lib/types/core/components/SelectStack.d.ts.map +0 -1
  765. package/lib/types/core/components/Switch.d.ts +0 -11
  766. package/lib/types/core/components/Switch.d.ts.map +0 -1
  767. package/lib/types/widgets/popover/Popover.d.ts +0 -38
  768. package/lib/types/widgets/popover/Popover.d.ts.map +0 -1
  769. package/lib/types/widgets/popover/context.d.ts +0 -8
  770. package/lib/types/widgets/popover/context.d.ts.map +0 -1
  771. package/lib/types/widgets/popover/index.d.ts +0 -3
  772. package/lib/types/widgets/popover/index.d.ts.map +0 -1
  773. package/lib/types/widgets/popover/slots.d.ts +0 -5
  774. package/lib/types/widgets/popover/slots.d.ts.map +0 -1
  775. package/src/core/components/Dropdown.tsx +0 -63
  776. package/src/core/components/DropdownList.tsx +0 -72
  777. package/src/core/components/RadioGroup.tsx +0 -100
  778. package/src/core/components/SelectStack.tsx +0 -63
  779. package/src/core/components/Switch.tsx +0 -30
  780. package/src/widgets/popover/Popover.tsx +0 -171
  781. package/src/widgets/popover/context.ts +0 -15
  782. package/src/widgets/popover/index.ts +0 -2
  783. package/src/widgets/popover/slots.ts +0 -24
@@ -0,0 +1,664 @@
1
+ {
2
+ "agent.actions": "操作",
3
+ "agent.activeWorkstreams_one": "代理有{{count}}個活躍的工作流正在運行",
4
+ "agent.activeWorkstreams_other": "代理有{{count}}個活躍的工作流正在運行",
5
+ "agent.agentConversation": "代理對話",
6
+ "agent.agentInterrupted": "代理已中斷",
7
+ "agent.agentPlan": "代理計劃",
8
+ "agent.agentProcessing": "代理正在處理中,完成後即可繼續...",
9
+ "agent.agentRunIdCopied": "已複製代理程式執行ID",
10
+ "agent.agentStarted": "代理已啟動",
11
+ "agent.agentWorking": "代理工作中...(按兩次Esc停止)",
12
+ "agent.agentWorkingStop": "代理工作中...按兩次Esc或點擊停止來中斷",
13
+ "agent.allMessages": "所有訊息",
14
+ "agent.artifacts": "產物",
15
+ "agent.askAnything": "隨便問...(拖放或貼上檔案)",
16
+ "agent.batch": "批次",
17
+ "agent.cancelWorkflow": "取消工作流程",
18
+ "agent.canceling": "正在取消",
19
+ "agent.clickToEnlarge": "點擊放大",
20
+ "agent.close": "關閉",
21
+ "agent.closeFullscreen": "關閉全螢幕",
22
+ "agent.completed": "已完成",
23
+ "agent.conversationForked": "對話已分支",
24
+ "agent.conversationRestarted": "對話已重新開始",
25
+ "agent.copied": "已複製",
26
+ "agent.copiedAllToolCalls": "所有工具呼叫已複製到剪貼簿",
27
+ "agent.copiedBatchDetails": "批次詳情已複製到剪貼簿",
28
+ "agent.copiedToClipboard": "已複製到剪貼簿",
29
+ "agent.copy": "複製",
30
+ "agent.copyAgentRunId": "複製代理程式執行ID",
31
+ "agent.copyAllToolCalls": "複製所有工具呼叫",
32
+ "agent.copyBatchDetails": "複製批次詳情",
33
+ "agent.copyMessage": "複製訊息",
34
+ "agent.copyToClipboard": "複製到剪貼簿",
35
+ "agent.copyWorkflowRunId": "複製工作流程執行ID",
36
+ "agent.dashboard": "儀表板",
37
+ "agent.details": "詳情",
38
+ "agent.document": "文件",
39
+ "agent.documentAttachments": "文件附件",
40
+ "agent.documentAttachmentsDescription": "來自存儲的文件已附加到此訊息。代理可以隨時透過 ID 重新取得它們,或重新附加以直接包含內容。",
41
+ "agent.documents": "文件",
42
+ "agent.download": "下載",
43
+ "agent.downloadConversation": "下載對話",
44
+ "agent.dropFilesToUpload": "拖放檔案上傳",
45
+ "agent.elapsed": "已過{{seconds}}秒",
46
+ "agent.enlargedView": "放大檢視",
47
+ "agent.enterMessage": "輸入訊息以開始對話",
48
+ "agent.enterToSend": "Enter傳送 / Shift+Enter換行",
49
+ "agent.error": "錯誤",
50
+ "agent.errorStarting": "啟動工作流時出錯",
51
+ "agent.exit": "退出",
52
+ "agent.exitFullscreen": "退出全螢幕",
53
+ "agent.export": "匯出",
54
+ "agent.exportAsPdf": "匯出為PDF",
55
+ "agent.exportAsPng": "匯出為 PNG",
56
+ "agent.exportAsWord": "匯出為 Word",
57
+ "agent.exportMessage": "匯出訊息",
58
+ "agent.exporting": "正在匯出...",
59
+ "agent.failedToCancelWorkflow": "取消工作流程失敗",
60
+ "agent.failedToDownload": "下載對話失敗",
61
+ "agent.failedToForkConversation": "分支對話失敗",
62
+ "agent.failedToInterrupt": "中斷失敗",
63
+ "agent.failedToLoadDocument": "載入文件失敗",
64
+ "agent.failedToRenderMessage": "訊息渲染失敗",
65
+ "agent.failedToRestartConversation": "重新開始對話失敗",
66
+ "agent.failedToSend": "傳送訊息失敗",
67
+ "agent.filesProcessing": "檔案處理中",
68
+ "agent.filesStagedCount_one": "{{count}}個檔案已暫存 - 對話開始時將上傳",
69
+ "agent.filesStagedCount_other": "{{count}}個檔案已暫存 - 對話開始時將上傳",
70
+ "agent.filesUploadedDescription": "上傳到此對話的檔案始終可用。代理可以隨時存取它們。",
71
+ "agent.forkConversation": "分支對話",
72
+ "agent.fullscreen": "全螢幕",
73
+ "agent.hideDetails": "隱藏詳情",
74
+ "agent.hideSidebar": "隱藏側邊欄",
75
+ "agent.hideThinkingDetails": "隱藏思考詳情",
76
+ "agent.inProgress": "進行中",
77
+ "agent.linkObject": "關聯物件",
78
+ "agent.loadingArtifacts": "正在載入產物...",
79
+ "agent.loadingDocument": "正在載入文件...",
80
+ "agent.main": "主要",
81
+ "agent.mainWorkstream": "主工作流",
82
+ "agent.moreActions": "更多操作",
83
+ "agent.newerPlan": "較新的計劃",
84
+ "agent.no": "否",
85
+ "agent.noActiveWorkstreams": "沒有活躍的工作流",
86
+ "agent.noAgentRunning": "目前沒有正在運行的代理",
87
+ "agent.noArtifactsYet": "暫無產物",
88
+ "agent.noContentAvailable": "無可用內容",
89
+ "agent.noContentToExport": "沒有可匯出的內容",
90
+ "agent.noConversationContent": "沒有可匯出的對話內容",
91
+ "agent.noDocumentsOpen": "沒有開啟的文件",
92
+ "agent.noFilesUploadedYet": "暫無上傳檔案",
93
+ "agent.noMessagesInWorkstream": "此工作流程中暫無訊息...",
94
+ "agent.noPlanAvailable": "暫無計劃",
95
+ "agent.noPlanDetected": "尚未偵測到計劃",
96
+ "agent.olderPlan": "較舊的計劃",
97
+ "agent.openDocument": "開啟文件",
98
+ "agent.openInNewTab": "在新分頁中開啟",
99
+ "agent.pdfExportFailed": "PDF匯出失敗",
100
+ "agent.pdfExportReady": "PDF匯出已就緒",
101
+ "agent.pending": "待處理",
102
+ "agent.plan": "計劃",
103
+ "agent.planProgress": "計劃進度",
104
+ "agent.plansWillAppear": "當代理建立計劃時,將在此處顯示",
105
+ "agent.printDialogDescription": "使用瀏覽器的列印對話框儲存為 PDF",
106
+ "agent.processing": "處理中...",
107
+ "agent.ready": "就緒",
108
+ "agent.refresh": "重新整理",
109
+ "agent.remaining": "剩餘{{seconds}}秒",
110
+ "agent.resizeRightPanel": "調整右側面板大小",
111
+ "agent.restartConversation": "重新開始對話",
112
+ "agent.retry": "重試",
113
+ "agent.running": "執行中",
114
+ "agent.searchDocuments": "搜尋文件",
115
+ "agent.selectInteraction": "選擇一個互動並點擊開始以啟動代理",
116
+ "agent.send": "傳送",
117
+ "agent.showAllMessages": "顯示所有訊息",
118
+ "agent.showDetails": "顯示詳情",
119
+ "agent.showSidebar": "顯示側邊欄",
120
+ "agent.staged": "已暫存",
121
+ "agent.startAgent": "啟動代理",
122
+ "agent.startNewConversation": "開始新對話",
123
+ "agent.startingAgent": "正在啟動代理...",
124
+ "agent.startingAgentUploading": "正在啟動代理並上傳檔案...",
125
+ "agent.stepByStepPlan": "逐步計劃",
126
+ "agent.stop": "停止",
127
+ "agent.stopAgent": "停止代理",
128
+ "agent.submitSelection": "提交選擇",
129
+ "agent.submitSelectionCount_one": "提交選擇({{count}})",
130
+ "agent.submitSelectionCount_other": "提交選擇({{count}})",
131
+ "agent.summary": "摘要",
132
+ "agent.taskProgress": "任務進度",
133
+ "agent.toggleRightSidebar": "切換右側邊欄",
134
+ "agent.typeNewInstructions": "輸入新的指示",
135
+ "agent.typeQuestionBelow": "在下方輸入問題並按Enter或點擊{{buttonText}}開始",
136
+ "agent.typeYourMessage": "輸入訊息...",
137
+ "agent.typeYourResponse": "輸入您的回覆...",
138
+ "agent.unableToOpenPrint": "無法開啟列印預覽",
139
+ "agent.unknownError": "未知錯誤",
140
+ "agent.unknownTime": "未知時間",
141
+ "agent.upload": "上傳",
142
+ "agent.uploadFailed": "上傳失敗",
143
+ "agent.uploadedFiles": "已上傳檔案",
144
+ "agent.uploading": "上傳中...",
145
+ "agent.uploads": "上傳",
146
+ "agent.waitForFiles": "請等待檔案處理完成",
147
+ "agent.waitForFilesProcessing": "請等待所有檔案處理完成後再傳送",
148
+ "agent.waiting": "等待中...",
149
+ "agent.waitingForAgentResponse": "等待代理回應...",
150
+ "agent.workflowCancelled": "工作流程已取消",
151
+ "agent.workflowRunIdCopied": "已複製工作流程執行ID",
152
+ "agent.working": "工作中...",
153
+ "agent.workstreams": "工作流",
154
+ "agent.yes": "是",
155
+ "auth.continueWithEnterprise": "使用企業SSO繼續",
156
+ "auth.continueWithGithub": "使用GitHub繼續",
157
+ "auth.continueWithGoogle": "使用Google繼續",
158
+ "auth.continueWithMicrosoft": "使用Microsoft繼續",
159
+ "auth.enterEnterpriseEmail": "輸入您的企業信箱",
160
+ "auth.error": "錯誤:{{message}}",
161
+ "auth.firstTimeDetails": "我們只需要問您幾個問題,就可以開始了。",
162
+ "auth.firstTimeMessage": "第一次來?沒問題,免費試用!",
163
+ "auth.goBack": "返回",
164
+ "auth.invalidEmail": "無效的信箱地址",
165
+ "auth.logInOrSignUp": "登入或註冊",
166
+ "auth.needToMakeChange": "需要修改?",
167
+ "auth.or": "或",
168
+ "auth.privacyPolicy": "隱私政策",
169
+ "auth.signInError": "抱歉,我們無法完成您的登入。",
170
+ "auth.signInErrorContact": "請重試或聯繫",
171
+ "auth.signInErrorPersists": "如果問題持續存在。",
172
+ "auth.tenantNotFound": "未找到租戶",
173
+ "auth.termsOfService": "服務條款",
174
+ "errors.failedToLoadTenantConfig": "載入租戶設定失敗",
175
+ "errors.somethingWentWrong": "抱歉,出了點問題...",
176
+ "errors.teamNotifiedLine1": "我們的團隊已收到通知,將儘快解決。",
177
+ "errors.teamNotifiedLine2": "如果您想反映問題或聯繫我們,請發送郵件至",
178
+ "filter.clearAll": "清除全部",
179
+ "filter.filter": "篩選",
180
+ "filter.filterBy": "按{{view}}篩選",
181
+ "filter.filterPlaceholder": "篩選...",
182
+ "filter.from": "從:",
183
+ "filter.noAvailableFilters": "沒有可用的篩選條件",
184
+ "filter.noMatchingFilters": "沒有匹配的篩選條件",
185
+ "filter.noResultsFound": "未找到結果。",
186
+ "filter.selectRange": "選擇範圍",
187
+ "filter.to": "至:",
188
+ "form.clickToRemove": "點擊移除",
189
+ "form.createValue": "建立\"{{value}}\"",
190
+ "form.filter": "篩選...",
191
+ "form.noMoreOptions": "沒有更多可用選項",
192
+ "form.noOptionsFound": "未找到選項",
193
+ "layout.pageNotFound": "頁面未找到",
194
+ "layout.search": "搜尋",
195
+ "layout.searchPlaceholder": "搜尋...",
196
+ "login.accept": "接受",
197
+ "login.reject": "拒絕",
198
+ "login.reviewInvites": "查看邀請",
199
+ "login.terminal.account": "帳戶",
200
+ "login.terminal.accountRequired": "帳戶為必填項",
201
+ "login.terminal.accountRequiredDesc": "請選擇一個帳戶以授權客戶端存取ComposablePrompts伺服器",
202
+ "login.terminal.authPayloadCopied": "認證資訊已複製",
203
+ "login.terminal.authPayloadCopiedSuccess": "您可以關閉此頁面。CLI應已接收到權杖。",
204
+ "login.terminal.authPayloadCopiedWithError": "您可以將認證資訊貼到終端中。注意:CLI未接收到權杖。發生錯誤:{{error}}",
205
+ "login.terminal.authorizeClient": "授權客戶端",
206
+ "login.terminal.browserPermissionNote": "注意:如果瀏覽器要求存取本地網路的權限,請允許。這是將授權權杖傳回CLI工具所必需的。否則,您需要手動將權杖複製/貼上到終端中。",
207
+ "login.terminal.chooseAccountProject": "您必須選擇客戶端要存取的目標帳戶和專案。",
208
+ "login.terminal.clientAuthenticated": "客戶端已認證。您可以關閉此頁面。",
209
+ "login.terminal.clientWantsAuth": "一個客戶端應用程式請求授權以您的名義存取ComposablePrompts伺服器。",
210
+ "login.terminal.copyAuthPayload": "複製認證資訊",
211
+ "login.terminal.envLocalDev": "本地開發",
212
+ "login.terminal.envProduction": "生產環境",
213
+ "login.terminal.envStaging": "預發布環境",
214
+ "login.terminal.errorAuthorizingClient": "授權客戶端時出錯",
215
+ "login.terminal.errorLoadingProjects": "載入專案時出錯",
216
+ "login.terminal.failedToGetToken": "取得Composable權杖失敗",
217
+ "login.terminal.failedToSendToken": "傳送授權權杖至CLI工具失敗",
218
+ "login.terminal.failedToSendTokenDesc": "這可能是由於Safari的安全檢查導致的。錯誤為\"{{error}}\"",
219
+ "login.terminal.invalidRequest": "無效的請求",
220
+ "login.terminal.invalidRequestDesc": "此頁面應由終端客戶端呼叫以認證ComposablePrompts伺服器",
221
+ "login.terminal.profileName": "設定檔名稱",
222
+ "login.terminal.profileNameNote": "此外,輸入一個設定檔名稱,用於將授權儲存到客戶端設定中。",
223
+ "login.terminal.profileRequired": "設定檔為必填項",
224
+ "login.terminal.profileRequiredDesc": "請輸入設定檔名稱以儲存客戶端授權",
225
+ "login.terminal.project": "專案",
226
+ "login.terminal.projectRequired": "專案為必填項",
227
+ "login.terminal.projectRequiredDesc": "請選擇一個專案以授權客戶端存取ComposablePrompts伺服器",
228
+ "login.terminal.selectAccount": "選擇帳戶",
229
+ "login.terminal.selectProject": "選擇專案",
230
+ "misc.copiedToClipboard": "已複製到剪貼簿",
231
+ "misc.copy": "複製",
232
+ "misc.failedToCopy": "複製失敗",
233
+ "misc.noData": "沒有可顯示的資料",
234
+ "misc.tableView": "表格檢視",
235
+ "misc.thumbnailView": "縮圖檢視",
236
+ "modal.cancel": "取消",
237
+ "modal.confirm": "確認",
238
+ "modal.delete.error": "刪除物件時發生錯誤",
239
+ "modal.delete.failed": "刪除失敗",
240
+ "modal.delete.succeeded": "刪除成功",
241
+ "modal.save": "儲存",
242
+ "modal.saveChanges": "儲存變更",
243
+ "modal.saveVersion.createDescription": "使用這些屬性變更建立新修訂版,同時保留原始版本。",
244
+ "modal.saveVersion.createNew": "建立新版本",
245
+ "modal.saveVersion.createWithFileDescription": "使用替換檔案建立新修訂版,同時保留原始版本。",
246
+ "modal.saveVersion.howToSave": "您想如何儲存這些變更?",
247
+ "modal.saveVersion.replaceFile": "您即將用以下內容替換內容檔案:",
248
+ "modal.saveVersion.updateCurrent": "更新目前版本",
249
+ "modal.saveVersion.updateDescription": "直接在目前修訂版中修改屬性。",
250
+ "modal.saveVersion.updateWithFileDescription": "替換內容檔案並直接在目前修訂版中修改屬性。",
251
+ "modal.saveVersion.versionLabel": "版本標籤(選填)",
252
+ "modal.saveVersion.versionLabelDescription": "新版本的選填標籤。",
253
+ "modal.saveVersion.versionLabelPlaceholder": "例如 v1.2、已核准、審核後",
254
+ "oauthApps.authenticate": "驗證",
255
+ "oauthApps.authenticating": "正在驗證...",
256
+ "oauthApps.authorizationEndpoint": "授權端點",
257
+ "oauthApps.cancel": "取消",
258
+ "oauthApps.clientId": "Client ID",
259
+ "oauthApps.clientSecret": "Client Secret",
260
+ "oauthApps.clientSecretConfigured": "Secret 已設定(留空以保留目前值)",
261
+ "oauthApps.clientSecretHelp": "選填。機密用戶端需要此項。靜態加密儲存。",
262
+ "oauthApps.clientSecretPlaceholder": "輸入 Client Secret",
263
+ "oauthApps.connect": "連線",
264
+ "oauthApps.connected": "已連線",
265
+ "oauthApps.create": "建立",
266
+ "oauthApps.createDescription": "為此專案設定新的 OAuth 應用程式。",
267
+ "oauthApps.created": "OAuth 應用程式已建立",
268
+ "oauthApps.defaultScopes": "預設權限範圍",
269
+ "oauthApps.defaultScopesHelp": "以空格分隔的 OAuth 權限範圍清單。",
270
+ "oauthApps.deleteConfirm": "刪除 OAuth 應用程式",
271
+ "oauthApps.deleteConfirmMessage": "您確定要刪除嗎",
272
+ "oauthApps.deleteFailed": "刪除 OAuth 應用程式失敗",
273
+ "oauthApps.deleted": "OAuth 應用程式已刪除",
274
+ "oauthApps.description": "設定用於第三方整合的 OAuth 應用程式。",
275
+ "oauthApps.disconnect": "中斷連線",
276
+ "oauthApps.displayName": "顯示名稱",
277
+ "oauthApps.edit": "編輯 OAuth 應用程式",
278
+ "oauthApps.editDescription": "更新 OAuth 應用程式設定。",
279
+ "oauthApps.empty": "尚未設定任何 OAuth 應用程式。",
280
+ "oauthApps.endpointsOptionalHelp": "可選。對於支援 .well-known 探索的 MCP 伺服器,請留空。",
281
+ "oauthApps.name": "名稱",
282
+ "oauthApps.nameHelp": "Kebab-case 識別碼(例如 my-oauth-app)。建立後無法變更。",
283
+ "oauthApps.notConnected": "未連線",
284
+ "oauthApps.revocationEndpoint": "撤銷端點",
285
+ "oauthApps.save": "儲存",
286
+ "oauthApps.saveFailed": "儲存 OAuth 應用程式失敗",
287
+ "oauthApps.saving": "正在儲存...",
288
+ "oauthApps.status": "狀態",
289
+ "oauthApps.title": "OAuth 應用程式",
290
+ "oauthApps.tokenEndpoint": "權杖端點",
291
+ "oauthApps.updated": "OAuth 應用程式已更新",
292
+ "oauthApps.usePkce": "使用 PKCE(建議)",
293
+ "pdf.close": "關閉",
294
+ "pdf.closeFullscreen": "關閉全螢幕",
295
+ "pdf.download": "下載",
296
+ "pdf.failedToLoadViewer": "載入PDF檢視器失敗",
297
+ "pdf.fetchingDocumentFailed": "取得文件失敗",
298
+ "pdf.fitToWidth": "適應寬度",
299
+ "pdf.fullscreen": "全螢幕",
300
+ "pdf.instrumentedImages": "標註圖像",
301
+ "pdf.nextPage": "下一頁",
302
+ "pdf.noPdfAvailable": "沒有可用的PDF",
303
+ "pdf.originalImages": "原始圖像",
304
+ "pdf.page": "頁",
305
+ "pdf.pageOf": "第 {{pageNumber}} 頁 / 共 {{totalPages}} 頁",
306
+ "pdf.previousPage": "上一頁",
307
+ "pdf.zoomIn": "放大",
308
+ "pdf.zoomOut": "縮小",
309
+ "shell.accessDenied": "存取被拒絕",
310
+ "shell.applicationNotRegistered": "應用程式未註冊",
311
+ "shell.organization": "組織",
312
+ "shell.selectOrganization": "選擇組織",
313
+ "shell.selectProject": "選擇專案",
314
+ "signup.accountType": "帳戶類型",
315
+ "signup.activelyExploring": "正在積極探索LLM專案",
316
+ "signup.alreadyUsing": "已在生產環境中使用LLM",
317
+ "signup.company": "公司",
318
+ "signup.companyDescription": "適用於公司或組織。",
319
+ "signup.companyName": "公司名稱",
320
+ "signup.companySize": "公司規模",
321
+ "signup.companyWebsite": "公司網站",
322
+ "signup.justTesting": "僅在測試或評估LLM",
323
+ "signup.migratingLLMs": "正在遷移到其他LLM",
324
+ "signup.other": "其他",
325
+ "signup.personal": "個人",
326
+ "signup.personalDescription": "適用於個人使用或小型團隊。",
327
+ "signup.pleaseEnterOrgName": "請輸入組織名稱",
328
+ "signup.pleaseSelectAccountType": "請選擇帳戶類型",
329
+ "signup.pleaseSelectCompanySize": "請選擇公司規模",
330
+ "signup.projectMaturity": "專案成熟度",
331
+ "signup.selectCompanySize": "選擇公司規模",
332
+ "signup.selectProjectMaturity": "選擇專案成熟度",
333
+ "signup.signUp": "註冊",
334
+ "signup.size1001to5000": "1001-5000名員工",
335
+ "signup.size101to1000": "101-1000名員工",
336
+ "signup.size11to100": "11-100名員工",
337
+ "signup.size1to10": "1-10名員工",
338
+ "signup.size5000plus": "5000+名員工",
339
+ "signup.welcomeMessage": "歡迎來到Vertesia,{{name}}({{email}})。\n請告訴我們一些關於您的資訊,就可以開始了。\n無需信用卡。",
340
+ "signup.wrongAccountGoBack": "帳戶有誤,返回",
341
+ "store.actions.addToCollection": "新增到集合",
342
+ "store.actions.addToCollectionBody": "將選中的物件新增到現有集合或建立新集合。",
343
+ "store.actions.addToCollectionButton": "新增到集合",
344
+ "store.actions.addToCollectionDesc": "將文件新增到集合",
345
+ "store.actions.addToCollectionFailure": "新增到集合失敗",
346
+ "store.actions.addToCollectionFailureDesc": "無法將選中的物件新增到集合",
347
+ "store.actions.addToCollectionSuccess": "新增到集合成功",
348
+ "store.actions.addToCollectionSuccessDesc": "已將{{count}}個物件新增到所選集合",
349
+ "store.actions.addToCollectionTitle": "新增到集合",
350
+ "store.actions.areYouSure": "確定嗎?",
351
+ "store.actions.cannotRemoveNoCollection": "無法移除物件:未指定集合",
352
+ "store.actions.changeContentType": "變更內容類型",
353
+ "store.actions.changeContentTypeDesc": "變更選中文件的內容類型",
354
+ "store.actions.changeType": "變更類型",
355
+ "store.actions.chooseExistingCollections": "從現有集合中選擇",
356
+ "store.actions.chooseWorkflowRule": "選擇要啟動的工作流程規則:",
357
+ "store.actions.confirmDeleteAll": "確定要刪除所有選中的物件嗎?此操作無法復原。",
358
+ "store.actions.confirmDeleteSelected": "確定要刪除選中的物件嗎?\n這不是從集合中移除。",
359
+ "store.actions.confirmRemoveFromCollection": "確定要從此集合中移除選中的物件嗎?",
360
+ "store.actions.createNew": "新建",
361
+ "store.actions.delete": "刪除",
362
+ "store.actions.deleteObjects": "刪除物件",
363
+ "store.actions.deleteTheSelectedObjects": "刪除選中的物件",
364
+ "store.actions.errorChangingType": "變更類型時出錯",
365
+ "store.actions.errorDeletingObjects": "刪除物件時出錯",
366
+ "store.actions.errorExportProperties": "匯出屬性時出錯",
367
+ "store.actions.errorRemovingObjects": "從集合中移除物件時出錯",
368
+ "store.actions.errorStartingWorkflow": "啟動工作流程時出錯",
369
+ "store.actions.exportAllObjectProperties": "匯出所有物件屬性",
370
+ "store.actions.exportProperties": "匯出屬性",
371
+ "store.actions.noCollectionContext": "沒有集合上下文",
372
+ "store.actions.noObjectsSelected": "未選擇任何物件",
373
+ "store.actions.pleaseSelectObjectsToDelete": "請選擇要刪除的物件",
374
+ "store.actions.pleaseSelectObjectsToRemove": "請選擇要從集合中移除的物件",
375
+ "store.actions.removeFromCollection": "從集合中移除",
376
+ "store.actions.removeFromCollectionDesc": "從此集合中移除選中的物件",
377
+ "store.actions.selectCollection": "選擇集合",
378
+ "store.actions.startWorkflow": "啟動工作流程",
379
+ "store.actions.startWorkflowByRule": "按規則啟動工作流程",
380
+ "store.actions.startWorkflowDesc": "對選中的物件啟動工作流程",
381
+ "store.actions.workflowStarted": "工作流程已啟動",
382
+ "store.allowedContentTypes": "允許的內容類型",
383
+ "store.allowedContentTypesOptionalDescription": "可選擇限定可新增到集合中的內容類型。如果未設定,則允許所有內容類型。",
384
+ "store.allowedContentTypesSelectDescription": "選擇可新增到集合中的內容類型。如果未設定,則允許所有內容類型。",
385
+ "store.areYouSureDeleteCollection": "確定要刪除此集合嗎?此操作無法復原。",
386
+ "store.audioFormatRequired": "需要MP3、M4A、OGG、WAV或WebM格式",
387
+ "store.automaticTypeDetection": "自動類型偵測",
388
+ "store.automaticTypeDetectionDescription": "Vertesia將分析內容並選擇最合適的類型。建議大多數上傳使用此功能,以確保最佳處理效果。",
389
+ "store.cancelEdit": "取消",
390
+ "store.chooseAFormat": "選擇格式",
391
+ "store.chooseContentType": "選擇內容類型...",
392
+ "store.chooseContentTypes": "選擇內容類型...",
393
+ "store.chooseWhatToExport": "選擇要匯出的內容",
394
+ "store.clearSelection": "清除選擇",
395
+ "store.close": "關閉",
396
+ "store.collectionCreated": "集合已建立",
397
+ "store.collectionDeleted": "集合已刪除",
398
+ "store.collectionFetchFailed": "取得集合失敗",
399
+ "store.collectionPropertiesUpdated": "集合屬性已更新",
400
+ "store.collectionUpdated": "集合已更新",
401
+ "store.collectionUpdatedSuccess": "集合已成功更新",
402
+ "store.collectionsSelected": "已選擇{{count}}個集合",
403
+ "store.configuration": "設定",
404
+ "store.confirmSelection": "確認選擇",
405
+ "store.contentCopied": "{{type}}已複製",
406
+ "store.contentExported": "內容已匯出",
407
+ "store.contentType": "內容類型",
408
+ "store.convertingToPdf": "正在轉換為PDF...",
409
+ "store.copyFailed": "複製失敗",
410
+ "store.createACollection": "建立集合",
411
+ "store.createCollection": "建立集合",
412
+ "store.createType": "建立類型",
413
+ "store.created": "建立時間",
414
+ "store.createdBy": "建立者",
415
+ "store.deleteCollection": "刪除集合",
416
+ "store.documentExported": "文件已匯出",
417
+ "store.documentInformation": "文件資訊",
418
+ "store.documentListRefreshed": "文件列表已重新整理",
419
+ "store.documentListRefreshedDesc": "文件列表已更新為您上傳的檔案。",
420
+ "store.documentPreview": "文件預覽",
421
+ "store.downloadFailed": "下載失敗",
422
+ "store.dynamicCollection": "動態集合",
423
+ "store.dynamicCollectionDescription": "根據查詢動態取得集合內容。如果未啟用,則內容必須由使用者或代理新增。",
424
+ "store.editJson": "編輯JSON",
425
+ "store.editProperties": "編輯屬性",
426
+ "store.editSchema": "編輯結構",
427
+ "store.editText": "編輯文字",
428
+ "store.editingGenericDocument": "編輯通用文件屬性",
429
+ "store.embeddings": "嵌入向量",
430
+ "store.enableSyncMemberHeads": "啟用同步成員HEAD",
431
+ "store.error": "錯誤",
432
+ "store.errorCheckingDuplicates": "檢查重複檔案時出錯",
433
+ "store.errorCreatingType": "建立類型時出錯",
434
+ "store.errorInUploadProcessingCheck": "檔案上傳處理檢查出錯",
435
+ "store.errorProcessingFiles": "處理檔案時出錯",
436
+ "store.errorSavingText": "儲存文字失敗",
437
+ "store.errorSavingTextDefault": "儲存文字內容時發生錯誤。",
438
+ "store.errorUpdatingProperties": "更新屬性時出錯",
439
+ "store.errorUpdatingPropertiesDefault": "更新屬性時發生錯誤。",
440
+ "store.exportFailed": "匯出失敗",
441
+ "store.exportInProgress": "匯出進行中",
442
+ "store.failedToConvertToPdf": "轉換為PDF失敗",
443
+ "store.failedToCopy": "複製{{type}}到剪貼簿失敗",
444
+ "store.failedToCreateCollection": "建立集合失敗",
445
+ "store.failedToDeleteCollection": "刪除集合失敗",
446
+ "store.failedToDownloadFile": "下載檔案失敗",
447
+ "store.failedToDownloadPdf": "下載PDF檔案失敗",
448
+ "store.failedToExportContent": "匯出內容失敗",
449
+ "store.failedToExportDocument": "匯出文件失敗",
450
+ "store.failedToFetchRoleMappings": "取得角色對應失敗",
451
+ "store.failedToFetchTypes": "取得物件類型失敗",
452
+ "store.failedToFetchWorkflows": "取得工作流程失敗",
453
+ "store.failedToGetDownloadUrl": "取得下載URL失敗",
454
+ "store.failedToLoadDocument": "載入文件失敗",
455
+ "store.failedToLoadType": "載入類型失敗",
456
+ "store.failedToUpdateCollection": "更新集合失敗",
457
+ "store.failedToUpdateCollectionProperties": "更新集合屬性失敗",
458
+ "store.failedToUpdateSchema": "更新結構失敗",
459
+ "store.failedToUpdateSharedProperties": "更新共享屬性失敗",
460
+ "store.failedToUpdateSkipHeadSync": "更新略過HEAD同步失敗",
461
+ "store.failedToUpdateTableLayout": "更新表格佈局失敗",
462
+ "store.filesAnalyzedTitle": "檔案分析完成",
463
+ "store.filesReadyToProcess": "檔案已準備好處理",
464
+ "store.filterByName": "按名稱篩選",
465
+ "store.fullText": "全文",
466
+ "store.fullView": "完整檢視",
467
+ "store.getStartedCollections": "建立一個新的集合以開始。",
468
+ "store.getStartedTypes": "建立一個新的類型以開始。",
469
+ "store.id": "ID",
470
+ "store.invalidJson": "無效的JSON",
471
+ "store.invalidJsonSchema": "無效的JSON Schema",
472
+ "store.invalidQueryJson": "無效的查詢JSON",
473
+ "store.invalidTableLayout": "無效的表格佈局",
474
+ "store.isChunkable": "可分塊",
475
+ "store.limit": "限制",
476
+ "store.loadingDocument": "正在載入文件...",
477
+ "store.loadingProcessingStatus": "正在載入處理狀態...",
478
+ "store.na": "N/A",
479
+ "store.name": "名稱",
480
+ "store.newCollections": "新建集合",
481
+ "store.newVersionCreated": "新版本已建立",
482
+ "store.newVersionCreatedDesc": "已建立一個包含更新屬性的新版本。",
483
+ "store.noAudioRendition": "沒有可用的Web相容音訊格式",
484
+ "store.noCollections": "沒有集合",
485
+ "store.noCollectionsAvailable": "沒有可用的集合。",
486
+ "store.noCollectionsFound": "未找到集合。",
487
+ "store.noFilesSelected": "未選擇檔案",
488
+ "store.noObjectsDragAndDrop": "沒有物件。只需將文件或圖片拖放到此處即可建立內容物件。",
489
+ "store.noPreviewAvailable": "此文件類型沒有可用的預覽。",
490
+ "store.noProjectSelected": "未選擇專案",
491
+ "store.noPropertiesAvailable": "此文件沒有可用的屬性。",
492
+ "store.noPropertiesDefined": "未定義屬性",
493
+ "store.noTranscriptAvailable": "沒有可用的轉錄",
494
+ "store.noType": "無類型",
495
+ "store.noValidFilesSelected": "未選擇有效檔案",
496
+ "store.noVideoRendition": "沒有可用的Web相容影片格式",
497
+ "store.none": "無",
498
+ "store.openFullDocument": "開啟完整文件",
499
+ "store.openFullDocumentView": "開啟完整文件檢視",
500
+ "store.optional": "(選填)",
501
+ "store.pdfConversionFailed": "PDF轉換失敗",
502
+ "store.pdfPreviewFullView": "PDF文件預覽在完整檢視中可用。",
503
+ "store.pleaseFixJsonSyntax": "請在儲存前修復JSON語法錯誤。",
504
+ "store.pleaseProvideName": "請為集合提供名稱",
505
+ "store.pleaseSelectValidFiles": "請選擇內容有效的檔案。",
506
+ "store.pleaseWait": "請等待",
507
+ "store.preview": "預覽",
508
+ "store.previewProperties": "預覽屬性",
509
+ "store.processingFailedFor": "{{name}}處理失敗",
510
+ "store.processingFiles": "正在處理檔案",
511
+ "store.properties": "屬性",
512
+ "store.propertiesUpdated": "屬性已更新",
513
+ "store.propertiesUpdatedDesc": "物件屬性已成功更新。",
514
+ "store.query": "查詢",
515
+ "store.queryDescription": "定義查詢以動態取得集合內容。",
516
+ "store.refresh": "重新整理",
517
+ "store.renderingDocument": "正在渲染文件...",
518
+ "store.saveChanges": "儲存變更",
519
+ "store.saveText": "儲存",
520
+ "store.schemaEditor": "結構編輯器",
521
+ "store.schemaUpdated": "結構已更新",
522
+ "store.schemaUpdatedSuccess": "結構已成功更新",
523
+ "store.search": "搜尋",
524
+ "store.searchCollections": "搜尋集合",
525
+ "store.searchFailed": "搜尋失敗",
526
+ "store.searchPlaceholder": "輸入您要尋找的內容,或選擇篩選條件",
527
+ "store.searchTypes": "搜尋類型",
528
+ "store.searching": "搜尋中...",
529
+ "store.selectACollection": "選擇一個集合",
530
+ "store.selectContent": "選擇內容",
531
+ "store.selectContentType": "選擇內容類型",
532
+ "store.selectContentTypeAuto": "選擇內容類型,或留空以自動偵測",
533
+ "store.selectContentTypeLabel": "選擇內容類型",
534
+ "store.selectPropertiesToShare": "選擇要共享的屬性",
535
+ "store.semanticChunking": "語意分塊",
536
+ "store.semanticSearch": "語意搜尋",
537
+ "store.semanticSearchSettings": "語意搜尋設定",
538
+ "store.sharedProperties": "共享屬性",
539
+ "store.sharedPropertiesDescription": "新增要在集合中所有成員之間共享的屬性。此功能需要在專案中啟用共享屬性同步。",
540
+ "store.showingFirst128K": "僅顯示前128K個字元",
541
+ "store.size": "大小",
542
+ "store.staticCollection": "靜態集合",
543
+ "store.strictMode": "嚴格模式",
544
+ "store.successfullyCopied": "已成功複製{{type}}到剪貼簿",
545
+ "store.successfullyExportedTo": "已成功匯出為{{format}}",
546
+ "store.syncMemberHeads": "同步成員HEAD",
547
+ "store.syncMemberHeadsDescription": "當成員的新HEAD版本被建立時,集合將更新為指向新的HEAD。",
548
+ "store.tableLayout": "表格佈局",
549
+ "store.tableLayoutDescription": "定義用於在表格中顯示集合的自訂佈局。",
550
+ "store.tableLayoutUpdated": "表格佈局已更新",
551
+ "store.tableLayoutUpdatedDesc": "表格佈局已成功更新",
552
+ "store.textConflict": "文件已在其他地方被修改。請重新整理後再試。",
553
+ "store.textSaved": "文字內容已儲存",
554
+ "store.typeCreated": "類型已建立",
555
+ "store.typeDescription": "可選擇內容類型以為集合指派自訂屬性和資料。",
556
+ "store.typeSelectDescription": "選擇內容類型以為集合指派自訂屬性和資料。",
557
+ "store.unknown": "未知",
558
+ "store.unsavedChanges": "未儲存的變更",
559
+ "store.updated": "更新時間",
560
+ "store.updatedAt": "更新時間",
561
+ "store.updatedBy": "更新者",
562
+ "store.updatedSharedProperties": "已更新共享屬性",
563
+ "store.updatedSkipHeadSync": "已更新略過HEAD同步設定",
564
+ "store.upload": "上傳",
565
+ "store.uploadComplete": "上傳完成",
566
+ "store.uploadIssues": "上傳問題",
567
+ "store.validationFailed": "驗證失敗",
568
+ "store.videoFormatRequired": "需要MP4或WebM格式",
569
+ "store.viewAsPdf": "以PDF檢視",
570
+ "store.viewAudio": "檢視音訊",
571
+ "store.viewImage": "檢視圖片",
572
+ "store.viewInJsonFormat": "以JSON格式檢視",
573
+ "store.viewPdf": "檢視PDF",
574
+ "store.viewText": "檢視文字",
575
+ "store.viewTranscript": "檢視轉錄",
576
+ "store.viewVideo": "檢視影片",
577
+ "store.viewingNewVersion": "正在檢視新版本",
578
+ "store.viewingNewVersionDefault": "正在檢視新版本",
579
+ "store.viewingVersionLabel": "正在檢視版本'{{label}}'",
580
+ "theme.dark": "深色",
581
+ "theme.label": "主題",
582
+ "theme.light": "淺色",
583
+ "theme.system": "系統",
584
+ "type.description": "描述",
585
+ "type.name": "名稱",
586
+ "type.nameRequired": "名稱為必填項",
587
+ "upload.allFilesExist": "所有{{count}}個檔案已存在於系統中,將被略過。您可以繼續檢視結果。",
588
+ "upload.analyzingFiles": "正在分析檔案...",
589
+ "upload.checkingForDuplicates": "正在檢查重複項和更新",
590
+ "upload.collectionLabel": "集合:",
591
+ "upload.contentTypeTooltip": "選擇要套用於上傳檔案的內容類型。如果留空,Vertesia將根據檔案內容自動偵測類型。",
592
+ "upload.continue": "繼續",
593
+ "upload.dragAndDrop": "將檔案拖放到此處或點擊選擇",
594
+ "upload.errorAnalyzingFiles": "分析檔案時出錯",
595
+ "upload.failedToUpload": "上傳失敗",
596
+ "upload.fileAnalysisResults": "檔案分析結果",
597
+ "upload.filesAnalyzed": "檔案分析完成",
598
+ "upload.filesProcessed_one": "已處理{{count}}個檔案",
599
+ "upload.filesProcessed_other": "已處理{{count}}個檔案",
600
+ "upload.filesReadyToProcess_one": "{{count}}個檔案已準備好處理",
601
+ "upload.filesReadyToProcess_other": "{{count}}個檔案已準備好處理",
602
+ "upload.filesToSkip_one": "{{count}}個檔案已存在於系統中,將被略過。",
603
+ "upload.filesToSkip_other": "{{count}}個檔案已存在於系統中,將被略過。",
604
+ "upload.folderLabel": "資料夾:",
605
+ "upload.inCollection": "在集合'{{collection}}'中",
606
+ "upload.inFolder": "在資料夾'{{location}}'中",
607
+ "upload.new": "新增",
608
+ "upload.noFilesToProcess": "沒有可處理的檔案。",
609
+ "upload.noItems": "沒有可顯示的項目",
610
+ "upload.preparingFiles_one": "正在準備上傳{{count}}個檔案...",
611
+ "upload.preparingFiles_other": "正在準備上傳{{count}}個檔案...",
612
+ "upload.preparingFolder_one": "正在準備上傳1個資料夾,包含{{fileCount}}個檔案...",
613
+ "upload.preparingFolder_other": "正在準備上傳{{folderCount}}個資料夾,包含{{fileCount}}個檔案...",
614
+ "upload.processedCount": "已處理{{processed}}/{{total}}個檔案...",
615
+ "upload.processingFilesAction": "正在處理檔案({{action}})",
616
+ "upload.selectFiles": "選擇檔案",
617
+ "upload.selectFolder": "選擇資料夾",
618
+ "upload.skip": "略過",
619
+ "upload.skippedAlreadyExisted": "已略過(已存在)",
620
+ "upload.successfullyUpdated": "更新成功",
621
+ "upload.successfullyUploaded": "上傳成功",
622
+ "upload.update": "更新",
623
+ "upload.uploadComplete": "上傳完成",
624
+ "upload.uploadFiles": "上傳檔案",
625
+ "upload.uploadLocation": "上傳位置:",
626
+ "upload.uploadMore": "上傳更多",
627
+ "upload.uploadProcessInterrupted": "上傳過程已中斷",
628
+ "upload.uploadingFiles": "正在上傳檔案",
629
+ "upload.useAutoDetection": "使用自動類型偵測",
630
+ "upload.useTypeName": "使用{{typeName}}",
631
+ "user.account": "帳戶:",
632
+ "user.agentOnBehalfOf": "代理代表",
633
+ "user.agentOnBehalfOfApiKey": "代理代表API金鑰",
634
+ "user.appVersion": "應用版本",
635
+ "user.environment": "環境",
636
+ "user.failedToFetchApiKey": "取得API金鑰失敗",
637
+ "user.failedToFetchGroup": "取得群組失敗",
638
+ "user.failedToFetchUser": "取得使用者失敗",
639
+ "user.groupId": "群組ID:{{id}}",
640
+ "user.key": "金鑰:",
641
+ "user.organizationId": "組織ID",
642
+ "user.organizationRoles": "組織角色",
643
+ "user.privateKey": "私鑰",
644
+ "user.project": "專案:",
645
+ "user.projectId": "專案ID",
646
+ "user.projectRoles": "專案角色",
647
+ "user.schedule": "排程{{title}}",
648
+ "user.sdkVersion": "SDK版本",
649
+ "user.server": "伺服器",
650
+ "user.serviceAccount": "服務帳戶",
651
+ "user.serviceAccountDescription": "此使用者由工作流程工作器等機器人使用。",
652
+ "user.store": "儲存庫",
653
+ "user.systemUser": "系統使用者",
654
+ "user.systemUserDescription": "系統使用者用於初始化內建物件。",
655
+ "user.tenantId": "租戶ID",
656
+ "user.unknown": "未知",
657
+ "user.unknownUser": "未知使用者",
658
+ "user.unknownUserDescription": "使用者資訊不可用。",
659
+ "user.unnamedGroup": "未命名群組",
660
+ "user.user": "使用者",
661
+ "user.userId": "使用者ID",
662
+ "widgets.schema.editDescription": "編輯描述",
663
+ "widgets.schema.invalidPropertyDeclaration": "無效的屬性宣告"
664
+ }