@vertesia/ui 0.81.1 → 1.0.0-dev.20260203.130115Z

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 (1529) hide show
  1. package/llms.txt +494 -0
  2. package/package.json +27 -16
  3. package/src/core/components/InputList.tsx +1 -1
  4. package/src/core/components/Overlay.tsx +1 -1
  5. package/src/core/components/SidePanel.tsx +25 -13
  6. package/src/core/components/index.ts +0 -8
  7. package/src/core/components/{Panel.tsx → shadcn/Panel.tsx} +1 -1
  8. package/src/core/components/{Badge.tsx → shadcn/badge.tsx} +1 -1
  9. package/src/core/components/shadcn/command.tsx +1 -1
  10. package/src/core/components/shadcn/index.ts +5 -3
  11. package/src/core/components/shadcn/label.tsx +7 -5
  12. package/src/core/components/{ConfirmModal.tsx → shadcn/modal/ConfirmModal.tsx} +8 -8
  13. package/src/core/components/{DeleteModal.tsx → shadcn/modal/DeleteModal.tsx} +1 -1
  14. package/src/core/components/shadcn/{dialog.tsx → modal/dialog.tsx} +21 -14
  15. package/src/core/components/shadcn/modal/index.ts +3 -0
  16. package/src/core/components/shadcn/popover.tsx +1 -1
  17. package/src/core/components/shadcn/selectBox.tsx +12 -10
  18. package/src/core/components/shadcn/separator.tsx +4 -2
  19. package/src/core/components/shadcn/tabs.tsx +31 -16
  20. package/src/core/components/shadcn/tooltip.tsx +8 -4
  21. package/src/core/hooks/PortalContainerProvider.tsx +5 -2
  22. package/src/features/agent/PayloadBuilder.tsx +14 -11
  23. package/src/features/agent/chat/AgentChart.tsx +128 -27
  24. package/src/features/agent/chat/AnimatedThinkingDots.tsx +59 -10
  25. package/src/features/agent/chat/AskUserWidget.tsx +371 -0
  26. package/src/features/agent/chat/ImageLightbox.tsx +99 -0
  27. package/src/features/agent/chat/ModernAgentConversation.tsx +915 -72
  28. package/src/features/agent/chat/ModernAgentOutput/AllMessagesMixed.tsx +461 -79
  29. package/src/features/agent/chat/ModernAgentOutput/BatchProgressPanel.tsx +228 -0
  30. package/src/features/agent/chat/ModernAgentOutput/Header.tsx +25 -7
  31. package/src/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.tsx +3 -3
  32. package/src/features/agent/chat/ModernAgentOutput/MessageInput.tsx +448 -37
  33. package/src/features/agent/chat/ModernAgentOutput/MessageItem.tsx +260 -350
  34. package/src/features/agent/chat/ModernAgentOutput/MessagesContainer.tsx +17 -5
  35. package/src/features/agent/chat/ModernAgentOutput/StreamingMessage.tsx +315 -0
  36. package/src/features/agent/chat/ModernAgentOutput/ToolCallGroup.tsx +668 -0
  37. package/src/features/agent/chat/ModernAgentOutput/utils.ts +329 -0
  38. package/src/features/agent/chat/SkillWidgetProvider.tsx +151 -0
  39. package/src/features/agent/chat/VegaLiteChart.tsx +1081 -0
  40. package/src/features/agent/chat/applyParameterValues.test.ts +258 -0
  41. package/src/features/agent/chat/index.ts +31 -1
  42. package/src/features/agent/chat/useArtifactUrlCache.tsx +92 -0
  43. package/src/features/agent/createChartTool.ts +287 -8
  44. package/src/features/facets/WorkflowExecutionsFacetsNav.tsx +19 -0
  45. package/src/features/layout/GenericPageNavHeader.tsx +4 -4
  46. package/src/features/store/collections/CreateCollection.tsx +8 -8
  47. package/src/features/store/collections/EditCollectionView.tsx +1 -1
  48. package/src/features/store/objects/components/ContentOverview.tsx +255 -30
  49. package/src/features/store/objects/components/PropertiesEditorModal.tsx +0 -1
  50. package/src/features/store/objects/components/SelectDocumentModal.tsx +6 -6
  51. package/src/features/store/objects/components/useContentPanelHooks.ts +18 -2
  52. package/src/features/store/objects/selection/actions/AddToCollectionAction.tsx +13 -13
  53. package/src/features/store/objects/selection/actions/StartWorkflowComponent.tsx +8 -8
  54. package/src/features/store/objects/upload/DocumentUploadModal.tsx +25 -25
  55. package/src/features/store/types/ObjectSchemaEditor.tsx +28 -27
  56. package/src/features/store/types/SelectContentType.tsx +3 -3
  57. package/src/features/store/types/TableLayoutEditor.tsx +11 -17
  58. package/src/features/user/UserInfo.tsx +158 -10
  59. package/src/layout/AppLayout.tsx +16 -44
  60. package/src/layout/FullHeightLayout.tsx +1 -1
  61. package/src/layout/Sidebar.tsx +4 -3
  62. package/src/session/index.ts +1 -0
  63. package/src/shell/apps/AppProjectSelector.tsx +2 -2
  64. package/src/shell/apps/StandaloneApp.tsx +77 -11
  65. package/src/shell/login/InviteAcceptModal.tsx +6 -6
  66. package/src/shell/login/SignInModal.tsx +1 -1
  67. package/src/shell/login/SignupForm.tsx +3 -3
  68. package/src/shell/login/TerminalLogin.tsx +52 -13
  69. package/src/shell/login/UserInfo.tsx +5 -5
  70. package/src/widgets/form/schema.ts +2 -0
  71. package/src/widgets/json-view/JSONCode.tsx +1 -3
  72. package/src/widgets/json-view/JSONDisplay.tsx +1 -1
  73. package/src/widgets/markdown/ArtifactContentRenderer.tsx +301 -0
  74. package/src/widgets/markdown/CodeBlockPlaceholder.test.tsx +57 -0
  75. package/src/widgets/markdown/CodeBlockPlaceholder.tsx +165 -0
  76. package/src/widgets/markdown/CodeBlockRendering.tsx +57 -0
  77. package/src/widgets/markdown/MarkdownImage.tsx +92 -0
  78. package/src/widgets/markdown/MarkdownLink.tsx +139 -0
  79. package/src/widgets/markdown/MarkdownRenderer.tsx +144 -285
  80. package/src/widgets/markdown/MermaidDiagram.tsx +100 -0
  81. package/src/widgets/markdown/codeBlockHandlers.test.tsx +235 -0
  82. package/src/widgets/markdown/codeBlockHandlers.tsx +483 -0
  83. package/src/widgets/markdown/index.ts +45 -1
  84. package/src/widgets/markdown/useArtifactContent.ts +234 -0
  85. package/src/widgets/markdown/useResolvedUrl.test.ts +94 -0
  86. package/src/widgets/markdown/useResolvedUrl.ts +240 -0
  87. package/src/widgets/monacoEditor/MonacoEditor.tsx +2 -17
  88. package/src/widgets/popover/Popover.tsx +3 -3
  89. package/src/widgets/schema-editor/editor/PropertyEditor.tsx +5 -5
  90. package/lib/esm/core/components/Avatar.js +0 -31
  91. package/lib/esm/core/components/Avatar.js.map +0 -1
  92. package/lib/esm/core/components/Badge.js +0 -62
  93. package/lib/esm/core/components/Badge.js.map +0 -1
  94. package/lib/esm/core/components/Button.js +0 -32
  95. package/lib/esm/core/components/Button.js.map +0 -1
  96. package/lib/esm/core/components/Center.js +0 -6
  97. package/lib/esm/core/components/Center.js.map +0 -1
  98. package/lib/esm/core/components/ComboBox.js +0 -356
  99. package/lib/esm/core/components/ComboBox.js.map +0 -1
  100. package/lib/esm/core/components/ConfirmModal.js +0 -10
  101. package/lib/esm/core/components/ConfirmModal.js.map +0 -1
  102. package/lib/esm/core/components/DeleteModal.js +0 -28
  103. package/lib/esm/core/components/DeleteModal.js.map +0 -1
  104. package/lib/esm/core/components/Divider.js +0 -6
  105. package/lib/esm/core/components/Divider.js.map +0 -1
  106. package/lib/esm/core/components/Dropdown.js +0 -16
  107. package/lib/esm/core/components/Dropdown.js.map +0 -1
  108. package/lib/esm/core/components/DropdownList.js +0 -9
  109. package/lib/esm/core/components/DropdownList.js.map +0 -1
  110. package/lib/esm/core/components/EmptyCollection.js +0 -7
  111. package/lib/esm/core/components/EmptyCollection.js.map +0 -1
  112. package/lib/esm/core/components/FileUpload.js +0 -119
  113. package/lib/esm/core/components/FileUpload.js.map +0 -1
  114. package/lib/esm/core/components/FormItem.js +0 -9
  115. package/lib/esm/core/components/FormItem.js.map +0 -1
  116. package/lib/esm/core/components/InputList.js +0 -61
  117. package/lib/esm/core/components/InputList.js.map +0 -1
  118. package/lib/esm/core/components/Link.js +0 -13
  119. package/lib/esm/core/components/Link.js.map +0 -1
  120. package/lib/esm/core/components/MenuList.js +0 -20
  121. package/lib/esm/core/components/MenuList.js.map +0 -1
  122. package/lib/esm/core/components/MessageBox.js +0 -66
  123. package/lib/esm/core/components/MessageBox.js.map +0 -1
  124. package/lib/esm/core/components/Modal.js +0 -26
  125. package/lib/esm/core/components/Modal.js.map +0 -1
  126. package/lib/esm/core/components/NumberInput.js +0 -43
  127. package/lib/esm/core/components/NumberInput.js.map +0 -1
  128. package/lib/esm/core/components/Overlay.js +0 -57
  129. package/lib/esm/core/components/Overlay.js.map +0 -1
  130. package/lib/esm/core/components/Panel.js +0 -8
  131. package/lib/esm/core/components/Panel.js.map +0 -1
  132. package/lib/esm/core/components/Portal.js +0 -28
  133. package/lib/esm/core/components/Portal.js.map +0 -1
  134. package/lib/esm/core/components/RadioGroup.js +0 -34
  135. package/lib/esm/core/components/RadioGroup.js.map +0 -1
  136. package/lib/esm/core/components/SelectBox.js +0 -67
  137. package/lib/esm/core/components/SelectBox.js.map +0 -1
  138. package/lib/esm/core/components/SelectList.js +0 -52
  139. package/lib/esm/core/components/SelectList.js.map +0 -1
  140. package/lib/esm/core/components/SelectStack.js +0 -8
  141. package/lib/esm/core/components/SelectStack.js.map +0 -1
  142. package/lib/esm/core/components/SidePanel.js +0 -33
  143. package/lib/esm/core/components/SidePanel.js.map +0 -1
  144. package/lib/esm/core/components/Spinner.js +0 -18
  145. package/lib/esm/core/components/Spinner.js.map +0 -1
  146. package/lib/esm/core/components/Switch.js +0 -12
  147. package/lib/esm/core/components/Switch.js.map +0 -1
  148. package/lib/esm/core/components/TagsInput.js +0 -194
  149. package/lib/esm/core/components/TagsInput.js.map +0 -1
  150. package/lib/esm/core/components/index.js +0 -36
  151. package/lib/esm/core/components/index.js.map +0 -1
  152. package/lib/esm/core/components/libs/utils.js +0 -6
  153. package/lib/esm/core/components/libs/utils.js.map +0 -1
  154. package/lib/esm/core/components/libs/visuallyHidden.js +0 -16
  155. package/lib/esm/core/components/libs/visuallyHidden.js.map +0 -1
  156. package/lib/esm/core/components/popup/Popup.js +0 -60
  157. package/lib/esm/core/components/popup/Popup.js.map +0 -1
  158. package/lib/esm/core/components/popup/PopupController.js +0 -149
  159. package/lib/esm/core/components/popup/PopupController.js.map +0 -1
  160. package/lib/esm/core/components/popup/index.js +0 -4
  161. package/lib/esm/core/components/popup/index.js.map +0 -1
  162. package/lib/esm/core/components/popup/position.js +0 -221
  163. package/lib/esm/core/components/popup/position.js.map +0 -1
  164. package/lib/esm/core/components/popup/utils.js +0 -74
  165. package/lib/esm/core/components/popup/utils.js.map +0 -1
  166. package/lib/esm/core/components/shadcn/breadcrumb.js +0 -51
  167. package/lib/esm/core/components/shadcn/breadcrumb.js.map +0 -1
  168. package/lib/esm/core/components/shadcn/button.js +0 -76
  169. package/lib/esm/core/components/shadcn/button.js.map +0 -1
  170. package/lib/esm/core/components/shadcn/calendar.js +0 -13
  171. package/lib/esm/core/components/shadcn/calendar.js.map +0 -1
  172. package/lib/esm/core/components/shadcn/card.js +0 -17
  173. package/lib/esm/core/components/shadcn/card.js.map +0 -1
  174. package/lib/esm/core/components/shadcn/checkbox.js +0 -9
  175. package/lib/esm/core/components/shadcn/checkbox.js.map +0 -1
  176. package/lib/esm/core/components/shadcn/command.js +0 -29
  177. package/lib/esm/core/components/shadcn/command.js.map +0 -1
  178. package/lib/esm/core/components/shadcn/dialog.js +0 -78
  179. package/lib/esm/core/components/shadcn/dialog.js.map +0 -1
  180. package/lib/esm/core/components/shadcn/filters/DynamicLabel.js +0 -38
  181. package/lib/esm/core/components/shadcn/filters/DynamicLabel.js.map +0 -1
  182. package/lib/esm/core/components/shadcn/filters/animateChangeInHeight.js +0 -23
  183. package/lib/esm/core/components/shadcn/filters/animateChangeInHeight.js.map +0 -1
  184. package/lib/esm/core/components/shadcn/filters/comboBox/DateCombobox.js +0 -129
  185. package/lib/esm/core/components/shadcn/filters/comboBox/DateCombobox.js.map +0 -1
  186. package/lib/esm/core/components/shadcn/filters/comboBox/SelectCombobox.js +0 -46
  187. package/lib/esm/core/components/shadcn/filters/comboBox/SelectCombobox.js.map +0 -1
  188. package/lib/esm/core/components/shadcn/filters/comboBox/StringListCombobox.js +0 -23
  189. package/lib/esm/core/components/shadcn/filters/comboBox/StringListCombobox.js.map +0 -1
  190. package/lib/esm/core/components/shadcn/filters/comboBox/TextCombobox.js +0 -28
  191. package/lib/esm/core/components/shadcn/filters/comboBox/TextCombobox.js.map +0 -1
  192. package/lib/esm/core/components/shadcn/filters/comboBox/comboBox.js +0 -5
  193. package/lib/esm/core/components/shadcn/filters/comboBox/comboBox.js.map +0 -1
  194. package/lib/esm/core/components/shadcn/filters/filter/SelectFilter.js +0 -98
  195. package/lib/esm/core/components/shadcn/filters/filter/SelectFilter.js.map +0 -1
  196. package/lib/esm/core/components/shadcn/filters/filter/StringListFilter.js +0 -24
  197. package/lib/esm/core/components/shadcn/filters/filter/StringListFilter.js.map +0 -1
  198. package/lib/esm/core/components/shadcn/filters/filter/TextFilter.js +0 -21
  199. package/lib/esm/core/components/shadcn/filters/filter/TextFilter.js.map +0 -1
  200. package/lib/esm/core/components/shadcn/filters/filter/dateFilter.js +0 -161
  201. package/lib/esm/core/components/shadcn/filters/filter/dateFilter.js.map +0 -1
  202. package/lib/esm/core/components/shadcn/filters/filter-styles.js +0 -88
  203. package/lib/esm/core/components/shadcn/filters/filter-styles.js.map +0 -1
  204. package/lib/esm/core/components/shadcn/filters/filterBar.js +0 -242
  205. package/lib/esm/core/components/shadcn/filters/filterBar.js.map +0 -1
  206. package/lib/esm/core/components/shadcn/filters/filters.js +0 -57
  207. package/lib/esm/core/components/shadcn/filters/filters.js.map +0 -1
  208. package/lib/esm/core/components/shadcn/filters/index.js +0 -6
  209. package/lib/esm/core/components/shadcn/filters/index.js.map +0 -1
  210. package/lib/esm/core/components/shadcn/filters/types.js +0 -10
  211. package/lib/esm/core/components/shadcn/filters/types.js.map +0 -1
  212. package/lib/esm/core/components/shadcn/heading.js +0 -17
  213. package/lib/esm/core/components/shadcn/heading.js.map +0 -1
  214. package/lib/esm/core/components/shadcn/index.js +0 -23
  215. package/lib/esm/core/components/shadcn/index.js.map +0 -1
  216. package/lib/esm/core/components/shadcn/input.js +0 -41
  217. package/lib/esm/core/components/shadcn/input.js.map +0 -1
  218. package/lib/esm/core/components/shadcn/label.js +0 -10
  219. package/lib/esm/core/components/shadcn/label.js.map +0 -1
  220. package/lib/esm/core/components/shadcn/popover.js +0 -52
  221. package/lib/esm/core/components/shadcn/popover.js.map +0 -1
  222. package/lib/esm/core/components/shadcn/resizeable.js +0 -15
  223. package/lib/esm/core/components/shadcn/resizeable.js.map +0 -1
  224. package/lib/esm/core/components/shadcn/selectBox.js +0 -152
  225. package/lib/esm/core/components/shadcn/selectBox.js.map +0 -1
  226. package/lib/esm/core/components/shadcn/separator.js +0 -8
  227. package/lib/esm/core/components/shadcn/separator.js.map +0 -1
  228. package/lib/esm/core/components/shadcn/tabs.js +0 -132
  229. package/lib/esm/core/components/shadcn/tabs.js.map +0 -1
  230. package/lib/esm/core/components/shadcn/text.js +0 -30
  231. package/lib/esm/core/components/shadcn/text.js.map +0 -1
  232. package/lib/esm/core/components/shadcn/textarea.js +0 -7
  233. package/lib/esm/core/components/shadcn/textarea.js.map +0 -1
  234. package/lib/esm/core/components/shadcn/theme/ThemeProvider.js +0 -39
  235. package/lib/esm/core/components/shadcn/theme/ThemeProvider.js.map +0 -1
  236. package/lib/esm/core/components/shadcn/theme/ThemeSwitcher.js +0 -13
  237. package/lib/esm/core/components/shadcn/theme/ThemeSwitcher.js.map +0 -1
  238. package/lib/esm/core/components/shadcn/tooltip.js +0 -18
  239. package/lib/esm/core/components/shadcn/tooltip.js.map +0 -1
  240. package/lib/esm/core/components/styles.js +0 -10
  241. package/lib/esm/core/components/styles.js.map +0 -1
  242. package/lib/esm/core/components/table/index.js +0 -24
  243. package/lib/esm/core/components/table/index.js.map +0 -1
  244. package/lib/esm/core/components/tabs/Tabs.js +0 -78
  245. package/lib/esm/core/components/tabs/Tabs.js.map +0 -1
  246. package/lib/esm/core/components/tabs/TabsContext.js +0 -7
  247. package/lib/esm/core/components/tabs/TabsContext.js.map +0 -1
  248. package/lib/esm/core/components/tabs/index.js +0 -3
  249. package/lib/esm/core/components/tabs/index.js.map +0 -1
  250. package/lib/esm/core/components/toast/NotificationPanel.js +0 -43
  251. package/lib/esm/core/components/toast/NotificationPanel.js.map +0 -1
  252. package/lib/esm/core/components/toast/ToastContext.js +0 -7
  253. package/lib/esm/core/components/toast/ToastContext.js.map +0 -1
  254. package/lib/esm/core/components/toast/ToastProps.js +0 -2
  255. package/lib/esm/core/components/toast/ToastProps.js.map +0 -1
  256. package/lib/esm/core/components/toast/ToastProvider.js +0 -13
  257. package/lib/esm/core/components/toast/ToastProvider.js.map +0 -1
  258. package/lib/esm/core/components/toast/index.js +0 -3
  259. package/lib/esm/core/components/toast/index.js.map +0 -1
  260. package/lib/esm/core/hooks/CompositeState.js +0 -256
  261. package/lib/esm/core/hooks/CompositeState.js.map +0 -1
  262. package/lib/esm/core/hooks/PortalContainerProvider.js +0 -42
  263. package/lib/esm/core/hooks/PortalContainerProvider.js.map +0 -1
  264. package/lib/esm/core/hooks/SharedState.js +0 -64
  265. package/lib/esm/core/hooks/SharedState.js.map +0 -1
  266. package/lib/esm/core/hooks/index.js +0 -16
  267. package/lib/esm/core/hooks/index.js.map +0 -1
  268. package/lib/esm/core/hooks/useClickOutside.js +0 -29
  269. package/lib/esm/core/hooks/useClickOutside.js.map +0 -1
  270. package/lib/esm/core/hooks/useCopyToClipboard.js +0 -23
  271. package/lib/esm/core/hooks/useCopyToClipboard.js.map +0 -1
  272. package/lib/esm/core/hooks/useDarkMode.js +0 -11
  273. package/lib/esm/core/hooks/useDarkMode.js.map +0 -1
  274. package/lib/esm/core/hooks/useDebounce.js +0 -14
  275. package/lib/esm/core/hooks/useDebounce.js.map +0 -1
  276. package/lib/esm/core/hooks/useEventSource.js +0 -31
  277. package/lib/esm/core/hooks/useEventSource.js.map +0 -1
  278. package/lib/esm/core/hooks/useFetch.js +0 -40
  279. package/lib/esm/core/hooks/useFetch.js.map +0 -1
  280. package/lib/esm/core/hooks/useFlag.js +0 -13
  281. package/lib/esm/core/hooks/useFlag.js.map +0 -1
  282. package/lib/esm/core/hooks/useIntersectionObserver.js +0 -34
  283. package/lib/esm/core/hooks/useIntersectionObserver.js.map +0 -1
  284. package/lib/esm/core/hooks/useIsFistRendering.js +0 -14
  285. package/lib/esm/core/hooks/useIsFistRendering.js.map +0 -1
  286. package/lib/esm/core/hooks/useSafeLayoutEffect.js +0 -4
  287. package/lib/esm/core/hooks/useSafeLayoutEffect.js.map +0 -1
  288. package/lib/esm/core/hooks/useScrollableSearch.js +0 -92
  289. package/lib/esm/core/hooks/useScrollableSearch.js.map +0 -1
  290. package/lib/esm/core/hooks/useSharedValue.js +0 -21
  291. package/lib/esm/core/hooks/useSharedValue.js.map +0 -1
  292. package/lib/esm/core/index.js +0 -4
  293. package/lib/esm/core/index.js.map +0 -1
  294. package/lib/esm/core/utils/cn.js +0 -6
  295. package/lib/esm/core/utils/cn.js.map +0 -1
  296. package/lib/esm/core/utils/index.js +0 -2
  297. package/lib/esm/core/utils/index.js.map +0 -1
  298. package/lib/esm/env/index.js +0 -75
  299. package/lib/esm/env/index.js.map +0 -1
  300. package/lib/esm/features/activity-doc/ActivityDoc.js +0 -71
  301. package/lib/esm/features/activity-doc/ActivityDoc.js.map +0 -1
  302. package/lib/esm/features/activity-doc/index.js +0 -2
  303. package/lib/esm/features/activity-doc/index.js.map +0 -1
  304. package/lib/esm/features/agent/PayloadBuilder.js +0 -288
  305. package/lib/esm/features/agent/PayloadBuilder.js.map +0 -1
  306. package/lib/esm/features/agent/chat/AgentChart.js +0 -184
  307. package/lib/esm/features/agent/chat/AgentChart.js.map +0 -1
  308. package/lib/esm/features/agent/chat/AnimatedThinkingDots.js +0 -207
  309. package/lib/esm/features/agent/chat/AnimatedThinkingDots.js.map +0 -1
  310. package/lib/esm/features/agent/chat/JumpingDots.js +0 -6
  311. package/lib/esm/features/agent/chat/JumpingDots.js.map +0 -1
  312. package/lib/esm/features/agent/chat/ModernAgentConversation.js +0 -434
  313. package/lib/esm/features/agent/chat/ModernAgentConversation.js.map +0 -1
  314. package/lib/esm/features/agent/chat/ModernAgentOutput/AllMessagesMixed.js +0 -133
  315. package/lib/esm/features/agent/chat/ModernAgentOutput/AllMessagesMixed.js.map +0 -1
  316. package/lib/esm/features/agent/chat/ModernAgentOutput/Header.js +0 -62
  317. package/lib/esm/features/agent/chat/ModernAgentOutput/Header.js.map +0 -1
  318. package/lib/esm/features/agent/chat/ModernAgentOutput/InlineSlideInPanel.js +0 -29
  319. package/lib/esm/features/agent/chat/ModernAgentOutput/InlineSlideInPanel.js.map +0 -1
  320. package/lib/esm/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.js +0 -95
  321. package/lib/esm/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.js.map +0 -1
  322. package/lib/esm/features/agent/chat/ModernAgentOutput/MessageInput.js +0 -54
  323. package/lib/esm/features/agent/chat/ModernAgentOutput/MessageInput.js.map +0 -1
  324. package/lib/esm/features/agent/chat/ModernAgentOutput/MessageItem.js +0 -368
  325. package/lib/esm/features/agent/chat/ModernAgentOutput/MessageItem.js.map +0 -1
  326. package/lib/esm/features/agent/chat/ModernAgentOutput/MessagesContainer.js +0 -20
  327. package/lib/esm/features/agent/chat/ModernAgentOutput/MessagesContainer.js.map +0 -1
  328. package/lib/esm/features/agent/chat/ModernAgentOutput/PlanPanel.js +0 -63
  329. package/lib/esm/features/agent/chat/ModernAgentOutput/PlanPanel.js.map +0 -1
  330. package/lib/esm/features/agent/chat/ModernAgentOutput/SlideInPanel.js +0 -23
  331. package/lib/esm/features/agent/chat/ModernAgentOutput/SlideInPanel.js.map +0 -1
  332. package/lib/esm/features/agent/chat/ModernAgentOutput/SlidingMessages.js +0 -52
  333. package/lib/esm/features/agent/chat/ModernAgentOutput/SlidingMessages.js.map +0 -1
  334. package/lib/esm/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.js +0 -82
  335. package/lib/esm/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.js.map +0 -1
  336. package/lib/esm/features/agent/chat/ModernAgentOutput/StackedMessages.js +0 -13
  337. package/lib/esm/features/agent/chat/ModernAgentOutput/StackedMessages.js.map +0 -1
  338. package/lib/esm/features/agent/chat/ModernAgentOutput/WorkstreamTabs.js +0 -105
  339. package/lib/esm/features/agent/chat/ModernAgentOutput/WorkstreamTabs.js.map +0 -1
  340. package/lib/esm/features/agent/chat/ModernAgentOutput/utils.js +0 -160
  341. package/lib/esm/features/agent/chat/ModernAgentOutput/utils.js.map +0 -1
  342. package/lib/esm/features/agent/chat/SlidingThinkingIndicator.js +0 -266
  343. package/lib/esm/features/agent/chat/SlidingThinkingIndicator.js.map +0 -1
  344. package/lib/esm/features/agent/chat/WaitingMessages.js +0 -60
  345. package/lib/esm/features/agent/chat/WaitingMessages.js.map +0 -1
  346. package/lib/esm/features/agent/chat/index.js +0 -6
  347. package/lib/esm/features/agent/chat/index.js.map +0 -1
  348. package/lib/esm/features/agent/createChartTool.js +0 -354
  349. package/lib/esm/features/agent/createChartTool.js.map +0 -1
  350. package/lib/esm/features/agent/examples.js +0 -295
  351. package/lib/esm/features/agent/examples.js.map +0 -1
  352. package/lib/esm/features/agent/index.js +0 -5
  353. package/lib/esm/features/agent/index.js.map +0 -1
  354. package/lib/esm/features/agent/visualization.js +0 -165
  355. package/lib/esm/features/agent/visualization.js.map +0 -1
  356. package/lib/esm/features/errors/PanelErrorBoundary.js +0 -11
  357. package/lib/esm/features/errors/PanelErrorBoundary.js.map +0 -1
  358. package/lib/esm/features/errors/RowErrorBoundary.js +0 -9
  359. package/lib/esm/features/errors/RowErrorBoundary.js.map +0 -1
  360. package/lib/esm/features/errors/VertesiaErrorBoundary.js +0 -15
  361. package/lib/esm/features/errors/VertesiaErrorBoundary.js.map +0 -1
  362. package/lib/esm/features/errors/WidgetErrorBoundary.js +0 -11
  363. package/lib/esm/features/errors/WidgetErrorBoundary.js.map +0 -1
  364. package/lib/esm/features/errors/index.js +0 -5
  365. package/lib/esm/features/errors/index.js.map +0 -1
  366. package/lib/esm/features/facets/AgentRunnerFacetsNav.js +0 -86
  367. package/lib/esm/features/facets/AgentRunnerFacetsNav.js.map +0 -1
  368. package/lib/esm/features/facets/CollectionsFacetsNav.js +0 -89
  369. package/lib/esm/features/facets/CollectionsFacetsNav.js.map +0 -1
  370. package/lib/esm/features/facets/DocumentsFacetsNav.js +0 -147
  371. package/lib/esm/features/facets/DocumentsFacetsNav.js.map +0 -1
  372. package/lib/esm/features/facets/EnvironmentFacet.js +0 -39
  373. package/lib/esm/features/facets/EnvironmentFacet.js.map +0 -1
  374. package/lib/esm/features/facets/InteractionsFacetsNav.js +0 -88
  375. package/lib/esm/features/facets/InteractionsFacetsNav.js.map +0 -1
  376. package/lib/esm/features/facets/PromptsFacetsNav.js +0 -80
  377. package/lib/esm/features/facets/PromptsFacetsNav.js.map +0 -1
  378. package/lib/esm/features/facets/RunsFacetsNav.js +0 -157
  379. package/lib/esm/features/facets/RunsFacetsNav.js.map +0 -1
  380. package/lib/esm/features/facets/WorkflowExecutionsFacetsNav.js +0 -100
  381. package/lib/esm/features/facets/WorkflowExecutionsFacetsNav.js.map +0 -1
  382. package/lib/esm/features/facets/index.js +0 -16
  383. package/lib/esm/features/facets/index.js.map +0 -1
  384. package/lib/esm/features/facets/utils/SearchInterface.js +0 -2
  385. package/lib/esm/features/facets/utils/SearchInterface.js.map +0 -1
  386. package/lib/esm/features/facets/utils/StringFacet.js +0 -12
  387. package/lib/esm/features/facets/utils/StringFacet.js.map +0 -1
  388. package/lib/esm/features/facets/utils/StringListFacet.js +0 -11
  389. package/lib/esm/features/facets/utils/StringListFacet.js.map +0 -1
  390. package/lib/esm/features/facets/utils/TypeFacet.js +0 -42
  391. package/lib/esm/features/facets/utils/TypeFacet.js.map +0 -1
  392. package/lib/esm/features/facets/utils/VEnvironmentFacet.js +0 -25
  393. package/lib/esm/features/facets/utils/VEnvironmentFacet.js.map +0 -1
  394. package/lib/esm/features/facets/utils/VInteractionFacet.js +0 -45
  395. package/lib/esm/features/facets/utils/VInteractionFacet.js.map +0 -1
  396. package/lib/esm/features/facets/utils/VStringFacet.js +0 -20
  397. package/lib/esm/features/facets/utils/VStringFacet.js.map +0 -1
  398. package/lib/esm/features/facets/utils/VTypeFacet.js +0 -61
  399. package/lib/esm/features/facets/utils/VTypeFacet.js.map +0 -1
  400. package/lib/esm/features/facets/utils/VUserFacet.js +0 -31
  401. package/lib/esm/features/facets/utils/VUserFacet.js.map +0 -1
  402. package/lib/esm/features/facets/utils/utils.js +0 -7
  403. package/lib/esm/features/facets/utils/utils.js.map +0 -1
  404. package/lib/esm/features/index.js +0 -12
  405. package/lib/esm/features/index.js.map +0 -1
  406. package/lib/esm/features/layout/GenericPageNavHeader.js +0 -74
  407. package/lib/esm/features/layout/GenericPageNavHeader.js.map +0 -1
  408. package/lib/esm/features/layout/NotFoundView.js +0 -5
  409. package/lib/esm/features/layout/NotFoundView.js.map +0 -1
  410. package/lib/esm/features/layout/index.js +0 -3
  411. package/lib/esm/features/layout/index.js.map +0 -1
  412. package/lib/esm/features/magic-pdf/AnnotatedImageSlider.js +0 -268
  413. package/lib/esm/features/magic-pdf/AnnotatedImageSlider.js.map +0 -1
  414. package/lib/esm/features/magic-pdf/DownloadPopover.js +0 -28
  415. package/lib/esm/features/magic-pdf/DownloadPopover.js.map +0 -1
  416. package/lib/esm/features/magic-pdf/ExtractedContentView.js +0 -77
  417. package/lib/esm/features/magic-pdf/ExtractedContentView.js.map +0 -1
  418. package/lib/esm/features/magic-pdf/MagicPdfProvider.js +0 -242
  419. package/lib/esm/features/magic-pdf/MagicPdfProvider.js.map +0 -1
  420. package/lib/esm/features/magic-pdf/MagicPdfView.js +0 -61
  421. package/lib/esm/features/magic-pdf/MagicPdfView.js.map +0 -1
  422. package/lib/esm/features/magic-pdf/index.js +0 -2
  423. package/lib/esm/features/magic-pdf/index.js.map +0 -1
  424. package/lib/esm/features/magic-pdf/types.js +0 -2
  425. package/lib/esm/features/magic-pdf/types.js.map +0 -1
  426. package/lib/esm/features/pdf-viewer/PdfPageRenderer.js +0 -261
  427. package/lib/esm/features/pdf-viewer/PdfPageRenderer.js.map +0 -1
  428. package/lib/esm/features/pdf-viewer/PdfPageSlider.js +0 -276
  429. package/lib/esm/features/pdf-viewer/PdfPageSlider.js.map +0 -1
  430. package/lib/esm/features/pdf-viewer/SimplePdfViewer.js +0 -71
  431. package/lib/esm/features/pdf-viewer/SimplePdfViewer.js.map +0 -1
  432. package/lib/esm/features/pdf-viewer/index.js +0 -4
  433. package/lib/esm/features/pdf-viewer/index.js.map +0 -1
  434. package/lib/esm/features/permissions/SecureButton.js +0 -13
  435. package/lib/esm/features/permissions/SecureButton.js.map +0 -1
  436. package/lib/esm/features/permissions/SecureSidebarItem.js +0 -14
  437. package/lib/esm/features/permissions/SecureSidebarItem.js.map +0 -1
  438. package/lib/esm/features/permissions/UserPermissionsProvider.js +0 -87
  439. package/lib/esm/features/permissions/UserPermissionsProvider.js.map +0 -1
  440. package/lib/esm/features/permissions/helpers.js +0 -12
  441. package/lib/esm/features/permissions/helpers.js.map +0 -1
  442. package/lib/esm/features/permissions/index.js +0 -5
  443. package/lib/esm/features/permissions/index.js.map +0 -1
  444. package/lib/esm/features/store/collections/BrowseCollectionView.js +0 -40
  445. package/lib/esm/features/store/collections/BrowseCollectionView.js.map +0 -1
  446. package/lib/esm/features/store/collections/CollectionsTable.js +0 -64
  447. package/lib/esm/features/store/collections/CollectionsTable.js.map +0 -1
  448. package/lib/esm/features/store/collections/CreateCollection.js +0 -87
  449. package/lib/esm/features/store/collections/CreateCollection.js.map +0 -1
  450. package/lib/esm/features/store/collections/EditCollectionView.js +0 -181
  451. package/lib/esm/features/store/collections/EditCollectionView.js.map +0 -1
  452. package/lib/esm/features/store/collections/SelectCollection.js +0 -119
  453. package/lib/esm/features/store/collections/SelectCollection.js.map +0 -1
  454. package/lib/esm/features/store/collections/SharedPropsEditor.js +0 -39
  455. package/lib/esm/features/store/collections/SharedPropsEditor.js.map +0 -1
  456. package/lib/esm/features/store/collections/SyncMemberHeadsToggle.js +0 -35
  457. package/lib/esm/features/store/collections/SyncMemberHeadsToggle.js.map +0 -1
  458. package/lib/esm/features/store/collections/index.js +0 -8
  459. package/lib/esm/features/store/collections/index.js.map +0 -1
  460. package/lib/esm/features/store/index.js +0 -4
  461. package/lib/esm/features/store/index.js.map +0 -1
  462. package/lib/esm/features/store/objects/DocumentPreviewPanel.js +0 -147
  463. package/lib/esm/features/store/objects/DocumentPreviewPanel.js.map +0 -1
  464. package/lib/esm/features/store/objects/DocumentSearchResults.js +0 -204
  465. package/lib/esm/features/store/objects/DocumentSearchResults.js.map +0 -1
  466. package/lib/esm/features/store/objects/DocumentSelectionProvider.js +0 -81
  467. package/lib/esm/features/store/objects/DocumentSelectionProvider.js.map +0 -1
  468. package/lib/esm/features/store/objects/DocumentTable.js +0 -278
  469. package/lib/esm/features/store/objects/DocumentTable.js.map +0 -1
  470. package/lib/esm/features/store/objects/ExportPropertiesModal.js +0 -31
  471. package/lib/esm/features/store/objects/ExportPropertiesModal.js.map +0 -1
  472. package/lib/esm/features/store/objects/components/ContentDispositionButton.js +0 -31
  473. package/lib/esm/features/store/objects/components/ContentDispositionButton.js.map +0 -1
  474. package/lib/esm/features/store/objects/components/ContentOverview.js +0 -520
  475. package/lib/esm/features/store/objects/components/ContentOverview.js.map +0 -1
  476. package/lib/esm/features/store/objects/components/DocumentIcon.js +0 -33
  477. package/lib/esm/features/store/objects/components/DocumentIcon.js.map +0 -1
  478. package/lib/esm/features/store/objects/components/DocumentInput.js +0 -51
  479. package/lib/esm/features/store/objects/components/DocumentInput.js.map +0 -1
  480. package/lib/esm/features/store/objects/components/PropertiesEditorModal.js +0 -157
  481. package/lib/esm/features/store/objects/components/PropertiesEditorModal.js.map +0 -1
  482. package/lib/esm/features/store/objects/components/SaveVersionConfirmModal.js +0 -53
  483. package/lib/esm/features/store/objects/components/SaveVersionConfirmModal.js.map +0 -1
  484. package/lib/esm/features/store/objects/components/SelectDocument.js +0 -55
  485. package/lib/esm/features/store/objects/components/SelectDocument.js.map +0 -1
  486. package/lib/esm/features/store/objects/components/SelectDocumentModal.js +0 -7
  487. package/lib/esm/features/store/objects/components/SelectDocumentModal.js.map +0 -1
  488. package/lib/esm/features/store/objects/components/VectorSearchWidget.js +0 -90
  489. package/lib/esm/features/store/objects/components/VectorSearchWidget.js.map +0 -1
  490. package/lib/esm/features/store/objects/components/index.js +0 -10
  491. package/lib/esm/features/store/objects/components/index.js.map +0 -1
  492. package/lib/esm/features/store/objects/components/useContentPanelHooks.js +0 -153
  493. package/lib/esm/features/store/objects/components/useContentPanelHooks.js.map +0 -1
  494. package/lib/esm/features/store/objects/components/useDownloadObject.js +0 -21
  495. package/lib/esm/features/store/objects/components/useDownloadObject.js.map +0 -1
  496. package/lib/esm/features/store/objects/index.js +0 -11
  497. package/lib/esm/features/store/objects/index.js.map +0 -1
  498. package/lib/esm/features/store/objects/layout/DocumentTableColumn.js +0 -86
  499. package/lib/esm/features/store/objects/layout/DocumentTableColumn.js.map +0 -1
  500. package/lib/esm/features/store/objects/layout/documentLayout.js +0 -15
  501. package/lib/esm/features/store/objects/layout/documentLayout.js.map +0 -1
  502. package/lib/esm/features/store/objects/layout/index.js +0 -3
  503. package/lib/esm/features/store/objects/layout/index.js.map +0 -1
  504. package/lib/esm/features/store/objects/layout/renderers.js +0 -157
  505. package/lib/esm/features/store/objects/layout/renderers.js.map +0 -1
  506. package/lib/esm/features/store/objects/search/DocumentSearchContext.js +0 -175
  507. package/lib/esm/features/store/objects/search/DocumentSearchContext.js.map +0 -1
  508. package/lib/esm/features/store/objects/search/DocumentSearchProvider.js +0 -39
  509. package/lib/esm/features/store/objects/search/DocumentSearchProvider.js.map +0 -1
  510. package/lib/esm/features/store/objects/search/index.js +0 -3
  511. package/lib/esm/features/store/objects/search/index.js.map +0 -1
  512. package/lib/esm/features/store/objects/selection/ObjectsActionContext.js +0 -150
  513. package/lib/esm/features/store/objects/selection/ObjectsActionContext.js.map +0 -1
  514. package/lib/esm/features/store/objects/selection/ObjectsActionSpec.js +0 -2
  515. package/lib/esm/features/store/objects/selection/ObjectsActionSpec.js.map +0 -1
  516. package/lib/esm/features/store/objects/selection/SelectionActions.js +0 -69
  517. package/lib/esm/features/store/objects/selection/SelectionActions.js.map +0 -1
  518. package/lib/esm/features/store/objects/selection/actions/AddToCollectionAction.js +0 -81
  519. package/lib/esm/features/store/objects/selection/actions/AddToCollectionAction.js.map +0 -1
  520. package/lib/esm/features/store/objects/selection/actions/ChangeTypeAction.js +0 -53
  521. package/lib/esm/features/store/objects/selection/actions/ChangeTypeAction.js.map +0 -1
  522. package/lib/esm/features/store/objects/selection/actions/ConfirmAction.js +0 -30
  523. package/lib/esm/features/store/objects/selection/actions/ConfirmAction.js.map +0 -1
  524. package/lib/esm/features/store/objects/selection/actions/DeleteObjectsAction.js +0 -84
  525. package/lib/esm/features/store/objects/selection/actions/DeleteObjectsAction.js.map +0 -1
  526. package/lib/esm/features/store/objects/selection/actions/ExportPropertiesAction.js +0 -106
  527. package/lib/esm/features/store/objects/selection/actions/ExportPropertiesAction.js.map +0 -1
  528. package/lib/esm/features/store/objects/selection/actions/RemoveFromCollectionAction.js +0 -64
  529. package/lib/esm/features/store/objects/selection/actions/RemoveFromCollectionAction.js.map +0 -1
  530. package/lib/esm/features/store/objects/selection/actions/StartWorkflowComponent.js +0 -72
  531. package/lib/esm/features/store/objects/selection/actions/StartWorkflowComponent.js.map +0 -1
  532. package/lib/esm/features/store/objects/selection/actions/index.js +0 -8
  533. package/lib/esm/features/store/objects/selection/actions/index.js.map +0 -1
  534. package/lib/esm/features/store/objects/selection/index.js +0 -5
  535. package/lib/esm/features/store/objects/selection/index.js.map +0 -1
  536. package/lib/esm/features/store/objects/upload/DocumentUploadModal.js +0 -519
  537. package/lib/esm/features/store/objects/upload/DocumentUploadModal.js.map +0 -1
  538. package/lib/esm/features/store/objects/upload/index.js +0 -4
  539. package/lib/esm/features/store/objects/upload/index.js.map +0 -1
  540. package/lib/esm/features/store/objects/upload/useSmartFileUploadProcessing.js +0 -195
  541. package/lib/esm/features/store/objects/upload/useSmartFileUploadProcessing.js.map +0 -1
  542. package/lib/esm/features/store/objects/upload/useUploadHandler.js +0 -230
  543. package/lib/esm/features/store/objects/upload/useUploadHandler.js.map +0 -1
  544. package/lib/esm/features/store/types/ContentObjectTypesSearch.js +0 -81
  545. package/lib/esm/features/store/types/ContentObjectTypesSearch.js.map +0 -1
  546. package/lib/esm/features/store/types/ContentObjectTypesTable.js +0 -11
  547. package/lib/esm/features/store/types/ContentObjectTypesTable.js.map +0 -1
  548. package/lib/esm/features/store/types/CreateOrUpdateTypeModal.js +0 -26
  549. package/lib/esm/features/store/types/CreateOrUpdateTypeModal.js.map +0 -1
  550. package/lib/esm/features/store/types/ObjectSchemaEditor.js +0 -101
  551. package/lib/esm/features/store/types/ObjectSchemaEditor.js.map +0 -1
  552. package/lib/esm/features/store/types/SelectContentType.js +0 -43
  553. package/lib/esm/features/store/types/SelectContentType.js.map +0 -1
  554. package/lib/esm/features/store/types/SelectContentTypeModal.js +0 -28
  555. package/lib/esm/features/store/types/SelectContentTypeModal.js.map +0 -1
  556. package/lib/esm/features/store/types/TableLayoutEditor.js +0 -76
  557. package/lib/esm/features/store/types/TableLayoutEditor.js.map +0 -1
  558. package/lib/esm/features/store/types/index.js +0 -9
  559. package/lib/esm/features/store/types/index.js.map +0 -1
  560. package/lib/esm/features/store/types/search/ObjectTypeSearchContext.js +0 -98
  561. package/lib/esm/features/store/types/search/ObjectTypeSearchContext.js.map +0 -1
  562. package/lib/esm/features/store/types/search/ObjectTypeSearchProvider.js +0 -15
  563. package/lib/esm/features/store/types/search/ObjectTypeSearchProvider.js.map +0 -1
  564. package/lib/esm/features/store/types/search/index.js +0 -3
  565. package/lib/esm/features/store/types/search/index.js.map +0 -1
  566. package/lib/esm/features/user/UserAvatar.js +0 -18
  567. package/lib/esm/features/user/UserAvatar.js.map +0 -1
  568. package/lib/esm/features/user/UserInfo.js +0 -121
  569. package/lib/esm/features/user/UserInfo.js.map +0 -1
  570. package/lib/esm/features/user/index.js +0 -3
  571. package/lib/esm/features/user/index.js.map +0 -1
  572. package/lib/esm/features/utils/index.js +0 -6
  573. package/lib/esm/features/utils/index.js.map +0 -1
  574. package/lib/esm/features/utils/mimeType.js +0 -17
  575. package/lib/esm/features/utils/mimeType.js.map +0 -1
  576. package/lib/esm/features/utils/print.js +0 -181
  577. package/lib/esm/features/utils/print.js.map +0 -1
  578. package/lib/esm/features/utils/rendition.js +0 -67
  579. package/lib/esm/features/utils/rendition.js.map +0 -1
  580. package/lib/esm/features/utils/text.js +0 -10
  581. package/lib/esm/features/utils/text.js.map +0 -1
  582. package/lib/esm/features/utils/workflowStatus.js +0 -43
  583. package/lib/esm/features/utils/workflowStatus.js.map +0 -1
  584. package/lib/esm/layout/AppLayout.js +0 -46
  585. package/lib/esm/layout/AppLayout.js.map +0 -1
  586. package/lib/esm/layout/FullHeightLayout.js +0 -18
  587. package/lib/esm/layout/FullHeightLayout.js.map +0 -1
  588. package/lib/esm/layout/Navbar.js +0 -40
  589. package/lib/esm/layout/Navbar.js.map +0 -1
  590. package/lib/esm/layout/Sidebar.js +0 -45
  591. package/lib/esm/layout/Sidebar.js.map +0 -1
  592. package/lib/esm/layout/SidebarContext.js +0 -10
  593. package/lib/esm/layout/SidebarContext.js.map +0 -1
  594. package/lib/esm/layout/TitleBar.js +0 -5
  595. package/lib/esm/layout/TitleBar.js.map +0 -1
  596. package/lib/esm/layout/index.js +0 -7
  597. package/lib/esm/layout/index.js.map +0 -1
  598. package/lib/esm/router/FixLinks.js +0 -23
  599. package/lib/esm/router/FixLinks.js.map +0 -1
  600. package/lib/esm/router/HistoryNavigator.js +0 -192
  601. package/lib/esm/router/HistoryNavigator.js.map +0 -1
  602. package/lib/esm/router/Nav.js +0 -26
  603. package/lib/esm/router/Nav.js.map +0 -1
  604. package/lib/esm/router/NestedNavigationContext.js +0 -19
  605. package/lib/esm/router/NestedNavigationContext.js.map +0 -1
  606. package/lib/esm/router/NestedRouterProvider.js +0 -44
  607. package/lib/esm/router/NestedRouterProvider.js.map +0 -1
  608. package/lib/esm/router/PathMatcher.js +0 -159
  609. package/lib/esm/router/PathMatcher.js.map +0 -1
  610. package/lib/esm/router/PathWithParams.js +0 -34
  611. package/lib/esm/router/PathWithParams.js.map +0 -1
  612. package/lib/esm/router/Route404.js +0 -18
  613. package/lib/esm/router/Route404.js.map +0 -1
  614. package/lib/esm/router/RouteComponent.js +0 -32
  615. package/lib/esm/router/RouteComponent.js.map +0 -1
  616. package/lib/esm/router/Router.js +0 -161
  617. package/lib/esm/router/Router.js.map +0 -1
  618. package/lib/esm/router/RouterProvider.js +0 -41
  619. package/lib/esm/router/RouterProvider.js.map +0 -1
  620. package/lib/esm/router/index.js +0 -11
  621. package/lib/esm/router/index.js.map +0 -1
  622. package/lib/esm/router/path.js +0 -140
  623. package/lib/esm/router/path.js.map +0 -1
  624. package/lib/esm/session/TypeRegistry.js +0 -24
  625. package/lib/esm/session/TypeRegistry.js.map +0 -1
  626. package/lib/esm/session/UserSession.js +0 -192
  627. package/lib/esm/session/UserSession.js.map +0 -1
  628. package/lib/esm/session/UserSessionProvider.js +0 -179
  629. package/lib/esm/session/UserSessionProvider.js.map +0 -1
  630. package/lib/esm/session/auth/composable.js +0 -255
  631. package/lib/esm/session/auth/composable.js.map +0 -1
  632. package/lib/esm/session/auth/firebase.js +0 -158
  633. package/lib/esm/session/auth/firebase.js.map +0 -1
  634. package/lib/esm/session/auth/useAuthState.js +0 -46
  635. package/lib/esm/session/auth/useAuthState.js.map +0 -1
  636. package/lib/esm/session/auth/useCurrentTenant.js +0 -63
  637. package/lib/esm/session/auth/useCurrentTenant.js.map +0 -1
  638. package/lib/esm/session/constants.js +0 -3
  639. package/lib/esm/session/constants.js.map +0 -1
  640. package/lib/esm/session/index.js +0 -8
  641. package/lib/esm/session/index.js.map +0 -1
  642. package/lib/esm/session/useUXTracking.js +0 -29
  643. package/lib/esm/session/useUXTracking.js.map +0 -1
  644. package/lib/esm/shell/SplashScreen.js +0 -26
  645. package/lib/esm/shell/SplashScreen.js.map +0 -1
  646. package/lib/esm/shell/VertesiaShell.js +0 -10
  647. package/lib/esm/shell/VertesiaShell.js.map +0 -1
  648. package/lib/esm/shell/apps/AppInstallationProvider.js +0 -13
  649. package/lib/esm/shell/apps/AppInstallationProvider.js.map +0 -1
  650. package/lib/esm/shell/apps/AppProjectSelector.js +0 -36
  651. package/lib/esm/shell/apps/AppProjectSelector.js.map +0 -1
  652. package/lib/esm/shell/apps/StandaloneApp.js +0 -60
  653. package/lib/esm/shell/apps/StandaloneApp.js.map +0 -1
  654. package/lib/esm/shell/apps/index.js +0 -4
  655. package/lib/esm/shell/apps/index.js.map +0 -1
  656. package/lib/esm/shell/index.js +0 -8
  657. package/lib/esm/shell/index.js.map +0 -1
  658. package/lib/esm/shell/login/EnterpriseSigninButton.js +0 -84
  659. package/lib/esm/shell/login/EnterpriseSigninButton.js.map +0 -1
  660. package/lib/esm/shell/login/GitHubSignInButton.js +0 -24
  661. package/lib/esm/shell/login/GitHubSignInButton.js.map +0 -1
  662. package/lib/esm/shell/login/GoogleSignInButton.js +0 -25
  663. package/lib/esm/shell/login/GoogleSignInButton.js.map +0 -1
  664. package/lib/esm/shell/login/InviteAcceptModal.js +0 -62
  665. package/lib/esm/shell/login/InviteAcceptModal.js.map +0 -1
  666. package/lib/esm/shell/login/MicrosoftSigninButton.js +0 -19
  667. package/lib/esm/shell/login/MicrosoftSigninButton.js.map +0 -1
  668. package/lib/esm/shell/login/PreviewIcon.js +0 -23
  669. package/lib/esm/shell/login/PreviewIcon.js.map +0 -1
  670. package/lib/esm/shell/login/SignInModal.js +0 -9
  671. package/lib/esm/shell/login/SignInModal.js.map +0 -1
  672. package/lib/esm/shell/login/SigninScreen.js +0 -64
  673. package/lib/esm/shell/login/SigninScreen.js.map +0 -1
  674. package/lib/esm/shell/login/SignupForm.js +0 -91
  675. package/lib/esm/shell/login/SignupForm.js.map +0 -1
  676. package/lib/esm/shell/login/TerminalLogin.js +0 -179
  677. package/lib/esm/shell/login/TerminalLogin.js.map +0 -1
  678. package/lib/esm/shell/login/UserInfo.js +0 -41
  679. package/lib/esm/shell/login/UserInfo.js.map +0 -1
  680. package/lib/esm/shell/login/UserSessionMenu.js +0 -37
  681. package/lib/esm/shell/login/UserSessionMenu.js.map +0 -1
  682. package/lib/esm/shell/utils.js +0 -6
  683. package/lib/esm/shell/utils.js.map +0 -1
  684. package/lib/esm/widgets/Progress.js +0 -5
  685. package/lib/esm/widgets/Progress.js.map +0 -1
  686. package/lib/esm/widgets/SvgIcon.js +0 -36
  687. package/lib/esm/widgets/SvgIcon.js.map +0 -1
  688. package/lib/esm/widgets/form/Form.js +0 -100
  689. package/lib/esm/widgets/form/Form.js.map +0 -1
  690. package/lib/esm/widgets/form/FormContext.js +0 -31
  691. package/lib/esm/widgets/form/FormContext.js.map +0 -1
  692. package/lib/esm/widgets/form/ManagedObject.js +0 -287
  693. package/lib/esm/widgets/form/ManagedObject.js.map +0 -1
  694. package/lib/esm/widgets/form/fields.js +0 -12
  695. package/lib/esm/widgets/form/fields.js.map +0 -1
  696. package/lib/esm/widgets/form/index.js +0 -7
  697. package/lib/esm/widgets/form/index.js.map +0 -1
  698. package/lib/esm/widgets/form/inputs.js +0 -38
  699. package/lib/esm/widgets/form/inputs.js.map +0 -1
  700. package/lib/esm/widgets/form/schema.js +0 -197
  701. package/lib/esm/widgets/form/schema.js.map +0 -1
  702. package/lib/esm/widgets/index.js +0 -12
  703. package/lib/esm/widgets/index.js.map +0 -1
  704. package/lib/esm/widgets/json-view/JSONCode.js +0 -22
  705. package/lib/esm/widgets/json-view/JSONCode.js.map +0 -1
  706. package/lib/esm/widgets/json-view/JSONDisplay.js +0 -10
  707. package/lib/esm/widgets/json-view/JSONDisplay.js.map +0 -1
  708. package/lib/esm/widgets/json-view/JSONView.js +0 -106
  709. package/lib/esm/widgets/json-view/JSONView.js.map +0 -1
  710. package/lib/esm/widgets/json-view/index.js +0 -4
  711. package/lib/esm/widgets/json-view/index.js.map +0 -1
  712. package/lib/esm/widgets/json-view/types.js +0 -2
  713. package/lib/esm/widgets/json-view/types.js.map +0 -1
  714. package/lib/esm/widgets/markdown/MarkdownRenderer.js +0 -246
  715. package/lib/esm/widgets/markdown/MarkdownRenderer.js.map +0 -1
  716. package/lib/esm/widgets/markdown/index.js +0 -2
  717. package/lib/esm/widgets/markdown/index.js.map +0 -1
  718. package/lib/esm/widgets/monacoEditor/MonacoEditor.js +0 -140
  719. package/lib/esm/widgets/monacoEditor/MonacoEditor.js.map +0 -1
  720. package/lib/esm/widgets/monacoEditor/index.js +0 -2
  721. package/lib/esm/widgets/monacoEditor/index.js.map +0 -1
  722. package/lib/esm/widgets/popover/Popover.js +0 -73
  723. package/lib/esm/widgets/popover/Popover.js.map +0 -1
  724. package/lib/esm/widgets/popover/context.js +0 -7
  725. package/lib/esm/widgets/popover/context.js.map +0 -1
  726. package/lib/esm/widgets/popover/index.js +0 -3
  727. package/lib/esm/widgets/popover/index.js.map +0 -1
  728. package/lib/esm/widgets/popover/slots.js +0 -22
  729. package/lib/esm/widgets/popover/slots.js.map +0 -1
  730. package/lib/esm/widgets/properties/PropertiesView.js +0 -8
  731. package/lib/esm/widgets/properties/PropertiesView.js.map +0 -1
  732. package/lib/esm/widgets/properties/index.js +0 -2
  733. package/lib/esm/widgets/properties/index.js.map +0 -1
  734. package/lib/esm/widgets/schema-editor/ManagedSchema.js +0 -300
  735. package/lib/esm/widgets/schema-editor/ManagedSchema.js.map +0 -1
  736. package/lib/esm/widgets/schema-editor/editor/Editable.js +0 -110
  737. package/lib/esm/widgets/schema-editor/editor/Editable.js.map +0 -1
  738. package/lib/esm/widgets/schema-editor/editor/EditableSchemaProperty.js +0 -8
  739. package/lib/esm/widgets/schema-editor/editor/EditableSchemaProperty.js.map +0 -1
  740. package/lib/esm/widgets/schema-editor/editor/PropertyEditor.js +0 -81
  741. package/lib/esm/widgets/schema-editor/editor/PropertyEditor.js.map +0 -1
  742. package/lib/esm/widgets/schema-editor/editor/PropertyViewer.js +0 -7
  743. package/lib/esm/widgets/schema-editor/editor/PropertyViewer.js.map +0 -1
  744. package/lib/esm/widgets/schema-editor/editor/SchemaContext.js +0 -9
  745. package/lib/esm/widgets/schema-editor/editor/SchemaContext.js.map +0 -1
  746. package/lib/esm/widgets/schema-editor/editor/SchemaEditor.js +0 -84
  747. package/lib/esm/widgets/schema-editor/editor/SchemaEditor.js.map +0 -1
  748. package/lib/esm/widgets/schema-editor/index.js +0 -7
  749. package/lib/esm/widgets/schema-editor/index.js.map +0 -1
  750. package/lib/esm/widgets/schema-editor/json-schema4-utils.js +0 -188
  751. package/lib/esm/widgets/schema-editor/json-schema4-utils.js.map +0 -1
  752. package/lib/esm/widgets/schema-editor/type-signature.js +0 -30
  753. package/lib/esm/widgets/schema-editor/type-signature.js.map +0 -1
  754. package/lib/esm/widgets/upload/DropZone.js +0 -175
  755. package/lib/esm/widgets/upload/DropZone.js.map +0 -1
  756. package/lib/esm/widgets/upload/UploadResultCategory.js +0 -19
  757. package/lib/esm/widgets/upload/UploadResultCategory.js.map +0 -1
  758. package/lib/esm/widgets/upload/UploadSummary.js +0 -30
  759. package/lib/esm/widgets/upload/UploadSummary.js.map +0 -1
  760. package/lib/esm/widgets/upload/index.js +0 -4
  761. package/lib/esm/widgets/upload/index.js.map +0 -1
  762. package/lib/esm/widgets/xml-viewer/components/Attributes/index.js +0 -11
  763. package/lib/esm/widgets/xml-viewer/components/Attributes/index.js.map +0 -1
  764. package/lib/esm/widgets/xml-viewer/components/CDataTag/index.js +0 -8
  765. package/lib/esm/widgets/xml-viewer/components/CDataTag/index.js.map +0 -1
  766. package/lib/esm/widgets/xml-viewer/components/CollapseIcon/index.js +0 -11
  767. package/lib/esm/widgets/xml-viewer/components/CollapseIcon/index.js.map +0 -1
  768. package/lib/esm/widgets/xml-viewer/components/CommentTag/index.js +0 -11
  769. package/lib/esm/widgets/xml-viewer/components/CommentTag/index.js.map +0 -1
  770. package/lib/esm/widgets/xml-viewer/components/DeclarationTag/index.js +0 -9
  771. package/lib/esm/widgets/xml-viewer/components/DeclarationTag/index.js.map +0 -1
  772. package/lib/esm/widgets/xml-viewer/components/Elements/index.js +0 -36
  773. package/lib/esm/widgets/xml-viewer/components/Elements/index.js.map +0 -1
  774. package/lib/esm/widgets/xml-viewer/components/InvalidXml/index.js +0 -5
  775. package/lib/esm/widgets/xml-viewer/components/InvalidXml/index.js.map +0 -1
  776. package/lib/esm/widgets/xml-viewer/components/Tag/index.js +0 -13
  777. package/lib/esm/widgets/xml-viewer/components/Tag/index.js.map +0 -1
  778. package/lib/esm/widgets/xml-viewer/components/TextElement/index.js +0 -13
  779. package/lib/esm/widgets/xml-viewer/components/TextElement/index.js.map +0 -1
  780. package/lib/esm/widgets/xml-viewer/components/XMLViewer.js +0 -39
  781. package/lib/esm/widgets/xml-viewer/components/XMLViewer.js.map +0 -1
  782. package/lib/esm/widgets/xml-viewer/components/types.js +0 -2
  783. package/lib/esm/widgets/xml-viewer/components/types.js.map +0 -1
  784. package/lib/esm/widgets/xml-viewer/constants/index.js +0 -27
  785. package/lib/esm/widgets/xml-viewer/constants/index.js.map +0 -1
  786. package/lib/esm/widgets/xml-viewer/context/xml-viewer-context.js +0 -10
  787. package/lib/esm/widgets/xml-viewer/context/xml-viewer-context.js.map +0 -1
  788. package/lib/esm/widgets/xml-viewer/helpers/index.js +0 -40
  789. package/lib/esm/widgets/xml-viewer/helpers/index.js.map +0 -1
  790. package/lib/esm/widgets/xml-viewer/hooks/useCollapsible.js +0 -22
  791. package/lib/esm/widgets/xml-viewer/hooks/useCollapsible.js.map +0 -1
  792. package/lib/esm/widgets/xml-viewer/hooks/useXMLViewer.js +0 -31
  793. package/lib/esm/widgets/xml-viewer/hooks/useXMLViewer.js.map +0 -1
  794. package/lib/esm/widgets/xml-viewer/index.js +0 -3
  795. package/lib/esm/widgets/xml-viewer/index.js.map +0 -1
  796. package/lib/esm/widgets/xml-viewer/types/index.js +0 -2
  797. package/lib/esm/widgets/xml-viewer/types/index.js.map +0 -1
  798. package/lib/tsconfig.tsbuildinfo +0 -1
  799. package/lib/types/core/components/Avatar.d.ts +0 -16
  800. package/lib/types/core/components/Avatar.d.ts.map +0 -1
  801. package/lib/types/core/components/Badge.d.ts +0 -21
  802. package/lib/types/core/components/Badge.d.ts.map +0 -1
  803. package/lib/types/core/components/Button.d.ts +0 -14
  804. package/lib/types/core/components/Button.d.ts.map +0 -1
  805. package/lib/types/core/components/Center.d.ts +0 -8
  806. package/lib/types/core/components/Center.d.ts.map +0 -1
  807. package/lib/types/core/components/ComboBox.d.ts +0 -124
  808. package/lib/types/core/components/ComboBox.d.ts.map +0 -1
  809. package/lib/types/core/components/ConfirmModal.d.ts +0 -11
  810. package/lib/types/core/components/ConfirmModal.d.ts.map +0 -1
  811. package/lib/types/core/components/DeleteModal.d.ts +0 -11
  812. package/lib/types/core/components/DeleteModal.d.ts.map +0 -1
  813. package/lib/types/core/components/Divider.d.ts +0 -6
  814. package/lib/types/core/components/Divider.d.ts.map +0 -1
  815. package/lib/types/core/components/Dropdown.d.ts +0 -15
  816. package/lib/types/core/components/Dropdown.d.ts.map +0 -1
  817. package/lib/types/core/components/DropdownList.d.ts +0 -13
  818. package/lib/types/core/components/DropdownList.d.ts.map +0 -1
  819. package/lib/types/core/components/EmptyCollection.d.ts +0 -9
  820. package/lib/types/core/components/EmptyCollection.d.ts.map +0 -1
  821. package/lib/types/core/components/FileUpload.d.ts +0 -29
  822. package/lib/types/core/components/FileUpload.d.ts.map +0 -1
  823. package/lib/types/core/components/FormItem.d.ts +0 -13
  824. package/lib/types/core/components/FormItem.d.ts.map +0 -1
  825. package/lib/types/core/components/InputList.d.ts +0 -12
  826. package/lib/types/core/components/InputList.d.ts.map +0 -1
  827. package/lib/types/core/components/Link.d.ts +0 -7
  828. package/lib/types/core/components/Link.d.ts.map +0 -1
  829. package/lib/types/core/components/MenuList.d.ts +0 -14
  830. package/lib/types/core/components/MenuList.d.ts.map +0 -1
  831. package/lib/types/core/components/MessageBox.d.ts +0 -36
  832. package/lib/types/core/components/MessageBox.d.ts.map +0 -1
  833. package/lib/types/core/components/Modal.d.ts +0 -30
  834. package/lib/types/core/components/Modal.d.ts.map +0 -1
  835. package/lib/types/core/components/NumberInput.d.ts +0 -16
  836. package/lib/types/core/components/NumberInput.d.ts.map +0 -1
  837. package/lib/types/core/components/Overlay.d.ts +0 -25
  838. package/lib/types/core/components/Overlay.d.ts.map +0 -1
  839. package/lib/types/core/components/Panel.d.ts +0 -11
  840. package/lib/types/core/components/Panel.d.ts.map +0 -1
  841. package/lib/types/core/components/Portal.d.ts +0 -6
  842. package/lib/types/core/components/Portal.d.ts.map +0 -1
  843. package/lib/types/core/components/RadioGroup.d.ts +0 -26
  844. package/lib/types/core/components/RadioGroup.d.ts.map +0 -1
  845. package/lib/types/core/components/SelectBox.d.ts +0 -36
  846. package/lib/types/core/components/SelectBox.d.ts.map +0 -1
  847. package/lib/types/core/components/SelectList.d.ts +0 -19
  848. package/lib/types/core/components/SelectList.d.ts.map +0 -1
  849. package/lib/types/core/components/SelectStack.d.ts +0 -13
  850. package/lib/types/core/components/SelectStack.d.ts.map +0 -1
  851. package/lib/types/core/components/SidePanel.d.ts +0 -11
  852. package/lib/types/core/components/SidePanel.d.ts.map +0 -1
  853. package/lib/types/core/components/Spinner.d.ts +0 -7
  854. package/lib/types/core/components/Spinner.d.ts.map +0 -1
  855. package/lib/types/core/components/Switch.d.ts +0 -11
  856. package/lib/types/core/components/Switch.d.ts.map +0 -1
  857. package/lib/types/core/components/TagsInput.d.ts +0 -16
  858. package/lib/types/core/components/TagsInput.d.ts.map +0 -1
  859. package/lib/types/core/components/index.d.ts +0 -40
  860. package/lib/types/core/components/index.d.ts.map +0 -1
  861. package/lib/types/core/components/libs/utils.d.ts +0 -3
  862. package/lib/types/core/components/libs/utils.d.ts.map +0 -1
  863. package/lib/types/core/components/libs/visuallyHidden.d.ts +0 -7
  864. package/lib/types/core/components/libs/visuallyHidden.d.ts.map +0 -1
  865. package/lib/types/core/components/popup/Popup.d.ts +0 -26
  866. package/lib/types/core/components/popup/Popup.d.ts.map +0 -1
  867. package/lib/types/core/components/popup/PopupController.d.ts +0 -41
  868. package/lib/types/core/components/popup/PopupController.d.ts.map +0 -1
  869. package/lib/types/core/components/popup/index.d.ts +0 -4
  870. package/lib/types/core/components/popup/index.d.ts.map +0 -1
  871. package/lib/types/core/components/popup/position.d.ts +0 -59
  872. package/lib/types/core/components/popup/position.d.ts.map +0 -1
  873. package/lib/types/core/components/popup/utils.d.ts +0 -30
  874. package/lib/types/core/components/popup/utils.d.ts.map +0 -1
  875. package/lib/types/core/components/shadcn/breadcrumb.d.ts +0 -15
  876. package/lib/types/core/components/shadcn/breadcrumb.d.ts.map +0 -1
  877. package/lib/types/core/components/shadcn/button.d.ts +0 -27
  878. package/lib/types/core/components/shadcn/button.d.ts.map +0 -1
  879. package/lib/types/core/components/shadcn/calendar.d.ts +0 -11
  880. package/lib/types/core/components/shadcn/calendar.d.ts.map +0 -1
  881. package/lib/types/core/components/shadcn/card.d.ts +0 -9
  882. package/lib/types/core/components/shadcn/card.d.ts.map +0 -1
  883. package/lib/types/core/components/shadcn/checkbox.d.ts +0 -5
  884. package/lib/types/core/components/shadcn/checkbox.d.ts.map +0 -1
  885. package/lib/types/core/components/shadcn/command.d.ts +0 -17
  886. package/lib/types/core/components/shadcn/command.d.ts.map +0 -1
  887. package/lib/types/core/components/shadcn/dialog.d.ts +0 -38
  888. package/lib/types/core/components/shadcn/dialog.d.ts.map +0 -1
  889. package/lib/types/core/components/shadcn/filters/DynamicLabel.d.ts +0 -9
  890. package/lib/types/core/components/shadcn/filters/DynamicLabel.d.ts.map +0 -1
  891. package/lib/types/core/components/shadcn/filters/animateChangeInHeight.d.ts +0 -7
  892. package/lib/types/core/components/shadcn/filters/animateChangeInHeight.d.ts.map +0 -1
  893. package/lib/types/core/components/shadcn/filters/comboBox/DateCombobox.d.ts +0 -6
  894. package/lib/types/core/components/shadcn/filters/comboBox/DateCombobox.d.ts.map +0 -1
  895. package/lib/types/core/components/shadcn/filters/comboBox/SelectCombobox.d.ts +0 -9
  896. package/lib/types/core/components/shadcn/filters/comboBox/SelectCombobox.d.ts.map +0 -1
  897. package/lib/types/core/components/shadcn/filters/comboBox/StringListCombobox.d.ts +0 -6
  898. package/lib/types/core/components/shadcn/filters/comboBox/StringListCombobox.d.ts.map +0 -1
  899. package/lib/types/core/components/shadcn/filters/comboBox/TextCombobox.d.ts +0 -6
  900. package/lib/types/core/components/shadcn/filters/comboBox/TextCombobox.d.ts.map +0 -1
  901. package/lib/types/core/components/shadcn/filters/comboBox/comboBox.d.ts +0 -5
  902. package/lib/types/core/components/shadcn/filters/comboBox/comboBox.d.ts.map +0 -1
  903. package/lib/types/core/components/shadcn/filters/filter/SelectFilter.d.ts +0 -12
  904. package/lib/types/core/components/shadcn/filters/filter/SelectFilter.d.ts.map +0 -1
  905. package/lib/types/core/components/shadcn/filters/filter/StringListFilter.d.ts +0 -11
  906. package/lib/types/core/components/shadcn/filters/filter/StringListFilter.d.ts.map +0 -1
  907. package/lib/types/core/components/shadcn/filters/filter/TextFilter.d.ts +0 -13
  908. package/lib/types/core/components/shadcn/filters/filter/TextFilter.d.ts.map +0 -1
  909. package/lib/types/core/components/shadcn/filters/filter/dateFilter.d.ts +0 -14
  910. package/lib/types/core/components/shadcn/filters/filter/dateFilter.d.ts.map +0 -1
  911. package/lib/types/core/components/shadcn/filters/filter-styles.d.ts +0 -2
  912. package/lib/types/core/components/shadcn/filters/filter-styles.d.ts.map +0 -1
  913. package/lib/types/core/components/shadcn/filters/filterBar.d.ts +0 -20
  914. package/lib/types/core/components/shadcn/filters/filterBar.d.ts.map +0 -1
  915. package/lib/types/core/components/shadcn/filters/filters.d.ts +0 -10
  916. package/lib/types/core/components/shadcn/filters/filters.d.ts.map +0 -1
  917. package/lib/types/core/components/shadcn/filters/index.d.ts +0 -6
  918. package/lib/types/core/components/shadcn/filters/index.d.ts.map +0 -1
  919. package/lib/types/core/components/shadcn/filters/types.d.ts +0 -35
  920. package/lib/types/core/components/shadcn/filters/types.d.ts.map +0 -1
  921. package/lib/types/core/components/shadcn/heading.d.ts +0 -6
  922. package/lib/types/core/components/shadcn/heading.d.ts.map +0 -1
  923. package/lib/types/core/components/shadcn/index.d.ts +0 -23
  924. package/lib/types/core/components/shadcn/index.d.ts.map +0 -1
  925. package/lib/types/core/components/shadcn/input.d.ts +0 -17
  926. package/lib/types/core/components/shadcn/input.d.ts.map +0 -1
  927. package/lib/types/core/components/shadcn/label.d.ts +0 -8
  928. package/lib/types/core/components/shadcn/label.d.ts.map +0 -1
  929. package/lib/types/core/components/shadcn/popover.d.ts +0 -24
  930. package/lib/types/core/components/shadcn/popover.d.ts.map +0 -1
  931. package/lib/types/core/components/shadcn/resizeable.d.ts +0 -9
  932. package/lib/types/core/components/shadcn/resizeable.d.ts.map +0 -1
  933. package/lib/types/core/components/shadcn/selectBox.d.ts +0 -36
  934. package/lib/types/core/components/shadcn/selectBox.d.ts.map +0 -1
  935. package/lib/types/core/components/shadcn/separator.d.ts +0 -5
  936. package/lib/types/core/components/shadcn/separator.d.ts.map +0 -1
  937. package/lib/types/core/components/shadcn/tabs.d.ts +0 -33
  938. package/lib/types/core/components/shadcn/tabs.d.ts.map +0 -1
  939. package/lib/types/core/components/shadcn/text.d.ts +0 -11
  940. package/lib/types/core/components/shadcn/text.d.ts.map +0 -1
  941. package/lib/types/core/components/shadcn/textarea.d.ts +0 -4
  942. package/lib/types/core/components/shadcn/textarea.d.ts.map +0 -1
  943. package/lib/types/core/components/shadcn/theme/ThemeProvider.d.ts +0 -15
  944. package/lib/types/core/components/shadcn/theme/ThemeProvider.d.ts.map +0 -1
  945. package/lib/types/core/components/shadcn/theme/ThemeSwitcher.d.ts +0 -10
  946. package/lib/types/core/components/shadcn/theme/ThemeSwitcher.d.ts.map +0 -1
  947. package/lib/types/core/components/shadcn/tooltip.d.ts +0 -20
  948. package/lib/types/core/components/shadcn/tooltip.d.ts.map +0 -1
  949. package/lib/types/core/components/styles.d.ts +0 -7
  950. package/lib/types/core/components/styles.d.ts.map +0 -1
  951. package/lib/types/core/components/table/index.d.ts +0 -19
  952. package/lib/types/core/components/table/index.d.ts.map +0 -1
  953. package/lib/types/core/components/tabs/Tabs.d.ts +0 -25
  954. package/lib/types/core/components/tabs/Tabs.d.ts.map +0 -1
  955. package/lib/types/core/components/tabs/TabsContext.d.ts +0 -17
  956. package/lib/types/core/components/tabs/TabsContext.d.ts.map +0 -1
  957. package/lib/types/core/components/tabs/index.d.ts +0 -3
  958. package/lib/types/core/components/tabs/index.d.ts.map +0 -1
  959. package/lib/types/core/components/toast/NotificationPanel.d.ts +0 -8
  960. package/lib/types/core/components/toast/NotificationPanel.d.ts.map +0 -1
  961. package/lib/types/core/components/toast/ToastContext.d.ts +0 -6
  962. package/lib/types/core/components/toast/ToastContext.d.ts.map +0 -1
  963. package/lib/types/core/components/toast/ToastProps.d.ts +0 -7
  964. package/lib/types/core/components/toast/ToastProps.d.ts.map +0 -1
  965. package/lib/types/core/components/toast/ToastProvider.d.ts +0 -6
  966. package/lib/types/core/components/toast/ToastProvider.d.ts.map +0 -1
  967. package/lib/types/core/components/toast/index.d.ts +0 -3
  968. package/lib/types/core/components/toast/index.d.ts.map +0 -1
  969. package/lib/types/core/hooks/CompositeState.d.ts +0 -137
  970. package/lib/types/core/hooks/CompositeState.d.ts.map +0 -1
  971. package/lib/types/core/hooks/PortalContainerProvider.d.ts +0 -7
  972. package/lib/types/core/hooks/PortalContainerProvider.d.ts.map +0 -1
  973. package/lib/types/core/hooks/SharedState.d.ts +0 -10
  974. package/lib/types/core/hooks/SharedState.d.ts.map +0 -1
  975. package/lib/types/core/hooks/index.d.ts +0 -16
  976. package/lib/types/core/hooks/index.d.ts.map +0 -1
  977. package/lib/types/core/hooks/useClickOutside.d.ts +0 -8
  978. package/lib/types/core/hooks/useClickOutside.d.ts.map +0 -1
  979. package/lib/types/core/hooks/useCopyToClipboard.d.ts +0 -5
  980. package/lib/types/core/hooks/useCopyToClipboard.d.ts.map +0 -1
  981. package/lib/types/core/hooks/useDarkMode.d.ts +0 -2
  982. package/lib/types/core/hooks/useDarkMode.d.ts.map +0 -1
  983. package/lib/types/core/hooks/useDebounce.d.ts +0 -2
  984. package/lib/types/core/hooks/useDebounce.d.ts.map +0 -1
  985. package/lib/types/core/hooks/useEventSource.d.ts +0 -2
  986. package/lib/types/core/hooks/useEventSource.d.ts.map +0 -1
  987. package/lib/types/core/hooks/useFetch.d.ts +0 -24
  988. package/lib/types/core/hooks/useFetch.d.ts.map +0 -1
  989. package/lib/types/core/hooks/useFlag.d.ts +0 -9
  990. package/lib/types/core/hooks/useFlag.d.ts.map +0 -1
  991. package/lib/types/core/hooks/useIntersectionObserver.d.ts +0 -14
  992. package/lib/types/core/hooks/useIntersectionObserver.d.ts.map +0 -1
  993. package/lib/types/core/hooks/useIsFistRendering.d.ts +0 -2
  994. package/lib/types/core/hooks/useIsFistRendering.d.ts.map +0 -1
  995. package/lib/types/core/hooks/useSafeLayoutEffect.d.ts +0 -4
  996. package/lib/types/core/hooks/useSafeLayoutEffect.d.ts.map +0 -1
  997. package/lib/types/core/hooks/useScrollableSearch.d.ts +0 -82
  998. package/lib/types/core/hooks/useScrollableSearch.d.ts.map +0 -1
  999. package/lib/types/core/hooks/useSharedValue.d.ts +0 -12
  1000. package/lib/types/core/hooks/useSharedValue.d.ts.map +0 -1
  1001. package/lib/types/core/index.d.ts +0 -4
  1002. package/lib/types/core/index.d.ts.map +0 -1
  1003. package/lib/types/core/utils/cn.d.ts +0 -3
  1004. package/lib/types/core/utils/cn.d.ts.map +0 -1
  1005. package/lib/types/core/utils/index.d.ts +0 -2
  1006. package/lib/types/core/utils/index.d.ts.map +0 -1
  1007. package/lib/types/env/index.d.ts +0 -76
  1008. package/lib/types/env/index.d.ts.map +0 -1
  1009. package/lib/types/features/activity-doc/ActivityDoc.d.ts +0 -14
  1010. package/lib/types/features/activity-doc/ActivityDoc.d.ts.map +0 -1
  1011. package/lib/types/features/activity-doc/index.d.ts +0 -2
  1012. package/lib/types/features/activity-doc/index.d.ts.map +0 -1
  1013. package/lib/types/features/agent/PayloadBuilder.d.ts +0 -66
  1014. package/lib/types/features/agent/PayloadBuilder.d.ts.map +0 -1
  1015. package/lib/types/features/agent/chat/AgentChart.d.ts +0 -48
  1016. package/lib/types/features/agent/chat/AgentChart.d.ts.map +0 -1
  1017. package/lib/types/features/agent/chat/AnimatedThinkingDots.d.ts +0 -38
  1018. package/lib/types/features/agent/chat/AnimatedThinkingDots.d.ts.map +0 -1
  1019. package/lib/types/features/agent/chat/JumpingDots.d.ts +0 -7
  1020. package/lib/types/features/agent/chat/JumpingDots.d.ts.map +0 -1
  1021. package/lib/types/features/agent/chat/ModernAgentConversation.d.ts +0 -25
  1022. package/lib/types/features/agent/chat/ModernAgentConversation.d.ts.map +0 -1
  1023. package/lib/types/features/agent/chat/ModernAgentOutput/AllMessagesMixed.d.ts +0 -23
  1024. package/lib/types/features/agent/chat/ModernAgentOutput/AllMessagesMixed.d.ts.map +0 -1
  1025. package/lib/types/features/agent/chat/ModernAgentOutput/Header.d.ts +0 -20
  1026. package/lib/types/features/agent/chat/ModernAgentOutput/Header.d.ts.map +0 -1
  1027. package/lib/types/features/agent/chat/ModernAgentOutput/InlineSlideInPanel.d.ts +0 -11
  1028. package/lib/types/features/agent/chat/ModernAgentOutput/InlineSlideInPanel.d.ts.map +0 -1
  1029. package/lib/types/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.d.ts +0 -18
  1030. package/lib/types/features/agent/chat/ModernAgentOutput/InlineSlidingPlanPanel.d.ts.map +0 -1
  1031. package/lib/types/features/agent/chat/ModernAgentOutput/MessageInput.d.ts +0 -11
  1032. package/lib/types/features/agent/chat/ModernAgentOutput/MessageInput.d.ts.map +0 -1
  1033. package/lib/types/features/agent/chat/ModernAgentOutput/MessageItem.d.ts +0 -8
  1034. package/lib/types/features/agent/chat/ModernAgentOutput/MessageItem.d.ts.map +0 -1
  1035. package/lib/types/features/agent/chat/ModernAgentOutput/MessagesContainer.d.ts +0 -10
  1036. package/lib/types/features/agent/chat/ModernAgentOutput/MessagesContainer.d.ts.map +0 -1
  1037. package/lib/types/features/agent/chat/ModernAgentOutput/PlanPanel.d.ts +0 -9
  1038. package/lib/types/features/agent/chat/ModernAgentOutput/PlanPanel.d.ts.map +0 -1
  1039. package/lib/types/features/agent/chat/ModernAgentOutput/SlideInPanel.d.ts +0 -11
  1040. package/lib/types/features/agent/chat/ModernAgentOutput/SlideInPanel.d.ts.map +0 -1
  1041. package/lib/types/features/agent/chat/ModernAgentOutput/SlidingMessages.d.ts +0 -8
  1042. package/lib/types/features/agent/chat/ModernAgentOutput/SlidingMessages.d.ts.map +0 -1
  1043. package/lib/types/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.d.ts +0 -10
  1044. package/lib/types/features/agent/chat/ModernAgentOutput/SlidingPlanPanel.d.ts.map +0 -1
  1045. package/lib/types/features/agent/chat/ModernAgentOutput/StackedMessages.d.ts +0 -8
  1046. package/lib/types/features/agent/chat/ModernAgentOutput/StackedMessages.d.ts.map +0 -1
  1047. package/lib/types/features/agent/chat/ModernAgentOutput/WorkstreamTabs.d.ts +0 -22
  1048. package/lib/types/features/agent/chat/ModernAgentOutput/WorkstreamTabs.d.ts.map +0 -1
  1049. package/lib/types/features/agent/chat/ModernAgentOutput/utils.d.ts +0 -25
  1050. package/lib/types/features/agent/chat/ModernAgentOutput/utils.d.ts.map +0 -1
  1051. package/lib/types/features/agent/chat/SlidingThinkingIndicator.d.ts +0 -18
  1052. package/lib/types/features/agent/chat/SlidingThinkingIndicator.d.ts.map +0 -1
  1053. package/lib/types/features/agent/chat/WaitingMessages.d.ts +0 -2
  1054. package/lib/types/features/agent/chat/WaitingMessages.d.ts.map +0 -1
  1055. package/lib/types/features/agent/chat/index.d.ts +0 -6
  1056. package/lib/types/features/agent/chat/index.d.ts.map +0 -1
  1057. package/lib/types/features/agent/createChartTool.d.ts +0 -178
  1058. package/lib/types/features/agent/createChartTool.d.ts.map +0 -1
  1059. package/lib/types/features/agent/examples.d.ts +0 -59
  1060. package/lib/types/features/agent/examples.d.ts.map +0 -1
  1061. package/lib/types/features/agent/index.d.ts +0 -5
  1062. package/lib/types/features/agent/index.d.ts.map +0 -1
  1063. package/lib/types/features/agent/visualization.d.ts +0 -95
  1064. package/lib/types/features/agent/visualization.d.ts.map +0 -1
  1065. package/lib/types/features/errors/PanelErrorBoundary.d.ts +0 -5
  1066. package/lib/types/features/errors/PanelErrorBoundary.d.ts.map +0 -1
  1067. package/lib/types/features/errors/RowErrorBoundary.d.ts +0 -8
  1068. package/lib/types/features/errors/RowErrorBoundary.d.ts.map +0 -1
  1069. package/lib/types/features/errors/VertesiaErrorBoundary.d.ts +0 -12
  1070. package/lib/types/features/errors/VertesiaErrorBoundary.d.ts.map +0 -1
  1071. package/lib/types/features/errors/WidgetErrorBoundary.d.ts +0 -5
  1072. package/lib/types/features/errors/WidgetErrorBoundary.d.ts.map +0 -1
  1073. package/lib/types/features/errors/index.d.ts +0 -5
  1074. package/lib/types/features/errors/index.d.ts.map +0 -1
  1075. package/lib/types/features/facets/AgentRunnerFacetsNav.d.ts +0 -14
  1076. package/lib/types/features/facets/AgentRunnerFacetsNav.d.ts.map +0 -1
  1077. package/lib/types/features/facets/CollectionsFacetsNav.d.ts +0 -14
  1078. package/lib/types/features/facets/CollectionsFacetsNav.d.ts.map +0 -1
  1079. package/lib/types/features/facets/DocumentsFacetsNav.d.ts +0 -17
  1080. package/lib/types/features/facets/DocumentsFacetsNav.d.ts.map +0 -1
  1081. package/lib/types/features/facets/EnvironmentFacet.d.ts +0 -10
  1082. package/lib/types/features/facets/EnvironmentFacet.d.ts.map +0 -1
  1083. package/lib/types/features/facets/InteractionsFacetsNav.d.ts +0 -14
  1084. package/lib/types/features/facets/InteractionsFacetsNav.d.ts.map +0 -1
  1085. package/lib/types/features/facets/PromptsFacetsNav.d.ts +0 -15
  1086. package/lib/types/features/facets/PromptsFacetsNav.d.ts.map +0 -1
  1087. package/lib/types/features/facets/RunsFacetsNav.d.ts +0 -20
  1088. package/lib/types/features/facets/RunsFacetsNav.d.ts.map +0 -1
  1089. package/lib/types/features/facets/WorkflowExecutionsFacetsNav.d.ts +0 -14
  1090. package/lib/types/features/facets/WorkflowExecutionsFacetsNav.d.ts.map +0 -1
  1091. package/lib/types/features/facets/index.d.ts +0 -16
  1092. package/lib/types/features/facets/index.d.ts.map +0 -1
  1093. package/lib/types/features/facets/utils/SearchInterface.d.ts +0 -14
  1094. package/lib/types/features/facets/utils/SearchInterface.d.ts.map +0 -1
  1095. package/lib/types/features/facets/utils/StringFacet.d.ts +0 -11
  1096. package/lib/types/features/facets/utils/StringFacet.d.ts.map +0 -1
  1097. package/lib/types/features/facets/utils/StringListFacet.d.ts +0 -11
  1098. package/lib/types/features/facets/utils/StringListFacet.d.ts.map +0 -1
  1099. package/lib/types/features/facets/utils/TypeFacet.d.ts +0 -16
  1100. package/lib/types/features/facets/utils/TypeFacet.d.ts.map +0 -1
  1101. package/lib/types/features/facets/utils/VEnvironmentFacet.d.ts +0 -12
  1102. package/lib/types/features/facets/utils/VEnvironmentFacet.d.ts.map +0 -1
  1103. package/lib/types/features/facets/utils/VInteractionFacet.d.ts +0 -15
  1104. package/lib/types/features/facets/utils/VInteractionFacet.d.ts.map +0 -1
  1105. package/lib/types/features/facets/utils/VStringFacet.d.ts +0 -21
  1106. package/lib/types/features/facets/utils/VStringFacet.d.ts.map +0 -1
  1107. package/lib/types/features/facets/utils/VTypeFacet.d.ts +0 -12
  1108. package/lib/types/features/facets/utils/VTypeFacet.d.ts.map +0 -1
  1109. package/lib/types/features/facets/utils/VUserFacet.d.ts +0 -11
  1110. package/lib/types/features/facets/utils/VUserFacet.d.ts.map +0 -1
  1111. package/lib/types/features/facets/utils/utils.d.ts +0 -4
  1112. package/lib/types/features/facets/utils/utils.d.ts.map +0 -1
  1113. package/lib/types/features/index.d.ts +0 -12
  1114. package/lib/types/features/index.d.ts.map +0 -1
  1115. package/lib/types/features/layout/GenericPageNavHeader.d.ts +0 -14
  1116. package/lib/types/features/layout/GenericPageNavHeader.d.ts.map +0 -1
  1117. package/lib/types/features/layout/NotFoundView.d.ts +0 -5
  1118. package/lib/types/features/layout/NotFoundView.d.ts.map +0 -1
  1119. package/lib/types/features/layout/index.d.ts +0 -3
  1120. package/lib/types/features/layout/index.d.ts.map +0 -1
  1121. package/lib/types/features/magic-pdf/AnnotatedImageSlider.d.ts +0 -13
  1122. package/lib/types/features/magic-pdf/AnnotatedImageSlider.d.ts.map +0 -1
  1123. package/lib/types/features/magic-pdf/DownloadPopover.d.ts +0 -7
  1124. package/lib/types/features/magic-pdf/DownloadPopover.d.ts.map +0 -1
  1125. package/lib/types/features/magic-pdf/ExtractedContentView.d.ts +0 -8
  1126. package/lib/types/features/magic-pdf/ExtractedContentView.d.ts.map +0 -1
  1127. package/lib/types/features/magic-pdf/MagicPdfProvider.d.ts +0 -58
  1128. package/lib/types/features/magic-pdf/MagicPdfProvider.d.ts.map +0 -1
  1129. package/lib/types/features/magic-pdf/MagicPdfView.d.ts +0 -7
  1130. package/lib/types/features/magic-pdf/MagicPdfView.d.ts.map +0 -1
  1131. package/lib/types/features/magic-pdf/index.d.ts +0 -2
  1132. package/lib/types/features/magic-pdf/index.d.ts.map +0 -1
  1133. package/lib/types/features/magic-pdf/types.d.ts +0 -2
  1134. package/lib/types/features/magic-pdf/types.d.ts.map +0 -1
  1135. package/lib/types/features/pdf-viewer/PdfPageRenderer.d.ts +0 -83
  1136. package/lib/types/features/pdf-viewer/PdfPageRenderer.d.ts.map +0 -1
  1137. package/lib/types/features/pdf-viewer/PdfPageSlider.d.ts +0 -29
  1138. package/lib/types/features/pdf-viewer/PdfPageSlider.d.ts.map +0 -1
  1139. package/lib/types/features/pdf-viewer/SimplePdfViewer.d.ts +0 -19
  1140. package/lib/types/features/pdf-viewer/SimplePdfViewer.d.ts.map +0 -1
  1141. package/lib/types/features/pdf-viewer/index.d.ts +0 -4
  1142. package/lib/types/features/pdf-viewer/index.d.ts.map +0 -1
  1143. package/lib/types/features/permissions/SecureButton.d.ts +0 -8
  1144. package/lib/types/features/permissions/SecureButton.d.ts.map +0 -1
  1145. package/lib/types/features/permissions/SecureSidebarItem.d.ts +0 -8
  1146. package/lib/types/features/permissions/SecureSidebarItem.d.ts.map +0 -1
  1147. package/lib/types/features/permissions/UserPermissionsProvider.d.ts +0 -21
  1148. package/lib/types/features/permissions/UserPermissionsProvider.d.ts.map +0 -1
  1149. package/lib/types/features/permissions/helpers.d.ts +0 -5
  1150. package/lib/types/features/permissions/helpers.d.ts.map +0 -1
  1151. package/lib/types/features/permissions/index.d.ts +0 -5
  1152. package/lib/types/features/permissions/index.d.ts.map +0 -1
  1153. package/lib/types/features/store/collections/BrowseCollectionView.d.ts +0 -7
  1154. package/lib/types/features/store/collections/BrowseCollectionView.d.ts.map +0 -1
  1155. package/lib/types/features/store/collections/CollectionsTable.d.ts +0 -6
  1156. package/lib/types/features/store/collections/CollectionsTable.d.ts.map +0 -1
  1157. package/lib/types/features/store/collections/CreateCollection.d.ts +0 -13
  1158. package/lib/types/features/store/collections/CreateCollection.d.ts.map +0 -1
  1159. package/lib/types/features/store/collections/EditCollectionView.d.ts +0 -8
  1160. package/lib/types/features/store/collections/EditCollectionView.d.ts.map +0 -1
  1161. package/lib/types/features/store/collections/SelectCollection.d.ts +0 -20
  1162. package/lib/types/features/store/collections/SelectCollection.d.ts.map +0 -1
  1163. package/lib/types/features/store/collections/SharedPropsEditor.d.ts +0 -7
  1164. package/lib/types/features/store/collections/SharedPropsEditor.d.ts.map +0 -1
  1165. package/lib/types/features/store/collections/SyncMemberHeadsToggle.d.ts +0 -7
  1166. package/lib/types/features/store/collections/SyncMemberHeadsToggle.d.ts.map +0 -1
  1167. package/lib/types/features/store/collections/index.d.ts +0 -8
  1168. package/lib/types/features/store/collections/index.d.ts.map +0 -1
  1169. package/lib/types/features/store/index.d.ts +0 -4
  1170. package/lib/types/features/store/index.d.ts.map +0 -1
  1171. package/lib/types/features/store/objects/DocumentPreviewPanel.d.ts +0 -8
  1172. package/lib/types/features/store/objects/DocumentPreviewPanel.d.ts.map +0 -1
  1173. package/lib/types/features/store/objects/DocumentSearchResults.d.ts +0 -20
  1174. package/lib/types/features/store/objects/DocumentSearchResults.d.ts.map +0 -1
  1175. package/lib/types/features/store/objects/DocumentSelectionProvider.d.ts +0 -33
  1176. package/lib/types/features/store/objects/DocumentSelectionProvider.d.ts.map +0 -1
  1177. package/lib/types/features/store/objects/DocumentTable.d.ts +0 -25
  1178. package/lib/types/features/store/objects/DocumentTable.d.ts.map +0 -1
  1179. package/lib/types/features/store/objects/ExportPropertiesModal.d.ts +0 -12
  1180. package/lib/types/features/store/objects/ExportPropertiesModal.d.ts.map +0 -1
  1181. package/lib/types/features/store/objects/components/ContentDispositionButton.d.ts +0 -9
  1182. package/lib/types/features/store/objects/components/ContentDispositionButton.d.ts.map +0 -1
  1183. package/lib/types/features/store/objects/components/ContentOverview.d.ts +0 -9
  1184. package/lib/types/features/store/objects/components/ContentOverview.d.ts.map +0 -1
  1185. package/lib/types/features/store/objects/components/DocumentIcon.d.ts +0 -18
  1186. package/lib/types/features/store/objects/components/DocumentIcon.d.ts.map +0 -1
  1187. package/lib/types/features/store/objects/components/DocumentInput.d.ts +0 -8
  1188. package/lib/types/features/store/objects/components/DocumentInput.d.ts.map +0 -1
  1189. package/lib/types/features/store/objects/components/PropertiesEditorModal.d.ts +0 -9
  1190. package/lib/types/features/store/objects/components/PropertiesEditorModal.d.ts.map +0 -1
  1191. package/lib/types/features/store/objects/components/SaveVersionConfirmModal.d.ts +0 -9
  1192. package/lib/types/features/store/objects/components/SaveVersionConfirmModal.d.ts.map +0 -1
  1193. package/lib/types/features/store/objects/components/SelectDocument.d.ts +0 -9
  1194. package/lib/types/features/store/objects/components/SelectDocument.d.ts.map +0 -1
  1195. package/lib/types/features/store/objects/components/SelectDocumentModal.d.ts +0 -9
  1196. package/lib/types/features/store/objects/components/SelectDocumentModal.d.ts.map +0 -1
  1197. package/lib/types/features/store/objects/components/VectorSearchWidget.d.ts +0 -12
  1198. package/lib/types/features/store/objects/components/VectorSearchWidget.d.ts.map +0 -1
  1199. package/lib/types/features/store/objects/components/index.d.ts +0 -10
  1200. package/lib/types/features/store/objects/components/index.d.ts.map +0 -1
  1201. package/lib/types/features/store/objects/components/useContentPanelHooks.d.ts +0 -30
  1202. package/lib/types/features/store/objects/components/useContentPanelHooks.d.ts.map +0 -1
  1203. package/lib/types/features/store/objects/components/useDownloadObject.d.ts +0 -4
  1204. package/lib/types/features/store/objects/components/useDownloadObject.d.ts.map +0 -1
  1205. package/lib/types/features/store/objects/index.d.ts +0 -11
  1206. package/lib/types/features/store/objects/index.d.ts.map +0 -1
  1207. package/lib/types/features/store/objects/layout/DocumentTableColumn.d.ts +0 -18
  1208. package/lib/types/features/store/objects/layout/DocumentTableColumn.d.ts.map +0 -1
  1209. package/lib/types/features/store/objects/layout/documentLayout.d.ts +0 -20
  1210. package/lib/types/features/store/objects/layout/documentLayout.d.ts.map +0 -1
  1211. package/lib/types/features/store/objects/layout/index.d.ts +0 -3
  1212. package/lib/types/features/store/objects/layout/index.d.ts.map +0 -1
  1213. package/lib/types/features/store/objects/layout/renderers.d.ts +0 -3
  1214. package/lib/types/features/store/objects/layout/renderers.d.ts.map +0 -1
  1215. package/lib/types/features/store/objects/search/DocumentSearchContext.d.ts +0 -52
  1216. package/lib/types/features/store/objects/search/DocumentSearchContext.d.ts.map +0 -1
  1217. package/lib/types/features/store/objects/search/DocumentSearchProvider.d.ts +0 -14
  1218. package/lib/types/features/store/objects/search/DocumentSearchProvider.d.ts.map +0 -1
  1219. package/lib/types/features/store/objects/search/index.d.ts +0 -3
  1220. package/lib/types/features/store/objects/search/index.d.ts.map +0 -1
  1221. package/lib/types/features/store/objects/selection/ObjectsActionContext.d.ts +0 -26
  1222. package/lib/types/features/store/objects/selection/ObjectsActionContext.d.ts.map +0 -1
  1223. package/lib/types/features/store/objects/selection/ObjectsActionSpec.d.ts +0 -28
  1224. package/lib/types/features/store/objects/selection/ObjectsActionSpec.d.ts.map +0 -1
  1225. package/lib/types/features/store/objects/selection/SelectionActions.d.ts +0 -6
  1226. package/lib/types/features/store/objects/selection/SelectionActions.d.ts.map +0 -1
  1227. package/lib/types/features/store/objects/selection/actions/AddToCollectionAction.d.ts +0 -4
  1228. package/lib/types/features/store/objects/selection/actions/AddToCollectionAction.d.ts.map +0 -1
  1229. package/lib/types/features/store/objects/selection/actions/ChangeTypeAction.d.ts +0 -4
  1230. package/lib/types/features/store/objects/selection/actions/ChangeTypeAction.d.ts.map +0 -1
  1231. package/lib/types/features/store/objects/selection/actions/ConfirmAction.d.ts +0 -16
  1232. package/lib/types/features/store/objects/selection/actions/ConfirmAction.d.ts.map +0 -1
  1233. package/lib/types/features/store/objects/selection/actions/DeleteObjectsAction.d.ts +0 -5
  1234. package/lib/types/features/store/objects/selection/actions/DeleteObjectsAction.d.ts.map +0 -1
  1235. package/lib/types/features/store/objects/selection/actions/ExportPropertiesAction.d.ts +0 -4
  1236. package/lib/types/features/store/objects/selection/actions/ExportPropertiesAction.d.ts.map +0 -1
  1237. package/lib/types/features/store/objects/selection/actions/RemoveFromCollectionAction.d.ts +0 -4
  1238. package/lib/types/features/store/objects/selection/actions/RemoveFromCollectionAction.d.ts.map +0 -1
  1239. package/lib/types/features/store/objects/selection/actions/StartWorkflowComponent.d.ts +0 -4
  1240. package/lib/types/features/store/objects/selection/actions/StartWorkflowComponent.d.ts.map +0 -1
  1241. package/lib/types/features/store/objects/selection/actions/index.d.ts +0 -8
  1242. package/lib/types/features/store/objects/selection/actions/index.d.ts.map +0 -1
  1243. package/lib/types/features/store/objects/selection/index.d.ts +0 -5
  1244. package/lib/types/features/store/objects/selection/index.d.ts.map +0 -1
  1245. package/lib/types/features/store/objects/upload/DocumentUploadModal.d.ts +0 -39
  1246. package/lib/types/features/store/objects/upload/DocumentUploadModal.d.ts.map +0 -1
  1247. package/lib/types/features/store/objects/upload/index.d.ts +0 -4
  1248. package/lib/types/features/store/objects/upload/index.d.ts.map +0 -1
  1249. package/lib/types/features/store/objects/upload/useSmartFileUploadProcessing.d.ts +0 -30
  1250. package/lib/types/features/store/objects/upload/useSmartFileUploadProcessing.d.ts.map +0 -1
  1251. package/lib/types/features/store/objects/upload/useUploadHandler.d.ts +0 -50
  1252. package/lib/types/features/store/objects/upload/useUploadHandler.d.ts.map +0 -1
  1253. package/lib/types/features/store/types/ContentObjectTypesSearch.d.ts +0 -6
  1254. package/lib/types/features/store/types/ContentObjectTypesSearch.d.ts.map +0 -1
  1255. package/lib/types/features/store/types/ContentObjectTypesTable.d.ts +0 -8
  1256. package/lib/types/features/store/types/ContentObjectTypesTable.d.ts.map +0 -1
  1257. package/lib/types/features/store/types/CreateOrUpdateTypeModal.d.ts +0 -15
  1258. package/lib/types/features/store/types/CreateOrUpdateTypeModal.d.ts.map +0 -1
  1259. package/lib/types/features/store/types/ObjectSchemaEditor.d.ts +0 -8
  1260. package/lib/types/features/store/types/ObjectSchemaEditor.d.ts.map +0 -1
  1261. package/lib/types/features/store/types/SelectContentType.d.ts +0 -11
  1262. package/lib/types/features/store/types/SelectContentType.d.ts.map +0 -1
  1263. package/lib/types/features/store/types/SelectContentTypeModal.d.ts +0 -33
  1264. package/lib/types/features/store/types/SelectContentTypeModal.d.ts.map +0 -1
  1265. package/lib/types/features/store/types/TableLayoutEditor.d.ts +0 -9
  1266. package/lib/types/features/store/types/TableLayoutEditor.d.ts.map +0 -1
  1267. package/lib/types/features/store/types/index.d.ts +0 -9
  1268. package/lib/types/features/store/types/index.d.ts.map +0 -1
  1269. package/lib/types/features/store/types/search/ObjectTypeSearchContext.d.ts +0 -36
  1270. package/lib/types/features/store/types/search/ObjectTypeSearchContext.d.ts.map +0 -1
  1271. package/lib/types/features/store/types/search/ObjectTypeSearchProvider.d.ts +0 -11
  1272. package/lib/types/features/store/types/search/ObjectTypeSearchProvider.d.ts.map +0 -1
  1273. package/lib/types/features/store/types/search/index.d.ts +0 -3
  1274. package/lib/types/features/store/types/search/index.d.ts.map +0 -1
  1275. package/lib/types/features/user/UserAvatar.d.ts +0 -9
  1276. package/lib/types/features/user/UserAvatar.d.ts.map +0 -1
  1277. package/lib/types/features/user/UserInfo.d.ts +0 -48
  1278. package/lib/types/features/user/UserInfo.d.ts.map +0 -1
  1279. package/lib/types/features/user/index.d.ts +0 -3
  1280. package/lib/types/features/user/index.d.ts.map +0 -1
  1281. package/lib/types/features/utils/index.d.ts +0 -6
  1282. package/lib/types/features/utils/index.d.ts.map +0 -1
  1283. package/lib/types/features/utils/mimeType.d.ts +0 -6
  1284. package/lib/types/features/utils/mimeType.d.ts.map +0 -1
  1285. package/lib/types/features/utils/print.d.ts +0 -10
  1286. package/lib/types/features/utils/print.d.ts.map +0 -1
  1287. package/lib/types/features/utils/rendition.d.ts +0 -4
  1288. package/lib/types/features/utils/rendition.d.ts.map +0 -1
  1289. package/lib/types/features/utils/text.d.ts +0 -3
  1290. package/lib/types/features/utils/text.d.ts.map +0 -1
  1291. package/lib/types/features/utils/workflowStatus.d.ts +0 -10
  1292. package/lib/types/features/utils/workflowStatus.d.ts.map +0 -1
  1293. package/lib/types/layout/AppLayout.d.ts +0 -13
  1294. package/lib/types/layout/AppLayout.d.ts.map +0 -1
  1295. package/lib/types/layout/FullHeightLayout.d.ts +0 -27
  1296. package/lib/types/layout/FullHeightLayout.d.ts.map +0 -1
  1297. package/lib/types/layout/Navbar.d.ts +0 -33
  1298. package/lib/types/layout/Navbar.d.ts.map +0 -1
  1299. package/lib/types/layout/Sidebar.d.ts +0 -31
  1300. package/lib/types/layout/Sidebar.d.ts.map +0 -1
  1301. package/lib/types/layout/SidebarContext.d.ts +0 -9
  1302. package/lib/types/layout/SidebarContext.d.ts.map +0 -1
  1303. package/lib/types/layout/TitleBar.d.ts +0 -6
  1304. package/lib/types/layout/TitleBar.d.ts.map +0 -1
  1305. package/lib/types/layout/index.d.ts +0 -7
  1306. package/lib/types/layout/index.d.ts.map +0 -1
  1307. package/lib/types/router/FixLinks.d.ts +0 -7
  1308. package/lib/types/router/FixLinks.d.ts.map +0 -1
  1309. package/lib/types/router/HistoryNavigator.d.ts +0 -59
  1310. package/lib/types/router/HistoryNavigator.d.ts.map +0 -1
  1311. package/lib/types/router/Nav.d.ts +0 -30
  1312. package/lib/types/router/Nav.d.ts.map +0 -1
  1313. package/lib/types/router/NestedNavigationContext.d.ts +0 -9
  1314. package/lib/types/router/NestedNavigationContext.d.ts.map +0 -1
  1315. package/lib/types/router/NestedRouterProvider.d.ts +0 -14
  1316. package/lib/types/router/NestedRouterProvider.d.ts.map +0 -1
  1317. package/lib/types/router/PathMatcher.d.ts +0 -36
  1318. package/lib/types/router/PathMatcher.d.ts.map +0 -1
  1319. package/lib/types/router/PathWithParams.d.ts +0 -9
  1320. package/lib/types/router/PathWithParams.d.ts.map +0 -1
  1321. package/lib/types/router/Route404.d.ts +0 -4
  1322. package/lib/types/router/Route404.d.ts.map +0 -1
  1323. package/lib/types/router/RouteComponent.d.ts +0 -6
  1324. package/lib/types/router/RouteComponent.d.ts.map +0 -1
  1325. package/lib/types/router/Router.d.ts +0 -74
  1326. package/lib/types/router/Router.d.ts.map +0 -1
  1327. package/lib/types/router/RouterProvider.d.ts +0 -15
  1328. package/lib/types/router/RouterProvider.d.ts.map +0 -1
  1329. package/lib/types/router/index.d.ts +0 -11
  1330. package/lib/types/router/index.d.ts.map +0 -1
  1331. package/lib/types/router/path.d.ts +0 -8
  1332. package/lib/types/router/path.d.ts.map +0 -1
  1333. package/lib/types/session/TypeRegistry.d.ts +0 -10
  1334. package/lib/types/session/TypeRegistry.d.ts.map +0 -1
  1335. package/lib/types/session/UserSession.d.ts +0 -40
  1336. package/lib/types/session/UserSession.d.ts.map +0 -1
  1337. package/lib/types/session/UserSessionProvider.d.ts +0 -7
  1338. package/lib/types/session/UserSessionProvider.d.ts.map +0 -1
  1339. package/lib/types/session/auth/composable.d.ts +0 -26
  1340. package/lib/types/session/auth/composable.d.ts.map +0 -1
  1341. package/lib/types/session/auth/firebase.d.ts +0 -10
  1342. package/lib/types/session/auth/firebase.d.ts.map +0 -1
  1343. package/lib/types/session/auth/useAuthState.d.ts +0 -10
  1344. package/lib/types/session/auth/useAuthState.d.ts.map +0 -1
  1345. package/lib/types/session/auth/useCurrentTenant.d.ts +0 -15
  1346. package/lib/types/session/auth/useCurrentTenant.d.ts.map +0 -1
  1347. package/lib/types/session/constants.d.ts +0 -3
  1348. package/lib/types/session/constants.d.ts.map +0 -1
  1349. package/lib/types/session/index.d.ts +0 -8
  1350. package/lib/types/session/index.d.ts.map +0 -1
  1351. package/lib/types/session/useUXTracking.d.ts +0 -6
  1352. package/lib/types/session/useUXTracking.d.ts.map +0 -1
  1353. package/lib/types/shell/SplashScreen.d.ts +0 -7
  1354. package/lib/types/shell/SplashScreen.d.ts.map +0 -1
  1355. package/lib/types/shell/VertesiaShell.d.ts +0 -10
  1356. package/lib/types/shell/VertesiaShell.d.ts.map +0 -1
  1357. package/lib/types/shell/apps/AppInstallationProvider.d.ts +0 -12
  1358. package/lib/types/shell/apps/AppInstallationProvider.d.ts.map +0 -1
  1359. package/lib/types/shell/apps/AppProjectSelector.d.ts +0 -12
  1360. package/lib/types/shell/apps/AppProjectSelector.d.ts.map +0 -1
  1361. package/lib/types/shell/apps/StandaloneApp.d.ts +0 -23
  1362. package/lib/types/shell/apps/StandaloneApp.d.ts.map +0 -1
  1363. package/lib/types/shell/apps/index.d.ts +0 -4
  1364. package/lib/types/shell/apps/index.d.ts.map +0 -1
  1365. package/lib/types/shell/index.d.ts +0 -8
  1366. package/lib/types/shell/index.d.ts.map +0 -1
  1367. package/lib/types/shell/login/EnterpriseSigninButton.d.ts +0 -6
  1368. package/lib/types/shell/login/EnterpriseSigninButton.d.ts.map +0 -1
  1369. package/lib/types/shell/login/GitHubSignInButton.d.ts +0 -6
  1370. package/lib/types/shell/login/GitHubSignInButton.d.ts.map +0 -1
  1371. package/lib/types/shell/login/GoogleSignInButton.d.ts +0 -6
  1372. package/lib/types/shell/login/GoogleSignInButton.d.ts.map +0 -1
  1373. package/lib/types/shell/login/InviteAcceptModal.d.ts +0 -2
  1374. package/lib/types/shell/login/InviteAcceptModal.d.ts.map +0 -1
  1375. package/lib/types/shell/login/MicrosoftSigninButton.d.ts +0 -6
  1376. package/lib/types/shell/login/MicrosoftSigninButton.d.ts.map +0 -1
  1377. package/lib/types/shell/login/PreviewIcon.d.ts +0 -6
  1378. package/lib/types/shell/login/PreviewIcon.d.ts.map +0 -1
  1379. package/lib/types/shell/login/SignInModal.d.ts +0 -7
  1380. package/lib/types/shell/login/SignInModal.d.ts.map +0 -1
  1381. package/lib/types/shell/login/SigninScreen.d.ts +0 -9
  1382. package/lib/types/shell/login/SigninScreen.d.ts.map +0 -1
  1383. package/lib/types/shell/login/SignupForm.d.ts +0 -8
  1384. package/lib/types/shell/login/SignupForm.d.ts.map +0 -1
  1385. package/lib/types/shell/login/TerminalLogin.d.ts +0 -2
  1386. package/lib/types/shell/login/TerminalLogin.d.ts.map +0 -1
  1387. package/lib/types/shell/login/UserInfo.d.ts +0 -6
  1388. package/lib/types/shell/login/UserInfo.d.ts.map +0 -1
  1389. package/lib/types/shell/login/UserSessionMenu.d.ts +0 -9
  1390. package/lib/types/shell/login/UserSessionMenu.d.ts.map +0 -1
  1391. package/lib/types/shell/utils.d.ts +0 -2
  1392. package/lib/types/shell/utils.d.ts.map +0 -1
  1393. package/lib/types/widgets/Progress.d.ts +0 -6
  1394. package/lib/types/widgets/Progress.d.ts.map +0 -1
  1395. package/lib/types/widgets/SvgIcon.d.ts +0 -7
  1396. package/lib/types/widgets/SvgIcon.d.ts.map +0 -1
  1397. package/lib/types/widgets/form/Form.d.ts +0 -22
  1398. package/lib/types/widgets/form/Form.d.ts.map +0 -1
  1399. package/lib/types/widgets/form/FormContext.d.ts +0 -20
  1400. package/lib/types/widgets/form/FormContext.d.ts.map +0 -1
  1401. package/lib/types/widgets/form/ManagedObject.d.ts +0 -82
  1402. package/lib/types/widgets/form/ManagedObject.d.ts.map +0 -1
  1403. package/lib/types/widgets/form/fields.d.ts +0 -16
  1404. package/lib/types/widgets/form/fields.d.ts.map +0 -1
  1405. package/lib/types/widgets/form/index.d.ts +0 -7
  1406. package/lib/types/widgets/form/index.d.ts.map +0 -1
  1407. package/lib/types/widgets/form/inputs.d.ts +0 -8
  1408. package/lib/types/widgets/form/inputs.d.ts.map +0 -1
  1409. package/lib/types/widgets/form/schema.d.ts +0 -47
  1410. package/lib/types/widgets/form/schema.d.ts.map +0 -1
  1411. package/lib/types/widgets/index.d.ts +0 -12
  1412. package/lib/types/widgets/index.d.ts.map +0 -1
  1413. package/lib/types/widgets/json-view/JSONCode.d.ts +0 -5
  1414. package/lib/types/widgets/json-view/JSONCode.d.ts.map +0 -1
  1415. package/lib/types/widgets/json-view/JSONDisplay.d.ts +0 -8
  1416. package/lib/types/widgets/json-view/JSONDisplay.d.ts.map +0 -1
  1417. package/lib/types/widgets/json-view/JSONView.d.ts +0 -7
  1418. package/lib/types/widgets/json-view/JSONView.d.ts.map +0 -1
  1419. package/lib/types/widgets/json-view/index.d.ts +0 -5
  1420. package/lib/types/widgets/json-view/index.d.ts.map +0 -1
  1421. package/lib/types/widgets/json-view/types.d.ts +0 -8
  1422. package/lib/types/widgets/json-view/types.d.ts.map +0 -1
  1423. package/lib/types/widgets/markdown/MarkdownRenderer.d.ts +0 -13
  1424. package/lib/types/widgets/markdown/MarkdownRenderer.d.ts.map +0 -1
  1425. package/lib/types/widgets/markdown/index.d.ts +0 -2
  1426. package/lib/types/widgets/markdown/index.d.ts.map +0 -1
  1427. package/lib/types/widgets/monacoEditor/MonacoEditor.d.ts +0 -41
  1428. package/lib/types/widgets/monacoEditor/MonacoEditor.d.ts.map +0 -1
  1429. package/lib/types/widgets/monacoEditor/index.d.ts +0 -3
  1430. package/lib/types/widgets/monacoEditor/index.d.ts.map +0 -1
  1431. package/lib/types/widgets/popover/Popover.d.ts +0 -38
  1432. package/lib/types/widgets/popover/Popover.d.ts.map +0 -1
  1433. package/lib/types/widgets/popover/context.d.ts +0 -8
  1434. package/lib/types/widgets/popover/context.d.ts.map +0 -1
  1435. package/lib/types/widgets/popover/index.d.ts +0 -3
  1436. package/lib/types/widgets/popover/index.d.ts.map +0 -1
  1437. package/lib/types/widgets/popover/slots.d.ts +0 -5
  1438. package/lib/types/widgets/popover/slots.d.ts.map +0 -1
  1439. package/lib/types/widgets/properties/PropertiesView.d.ts +0 -11
  1440. package/lib/types/widgets/properties/PropertiesView.d.ts.map +0 -1
  1441. package/lib/types/widgets/properties/index.d.ts +0 -2
  1442. package/lib/types/widgets/properties/index.d.ts.map +0 -1
  1443. package/lib/types/widgets/schema-editor/ManagedSchema.d.ts +0 -75
  1444. package/lib/types/widgets/schema-editor/ManagedSchema.d.ts.map +0 -1
  1445. package/lib/types/widgets/schema-editor/editor/Editable.d.ts +0 -40
  1446. package/lib/types/widgets/schema-editor/editor/Editable.d.ts.map +0 -1
  1447. package/lib/types/widgets/schema-editor/editor/EditableSchemaProperty.d.ts +0 -8
  1448. package/lib/types/widgets/schema-editor/editor/EditableSchemaProperty.d.ts.map +0 -1
  1449. package/lib/types/widgets/schema-editor/editor/PropertyEditor.d.ts +0 -5
  1450. package/lib/types/widgets/schema-editor/editor/PropertyEditor.d.ts.map +0 -1
  1451. package/lib/types/widgets/schema-editor/editor/PropertyViewer.d.ts +0 -4
  1452. package/lib/types/widgets/schema-editor/editor/PropertyViewer.d.ts.map +0 -1
  1453. package/lib/types/widgets/schema-editor/editor/SchemaContext.d.ts +0 -3
  1454. package/lib/types/widgets/schema-editor/editor/SchemaContext.d.ts.map +0 -1
  1455. package/lib/types/widgets/schema-editor/editor/SchemaEditor.d.ts +0 -9
  1456. package/lib/types/widgets/schema-editor/editor/SchemaEditor.d.ts.map +0 -1
  1457. package/lib/types/widgets/schema-editor/index.d.ts +0 -7
  1458. package/lib/types/widgets/schema-editor/index.d.ts.map +0 -1
  1459. package/lib/types/widgets/schema-editor/json-schema4-utils.d.ts +0 -16
  1460. package/lib/types/widgets/schema-editor/json-schema4-utils.d.ts.map +0 -1
  1461. package/lib/types/widgets/schema-editor/type-signature.d.ts +0 -19
  1462. package/lib/types/widgets/schema-editor/type-signature.d.ts.map +0 -1
  1463. package/lib/types/widgets/upload/DropZone.d.ts +0 -41
  1464. package/lib/types/widgets/upload/DropZone.d.ts.map +0 -1
  1465. package/lib/types/widgets/upload/UploadResultCategory.d.ts +0 -26
  1466. package/lib/types/widgets/upload/UploadResultCategory.d.ts.map +0 -1
  1467. package/lib/types/widgets/upload/UploadSummary.d.ts +0 -38
  1468. package/lib/types/widgets/upload/UploadSummary.d.ts.map +0 -1
  1469. package/lib/types/widgets/upload/index.d.ts +0 -4
  1470. package/lib/types/widgets/upload/index.d.ts.map +0 -1
  1471. package/lib/types/widgets/xml-viewer/components/Attributes/index.d.ts +0 -6
  1472. package/lib/types/widgets/xml-viewer/components/Attributes/index.d.ts.map +0 -1
  1473. package/lib/types/widgets/xml-viewer/components/CDataTag/index.d.ts +0 -8
  1474. package/lib/types/widgets/xml-viewer/components/CDataTag/index.d.ts.map +0 -1
  1475. package/lib/types/widgets/xml-viewer/components/CollapseIcon/index.d.ts +0 -5
  1476. package/lib/types/widgets/xml-viewer/components/CollapseIcon/index.d.ts.map +0 -1
  1477. package/lib/types/widgets/xml-viewer/components/CommentTag/index.d.ts +0 -9
  1478. package/lib/types/widgets/xml-viewer/components/CommentTag/index.d.ts.map +0 -1
  1479. package/lib/types/widgets/xml-viewer/components/DeclarationTag/index.d.ts +0 -8
  1480. package/lib/types/widgets/xml-viewer/components/DeclarationTag/index.d.ts.map +0 -1
  1481. package/lib/types/widgets/xml-viewer/components/Elements/index.d.ts +0 -8
  1482. package/lib/types/widgets/xml-viewer/components/Elements/index.d.ts.map +0 -1
  1483. package/lib/types/widgets/xml-viewer/components/InvalidXml/index.d.ts +0 -2
  1484. package/lib/types/widgets/xml-viewer/components/InvalidXml/index.d.ts.map +0 -1
  1485. package/lib/types/widgets/xml-viewer/components/Tag/index.d.ts +0 -13
  1486. package/lib/types/widgets/xml-viewer/components/Tag/index.d.ts.map +0 -1
  1487. package/lib/types/widgets/xml-viewer/components/TextElement/index.d.ts +0 -8
  1488. package/lib/types/widgets/xml-viewer/components/TextElement/index.d.ts.map +0 -1
  1489. package/lib/types/widgets/xml-viewer/components/XMLViewer.d.ts +0 -3
  1490. package/lib/types/widgets/xml-viewer/components/XMLViewer.d.ts.map +0 -1
  1491. package/lib/types/widgets/xml-viewer/components/types.d.ts +0 -104
  1492. package/lib/types/widgets/xml-viewer/components/types.d.ts.map +0 -1
  1493. package/lib/types/widgets/xml-viewer/constants/index.d.ts +0 -27
  1494. package/lib/types/widgets/xml-viewer/constants/index.d.ts.map +0 -1
  1495. package/lib/types/widgets/xml-viewer/context/xml-viewer-context.d.ts +0 -4
  1496. package/lib/types/widgets/xml-viewer/context/xml-viewer-context.d.ts.map +0 -1
  1497. package/lib/types/widgets/xml-viewer/helpers/index.d.ts +0 -13
  1498. package/lib/types/widgets/xml-viewer/helpers/index.d.ts.map +0 -1
  1499. package/lib/types/widgets/xml-viewer/hooks/useCollapsible.d.ts +0 -15
  1500. package/lib/types/widgets/xml-viewer/hooks/useCollapsible.d.ts.map +0 -1
  1501. package/lib/types/widgets/xml-viewer/hooks/useXMLViewer.d.ts +0 -10
  1502. package/lib/types/widgets/xml-viewer/hooks/useXMLViewer.d.ts.map +0 -1
  1503. package/lib/types/widgets/xml-viewer/index.d.ts +0 -3
  1504. package/lib/types/widgets/xml-viewer/index.d.ts.map +0 -1
  1505. package/lib/types/widgets/xml-viewer/types/index.d.ts +0 -16
  1506. package/lib/types/widgets/xml-viewer/types/index.d.ts.map +0 -1
  1507. package/lib/vertesia-ui-core.js +0 -2
  1508. package/lib/vertesia-ui-core.js.map +0 -1
  1509. package/lib/vertesia-ui-env.js +0 -2
  1510. package/lib/vertesia-ui-env.js.map +0 -1
  1511. package/lib/vertesia-ui-features.js +0 -2
  1512. package/lib/vertesia-ui-features.js.map +0 -1
  1513. package/lib/vertesia-ui-layout.js +0 -2
  1514. package/lib/vertesia-ui-layout.js.map +0 -1
  1515. package/lib/vertesia-ui-router.js +0 -2
  1516. package/lib/vertesia-ui-router.js.map +0 -1
  1517. package/lib/vertesia-ui-session.js +0 -2
  1518. package/lib/vertesia-ui-session.js.map +0 -1
  1519. package/lib/vertesia-ui-shell.js +0 -2
  1520. package/lib/vertesia-ui-shell.js.map +0 -1
  1521. package/lib/vertesia-ui-widgets.js +0 -2
  1522. package/lib/vertesia-ui-widgets.js.map +0 -1
  1523. package/src/core/components/Button.tsx +0 -63
  1524. package/src/core/components/Modal.tsx +0 -144
  1525. package/src/core/components/SelectBox.tsx +0 -188
  1526. package/src/core/components/tabs/Tabs.tsx +0 -132
  1527. package/src/core/components/tabs/TabsContext.ts +0 -25
  1528. package/src/core/components/tabs/index.ts +0 -2
  1529. /package/src/core/components/{MessageBox.tsx → shadcn/MessageBox.tsx} +0 -0
