@vertesia/ui 1.0.0-dev.20260305.083323Z → 1.1.0-dev.20260327.125707Z

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 (770) 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 +61 -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/env/index.js +11 -1
  46. package/lib/esm/env/index.js.map +1 -1
  47. package/lib/esm/features/agent/PayloadBuilder.js +87 -15
  48. package/lib/esm/features/agent/PayloadBuilder.js.map +1 -1
  49. package/lib/esm/features/agent/chat/AgentRightPanel.js +159 -0
  50. package/lib/esm/features/agent/chat/AgentRightPanel.js.map +1 -0
  51. package/lib/esm/features/agent/chat/ArtifactsTab.js +69 -0
  52. package/lib/esm/features/agent/chat/ArtifactsTab.js.map +1 -0
  53. package/lib/esm/features/agent/chat/AskUserWidget.js +12 -6
  54. package/lib/esm/features/agent/chat/AskUserWidget.js.map +1 -1
  55. package/lib/esm/features/agent/chat/DocumentPanel.js +6 -3
  56. package/lib/esm/features/agent/chat/DocumentPanel.js.map +1 -1
  57. package/lib/esm/features/agent/chat/ImageLightbox.js +3 -1
  58. package/lib/esm/features/agent/chat/ImageLightbox.js.map +1 -1
  59. package/lib/esm/features/agent/chat/ModernAgentConversation.js +243 -106
  60. package/lib/esm/features/agent/chat/ModernAgentConversation.js.map +1 -1
  61. package/lib/esm/features/agent/chat/ModernAgentOutput/AllMessagesMixed.js +122 -52
  62. package/lib/esm/features/agent/chat/ModernAgentOutput/AllMessagesMixed.js.map +1 -1
  63. package/lib/esm/features/agent/chat/ModernAgentOutput/BatchProgressPanel.js +5 -3
  64. package/lib/esm/features/agent/chat/ModernAgentOutput/BatchProgressPanel.js.map +1 -1
  65. package/lib/esm/features/agent/chat/ModernAgentOutput/Header.js +57 -18
  66. package/lib/esm/features/agent/chat/ModernAgentOutput/Header.js.map +1 -1
  67. package/lib/esm/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.js +82 -83
  68. package/lib/esm/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.js.map +1 -1
  69. package/lib/esm/features/agent/chat/ModernAgentOutput/MessageInput.js +16 -14
  70. package/lib/esm/features/agent/chat/ModernAgentOutput/MessageInput.js.map +1 -1
  71. package/lib/esm/features/agent/chat/ModernAgentOutput/MessageItem.js +20 -5
  72. package/lib/esm/features/agent/chat/ModernAgentOutput/MessageItem.js.map +1 -1
  73. package/lib/esm/features/agent/chat/ModernAgentOutput/PlanPanel.js +8 -6
  74. package/lib/esm/features/agent/chat/ModernAgentOutput/PlanPanel.js.map +1 -1
  75. package/lib/esm/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.js +12 -10
  76. package/lib/esm/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.js.map +1 -1
  77. package/lib/esm/features/agent/chat/ModernAgentOutput/StreamingMessage.js +5 -3
  78. package/lib/esm/features/agent/chat/ModernAgentOutput/StreamingMessage.js.map +1 -1
  79. package/lib/esm/features/agent/chat/ModernAgentOutput/ToolCallGroup.js +104 -13
  80. package/lib/esm/features/agent/chat/ModernAgentOutput/ToolCallGroup.js.map +1 -1
  81. package/lib/esm/features/agent/chat/ModernAgentOutput/WorkstreamTabs.js +9 -5
  82. package/lib/esm/features/agent/chat/ModernAgentOutput/WorkstreamTabs.js.map +1 -1
  83. package/lib/esm/features/agent/chat/ModernAgentOutput/utils.js +160 -76
  84. package/lib/esm/features/agent/chat/ModernAgentOutput/utils.js.map +1 -1
  85. package/lib/esm/features/agent/chat/SlidingThinkingIndicator.js +3 -1
  86. package/lib/esm/features/agent/chat/SlidingThinkingIndicator.js.map +1 -1
  87. package/lib/esm/features/agent/chat/VegaLiteChart.js +14 -2
  88. package/lib/esm/features/agent/chat/VegaLiteChart.js.map +1 -1
  89. package/lib/esm/features/agent/chat/hooks/useAgentPlans.js +3 -8
  90. package/lib/esm/features/agent/chat/hooks/useAgentPlans.js.map +1 -1
  91. package/lib/esm/features/agent/chat/hooks/useAgentStream.js +75 -16
  92. package/lib/esm/features/agent/chat/hooks/useAgentStream.js.map +1 -1
  93. package/lib/esm/features/agent/chat/hooks/useArtifacts.js +108 -0
  94. package/lib/esm/features/agent/chat/hooks/useArtifacts.js.map +1 -0
  95. package/lib/esm/features/agent/chat/hooks/useDocumentPanel.js +56 -5
  96. package/lib/esm/features/agent/chat/hooks/useDocumentPanel.js.map +1 -1
  97. package/lib/esm/features/agent/chat/hooks/useFileProcessing.js +12 -10
  98. package/lib/esm/features/agent/chat/hooks/useFileProcessing.js.map +1 -1
  99. package/lib/esm/features/errors/PanelErrorBoundary.js +3 -1
  100. package/lib/esm/features/errors/PanelErrorBoundary.js.map +1 -1
  101. package/lib/esm/features/facets/AgentRunnerFacetsNav.js +45 -33
  102. package/lib/esm/features/facets/AgentRunnerFacetsNav.js.map +1 -1
  103. package/lib/esm/features/facets/RunsFacetsNav.js +1 -1
  104. package/lib/esm/features/facets/RunsFacetsNav.js.map +1 -1
  105. package/lib/esm/features/facets/index.js +1 -1
  106. package/lib/esm/features/facets/index.js.map +1 -1
  107. package/lib/esm/features/layout/GenericPageNavHeader.js +40 -28
  108. package/lib/esm/features/layout/GenericPageNavHeader.js.map +1 -1
  109. package/lib/esm/features/layout/NotFoundView.js +3 -1
  110. package/lib/esm/features/layout/NotFoundView.js.map +1 -1
  111. package/lib/esm/features/magic-pdf/AnnotatedImageSlider.js +9 -5
  112. package/lib/esm/features/magic-pdf/AnnotatedImageSlider.js.map +1 -1
  113. package/lib/esm/features/magic-pdf/DownloadPopover.js +5 -4
  114. package/lib/esm/features/magic-pdf/DownloadPopover.js.map +1 -1
  115. package/lib/esm/features/magic-pdf/MagicPdfView.js +8 -5
  116. package/lib/esm/features/magic-pdf/MagicPdfView.js.map +1 -1
  117. package/lib/esm/features/pdf-viewer/PdfPageSlider.js +9 -5
  118. package/lib/esm/features/pdf-viewer/PdfPageSlider.js.map +1 -1
  119. package/lib/esm/features/pdf-viewer/SimplePdfViewer.js +5 -3
  120. package/lib/esm/features/pdf-viewer/SimplePdfViewer.js.map +1 -1
  121. package/lib/esm/features/permissions/UserPermissionsProvider.js +3 -1
  122. package/lib/esm/features/permissions/UserPermissionsProvider.js.map +1 -1
  123. package/lib/esm/features/store/collections/BrowseCollectionView.js +9 -1
  124. package/lib/esm/features/store/collections/BrowseCollectionView.js.map +1 -1
  125. package/lib/esm/features/store/collections/CollectionsTable.js +14 -7
  126. package/lib/esm/features/store/collections/CollectionsTable.js.map +1 -1
  127. package/lib/esm/features/store/collections/CreateCollection.js +12 -9
  128. package/lib/esm/features/store/collections/CreateCollection.js.map +1 -1
  129. package/lib/esm/features/store/collections/EditCollectionView.js +23 -19
  130. package/lib/esm/features/store/collections/EditCollectionView.js.map +1 -1
  131. package/lib/esm/features/store/collections/SelectCollection.js +25 -10
  132. package/lib/esm/features/store/collections/SelectCollection.js.map +1 -1
  133. package/lib/esm/features/store/collections/SharedPropsEditor.js +5 -3
  134. package/lib/esm/features/store/collections/SharedPropsEditor.js.map +1 -1
  135. package/lib/esm/features/store/collections/SyncMemberHeadsToggle.js +5 -3
  136. package/lib/esm/features/store/collections/SyncMemberHeadsToggle.js.map +1 -1
  137. package/lib/esm/features/store/objects/DocumentPreviewPanel.js +14 -12
  138. package/lib/esm/features/store/objects/DocumentPreviewPanel.js.map +1 -1
  139. package/lib/esm/features/store/objects/DocumentSearchResults.js +15 -5
  140. package/lib/esm/features/store/objects/DocumentSearchResults.js.map +1 -1
  141. package/lib/esm/features/store/objects/DocumentTable.js +10 -7
  142. package/lib/esm/features/store/objects/DocumentTable.js.map +1 -1
  143. package/lib/esm/features/store/objects/ExportPropertiesModal.js +5 -2
  144. package/lib/esm/features/store/objects/ExportPropertiesModal.js.map +1 -1
  145. package/lib/esm/features/store/objects/components/ContentDispositionButton.js +3 -1
  146. package/lib/esm/features/store/objects/components/ContentDispositionButton.js.map +1 -1
  147. package/lib/esm/features/store/objects/components/ContentOverview.js +55 -40
  148. package/lib/esm/features/store/objects/components/ContentOverview.js.map +1 -1
  149. package/lib/esm/features/store/objects/components/DocumentIcon.js +4 -3
  150. package/lib/esm/features/store/objects/components/DocumentIcon.js.map +1 -1
  151. package/lib/esm/features/store/objects/components/PropertiesEditorModal.js +13 -11
  152. package/lib/esm/features/store/objects/components/PropertiesEditorModal.js.map +1 -1
  153. package/lib/esm/features/store/objects/components/SaveVersionConfirmModal.js +15 -18
  154. package/lib/esm/features/store/objects/components/SaveVersionConfirmModal.js.map +1 -1
  155. package/lib/esm/features/store/objects/components/SelectDocument.js +9 -6
  156. package/lib/esm/features/store/objects/components/SelectDocument.js.map +1 -1
  157. package/lib/esm/features/store/objects/components/TextEditorPanel.js +97 -0
  158. package/lib/esm/features/store/objects/components/TextEditorPanel.js.map +1 -0
  159. package/lib/esm/features/store/objects/components/VectorSearchWidget.js +3 -1
  160. package/lib/esm/features/store/objects/components/VectorSearchWidget.js.map +1 -1
  161. package/lib/esm/features/store/objects/components/useContentPanelHooks.js +4 -2
  162. package/lib/esm/features/store/objects/components/useContentPanelHooks.js.map +1 -1
  163. package/lib/esm/features/store/objects/components/useDownloadFile.js +12 -10
  164. package/lib/esm/features/store/objects/components/useDownloadFile.js.map +1 -1
  165. package/lib/esm/features/store/objects/layout/documentLayout.js +10 -6
  166. package/lib/esm/features/store/objects/layout/documentLayout.js.map +1 -1
  167. package/lib/esm/features/store/objects/layout/renderers.js +10 -1
  168. package/lib/esm/features/store/objects/layout/renderers.js.map +1 -1
  169. package/lib/esm/features/store/objects/search/DocumentSearchContext.js +3 -2
  170. package/lib/esm/features/store/objects/search/DocumentSearchContext.js.map +1 -1
  171. package/lib/esm/features/store/objects/search/DocumentSearchProvider.js +3 -0
  172. package/lib/esm/features/store/objects/search/DocumentSearchProvider.js.map +1 -1
  173. package/lib/esm/features/store/objects/selection/ObjectsActionContext.js +22 -109
  174. package/lib/esm/features/store/objects/selection/ObjectsActionContext.js.map +1 -1
  175. package/lib/esm/features/store/objects/selection/ObjectsActionContextClass.js +50 -0
  176. package/lib/esm/features/store/objects/selection/ObjectsActionContextClass.js.map +1 -0
  177. package/lib/esm/features/store/objects/selection/ObjectsActionHooks.js +27 -0
  178. package/lib/esm/features/store/objects/selection/ObjectsActionHooks.js.map +1 -0
  179. package/lib/esm/features/store/objects/selection/SelectionActions.js +10 -6
  180. package/lib/esm/features/store/objects/selection/SelectionActions.js.map +1 -1
  181. package/lib/esm/features/store/objects/selection/actions/AddToCollectionAction.js +17 -12
  182. package/lib/esm/features/store/objects/selection/actions/AddToCollectionAction.js.map +1 -1
  183. package/lib/esm/features/store/objects/selection/actions/ChangeTypeAction.js +9 -5
  184. package/lib/esm/features/store/objects/selection/actions/ChangeTypeAction.js.map +1 -1
  185. package/lib/esm/features/store/objects/selection/actions/ConfirmAction.js +4 -2
  186. package/lib/esm/features/store/objects/selection/actions/ConfirmAction.js.map +1 -1
  187. package/lib/esm/features/store/objects/selection/actions/DeleteObjectsAction.js +24 -23
  188. package/lib/esm/features/store/objects/selection/actions/DeleteObjectsAction.js.map +1 -1
  189. package/lib/esm/features/store/objects/selection/actions/ExportPropertiesAction.js +10 -5
  190. package/lib/esm/features/store/objects/selection/actions/ExportPropertiesAction.js.map +1 -1
  191. package/lib/esm/features/store/objects/selection/actions/RemoveFromCollectionAction.js +13 -9
  192. package/lib/esm/features/store/objects/selection/actions/RemoveFromCollectionAction.js.map +1 -1
  193. package/lib/esm/features/store/objects/selection/actions/StartWorkflowComponent.js +14 -8
  194. package/lib/esm/features/store/objects/selection/actions/StartWorkflowComponent.js.map +1 -1
  195. package/lib/esm/features/store/objects/upload/DocumentUploadModal.js +42 -39
  196. package/lib/esm/features/store/objects/upload/DocumentUploadModal.js.map +1 -1
  197. package/lib/esm/features/store/objects/upload/useSmartFileUploadProcessing.js +4 -2
  198. package/lib/esm/features/store/objects/upload/useSmartFileUploadProcessing.js.map +1 -1
  199. package/lib/esm/features/store/objects/upload/useUploadHandler.js +9 -7
  200. package/lib/esm/features/store/objects/upload/useUploadHandler.js.map +1 -1
  201. package/lib/esm/features/store/types/ContentObjectTypesSearch.js +6 -4
  202. package/lib/esm/features/store/types/ContentObjectTypesSearch.js.map +1 -1
  203. package/lib/esm/features/store/types/ContentObjectTypesTable.js +3 -1
  204. package/lib/esm/features/store/types/ContentObjectTypesTable.js.map +1 -1
  205. package/lib/esm/features/store/types/CreateOrUpdateTypeModal.js +6 -7
  206. package/lib/esm/features/store/types/CreateOrUpdateTypeModal.js.map +1 -1
  207. package/lib/esm/features/store/types/ObjectSchemaEditor.js +9 -7
  208. package/lib/esm/features/store/types/ObjectSchemaEditor.js.map +1 -1
  209. package/lib/esm/features/store/types/SelectContentType.js +9 -7
  210. package/lib/esm/features/store/types/SelectContentType.js.map +1 -1
  211. package/lib/esm/features/store/types/SelectContentTypeModal.js +5 -2
  212. package/lib/esm/features/store/types/SelectContentTypeModal.js.map +1 -1
  213. package/lib/esm/features/store/types/TableLayoutEditor.js +6 -4
  214. package/lib/esm/features/store/types/TableLayoutEditor.js.map +1 -1
  215. package/lib/esm/features/user/UserInfo.js +40 -50
  216. package/lib/esm/features/user/UserInfo.js.map +1 -1
  217. package/lib/esm/i18n/index.js +31 -0
  218. package/lib/esm/i18n/index.js.map +1 -0
  219. package/lib/esm/i18n/instance.js +46 -0
  220. package/lib/esm/i18n/instance.js.map +1 -0
  221. package/lib/esm/i18n/locales/ar.json +694 -0
  222. package/lib/esm/i18n/locales/de.json +662 -0
  223. package/lib/esm/i18n/locales/en.json +663 -0
  224. package/lib/esm/i18n/locales/es.json +668 -0
  225. package/lib/esm/i18n/locales/fr.json +670 -0
  226. package/lib/esm/i18n/locales/it.json +668 -0
  227. package/lib/esm/i18n/locales/ja.json +662 -0
  228. package/lib/esm/i18n/locales/ko.json +662 -0
  229. package/lib/esm/i18n/locales/pt.json +668 -0
  230. package/lib/esm/i18n/locales/ru.json +678 -0
  231. package/lib/esm/i18n/locales/tr.json +662 -0
  232. package/lib/esm/i18n/locales/zh-TW.json +662 -0
  233. package/lib/esm/i18n/locales/zh.json +662 -0
  234. package/lib/esm/layout/FullHeightLayout.js +3 -0
  235. package/lib/esm/layout/FullHeightLayout.js.map +1 -1
  236. package/lib/esm/layout/Navbar.js +3 -1
  237. package/lib/esm/layout/Navbar.js.map +1 -1
  238. package/lib/esm/layout/RegionTag.js +15 -0
  239. package/lib/esm/layout/RegionTag.js.map +1 -0
  240. package/lib/esm/layout/Sidebar.js +2 -2
  241. package/lib/esm/layout/Sidebar.js.map +1 -1
  242. package/lib/esm/layout/index.js +1 -0
  243. package/lib/esm/layout/index.js.map +1 -1
  244. package/lib/esm/router/HistoryNavigator.js +1 -1
  245. package/lib/esm/router/HistoryNavigator.js.map +1 -1
  246. package/lib/esm/router/Nav.js +5 -3
  247. package/lib/esm/router/Nav.js.map +1 -1
  248. package/lib/esm/router/NestedNavigationContext.js +4 -0
  249. package/lib/esm/router/NestedNavigationContext.js.map +1 -1
  250. package/lib/esm/router/NestedRouterProvider.js +3 -1
  251. package/lib/esm/router/NestedRouterProvider.js.map +1 -1
  252. package/lib/esm/router/Router.js +21 -6
  253. package/lib/esm/router/Router.js.map +1 -1
  254. package/lib/esm/session/UserSession.js +23 -0
  255. package/lib/esm/session/UserSession.js.map +1 -1
  256. package/lib/esm/session/UserSessionProvider.js +4 -0
  257. package/lib/esm/session/UserSessionProvider.js.map +1 -1
  258. package/lib/esm/session/auth/composable.js +1 -1
  259. package/lib/esm/session/auth/composable.js.map +1 -1
  260. package/lib/esm/session/auth/firebase.js +1 -1
  261. package/lib/esm/session/auth/firebase.js.map +1 -1
  262. package/lib/esm/session/auth/useCurrentTenant.js +3 -1
  263. package/lib/esm/session/auth/useCurrentTenant.js.map +1 -1
  264. package/lib/esm/shell/SplashScreen.js +3 -7
  265. package/lib/esm/shell/SplashScreen.js.map +1 -1
  266. package/lib/esm/shell/apps/StandaloneApp.js +5 -2
  267. package/lib/esm/shell/apps/StandaloneApp.js.map +1 -1
  268. package/lib/esm/shell/login/EnterpriseSigninButton.js +5 -3
  269. package/lib/esm/shell/login/EnterpriseSigninButton.js.map +1 -1
  270. package/lib/esm/shell/login/GitHubSignInButton.js +3 -7
  271. package/lib/esm/shell/login/GitHubSignInButton.js.map +1 -1
  272. package/lib/esm/shell/login/GoogleSignInButton.js +3 -1
  273. package/lib/esm/shell/login/GoogleSignInButton.js.map +1 -1
  274. package/lib/esm/shell/login/InviteAcceptModal.js +5 -2
  275. package/lib/esm/shell/login/InviteAcceptModal.js.map +1 -1
  276. package/lib/esm/shell/login/MicrosoftSigninButton.js +4 -6
  277. package/lib/esm/shell/login/MicrosoftSigninButton.js.map +1 -1
  278. package/lib/esm/shell/login/SigninScreen.js +6 -2
  279. package/lib/esm/shell/login/SigninScreen.js.map +1 -1
  280. package/lib/esm/shell/login/SignupForm.js +36 -34
  281. package/lib/esm/shell/login/SignupForm.js.map +1 -1
  282. package/lib/esm/shell/login/TerminalLogin.js +28 -21
  283. package/lib/esm/shell/login/TerminalLogin.js.map +1 -1
  284. package/lib/esm/shell/login/UserInfo.js +6 -4
  285. package/lib/esm/shell/login/UserInfo.js.map +1 -1
  286. package/lib/esm/shell/login/UserSessionMenu.js +3 -4
  287. package/lib/esm/shell/login/UserSessionMenu.js.map +1 -1
  288. package/lib/esm/widgets/index.js +0 -1
  289. package/lib/esm/widgets/index.js.map +1 -1
  290. package/lib/esm/widgets/json-view/JSONCode.js +1 -1
  291. package/lib/esm/widgets/json-view/JSONCode.js.map +1 -1
  292. package/lib/esm/widgets/json-view/JSONDisplay.js +6 -2
  293. package/lib/esm/widgets/json-view/JSONDisplay.js.map +1 -1
  294. package/lib/esm/widgets/json-view/JSONSwitcher.js +6 -0
  295. package/lib/esm/widgets/json-view/JSONSwitcher.js.map +1 -0
  296. package/lib/esm/widgets/json-view/JSONView.js +1 -1
  297. package/lib/esm/widgets/json-view/JSONView.js.map +1 -1
  298. package/lib/esm/widgets/json-view/index.js +1 -0
  299. package/lib/esm/widgets/json-view/index.js.map +1 -1
  300. package/lib/esm/widgets/markdown/ArtifactContentRenderer.js +6 -5
  301. package/lib/esm/widgets/markdown/ArtifactContentRenderer.js.map +1 -1
  302. package/lib/esm/widgets/markdown/CodeBlockContext.js +11 -0
  303. package/lib/esm/widgets/markdown/CodeBlockContext.js.map +1 -0
  304. package/lib/esm/widgets/markdown/MarkdownRenderer.js +11 -10
  305. package/lib/esm/widgets/markdown/MarkdownRenderer.js.map +1 -1
  306. package/lib/esm/widgets/markdown/codeBlockHandlers.js +11 -12
  307. package/lib/esm/widgets/markdown/codeBlockHandlers.js.map +1 -1
  308. package/lib/esm/widgets/markdown/index.js +10 -9
  309. package/lib/esm/widgets/markdown/index.js.map +1 -1
  310. package/lib/esm/widgets/markdown/remarkDirectiveHandler.js +0 -1
  311. package/lib/esm/widgets/markdown/remarkDirectiveHandler.js.map +1 -1
  312. package/lib/esm/widgets/schema-editor/ManagedSchema.js +6 -5
  313. package/lib/esm/widgets/schema-editor/ManagedSchema.js.map +1 -1
  314. package/lib/esm/widgets/schema-editor/editor/PropertyEditor.js +7 -3
  315. package/lib/esm/widgets/schema-editor/editor/PropertyEditor.js.map +1 -1
  316. package/lib/esm/widgets/schema-editor/editor/SchemaEditor.js +3 -1
  317. package/lib/esm/widgets/schema-editor/editor/SchemaEditor.js.map +1 -1
  318. package/lib/esm/widgets/upload/DropZone.js +9 -11
  319. package/lib/esm/widgets/upload/DropZone.js.map +1 -1
  320. package/lib/esm/widgets/upload/UploadResultCategory.js +3 -1
  321. package/lib/esm/widgets/upload/UploadResultCategory.js.map +1 -1
  322. package/lib/esm/widgets/upload/UploadSummary.js +3 -1
  323. package/lib/esm/widgets/upload/UploadSummary.js.map +1 -1
  324. package/lib/tsconfig.tsbuildinfo +1 -1
  325. package/lib/types/core/components/SelectList.d.ts.map +1 -1
  326. package/lib/types/core/components/SidePanel.d.ts +4 -2
  327. package/lib/types/core/components/SidePanel.d.ts.map +1 -1
  328. package/lib/types/core/components/index.d.ts +0 -5
  329. package/lib/types/core/components/index.d.ts.map +1 -1
  330. package/lib/types/core/components/shadcn/badge.d.ts +2 -2
  331. package/lib/types/core/components/shadcn/breadcrumb.d.ts +1 -1
  332. package/lib/types/core/components/shadcn/breadcrumb.d.ts.map +1 -1
  333. package/lib/types/core/components/shadcn/button.d.ts.map +1 -1
  334. package/lib/types/core/components/shadcn/collaspible.d.ts +6 -0
  335. package/lib/types/core/components/shadcn/collaspible.d.ts.map +1 -0
  336. package/lib/types/core/components/shadcn/dropdown.d.ts +44 -0
  337. package/lib/types/core/components/shadcn/dropdown.d.ts.map +1 -0
  338. package/lib/types/core/components/shadcn/filters/comboBox/DateCombobox.d.ts.map +1 -1
  339. package/lib/types/core/components/shadcn/filters/comboBox/SelectCombobox.d.ts.map +1 -1
  340. package/lib/types/core/components/shadcn/filters/filter/dateFilter.d.ts.map +1 -1
  341. package/lib/types/core/components/shadcn/filters/filterBar.d.ts.map +1 -1
  342. package/lib/types/core/components/shadcn/index.d.ts +4 -0
  343. package/lib/types/core/components/shadcn/index.d.ts.map +1 -1
  344. package/lib/types/core/components/shadcn/input.d.ts +1 -1
  345. package/lib/types/core/components/shadcn/modal/ConfirmModal.d.ts +2 -1
  346. package/lib/types/core/components/shadcn/modal/ConfirmModal.d.ts.map +1 -1
  347. package/lib/types/core/components/shadcn/modal/DeleteModal.d.ts.map +1 -1
  348. package/lib/types/core/components/shadcn/popover.d.ts +11 -3
  349. package/lib/types/core/components/shadcn/popover.d.ts.map +1 -1
  350. package/lib/types/core/components/shadcn/radioGroup.d.ts +26 -0
  351. package/lib/types/core/components/shadcn/radioGroup.d.ts.map +1 -0
  352. package/lib/types/core/components/shadcn/switch.d.ts +12 -0
  353. package/lib/types/core/components/shadcn/switch.d.ts.map +1 -0
  354. package/lib/types/core/components/shadcn/tabs.d.ts +4 -2
  355. package/lib/types/core/components/shadcn/tabs.d.ts.map +1 -1
  356. package/lib/types/core/components/shadcn/theme/ThemeSwitcher.d.ts +3 -2
  357. package/lib/types/core/components/shadcn/theme/ThemeSwitcher.d.ts.map +1 -1
  358. package/lib/types/core/components/toast/NotificationPanel.d.ts.map +1 -1
  359. package/lib/types/env/index.d.ts +8 -1
  360. package/lib/types/env/index.d.ts.map +1 -1
  361. package/lib/types/features/agent/PayloadBuilder.d.ts +31 -3
  362. package/lib/types/features/agent/PayloadBuilder.d.ts.map +1 -1
  363. package/lib/types/features/agent/chat/AgentRightPanel.d.ts +50 -0
  364. package/lib/types/features/agent/chat/AgentRightPanel.d.ts.map +1 -0
  365. package/lib/types/features/agent/chat/ArtifactsTab.d.ts +9 -0
  366. package/lib/types/features/agent/chat/ArtifactsTab.d.ts.map +1 -0
  367. package/lib/types/features/agent/chat/AskUserWidget.d.ts.map +1 -1
  368. package/lib/types/features/agent/chat/DocumentPanel.d.ts.map +1 -1
  369. package/lib/types/features/agent/chat/ImageLightbox.d.ts.map +1 -1
  370. package/lib/types/features/agent/chat/ModernAgentConversation.d.ts +22 -9
  371. package/lib/types/features/agent/chat/ModernAgentConversation.d.ts.map +1 -1
  372. package/lib/types/features/agent/chat/ModernAgentOutput/AllMessagesMixed.d.ts +3 -1
  373. package/lib/types/features/agent/chat/ModernAgentOutput/AllMessagesMixed.d.ts.map +1 -1
  374. package/lib/types/features/agent/chat/ModernAgentOutput/BatchProgressPanel.d.ts.map +1 -1
  375. package/lib/types/features/agent/chat/ModernAgentOutput/Header.d.ts +12 -3
  376. package/lib/types/features/agent/chat/ModernAgentOutput/Header.d.ts.map +1 -1
  377. package/lib/types/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.d.ts +1 -1
  378. package/lib/types/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.d.ts.map +1 -1
  379. package/lib/types/features/agent/chat/ModernAgentOutput/MessageInput.d.ts.map +1 -1
  380. package/lib/types/features/agent/chat/ModernAgentOutput/MessageItem.d.ts.map +1 -1
  381. package/lib/types/features/agent/chat/ModernAgentOutput/PlanPanel.d.ts.map +1 -1
  382. package/lib/types/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.d.ts.map +1 -1
  383. package/lib/types/features/agent/chat/ModernAgentOutput/StreamingMessage.d.ts +3 -1
  384. package/lib/types/features/agent/chat/ModernAgentOutput/StreamingMessage.d.ts.map +1 -1
  385. package/lib/types/features/agent/chat/ModernAgentOutput/ToolCallGroup.d.ts +5 -1
  386. package/lib/types/features/agent/chat/ModernAgentOutput/ToolCallGroup.d.ts.map +1 -1
  387. package/lib/types/features/agent/chat/ModernAgentOutput/WorkstreamTabs.d.ts.map +1 -1
  388. package/lib/types/features/agent/chat/ModernAgentOutput/utils.d.ts +16 -1
  389. package/lib/types/features/agent/chat/ModernAgentOutput/utils.d.ts.map +1 -1
  390. package/lib/types/features/agent/chat/SlidingThinkingIndicator.d.ts.map +1 -1
  391. package/lib/types/features/agent/chat/VegaLiteChart.d.ts.map +1 -1
  392. package/lib/types/features/agent/chat/hooks/useAgentPlans.d.ts.map +1 -1
  393. package/lib/types/features/agent/chat/hooks/useAgentStream.d.ts +3 -3
  394. package/lib/types/features/agent/chat/hooks/useAgentStream.d.ts.map +1 -1
  395. package/lib/types/features/agent/chat/hooks/useArtifacts.d.ts +18 -0
  396. package/lib/types/features/agent/chat/hooks/useArtifacts.d.ts.map +1 -0
  397. package/lib/types/features/agent/chat/hooks/useDocumentPanel.d.ts.map +1 -1
  398. package/lib/types/features/agent/chat/hooks/useFileProcessing.d.ts +4 -4
  399. package/lib/types/features/agent/chat/hooks/useFileProcessing.d.ts.map +1 -1
  400. package/lib/types/features/agent/chat/types/document.d.ts +2 -0
  401. package/lib/types/features/agent/chat/types/document.d.ts.map +1 -1
  402. package/lib/types/features/errors/PanelErrorBoundary.d.ts.map +1 -1
  403. package/lib/types/features/facets/AgentRunnerFacetsNav.d.ts +2 -1
  404. package/lib/types/features/facets/AgentRunnerFacetsNav.d.ts.map +1 -1
  405. package/lib/types/features/facets/index.d.ts +1 -1
  406. package/lib/types/features/facets/index.d.ts.map +1 -1
  407. package/lib/types/features/layout/GenericPageNavHeader.d.ts +2 -2
  408. package/lib/types/features/layout/GenericPageNavHeader.d.ts.map +1 -1
  409. package/lib/types/features/layout/NotFoundView.d.ts.map +1 -1
  410. package/lib/types/features/magic-pdf/AnnotatedImageSlider.d.ts.map +1 -1
  411. package/lib/types/features/magic-pdf/DownloadPopover.d.ts.map +1 -1
  412. package/lib/types/features/magic-pdf/MagicPdfView.d.ts.map +1 -1
  413. package/lib/types/features/pdf-viewer/PdfPageSlider.d.ts.map +1 -1
  414. package/lib/types/features/pdf-viewer/SimplePdfViewer.d.ts.map +1 -1
  415. package/lib/types/features/permissions/UserPermissionsProvider.d.ts.map +1 -1
  416. package/lib/types/features/store/collections/BrowseCollectionView.d.ts.map +1 -1
  417. package/lib/types/features/store/collections/CollectionsTable.d.ts +4 -0
  418. package/lib/types/features/store/collections/CollectionsTable.d.ts.map +1 -1
  419. package/lib/types/features/store/collections/CreateCollection.d.ts.map +1 -1
  420. package/lib/types/features/store/collections/EditCollectionView.d.ts.map +1 -1
  421. package/lib/types/features/store/collections/SelectCollection.d.ts.map +1 -1
  422. package/lib/types/features/store/collections/SharedPropsEditor.d.ts.map +1 -1
  423. package/lib/types/features/store/collections/SyncMemberHeadsToggle.d.ts.map +1 -1
  424. package/lib/types/features/store/objects/DocumentPreviewPanel.d.ts.map +1 -1
  425. package/lib/types/features/store/objects/DocumentSearchResults.d.ts.map +1 -1
  426. package/lib/types/features/store/objects/DocumentTable.d.ts.map +1 -1
  427. package/lib/types/features/store/objects/ExportPropertiesModal.d.ts.map +1 -1
  428. package/lib/types/features/store/objects/components/ContentDispositionButton.d.ts.map +1 -1
  429. package/lib/types/features/store/objects/components/ContentOverview.d.ts.map +1 -1
  430. package/lib/types/features/store/objects/components/DocumentIcon.d.ts +2 -1
  431. package/lib/types/features/store/objects/components/DocumentIcon.d.ts.map +1 -1
  432. package/lib/types/features/store/objects/components/PropertiesEditorModal.d.ts.map +1 -1
  433. package/lib/types/features/store/objects/components/SaveVersionConfirmModal.d.ts.map +1 -1
  434. package/lib/types/features/store/objects/components/SelectDocument.d.ts +3 -1
  435. package/lib/types/features/store/objects/components/SelectDocument.d.ts.map +1 -1
  436. package/lib/types/features/store/objects/components/TextEditorPanel.d.ts +10 -0
  437. package/lib/types/features/store/objects/components/TextEditorPanel.d.ts.map +1 -0
  438. package/lib/types/features/store/objects/components/VectorSearchWidget.d.ts.map +1 -1
  439. package/lib/types/features/store/objects/components/useContentPanelHooks.d.ts.map +1 -1
  440. package/lib/types/features/store/objects/components/useDownloadFile.d.ts.map +1 -1
  441. package/lib/types/features/store/objects/layout/documentLayout.d.ts +3 -2
  442. package/lib/types/features/store/objects/layout/documentLayout.d.ts.map +1 -1
  443. package/lib/types/features/store/objects/layout/renderers.d.ts.map +1 -1
  444. package/lib/types/features/store/objects/search/DocumentSearchContext.d.ts.map +1 -1
  445. package/lib/types/features/store/objects/search/DocumentSearchProvider.d.ts.map +1 -1
  446. package/lib/types/features/store/objects/selection/ObjectsActionContext.d.ts +3 -20
  447. package/lib/types/features/store/objects/selection/ObjectsActionContext.d.ts.map +1 -1
  448. package/lib/types/features/store/objects/selection/ObjectsActionContextClass.d.ts +16 -0
  449. package/lib/types/features/store/objects/selection/ObjectsActionContextClass.d.ts.map +1 -0
  450. package/lib/types/features/store/objects/selection/ObjectsActionHooks.d.ts +7 -0
  451. package/lib/types/features/store/objects/selection/ObjectsActionHooks.d.ts.map +1 -0
  452. package/lib/types/features/store/objects/selection/ObjectsActionSpec.d.ts +4 -1
  453. package/lib/types/features/store/objects/selection/ObjectsActionSpec.d.ts.map +1 -1
  454. package/lib/types/features/store/objects/selection/SelectionActions.d.ts +6 -1
  455. package/lib/types/features/store/objects/selection/SelectionActions.d.ts.map +1 -1
  456. package/lib/types/features/store/objects/selection/actions/AddToCollectionAction.d.ts.map +1 -1
  457. package/lib/types/features/store/objects/selection/actions/ChangeTypeAction.d.ts.map +1 -1
  458. package/lib/types/features/store/objects/selection/actions/ConfirmAction.d.ts +1 -1
  459. package/lib/types/features/store/objects/selection/actions/ConfirmAction.d.ts.map +1 -1
  460. package/lib/types/features/store/objects/selection/actions/DeleteObjectsAction.d.ts.map +1 -1
  461. package/lib/types/features/store/objects/selection/actions/ExportPropertiesAction.d.ts.map +1 -1
  462. package/lib/types/features/store/objects/selection/actions/RemoveFromCollectionAction.d.ts.map +1 -1
  463. package/lib/types/features/store/objects/selection/actions/StartWorkflowComponent.d.ts.map +1 -1
  464. package/lib/types/features/store/objects/upload/DocumentUploadModal.d.ts.map +1 -1
  465. package/lib/types/features/store/objects/upload/useSmartFileUploadProcessing.d.ts.map +1 -1
  466. package/lib/types/features/store/objects/upload/useUploadHandler.d.ts.map +1 -1
  467. package/lib/types/features/store/types/ContentObjectTypesSearch.d.ts.map +1 -1
  468. package/lib/types/features/store/types/ContentObjectTypesTable.d.ts.map +1 -1
  469. package/lib/types/features/store/types/CreateOrUpdateTypeModal.d.ts +2 -1
  470. package/lib/types/features/store/types/CreateOrUpdateTypeModal.d.ts.map +1 -1
  471. package/lib/types/features/store/types/ObjectSchemaEditor.d.ts.map +1 -1
  472. package/lib/types/features/store/types/SelectContentType.d.ts.map +1 -1
  473. package/lib/types/features/store/types/SelectContentTypeModal.d.ts.map +1 -1
  474. package/lib/types/features/store/types/TableLayoutEditor.d.ts.map +1 -1
  475. package/lib/types/features/user/UserInfo.d.ts +2 -2
  476. package/lib/types/features/user/UserInfo.d.ts.map +1 -1
  477. package/lib/types/i18n/index.d.ts +14 -0
  478. package/lib/types/i18n/index.d.ts.map +1 -0
  479. package/lib/types/i18n/instance.d.ts +5 -0
  480. package/lib/types/i18n/instance.d.ts.map +1 -0
  481. package/lib/types/layout/FullHeightLayout.d.ts +3 -0
  482. package/lib/types/layout/FullHeightLayout.d.ts.map +1 -1
  483. package/lib/types/layout/Navbar.d.ts.map +1 -1
  484. package/lib/types/layout/RegionTag.d.ts +4 -0
  485. package/lib/types/layout/RegionTag.d.ts.map +1 -0
  486. package/lib/types/layout/Sidebar.d.ts +2 -1
  487. package/lib/types/layout/Sidebar.d.ts.map +1 -1
  488. package/lib/types/layout/index.d.ts +1 -0
  489. package/lib/types/layout/index.d.ts.map +1 -1
  490. package/lib/types/router/Nav.d.ts +5 -1
  491. package/lib/types/router/Nav.d.ts.map +1 -1
  492. package/lib/types/router/NestedNavigationContext.d.ts.map +1 -1
  493. package/lib/types/router/NestedRouterProvider.d.ts.map +1 -1
  494. package/lib/types/router/Router.d.ts +2 -0
  495. package/lib/types/router/Router.d.ts.map +1 -1
  496. package/lib/types/session/UserSession.d.ts +1 -0
  497. package/lib/types/session/UserSession.d.ts.map +1 -1
  498. package/lib/types/session/UserSessionProvider.d.ts.map +1 -1
  499. package/lib/types/session/auth/useCurrentTenant.d.ts.map +1 -1
  500. package/lib/types/shell/SplashScreen.d.ts.map +1 -1
  501. package/lib/types/shell/apps/StandaloneApp.d.ts.map +1 -1
  502. package/lib/types/shell/login/EnterpriseSigninButton.d.ts.map +1 -1
  503. package/lib/types/shell/login/GitHubSignInButton.d.ts.map +1 -1
  504. package/lib/types/shell/login/GoogleSignInButton.d.ts.map +1 -1
  505. package/lib/types/shell/login/InviteAcceptModal.d.ts.map +1 -1
  506. package/lib/types/shell/login/MicrosoftSigninButton.d.ts +1 -1
  507. package/lib/types/shell/login/MicrosoftSigninButton.d.ts.map +1 -1
  508. package/lib/types/shell/login/SigninScreen.d.ts.map +1 -1
  509. package/lib/types/shell/login/SignupForm.d.ts.map +1 -1
  510. package/lib/types/shell/login/TerminalLogin.d.ts.map +1 -1
  511. package/lib/types/shell/login/UserInfo.d.ts.map +1 -1
  512. package/lib/types/shell/login/UserSessionMenu.d.ts.map +1 -1
  513. package/lib/types/widgets/index.d.ts +0 -1
  514. package/lib/types/widgets/index.d.ts.map +1 -1
  515. package/lib/types/widgets/json-view/JSONDisplay.d.ts.map +1 -1
  516. package/lib/types/widgets/json-view/JSONSwitcher.d.ts +6 -0
  517. package/lib/types/widgets/json-view/JSONSwitcher.d.ts.map +1 -0
  518. package/lib/types/widgets/json-view/index.d.ts +1 -0
  519. package/lib/types/widgets/json-view/index.d.ts.map +1 -1
  520. package/lib/types/widgets/markdown/ArtifactContentRenderer.d.ts.map +1 -1
  521. package/lib/types/widgets/markdown/CodeBlockContext.d.ts +21 -0
  522. package/lib/types/widgets/markdown/CodeBlockContext.d.ts.map +1 -0
  523. package/lib/types/widgets/markdown/MarkdownRenderer.d.ts.map +1 -1
  524. package/lib/types/widgets/markdown/codeBlockHandlers.d.ts +0 -12
  525. package/lib/types/widgets/markdown/codeBlockHandlers.d.ts.map +1 -1
  526. package/lib/types/widgets/markdown/index.d.ts +10 -9
  527. package/lib/types/widgets/markdown/index.d.ts.map +1 -1
  528. package/lib/types/widgets/schema-editor/ManagedSchema.d.ts +1 -1
  529. package/lib/types/widgets/schema-editor/ManagedSchema.d.ts.map +1 -1
  530. package/lib/types/widgets/schema-editor/editor/PropertyEditor.d.ts.map +1 -1
  531. package/lib/types/widgets/schema-editor/editor/SchemaEditor.d.ts.map +1 -1
  532. package/lib/types/widgets/upload/DropZone.d.ts.map +1 -1
  533. package/lib/types/widgets/upload/UploadResultCategory.d.ts.map +1 -1
  534. package/lib/types/widgets/upload/UploadSummary.d.ts.map +1 -1
  535. package/lib/vertesia-ui-core.js +1 -1
  536. package/lib/vertesia-ui-core.js.map +1 -1
  537. package/lib/vertesia-ui-env.js +1 -1
  538. package/lib/vertesia-ui-env.js.map +1 -1
  539. package/lib/vertesia-ui-features.js +1 -1
  540. package/lib/vertesia-ui-features.js.map +1 -1
  541. package/lib/vertesia-ui-i18n.js +2 -0
  542. package/lib/vertesia-ui-i18n.js.map +1 -0
  543. package/lib/vertesia-ui-layout.js +1 -1
  544. package/lib/vertesia-ui-layout.js.map +1 -1
  545. package/lib/vertesia-ui-router.js +1 -1
  546. package/lib/vertesia-ui-router.js.map +1 -1
  547. package/lib/vertesia-ui-session.js +1 -1
  548. package/lib/vertesia-ui-session.js.map +1 -1
  549. package/lib/vertesia-ui-shell.js +1 -1
  550. package/lib/vertesia-ui-shell.js.map +1 -1
  551. package/lib/vertesia-ui-widgets.js +1 -1
  552. package/lib/vertesia-ui-widgets.js.map +1 -1
  553. package/package.json +36 -22
  554. package/src/core/components/SelectList.tsx +3 -1
  555. package/src/core/components/SidePanel.tsx +5 -4
  556. package/src/core/components/index.ts +0 -5
  557. package/src/core/components/shadcn/breadcrumb.tsx +16 -9
  558. package/src/core/components/shadcn/button.tsx +5 -3
  559. package/src/core/components/shadcn/collaspible.tsx +33 -0
  560. package/src/core/components/shadcn/dropdown.tsx +309 -0
  561. package/src/core/components/shadcn/filters/comboBox/DateCombobox.tsx +3 -1
  562. package/src/core/components/shadcn/filters/comboBox/SelectCombobox.tsx +3 -1
  563. package/src/core/components/shadcn/filters/comboBox/StringListCombobox.tsx +1 -1
  564. package/src/core/components/shadcn/filters/filter/StringListFilter.tsx +1 -1
  565. package/src/core/components/shadcn/filters/filter/dateFilter.tsx +5 -3
  566. package/src/core/components/shadcn/filters/filterBar.tsx +8 -5
  567. package/src/core/components/shadcn/index.ts +5 -1
  568. package/src/core/components/shadcn/modal/ConfirmModal.tsx +7 -3
  569. package/src/core/components/shadcn/modal/DeleteModal.tsx +5 -3
  570. package/src/core/components/shadcn/popover.tsx +12 -7
  571. package/src/core/components/shadcn/radioGroup.tsx +100 -0
  572. package/src/core/components/shadcn/switch.tsx +60 -0
  573. package/src/core/components/shadcn/tabs.tsx +29 -27
  574. package/src/core/components/shadcn/theme/ThemeSwitcher.tsx +13 -9
  575. package/src/core/components/toast/NotificationPanel.tsx +38 -44
  576. package/src/env/index.ts +16 -3
  577. package/src/features/agent/PayloadBuilder.tsx +100 -13
  578. package/src/features/agent/chat/AgentRightPanel.tsx +424 -0
  579. package/src/features/agent/chat/ArtifactsTab.tsx +197 -0
  580. package/src/features/agent/chat/AskUserWidget.tsx +14 -8
  581. package/src/features/agent/chat/DocumentPanel.tsx +24 -9
  582. package/src/features/agent/chat/ImageLightbox.tsx +6 -3
  583. package/src/features/agent/chat/ModernAgentConversation.tsx +461 -271
  584. package/src/features/agent/chat/ModernAgentOutput/AllMessagesMixed.tsx +151 -55
  585. package/src/features/agent/chat/ModernAgentOutput/BatchProgressPanel.tsx +6 -4
  586. package/src/features/agent/chat/ModernAgentOutput/Header.tsx +126 -46
  587. package/src/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.tsx +21 -31
  588. package/src/features/agent/chat/ModernAgentOutput/MessageInput.tsx +119 -114
  589. package/src/features/agent/chat/ModernAgentOutput/MessageItem.tsx +26 -9
  590. package/src/features/agent/chat/ModernAgentOutput/PlanPanel.tsx +9 -7
  591. package/src/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.tsx +15 -13
  592. package/src/features/agent/chat/ModernAgentOutput/StreamingMessage.tsx +8 -3
  593. package/src/features/agent/chat/ModernAgentOutput/ToolCallGroup.tsx +149 -49
  594. package/src/features/agent/chat/ModernAgentOutput/WorkstreamTabs.tsx +9 -5
  595. package/src/features/agent/chat/ModernAgentOutput/utils.test.ts +229 -0
  596. package/src/features/agent/chat/ModernAgentOutput/utils.ts +202 -97
  597. package/src/features/agent/chat/SlidingThinkingIndicator.tsx +5 -3
  598. package/src/features/agent/chat/VegaLiteChart.tsx +20 -8
  599. package/src/features/agent/chat/hooks/useAgentPlans.ts +3 -9
  600. package/src/features/agent/chat/hooks/useAgentStream.ts +80 -19
  601. package/src/features/agent/chat/hooks/useArtifacts.ts +151 -0
  602. package/src/features/agent/chat/hooks/useDocumentPanel.ts +65 -5
  603. package/src/features/agent/chat/hooks/useFileProcessing.ts +14 -13
  604. package/src/features/agent/chat/types/document.ts +2 -0
  605. package/src/features/errors/PanelErrorBoundary.tsx +5 -3
  606. package/src/features/facets/AgentRunnerFacetsNav.tsx +54 -35
  607. package/src/features/facets/RunsFacetsNav.tsx +6 -6
  608. package/src/features/facets/index.ts +1 -1
  609. package/src/features/layout/GenericPageNavHeader.tsx +64 -41
  610. package/src/features/layout/NotFoundView.tsx +4 -1
  611. package/src/features/magic-pdf/AnnotatedImageSlider.tsx +12 -8
  612. package/src/features/magic-pdf/DownloadPopover.tsx +11 -10
  613. package/src/features/magic-pdf/MagicPdfView.tsx +10 -7
  614. package/src/features/pdf-viewer/PdfPageSlider.tsx +10 -6
  615. package/src/features/pdf-viewer/SimplePdfViewer.tsx +5 -3
  616. package/src/features/permissions/UserPermissionsProvider.tsx +3 -1
  617. package/src/features/store/collections/BrowseCollectionView.tsx +11 -1
  618. package/src/features/store/collections/CollectionsTable.tsx +20 -12
  619. package/src/features/store/collections/CreateCollection.tsx +14 -11
  620. package/src/features/store/collections/EditCollectionView.tsx +31 -28
  621. package/src/features/store/collections/SelectCollection.tsx +50 -14
  622. package/src/features/store/collections/SharedPropsEditor.tsx +7 -5
  623. package/src/features/store/collections/SyncMemberHeadsToggle.tsx +6 -4
  624. package/src/features/store/objects/DocumentPreviewPanel.tsx +30 -28
  625. package/src/features/store/objects/DocumentSearchResults.tsx +31 -21
  626. package/src/features/store/objects/DocumentTable.tsx +11 -5
  627. package/src/features/store/objects/ExportPropertiesModal.tsx +8 -5
  628. package/src/features/store/objects/components/ContentDispositionButton.tsx +3 -1
  629. package/src/features/store/objects/components/ContentOverview.tsx +96 -50
  630. package/src/features/store/objects/components/DocumentIcon.tsx +11 -3
  631. package/src/features/store/objects/components/PropertiesEditorModal.tsx +14 -12
  632. package/src/features/store/objects/components/SaveVersionConfirmModal.tsx +24 -37
  633. package/src/features/store/objects/components/SelectDocument.tsx +15 -6
  634. package/src/features/store/objects/components/TextEditorPanel.tsx +143 -0
  635. package/src/features/store/objects/components/VectorSearchWidget.tsx +11 -8
  636. package/src/features/store/objects/components/useContentPanelHooks.ts +4 -2
  637. package/src/features/store/objects/components/useDownloadFile.ts +12 -10
  638. package/src/features/store/objects/layout/documentLayout.tsx +16 -6
  639. package/src/features/store/objects/layout/renderers.tsx +27 -1
  640. package/src/features/store/objects/search/DocumentSearchContext.ts +3 -2
  641. package/src/features/store/objects/search/DocumentSearchProvider.tsx +3 -0
  642. package/src/features/store/objects/selection/ObjectsActionContext.tsx +26 -128
  643. package/src/features/store/objects/selection/ObjectsActionContextClass.ts +59 -0
  644. package/src/features/store/objects/selection/ObjectsActionHooks.ts +33 -0
  645. package/src/features/store/objects/selection/ObjectsActionSpec.ts +4 -1
  646. package/src/features/store/objects/selection/SelectionActions.tsx +14 -6
  647. package/src/features/store/objects/selection/actions/AddToCollectionAction.tsx +19 -14
  648. package/src/features/store/objects/selection/actions/ChangeTypeAction.tsx +9 -5
  649. package/src/features/store/objects/selection/actions/ConfirmAction.tsx +4 -3
  650. package/src/features/store/objects/selection/actions/DeleteObjectsAction.tsx +24 -23
  651. package/src/features/store/objects/selection/actions/ExportPropertiesAction.tsx +10 -5
  652. package/src/features/store/objects/selection/actions/RemoveFromCollectionAction.tsx +13 -9
  653. package/src/features/store/objects/selection/actions/StartWorkflowComponent.tsx +14 -8
  654. package/src/features/store/objects/upload/DocumentUploadModal.tsx +56 -55
  655. package/src/features/store/objects/upload/useSmartFileUploadProcessing.ts +4 -2
  656. package/src/features/store/objects/upload/useUploadHandler.ts +9 -7
  657. package/src/features/store/types/ContentObjectTypesSearch.tsx +10 -8
  658. package/src/features/store/types/ContentObjectTypesTable.tsx +6 -4
  659. package/src/features/store/types/CreateOrUpdateTypeModal.tsx +11 -12
  660. package/src/features/store/types/ObjectSchemaEditor.tsx +11 -9
  661. package/src/features/store/types/SelectContentType.tsx +15 -13
  662. package/src/features/store/types/SelectContentTypeModal.tsx +16 -13
  663. package/src/features/store/types/TableLayoutEditor.tsx +16 -12
  664. package/src/features/user/UserInfo.tsx +47 -56
  665. package/src/i18n/index.tsx +45 -0
  666. package/src/i18n/instance.ts +49 -0
  667. package/src/i18n/locales/ar.json +694 -0
  668. package/src/i18n/locales/de.json +662 -0
  669. package/src/i18n/locales/en.json +663 -0
  670. package/src/i18n/locales/es.json +668 -0
  671. package/src/i18n/locales/fr.json +670 -0
  672. package/src/i18n/locales/it.json +668 -0
  673. package/src/i18n/locales/ja.json +662 -0
  674. package/src/i18n/locales/ko.json +662 -0
  675. package/src/i18n/locales/pt.json +668 -0
  676. package/src/i18n/locales/ru.json +678 -0
  677. package/src/i18n/locales/tr.json +662 -0
  678. package/src/i18n/locales/zh-TW.json +662 -0
  679. package/src/i18n/locales/zh.json +662 -0
  680. package/src/layout/FullHeightLayout.tsx +8 -0
  681. package/src/layout/Navbar.tsx +4 -2
  682. package/src/layout/RegionTag.tsx +25 -0
  683. package/src/layout/Sidebar.tsx +4 -3
  684. package/src/layout/index.ts +2 -1
  685. package/src/router/HistoryNavigator.ts +10 -10
  686. package/src/router/Nav.tsx +9 -3
  687. package/src/router/NestedNavigationContext.tsx +4 -0
  688. package/src/router/NestedRouterProvider.tsx +3 -1
  689. package/src/router/Router.tsx +23 -7
  690. package/src/session/UserSession.ts +24 -0
  691. package/src/session/UserSessionProvider.tsx +4 -0
  692. package/src/session/auth/composable.ts +1 -1
  693. package/src/session/auth/firebase.ts +1 -1
  694. package/src/session/auth/useCurrentTenant.ts +3 -1
  695. package/src/shell/SplashScreen.tsx +22 -26
  696. package/src/shell/apps/StandaloneApp.tsx +9 -6
  697. package/src/shell/login/EnterpriseSigninButton.tsx +6 -4
  698. package/src/shell/login/GitHubSignInButton.tsx +3 -7
  699. package/src/shell/login/GoogleSignInButton.tsx +3 -1
  700. package/src/shell/login/InviteAcceptModal.tsx +5 -2
  701. package/src/shell/login/MicrosoftSigninButton.tsx +4 -6
  702. package/src/shell/login/SigninScreen.tsx +18 -13
  703. package/src/shell/login/SignupForm.tsx +46 -46
  704. package/src/shell/login/TerminalLogin.tsx +35 -31
  705. package/src/shell/login/UserInfo.tsx +15 -13
  706. package/src/shell/login/UserSessionMenu.tsx +28 -31
  707. package/src/widgets/index.ts +0 -1
  708. package/src/widgets/json-view/JSONCode.tsx +1 -1
  709. package/src/widgets/json-view/JSONDisplay.tsx +8 -3
  710. package/src/widgets/json-view/JSONSwitcher.tsx +24 -0
  711. package/src/widgets/json-view/JSONView.tsx +1 -1
  712. package/src/widgets/json-view/index.ts +1 -0
  713. package/src/widgets/markdown/ArtifactContentRenderer.tsx +15 -7
  714. package/src/widgets/markdown/CodeBlockContext.tsx +34 -0
  715. package/src/widgets/markdown/MarkdownRenderer.tsx +14 -13
  716. package/src/widgets/markdown/codeBlockHandlers.tsx +17 -36
  717. package/src/widgets/markdown/index.ts +27 -34
  718. package/src/widgets/markdown/remarkDirectiveHandler.ts +1 -1
  719. package/src/widgets/schema-editor/ManagedSchema.ts +6 -5
  720. package/src/widgets/schema-editor/editor/PropertyEditor.tsx +7 -3
  721. package/src/widgets/schema-editor/editor/SchemaEditor.tsx +3 -1
  722. package/src/widgets/upload/DropZone.tsx +10 -13
  723. package/src/widgets/upload/UploadResultCategory.tsx +3 -1
  724. package/src/widgets/upload/UploadSummary.tsx +13 -11
  725. package/tsconfig.dist.json +1 -1
  726. package/lib/esm/core/components/Dropdown.js +0 -16
  727. package/lib/esm/core/components/Dropdown.js.map +0 -1
  728. package/lib/esm/core/components/DropdownList.js +0 -9
  729. package/lib/esm/core/components/DropdownList.js.map +0 -1
  730. package/lib/esm/core/components/RadioGroup.js +0 -34
  731. package/lib/esm/core/components/RadioGroup.js.map +0 -1
  732. package/lib/esm/core/components/SelectStack.js +0 -8
  733. package/lib/esm/core/components/SelectStack.js.map +0 -1
  734. package/lib/esm/core/components/Switch.js +0 -12
  735. package/lib/esm/core/components/Switch.js.map +0 -1
  736. package/lib/esm/widgets/popover/Popover.js +0 -73
  737. package/lib/esm/widgets/popover/Popover.js.map +0 -1
  738. package/lib/esm/widgets/popover/context.js +0 -7
  739. package/lib/esm/widgets/popover/context.js.map +0 -1
  740. package/lib/esm/widgets/popover/index.js +0 -3
  741. package/lib/esm/widgets/popover/index.js.map +0 -1
  742. package/lib/esm/widgets/popover/slots.js +0 -22
  743. package/lib/esm/widgets/popover/slots.js.map +0 -1
  744. package/lib/types/core/components/Dropdown.d.ts +0 -15
  745. package/lib/types/core/components/Dropdown.d.ts.map +0 -1
  746. package/lib/types/core/components/DropdownList.d.ts +0 -13
  747. package/lib/types/core/components/DropdownList.d.ts.map +0 -1
  748. package/lib/types/core/components/RadioGroup.d.ts +0 -26
  749. package/lib/types/core/components/RadioGroup.d.ts.map +0 -1
  750. package/lib/types/core/components/SelectStack.d.ts +0 -13
  751. package/lib/types/core/components/SelectStack.d.ts.map +0 -1
  752. package/lib/types/core/components/Switch.d.ts +0 -11
  753. package/lib/types/core/components/Switch.d.ts.map +0 -1
  754. package/lib/types/widgets/popover/Popover.d.ts +0 -38
  755. package/lib/types/widgets/popover/Popover.d.ts.map +0 -1
  756. package/lib/types/widgets/popover/context.d.ts +0 -8
  757. package/lib/types/widgets/popover/context.d.ts.map +0 -1
  758. package/lib/types/widgets/popover/index.d.ts +0 -3
  759. package/lib/types/widgets/popover/index.d.ts.map +0 -1
  760. package/lib/types/widgets/popover/slots.d.ts +0 -5
  761. package/lib/types/widgets/popover/slots.d.ts.map +0 -1
  762. package/src/core/components/Dropdown.tsx +0 -63
  763. package/src/core/components/DropdownList.tsx +0 -72
  764. package/src/core/components/RadioGroup.tsx +0 -100
  765. package/src/core/components/SelectStack.tsx +0 -63
  766. package/src/core/components/Switch.tsx +0 -30
  767. package/src/widgets/popover/Popover.tsx +0 -171
  768. package/src/widgets/popover/context.ts +0 -15
  769. package/src/widgets/popover/index.ts +0 -2
  770. package/src/widgets/popover/slots.ts +0 -24
