@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
+ }