@@ -1,181 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
- import { Button, ErrorBox, FormItem, Input, Panel, Styles, Textarea, useFetch, useToast, useTheme } from "@vertesia/ui/core";
3
- import { SharedPropsEditor, SyncMemberHeadsToggle, UserInfo } from "@vertesia/ui/features";
4
- import { useUserSession } from "@vertesia/ui/session";
5
- import { MonacoEditor, GeneratedForm, ManagedObject } from "@vertesia/ui/widgets";
6
- import dayjs from "dayjs";
7
- import { useMemo, useRef, useState } from "react";
8
- import { SelectContentType, stringifyTableLayout } from "../types";
9
- export function EditCollectionView({ refetch, collection }) {
10
- const typeId = collection.type?.id;
11
- const tableLayoutRef = useRef(undefined);
12
- const toast = useToast();
13
- const { theme } = useTheme();
14
- const { client } = useUserSession();
15
- const [isUpdating, setUpdating] = useState(false);
16
- const [metadata, setMetadata] = useState({
17
- name: collection.name,
18
- description: collection.description || "",
19
- query: collection.query ? JSON.stringify(collection.query, null, 2) : "",
20
- tags: collection.tags || [],
21
- type: collection.type?.id || "",
22
- allowed_types: collection.allowed_types || [],
23
- });
24
- const tableLayoutValue = useMemo(() => {
25
- return stringifyTableLayout(collection.table_layout);
26
- }, [collection.table_layout]);
27
- const onSubmit = () => {
28
- let query = undefined;
29
- try {
30
- query = metadata.query ? JSON.parse(metadata.query) : undefined;
31
- }
32
- catch (err) {
33
- toast({
34
- title: "Invalid Query JSON",
35
- description: err.message,
36
- status: "error",
37
- duration: 5000,
38
- });
39
- return;
40
- }
41
- const payload = {
42
- name: metadata.name,
43
- description: metadata.description,
44
- query: query,
45
- tags: metadata.tags,
46
- type: metadata.type,
47
- allowed_types: metadata.allowed_types,
48
- };
49
- let error;
50
- if (!payload.name) {
51
- error = "Name is required";
52
- }
53
- if (!payload.type) {
54
- payload.type = null;
55
- }
56
- if (error) {
57
- toast({
58
- title: "Validation failed",
59
- description: error,
60
- status: "error",
61
- duration: 5000,
62
- });
63
- return;
64
- }
65
- if (tableLayoutRef.current) {
66
- const layout = tableLayoutRef.current.getValue();
67
- if (layout) {
68
- try {
69
- payload.table_layout = JSON.parse(layout);
70
- }
71
- catch (err) {
72
- toast({
73
- title: "Invalid Table Layout",
74
- description: err.message,
75
- status: "error",
76
- duration: 5000,
77
- });
78
- return;
79
- }
80
- }
81
- else {
82
- payload.table_layout = null;
83
- }
84
- }
85
- setUpdating(true);
86
- client.store.collections
87
- .update(collection.id, payload)
88
- .then(() => {
89
- refetch();
90
- toast({
91
- title: "Collection updated",
92
- description: "Collection has been updated successfully",
93
- status: "success",
94
- duration: 3000,
95
- });
96
- })
97
- .catch((err) => {
98
- toast({
99
- title: "Failed to update collection",
100
- description: err.message,
101
- status: "error",
102
- duration: 5000,
103
- });
104
- })
105
- .finally(() => {
106
- setUpdating(false);
107
- });
108
- };
109
- const setField = (name, value) => {
110
- setMetadata({
111
- ...metadata,
112
- [name]: value,
113
- });
114
- };
115
- return (_jsxs("div", { className: "flex flex-col gap-4 py-2", children: [_jsxs(Panel, { title: "Configuration", action: _jsx(Button, { size: "lg", isDisabled: isUpdating, onClick: onSubmit, children: "Save" }), children: [_jsxs("div", { className: "flex justify-between mb-2", children: [_jsxs("div", { className: "w-1/2 gap-2 flex flex-col", children: [_jsx("div", { className: "text-sm font-medium mb-1", children: "Created By" }), _jsxs("div", { className: "gap-2 flex items-center", children: [_jsx(UserInfo, { userRef: collection.created_by, showTitle: true }), _jsxs("span", { children: ["at ", dayjs(collection.created_at).format("YYYY-MM-DD HH:mm:ss")] })] })] }), _jsxs("div", { className: "w-1/2 gap-2 flex flex-col", children: [_jsx("div", { className: "text-sm font-medium mb-1", children: "Updated By" }), _jsxs("div", { className: "gap-2 flex items-center", children: [_jsx(UserInfo, { userRef: collection.updated_by, showTitle: true }), _jsxs("span", { children: ["at ", dayjs(collection.updated_at).format("YYYY-MM-DD HH:mm:ss")] })] })] })] }), _jsx(FormItem, { label: "Name", required: true, children: _jsx(Input, { value: metadata.name, onChange: (v) => setField("name", v) }) }), _jsx(FormItem, { label: "Description", children: _jsx(Textarea, { value: metadata.description, onChange: (e) => setField("description", e.target.value) }) }), !collection.dynamic &&
116
- _jsx(FormItem, { label: "Allowed Content Types", description: "Select which content types can be added to the collection. If not set, then all content types are allowed.", children: _jsx(SelectContentType, { defaultValue: metadata.allowed_types || null, onChange: (v) => {
117
- if (Array.isArray(v)) {
118
- setField("allowed_types", v.map(type => type.id));
119
- }
120
- else {
121
- setField("allowed_types", v ? [v.id] : []);
122
- }
123
- }, isClearable: true, multiple: true }) }), collection.dynamic && (_jsx(FormItem, { label: "Query", description: "Define the query to dynamically fetch content for the collection.", children: _jsx(Textarea, { className: Styles.INPUT, value: metadata.query, onChange: (e) => setField("query", e.target.value) }) })), _jsx(FormItem, { label: "Table Layout", description: "Define a custom layout for displaying the collection in tables.", children: _jsx(MonacoEditor, { className: "border-1 rounded-md border-border", value: tableLayoutValue, language: "json", editorRef: tableLayoutRef, theme: theme === 'dark' ? 'vs-dark' : 'vs' }) }), _jsx(FormItem, { label: "Type", description: "Select a content type to assign custom properties and data to the collection.", children: _jsx(SelectContentType, { defaultValue: metadata.type || null, onChange: (v) => {
124
- if (Array.isArray(v)) {
125
- setField("type", v.length > 0 ? v[0].id : null);
126
- }
127
- else {
128
- setField("type", v?.id || null);
129
- }
130
- }, isClearable: true }) })] }), typeId && _jsx(PropertiesEditor, { typeId: typeId, collection: collection }), !collection.dynamic && (_jsxs(_Fragment, { children: [_jsx(SyncMemberHeadsToggle, { collection: collection }), _jsx(SharedPropsEditor, { collection: collection })] }))] }));
131
- }
132
- function PropertiesEditor({ typeId, collection }) {
133
- const [formData, setFormData] = useState({});
134
- const toast = useToast();
135
- const { client } = useUserSession();
136
- const [isUpdating, setIsUpdating] = useState(false);
137
- const { data: type, error } = useFetch(() => client.store.types.retrieve(typeId), [typeId]);
138
- const schema = type?.object_schema || {};
139
- const object = useMemo(() => new ManagedObject(schema, collection.properties || {}), [schema, collection.properties]);
140
- if (error) {
141
- return _jsx(ErrorBox, { title: "Failed to load type", children: error.message });
142
- }
143
- if (!type) {
144
- return null;
145
- }
146
- const _onSave = (data) => {
147
- if (!data || !Object.keys(data).length) {
148
- return;
149
- }
150
- const payload = { properties: data || {} };
151
- setIsUpdating(true);
152
- client.store.collections
153
- .update(collection.id, payload)
154
- .then(() => {
155
- toast({
156
- title: "Collection properties updated",
157
- description: "Collection has been updated successfully",
158
- status: "success",
159
- duration: 3000,
160
- });
161
- })
162
- .catch((err) => {
163
- toast({
164
- title: "Failed to update collection properties",
165
- description: err.message,
166
- status: "error",
167
- duration: 5000,
168
- });
169
- })
170
- .finally(() => {
171
- setIsUpdating(false);
172
- });
173
- };
174
- const onDataChanged = (data) => {
175
- if (data instanceof ManagedObject) {
176
- setFormData(data.value);
177
- }
178
- };
179
- return (_jsx(Panel, { title: "Properties", action: _jsx(Button, { size: "lg", isLoading: isUpdating, type: "submit", onClick: () => _onSave(formData), children: "Save" }), children: _jsx(GeneratedForm, { object: object, onChange: onDataChanged }) }));
180
- }
181
- //# sourceMappingURL=EditCollectionView.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"EditCollectionView.js","sourceRoot":"","sources":["../../../../../src/features/store/collections/EditCollectionView.tsx"],"names":[],"mappings":"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"}
@@ -1,119 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Check, ChevronsUpDown } from "lucide-react";
3
- import { useCallback, useMemo, useState } from "react";
4
- import { Button, cn, ErrorBox, useDebounce, useFetch, Popover, PopoverContent, PopoverTrigger, Command, CommandEmpty, CommandGroup, CommandItem, CommandInput } from "@vertesia/ui/core";
5
- import { useUserSession } from "@vertesia/ui/session";
6
- export function SelectCollection({ onChange, value, disabled = false, placeholder = "Select a collection", searchPlaceholder = "Search collections", filterOut, allowDynamic = true, multiple = false }) {
7
- const { client } = useUserSession();
8
- const [searchQuery, setSearchQuery] = useState('');
9
- const [isSearching, setIsSearching] = useState(false);
10
- const [useServerSearch, setUseServerSearch] = useState(false);
11
- // Debounce the search query to avoid excessive API calls (only used for server-side search)
12
- const debouncedSearchQuery = useDebounce(searchQuery, 300);
13
- // Memoize the search function to prevent unnecessary re-renders
14
- const searchCollections = useCallback(async (query) => {
15
- setIsSearching(true);
16
- const trimmedQuery = query.trim();
17
- const collections = await client.store.collections.search({
18
- dynamic: allowDynamic ? undefined : false,
19
- name: useServerSearch ? (trimmedQuery || undefined) : undefined
20
- });
21
- setIsSearching(false);
22
- // Check if we hit the maximum limit (1000 collections) - if so, enable server-side search
23
- if (!useServerSearch && collections.length >= 1000) {
24
- setUseServerSearch(true);
25
- }
26
- // Filter out collections if filterOut is provided
27
- if (filterOut && filterOut.length > 0) {
28
- return collections.filter(col => !filterOut.includes(col.id));
29
- }
30
- return collections;
31
- }, [client, allowDynamic, filterOut, useServerSearch]);
32
- // Fetch collections based on search mode
33
- const { data: collections, error } = useFetch(() => searchCollections(useServerSearch ? debouncedSearchQuery : ''), [useServerSearch ? debouncedSearchQuery : '', searchCollections]);
34
- // Memoize the selected collection(s)
35
- const selectedCollection = useMemo(() => {
36
- if (!collections)
37
- return multiple ? [] : undefined;
38
- if (multiple && Array.isArray(value)) {
39
- return collections.filter((collection) => value.includes(collection.id));
40
- }
41
- else if (!multiple && typeof value === 'string') {
42
- return collections.find((collection) => collection.id === value);
43
- }
44
- return multiple ? [] : undefined;
45
- }, [collections, value, multiple]);
46
- // Handle collection selection
47
- const handleSelect = useCallback((collection) => {
48
- if (multiple) {
49
- const currentValues = Array.isArray(value) ? value : [];
50
- const isSelected = currentValues.includes(collection.id);
51
- if (isSelected) {
52
- // Remove from selection
53
- const newValues = currentValues.filter(id => id !== collection.id);
54
- const newCollections = collections?.filter(c => newValues.includes(c.id)) || [];
55
- onChange(newValues, newCollections);
56
- }
57
- else {
58
- // Add to selection
59
- const newValues = [...currentValues, collection.id];
60
- const newCollections = collections?.filter(c => newValues.includes(c.id)) || [];
61
- onChange(newValues, newCollections);
62
- }
63
- }
64
- else {
65
- onChange(collection.id, collection);
66
- }
67
- }, [onChange, value, collections, multiple]);
68
- // Handle clear selection
69
- const handleClear = useCallback(() => {
70
- onChange(undefined, undefined);
71
- }, [onChange]);
72
- // Handle search input change
73
- const handleSearchChange = useCallback((query) => {
74
- setSearchQuery(query);
75
- }, []);
76
- const hasSearchQuery = searchQuery.trim().length > 0;
77
- // Client-side filtering when not using server search
78
- const filteredCollections = useMemo(() => {
79
- if (!collections)
80
- return [];
81
- // If using server search, collections are already filtered by the server
82
- if (useServerSearch)
83
- return collections;
84
- // Otherwise, do client-side filtering
85
- if (!hasSearchQuery)
86
- return collections;
87
- const queryLower = searchQuery.toLowerCase();
88
- return collections.filter(col => col.name.toLowerCase().includes(queryLower));
89
- }, [collections, useServerSearch, hasSearchQuery, searchQuery]);
90
- const showClearOption = selectedCollection && hasSearchQuery;
91
- // Show error state
92
- if (error) {
93
- return (_jsx(ErrorBox, { title: "Collection fetch failed", children: error.message }));
94
- }
95
- // Get display text for the button
96
- const getDisplayText = () => {
97
- if (multiple && Array.isArray(selectedCollection) && selectedCollection.length > 0) {
98
- if (selectedCollection.length === 1) {
99
- return selectedCollection[0].name;
100
- }
101
- return `${selectedCollection.length} collections selected`;
102
- }
103
- else if (!multiple && selectedCollection && !Array.isArray(selectedCollection)) {
104
- return selectedCollection.name;
105
- }
106
- return placeholder;
107
- };
108
- return (_jsxs(Popover, { children: [_jsx(PopoverTrigger, { asChild: true, children: _jsxs(Button, { variant: "outline", role: "combobox", "aria-haspopup": "listbox", className: cn("w-full justify-between min-w-0"), disabled: disabled, children: [_jsx("span", { className: "truncate flex-1 text-left min-w-0", children: getDisplayText() }), _jsx(ChevronsUpDown, { className: "ml-2 h-4 w-4 shrink-0 opacity-50" })] }) }), _jsx(PopoverContent, { className: "mt-2 mb-2 w-[var(--radix-popover-trigger-width)] p-0", align: "start", children: _jsxs(Command, { shouldFilter: false, children: [_jsxs("div", { className: "flex justify-between items-center border-b px-3", "cmdk-input-wrapper": "", children: [_jsx(CommandInput, { placeholder: searchPlaceholder, value: searchQuery, onValueChange: handleSearchChange, className: "flex h-11 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50" }), isSearching && (_jsx("div", { className: "mr-2 h-4 w-4 animate-spin rounded-full border-2 border-current border-t-transparent" }))] }), _jsx(CommandEmpty, { children: isSearching
109
- ? "Searching..."
110
- : hasSearchQuery
111
- ? "No collections found."
112
- : "No collections available." }), _jsxs(CommandGroup, { className: "max-h-[300px] overflow-auto", children: [showClearOption && !multiple && (_jsx(CommandItem, { value: "__clear__", onSelect: handleClear, className: "text-muted-foreground", children: "Clear selection" })), filteredCollections.map((collection) => {
113
- const isSelected = multiple && Array.isArray(value)
114
- ? value.includes(collection.id)
115
- : value === collection.id;
116
- return (_jsxs(CommandItem, { value: collection.id, onSelect: () => handleSelect(collection), className: "flex items-center justify-between", children: [_jsx("span", { className: "truncate", children: collection.name }), isSelected && (_jsx(Check, { className: "ml-2 h-4 w-4 shrink-0" }))] }, collection.id));
117
- })] })] }) })] }));
118
- }
119
- //# sourceMappingURL=SelectCollection.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SelectCollection.js","sourceRoot":"","sources":["../../../../../src/features/store/collections/SelectCollection.tsx"],"names":[],"mappings":"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"}
@@ -1,39 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import { Button, Panel, TagsInput, useToast } from "@vertesia/ui/core";
3
- import { useUserSession } from "@vertesia/ui/session";
4
- import { useEffect, useState } from "react";
5
- export function SharedPropsEditor({ collection }) {
6
- const { client } = useUserSession();
7
- const [colType, setColType] = useState(undefined);
8
- const [sharedProps, setSharedProps] = useState(collection.shared_properties || []);
9
- const toast = useToast();
10
- useEffect(() => {
11
- if (collection.type?.id) {
12
- client.store.types.retrieve(collection.type.id).then(setColType);
13
- }
14
- }, [collection.type?.id]);
15
- const options = colType ? Object.keys(colType.object_schema?.properties || {}) : [];
16
- const onSelect = (selected) => {
17
- setSharedProps(selected);
18
- };
19
- const onSave = () => {
20
- client.store.collections.update(collection.id, {
21
- shared_properties: sharedProps
22
- }).then(() => {
23
- // Handle success
24
- toast({
25
- title: "Updated shared properties",
26
- status: "success"
27
- });
28
- }).catch((error) => {
29
- toast({
30
- title: "Failed to update shared properties",
31
- description: error.message,
32
- status: "error"
33
- });
34
- // Handle error
35
- });
36
- };
37
- return (_jsx(Panel, { title: "Shared Properties", description: "Add properties to share across all members in the collection. This feature requires to enable shared property synchronization on the project.", action: _jsx(Button, { size: "lg", isLoading: false, onClick: onSave, children: "Save" }), children: _jsx("div", { className: '', children: _jsx(TagsInput, { value: sharedProps, onChange: onSelect, options: options, placeholder: "Select properties to share" }) }) }));
38
- }
39
- //# sourceMappingURL=SharedPropsEditor.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SharedPropsEditor.js","sourceRoot":"","sources":["../../../../../src/features/store/collections/SharedPropsEditor.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AACvE,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAK5C,MAAM,UAAU,iBAAiB,CAAC,EAAE,UAAU,EAA0B;IAEpE,MAAM,EAAE,MAAM,EAAE,GAAG,cAAc,EAAE,CAAC;IACpC,MAAM,CAAC,OAAO,EAAE,UAAU,CAAC,GAAG,QAAQ,CAAgC,SAAS,CAAC,CAAC;IACjF,MAAM,CAAC,WAAW,EAAE,cAAc,CAAC,GAAG,QAAQ,CAAW,UAAU,CAAC,iBAAiB,IAAI,EAAE,CAAC,CAAC;IAC7F,MAAM,KAAK,GAAG,QAAQ,EAAE,CAAC;IAEzB,SAAS,CAAC,GAAG,EAAE;QACX,IAAI,UAAU,CAAC,IAAI,EAAE,EAAE,EAAE,CAAC;YACtB,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,QAAQ,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QACrE,CAAC;IACL,CAAC,EAAE,CAAC,UAAU,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC;IAE1B,MAAM,OAAO,GAAa,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE,UAAU,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;IAE9F,MAAM,QAAQ,GAAG,CAAC,QAAkB,EAAE,EAAE;QACpC,cAAc,CAAC,QAAQ,CAAC,CAAC;IAC7B,CAAC,CAAA;IAED,MAAM,MAAM,GAAG,GAAG,EAAE;QAChB,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE,EAAE;YAC3C,iBAAiB,EAAE,WAAW;SACjC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE;YACT,iBAAiB;YACjB,KAAK,CAAC;gBACF,KAAK,EAAE,2BAA2B;gBAClC,MAAM,EAAE,SAAS;aACpB,CAAC,CAAA;QACN,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;YACf,KAAK,CAAC;gBACF,KAAK,EAAE,oCAAoC;gBAC3C,WAAW,EAAE,KAAK,CAAC,OAAO;gBAC1B,MAAM,EAAE,OAAO;aAClB,CAAC,CAAA;YACF,eAAe;QACnB,CAAC,CAAC,CAAC;IACP,CAAC,CAAA;IAED,OAAO,CACH,KAAC,KAAK,IAAC,KAAK,EAAC,mBAAmB,EAAC,WAAW,EAAC,+IAA+I,EACxL,MAAM,EACF,KAAC,MAAM,IAAC,IAAI,EAAC,IAAI,EAAC,SAAS,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,qBAE1C,YAEb,cAAK,SAAS,EAAC,EAAE,YACb,KAAC,SAAS,IAAC,KAAK,EAAE,WAAW,EAAE,QAAQ,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE,WAAW,EAAC,4BAA4B,GAAG,GAC9G,GACF,CACX,CAAA;AAEL,CAAC"}
@@ -1,35 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import { Panel, Switch, useToast } from "@vertesia/ui/core";
3
- import { useUserSession } from "@vertesia/ui/session";
4
- import { useState } from "react";
5
- export function SyncMemberHeadsToggle({ collection }) {
6
- const { client } = useUserSession();
7
- const [skipHeadSync, setSkipHeadSync] = useState(collection.skip_head_sync ?? false);
8
- const [isSaving, setIsSaving] = useState(false);
9
- const toast = useToast();
10
- const onSaveSkipHeadSync = (enableSyncHeads) => {
11
- const skip_head_sync = !enableSyncHeads;
12
- setIsSaving(true);
13
- client.store.collections.update(collection.id, {
14
- skip_head_sync: skip_head_sync
15
- }).then(() => {
16
- // Handle success
17
- toast({
18
- title: "Updated skip head sync setting",
19
- status: "success"
20
- });
21
- setSkipHeadSync(skip_head_sync);
22
- }).catch((error) => {
23
- toast({
24
- title: "Failed to update skip head sync",
25
- description: error.message,
26
- status: "error"
27
- });
28
- // Handle error
29
- }).finally(() => {
30
- setIsSaving(false);
31
- });
32
- };
33
- return (_jsx(Panel, { title: "Synchronize Member Heads", description: "When a new HEAD version of a member is created the colleciton will be updated to point to the new HEAD.", children: _jsx(Switch, { disabled: isSaving, value: !skipHeadSync, onChange: onSaveSkipHeadSync, children: "Enable synchronizing member heads" }) }));
34
- }
35
- //# sourceMappingURL=SyncMemberHeadsToggle.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SyncMemberHeadsToggle.js","sourceRoot":"","sources":["../../../../../src/features/store/collections/SyncMemberHeadsToggle.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAKjC,MAAM,UAAU,qBAAqB,CAAC,EAAE,UAAU,EAA8B;IAE5E,MAAM,EAAE,MAAM,EAAE,GAAG,cAAc,EAAE,CAAC;IACpC,MAAM,CAAC,YAAY,EAAE,eAAe,CAAC,GAAG,QAAQ,CAAU,UAAU,CAAC,cAAc,IAAI,KAAK,CAAC,CAAC;IAC9F,MAAM,CAAC,QAAQ,EAAE,WAAW,CAAC,GAAG,QAAQ,CAAU,KAAK,CAAC,CAAC;IACzD,MAAM,KAAK,GAAG,QAAQ,EAAE,CAAC;IAEzB,MAAM,kBAAkB,GAAG,CAAC,eAAwB,EAAE,EAAE;QACpD,MAAM,cAAc,GAAG,CAAC,eAAe,CAAC;QACxC,WAAW,CAAC,IAAI,CAAC,CAAC;QAClB,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,MAAM,CAAC,UAAU,CAAC,EAAE,EAAE;YAC3C,cAAc,EAAE,cAAc;SACjC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE;YACT,iBAAiB;YACjB,KAAK,CAAC;gBACF,KAAK,EAAE,gCAAgC;gBACvC,MAAM,EAAE,SAAS;aACpB,CAAC,CAAA;YACF,eAAe,CAAC,cAAc,CAAC,CAAC;QACpC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;YACf,KAAK,CAAC;gBACF,KAAK,EAAE,iCAAiC;gBACxC,WAAW,EAAE,KAAK,CAAC,OAAO;gBAC1B,MAAM,EAAE,OAAO;aAClB,CAAC,CAAA;YACF,eAAe;QACnB,CAAC,CAAC,CAAC,OAAO,CAAC,GAAG,EAAE;YACZ,WAAW,CAAC,KAAK,CAAC,CAAC;QACvB,CAAC,CAAC,CAAC;IACP,CAAC,CAAA;IAED,OAAO,CACH,KAAC,KAAK,IAAC,KAAK,EAAC,0BAA0B,EAAC,WAAW,EAAC,yGAAyG,YACzJ,KAAC,MAAM,IAAC,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,YAAY,EAAE,QAAQ,EAAE,kBAAkB,kDAErE,GACL,CACX,CAAA;AAEL,CAAC"}
@@ -1,8 +0,0 @@
1
- export * from "./BrowseCollectionView";
2
- export * from "./CollectionsTable";
3
- export * from "./EditCollectionView";
4
- export * from "./CreateCollection";
5
- export * from "./SelectCollection";
6
- export * from "./SharedPropsEditor";
7
- export * from "./SyncMemberHeadsToggle";
8
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/features/store/collections/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC"}
@@ -1,4 +0,0 @@
1
- export * from "./objects";
2
- export * from "./types";
3
- export * from "./collections";
4
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/features/store/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC"}
@@ -1,147 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { ImageRenditionFormat } from "@vertesia/common";
3
- import { Button, Spinner, useToast } from "@vertesia/ui/core";
4
- import { useNavigate } from "@vertesia/ui/router";
5
- import { useUserSession } from "@vertesia/ui/session";
6
- import { JSONDisplay, MarkdownRenderer } from "@vertesia/ui/widgets";
7
- import { ChevronRight, Download, FileText, Info, LayoutGrid, Maximize2, X, } from "lucide-react";
8
- import { useEffect, useState } from "react";
9
- export function DocumentPreviewPanel({ objectId, isOpen, onClose, }) {
10
- const navigate = useNavigate();
11
- const { client, store } = useUserSession();
12
- const [object, setObject] = useState(null);
13
- const [isLoading, setIsLoading] = useState(false);
14
- const [loadingText, setLoadingText] = useState(false);
15
- const [text, setText] = useState();
16
- const [imageUrl, setImageUrl] = useState();
17
- const [currentTab, setCurrentTab] = useState("preview");
18
- const toast = useToast();
19
- useEffect(() => {
20
- if (objectId && isOpen) {
21
- setIsLoading(true);
22
- store.objects
23
- .retrieve(objectId, "+embeddings")
24
- .then((result) => {
25
- setObject(result);
26
- // If the object has text, use it
27
- if (result.text) {
28
- setText(result.text);
29
- }
30
- else {
31
- // Otherwise, fetch text
32
- loadObjectText(result.id);
33
- }
34
- // If it's an image, load the image URL
35
- const content = result.content;
36
- const isImage = content &&
37
- content.source &&
38
- content.type &&
39
- content.type.startsWith("image/");
40
- if (isImage) {
41
- loadImageUrl(result);
42
- }
43
- })
44
- .catch((error) => {
45
- console.error("Error loading object:", error);
46
- toast({
47
- title: "Error",
48
- description: "Failed to load document",
49
- status: "error",
50
- duration: 3000,
51
- });
52
- })
53
- .finally(() => {
54
- setIsLoading(false);
55
- });
56
- }
57
- else {
58
- // Reset state when panel closes
59
- setObject(null);
60
- setText(undefined);
61
- setImageUrl(undefined);
62
- }
63
- }, [objectId, isOpen, store.objects]);
64
- const loadObjectText = async (id) => {
65
- setLoadingText(true);
66
- try {
67
- const result = await store.objects.getObjectText(id);
68
- setText(result.text);
69
- }
70
- catch (error) {
71
- console.error("Error loading text:", error);
72
- }
73
- finally {
74
- setLoadingText(false);
75
- }
76
- };
77
- const loadImageUrl = async (obj) => {
78
- try {
79
- // Try to get a rendition first
80
- const rendition = await client.objects.getRendition(obj.id, {
81
- format: ImageRenditionFormat.jpeg,
82
- generate_if_missing: false,
83
- });
84
- // Don't use rendition object to avoid type issues
85
- if (rendition.status === "found") {
86
- console.log("Found rendition");
87
- }
88
- // Get download URL
89
- const downloadUrlResult = await client.files.getDownloadUrl(obj.content.source);
90
- setImageUrl(downloadUrlResult.url);
91
- }
92
- catch (error) {
93
- console.error("Error loading image:", error);
94
- }
95
- };
96
- const handleViewFullDocument = () => {
97
- if (object) {
98
- navigate(`/legal/objects/${object.id}`);
99
- onClose();
100
- }
101
- };
102
- const seemsMarkdown = text &&
103
- (text.startsWith("#") || text.includes("\n#") || text.includes("\n*"));
104
- const isImage = object?.content?.type && object.content.type.startsWith("image/");
105
- const isPdf = object?.content?.type === "application/pdf";
106
- if (!isOpen)
107
- return null;
108
- return (_jsxs("div", { className: `fixed inset-y-0 right-0 w-2/5 dark:bg-slate-900 shadow-xl z-50 flex flex-col transition-transform duration-300 transform ${isOpen ? "translate-x-0" : "translate-x-full"}`, children: [_jsxs("div", { className: "flex items-center justify-between px-4 py-3 border-b dark:border-gray-700 bg-gradient-to-r from-indigo-50 to-gray-50 dark:from-gray-800 dark:to-gray-900", children: [_jsxs("div", { className: "flex items-center", children: [_jsx(FileText, { className: "h-5 w-5 text-indigo-600 mr-2" }), _jsx("h2", { className: "text-lg font-semibold text-gray-800 dark:text-gray-200 truncate", children: isLoading
109
- ? "Loading document..."
110
- : object?.name || "Document Preview" })] }), _jsxs("div", { className: "flex items-center space-x-2", children: [_jsxs(Button, { variant: "ghost", size: "sm", onClick: handleViewFullDocument, className: "flex items-center gap-1 text-indigo-600 hover:text-indigo-800", children: [_jsx(Maximize2, { className: "h-4 w-4" }), _jsx("span", { children: "Full View" })] }), _jsx(Button, { variant: "ghost", size: "sm", onClick: onClose, className: "flex items-center text-gray-600 hover:text-gray-800 dark:text-gray-300 dark:hover:text-gray-100", children: _jsx(X, { className: "h-5 w-5" }) })] })] }), isLoading ? (_jsx("div", { className: "flex-1 flex items-center justify-center", children: _jsxs("div", { className: "text-center", children: [_jsx(Spinner, { size: "lg", className: "text-indigo-600 dark:text-indigo-400 mb-2" }), _jsx("p", { className: "text-gray-600 dark:text-gray-400", children: "Loading document..." })] }) })) : (_jsxs("div", { className: "flex-1 flex flex-col h-full", children: [_jsx("div", { className: "border-b", children: _jsxs("div", { className: "flex px-4", children: [_jsx("button", { className: `py-2 px-4 font-medium border-b-2 ${currentTab === "preview"
111
- ? "border-indigo-600 text-indigo-700 dark:text-indigo-300"
112
- : "border-transparent text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200"}`, onClick: () => setCurrentTab("preview"), children: _jsxs("div", { className: "flex items-center gap-1", children: [_jsx(LayoutGrid, { className: "h-4 w-4" }), _jsx("span", { children: "Preview" })] }) }), _jsx("button", { className: `py-2 px-4 font-medium border-b-2 ${currentTab === "properties"
113
- ? "border-indigo-600 text-indigo-700 dark:text-indigo-300"
114
- : "border-transparent text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200"}`, onClick: () => setCurrentTab("properties"), children: _jsxs("div", { className: "flex items-center gap-1", children: [_jsx(Info, { className: "h-4 w-4" }), _jsx("span", { children: "Properties" })] }) })] }) }), _jsxs("div", { className: "flex-1 overflow-auto p-4", children: [currentTab === "preview" && (_jsxs("div", { className: "h-full", children: [loadingText ? (_jsx("div", { className: "flex items-center justify-center h-40", children: _jsx(Spinner, { size: "md", className: "text-indigo-600 dark:text-indigo-400" }) })) : text ? (_jsx("div", { className: "shadow rounded-md p-4 border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800", children: seemsMarkdown ? (_jsx("div", { className: "prose prose-sm max-w-none prose-p:my-2 prose-pre:bg-gray-800 prose-pre:my-2 prose-headings:text-indigo-700 dark:prose-invert dark:prose-headings:text-indigo-300", children: _jsx(MarkdownRenderer, { children: text }) })) : (_jsx("pre", { className: "text-wrap whitespace-pre-wrap dark:text-gray-200", children: text })) })) : null, isImage && (_jsx("div", { className: "mt-4", children: imageUrl ? (_jsx("div", { className: "border border-gray-200 dark:border-gray-700 rounded-md p-2 bg-white dark:bg-gray-800", children: _jsx("img", { src: imageUrl, alt: object?.name, className: "mx-auto max-h-[70vh] object-contain" }) })) : (_jsx("div", { className: "flex items-center justify-center h-40", children: _jsx(Spinner, { size: "md", className: "text-indigo-600 dark:text-indigo-400" }) })) })), isPdf && (_jsxs("div", { className: "flex flex-col items-center justify-center h-64 border border-gray-200 dark:border-gray-700 rounded-md p-4 bg-gray-50 dark:bg-gray-800", children: [_jsx(FileText, { className: "h-16 w-16 text-indigo-300 dark:text-indigo-400 mb-4" }), _jsxs("p", { className: "text-gray-600 dark:text-gray-400 text-center mb-4", children: ["PDF document preview is available in full view. TODO", " "] }), _jsx(Button, { onClick: handleViewFullDocument, className: "bg-indigo-600 hover:bg-indigo-700 text-white", children: "Open Full Document View" })] })), !isImage && !text && !isPdf && !loadingText && (_jsxs("div", { className: "flex flex-col items-center justify-center h-64 border border-gray-200 dark:border-gray-700 rounded-md p-4 bg-gray-50 dark:bg-gray-800", children: [_jsx(FileText, { className: "h-16 w-16 text-gray-300 dark:text-gray-600 mb-4" }), _jsx("p", { className: "text-gray-600 dark:text-gray-400 text-center", children: "No preview available for this document type." })] }))] })), currentTab === "properties" && object && (_jsxs("div", { className: "h-full", children: [object.properties ? (_jsx("div", { className: "shadow rounded-md p-4 border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800", children: _jsx(JSONDisplay, { value: object.properties }) })) : (_jsxs("div", { className: "flex flex-col items-center justify-center h-64 border border-gray-200 dark:border-gray-700 rounded-md p-4 bg-gray-50 dark:bg-gray-800", children: [_jsx(Info, { className: "h-16 w-16 text-gray-300 dark:text-gray-600 mb-4" }), _jsx("p", { className: "text-gray-600 dark:text-gray-400 text-center", children: "No properties available for this document." })] })), _jsxs("div", { className: "mt-4", children: [_jsx("h3", { className: "text-sm font-semibold text-gray-700 dark:text-gray-300 mb-2", children: "Document Information" }), _jsx("div", { className: "shadow rounded-md p-4 border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800", children: _jsxs("div", { className: "grid grid-cols-2 gap-y-2 gap-x-4 text-sm", children: [_jsx("div", { className: "text-gray-500 dark:text-gray-400", children: "ID" }), _jsx("div", { className: "font-medium dark:text-gray-200", children: object.id }), _jsx("div", { className: "text-gray-500 dark:text-gray-400", children: "Type" }), _jsx("div", { className: "font-medium dark:text-gray-200", children: object.type?.name || "Unknown" }), _jsx("div", { className: "text-gray-500 dark:text-gray-400", children: "Content Type" }), _jsx("div", { className: "font-medium dark:text-gray-200", children: object.content?.type || "N/A" }), _jsx("div", { className: "text-gray-500", children: "Size" }), _jsx("div", { className: "font-medium", children: object.content && "size" in object.content
115
- ? formatFileSize(object.content.size)
116
- : "Unknown" }), _jsx("div", { className: "text-gray-500", children: "Created" }), _jsx("div", { className: "font-medium", children: object.created_at
117
- ? new Date(object.created_at).toLocaleString()
118
- : "N/A" }), _jsx("div", { className: "text-gray-500", children: "Updated" }), _jsx("div", { className: "font-medium", children: object.updated_at
119
- ? new Date(object.updated_at).toLocaleString()
120
- : "N/A" })] }) })] })] }))] })] })), _jsxs("div", { className: "flex items-center justify-between p-4 border-t bg-gray-50 dark:bg-gray-800 dark:border-gray-700", children: [_jsx("div", { children: object?.content?.source && (_jsxs(Button, { onClick: () => {
121
- if (object?.content?.source) {
122
- client.files
123
- .getDownloadUrl(object.content.source)
124
- .then((result) => {
125
- window.open(result.url, "_blank");
126
- })
127
- .catch((error) => {
128
- console.error("Error getting download URL:", error);
129
- toast({
130
- title: "Error",
131
- description: "Failed to download file",
132
- status: "error",
133
- duration: 3000,
134
- });
135
- });
136
- }
137
- }, variant: "outline", className: "text-indigo-600 border-indigo-300 hover:bg-indigo-50", children: [_jsx(Download, { className: "h-4 w-4 mr-2" }), "Download"] })) }), _jsxs(Button, { onClick: handleViewFullDocument, className: "bg-indigo-600 hover:bg-indigo-700 text-white", children: ["Open Full Document", _jsx(ChevronRight, { className: "h-4 w-4 ml-2" })] })] })] }));
138
- }
139
- function formatFileSize(bytes) {
140
- if (bytes === 0)
141
- return "0 Bytes";
142
- const k = 1024;
143
- const sizes = ["Bytes", "KB", "MB", "GB", "TB"];
144
- const i = Math.floor(Math.log(bytes) / Math.log(k));
145
- return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + " " + sizes[i];
146
- }
147
- //# sourceMappingURL=DocumentPreviewPanel.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DocumentPreviewPanel.js","sourceRoot":"","sources":["../../../../../src/features/store/objects/DocumentPreviewPanel.tsx"],"names":[],"mappings":"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"}