@@ -1,7 +1,6 @@
1
1
  import { AuthTokenPayload, Permission } from "@vertesia/common";
2
- import { Avatar, Button, MenuList, ModeToggle, Spinner } from "@vertesia/ui/core";
2
+ import { Avatar, Button, MenuList, ModeToggle, Popover, PopoverContent, PopoverTrigger, Spinner } from "@vertesia/ui/core";
3
3
  import { useUserSession } from "@vertesia/ui/session";
4
- import { Popover } from "@vertesia/ui/widgets";
5
4
  import clsx from "clsx";
6
5
  import { useState } from "react";
7
6
  import SignInModal from "./SignInModal";
@@ -48,8 +47,8 @@ function UserSessionPopup({ className, asMenuTrigger = false }: UserSessionPopup
48
47
  const isProjectManager = perms.hasPermission(Permission.project_admin);
49
48
 
50
49
  return (
51
- <Popover strategy='fixed' placement='bottom-start' zIndex={100}>
52
- <Popover.Trigger click>
50
+ <Popover click>
51
+ <PopoverTrigger>
53
52
  <div className={clsx(className, "flex items-center justify-start", asMenuTrigger && "cursor-pointer")}>
54
53
  <Avatar
55
54
  size='sm'
@@ -58,35 +57,33 @@ function UserSessionPopup({ className, asMenuTrigger = false }: UserSessionPopup
58
57
  /*src={picture} */
59
58
  name={user?.name} />
60
59
  </div>
61
- </Popover.Trigger>
62
- <Popover.Content className="w-[280px] mx-2 my-1">
63
- <div className="bg-white dark:bg-slate-900 shadow-lg rounded-md ring-1 ring-gray-200 dark:ring-slate-700">
64
- <div className='divide-y divide-gray-200 dark:divide-slate-700'>
65
- <div className='py-2 pl-2'>
66
- <p className="px-4 dark:text-white mb-1">{user?.name ?? 'Unknown'}</p>
67
- <p className="px-4 text-xs text-gray-500">{user?.email ?? ''}</p>
68
- </div>
69
- <div className="w-full p-1" >
70
- <InfoList />
71
- </div>
72
- <div className='py-2 pl-2'>
73
- <ModeToggle />
74
- </div>
75
- <div className='py-2'>
76
- <MenuList>
77
- {isProjectManager && (
78
- <MenuList.Item className='px-2' onClick={() => navigate('/settings', { replace: true })}>
79
- Settings
80
- </MenuList.Item>
81
- )}
82
- <MenuList.Item className='px-2' onClick={() => session.logout()}>
83
- Sign out
60
+ </PopoverTrigger>
61
+ <PopoverContent align="start" className="w-[280px] mx-2 my-1 p-0">
62
+ <div className='divide-y divide-gray-200 dark:divide-slate-700'>
63
+ <div className='py-2 pl-2'>
64
+ <p className="px-4 dark:text-white mb-1">{user?.name ?? 'Unknown'}</p>
65
+ <p className="px-4 text-xs text-gray-500">{user?.email ?? ''}</p>
66
+ </div>
67
+ <div className="w-full p-1" >
68
+ <InfoList />
69
+ </div>
70
+ <div className='py-2 pl-2'>
71
+ <ModeToggle />
72
+ </div>
73
+ <div className='py-2'>
74
+ <MenuList>
75
+ {isProjectManager && (
76
+ <MenuList.Item className='px-2' onClick={() => navigate('/settings', { replace: true })}>
77
+ Settings
84
78
  </MenuList.Item>
85
- </MenuList>
86
- </div>
87
- </div >
79
+ )}
80
+ <MenuList.Item className='px-2' onClick={() => session.logout()}>
81
+ Sign out
82
+ </MenuList.Item>
83
+ </MenuList>
84
+ </div>
88
85
  </div >
89
- </Popover.Content>
86
+ </PopoverContent>
90
87
  </Popover>
91
88
  )
92
89
  }
@@ -2,7 +2,6 @@ export * from "./monacoEditor/index.js";
2
2
  export * from "./form/index.js";
3
3
  export * from "./json-view/index.js";
4
4
  export * from "./markdown/index.js";
5
- export * from "./popover/index.js";
6
5
  export * from "./Progress.js";
7
6
  export * from "./properties/index.js";
8
7
  export * from "./schema-editor/index.js";
@@ -17,7 +17,7 @@ export function JSONCode({ data, className }: { data: any; className?: string })
17
17
  }, [data]);
