@vertesia/ui 1.0.0-dev.20260305.083323Z → 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/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 +7 -4
- package/lib/esm/core/components/shadcn/theme/ThemeSwitcher.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 +12 -9
- 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 +23 -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 +28 -21
- 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 +3 -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/package.json +36 -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/switch.tsx +60 -0
- package/src/core/components/shadcn/tabs.tsx +29 -27
- package/src/core/components/shadcn/theme/ThemeSwitcher.tsx +13 -9
- package/src/core/components/toast/NotificationPanel.tsx +38 -44
- 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 +461 -271
- 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 +14 -11
- 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 +24 -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 +35 -31
- 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 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": "클라이언트 ID",
|
|
257
|
+
"oauthApps.clientSecret": "클라이언트 시크릿",
|
|
258
|
+
"oauthApps.clientSecretConfigured": "시크릿이 설정됨 (유지하려면 비워두세요)",
|
|
259
|
+
"oauthApps.clientSecretHelp": "선택 사항. 기밀 클라이언트에 필요합니다. 저장 시 암호화됩니다.",
|
|
260
|
+
"oauthApps.clientSecretPlaceholder": "클라이언트 시크릿 입력",
|
|
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": "케밥 케이스 식별자 (예: 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": "웹 호환 오디오 렌디션이 없습니다",
|
|
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": "웹 호환 비디오 렌디션이 없습니다",
|
|
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": "{{fileCount}}개 파일이 포함된 1개 폴더 업로드 준비 중...",
|
|
611
|
+
"upload.preparingFolder_other": "{{fileCount}}개 파일이 포함된 {{folderCount}}개 폴더 업로드 준비 중...",
|
|
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
|
+
}
|