@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,696 @@
1
+ {
2
+ "agent.actions": "إجراءات",
3
+ "agent.activeWorkstreams_few": "لدى الوكيل {{count}} مسارات عمل نشطة قيد التشغيل",
4
+ "agent.activeWorkstreams_many": "لدى الوكيل {{count}} مسار عمل نشط قيد التشغيل",
5
+ "agent.activeWorkstreams_one": "لدى الوكيل مسار عمل نشط واحد قيد التشغيل",
6
+ "agent.activeWorkstreams_other": "لدى الوكيل {{count}} مسار عمل نشط قيد التشغيل",
7
+ "agent.activeWorkstreams_two": "لدى الوكيل مساران نشطان قيد التشغيل",
8
+ "agent.activeWorkstreams_zero": "لا يوجد لدى الوكيل مسارات عمل نشطة",
9
+ "agent.agentConversation": "محادثة الوكيل",
10
+ "agent.agentInterrupted": "تم إيقاف الوكيل",
11
+ "agent.agentPlan": "خطة الوكيل",
12
+ "agent.agentProcessing": "الوكيل يعالج، يمكنك المتابعة بعد الانتهاء...",
13
+ "agent.agentRunIdCopied": "تم نسخ معرف تشغيل الوكيل",
14
+ "agent.agentStarted": "تم بدء الوكيل",
15
+ "agent.agentWorking": "الوكيل يعمل... (Esc Esc للإيقاف)",
16
+ "agent.agentWorkingStop": "الوكيل يعمل... اضغط Esc مرتين أو انقر إيقاف للمقاطعة",
17
+ "agent.allMessages": "جميع الرسائل",
18
+ "agent.artifacts": "المخرجات",
19
+ "agent.askAnything": "اسأل أي شيء... (اسحب أو الصق الملفات)",
20
+ "agent.batch": "دفعة",
21
+ "agent.cancelWorkflow": "إلغاء سير العمل",
22
+ "agent.canceling": "جارٍ الإلغاء",
23
+ "agent.clickToEnlarge": "انقر للتكبير",
24
+ "agent.close": "إغلاق",
25
+ "agent.closeFullscreen": "إغلاق ملء الشاشة",
26
+ "agent.completed": "مكتمل",
27
+ "agent.conversationForked": "تم تفريع المحادثة",
28
+ "agent.conversationRestarted": "تم إعادة تشغيل المحادثة",
29
+ "agent.copied": "تم النسخ",
30
+ "agent.copiedAllToolCalls": "تم نسخ جميع استدعاءات الأدوات إلى الحافظة",
31
+ "agent.copiedBatchDetails": "تم نسخ تفاصيل الدفعة إلى الحافظة",
32
+ "agent.copiedToClipboard": "تم النسخ إلى الحافظة",
33
+ "agent.copy": "نسخ",
34
+ "agent.copyAgentRunId": "نسخ معرف تشغيل الوكيل",
35
+ "agent.copyAllToolCalls": "نسخ جميع استدعاءات الأدوات",
36
+ "agent.copyBatchDetails": "نسخ تفاصيل الدفعة",
37
+ "agent.copyMessage": "نسخ الرسالة",
38
+ "agent.copyToClipboard": "نسخ إلى الحافظة",
39
+ "agent.copyWorkflowRunId": "نسخ معرف تشغيل سير العمل",
40
+ "agent.dashboard": "لوحة المعلومات",
41
+ "agent.details": "تفاصيل",
42
+ "agent.document": "مستند",
43
+ "agent.documentAttachments": "مرفقات المستند",
44
+ "agent.documentAttachmentsDescription": "مستندات من المتجر مرفقة بهذه الرسالة. يمكن للوكيل استرجاعها بالمعرف في أي وقت، أو إعادة إرفاقها لتضمين المحتوى مباشرة.",
45
+ "agent.documents": "المستندات",
46
+ "agent.download": "تحميل",
47
+ "agent.downloadConversation": "تحميل المحادثة",
48
+ "agent.dropFilesToUpload": "أسقط الملفات للرفع",
49
+ "agent.elapsed": "{{seconds}}ث مضت",
50
+ "agent.enlargedView": "عرض مكبّر",
51
+ "agent.enterMessage": "أدخل رسالة لبدء محادثة",
52
+ "agent.enterToSend": "Enter للإرسال • Shift+Enter لسطر جديد",
53
+ "agent.error": "خطأ",
54
+ "agent.errorStarting": "خطأ في بدء سير العمل",
55
+ "agent.exit": "خروج",
56
+ "agent.exitFullscreen": "الخروج من ملء الشاشة",
57
+ "agent.export": "تصدير",
58
+ "agent.exportAsPdf": "تصدير كـ PDF",
59
+ "agent.exportAsPng": "تصدير كـ PNG",
60
+ "agent.exportAsWord": "تصدير كـ Word",
61
+ "agent.exportMessage": "تصدير الرسالة",
62
+ "agent.exporting": "جارٍ التصدير...",
63
+ "agent.failedToCancelWorkflow": "فشل إلغاء سير العمل",
64
+ "agent.failedToDownload": "فشل تنزيل المحادثة",
65
+ "agent.failedToForkConversation": "فشل تفريع المحادثة",
66
+ "agent.failedToInterrupt": "فشل الإيقاف",
67
+ "agent.failedToLoadDocument": "فشل تحميل المستند",
68
+ "agent.failedToRenderMessage": "فشل في عرض الرسالة",
69
+ "agent.failedToRestartConversation": "فشل إعادة تشغيل المحادثة",
70
+ "agent.failedToSend": "فشل إرسال الرسالة",
71
+ "agent.filesProcessing": "لا تزال الملفات قيد المعالجة",
72
+ "agent.filesStagedCount_few": "{{count}} ملفات مُعدّة - سيتم رفعها عند بدء المحادثة",
73
+ "agent.filesStagedCount_many": "{{count}} ملفًا مُعدًّا - سيتم رفعها عند بدء المحادثة",
74
+ "agent.filesStagedCount_one": "ملف واحد مُعدّ - سيتم رفعه عند بدء المحادثة",
75
+ "agent.filesStagedCount_other": "{{count}} ملف مُعدّ - سيتم رفعها عند بدء المحادثة",
76
+ "agent.filesStagedCount_two": "ملفان مُعدّان - سيتم رفعهما عند بدء المحادثة",
77
+ "agent.filesStagedCount_zero": "لا توجد ملفات مُعدّة",
78
+ "agent.filesUploadedDescription": "الملفات المرفوعة في هذه المحادثة تظل متاحة طوال الوقت. يمكن للوكيل الوصول إليها في أي وقت.",
79
+ "agent.forkConversation": "تفريع المحادثة",
80
+ "agent.fullscreen": "ملء الشاشة",
81
+ "agent.hideDetails": "إخفاء التفاصيل",
82
+ "agent.hideSidebar": "إخفاء الشريط الجانبي",
83
+ "agent.hideThinkingDetails": "إخفاء تفاصيل التفكير",
84
+ "agent.inProgress": "قيد التنفيذ",
85
+ "agent.linkObject": "ربط كائن",
86
+ "agent.loadingArtifacts": "جارٍ تحميل المخرجات...",
87
+ "agent.loadingDocument": "جارٍ تحميل المستند...",
88
+ "agent.main": "الرئيسي",
89
+ "agent.mainWorkstream": "تدفق العمل الرئيسي",
90
+ "agent.moreActions": "المزيد من الإجراءات",
91
+ "agent.newerPlan": "خطة أحدث",
92
+ "agent.no": "لا",
93
+ "agent.noActiveWorkstreams": "لا توجد تدفقات عمل نشطة",
94
+ "agent.noAgentRunning": "لا يوجد وكيل قيد التشغيل حالياً",
95
+ "agent.noArtifactsYet": "لا توجد مخرجات بعد",
96
+ "agent.noContentAvailable": "لا يوجد محتوى متاح",
97
+ "agent.noContentToExport": "لا يوجد محتوى للتصدير",
98
+ "agent.noConversationContent": "لا يوجد محتوى محادثة متاح للتصدير",
99
+ "agent.noDocumentsOpen": "لا توجد مستندات مفتوحة",
100
+ "agent.noFilesUploadedYet": "لم يتم رفع أي ملفات",
101
+ "agent.noMessagesInWorkstream": "لا توجد رسائل في هذا التدفق بعد...",
102
+ "agent.noPlanAvailable": "لا توجد خطة متاحة",
103
+ "agent.noPlanDetected": "لم يتم اكتشاف أي خطة بعد",
104
+ "agent.olderPlan": "خطة أقدم",
105
+ "agent.openDocument": "فتح المستند",
106
+ "agent.openInNewTab": "فتح في علامة تبويب جديدة",
107
+ "agent.pdfExportFailed": "فشل تصدير PDF",
108
+ "agent.pdfExportReady": "تصدير PDF جاهز",
109
+ "agent.pending": "معلق",
110
+ "agent.plan": "خطة",
111
+ "agent.planProgress": "تقدم الخطة",
112
+ "agent.plansWillAppear": "ستظهر الخطط هنا عندما يقوم الوكيل بإنشاء واحدة",
113
+ "agent.printDialogDescription": "استخدم مربع حوار الطباعة في متصفحك للحفظ كـ PDF",
114
+ "agent.processing": "جارٍ المعالجة...",
115
+ "agent.ready": "جاهز",
116
+ "agent.refresh": "تحديث",
117
+ "agent.remaining": "{{seconds}}ث متبقية",
118
+ "agent.resizeRightPanel": "تغيير حجم اللوحة اليمنى",
119
+ "agent.restartConversation": "إعادة تشغيل المحادثة",
120
+ "agent.retry": "إعادة المحاولة",
121
+ "agent.running": "قيد التشغيل",
122
+ "agent.searchDocuments": "البحث في المستندات",
123
+ "agent.selectInteraction": "اختر تفاعلاً وانقر ابدأ لتشغيل الوكيل",
124
+ "agent.send": "إرسال",
125
+ "agent.showAllMessages": "عرض جميع الرسائل",
126
+ "agent.showDetails": "عرض التفاصيل",
127
+ "agent.showSidebar": "عرض الشريط الجانبي",
128
+ "agent.staged": "مُعدّ",
129
+ "agent.startAgent": "بدء الوكيل",
130
+ "agent.startNewConversation": "بدء محادثة جديدة",
131
+ "agent.startingAgent": "جارٍ بدء الوكيل...",
132
+ "agent.startingAgentUploading": "جارٍ بدء الوكيل ورفع الملفات...",
133
+ "agent.stepByStepPlan": "خطة خطوة بخطوة",
134
+ "agent.stop": "إيقاف",
135
+ "agent.stopAgent": "إيقاف الوكيل",
136
+ "agent.submitSelection": "إرسال الاختيار",
137
+ "agent.submitSelectionCount_few": "إرسال الاختيار ({{count}})",
138
+ "agent.submitSelectionCount_many": "إرسال الاختيار ({{count}})",
139
+ "agent.submitSelectionCount_one": "إرسال الاختيار ({{count}})",
140
+ "agent.submitSelectionCount_other": "إرسال الاختيار ({{count}})",
141
+ "agent.submitSelectionCount_two": "إرسال الاختيار ({{count}})",
142
+ "agent.submitSelectionCount_zero": "إرسال الاختيار ({{count}})",
143
+ "agent.summary": "ملخص",
144
+ "agent.taskProgress": "تقدم المهام",
145
+ "agent.toggleRightSidebar": "تبديل الشريط الجانبي الأيمن",
146
+ "agent.typeNewInstructions": "اكتب رسالتك لإعطاء تعليمات جديدة",
147
+ "agent.typeQuestionBelow": "اكتب سؤالك أدناه واضغط Enter أو انقر {{buttonText}} للبدء",
148
+ "agent.typeYourMessage": "اكتب رسالتك...",
149
+ "agent.typeYourResponse": "اكتب ردك...",
150
+ "agent.unableToOpenPrint": "تعذر فتح معاينة الطباعة",
151
+ "agent.unknownError": "خطأ غير معروف",
152
+ "agent.unknownTime": "وقت غير معروف",
153
+ "agent.upload": "رفع",
154
+ "agent.uploadFailed": "فشل الرفع",
155
+ "agent.uploadedFiles": "الملفات المرفوعة",
156
+ "agent.uploading": "جارٍ الرفع...",
157
+ "agent.uploads": "المرفوعات",
158
+ "agent.waitForFiles": "انتظر حتى تنتهي معالجة الملفات",
159
+ "agent.waitForFilesProcessing": "يرجى الانتظار حتى تنتهي معالجة جميع الملفات قبل الإرسال",
160
+ "agent.waiting": "في الانتظار...",
161
+ "agent.waitingForAgentResponse": "في انتظار رد الوكيل...",
162
+ "agent.workflowCancelled": "تم إلغاء سير العمل",
163
+ "agent.workflowRunIdCopied": "تم نسخ معرف تشغيل سير العمل",
164
+ "agent.working": "جارٍ العمل...",
165
+ "agent.workstreams": "تدفقات العمل",
166
+ "agent.yes": "نعم",
167
+ "auth.continueWithEnterprise": "المتابعة مع SSO المؤسسي",
168
+ "auth.continueWithGithub": "المتابعة مع GitHub",
169
+ "auth.continueWithGoogle": "المتابعة مع Google",
170
+ "auth.continueWithMicrosoft": "المتابعة مع Microsoft",
171
+ "auth.enterEnterpriseEmail": "أدخل بريدك الإلكتروني المؤسسي",
172
+ "auth.error": "خطأ: {{message}}",
173
+ "auth.firstTimeDetails": "سنطرح عليك بضعة أسئلة فقط وستكون جاهزاً.",
174
+ "auth.firstTimeMessage": "أول مرة هنا؟ لا مشكلة، يمكنك التجربة مجاناً!",
175
+ "auth.goBack": "العودة",
176
+ "auth.invalidEmail": "عنوان بريد إلكتروني غير صالح",
177
+ "auth.logInOrSignUp": "تسجيل الدخول أو إنشاء حساب",
178
+ "auth.needToMakeChange": "هل تحتاج إلى إجراء تغيير؟",
179
+ "auth.or": "أو",
180
+ "auth.privacyPolicy": "سياسة الخصوصية",
181
+ "auth.signInError": "عذراً، لم نتمكن من تسجيل دخولك.",
182
+ "auth.signInErrorContact": "يرجى المحاولة مرة أخرى أو التواصل مع",
183
+ "auth.signInErrorPersists": "إذا استمرت المشكلة.",
184
+ "auth.tenantNotFound": "لم يتم العثور على المؤسسة",
185
+ "auth.termsOfService": "شروط الخدمة",
186
+ "errors.failedToLoadTenantConfig": "فشل في تحميل إعدادات المستأجر",
187
+ "errors.somethingWentWrong": "عذراً، حدث خطأ ما...",
188
+ "errors.teamNotifiedLine1": "تم إبلاغ فريقنا وسيعمل بسرعة على حل المشكلة.",
189
+ "errors.teamNotifiedLine2": "إذا كنت ترغب في التصعيد أو التواصل معنا، يرجى مراسلتنا على",
190
+ "filter.clearAll": "مسح الكل",
191
+ "filter.filter": "تصفية",
192
+ "filter.filterBy": "تصفية حسب {{view}}",
193
+ "filter.filterPlaceholder": "تصفية...",
194
+ "filter.from": "من:",
195
+ "filter.noAvailableFilters": "لا توجد عوامل تصفية متاحة",
196
+ "filter.noMatchingFilters": "لا توجد عوامل تصفية مطابقة",
197
+ "filter.noResultsFound": "لم يتم العثور على نتائج.",
198
+ "filter.selectRange": "اختر نطاقاً",
199
+ "filter.to": "إلى:",
200
+ "form.clickToRemove": "انقر للإزالة",
201
+ "form.createValue": "إنشاء \"{{value}}\"",
202
+ "form.filter": "تصفية...",
203
+ "form.noMoreOptions": "لا توجد خيارات أخرى متاحة",
204
+ "form.noOptionsFound": "لم يتم العثور على خيارات",
205
+ "layout.pageNotFound": "الصفحة غير موجودة",
206
+ "layout.search": "بحث",
207
+ "layout.searchPlaceholder": "بحث...",
208
+ "login.accept": "قبول",
209
+ "login.reject": "رفض",
210
+ "login.reviewInvites": "مراجعة الدعوات",
211
+ "login.terminal.account": "الحساب",
212
+ "login.terminal.accountRequired": "الحساب مطلوب",
213
+ "login.terminal.accountRequiredDesc": "يرجى اختيار حساب لتفويض العميل للوصول إلى خوادم ComposablePrompts",
214
+ "login.terminal.authPayloadCopied": "تم نسخ حمولة المصادقة",
215
+ "login.terminal.authPayloadCopiedSuccess": "يمكنك إغلاق هذه الصفحة. من المفترض أن CLI قد تلقى الرمز.",
216
+ "login.terminal.authPayloadCopiedWithError": "يمكنك لصق الحمولة في الطرفية. ملاحظة: لم يتلقَّ CLI الرمز. حدث خطأ: {{error}}",
217
+ "login.terminal.authorizeClient": "تفويض العميل",
218
+ "login.terminal.browserPermissionNote": "ملاحظة: إذا طلب متصفحك إذناً للوصول إلى شبكتك المحلية، يرجى السماح بذلك. هذا مطلوب لإرسال رمز التفويض إلى أداة CLI. وإلا ستحتاج إلى نسخ/لصق الرمز يدوياً في طرفيتك.",
219
+ "login.terminal.chooseAccountProject": "يجب اختيار الحساب والمشروع المستهدفين لوصول العميل.",
220
+ "login.terminal.clientAuthenticated": "تم مصادقة العميل. يمكنك إغلاق هذه الصفحة.",
221
+ "login.terminal.clientWantsAuth": "يريد تطبيق عميل الحصول على تفويض للوصول إلى خوادم composable prompt باسمك.",
222
+ "login.terminal.copyAuthPayload": "نسخ حمولة المصادقة",
223
+ "login.terminal.envLocalDev": "تطوير محلي",
224
+ "login.terminal.envProduction": "إنتاج",
225
+ "login.terminal.envStaging": "تجريبي",
226
+ "login.terminal.errorAuthorizingClient": "خطأ في تفويض العميل",
227
+ "login.terminal.errorLoadingProjects": "خطأ في تحميل المشاريع",
228
+ "login.terminal.failedToGetToken": "فشل الحصول على رمز composable",
229
+ "login.terminal.failedToSendToken": "فشل إرسال رمز التفويض إلى أداة CLI",
230
+ "login.terminal.failedToSendTokenDesc": "قد يحدث هذا بسبب فحوصات الأمان في Safari. الخطأ هو \"{{error}}\"",
231
+ "login.terminal.invalidRequest": "طلب غير صالح",
232
+ "login.terminal.invalidRequestDesc": "يجب استدعاء هذه الصفحة من عميل طرفية للمصادقة مع خوادم ComposablePrompts",
233
+ "login.terminal.profileName": "اسم الملف الشخصي",
234
+ "login.terminal.profileNameNote": "أيضاً، أدخل اسم ملف شخصي سيُستخدم لحفظ التفويض في إعدادات العميل.",
235
+ "login.terminal.profileRequired": "الملف الشخصي مطلوب",
236
+ "login.terminal.profileRequiredDesc": "يرجى إدخال اسم ملف شخصي لحفظ تفويض العميل",
237
+ "login.terminal.project": "المشروع",
238
+ "login.terminal.projectRequired": "المشروع مطلوب",
239
+ "login.terminal.projectRequiredDesc": "يرجى اختيار مشروع لتفويض العميل للوصول إلى خوادم ComposablePrompts",
240
+ "login.terminal.selectAccount": "اختر حساباً",
241
+ "login.terminal.selectProject": "اختر مشروعاً",
242
+ "misc.copiedToClipboard": "تم النسخ إلى الحافظة",
243
+ "misc.copy": "نسخ",
244
+ "misc.failedToCopy": "فشل النسخ",
245
+ "misc.noData": "لا توجد بيانات للعرض",
246
+ "misc.tableView": "عرض جدول",
247
+ "misc.thumbnailView": "عرض مصغرات",
248
+ "modal.cancel": "إلغاء",
249
+ "modal.confirm": "تأكيد",
250
+ "modal.delete.error": "حدث خطأ أثناء حذف الكائن",
251
+ "modal.delete.failed": "فشل الحذف",
252
+ "modal.delete.succeeded": "تم الحذف بنجاح",
253
+ "modal.save": "حفظ",
254
+ "modal.saveChanges": "حفظ التغييرات",
255
+ "modal.saveVersion.createDescription": "إنشاء مراجعة جديدة مع تغييرات الخصائص هذه مع الحفاظ على الأصل.",
256
+ "modal.saveVersion.createNew": "إنشاء نسخة جديدة",
257
+ "modal.saveVersion.createWithFileDescription": "إنشاء مراجعة جديدة مع الملف البديل مع الحفاظ على الأصل.",
258
+ "modal.saveVersion.howToSave": "كيف تريد حفظ هذه التغييرات؟",
259
+ "modal.saveVersion.replaceFile": "أنت على وشك استبدال ملف المحتوى بـ:",
260
+ "modal.saveVersion.updateCurrent": "تحديث النسخة الحالية",
261
+ "modal.saveVersion.updateDescription": "تعديل الخصائص مباشرة في المراجعة الحالية.",
262
+ "modal.saveVersion.updateWithFileDescription": "استبدال ملف المحتوى وتعديل الخصائص مباشرة في المراجعة الحالية.",
263
+ "modal.saveVersion.versionLabel": "تسمية النسخة (اختياري)",
264
+ "modal.saveVersion.versionLabelDescription": "تسمية اختيارية للنسخة الجديدة.",
265
+ "modal.saveVersion.versionLabelPlaceholder": "مثال: v1.2، معتمد، بعد المراجعة",
266
+ "oauthApps.authenticate": "مصادقة",
267
+ "oauthApps.authenticating": "جارٍ المصادقة...",
268
+ "oauthApps.authorizationEndpoint": "نقطة نهاية التفويض",
269
+ "oauthApps.cancel": "إلغاء",
270
+ "oauthApps.clientId": "Client ID",
271
+ "oauthApps.clientSecret": "Client Secret",
272
+ "oauthApps.clientSecretConfigured": "تم تكوين Secret (اتركه فارغاً للإبقاء عليه)",
273
+ "oauthApps.clientSecretHelp": "اختياري. مطلوب للعملاء السريين. مشفّر أثناء التخزين.",
274
+ "oauthApps.clientSecretPlaceholder": "أدخل Client Secret",
275
+ "oauthApps.connect": "اتصال",
276
+ "oauthApps.connected": "متصل",
277
+ "oauthApps.create": "إنشاء",
278
+ "oauthApps.createDescription": "تكوين تطبيق OAuth جديد لهذا المشروع.",
279
+ "oauthApps.created": "تم إنشاء تطبيق OAuth",
280
+ "oauthApps.defaultScopes": "النطاقات الافتراضية",
281
+ "oauthApps.defaultScopesHelp": "قائمة نطاقات OAuth مفصولة بمسافات.",
282
+ "oauthApps.deleteConfirm": "حذف تطبيق OAuth",
283
+ "oauthApps.deleteConfirmMessage": "هل أنت متأكد من رغبتك في الحذف",
284
+ "oauthApps.deleteFailed": "فشل حذف تطبيق OAuth",
285
+ "oauthApps.deleted": "تم حذف تطبيق OAuth",
286
+ "oauthApps.description": "تكوين تطبيقات OAuth للتكاملات مع الأطراف الخارجية.",
287
+ "oauthApps.disconnect": "قطع الاتصال",
288
+ "oauthApps.displayName": "اسم العرض",
289
+ "oauthApps.edit": "تعديل تطبيق OAuth",
290
+ "oauthApps.editDescription": "تحديث إعدادات تطبيق OAuth.",
291
+ "oauthApps.empty": "لم يتم تكوين أي تطبيقات OAuth بعد.",
292
+ "oauthApps.endpointsOptionalHelp": "اختياري. اتركه فارغًا لخوادم MCP التي تدعم اكتشاف .well-known.",
293
+ "oauthApps.name": "الاسم",
294
+ "oauthApps.nameHelp": "معرّف بتنسيق kebab-case (مثال: my-oauth-app). لا يمكن تغييره بعد الإنشاء.",
295
+ "oauthApps.notConnected": "غير متصل",
296
+ "oauthApps.revocationEndpoint": "نقطة نهاية الإبطال",
297
+ "oauthApps.save": "حفظ",
298
+ "oauthApps.saveFailed": "فشل حفظ تطبيق OAuth",
299
+ "oauthApps.saving": "جارٍ الحفظ...",
300
+ "oauthApps.status": "الحالة",
301
+ "oauthApps.title": "تطبيقات OAuth",
302
+ "oauthApps.tokenEndpoint": "نقطة نهاية الرمز المميز",
303
+ "oauthApps.updated": "تم تحديث تطبيق OAuth",
304
+ "oauthApps.usePkce": "استخدام PKCE (موصى به)",
305
+ "pdf.close": "إغلاق",
306
+ "pdf.closeFullscreen": "إغلاق ملء الشاشة",
307
+ "pdf.download": "تحميل",
308
+ "pdf.failedToLoadViewer": "فشل في تحميل عارض PDF",
309
+ "pdf.fetchingDocumentFailed": "فشل في جلب المستند",
310
+ "pdf.fitToWidth": "ملاءمة العرض",
311
+ "pdf.fullscreen": "ملء الشاشة",
312
+ "pdf.instrumentedImages": "صور مشروحة",
313
+ "pdf.nextPage": "الصفحة التالية",
314
+ "pdf.noPdfAvailable": "لا يوجد PDF متاح",
315
+ "pdf.originalImages": "الصور الأصلية",
316
+ "pdf.page": "صفحة",
317
+ "pdf.pageOf": "صفحة {{pageNumber}} / {{totalPages}}",
318
+ "pdf.previousPage": "الصفحة السابقة",
319
+ "pdf.zoomIn": "تكبير",
320
+ "pdf.zoomOut": "تصغير",
321
+ "shell.accessDenied": "تم رفض الوصول",
322
+ "shell.applicationNotRegistered": "التطبيق غير مسجل",
323
+ "shell.organization": "المؤسسة",
324
+ "shell.selectOrganization": "اختر مؤسسة",
325
+ "shell.selectProject": "اختر مشروعاً",
326
+ "signup.accountType": "نوع الحساب",
327
+ "signup.activelyExploring": "استكشاف نشط لنماذج LLM في مشروع",
328
+ "signup.alreadyUsing": "استخدام نماذج LLM في الإنتاج بالفعل",
329
+ "signup.company": "شركة",
330
+ "signup.companyDescription": "لشركة أو مؤسسة.",
331
+ "signup.companyName": "اسم الشركة",
332
+ "signup.companySize": "حجم الشركة",
333
+ "signup.companyWebsite": "موقع الشركة الإلكتروني",
334
+ "signup.justTesting": "اختبار أو تقييم نماذج LLM فقط",
335
+ "signup.migratingLLMs": "الانتقال إلى نماذج LLM مختلفة",
336
+ "signup.other": "أخرى",
337
+ "signup.personal": "شخصي",
338
+ "signup.personalDescription": "للاستخدام الشخصي أو لفريق صغير.",
339
+ "signup.pleaseEnterOrgName": "يرجى إدخال اسم المؤسسة",
340
+ "signup.pleaseSelectAccountType": "يرجى اختيار نوع الحساب",
341
+ "signup.pleaseSelectCompanySize": "يرجى اختيار حجم الشركة",
342
+ "signup.projectMaturity": "نضج المشروع",
343
+ "signup.selectCompanySize": "اختر حجم الشركة",
344
+ "signup.selectProjectMaturity": "اختر نضج المشروع",
345
+ "signup.signUp": "إنشاء حساب",
346
+ "signup.size1001to5000": "1001-5000 موظف",
347
+ "signup.size101to1000": "101-1000 موظف",
348
+ "signup.size11to100": "11-100 موظف",
349
+ "signup.size1to10": "1-10 موظفين",
350
+ "signup.size5000plus": "+5000 موظف",
351
+ "signup.welcomeMessage": "مرحباً بك في Vertesia، {{name}} ({{email}}).\nأخبرنا قليلاً عن نفسك وستكون جاهزاً للانطلاق.\nلا حاجة لبطاقة ائتمان.",
352
+ "signup.wrongAccountGoBack": "حساب خاطئ، العودة",
353
+ "store.actions.addToCollection": "إضافة إلى مجموعة",
354
+ "store.actions.addToCollectionBody": "أضف الكائنات المحددة إلى مجموعة موجودة أو أنشئ مجموعة جديدة.",
355
+ "store.actions.addToCollectionButton": "إضافة إلى مجموعة",
356
+ "store.actions.addToCollectionDesc": "إضافة مستندات إلى مجموعة",
357
+ "store.actions.addToCollectionFailure": "فشل الإضافة إلى المجموعة",
358
+ "store.actions.addToCollectionFailureDesc": "فشل إضافة الكائنات المحددة إلى المجموعة",
359
+ "store.actions.addToCollectionSuccess": "نجاح الإضافة إلى المجموعة",
360
+ "store.actions.addToCollectionSuccessDesc": "تمت إضافة {{count}} كائن إلى المجموعة المحددة",
361
+ "store.actions.addToCollectionTitle": "إضافة إلى مجموعة",
362
+ "store.actions.areYouSure": "هل أنت متأكد؟",
363
+ "store.actions.cannotRemoveNoCollection": "لا يمكن إزالة الكائنات: لم يتم تحديد مجموعة",
364
+ "store.actions.changeContentType": "تغيير نوع المحتوى",
365
+ "store.actions.changeContentTypeDesc": "تغيير نوع المحتوى للمستندات المحددة",
366
+ "store.actions.changeType": "تغيير النوع",
367
+ "store.actions.chooseExistingCollections": "اختر من المجموعات الموجودة",
368
+ "store.actions.chooseWorkflowRule": "اختر قاعدة سير عمل للبدء:",
369
+ "store.actions.confirmDeleteAll": "هل أنت متأكد من حذف جميع الكائنات المحددة؟ لا يمكن التراجع عن هذا الإجراء.",
370
+ "store.actions.confirmDeleteSelected": "هل أنت متأكد من حذف الكائنات المحددة؟\nهذا ليس إزالة من المجموعات.",
371
+ "store.actions.confirmRemoveFromCollection": "هل أنت متأكد من إزالة الكائنات المحددة من هذه المجموعة؟",
372
+ "store.actions.createNew": "إنشاء جديد",
373
+ "store.actions.delete": "حذف",
374
+ "store.actions.deleteObjects": "حذف الكائنات",
375
+ "store.actions.deleteTheSelectedObjects": "حذف الكائنات المحددة",
376
+ "store.actions.errorChangingType": "خطأ في تغيير النوع",
377
+ "store.actions.errorDeletingObjects": "خطأ في حذف الكائنات",
378
+ "store.actions.errorExportProperties": "خطأ في تصدير الخصائص",
379
+ "store.actions.errorRemovingObjects": "خطأ في إزالة الكائنات من المجموعة",
380
+ "store.actions.errorStartingWorkflow": "خطأ في بدء سير العمل",
381
+ "store.actions.exportAllObjectProperties": "تصدير جميع خصائص الكائنات",
382
+ "store.actions.exportProperties": "تصدير الخصائص",
383
+ "store.actions.noCollectionContext": "لا يوجد سياق مجموعة",
384
+ "store.actions.noObjectsSelected": "لم يتم تحديد كائنات",
385
+ "store.actions.pleaseSelectObjectsToDelete": "يرجى تحديد كائنات للحذف",
386
+ "store.actions.pleaseSelectObjectsToRemove": "يرجى تحديد كائنات لإزالتها من المجموعة",
387
+ "store.actions.removeFromCollection": "إزالة من المجموعة",
388
+ "store.actions.removeFromCollectionDesc": "إزالة الكائنات المحددة من هذه المجموعة",
389
+ "store.actions.selectCollection": "اختر مجموعة",
390
+ "store.actions.startWorkflow": "بدء سير العمل",
391
+ "store.actions.startWorkflowByRule": "بدء سير عمل بقاعدة",
392
+ "store.actions.startWorkflowDesc": "بدء سير عمل على الكائنات المحددة",
393
+ "store.actions.workflowStarted": "تم بدء سير العمل",
394
+ "store.allowedContentTypes": "أنواع المحتوى المسموح بها",
395
+ "store.allowedContentTypesOptionalDescription": "اختر اختيارياً أنواع المحتوى التي يمكن إضافتها إلى المجموعة. إذا لم يتم التعيين، فسيتم السماح بجميع أنواع المحتوى.",
396
+ "store.allowedContentTypesSelectDescription": "اختر أنواع المحتوى التي يمكن إضافتها إلى المجموعة. إذا لم يتم التعيين، فسيتم السماح بجميع أنواع المحتوى.",
397
+ "store.areYouSureDeleteCollection": "هل أنت متأكد من حذف هذه المجموعة؟ لا يمكن التراجع عن هذا الإجراء.",
398
+ "store.audioFormatRequired": "يتطلب صيغة MP3 أو M4A أو OGG أو WAV أو WebM",
399
+ "store.automaticTypeDetection": "الكشف التلقائي عن النوع",
400
+ "store.automaticTypeDetectionDescription": "سيقوم Vertesia بتحليل المحتوى واختيار النوع الأنسب. يُوصى بهذا لمعظم عمليات الرفع ويضمن المعالجة المثلى.",
401
+ "store.cancelEdit": "إلغاء",
402
+ "store.chooseAFormat": "اختر صيغة",
403
+ "store.chooseContentType": "اختر نوع محتوى...",
404
+ "store.chooseContentTypes": "اختر أنواع المحتوى...",
405
+ "store.chooseWhatToExport": "اختر ما تريد تصديره",
406
+ "store.clearSelection": "مسح الاختيار",
407
+ "store.close": "إغلاق",
408
+ "store.collectionCreated": "تم إنشاء المجموعة",
409
+ "store.collectionDeleted": "تم حذف المجموعة",
410
+ "store.collectionFetchFailed": "فشل جلب المجموعة",
411
+ "store.collectionPropertiesUpdated": "تم تحديث خصائص المجموعة",
412
+ "store.collectionUpdated": "تم تحديث المجموعة",
413
+ "store.collectionUpdatedSuccess": "تم تحديث المجموعة بنجاح",
414
+ "store.collectionsSelected": "تم اختيار {{count}} مجموعة",
415
+ "store.configuration": "الإعدادات",
416
+ "store.confirmSelection": "تأكيد الاختيار",
417
+ "store.contentCopied": "تم نسخ {{type}}",
418
+ "store.contentExported": "تم تصدير المحتوى",
419
+ "store.contentType": "نوع المحتوى",
420
+ "store.convertingToPdf": "جارٍ التحويل إلى PDF...",
421
+ "store.copyFailed": "فشل النسخ",
422
+ "store.createACollection": "إنشاء مجموعة",
423
+ "store.createCollection": "إنشاء مجموعة",
424
+ "store.createType": "إنشاء نوع",
425
+ "store.created": "تاريخ الإنشاء",
426
+ "store.createdBy": "أنشأه",
427
+ "store.deleteCollection": "حذف المجموعة",
428
+ "store.documentExported": "تم تصدير المستند",
429
+ "store.documentInformation": "معلومات المستند",
430
+ "store.documentListRefreshed": "تم تحديث قائمة المستندات",
431
+ "store.documentListRefreshedDesc": "تم تحديث قائمة المستندات بملفاتك المرفوعة.",
432
+ "store.documentPreview": "معاينة المستند",
433
+ "store.downloadFailed": "فشل التحميل",
434
+ "store.dynamicCollection": "مجموعة ديناميكية",
435
+ "store.dynamicCollectionDescription": "جلب المحتوى ديناميكياً للمجموعة بناءً على استعلام. إذا لم يتم التفعيل، يجب إضافة المحتوى من قبل المستخدمين أو الوكلاء.",
436
+ "store.editJson": "تحرير JSON",
437
+ "store.editProperties": "تحرير الخصائص",
438
+ "store.editSchema": "تحرير المخطط",
439
+ "store.editText": "تحرير النص",
440
+ "store.editingGenericDocument": "تحرير خصائص مستند عام",
441
+ "store.embeddings": "التضمينات",
442
+ "store.enableSyncMemberHeads": "تفعيل مزامنة رؤوس الأعضاء",
443
+ "store.error": "خطأ",
444
+ "store.errorCheckingDuplicates": "حدث خطأ أثناء التحقق من الملفات المكررة",
445
+ "store.errorCreatingType": "خطأ في إنشاء النوع",
446
+ "store.errorInUploadProcessingCheck": "خطأ في فحص معالجة رفع الملفات",
447
+ "store.errorProcessingFiles": "خطأ في معالجة الملفات",
448
+ "store.errorSavingText": "فشل في حفظ النص",
449
+ "store.errorSavingTextDefault": "حدث خطأ أثناء حفظ محتوى النص.",
450
+ "store.errorUpdatingProperties": "خطأ في تحديث الخصائص",
451
+ "store.errorUpdatingPropertiesDefault": "حدث خطأ أثناء تحديث الخصائص.",
452
+ "store.exportFailed": "فشل التصدير",
453
+ "store.exportInProgress": "التصدير قيد التنفيذ",
454
+ "store.failedToConvertToPdf": "فشل التحويل إلى PDF",
455
+ "store.failedToCopy": "فشل نسخ {{type}} إلى الحافظة",
456
+ "store.failedToCreateCollection": "فشل إنشاء المجموعة",
457
+ "store.failedToDeleteCollection": "فشل حذف المجموعة",
458
+ "store.failedToDownloadFile": "فشل تحميل الملف",
459
+ "store.failedToDownloadPdf": "فشل تحميل ملف PDF",
460
+ "store.failedToExportContent": "فشل تصدير المحتوى",
461
+ "store.failedToExportDocument": "فشل تصدير المستند",
462
+ "store.failedToFetchRoleMappings": "فشل جلب تعيينات الأدوار",
463
+ "store.failedToFetchTypes": "فشل جلب أنواع الكائنات",
464
+ "store.failedToFetchWorkflows": "فشل جلب سير العمل",
465
+ "store.failedToGetDownloadUrl": "فشل الحصول على رابط التحميل",
466
+ "store.failedToLoadDocument": "فشل تحميل المستند",
467
+ "store.failedToLoadType": "فشل تحميل النوع",
468
+ "store.failedToUpdateCollection": "فشل تحديث المجموعة",
469
+ "store.failedToUpdateCollectionProperties": "فشل تحديث خصائص المجموعة",
470
+ "store.failedToUpdateSchema": "فشل تحديث المخطط",
471
+ "store.failedToUpdateSharedProperties": "فشل تحديث الخصائص المشتركة",
472
+ "store.failedToUpdateSkipHeadSync": "فشل تحديث إعداد تخطي مزامنة الرؤوس",
473
+ "store.failedToUpdateTableLayout": "فشل تحديث تخطيط الجدول",
474
+ "store.filesAnalyzedTitle": "تم تحليل الملفات",
475
+ "store.filesReadyToProcess": "الملفات جاهزة للمعالجة",
476
+ "store.filterByName": "تصفية بالاسم",
477
+ "store.fullText": "النص الكامل",
478
+ "store.fullView": "العرض الكامل",
479
+ "store.getStartedCollections": "ابدأ بإنشاء مجموعة جديدة.",
480
+ "store.getStartedTypes": "ابدأ بإنشاء نوع جديد.",
481
+ "store.id": "المعرف",
482
+ "store.invalidJson": "JSON غير صالح",
483
+ "store.invalidJsonSchema": "مخطط JSON غير صالح",
484
+ "store.invalidQueryJson": "استعلام JSON غير صالح",
485
+ "store.invalidTableLayout": "تخطيط جدول غير صالح",
486
+ "store.isChunkable": "قابل للتجزئة",
487
+ "store.limit": "الحد",
488
+ "store.loadingDocument": "جارٍ تحميل المستند...",
489
+ "store.loadingProcessingStatus": "جارٍ تحميل حالة المعالجة...",
490
+ "store.na": "غير متوفر",
491
+ "store.name": "الاسم",
492
+ "store.newCollections": "مجموعات جديدة",
493
+ "store.newVersionCreated": "تم إنشاء نسخة جديدة",
494
+ "store.newVersionCreatedDesc": "تم إنشاء نسخة جديدة بخصائص محدّثة.",
495
+ "store.noAudioRendition": "لا يتوفر إصدار صوتي متوافق مع الويب",
496
+ "store.noCollections": "لا توجد مجموعات",
497
+ "store.noCollectionsAvailable": "لا توجد مجموعات متاحة.",
498
+ "store.noCollectionsFound": "لم يتم العثور على مجموعات.",
499
+ "store.noFilesSelected": "لم يتم اختيار ملفات",
500
+ "store.noObjectsDragAndDrop": "لا توجد كائنات. اسحب وأفلت المستندات أو الصور هنا لإنشاء كائنات محتوى.",
501
+ "store.noPreviewAvailable": "لا تتوفر معاينة لهذا النوع من المستندات.",
502
+ "store.noProjectSelected": "لم يتم اختيار مشروع",
503
+ "store.noPropertiesAvailable": "لا توجد خصائص متاحة لهذا المستند.",
504
+ "store.noPropertiesDefined": "لم يتم تعريف خصائص",
505
+ "store.noTranscriptAvailable": "لا يتوفر نص مكتوب",
506
+ "store.noType": "بدون نوع",
507
+ "store.noValidFilesSelected": "لم يتم اختيار ملفات صالحة",
508
+ "store.noVideoRendition": "لا يتوفر إصدار فيديو متوافق مع الويب",
509
+ "store.none": "لا شيء",
510
+ "store.openFullDocument": "فتح المستند الكامل",
511
+ "store.openFullDocumentView": "فتح العرض الكامل للمستند",
512
+ "store.optional": "(اختياري)",
513
+ "store.pdfConversionFailed": "فشل تحويل PDF",
514
+ "store.pdfPreviewFullView": "معاينة مستند PDF متاحة في العرض الكامل.",
515
+ "store.pleaseFixJsonSyntax": "يرجى إصلاح أخطاء بناء JSON قبل الحفظ.",
516
+ "store.pleaseProvideName": "يرجى تقديم اسم للمجموعة",
517
+ "store.pleaseSelectValidFiles": "يرجى اختيار ملفات ذات محتوى صالح.",
518
+ "store.pleaseWait": "يرجى الانتظار",
519
+ "store.preview": "معاينة",
520
+ "store.previewProperties": "معاينة الخصائص",
521
+ "store.processingFailedFor": "فشلت المعالجة لـ {{name}}",
522
+ "store.processingFiles": "جارٍ معالجة الملفات",
523
+ "store.properties": "الخصائص",
524
+ "store.propertiesUpdated": "تم تحديث الخصائص",
525
+ "store.propertiesUpdatedDesc": "تم تحديث خصائص الكائن بنجاح.",
526
+ "store.query": "استعلام",
527
+ "store.queryDescription": "حدد الاستعلام لجلب المحتوى ديناميكياً للمجموعة.",
528
+ "store.refresh": "تحديث",
529
+ "store.renderingDocument": "جارٍ عرض مستندك...",
530
+ "store.saveChanges": "حفظ التغييرات",
531
+ "store.saveText": "حفظ",
532
+ "store.schemaEditor": "محرر المخطط",
533
+ "store.schemaUpdated": "تم تحديث المخطط",
534
+ "store.schemaUpdatedSuccess": "تم تحديث المخطط بنجاح",
535
+ "store.search": "بحث",
536
+ "store.searchCollections": "البحث في المجموعات",
537
+ "store.searchFailed": "فشل البحث",
538
+ "store.searchPlaceholder": "اكتب ما تبحث عنه، أو اختر عامل تصفية",
539
+ "store.searchTypes": "البحث في الأنواع",
540
+ "store.searching": "جارٍ البحث...",
541
+ "store.selectACollection": "اختر مجموعة",
542
+ "store.selectContent": "اختر محتوى",
543
+ "store.selectContentType": "اختر نوع المحتوى",
544
+ "store.selectContentTypeAuto": "اختر نوع محتوى أو اتركه فارغاً للكشف التلقائي",
545
+ "store.selectContentTypeLabel": "اختر نوع محتوى",
546
+ "store.selectPropertiesToShare": "اختر الخصائص للمشاركة",
547
+ "store.semanticChunking": "التجزئة الدلالية",
548
+ "store.semanticSearch": "البحث الدلالي",
549
+ "store.semanticSearchSettings": "إعدادات البحث الدلالي",
550
+ "store.sharedProperties": "الخصائص المشتركة",
551
+ "store.sharedPropertiesDescription": "أضف خصائص لمشاركتها بين جميع أعضاء المجموعة. تتطلب هذه الميزة تفعيل مزامنة الخصائص المشتركة في المشروع.",
552
+ "store.showingFirst128K": "عرض أول 128 ألف حرف فقط",
553
+ "store.size": "الحجم",
554
+ "store.staticCollection": "مجموعة ثابتة",
555
+ "store.strictMode": "الوضع الصارم",
556
+ "store.successfullyCopied": "تم نسخ {{type}} إلى الحافظة بنجاح",
557
+ "store.successfullyExportedTo": "تم التصدير بنجاح إلى {{format}}",
558
+ "store.syncMemberHeads": "مزامنة رؤوس الأعضاء",
559
+ "store.syncMemberHeadsDescription": "عند إنشاء إصدار HEAD جديد لعضو، سيتم تحديث المجموعة للإشارة إلى HEAD الجديد.",
560
+ "store.tableLayout": "تخطيط الجدول",
561
+ "store.tableLayoutDescription": "حدد تخطيطاً مخصصاً لعرض المجموعة في الجداول.",
562
+ "store.tableLayoutUpdated": "تم تحديث تخطيط الجدول",
563
+ "store.tableLayoutUpdatedDesc": "تم تحديث تخطيط الجدول بنجاح",
564
+ "store.textConflict": "تم تعديل المستند في مكان آخر. يرجى التحديث والمحاولة مرة أخرى.",
565
+ "store.textSaved": "تم حفظ محتوى النص",
566
+ "store.typeCreated": "تم إنشاء النوع",
567
+ "store.typeDescription": "اختر اختيارياً نوع محتوى لتعيين خصائص وبيانات مخصصة للمجموعة.",
568
+ "store.typeSelectDescription": "اختر نوع محتوى لتعيين خصائص وبيانات مخصصة للمجموعة.",
569
+ "store.unknown": "غير معروف",
570
+ "store.unsavedChanges": "تغييرات غير محفوظة",
571
+ "store.updated": "تاريخ التحديث",
572
+ "store.updatedAt": "تاريخ التحديث",
573
+ "store.updatedBy": "حدّثه",
574
+ "store.updatedSharedProperties": "تم تحديث الخصائص المشتركة",
575
+ "store.updatedSkipHeadSync": "تم تحديث إعداد تخطي مزامنة الرؤوس",
576
+ "store.upload": "رفع",
577
+ "store.uploadComplete": "اكتمل الرفع",
578
+ "store.uploadIssues": "مشاكل الرفع",
579
+ "store.validationFailed": "فشل التحقق",
580
+ "store.videoFormatRequired": "يتطلب صيغة MP4 أو WebM",
581
+ "store.viewAsPdf": "عرض كـ PDF",
582
+ "store.viewAudio": "عرض الصوت",
583
+ "store.viewImage": "عرض الصورة",
584
+ "store.viewInJsonFormat": "عرض بصيغة JSON",
585
+ "store.viewPdf": "عرض PDF",
586
+ "store.viewText": "عرض النص",
587
+ "store.viewTranscript": "عرض النص المكتوب",
588
+ "store.viewVideo": "عرض الفيديو",
589
+ "store.viewingNewVersion": "عرض النسخة الجديدة",
590
+ "store.viewingNewVersionDefault": "يتم الآن عرض النسخة الجديدة",
591
+ "store.viewingVersionLabel": "يتم الآن عرض النسخة '{{label}}'",
592
+ "theme.dark": "داكن",
593
+ "theme.label": "المظهر",
594
+ "theme.light": "فاتح",
595
+ "theme.system": "النظام",
596
+ "type.description": "الوصف",
597
+ "type.name": "الاسم",
598
+ "type.nameRequired": "الاسم مطلوب",
599
+ "upload.allFilesExist": "جميع الملفات البالغ عددها {{count}} موجودة بالفعل في النظام وسيتم تخطيها. يمكنك المتابعة لعرض النتائج.",
600
+ "upload.analyzingFiles": "جارٍ تحليل الملفات...",
601
+ "upload.checkingForDuplicates": "جارٍ التحقق من التكرارات والتحديثات",
602
+ "upload.collectionLabel": "المجموعة:",
603
+ "upload.contentTypeTooltip": "اختر نوع محتوى لتطبيقه على الملفات المرفوعة. إذا تُرك فارغاً، سيكتشف Vertesia النوع تلقائياً بناءً على محتوى الملف.",
604
+ "upload.continue": "متابعة",
605
+ "upload.dragAndDrop": "اسحب وأفلت الملفات هنا أو انقر للاختيار",
606
+ "upload.errorAnalyzingFiles": "حدث خطأ أثناء تحليل الملفات",
607
+ "upload.failedToUpload": "فشل الرفع",
608
+ "upload.fileAnalysisResults": "نتائج تحليل الملفات",
609
+ "upload.filesAnalyzed": "تم تحليل الملفات",
610
+ "upload.filesProcessed_few": "تمت معالجة {{count}} ملفات",
611
+ "upload.filesProcessed_many": "تمت معالجة {{count}} ملفًا",
612
+ "upload.filesProcessed_one": "تمت معالجة ملف واحد",
613
+ "upload.filesProcessed_other": "تمت معالجة {{count}} ملف",
614
+ "upload.filesProcessed_two": "تمت معالجة ملفين",
615
+ "upload.filesProcessed_zero": "لم تتم معالجة أي ملفات",
616
+ "upload.filesReadyToProcess_few": "{{count}} ملفات جاهزة للمعالجة",
617
+ "upload.filesReadyToProcess_many": "{{count}} ملفًا جاهزًا للمعالجة",
618
+ "upload.filesReadyToProcess_one": "ملف واحد جاهز للمعالجة",
619
+ "upload.filesReadyToProcess_other": "{{count}} ملف جاهز للمعالجة",
620
+ "upload.filesReadyToProcess_two": "ملفان جاهزان للمعالجة",
621
+ "upload.filesReadyToProcess_zero": "لا توجد ملفات جاهزة للمعالجة",
622
+ "upload.filesToSkip_few": "{{count}} ملفات موجودة بالفعل في النظام وسيتم تخطيها.",
623
+ "upload.filesToSkip_many": "{{count}} ملفًا موجودًا بالفعل في النظام وسيتم تخطيه.",
624
+ "upload.filesToSkip_one": "ملف واحد موجود بالفعل في النظام وسيتم تخطيه.",
625
+ "upload.filesToSkip_other": "{{count}} ملف موجود بالفعل في النظام وسيتم تخطيه.",
626
+ "upload.filesToSkip_two": "ملفان موجودان بالفعل في النظام وسيتم تخطيهما.",
627
+ "upload.filesToSkip_zero": "لا توجد ملفات للتخطي.",
628
+ "upload.folderLabel": "المجلد:",
629
+ "upload.inCollection": " في المجموعة '{{collection}}'",
630
+ "upload.inFolder": " في المجلد '{{location}}'",
631
+ "upload.new": "جديد",
632
+ "upload.noFilesToProcess": "لا توجد ملفات للمعالجة.",
633
+ "upload.noItems": "لا توجد عناصر للعرض",
634
+ "upload.preparingFiles_few": "جاري التحضير لرفع {{count}} ملفات...",
635
+ "upload.preparingFiles_many": "جاري التحضير لرفع {{count}} ملفًا...",
636
+ "upload.preparingFiles_one": "جاري التحضير لرفع ملف واحد...",
637
+ "upload.preparingFiles_other": "جاري التحضير لرفع {{count}} ملف...",
638
+ "upload.preparingFiles_two": "جاري التحضير لرفع ملفين...",
639
+ "upload.preparingFiles_zero": "جاري التحضير للرفع...",
640
+ "upload.preparingFolder_few": "جاري التحضير لرفع {{folderCount}} مجلدات تحتوي على {{fileCount}} ملفات...",
641
+ "upload.preparingFolder_many": "جاري التحضير لرفع {{folderCount}} مجلدًا يحتوي على {{fileCount}} ملفات...",
642
+ "upload.preparingFolder_one": "جاري التحضير لرفع مجلد واحد يحتوي على {{fileCount}} ملفات...",
643
+ "upload.preparingFolder_other": "جاري التحضير لرفع {{folderCount}} مجلد يحتوي على {{fileCount}} ملفات...",
644
+ "upload.preparingFolder_two": "جاري التحضير لرفع مجلدين يحتويان على {{fileCount}} ملفات...",
645
+ "upload.preparingFolder_zero": "جاري التحضير للرفع...",
646
+ "upload.processedCount": "تمت معالجة {{processed}}/{{total}} ملف...",
647
+ "upload.processingFilesAction": "معالجة الملفات ({{action}})",
648
+ "upload.selectFiles": "اختيار ملفات",
649
+ "upload.selectFolder": "اختيار مجلد",
650
+ "upload.skip": "تخطي",
651
+ "upload.skippedAlreadyExisted": "تم التخطي (موجود بالفعل)",
652
+ "upload.successfullyUpdated": "تم التحديث بنجاح",
653
+ "upload.successfullyUploaded": "تم الرفع بنجاح",
654
+ "upload.update": "تحديث",
655
+ "upload.uploadComplete": "اكتمل الرفع",
656
+ "upload.uploadFiles": "رفع الملفات",
657
+ "upload.uploadLocation": "موقع الرفع:",
658
+ "upload.uploadMore": "رفع المزيد",
659
+ "upload.uploadProcessInterrupted": "تم مقاطعة عملية الرفع",
660
+ "upload.uploadingFiles": "جارٍ رفع الملفات",
661
+ "upload.useAutoDetection": "استخدام الكشف التلقائي عن النوع",
662
+ "upload.useTypeName": "استخدام {{typeName}}",
663
+ "user.account": "الحساب:",
664
+ "user.agentOnBehalfOf": "وكيل بالنيابة عن",
665
+ "user.agentOnBehalfOfApiKey": "وكيل بالنيابة عن مفتاح API",
666
+ "user.appVersion": "إصدار التطبيق",
667
+ "user.environment": "البيئة",
668
+ "user.failedToFetchApiKey": "فشل جلب مفتاح API",
669
+ "user.failedToFetchGroup": "فشل جلب المجموعة",
670
+ "user.failedToFetchUser": "فشل جلب المستخدم",
671
+ "user.groupId": "معرف المجموعة: {{id}}",
672
+ "user.key": "المفتاح:",
673
+ "user.organizationId": "معرف المؤسسة",
674
+ "user.organizationRoles": "أدوار المؤسسة",
675
+ "user.privateKey": "المفتاح الخاص",
676
+ "user.project": "المشروع:",
677
+ "user.projectId": "معرف المشروع",
678
+ "user.projectRoles": "أدوار المشروع",
679
+ "user.schedule": "جدولة {{title}}",
680
+ "user.sdkVersion": "إصدار SDK",
681
+ "user.server": "الخادم",
682
+ "user.serviceAccount": "حساب الخدمة",
683
+ "user.serviceAccountDescription": "يُستخدم هذا المستخدم بواسطة الروبوتات مثل عمال سير العمل.",
684
+ "user.store": "المتجر",
685
+ "user.systemUser": "مستخدم النظام",
686
+ "user.systemUserDescription": "يُستخدم مستخدم النظام لتهيئة الكائنات المدمجة.",
687
+ "user.tenantId": "معرف المستأجر",
688
+ "user.unknown": "غير معروف",
689
+ "user.unknownUser": "مستخدم غير معروف",
690
+ "user.unknownUserDescription": "معلومات المستخدم غير متاحة.",
691
+ "user.unnamedGroup": "مجموعة بدون اسم",
692
+ "user.user": "مستخدم",
693
+ "user.userId": "معرف المستخدم",
694
+ "widgets.schema.editDescription": "تحرير الوصف",
695
+ "widgets.schema.invalidPropertyDeclaration": "إعلان خاصية غير صالح"
696
+ }