18
18
 
19
19
  return (
20
- <div className={`h-full ${className || ''}`}>
20
+ <div className={`h-full pb-2 mb-2 ${className || ''}`}>
21
21
  <MonacoEditor
22
22
  value={jsonString}
23
23
  language="json"
@@ -1,4 +1,5 @@
1
1
  import type { JSONObject } from "@vertesia/json";
2
+ import { useUITranslation } from "@vertesia/ui/i18n";
2
3
 
3
4
  import { JSONCode } from './JSONCode.js';
4
5
  import { JSONView } from './JSONView.js';
@@ -9,16 +10,20 @@ interface JSONDisplayProps {
9
10
  viewCode?: boolean;
10
11
  }
11
12
  export function JSONDisplay({ value, viewCode = false }: JSONDisplayProps) {
13
+ const { t } = useUITranslation();
12
14
 
13
15
  if (!value) {
14
16
  return (
15
- <pre className="whitespace-pre-wrap">No Data to display</pre>
17
+ <pre className="whitespace-pre-wrap">{t('misc.noData')}</pre>
16
18
  );
17
19
  }
18
20
 
19
21
  return (
20
- <div className='relative w-full h-full'>
21
- {viewCode ? <JSONCode data={value} /> : <JSONView value={value} />}
22
+ <div className='relative w-full h-full flex flex-col'>
23
+ {viewCode
24
+ ? <JSONCode data={value} />
25
+ : <div className="flex-1 min-h-0 overflow-auto"><JSONView value={value} /></div>
26
+ }
22
27
  </div>
23
28
  )
24
29
  }
@@ -0,0 +1,24 @@
1
+ import { Button } from "@vertesia/ui/core";
2
+
3
+ export function JSONSwitcher({ title, viewCode, setViewCode }: { title: string, viewCode: boolean, setViewCode: (value: boolean) => void }) {
4
+ return (
5
+ <div className="flex items-center gap-1 bg-muted mb-2 p-1 rounded">
6
+ <Button
7
+ variant={viewCode ? "ghost" : "primary"}
8
+ size="sm"
9
+ alt="Preview properties"
10
+ onClick={() => setViewCode(false)}
11
+ >
12
+ {title}
13
+ </Button>
14
+ <Button
15
+ variant={viewCode ? "primary" : "ghost"}
16
+ size="sm"
17
+ alt="View in JSON format"
18
+ onClick={() => setViewCode(true)}
19
+ >
20
+ JSON
21
+ </Button>
22
+ </div>
23
+ );
24
+ }
@@ -9,7 +9,7 @@ interface JSONViewProps {
9
9
  value: JSONObject;
10
10
  }
11
11
  export function JSONView({ value }: JSONViewProps) {
12
- return <div className="flex flex-col gap-4">
12
+ return <div className="flex flex-col gap-4 px-2 h-full overflow-auto">
13
13
  {
14
14
  Object.entries(value).map(([key, value]) =>
15
15
  <PropertyElement key={key} name={key} value={value as JSONValue} />
@@ -2,3 +2,4 @@ export type * from "./types.js";
2
2
  export * from "./JSONCode.js";
3
3
  export * from "./JSONDisplay.js";
4
4
  export * from "./JSONView.js";
5
+ export * from "./JSONSwitcher.js";
@@ -4,13 +4,13 @@
4
4
  * Supports rendering charts, tables, markdown, fusion fragments, and more.
5
5
  */
6
6
 
7
- import { useMemo, type ReactElement } from 'react';
7
+ import { FusionFragmentHandler, FusionFragmentProvider } from '@vertesia/fusion-ux';
8
8
  import DOMPurify from 'dompurify';
9
- import { CodeBlockPlaceholder, CodeBlockErrorBoundary } from './CodeBlockPlaceholder';
9
+ import { useMemo, type ReactElement } from 'react';
10
10
  import { type VegaLiteChartSpec } from '../../features/agent/chat/AgentChart';
11
11
  import { VegaLiteChart } from '../../features/agent/chat/VegaLiteChart';
12
- import { FusionFragmentHandler, FusionFragmentProvider } from '@vertesia/fusion-ux';
13
- import { MarkdownRenderer } from './MarkdownRenderer';
12
+ import { useCodeBlockContext } from './CodeBlockContext';
13
+ import { CodeBlockErrorBoundary, CodeBlockPlaceholder } from './CodeBlockPlaceholder';
14
14
 
15
15
  // Render type mapping
16
16
  export type ExpandRenderType =
@@ -285,6 +285,8 @@ export function ArtifactContentRenderer({
285
285
  runId,
286
286
  contentType,
287
287
  }: ArtifactContentRendererProps): ReactElement {
288
+ const { MarkdownRenderer } = useCodeBlockContext();
289
+
288
290
  // Determine actual render type
289
291
  const actualType = useMemo(() => {
290
292
  if (renderType !== 'auto') {
@@ -374,9 +376,15 @@ export function ArtifactContentRenderer({
374
376
  const markdownContent = typeof content === 'string' ? content : String(content);
375
377
  return (
376
378
  <CodeBlockErrorBoundary type="markdown" fallbackCode={markdownContent}>
377
- <MarkdownRenderer artifactRunId={runId}>
378
- {markdownContent}
379
- </MarkdownRenderer>
379
+ {MarkdownRenderer ? (
380
+ <MarkdownRenderer artifactRunId={runId}>
381
+ {markdownContent}
382
+ </MarkdownRenderer>
383
+ ) : (
384
+ <pre className="overflow-x-auto p-3 bg-muted/10 rounded text-sm">
385
+ <code>{markdownContent}</code>
386
+ </pre>
387
+ )}
380
388
  </CodeBlockErrorBoundary>
381
389
  );
382
390
  }
@@ -0,0 +1,34 @@
1
+ import React, { useMemo } from 'react';
2
+
3
+ /**
4
+ * Context for passing artifact run ID, callbacks, and the MarkdownRenderer component
5
+ * to code block handlers. MarkdownRenderer is injected here (rather than imported
6
+ * directly in ArtifactContentRenderer) to break the circular dependency:
7
+ * MarkdownRenderer → codeBlockHandlers → ArtifactContentRenderer → MarkdownRenderer
8
+ */
9
+ export interface CodeBlockHandlerContext {
10
+ artifactRunId?: string;
11
+ onProposalSelect?: (optionId: string) => void;
12
+ onProposalSubmit?: (response: string) => void;
13
+ MarkdownRenderer?: React.ComponentType<{ children: string; artifactRunId?: string }>;
14
+ }
15
+
16
+ const CodeBlockContext = React.createContext<CodeBlockHandlerContext>({});
17
+
18
+ export function CodeBlockHandlerProvider({
19
+ children,
20
+ artifactRunId,
21
+ onProposalSelect,
22
+ onProposalSubmit,
23
+ MarkdownRenderer,
24
+ }: CodeBlockHandlerContext & { children: React.ReactNode }) {
25
+ const value = useMemo(
26
+ () => ({ artifactRunId, onProposalSelect, onProposalSubmit, MarkdownRenderer }),
27
+ [artifactRunId, onProposalSelect, onProposalSubmit, MarkdownRenderer]
28
+ );
29
+ return <CodeBlockContext.Provider value={value}>{children}</CodeBlockContext.Provider>;
30
+ }
31
+
32
+ export function useCodeBlockContext() {
33
+ return React.useContext(CodeBlockContext);
34
+ }
@@ -1,27 +1,27 @@
1
- import { useCodeBlockRendererRegistry } from './CodeBlockRendering';
2
1
  import type { Element } from 'hast';
3
2
  import React from 'react';
4
3
  import Markdown, { defaultUrlTransform } from 'react-markdown';
5
- import remarkGfm from 'remark-gfm';
6
- import remarkMath from 'remark-math';
4
+ import rehypeKatex from 'rehype-katex';
5
+ import { defListHastHandlers, remarkDefinitionList } from 'remark-definition-list';
7
6
  import remarkDirective from 'remark-directive';
7
+ import remarkGfm from 'remark-gfm';
8
8
  import remarkAlert from 'remark-github-blockquote-alert';
9
- import { remarkDefinitionList, defListHastHandlers } from 'remark-definition-list';
9
+ import remarkMath from 'remark-math';
10
10
  import remarkSupersub from 'remark-supersub';
11
- import rehypeKatex from 'rehype-katex';
12
11
  import { SKIP, visit } from 'unist-util-visit';
13
- import { MarkdownLink } from './MarkdownLink';
14
- import { MarkdownImage } from './MarkdownImage';
15
- import { MarkdownFigure } from './MarkdownFigure';
16
- import { remarkDirectiveHandler } from './remarkDirectiveHandler';
17
- import { normalizeCustomSchemeLinks } from './normalizeCustomSchemeLinks';
18
- import { normalizeDirectives } from './normalizeDirectives';
12
+ import { CodeBlockHandlerProvider } from './CodeBlockContext';
19
13
  import {
20
- CodeBlockHandlerProvider,
21
14
  createDefaultCodeBlockHandlers,
22
- isExpandLanguage,
23
15
  ExpandCodeBlockHandler,
16
+ isExpandLanguage,
24
17
  } from './codeBlockHandlers';
18
+ import { useCodeBlockRendererRegistry } from './CodeBlockRendering';
19
+ import { MarkdownFigure } from './MarkdownFigure';
20
+ import { MarkdownImage } from './MarkdownImage';
21
+ import { MarkdownLink } from './MarkdownLink';
22
+ import { normalizeCustomSchemeLinks } from './normalizeCustomSchemeLinks';
23
+ import { normalizeDirectives } from './normalizeDirectives';
24
+ import { remarkDirectiveHandler } from './remarkDirectiveHandler';
25
25
 
26
26
  // Custom URL schemes that we handle in our components
27
27
  const ALLOWED_CUSTOM_SCHEMES = [
@@ -280,6 +280,7 @@ export function MarkdownRenderer({
280
280
  artifactRunId={artifactRunId}
281
281
  onProposalSelect={onProposalSelect}
282
282
  onProposalSubmit={onProposalSubmit}
283
+ MarkdownRenderer={MarkdownRenderer}
283
284
  >
284
285
  <Markdown
285
286
  remarkPlugins={remarkPluginsArray}
@@ -1,40 +1,13 @@
1
1
  import React, { useMemo } from 'react';
2
- import type { CodeBlockRendererProps } from './CodeBlockRendering';
3
- import { CodeBlockPlaceholder, CodeBlockErrorBoundary } from './CodeBlockPlaceholder';
4
2
  import type { VegaLiteChartSpec } from '../../features/agent/chat/AgentChart';
3
+ import { AskUserWidget, type AskUserWidgetProps } from '../../features/agent/chat/AskUserWidget';
5
4
  import { VegaLiteChart } from '../../features/agent/chat/VegaLiteChart';
5
+ import { ArtifactContentRenderer, type ExpandRenderType, makeSvgResponsive, sanitizeSvg } from './ArtifactContentRenderer';
6
+ import { useCodeBlockContext } from './CodeBlockContext';
7
+ import { CodeBlockErrorBoundary, CodeBlockPlaceholder } from './CodeBlockPlaceholder';
8
+ import type { CodeBlockRendererProps } from './CodeBlockRendering';
6
9
  import { MermaidDiagram } from './MermaidDiagram';
7
- import { AskUserWidget, type AskUserWidgetProps } from '../../features/agent/chat/AskUserWidget';
8
10
  import { useArtifactContent } from './useArtifactContent';
9
- import { ArtifactContentRenderer, type ExpandRenderType, sanitizeSvg, makeSvgResponsive } from './ArtifactContentRenderer';
10
-
11
- /**
12
- * Context for passing artifact run ID and callbacks to code block handlers
13
- */
14
- export interface CodeBlockHandlerContext {
15
- artifactRunId?: string;
16
- onProposalSelect?: (optionId: string) => void;
17
- onProposalSubmit?: (response: string) => void;
18
- }
19
-
20
- const CodeBlockContext = React.createContext<CodeBlockHandlerContext>({});
21
-
22
- export function CodeBlockHandlerProvider({
23
- children,
24
- artifactRunId,
25
- onProposalSelect,
26
- onProposalSubmit,
27
- }: CodeBlockHandlerContext & { children: React.ReactNode }) {
28
- const value = useMemo(
29
- () => ({ artifactRunId, onProposalSelect, onProposalSubmit }),
30
- [artifactRunId, onProposalSelect, onProposalSubmit]
31
- );
32
- return <CodeBlockContext.Provider value={value}>{children}</CodeBlockContext.Provider>;
33
- }
34
-
35
- export function useCodeBlockContext() {
36
- return React.useContext(CodeBlockContext);
37
- }
38
11
 
39
12
  /**
40
13
  * Check if JSON parsing failed due to incomplete content (streaming)
@@ -145,6 +118,10 @@ function detectChartLibrary(
145
118
  export function VegaLiteCodeBlockHandler({ code }: CodeBlockRendererProps) {
146
119
  const { artifactRunId } = useCodeBlockContext();
147
120
 
121
+ if (!artifactRunId) {
122
+ console.warn('[VegaLiteCodeBlockHandler] artifactRunId is missing from CodeBlockContext');
123
+ }
124
+
148
125
  // Check if JSON is incomplete (streaming in progress)
149
126
  const incomplete = useMemo(() => isIncompleteJson(code), [code]);
150
127
 
@@ -191,6 +168,10 @@ export function VegaLiteCodeBlockHandler({ code }: CodeBlockRendererProps) {
191
168
  export function ChartCodeBlockHandler({ code }: CodeBlockRendererProps) {
192
169
  const { artifactRunId } = useCodeBlockContext();
193
170
 
171
+ if (!artifactRunId) {
172
+ console.warn('[ChartCodeBlockHandler] artifactRunId is missing from CodeBlockContext');
173
+ }
174
+
194
175
  // Check if JSON is incomplete (streaming in progress)
195
176
  const incomplete = useMemo(() => isIncompleteJson(code), [code]);
196
177
 
@@ -285,10 +266,10 @@ export function ProposalCodeBlockHandler({ code }: CodeBlockRendererProps) {
285
266
  description: spec.description,
286
267
  options: Array.isArray(spec.options)
287
268
  ? spec.options.map((opt: any) => ({
288
- id: opt.id || opt.value || '',
289
- label: opt.label || '',
290
- description: opt.description,
291
- }))
269
+ id: opt.id || opt.value || '',
270
+ label: opt.label || '',
271
+ description: opt.description,
272
+ }))
292
273
  : undefined,
293
274
  allowFreeResponse: spec.allowFreeResponse ?? spec.multiple,
294
275
  variant: spec.variant,
@@ -1,46 +1,39 @@
1
+ export {
2
+ ArtifactContentRenderer,
3
+ type ArtifactContentRendererProps,
4
+ type ExpandRenderType
5
+ } from './ArtifactContentRenderer';
6
+ export {
7
+ CodeBlockHandlerProvider,
8
+ useCodeBlockContext,
9
+ type CodeBlockHandlerContext
10
+ } from './CodeBlockContext';
11
+ export {
12
+ ChartCodeBlockHandler, ExpandCodeBlockHandler, MermaidCodeBlockHandler,
13
+ ProposalCodeBlockHandler, createDefaultCodeBlockHandlers,
14
+ isExpandLanguage
15
+ } from './codeBlockHandlers';
16
+ export {
17
+ CodeBlockErrorBoundary, CodeBlockPlaceholder, type CodeBlockPlaceholderProps,
18
+ type CodeBlockType
19
+ } from './CodeBlockPlaceholder';
1
20
  export {
2
21
  CodeBlockRendererProvider,
3
22
  useCodeBlockComponent,
4
23
  useCodeBlockRendererRegistry,
5
- type CodeBlockRendererProps,
24
+ type CodeBlockRendererProps
6
25
  } from './CodeBlockRendering';
7
- export { MarkdownRenderer, type MarkdownRendererProps } from './MarkdownRenderer';
8
- export { MarkdownLink, type MarkdownLinkProps } from './MarkdownLink';
9
- export { MarkdownImage, type MarkdownImageProps } from './MarkdownImage';
10
26
  export { MarkdownFigure, type MarkdownFigureProps } from './MarkdownFigure';
11
- export {
12
- useResolvedUrl,
13
- parseUrlScheme,
14
- mapSchemeToRoute,
15
- type UrlScheme,
16
- type ResolvedUrlState,
17
- type UseResolvedUrlOptions,
18
- } from './useResolvedUrl';
19
- export {
20
- CodeBlockPlaceholder,
21
- CodeBlockErrorBoundary,
22
- type CodeBlockPlaceholderProps,
23
- type CodeBlockType,
24
- } from './CodeBlockPlaceholder';
25
- export {
26
- ChartCodeBlockHandler,
27
- MermaidCodeBlockHandler,
28
- ProposalCodeBlockHandler,
29
- ExpandCodeBlockHandler,
30
- CodeBlockHandlerProvider,
31
- useCodeBlockContext,
32
- createDefaultCodeBlockHandlers,
33
- isExpandLanguage,
34
- type CodeBlockHandlerContext,
35
- } from './codeBlockHandlers';
27
+ export { MarkdownImage, type MarkdownImageProps } from './MarkdownImage';
28
+ export { MarkdownLink, type MarkdownLinkProps } from './MarkdownLink';
29
+ export { MarkdownRenderer, type MarkdownRendererProps } from './MarkdownRenderer';
36
30
  export { MermaidDiagram } from './MermaidDiagram';
37
31
  export {
38
32
  useArtifactContent,
39
33
  type ArtifactContentState,
40
- type UseArtifactContentOptions,
34
+ type UseArtifactContentOptions
41
35
  } from './useArtifactContent';
42
36
  export {
43
- ArtifactContentRenderer,
44
- type ArtifactContentRendererProps,
45
- type ExpandRenderType,
46
- } from './ArtifactContentRenderer';
37
+ mapSchemeToRoute, parseUrlScheme, useResolvedUrl, type ResolvedUrlState, type UrlScheme, type UseResolvedUrlOptions
38
+ } from './useResolvedUrl';
39
+
@@ -39,7 +39,7 @@ interface DirectiveNode {
39
39
  }
40
40
 
41
41
  export function remarkDirectiveHandler() {
42
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
42
+
43
43
  return (tree: any) => {
44
44
  visit(tree, (node): VisitorResult => {
45
45
  if (
@@ -175,18 +175,19 @@ export class SchemaNode {
175
175
 
176
176
  loadChildren() {
177
177
  this.children = [];
178
- if (this.schema.items && (this.schema.items as JSONSchema).properties) {
179
- this._loadChildren((this.schema.items as JSONSchema).properties!);
178
+ const itemProperties = (this.schema.items as JSONSchema)?.properties;
179
+ if (this.schema.items && itemProperties) {
180
+ this._loadChildren(itemProperties, this.children);
180
181
  } else if (this.schema.properties) {
181
- this._loadChildren(this.schema.properties);
182
+ this._loadChildren(this.schema.properties, this.children);
182
183
  }
183
184
  }
184
185
 
185
- _loadChildren(properties: Record<string, JSONSchema>) {
186
+ _loadChildren(properties: Record<string, JSONSchema>, children: SchemaNode[]) {
186
187
  for (const name of Object.keys(properties)) {
187
188
  const childSchema = properties[name];
188
189
  const child = new SchemaNode(name, childSchema, this.loader, this);
189
- this.children!.push(child);
190
+ children.push(child);
190
191
  if (child.isParent) {
191
192
  child.loadChildren();
192
193
  }
@@ -3,6 +3,7 @@ import React, { ChangeEvent, useEffect, useRef, useState } from 'react';
3
3
  import { AlignLeft } from 'lucide-react';
4
4
  import { Button, Modal, ModalBody, ModalFooter, ModalTitle, Styles, SelectBox } from '@vertesia/ui/core';
5
5
 
6
+ import { useUITranslation } from '../../../i18n/index.js';
6
7
  import { TypeNames } from '../type-signature.js';
7
8
  import { DataEditorProps } from './Editable.js';
8
9
  import { EditableSchemaProperty } from './EditableSchemaProperty.js';
@@ -20,6 +21,7 @@ function makeTypeOptions() {
20
21
  const TYPE_OPTIONS = makeTypeOptions();
21
22
 
22
23
  export function PropertyEditor({ value, onChange, onCancel, onSave }: DataEditorProps<EditableSchemaProperty>) {
24
+ const { t } = useUITranslation();
23
25
  const [isModalOpen, setModalOpen] = useState(false);
24
26
 
25
27
  if (!value) return null;
@@ -49,7 +51,7 @@ export function PropertyEditor({ value, onChange, onCancel, onSave }: DataEditor
49
51
  <PropertyTypeEditor value={value.type} onChange={onTypeChange} onCancel={onCancel} onSave={onSave} />
50
52
  </div>
51
53
  <div>
52
- <Button variant={"ghost"} size={"xs"} onClick={() => setModalOpen(true)} title="Edit description">
54
+ <Button variant={"ghost"} size={"xs"} onClick={() => setModalOpen(true)} title={t('widgets.schema.editDescription')}>
53
55
  <AlignLeft className="size-4" />
54
56
  </Button>
55
57
  <EditDescriptionModal value={value.description} isOpen={isModalOpen} onClose={onDescriptionChange} />
@@ -119,9 +121,10 @@ interface EditDescriptionModalProps {
119
121
  onClose: (text?: string) => void;
120
122
  }
121
123
  function EditDescriptionModal({ value, isOpen, onClose }: EditDescriptionModalProps) {
124
+ const { t } = useUITranslation();
122
125
  return (
123
126
  <Modal isOpen={isOpen} onClose={onClose}>
124
- <ModalTitle>Edit description</ModalTitle>
127
+ <ModalTitle>{t('widgets.schema.editDescription')}</ModalTitle>
125
128
  <EditDescriptionModalForm value={value} onSave={onClose} />
126
129
  </Modal>
127
130
  )
@@ -132,6 +135,7 @@ interface EditDescriptionModalFormProps {
132
135
  onSave: (text: string) => void;
133
136
  }
134
137
  function EditDescriptionModalForm({ value, onSave }: EditDescriptionModalFormProps) {
138
+ const { t } = useUITranslation();
135
139
  const ref = useRef<HTMLTextAreaElement>(null);
136
140
  const [currentValue, setCurrentValue] = useState(value || '');
137
141
  useEffect(() => {
@@ -143,7 +147,7 @@ function EditDescriptionModalForm({ value, onSave }: EditDescriptionModalFormPro
143
147
  <textarea ref={ref} className="dark:bg-gray-800 w-full h-full dark:text-white" value={currentValue} onChange={(e) => setCurrentValue(e.target.value)} />
144
148
  </ModalBody>
145
149
  <ModalFooter>
146
- <Button onClick={() => onSave(currentValue)}>Save Changes</Button>
150
+ <Button onClick={() => onSave(currentValue)}>{t('store.saveChanges')}</Button>
147
151
  </ModalFooter>
148
152
  </>
149
153
  )
@@ -3,6 +3,7 @@ import { useState } from 'react';
3
3
  import { ChevronDown, ChevronRight, Plus } from 'lucide-react';
4
4
  import { Button, useToast } from '@vertesia/ui/core';
5
5
 
6
+ import { useUITranslation } from '../../../i18n/index.js';
6
7
  import { ManagedSchema, SchemaNode } from '../ManagedSchema.js';
7
8
  import { TypeNames } from '../type-signature.js';
8
9
  import { Editable } from './Editable.js';
@@ -100,6 +101,7 @@ interface PropertyTitleBarProps {
100
101
  readonly: boolean;
101
102
  }
102
103
  function PropertyTitleBar({ property, readonly }: PropertyTitleBarProps) {
104
+ const { t } = useUITranslation();
103
105
  const toast = useToast();
104
106
 
105
107
  const onChange = (value: EditableSchemaProperty) => {
@@ -116,7 +118,7 @@ function PropertyTitleBar({ property, readonly }: PropertyTitleBarProps) {
116
118
  } catch (err: any) {
117
119
  toast({
118
120
  status: 'error',
119
- title: 'Invalid property declaration',
121
+ title: t('widgets.schema.invalidPropertyDeclaration'),
120
122
  description: err.message,
121
123
  duration: 9000
122
124
  })
@@ -1,6 +1,7 @@
1
1
  import { useState, useRef } from "react";
2
2
  import { UploadIcon } from "lucide-react";
3
3
  import { Button } from "@vertesia/ui/core";
4
+ import { useUITranslation } from "@vertesia/ui/i18n";
4
5
 
5
6
  /**
6
7
  * Props for the DropZone component
@@ -46,10 +47,12 @@ export interface DropZoneProps {
46
47
  export function DropZone({
47
48
  onDrop,
48
49
  message,
49
- buttonLabel = "Upload Files",
50
+ buttonLabel,
50
51
  allowFolders = true,
51
52
  className = ""
52
53
  }: DropZoneProps) {
54
+ const { t } = useUITranslation();
55
+ const resolvedButtonLabel = buttonLabel ?? t('upload.uploadFiles');
53
56
  const [isDragging, setIsDragging] = useState(false);
54
57
  const dropZoneRef = useRef<HTMLDivElement>(null);
55
58
 
@@ -147,12 +150,9 @@ export function DropZone({
147
150
 
148
151
  let message = "";
149
152
  if (folderCount > 0) {
150
- message =
151
- folderCount === 1
152
- ? `Preparing to upload 1 folder with ${fileCount} files...`
153
- : `Preparing to upload ${folderCount} folders with ${fileCount} files...`;
153
+ message = t('upload.preparingFolder', { count: folderCount, folderCount, fileCount });
154
154
  } else {
155
- message = `Preparing to upload ${fileCount} file${fileCount === 1 ? "" : "s"}...`;
155
+ message = t('upload.preparingFiles', { count: fileCount });
156
156
  }
157
157
 
158
158
  onDrop(files, { count: files.length, message });
@@ -191,10 +191,7 @@ export function DropZone({
191
191
  const fileCount = fileArray.length;
192
192
 
193
193
  // Create custom message with folder info
194
- const formattedMessage =
195
- folderCount === 1
196
- ? `Preparing to upload 1 folder with ${fileCount} files...`
197
- : `Preparing to upload ${folderCount} folders with ${fileCount} files...`;
194
+ const formattedMessage = t('upload.preparingFolder', { count: folderCount, folderCount, fileCount });
198
195
 
199
196
  const customMessage = {
200
197
  count: fileArray.length,
@@ -206,7 +203,7 @@ export function DropZone({
206
203
  // Regular file upload
207
204
  const feedback = {
208
205
  count: fileArray.length,
209
- message: `Preparing to upload ${fileArray.length} file${fileArray.length === 1 ? "" : "s"}...`,
206
+ message: t('upload.preparingFiles', { count: fileArray.length }),
210
207
  };
211
208
  onDrop(fileArray, feedback);
212
209
  }
@@ -250,8 +247,8 @@ export function DropZone({
250
247
  <p className="text-muted">{message}</p>
251
248
 
252
249
  <div className="flex gap-2 justify-center mt-2">
253
- <Button onClick={selectFile}>{buttonLabel}</Button>
254
- {allowFolders && (<Button onClick={selectFolder}>Select Folder</Button>)}
250
+ <Button onClick={selectFile}>{resolvedButtonLabel}</Button>
251
+ {allowFolders && (<Button onClick={selectFolder}>{t('upload.selectFolder')}</Button>)}
255
252
  </div>
256
253
 
257
254
  </div>