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