@taskforcehq/taskforce 0.3.326 → 0.3.327
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/LICENSE.md +68 -0
- package/README.md +19 -0
- package/dist/Taskforce.module.css +2173 -561
- package/dist/TaskforceCore.d.ts +1 -0
- package/dist/TaskforceCore.js +65 -22
- package/dist/annotatedAttachments/AnnotatedAttachmentSessionStore.d.ts +1 -0
- package/dist/annotatedAttachments/AnnotatedAttachmentSessionStore.js +3 -2
- package/dist/annotatedAttachments/commandService.d.ts +68 -0
- package/dist/annotatedAttachments/commandService.js +348 -0
- package/dist/annotatedAttachments/service.d.ts +2 -0
- package/dist/annotatedAttachments/service.js +13 -12
- package/dist/cli.js +158 -9
- package/dist/cliOpenPort.d.ts +1 -0
- package/dist/cliOpenPort.js +4 -0
- package/dist/compat/taskforceAgentDefinitionCompat.d.ts +12 -0
- package/dist/compat/taskforceAgentDefinitionCompat.js +25 -0
- package/dist/compat/workspaceSyncCompat.js +6 -2
- package/dist/compat/workspaceSyncV3CombinedCoverageCompat.d.ts +6 -0
- package/dist/compat/workspaceSyncV3CombinedCoverageCompat.js +22 -0
- package/dist/compat/workspaceSyncV3OperationCompat.d.ts +7 -0
- package/dist/compat/workspaceSyncV3OperationCompat.js +30 -0
- package/dist/components/activity/EntityActivityTimeline.d.ts +10 -2
- package/dist/components/activity/EntityActivityTimeline.js +73 -35
- package/dist/components/context/AttachmentPreviewHost.d.ts +6 -0
- package/dist/components/context/AttachmentPreviewHost.js +222 -0
- package/dist/components/context/ContextAttachmentManager.d.ts +4 -0
- package/dist/components/context/ContextAttachmentManager.js +418 -208
- package/dist/components/features/AiProfilesModule.d.ts +24 -0
- package/dist/components/features/AiProfilesModule.js +744 -0
- package/dist/components/features/AnnotatedAttachmentWorkspace.d.ts +4 -1
- package/dist/components/features/AnnotatedAttachmentWorkspace.js +351 -79
- package/dist/components/features/DocumentGenerateModal.js +23 -5
- package/dist/components/features/DocumentIndex.d.ts +19 -1
- package/dist/components/features/DocumentIndex.js +104 -15
- package/dist/components/features/DocumentViewer.d.ts +9 -1
- package/dist/components/features/DocumentViewer.js +721 -100
- package/dist/components/features/DocumentWorkspace.d.ts +37 -2
- package/dist/components/features/DocumentWorkspace.js +21 -6
- package/dist/components/features/TaskSettings.d.ts +6 -27
- package/dist/components/features/TaskSettings.js +232 -143
- package/dist/components/features/TaskforceAgentsModule.d.ts +36 -0
- package/dist/components/features/TaskforceAgentsModule.js +1782 -0
- package/dist/components/features/agentBehavior/AgentBehaviorManagerShared.d.ts +94 -0
- package/dist/components/features/agentBehavior/AgentBehaviorManagerShared.js +70 -0
- package/dist/components/features/agentCapabilities/AgentCapabilitiesPrototype.d.ts +65 -0
- package/dist/components/features/agentCapabilities/AgentCapabilitiesPrototype.js +115 -0
- package/dist/components/features/agentRoles/RoleManagerPanel.d.ts +4 -0
- package/dist/components/features/agentRoles/RoleManagerPanel.js +382 -0
- package/dist/components/features/agentSkills/SkillManagerPanel.d.ts +5 -0
- package/dist/components/features/agentSkills/SkillManagerPanel.js +355 -0
- package/dist/components/features/documentWorkspaceModel.d.ts +16 -4
- package/dist/components/features/documentWorkspaceModel.js +30 -5
- package/dist/components/features/planning/PlanningArchiveConfirmation.d.ts +9 -0
- package/dist/components/features/planning/PlanningArchiveConfirmation.js +19 -0
- package/dist/components/features/planning/PlanningCardIdentity.d.ts +12 -0
- package/dist/components/features/planning/PlanningCardIdentity.js +44 -0
- package/dist/components/features/planning/PlanningEntityDetails.d.ts +36 -0
- package/dist/components/features/planning/PlanningEntityDetails.js +131 -0
- package/dist/components/features/planning/PlanningEntitySummary.d.ts +44 -0
- package/dist/components/features/planning/PlanningEntitySummary.js +97 -0
- package/dist/components/features/planning/PlanningLinkPicker.d.ts +9 -0
- package/dist/components/features/planning/PlanningLinkPicker.js +26 -0
- package/dist/components/features/planning/PlanningModule.d.ts +6 -0
- package/dist/components/features/planning/PlanningModule.js +571 -0
- package/dist/components/features/planning/PlanningOwnerDropdown.d.ts +27 -0
- package/dist/components/features/planning/PlanningOwnerDropdown.js +80 -0
- package/dist/components/features/planning/PlanningTaskArrangeControl.d.ts +5 -0
- package/dist/components/features/planning/PlanningTaskArrangeControl.js +11 -0
- package/dist/components/features/planning/PlanningTaskCard.d.ts +20 -0
- package/dist/components/features/planning/PlanningTaskCard.js +26 -0
- package/dist/components/features/planning/PlanningTaskOrderList.d.ts +10 -0
- package/dist/components/features/planning/PlanningTaskOrderList.js +52 -0
- package/dist/components/features/planning/PlanningUnlinkConfirmation.d.ts +15 -0
- package/dist/components/features/planning/PlanningUnlinkConfirmation.js +7 -0
- package/dist/components/features/planning/planningCreateIntent.d.ts +10 -0
- package/dist/components/features/planning/planningCreateIntent.js +16 -0
- package/dist/components/features/planning/planningNavigator.d.ts +33 -0
- package/dist/components/features/planning/planningNavigator.js +96 -0
- package/dist/components/features/planning/planningTaskArrangement.d.ts +18 -0
- package/dist/components/features/planning/planningTaskArrangement.js +106 -0
- package/dist/components/features/planning/planningWorkspaceModel.d.ts +121 -0
- package/dist/components/features/planning/planningWorkspaceModel.js +5 -0
- package/dist/components/features/settings/CategoryManager.js +2 -2
- package/dist/components/features/settings/TaxonomyEditor.js +1 -1
- package/dist/components/features/settings/TaxonomyManager.js +1 -1
- package/dist/components/features/settings/TypeManager.js +1 -1
- package/dist/components/features/taskforceAgentAssignments/AgentBehaviorAssignments.d.ts +10 -0
- package/dist/components/features/taskforceAgentAssignments/AgentBehaviorAssignments.js +175 -0
- package/dist/components/features/taskforceAgentAssignments/agentBehaviorCatalogApi.d.ts +27 -0
- package/dist/components/features/taskforceAgentAssignments/agentBehaviorCatalogApi.js +24 -0
- package/dist/components/features/taskforceAgentEditorModel.d.ts +109 -0
- package/dist/components/features/taskforceAgentEditorModel.js +145 -0
- package/dist/components/features/useDocumentWorkspaceController.d.ts +20 -1
- package/dist/components/features/useDocumentWorkspaceController.js +106 -21
- package/dist/components/features/workflowManager/WorkflowManagerModule.d.ts +11 -0
- package/dist/components/features/workflowManager/WorkflowManagerModule.js +313 -0
- package/dist/components/features/workflowManager/WorkflowPublishDialog.d.ts +11 -0
- package/dist/components/features/workflowManager/WorkflowPublishDialog.js +8 -0
- package/dist/components/features/workflowManager/types.d.ts +74 -0
- package/dist/components/features/workflowManager/types.js +1 -0
- package/dist/components/features/workflowManager/useWorkflowManager.d.ts +30 -0
- package/dist/components/features/workflowManager/useWorkflowManager.js +213 -0
- package/dist/components/features/workflowManager/workflowManagerApi.d.ts +52 -0
- package/dist/components/features/workflowManager/workflowManagerApi.js +142 -0
- package/dist/components/task/TaskActionHeader.d.ts +6 -3
- package/dist/components/task/TaskActionHeader.js +46 -53
- package/dist/components/task/TaskCard.d.ts +10 -2
- package/dist/components/task/TaskCard.js +103 -54
- package/dist/components/task/TaskContextUpload.d.ts +1 -0
- package/dist/components/task/TaskContextUpload.js +3 -2
- package/dist/components/task/TaskForm.d.ts +12 -17
- package/dist/components/task/TaskForm.js +544 -199
- package/dist/components/task/TaskImageReviews.d.ts +8 -0
- package/dist/components/task/TaskImageReviews.js +47 -0
- package/dist/components/task/TaskKanban.d.ts +9 -10
- package/dist/components/task/TaskKanban.js +70 -18
- package/dist/components/task/TaskList.d.ts +9 -8
- package/dist/components/task/TaskList.js +46 -32
- package/dist/components/task/TaskReferenceBadge.d.ts +2 -1
- package/dist/components/task/TaskReferenceBadge.js +3 -2
- package/dist/components/task/TaskStatusActions.d.ts +3 -1
- package/dist/components/task/TaskStatusActions.js +17 -6
- package/dist/components/task/TaskWorkflowAssignmentField.d.ts +18 -0
- package/dist/components/task/TaskWorkflowAssignmentField.js +362 -0
- package/dist/components/task/TaskWorkstreamPicker.d.ts +8 -0
- package/dist/components/task/TaskWorkstreamPicker.js +24 -0
- package/dist/components/task/TrashRestoreControls.d.ts +18 -0
- package/dist/components/task/TrashRestoreControls.js +71 -0
- package/dist/components/ui/AiIdentityRosterCard.d.ts +20 -0
- package/dist/components/ui/AiIdentityRosterCard.js +5 -0
- package/dist/components/ui/AssetTraySortControl.d.ts +10 -0
- package/dist/components/ui/AssetTraySortControl.js +38 -0
- package/dist/components/ui/AssigneeIdentity.d.ts +12 -0
- package/dist/components/ui/AssigneeIdentity.js +41 -0
- package/dist/components/ui/DiscardChangesDialog.d.ts +10 -0
- package/dist/components/ui/DiscardChangesDialog.js +7 -0
- package/dist/components/ui/DisclosureSectionHeader.d.ts +4 -1
- package/dist/components/ui/DisclosureSectionHeader.js +2 -2
- package/dist/components/ui/EditableAvatarButton.d.ts +6 -1
- package/dist/components/ui/EditableAvatarButton.js +6 -5
- package/dist/components/ui/HierarchyActionBadge.d.ts +2 -1
- package/dist/components/ui/HierarchyActionBadge.js +2 -2
- package/dist/components/ui/Markdown.d.ts +13 -3
- package/dist/components/ui/Markdown.fixture.d.ts +1 -0
- package/dist/components/ui/Markdown.fixture.js +23 -0
- package/dist/components/ui/Markdown.js +158 -68
- package/dist/components/ui/Modal.d.ts +3 -1
- package/dist/components/ui/Modal.js +85 -19
- package/dist/components/ui/MultiSelectFilter.d.ts +9 -2
- package/dist/components/ui/MultiSelectFilter.js +26 -5
- package/dist/components/ui/ReferenceBadgeButton.js +2 -3
- package/dist/components/ui/TaxonomyDropdown.d.ts +10 -1
- package/dist/components/ui/TaxonomyDropdown.js +149 -58
- package/dist/components/ui/TopNoticeLayer.d.ts +2 -1
- package/dist/components/ui/TopNoticeLayer.js +5 -2
- package/dist/components/ui/useFallbackImageUrl.d.ts +4 -0
- package/dist/components/ui/useFallbackImageUrl.js +20 -0
- package/dist/components/views/AppShellHeader.js +2 -2
- package/dist/components/views/StandaloneLayout.d.ts +1 -0
- package/dist/components/views/StandaloneLayout.js +1662 -598
- package/dist/components/views/WidgetView.d.ts +1 -0
- package/dist/components/views/WidgetView.js +95 -30
- package/dist/components/views/chrome/WorkspaceChromeSections.d.ts +4 -2
- package/dist/components/views/chrome/WorkspaceChromeSections.js +3 -6
- package/dist/components/views/chrome/workspaceChrome.d.ts +5 -8
- package/dist/components/views/chrome/workspaceChrome.js +62 -27
- package/dist/components/views/panels/FilterToolbar.d.ts +4 -3
- package/dist/components/views/panels/FilterToolbar.js +8 -5
- package/dist/components/views/panels/FilterToolbarControls.d.ts +11 -2
- package/dist/components/views/panels/FilterToolbarControls.js +35 -20
- package/dist/components/views/panels/PlanningDrawer.d.ts +60 -49
- package/dist/components/views/panels/PlanningDrawer.js +978 -313
- package/dist/components/views/planningScope.js +7 -1
- package/dist/components/views/standalone/modals/AccountSettingsModal.d.ts +62 -0
- package/dist/components/views/standalone/modals/AccountSettingsModal.js +197 -0
- package/dist/components/views/standalone/modals/AvatarImageManagerModal.d.ts +7 -2
- package/dist/components/views/standalone/modals/AvatarImageManagerModal.js +56 -9
- package/dist/components/views/standalone/modals/HelpModal.d.ts +1 -2
- package/dist/components/views/standalone/modals/HelpModal.js +3 -4
- package/dist/components/views/standalone/modals/SyncStatusModal.d.ts +8 -9
- package/dist/components/views/standalone/modals/SyncStatusModal.js +85 -25
- package/dist/components/views/standalone/modals/TeamManagementModal.js +1 -1
- package/dist/config/applicationBaseUrl.d.ts +2 -0
- package/dist/config/applicationBaseUrl.js +23 -0
- package/dist/config/envSchema.d.ts +1 -1
- package/dist/config/envSchema.js +166 -5
- package/dist/core/AdminAuditRetentionService.d.ts +43 -0
- package/dist/core/AdminAuditRetentionService.js +126 -0
- package/dist/core/AiProfileService.d.ts +34 -0
- package/dist/core/AiProfileService.js +510 -251
- package/dist/core/AttachmentLinkService.d.ts +10 -2
- package/dist/core/AttachmentLinkService.js +44 -12
- package/dist/core/AuthIdentityService.d.ts +6 -0
- package/dist/core/AuthIdentityService.js +38 -0
- package/dist/core/AuthTokenService.d.ts +1 -0
- package/dist/core/AuthTokenService.js +13 -0
- package/dist/core/DeletedTaskLifecycleService.d.ts +4 -2
- package/dist/core/DeletedTaskLifecycleService.js +124 -38
- package/dist/core/GlobalSettingsService.d.ts +3 -1
- package/dist/core/GlobalSettingsService.js +30 -4
- package/dist/core/InitiativeDurableMutationService.d.ts +89 -0
- package/dist/core/InitiativeDurableMutationService.js +187 -0
- package/dist/core/McpTokenService.d.ts +1 -0
- package/dist/core/McpTokenService.js +39 -13
- package/dist/core/PlanningCommandPreparationService.d.ts +60 -0
- package/dist/core/PlanningCommandPreparationService.js +149 -0
- package/dist/core/ScheduleCommandService.d.ts +76 -0
- package/dist/core/ScheduleCommandService.js +165 -0
- package/dist/core/SyncReconciliationService.d.ts +29 -6
- package/dist/core/SyncReconciliationService.js +256 -84
- package/dist/core/TaskActivityService.d.ts +22 -2
- package/dist/core/TaskActivityService.js +177 -29
- package/dist/core/TaskAttachmentLinksDurableMutationService.d.ts +31 -0
- package/dist/core/TaskAttachmentLinksDurableMutationService.js +231 -0
- package/dist/core/TaskChecklistCommandService.d.ts +50 -0
- package/dist/core/TaskChecklistCommandService.js +111 -0
- package/dist/core/TaskDurableCreateMutationService.d.ts +38 -0
- package/dist/core/TaskDurableCreateMutationService.js +85 -0
- package/dist/core/TaskDurableDeleteMutationService.d.ts +47 -0
- package/dist/core/TaskDurableDeleteMutationService.js +54 -0
- package/dist/core/TaskDurableLifecycleMutationService.d.ts +38 -0
- package/dist/core/TaskDurableLifecycleMutationService.js +42 -0
- package/dist/core/TaskDurableRelationshipMutationService.d.ts +58 -0
- package/dist/core/TaskDurableRelationshipMutationService.js +66 -0
- package/dist/core/TaskDurableRestoreMutationService.d.ts +31 -0
- package/dist/core/TaskDurableRestoreMutationService.js +33 -0
- package/dist/core/TaskDurableStatusMutationService.d.ts +74 -0
- package/dist/core/TaskDurableStatusMutationService.js +247 -0
- package/dist/core/TaskDurableSyncMutationService.d.ts +34 -0
- package/dist/core/TaskDurableSyncMutationService.js +70 -0
- package/dist/core/TaskDurableWorkflowMutationService.d.ts +48 -0
- package/dist/core/TaskDurableWorkflowMutationService.js +59 -0
- package/dist/core/TaskLifecycleCommandService.d.ts +101 -0
- package/dist/core/TaskLifecycleCommandService.js +161 -0
- package/dist/core/TaskRootCommandPreparationService.d.ts +35 -0
- package/dist/core/TaskRootCommandPreparationService.js +103 -0
- package/dist/core/Taskforce.d.ts +479 -59
- package/dist/core/Taskforce.js +3671 -841
- package/dist/core/WorkflowAssignmentService.d.ts +40 -0
- package/dist/core/WorkflowAssignmentService.js +158 -0
- package/dist/core/WorkflowExecutionService.d.ts +69 -0
- package/dist/core/WorkflowExecutionService.js +342 -0
- package/dist/core/WorkflowTaskActivationService.d.ts +32 -0
- package/dist/core/WorkflowTaskActivationService.js +63 -0
- package/dist/core/WorkflowTemplateService.d.ts +64 -0
- package/dist/core/WorkflowTemplateService.js +223 -0
- package/dist/core/WorkspaceLifecycleService.d.ts +1 -0
- package/dist/core/WorkspaceLifecycleService.js +18 -0
- package/dist/core/WorkstreamDurableMutationService.d.ts +90 -0
- package/dist/core/WorkstreamDurableMutationService.js +184 -0
- package/dist/core/planningReferencePolicy.d.ts +14 -0
- package/dist/core/planningReferencePolicy.js +53 -0
- package/dist/core/taskReferencePolicy.js +24 -3
- package/dist/core/types.d.ts +10 -10
- package/dist/documentReviews/DocumentReviewCommentStore.d.ts +22 -2
- package/dist/documentReviews/DocumentReviewCommentStore.js +92 -8
- package/dist/documentReviews/commandService.d.ts +51 -0
- package/dist/documentReviews/commandService.js +63 -0
- package/dist/documentReviews/service.d.ts +20 -1
- package/dist/documentReviews/service.js +234 -24
- package/dist/documentReviews/types.d.ts +18 -1
- package/dist/hooks/sync/bootstrap.d.ts +3 -7
- package/dist/hooks/sync/bootstrap.js +6 -14
- package/dist/hooks/sync/browserSyncAuthority.d.ts +21 -0
- package/dist/hooks/sync/browserSyncAuthority.js +70 -0
- package/dist/hooks/sync/browserSyncRemoteServices.d.ts +29 -0
- package/dist/hooks/sync/browserSyncRemoteServices.js +58 -0
- package/dist/hooks/sync/controlPlane.d.ts +1 -37
- package/dist/hooks/sync/controlPlane.js +1 -78
- package/dist/hooks/sync/lifecyclePolicy.d.ts +1 -45
- package/dist/hooks/sync/lifecyclePolicy.js +1 -93
- package/dist/hooks/sync/orchestratorShared.d.ts +9 -3
- package/dist/hooks/sync/orchestratorShared.js +70 -96
- package/dist/hooks/sync/pullLifecycle.d.ts +1 -31
- package/dist/hooks/sync/pullLifecycle.js +1 -24
- package/dist/hooks/sync/realtime.d.ts +4 -1
- package/dist/hooks/sync/realtime.js +103 -3
- package/dist/hooks/sync/recovery.d.ts +1 -84
- package/dist/hooks/sync/recovery.js +1 -245
- package/dist/hooks/sync/transfers.d.ts +8 -129
- package/dist/hooks/sync/transfers.js +19 -581
- package/dist/hooks/sync/useDataVersionRefresh.d.ts +6 -1
- package/dist/hooks/sync/useDataVersionRefresh.js +127 -12
- package/dist/hooks/sync/useDurableLocalOutboxDrain.d.ts +14 -0
- package/dist/hooks/sync/useDurableLocalOutboxDrain.js +208 -0
- package/dist/hooks/sync/useDurableTaskCreateMutation.d.ts +15 -0
- package/dist/hooks/sync/useDurableTaskCreateMutation.js +152 -0
- package/dist/hooks/sync/useDurableTaskDeleteMutation.d.ts +11 -0
- package/dist/hooks/sync/useDurableTaskDeleteMutation.js +21 -0
- package/dist/hooks/sync/useDurableTaskLifecycleMutation.d.ts +12 -0
- package/dist/hooks/sync/useDurableTaskLifecycleMutation.js +22 -0
- package/dist/hooks/sync/useDurableTaskMetadataMutation.d.ts +14 -0
- package/dist/hooks/sync/useDurableTaskMetadataMutation.js +24 -0
- package/dist/hooks/sync/useDurableTaskRestoreMutation.d.ts +12 -0
- package/dist/hooks/sync/useDurableTaskRestoreMutation.js +24 -0
- package/dist/hooks/sync/useDurableTaskStatusMutation.d.ts +18 -0
- package/dist/hooks/sync/useDurableTaskStatusMutation.js +23 -0
- package/dist/hooks/sync/useLocalSyncCoordinatorSnapshot.d.ts +23 -0
- package/dist/hooks/sync/useLocalSyncCoordinatorSnapshot.js +414 -0
- package/dist/hooks/sync/useSyncStatusActions.d.ts +2 -1
- package/dist/hooks/sync/useSyncStatusActions.js +8 -3
- package/dist/hooks/tasks/taskHttpMutation.d.ts +25 -0
- package/dist/hooks/tasks/taskHttpMutation.js +134 -0
- package/dist/hooks/tasks/useCurrentTaskRelations.d.ts +6 -1
- package/dist/hooks/tasks/useCurrentTaskRelations.js +32 -6
- package/dist/hooks/tasks/useTaskEditorNavigation.d.ts +4 -3
- package/dist/hooks/tasks/useTaskEditorNavigation.js +9 -13
- package/dist/hooks/tasks/useTaskFormActions.d.ts +17 -2
- package/dist/hooks/tasks/useTaskFormActions.js +309 -55
- package/dist/hooks/tasks/useTaskReferenceContract.d.ts +5 -0
- package/dist/hooks/tasks/useTaskReferenceContract.js +17 -0
- package/dist/hooks/tasks/useTaskRelationships.d.ts +1 -3
- package/dist/hooks/tasks/useTaskRelationships.js +5 -25
- package/dist/hooks/tasks/useTrashSelection.d.ts +12 -0
- package/dist/hooks/tasks/useTrashSelection.js +49 -0
- package/dist/hooks/ui/useInitiativeTemplates.d.ts +24 -0
- package/dist/hooks/ui/useInitiativeTemplates.js +22 -0
- package/dist/hooks/ui/useSettingsModel.d.ts +5 -29
- package/dist/hooks/ui/useSettingsModel.js +31 -15
- package/dist/hooks/ui/useSettingsPersistence.d.ts +0 -1
- package/dist/hooks/ui/useSettingsPersistence.js +4 -8
- package/dist/hooks/ui/useSettingsTaxonomyManagement.js +31 -0
- package/dist/hooks/useFilterSort.d.ts +2 -2
- package/dist/hooks/useFilterSort.js +19 -15
- package/dist/hooks/useRealtimeSync.d.ts +10 -0
- package/dist/hooks/useRealtimeSync.js +57 -4
- package/dist/hooks/useSyncOrchestrator.d.ts +32 -1
- package/dist/hooks/useSyncOrchestrator.js +963 -287
- package/dist/hooks/useTaskData.d.ts +11 -2
- package/dist/hooks/useTaskData.js +59 -26
- package/dist/hooks/useTaskMutations.d.ts +42 -5
- package/dist/hooks/useTaskMutations.js +750 -125
- package/dist/hooks/useTaskforce.d.ts +114 -118
- package/dist/hooks/useTaskforce.js +1102 -449
- package/dist/hooks/useUiNotice.d.ts +5 -1
- package/dist/hooks/useUiNotice.js +13 -2
- package/dist/hooks/useWorkspaceSyncController.d.ts +9 -0
- package/dist/hooks/useWorkspaceSyncController.js +159 -17
- package/dist/hooks/workspace/usePersistedAppUiState.d.ts +74 -0
- package/dist/hooks/workspace/usePersistedAppUiState.js +325 -0
- package/dist/hooks/workspace/usePersistedLayoutUiState.d.ts +76 -0
- package/dist/hooks/workspace/usePersistedLayoutUiState.js +479 -0
- package/dist/hooks/workspace/useTaskforceWorkspaceBootstrap.d.ts +2 -7
- package/dist/hooks/workspace/useTaskforceWorkspaceBootstrap.js +42 -31
- package/dist/hooks/workspace/workspaceLocalState.d.ts +17 -6
- package/dist/hooks/workspace/workspaceLocalState.js +175 -5
- package/dist/hooks/workstreams/workstreamHttpMutation.d.ts +23 -0
- package/dist/hooks/workstreams/workstreamHttpMutation.js +134 -0
- package/dist/localization/locales/en-US.d.ts +3 -3
- package/dist/localization/locales/en-US.js +3 -3
- package/dist/localization/locales/es-419.js +3 -3
- package/dist/localization/locales/pt-BR.js +3 -3
- package/dist/mcp/adminWorkspaceRegistrar.js +2 -30
- package/dist/mcp/aiProfileBootstrap.d.ts +3 -0
- package/dist/mcp/aiProfileBootstrap.js +4 -0
- package/dist/mcp/canonicalAssetHelpers.d.ts +16 -4
- package/dist/mcp/canonicalAssetHelpers.js +104 -35
- package/dist/mcp/clientIntegrations.d.ts +4 -2
- package/dist/mcp/clientIntegrations.js +58 -57
- package/dist/mcp/clientRegistry.d.ts +30 -0
- package/dist/mcp/clientRegistry.js +134 -0
- package/dist/mcp/collaborationRegistrar.js +20 -6
- package/dist/mcp/documentAssetRegistrar.js +220 -52
- package/dist/mcp/documentContentCommand.d.ts +94 -0
- package/dist/mcp/documentContentCommand.js +226 -0
- package/dist/mcp/documentHelpers.d.ts +13 -65
- package/dist/mcp/documentHelpers.js +49 -62
- package/dist/mcp/durableTaskMutationRouter.d.ts +65 -0
- package/dist/mcp/durableTaskMutationRouter.js +217 -0
- package/dist/mcp/durableTaskRelationshipMutationRouter.d.ts +38 -0
- package/dist/mcp/durableTaskRelationshipMutationRouter.js +168 -0
- package/dist/mcp/durableTaskRootMutationRouter.d.ts +64 -0
- package/dist/mcp/durableTaskRootMutationRouter.js +226 -0
- package/dist/mcp/gitWorktreeRoots.d.ts +2 -0
- package/dist/mcp/gitWorktreeRoots.js +19 -0
- package/dist/mcp/legacyServer.d.ts +1 -0
- package/dist/mcp/legacyServer.js +42 -0
- package/dist/mcp/localCliHealth.d.ts +56 -0
- package/dist/mcp/localCliHealth.js +170 -0
- package/dist/mcp/localServiceProxy.d.ts +23 -0
- package/dist/mcp/localServiceProxy.js +255 -0
- package/dist/mcp/mcpInputValidator.d.ts +17 -0
- package/dist/mcp/mcpInputValidator.js +58 -0
- package/dist/mcp/planningAttachmentCommandAdapter.d.ts +127 -0
- package/dist/mcp/planningAttachmentCommandAdapter.js +188 -0
- package/dist/mcp/programScaffoldCommandAdapter.d.ts +6 -0
- package/dist/mcp/programScaffoldCommandAdapter.js +39 -0
- package/dist/mcp/proxyServer.d.ts +1 -0
- package/dist/mcp/proxyServer.js +2 -0
- package/dist/mcp/runtime.d.ts +82 -1
- package/dist/mcp/runtime.js +4285 -1925
- package/dist/mcp/server.js +29 -2
- package/dist/mcp/sharedLocalServiceGateD.d.ts +115 -0
- package/dist/mcp/sharedLocalServiceGateD.js +344 -0
- package/dist/mcp/stdioLifecycle.d.ts +22 -0
- package/dist/mcp/stdioLifecycle.js +54 -0
- package/dist/mcp/taskAttachmentCommandAdapter.d.ts +190 -0
- package/dist/mcp/taskAttachmentCommandAdapter.js +464 -0
- package/dist/mcp/taskAttachmentHelpers.d.ts +8 -6
- package/dist/mcp/taskAttachmentHelpers.js +74 -2
- package/dist/mcp/taskAttachmentTypes.d.ts +26 -5
- package/dist/mcp/taskPlanCommand.d.ts +64 -0
- package/dist/mcp/taskPlanCommand.js +98 -0
- package/dist/mcp/taskPlanningRegistrar.js +215 -27
- package/dist/mcp/toolCallCompatibility.d.ts +6 -0
- package/dist/mcp/toolCallCompatibility.js +16 -0
- package/dist/mcp/toolCatalog.d.ts +3 -1
- package/dist/mcp/toolProfiles.d.ts +12 -1
- package/dist/mcp/toolProfiles.js +43 -0
- package/dist/mcp/toolRegistry.d.ts +17 -2
- package/dist/mcp/toolRegistry.js +24 -9
- package/dist/mcp/workflowExecutionRegistrar.d.ts +2 -0
- package/dist/mcp/workflowExecutionRegistrar.js +51 -0
- package/dist/migrations/taskSchemaMigrations.d.ts +35 -0
- package/dist/migrations/taskSchemaMigrations.js +1797 -4
- package/dist/migrations/taskUpdatedAtSyncDriftMigration.d.ts +20 -0
- package/dist/migrations/taskUpdatedAtSyncDriftMigration.js +153 -0
- package/dist/migrations/taskforceAgentDefinitionMigration.d.ts +26 -0
- package/dist/migrations/taskforceAgentDefinitionMigration.js +116 -0
- package/dist/plugins/vite.js +48 -17
- package/dist/public/Taskforce_Van.webp +0 -0
- package/dist/runtime/appGateDefinitions.d.ts +16 -10
- package/dist/runtime/appGateDefinitions.js +16 -10
- package/dist/runtime/appGates.d.ts +5 -4
- package/dist/runtime/appGates.js +4 -3
- package/dist/server/aiProfileAvatarAssets.d.ts +11 -8
- package/dist/server/aiProfileAvatarAssets.js +159 -70
- package/dist/server/auth.js +15 -1
- package/dist/server/cors.d.ts +2 -1
- package/dist/server/cors.js +45 -8
- package/dist/server/email.d.ts +3 -1
- package/dist/server/email.js +46 -8
- package/dist/server/index.d.ts +24 -1
- package/dist/server/index.js +342 -46
- package/dist/server/localDataOwnerPermit.d.ts +18 -0
- package/dist/server/localDataOwnerPermit.js +58 -0
- package/dist/server/localDatabaseIdentity.d.ts +14 -0
- package/dist/server/localDatabaseIdentity.js +69 -0
- package/dist/server/localRealtimeFileInvalidation.d.ts +1 -0
- package/dist/server/localRealtimeFileInvalidation.js +7 -0
- package/dist/server/localServiceLease.d.ts +62 -0
- package/dist/server/localServiceLease.js +477 -0
- package/dist/server/localServiceOwnershipBootstrap.d.ts +19 -0
- package/dist/server/localServiceOwnershipBootstrap.js +84 -0
- package/dist/server/localServiceSessions.d.ts +87 -0
- package/dist/server/localServiceSessions.js +309 -0
- package/dist/server/localServiceWindowsAcl.d.ts +8 -0
- package/dist/server/localServiceWindowsAcl.js +60 -0
- package/dist/server/localSyncProcessLockBootstrap.d.ts +3 -0
- package/dist/server/localSyncProcessLockBootstrap.js +16 -0
- package/dist/server/localWorkspaceSyncServerComposition.d.ts +59 -0
- package/dist/server/localWorkspaceSyncServerComposition.js +91 -0
- package/dist/server/localWorkspaceSyncServerRuntime.d.ts +119 -0
- package/dist/server/localWorkspaceSyncServerRuntime.js +1163 -0
- package/dist/server/rateLimit.d.ts +1 -0
- package/dist/server/rateLimit.js +16 -0
- package/dist/server/routes/admin.d.ts +2 -4
- package/dist/server/routes/admin.js +199 -337
- package/dist/server/routes/agentRoles.d.ts +13 -0
- package/dist/server/routes/agentRoles.js +273 -0
- package/dist/server/routes/agentSkills.d.ts +16 -0
- package/dist/server/routes/agentSkills.js +291 -0
- package/dist/server/routes/agents.d.ts +49 -0
- package/dist/server/routes/agents.js +1455 -0
- package/dist/server/routes/annotatedAttachments.js +46 -9
- package/dist/server/routes/assetAccess.d.ts +36 -0
- package/dist/server/routes/assetAccess.js +93 -0
- package/dist/server/routes/auth.d.ts +4 -3
- package/dist/server/routes/auth.js +236 -21
- package/dist/server/routes/authSupport.d.ts +3 -1
- package/dist/server/routes/authSupport.js +22 -8
- package/dist/server/routes/documentReviews.d.ts +2 -0
- package/dist/server/routes/documentReviews.js +155 -15
- package/dist/server/routes/documents.d.ts +1 -0
- package/dist/server/routes/documents.js +335 -141
- package/dist/server/routes/durableTaskHttpRouters.d.ts +165 -0
- package/dist/server/routes/durableTaskHttpRouters.js +89 -0
- package/dist/server/routes/localMcpHealth.d.ts +11 -0
- package/dist/server/routes/localMcpHealth.js +29 -0
- package/dist/server/routes/localService.d.ts +13 -0
- package/dist/server/routes/localService.js +444 -0
- package/dist/server/routes/localUpdate.d.ts +11 -0
- package/dist/server/routes/localUpdate.js +154 -0
- package/dist/server/routes/primitives.d.ts +27 -0
- package/dist/server/routes/primitives.js +18 -0
- package/dist/server/routes/resources.d.ts +1 -10
- package/dist/server/routes/resources.js +1 -153
- package/dist/server/routes/shared.d.ts +31 -2
- package/dist/server/routes/shared.js +394 -0
- package/dist/server/routes/sync.d.ts +2 -0
- package/dist/server/routes/sync.js +184 -272
- package/dist/server/routes/syncAuxRoutes.d.ts +3 -1
- package/dist/server/routes/syncAuxRoutes.js +9 -4
- package/dist/server/routes/syncCoordinatorLocalRoutes.d.ts +6 -0
- package/dist/server/routes/syncCoordinatorLocalRoutes.js +867 -0
- package/dist/server/routes/syncPullApplyRoutes.d.ts +29 -1
- package/dist/server/routes/syncPullApplyRoutes.js +520 -17
- package/dist/server/routes/syncPushRoutes.d.ts +33 -4
- package/dist/server/routes/syncPushRoutes.js +251 -62
- package/dist/server/routes/syncRouteTypes.d.ts +1 -1
- package/dist/server/routes/syncSnapshotRoutes.d.ts +15 -7
- package/dist/server/routes/syncSnapshotRoutes.js +95 -17
- package/dist/server/routes/syncV3DiagnosticsRoutes.d.ts +14 -0
- package/dist/server/routes/syncV3DiagnosticsRoutes.js +72 -0
- package/dist/server/routes/syncV3FeedRoutes.d.ts +20 -0
- package/dist/server/routes/syncV3FeedRoutes.js +462 -0
- package/dist/server/routes/syncV3LocalCaptureRoutes.d.ts +37 -0
- package/dist/server/routes/syncV3LocalCaptureRoutes.js +897 -0
- package/dist/server/routes/syncV3LocalDispatchRoutes.d.ts +17 -0
- package/dist/server/routes/syncV3LocalDispatchRoutes.js +280 -0
- package/dist/server/routes/syncV3LocalFeedApplyRoutes.d.ts +17 -0
- package/dist/server/routes/syncV3LocalFeedApplyRoutes.js +493 -0
- package/dist/server/routes/syncV3LocalOwnershipRoutes.d.ts +10 -0
- package/dist/server/routes/syncV3LocalOwnershipRoutes.js +51 -0
- package/dist/server/routes/syncV3LocalRecoveryRoutes.d.ts +12 -0
- package/dist/server/routes/syncV3LocalRecoveryRoutes.js +78 -0
- package/dist/server/routes/syncV3OperationRoutes.d.ts +35 -0
- package/dist/server/routes/syncV3OperationRoutes.js +1136 -0
- package/dist/server/routes/tasks.d.ts +0 -2
- package/dist/server/routes/tasks.js +932 -195
- package/dist/server/routes/workflows.d.ts +26 -0
- package/dist/server/routes/workflows.js +500 -0
- package/dist/server/routes.d.ts +1 -6
- package/dist/server/routes.js +148 -339
- package/dist/server/smtpTransport.d.ts +11 -3
- package/dist/server/smtpTransport.js +9 -2
- package/dist/server/start.js +42 -10
- package/dist/service/localServiceCli.d.ts +33 -0
- package/dist/service/localServiceCli.js +365 -0
- package/dist/service/localServiceClientLifecycle.d.ts +25 -0
- package/dist/service/localServiceClientLifecycle.js +128 -0
- package/dist/service/localServiceOpen.d.ts +17 -0
- package/dist/service/localServiceOpen.js +27 -0
- package/dist/services/agentRoleResolver.d.ts +4 -0
- package/dist/services/agentRoleResolver.js +7 -0
- package/dist/services/aiProfileAvatarGenerationService.d.ts +41 -0
- package/dist/services/aiProfileAvatarGenerationService.js +158 -0
- package/dist/services/avatarImageProvider.d.ts +33 -0
- package/dist/services/avatarImageProvider.js +140 -0
- package/dist/services/bedrockAnthropicMessagesModelGateway.d.ts +24 -0
- package/dist/services/bedrockAnthropicMessagesModelGateway.js +95 -0
- package/dist/services/bedrockMantleModelGateway.d.ts +43 -0
- package/dist/services/bedrockMantleModelGateway.js +81 -0
- package/dist/services/bedrockModelGateway.d.ts +26 -0
- package/dist/services/bedrockModelGateway.js +94 -0
- package/dist/services/modelGateway.d.ts +82 -0
- package/dist/services/modelGateway.js +61 -0
- package/dist/services/taskforceAgentAvatarImageProvider.d.ts +8 -0
- package/dist/services/taskforceAgentAvatarImageProvider.js +24 -0
- package/dist/services/taskforceAgentMcpBridge.d.ts +77 -0
- package/dist/services/taskforceAgentMcpBridge.js +527 -0
- package/dist/shared/agentRoleDefinition.d.ts +34 -0
- package/dist/shared/agentRoleDefinition.js +207 -0
- package/dist/shared/aiProfileAvatarEligibility.d.ts +10 -0
- package/dist/shared/aiProfileAvatarEligibility.js +27 -0
- package/dist/shared/aiProfileColors.d.ts +7 -0
- package/dist/shared/aiProfileColors.js +33 -0
- package/dist/shared/colorPalette.d.ts +3 -0
- package/dist/shared/colorPalette.js +20 -0
- package/dist/shared/commentProvenance.d.ts +4 -0
- package/dist/shared/commentProvenance.js +6 -0
- package/dist/shared/deletedTaskRetention.d.ts +2 -0
- package/dist/shared/deletedTaskRetention.js +7 -0
- package/dist/shared/passwordPolicy.d.ts +2 -1
- package/dist/shared/passwordPolicy.js +9 -0
- package/dist/shared/taskDeepLinks.d.ts +28 -0
- package/dist/shared/taskDeepLinks.js +48 -0
- package/dist/shared/taskRestoreDestination.d.ts +2 -0
- package/dist/shared/taskRestoreDestination.js +5 -0
- package/dist/shared/taskforceAgentDefinition.d.ts +88 -0
- package/dist/shared/taskforceAgentDefinition.js +434 -0
- package/dist/shared/taskforceAgentExecutionSnapshot.d.ts +50 -0
- package/dist/shared/taskforceAgentExecutionSnapshot.js +68 -0
- package/dist/shared/taskforceAgentModels.d.ts +56 -0
- package/dist/shared/taskforceAgentModels.js +314 -0
- package/dist/shared/taskforceAgentRunContext.d.ts +23 -0
- package/dist/shared/taskforceAgentRunContext.js +21 -0
- package/dist/shared/taskforceAgentRuntimeResolution.d.ts +31 -0
- package/dist/shared/taskforceAgentRuntimeResolution.js +72 -0
- package/dist/shared/taskforceAgentSkill.d.ts +33 -0
- package/dist/shared/taskforceAgentSkill.js +149 -0
- package/dist/storage/agentRoleStore.d.ts +91 -0
- package/dist/storage/agentRoleStore.js +385 -0
- package/dist/storage/databaseAdapter.d.ts +1 -0
- package/dist/storage/databaseAdapter.js +7 -1
- package/dist/storage/documentIntegrity.d.ts +12 -3
- package/dist/storage/documentIntegrity.js +105 -27
- package/dist/storage/objectStorageClient.d.ts +10 -4
- package/dist/storage/objectStorageClient.js +73 -43
- package/dist/storage/postgresAdapter.d.ts +2 -1
- package/dist/storage/postgresAdapter.js +38 -6
- package/dist/storage/postgresWorker.js +65 -1
- package/dist/storage/sqliteAdapter.d.ts +1 -1
- package/dist/storage/sqliteAdapter.js +7 -1
- package/dist/storage/sqliteWalHealth.d.ts +71 -0
- package/dist/storage/sqliteWalHealth.js +176 -0
- package/dist/storage/taskDataPath.d.ts +1 -0
- package/dist/storage/taskDataPath.js +20 -0
- package/dist/storage/taskforceAgentConversationStore.d.ts +66 -0
- package/dist/storage/taskforceAgentConversationStore.js +264 -0
- package/dist/storage/taskforceAgentSkillStore.d.ts +93 -0
- package/dist/storage/taskforceAgentSkillStore.js +355 -0
- package/dist/storage/taskforceAgentStore.d.ts +105 -0
- package/dist/storage/taskforceAgentStore.js +549 -0
- package/dist/storage/workflowStore.d.ts +223 -0
- package/dist/storage/workflowStore.js +1032 -0
- package/dist/storage/workspaceAssetStore.d.ts +70 -0
- package/dist/storage/workspaceAssetStore.js +418 -25
- package/dist/sync/aiProfileAvatarSyncPaths.d.ts +14 -0
- package/dist/sync/aiProfileAvatarSyncPaths.js +56 -0
- package/dist/sync/cloudSyncApi.d.ts +329 -0
- package/dist/sync/cloudSyncApi.js +574 -1
- package/dist/sync/collaborationSyncPayload.d.ts +5 -1
- package/dist/sync/collaborationSyncPayload.js +213 -1
- package/dist/sync/collaborationSyncState.d.ts +23 -3
- package/dist/sync/collaborationSyncState.js +92 -3
- package/dist/sync/contentSyncPayload.d.ts +9 -0
- package/dist/sync/contentSyncPayload.js +29 -0
- package/dist/sync/contentSyncState.d.ts +79 -4
- package/dist/sync/contentSyncState.js +1113 -313
- package/dist/sync/coordinator/localSyncBrowserApplyPermitContext.d.ts +39 -0
- package/dist/sync/coordinator/localSyncBrowserApplyPermitContext.js +234 -0
- package/dist/sync/coordinator/localSyncBrowserAuthorityCapability.d.ts +7 -0
- package/dist/sync/coordinator/localSyncBrowserAuthorityCapability.js +10 -0
- package/dist/sync/coordinator/localSyncCommittedApplyPolicy.d.ts +7 -0
- package/dist/sync/coordinator/localSyncCommittedApplyPolicy.js +41 -0
- package/dist/sync/coordinator/localSyncCoordinatorBrowserClient.d.ts +178 -0
- package/dist/sync/coordinator/localSyncCoordinatorBrowserClient.js +131 -0
- package/dist/sync/coordinator/localSyncCoordinatorCommandLifecycle.d.ts +25 -0
- package/dist/sync/coordinator/localSyncCoordinatorCommandLifecycle.js +200 -0
- package/dist/sync/coordinator/localSyncCoordinatorHost.d.ts +84 -0
- package/dist/sync/coordinator/localSyncCoordinatorHost.js +435 -0
- package/dist/sync/coordinator/localSyncCoordinatorRouteServices.d.ts +33 -0
- package/dist/sync/coordinator/localSyncCoordinatorRouteServices.js +1 -0
- package/dist/sync/coordinator/localSyncCoordinatorStore.d.ts +122 -0
- package/dist/sync/coordinator/localSyncCoordinatorStore.js +1039 -0
- package/dist/sync/coordinator/localSyncCoordinatorTypes.d.ts +82 -0
- package/dist/sync/coordinator/localSyncCoordinatorTypes.js +9 -0
- package/dist/sync/coordinator/localSyncDispatchTracker.d.ts +15 -0
- package/dist/sync/coordinator/localSyncDispatchTracker.js +68 -0
- package/dist/sync/coordinator/localSyncExecutionPermitStore.d.ts +200 -0
- package/dist/sync/coordinator/localSyncExecutionPermitStore.js +1388 -0
- package/dist/sync/coordinator/localSyncExecutionPermitTypes.d.ts +52 -0
- package/dist/sync/coordinator/localSyncExecutionPermitTypes.js +8 -0
- package/dist/sync/coordinator/localSyncOwnershipDrainBarrier.d.ts +33 -0
- package/dist/sync/coordinator/localSyncOwnershipDrainBarrier.js +83 -0
- package/dist/sync/coordinator/localSyncPermitTransactionHooks.d.ts +9 -0
- package/dist/sync/coordinator/localSyncPermitTransactionHooks.js +27 -0
- package/dist/sync/coordinator/localSyncProcessLock.d.ts +12 -0
- package/dist/sync/coordinator/localSyncProcessLock.js +212 -0
- package/dist/sync/coordinator/localSyncV3DispatchRecoveryReconciler.d.ts +17 -0
- package/dist/sync/coordinator/localSyncV3DispatchRecoveryReconciler.js +82 -0
- package/dist/sync/coordinator/localWorkspaceSyncRunner.d.ts +134 -0
- package/dist/sync/coordinator/localWorkspaceSyncRunner.js +981 -0
- package/dist/sync/coordinator/localWorkspaceSyncRunnerState.d.ts +189 -0
- package/dist/sync/coordinator/localWorkspaceSyncRunnerState.js +961 -0
- package/dist/sync/coordinator/workspaceSyncCloudCredentialValidator.d.ts +19 -0
- package/dist/sync/coordinator/workspaceSyncCloudCredentialValidator.js +83 -0
- package/dist/sync/coordinator/workspaceSyncCredentialBroker.d.ts +117 -0
- package/dist/sync/coordinator/workspaceSyncCredentialBroker.js +323 -0
- package/dist/sync/coordinator/workspaceSyncLocalAccessBootstrap.d.ts +11 -0
- package/dist/sync/coordinator/workspaceSyncLocalAccessBootstrap.js +51 -0
- package/dist/sync/coordinator/workspaceSyncTransportGateway.d.ts +139 -0
- package/dist/sync/coordinator/workspaceSyncTransportGateway.js +738 -0
- package/dist/sync/engine/localWorkspaceContentManifestService.d.ts +21 -0
- package/dist/sync/engine/localWorkspaceContentManifestService.js +44 -0
- package/dist/sync/engine/workspaceSyncAtomicLocalPublisher.d.ts +36 -0
- package/dist/sync/engine/workspaceSyncAtomicLocalPublisher.js +203 -0
- package/dist/sync/engine/workspaceSyncContentLifecycleAdapter.d.ts +21 -0
- package/dist/sync/engine/workspaceSyncContentLifecycleAdapter.js +13 -0
- package/dist/sync/engine/workspaceSyncContentPullObligationStore.d.ts +65 -0
- package/dist/sync/engine/workspaceSyncContentPullObligationStore.js +160 -0
- package/dist/sync/engine/workspaceSyncContentVersionStore.d.ts +216 -0
- package/dist/sync/engine/workspaceSyncContentVersionStore.js +1068 -0
- package/dist/sync/engine/workspaceSyncEngineBrowserGatewayRemoteServices.d.ts +28 -0
- package/dist/sync/engine/workspaceSyncEngineBrowserGatewayRemoteServices.js +543 -0
- package/dist/sync/engine/workspaceSyncEngineContracts.d.ts +78 -0
- package/dist/sync/engine/workspaceSyncEngineContracts.js +1 -0
- package/dist/sync/engine/workspaceSyncEngineControlPlane.d.ts +37 -0
- package/dist/sync/engine/workspaceSyncEngineControlPlane.js +79 -0
- package/dist/sync/engine/workspaceSyncEngineIdentity.d.ts +1 -0
- package/dist/sync/engine/workspaceSyncEngineIdentity.js +4 -0
- package/dist/sync/engine/workspaceSyncEngineLifecyclePolicy.d.ts +68 -0
- package/dist/sync/engine/workspaceSyncEngineLifecyclePolicy.js +180 -0
- package/dist/sync/engine/workspaceSyncEngineLocalApply.d.ts +72 -0
- package/dist/sync/engine/workspaceSyncEngineLocalApply.js +132 -0
- package/dist/sync/engine/workspaceSyncEngineLocalServices.d.ts +70 -0
- package/dist/sync/engine/workspaceSyncEngineLocalServices.js +25 -0
- package/dist/sync/engine/workspaceSyncEngineParity.d.ts +8 -0
- package/dist/sync/engine/workspaceSyncEngineParity.js +7 -0
- package/dist/sync/engine/workspaceSyncEnginePullPolicy.d.ts +32 -0
- package/dist/sync/engine/workspaceSyncEnginePullPolicy.js +27 -0
- package/dist/sync/engine/workspaceSyncEnginePushCompletion.d.ts +20 -0
- package/dist/sync/engine/workspaceSyncEnginePushCompletion.js +87 -0
- package/dist/sync/engine/workspaceSyncEngineRecovery.d.ts +56 -0
- package/dist/sync/engine/workspaceSyncEngineRecovery.js +288 -0
- package/dist/sync/engine/workspaceSyncEngineRemoteServices.d.ts +104 -0
- package/dist/sync/engine/workspaceSyncEngineRemoteServices.js +21 -0
- package/dist/sync/engine/workspaceSyncEngineRuntime.d.ts +61 -0
- package/dist/sync/engine/workspaceSyncEngineRuntime.js +59 -0
- package/dist/sync/engine/workspaceSyncEngineServerApplyBoundary.d.ts +28 -0
- package/dist/sync/engine/workspaceSyncEngineServerApplyBoundary.js +86 -0
- package/dist/sync/engine/workspaceSyncEngineServerLocalServices.d.ts +73 -0
- package/dist/sync/engine/workspaceSyncEngineServerLocalServices.js +452 -0
- package/dist/sync/engine/workspaceSyncEngineServerRemoteServices.d.ts +23 -0
- package/dist/sync/engine/workspaceSyncEngineServerRemoteServices.js +451 -0
- package/dist/sync/engine/workspaceSyncEngineServerRunnerOperations.d.ts +125 -0
- package/dist/sync/engine/workspaceSyncEngineServerRunnerOperations.js +1124 -0
- package/dist/sync/engine/workspaceSyncEngineServerSnapshotReader.d.ts +63 -0
- package/dist/sync/engine/workspaceSyncEngineServerSnapshotReader.js +276 -0
- package/dist/sync/engine/workspaceSyncEngineTransferCompletion.d.ts +20 -0
- package/dist/sync/engine/workspaceSyncEngineTransferCompletion.js +37 -0
- package/dist/sync/engine/workspaceSyncEngineTransferTypes.d.ts +7 -0
- package/dist/sync/engine/workspaceSyncEngineTransferTypes.js +1 -0
- package/dist/sync/engine/workspaceSyncEngineTransfers.d.ts +240 -0
- package/dist/sync/engine/workspaceSyncEngineTransfers.js +1184 -0
- package/dist/sync/engine/workspaceSyncEngineV3LocalFeedApply.d.ts +39 -0
- package/dist/sync/engine/workspaceSyncEngineV3LocalFeedApply.js +39 -0
- package/dist/sync/engine/workspaceSyncImmutableContentGcRunner.d.ts +25 -0
- package/dist/sync/engine/workspaceSyncImmutableContentGcRunner.js +83 -0
- package/dist/sync/engine/workspaceSyncImmutableContentProvider.d.ts +71 -0
- package/dist/sync/engine/workspaceSyncImmutableContentProvider.js +209 -0
- package/dist/sync/engine/workspaceSyncImmutableContentStager.d.ts +32 -0
- package/dist/sync/engine/workspaceSyncImmutableContentStager.js +202 -0
- package/dist/sync/engine/workspaceSyncPublishedContentResolver.d.ts +43 -0
- package/dist/sync/engine/workspaceSyncPublishedContentResolver.js +142 -0
- package/dist/sync/engine/workspaceSyncServerContentRuntime.d.ts +26 -0
- package/dist/sync/engine/workspaceSyncServerContentRuntime.js +41 -0
- package/dist/sync/engine/workspaceSyncServerDataServices.d.ts +44 -0
- package/dist/sync/engine/workspaceSyncServerDataServices.js +143 -0
- package/dist/sync/engine/workspaceSyncTransferEvidence.d.ts +39 -0
- package/dist/sync/engine/workspaceSyncTransferEvidence.js +45 -0
- package/dist/sync/engine/workspaceSyncV2ChangeDispatcher.d.ts +44 -0
- package/dist/sync/engine/workspaceSyncV2ChangeDispatcher.js +990 -0
- package/dist/sync/engine/workspaceSyncV2PreparedContent.d.ts +82 -0
- package/dist/sync/engine/workspaceSyncV2PreparedContent.js +219 -0
- package/dist/sync/planningCanonicalFields.d.ts +41 -0
- package/dist/sync/planningCanonicalFields.js +211 -0
- package/dist/sync/planningSyncPayload.d.ts +5 -1
- package/dist/sync/planningSyncPayload.js +88 -4
- package/dist/sync/syncApplyHandlers.d.ts +98 -8
- package/dist/sync/syncApplyHandlers.js +816 -78
- package/dist/sync/syncResourceAdapters.d.ts +10 -0
- package/dist/sync/syncResourceAdapters.js +21 -1
- package/dist/sync/syncService.d.ts +57 -1
- package/dist/sync/syncService.js +1085 -138
- package/dist/sync/taskNestedContent.d.ts +2 -0
- package/dist/sync/taskNestedContent.js +8 -0
- package/dist/sync/taskSyncChangeKey.js +0 -1
- package/dist/sync/taskSyncPayload.d.ts +0 -1
- package/dist/sync/taskSyncPayload.js +14 -3
- package/dist/sync/v3/canonicalWorkspaceSyncJson.d.ts +2 -0
- package/dist/sync/v3/canonicalWorkspaceSyncJson.js +26 -0
- package/dist/sync/v3/combinedFeedCapability.d.ts +21 -0
- package/dist/sync/v3/combinedFeedCapability.js +80 -0
- package/dist/sync/v3/combinedFeedPrerequisites.d.ts +18 -0
- package/dist/sync/v3/combinedFeedPrerequisites.js +184 -0
- package/dist/sync/v3/durableInitiativeMutationRouter.d.ts +61 -0
- package/dist/sync/v3/durableInitiativeMutationRouter.js +287 -0
- package/dist/sync/v3/durableOperationReplay.d.ts +36 -0
- package/dist/sync/v3/durableOperationReplay.js +103 -0
- package/dist/sync/v3/durableTaskAttachmentLinksMutationRouter.d.ts +49 -0
- package/dist/sync/v3/durableTaskAttachmentLinksMutationRouter.js +198 -0
- package/dist/sync/v3/durableTaskChecklistMutationRouter.d.ts +47 -0
- package/dist/sync/v3/durableTaskChecklistMutationRouter.js +182 -0
- package/dist/sync/v3/durableTaskCommentMutationRouter.d.ts +47 -0
- package/dist/sync/v3/durableTaskCommentMutationRouter.js +191 -0
- package/dist/sync/v3/durableTaskHttpBulkMutationRouter.d.ts +60 -0
- package/dist/sync/v3/durableTaskHttpBulkMutationRouter.js +320 -0
- package/dist/sync/v3/durableTaskHttpRootMutationRouter.d.ts +40 -0
- package/dist/sync/v3/durableTaskHttpRootMutationRouter.js +518 -0
- package/dist/sync/v3/durableTaxonomyMutationRouter.d.ts +63 -0
- package/dist/sync/v3/durableTaxonomyMutationRouter.js +289 -0
- package/dist/sync/v3/durableWorkflowRuntimeMutationRouter.d.ts +77 -0
- package/dist/sync/v3/durableWorkflowRuntimeMutationRouter.js +361 -0
- package/dist/sync/v3/durableWorkstreamMutationRouter.d.ts +61 -0
- package/dist/sync/v3/durableWorkstreamMutationRouter.js +287 -0
- package/dist/sync/v3/durableWorkstreamTaskOrderMutationRouter.d.ts +42 -0
- package/dist/sync/v3/durableWorkstreamTaskOrderMutationRouter.js +122 -0
- package/dist/sync/v3/entityEventLegacyAdoptionContract.d.ts +6 -0
- package/dist/sync/v3/entityEventLegacyAdoptionContract.js +6 -0
- package/dist/sync/v3/entityEventLegacyAdoptionService.d.ts +62 -0
- package/dist/sync/v3/entityEventLegacyAdoptionService.js +180 -0
- package/dist/sync/v3/initiativeActivityAuthoritativeRevision.d.ts +11 -0
- package/dist/sync/v3/initiativeActivityAuthoritativeRevision.js +23 -0
- package/dist/sync/v3/initiativeActivityIdentity.d.ts +8 -0
- package/dist/sync/v3/initiativeActivityIdentity.js +14 -0
- package/dist/sync/v3/initiativeCoexistence.d.ts +26 -0
- package/dist/sync/v3/initiativeCoexistence.js +148 -0
- package/dist/sync/v3/initiativeFeedActivationCapability.d.ts +6 -0
- package/dist/sync/v3/initiativeFeedActivationCapability.js +16 -0
- package/dist/sync/v3/initiativeMutationPayload.d.ts +26 -0
- package/dist/sync/v3/initiativeMutationPayload.js +144 -0
- package/dist/sync/v3/initiativeMutationService.d.ts +62 -0
- package/dist/sync/v3/initiativeMutationService.js +206 -0
- package/dist/sync/v3/localEntityEventLegacyAdoption.d.ts +31 -0
- package/dist/sync/v3/localEntityEventLegacyAdoption.js +607 -0
- package/dist/sync/v3/localInitiativeOutboxHandler.d.ts +8 -0
- package/dist/sync/v3/localInitiativeOutboxHandler.js +88 -0
- package/dist/sync/v3/localInitiativeOutboxService.d.ts +50 -0
- package/dist/sync/v3/localInitiativeOutboxService.js +495 -0
- package/dist/sync/v3/localOperationIdentityStore.d.ts +81 -0
- package/dist/sync/v3/localOperationIdentityStore.js +388 -0
- package/dist/sync/v3/localOutboxDispatchCapability.d.ts +7 -0
- package/dist/sync/v3/localOutboxDispatchCapability.js +13 -0
- package/dist/sync/v3/localOutboxDispatchRuntime.d.ts +16 -0
- package/dist/sync/v3/localOutboxDispatchRuntime.js +269 -0
- package/dist/sync/v3/localOutboxDispatcher.d.ts +53 -0
- package/dist/sync/v3/localOutboxDispatcher.js +362 -0
- package/dist/sync/v3/localOutboxDrainClient.d.ts +50 -0
- package/dist/sync/v3/localOutboxDrainClient.js +250 -0
- package/dist/sync/v3/localOutboxOperationHandler.d.ts +31 -0
- package/dist/sync/v3/localOutboxOperationHandler.js +10 -0
- package/dist/sync/v3/localOutboxRecoveryClient.d.ts +14 -0
- package/dist/sync/v3/localOutboxRecoveryClient.js +45 -0
- package/dist/sync/v3/localOutboxRecoveryPreparationService.d.ts +12 -0
- package/dist/sync/v3/localOutboxRecoveryPreparationService.js +151 -0
- package/dist/sync/v3/localSyncIdentityStore.d.ts +9 -0
- package/dist/sync/v3/localSyncIdentityStore.js +43 -0
- package/dist/sync/v3/localTaskAttachmentLinksOutboxHandler.d.ts +10 -0
- package/dist/sync/v3/localTaskAttachmentLinksOutboxHandler.js +70 -0
- package/dist/sync/v3/localTaskAttachmentLinksOutboxService.d.ts +45 -0
- package/dist/sync/v3/localTaskAttachmentLinksOutboxService.js +291 -0
- package/dist/sync/v3/localTaskChecklistOutboxHandler.d.ts +10 -0
- package/dist/sync/v3/localTaskChecklistOutboxHandler.js +54 -0
- package/dist/sync/v3/localTaskChecklistOutboxService.d.ts +47 -0
- package/dist/sync/v3/localTaskChecklistOutboxService.js +221 -0
- package/dist/sync/v3/localTaskCommentOutboxHandler.d.ts +10 -0
- package/dist/sync/v3/localTaskCommentOutboxHandler.js +94 -0
- package/dist/sync/v3/localTaskCommentOutboxService.d.ts +75 -0
- package/dist/sync/v3/localTaskCommentOutboxService.js +391 -0
- package/dist/sync/v3/localTaskCreateClient.d.ts +27 -0
- package/dist/sync/v3/localTaskCreateClient.js +209 -0
- package/dist/sync/v3/localTaskCreateOutboxHandler.d.ts +8 -0
- package/dist/sync/v3/localTaskCreateOutboxHandler.js +147 -0
- package/dist/sync/v3/localTaskCreateOutboxService.d.ts +77 -0
- package/dist/sync/v3/localTaskCreateOutboxService.js +397 -0
- package/dist/sync/v3/localTaskDeleteClient.d.ts +10 -0
- package/dist/sync/v3/localTaskDeleteClient.js +23 -0
- package/dist/sync/v3/localTaskDeleteOutboxHandler.d.ts +8 -0
- package/dist/sync/v3/localTaskDeleteOutboxHandler.js +54 -0
- package/dist/sync/v3/localTaskDeleteOutboxService.d.ts +38 -0
- package/dist/sync/v3/localTaskDeleteOutboxService.js +235 -0
- package/dist/sync/v3/localTaskLegacyRootAdoption.d.ts +28 -0
- package/dist/sync/v3/localTaskLegacyRootAdoption.js +219 -0
- package/dist/sync/v3/localTaskLifecycleClient.d.ts +49 -0
- package/dist/sync/v3/localTaskLifecycleClient.js +57 -0
- package/dist/sync/v3/localTaskLifecycleOutboxHandler.d.ts +8 -0
- package/dist/sync/v3/localTaskLifecycleOutboxHandler.js +94 -0
- package/dist/sync/v3/localTaskLifecycleOutboxService.d.ts +60 -0
- package/dist/sync/v3/localTaskLifecycleOutboxService.js +304 -0
- package/dist/sync/v3/localTaskMetadataClient.d.ts +13 -0
- package/dist/sync/v3/localTaskMetadataClient.js +30 -0
- package/dist/sync/v3/localTaskMetadataOutboxHandler.d.ts +8 -0
- package/dist/sync/v3/localTaskMetadataOutboxHandler.js +70 -0
- package/dist/sync/v3/localTaskMetadataOutboxService.d.ts +48 -0
- package/dist/sync/v3/localTaskMetadataOutboxService.js +229 -0
- package/dist/sync/v3/localTaskOperationClient.d.ts +72 -0
- package/dist/sync/v3/localTaskOperationClient.js +195 -0
- package/dist/sync/v3/localTaskRelationshipOutboxHandler.d.ts +8 -0
- package/dist/sync/v3/localTaskRelationshipOutboxHandler.js +114 -0
- package/dist/sync/v3/localTaskRelationshipOutboxService.d.ts +45 -0
- package/dist/sync/v3/localTaskRelationshipOutboxService.js +192 -0
- package/dist/sync/v3/localTaskRestoreClient.d.ts +13 -0
- package/dist/sync/v3/localTaskRestoreClient.js +32 -0
- package/dist/sync/v3/localTaskRestoreOutboxHandler.d.ts +8 -0
- package/dist/sync/v3/localTaskRestoreOutboxHandler.js +41 -0
- package/dist/sync/v3/localTaskRestoreOutboxService.d.ts +56 -0
- package/dist/sync/v3/localTaskRestoreOutboxService.js +323 -0
- package/dist/sync/v3/localTaskStatusClient.d.ts +17 -0
- package/dist/sync/v3/localTaskStatusClient.js +35 -0
- package/dist/sync/v3/localTaskStatusOutboxHandler.d.ts +8 -0
- package/dist/sync/v3/localTaskStatusOutboxHandler.js +75 -0
- package/dist/sync/v3/localTaskStatusOutboxService.d.ts +53 -0
- package/dist/sync/v3/localTaskStatusOutboxService.js +422 -0
- package/dist/sync/v3/localTaxonomyCompositeOutboxService.d.ts +34 -0
- package/dist/sync/v3/localTaxonomyCompositeOutboxService.js +290 -0
- package/dist/sync/v3/localTaxonomyOutboxHandler.d.ts +9 -0
- package/dist/sync/v3/localTaxonomyOutboxHandler.js +106 -0
- package/dist/sync/v3/localTaxonomyOutboxService.d.ts +30 -0
- package/dist/sync/v3/localTaxonomyOutboxService.js +181 -0
- package/dist/sync/v3/localWorkflowRuntimeOutboxHandler.d.ts +8 -0
- package/dist/sync/v3/localWorkflowRuntimeOutboxHandler.js +113 -0
- package/dist/sync/v3/localWorkflowRuntimeOutboxService.d.ts +37 -0
- package/dist/sync/v3/localWorkflowRuntimeOutboxService.js +330 -0
- package/dist/sync/v3/localWorkspaceSyncServerOutboxDispatcher.d.ts +63 -0
- package/dist/sync/v3/localWorkspaceSyncServerOutboxDispatcher.js +264 -0
- package/dist/sync/v3/localWorkstreamOutboxHandler.d.ts +8 -0
- package/dist/sync/v3/localWorkstreamOutboxHandler.js +102 -0
- package/dist/sync/v3/localWorkstreamOutboxService.d.ts +52 -0
- package/dist/sync/v3/localWorkstreamOutboxService.js +579 -0
- package/dist/sync/v3/localWorkstreamTaskOrderOutboxHandler.d.ts +10 -0
- package/dist/sync/v3/localWorkstreamTaskOrderOutboxHandler.js +57 -0
- package/dist/sync/v3/localWorkstreamTaskOrderOutboxService.d.ts +30 -0
- package/dist/sync/v3/localWorkstreamTaskOrderOutboxService.js +128 -0
- package/dist/sync/v3/planningActivation.d.ts +13 -0
- package/dist/sync/v3/planningActivation.js +33 -0
- package/dist/sync/v3/planningAttachmentActivityValidation.d.ts +9 -0
- package/dist/sync/v3/planningAttachmentActivityValidation.js +87 -0
- package/dist/sync/v3/programScaffoldService.d.ts +143 -0
- package/dist/sync/v3/programScaffoldService.js +478 -0
- package/dist/sync/v3/syncDurabilityStore.d.ts +773 -0
- package/dist/sync/v3/syncDurabilityStore.js +4635 -0
- package/dist/sync/v3/taskActivityAuthoritativeRevision.d.ts +16 -0
- package/dist/sync/v3/taskActivityAuthoritativeRevision.js +67 -0
- package/dist/sync/v3/taskActivityJournal.d.ts +20 -0
- package/dist/sync/v3/taskActivityJournal.js +195 -0
- package/dist/sync/v3/taskAttachmentLinksActivityIdentity.d.ts +6 -0
- package/dist/sync/v3/taskAttachmentLinksActivityIdentity.js +14 -0
- package/dist/sync/v3/taskAttachmentLinksMutationService.d.ts +111 -0
- package/dist/sync/v3/taskAttachmentLinksMutationService.js +202 -0
- package/dist/sync/v3/taskChecklistActivityIdentity.d.ts +6 -0
- package/dist/sync/v3/taskChecklistActivityIdentity.js +14 -0
- package/dist/sync/v3/taskChecklistMutationService.d.ts +92 -0
- package/dist/sync/v3/taskChecklistMutationService.js +156 -0
- package/dist/sync/v3/taskCommentActivityIdentity.d.ts +7 -0
- package/dist/sync/v3/taskCommentActivityIdentity.js +15 -0
- package/dist/sync/v3/taskCommentMutationService.d.ts +150 -0
- package/dist/sync/v3/taskCommentMutationService.js +392 -0
- package/dist/sync/v3/taskCommentReconcileProvenance.d.ts +58 -0
- package/dist/sync/v3/taskCommentReconcileProvenance.js +170 -0
- package/dist/sync/v3/taskCreateActivation.d.ts +19 -0
- package/dist/sync/v3/taskCreateActivation.js +84 -0
- package/dist/sync/v3/taskCreateActivityIdentity.d.ts +7 -0
- package/dist/sync/v3/taskCreateActivityIdentity.js +18 -0
- package/dist/sync/v3/taskCreateMutationService.d.ts +103 -0
- package/dist/sync/v3/taskCreateMutationService.js +283 -0
- package/dist/sync/v3/taskDeleteActivation.d.ts +7 -0
- package/dist/sync/v3/taskDeleteActivation.js +14 -0
- package/dist/sync/v3/taskDeleteMutationService.d.ts +35 -0
- package/dist/sync/v3/taskDeleteMutationService.js +133 -0
- package/dist/sync/v3/taskLegacyRootAdoptionService.d.ts +78 -0
- package/dist/sync/v3/taskLegacyRootAdoptionService.js +175 -0
- package/dist/sync/v3/taskLifecycleActivityIdentity.d.ts +9 -0
- package/dist/sync/v3/taskLifecycleActivityIdentity.js +18 -0
- package/dist/sync/v3/taskLifecycleMutationPayload.d.ts +5 -0
- package/dist/sync/v3/taskLifecycleMutationPayload.js +28 -0
- package/dist/sync/v3/taskLifecycleMutationService.d.ts +66 -0
- package/dist/sync/v3/taskLifecycleMutationService.js +92 -0
- package/dist/sync/v3/taskMetadataActivation.d.ts +12 -0
- package/dist/sync/v3/taskMetadataActivation.js +38 -0
- package/dist/sync/v3/taskMetadataActivityIdentity.d.ts +7 -0
- package/dist/sync/v3/taskMetadataActivityIdentity.js +18 -0
- package/dist/sync/v3/taskMetadataCoexistence.d.ts +37 -0
- package/dist/sync/v3/taskMetadataCoexistence.js +134 -0
- package/dist/sync/v3/taskMetadataMutationService.d.ts +71 -0
- package/dist/sync/v3/taskMetadataMutationService.js +199 -0
- package/dist/sync/v3/taskRelationshipLegacyAdoptionService.d.ts +48 -0
- package/dist/sync/v3/taskRelationshipLegacyAdoptionService.js +164 -0
- package/dist/sync/v3/taskRelationshipMutationService.d.ts +50 -0
- package/dist/sync/v3/taskRelationshipMutationService.js +148 -0
- package/dist/sync/v3/taskRestoreMutationService.d.ts +90 -0
- package/dist/sync/v3/taskRestoreMutationService.js +179 -0
- package/dist/sync/v3/taskStatusActivation.d.ts +7 -0
- package/dist/sync/v3/taskStatusActivation.js +15 -0
- package/dist/sync/v3/taskStatusMutationService.d.ts +76 -0
- package/dist/sync/v3/taskStatusMutationService.js +308 -0
- package/dist/sync/v3/taskWorkflowMutationPayload.d.ts +4 -0
- package/dist/sync/v3/taskWorkflowMutationPayload.js +22 -0
- package/dist/sync/v3/taskWorkflowMutationService.d.ts +64 -0
- package/dist/sync/v3/taskWorkflowMutationService.js +102 -0
- package/dist/sync/v3/taxonomyCoexistence.d.ts +10 -0
- package/dist/sync/v3/taxonomyCoexistence.js +19 -0
- package/dist/sync/v3/taxonomyCompositeMutationService.d.ts +110 -0
- package/dist/sync/v3/taxonomyCompositeMutationService.js +304 -0
- package/dist/sync/v3/taxonomyMutationService.d.ts +57 -0
- package/dist/sync/v3/taxonomyMutationService.js +106 -0
- package/dist/sync/v3/taxonomyStateMutation.d.ts +22 -0
- package/dist/sync/v3/taxonomyStateMutation.js +49 -0
- package/dist/sync/v3/taxonomySyncPayload.d.ts +9 -0
- package/dist/sync/v3/taxonomySyncPayload.js +199 -0
- package/dist/sync/v3/workflowAssignmentSync.d.ts +22 -0
- package/dist/sync/v3/workflowAssignmentSync.js +213 -0
- package/dist/sync/v3/workflowRuntimeMutationService.d.ts +89 -0
- package/dist/sync/v3/workflowRuntimeMutationService.js +359 -0
- package/dist/sync/v3/workflowRuntimeOperationIdentity.d.ts +13 -0
- package/dist/sync/v3/workflowRuntimeOperationIdentity.js +35 -0
- package/dist/sync/v3/workflowRuntimeSync.d.ts +141 -0
- package/dist/sync/v3/workflowRuntimeSync.js +485 -0
- package/dist/sync/v3/workspaceSyncJournalReader.d.ts +43 -0
- package/dist/sync/v3/workspaceSyncJournalReader.js +45 -0
- package/dist/sync/v3/workspaceSyncLocalOwnershipSnapshot.d.ts +28 -0
- package/dist/sync/v3/workspaceSyncLocalOwnershipSnapshot.js +81 -0
- package/dist/sync/v3/workspaceSyncPayloadFingerprint.d.ts +1 -0
- package/dist/sync/v3/workspaceSyncPayloadFingerprint.js +5 -0
- package/dist/sync/v3/workspaceSyncV2ProjectionExclusions.d.ts +16 -0
- package/dist/sync/v3/workspaceSyncV2ProjectionExclusions.js +161 -0
- package/dist/sync/v3/workspaceSyncV3AttachmentApplyObligationStore.d.ts +83 -0
- package/dist/sync/v3/workspaceSyncV3AttachmentApplyObligationStore.js +161 -0
- package/dist/sync/v3/workspaceSyncV3AttachmentAssetHydration.d.ts +16 -0
- package/dist/sync/v3/workspaceSyncV3AttachmentAssetHydration.js +90 -0
- package/dist/sync/v3/workspaceSyncV3CloudOperationHandler.d.ts +65 -0
- package/dist/sync/v3/workspaceSyncV3CloudOperationHandler.js +356 -0
- package/dist/sync/v3/workspaceSyncV3CombinedCoverage.d.ts +51 -0
- package/dist/sync/v3/workspaceSyncV3CombinedCoverage.js +171 -0
- package/dist/sync/v3/workspaceSyncV3CombinedFeedOrchestrator.d.ts +43 -0
- package/dist/sync/v3/workspaceSyncV3CombinedFeedOrchestrator.js +535 -0
- package/dist/sync/v3/workspaceSyncV3CombinedLocalApply.d.ts +50 -0
- package/dist/sync/v3/workspaceSyncV3CombinedLocalApply.js +1149 -0
- package/dist/sync/v3/workspaceSyncV3CombinedProjectionState.d.ts +96 -0
- package/dist/sync/v3/workspaceSyncV3CombinedProjectionState.js +672 -0
- package/dist/sync/v3/workspaceSyncV3CombinedRepairBaseline.d.ts +42 -0
- package/dist/sync/v3/workspaceSyncV3CombinedRepairBaseline.js +598 -0
- package/dist/sync/v3/workspaceSyncV3CombinedRepairMaterialization.d.ts +65 -0
- package/dist/sync/v3/workspaceSyncV3CombinedRepairMaterialization.js +505 -0
- package/dist/sync/v3/workspaceSyncV3CombinedRepairSnapshot.d.ts +78 -0
- package/dist/sync/v3/workspaceSyncV3CombinedRepairSnapshot.js +511 -0
- package/dist/sync/v3/workspaceSyncV3CombinedWireContract.d.ts +45 -0
- package/dist/sync/v3/workspaceSyncV3CombinedWireContract.js +125 -0
- package/dist/sync/v3/workspaceSyncV3CoverageRegistry.d.ts +13 -0
- package/dist/sync/v3/workspaceSyncV3CoverageRegistry.js +34 -0
- package/dist/sync/v3/workspaceSyncV3CursorEncoding.d.ts +1 -0
- package/dist/sync/v3/workspaceSyncV3CursorEncoding.js +6 -0
- package/dist/sync/v3/workspaceSyncV3DomainAdmission.d.ts +43 -0
- package/dist/sync/v3/workspaceSyncV3DomainAdmission.js +118 -0
- package/dist/sync/v3/workspaceSyncV3Feed.d.ts +95 -0
- package/dist/sync/v3/workspaceSyncV3Feed.js +243 -0
- package/dist/sync/v3/workspaceSyncV3FeedApply.d.ts +13 -0
- package/dist/sync/v3/workspaceSyncV3FeedApply.js +67 -0
- package/dist/sync/v3/workspaceSyncV3FeedClientContract.d.ts +3 -0
- package/dist/sync/v3/workspaceSyncV3FeedClientContract.js +46 -0
- package/dist/sync/v3/workspaceSyncV3FeedCursorKeys.d.ts +10 -0
- package/dist/sync/v3/workspaceSyncV3FeedCursorKeys.js +58 -0
- package/dist/sync/v3/workspaceSyncV3FeedOrchestrator.d.ts +31 -0
- package/dist/sync/v3/workspaceSyncV3FeedOrchestrator.js +228 -0
- package/dist/sync/v3/workspaceSyncV3FeedProfile.d.ts +32 -0
- package/dist/sync/v3/workspaceSyncV3FeedProfile.js +21 -0
- package/dist/sync/v3/workspaceSyncV3InitiativeLocalApply.d.ts +36 -0
- package/dist/sync/v3/workspaceSyncV3InitiativeLocalApply.js +163 -0
- package/dist/sync/v3/workspaceSyncV3InitiativeRepair.d.ts +33 -0
- package/dist/sync/v3/workspaceSyncV3InitiativeRepair.js +118 -0
- package/dist/sync/v3/workspaceSyncV3LegacyBoundaryAttestation.d.ts +10 -0
- package/dist/sync/v3/workspaceSyncV3LegacyBoundaryAttestation.js +45 -0
- package/dist/sync/v3/workspaceSyncV3LocalOutboxStatus.d.ts +27 -0
- package/dist/sync/v3/workspaceSyncV3LocalOutboxStatus.js +83 -0
- package/dist/sync/v3/workspaceSyncV3NestedCoverage.d.ts +10 -0
- package/dist/sync/v3/workspaceSyncV3NestedCoverage.js +40 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskApply.d.ts +83 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskApply.js +325 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskCodecs.d.ts +59 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskCodecs.js +302 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskProjection.d.ts +47 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskProjection.js +329 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskRepairSnapshot.d.ts +19 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskRepairSnapshot.js +41 -0
- package/dist/sync/v3/workspaceSyncV3NestedWireContract.d.ts +6 -0
- package/dist/sync/v3/workspaceSyncV3NestedWireContract.js +16 -0
- package/dist/sync/v3/workspaceSyncV3OperationProjection.d.ts +8 -0
- package/dist/sync/v3/workspaceSyncV3OperationProjection.js +52 -0
- package/dist/sync/v3/workspaceSyncV3OperationProtocol.d.ts +229 -0
- package/dist/sync/v3/workspaceSyncV3OperationProtocol.js +1 -0
- package/dist/sync/v3/workspaceSyncV3OperatorDiagnostics.d.ts +165 -0
- package/dist/sync/v3/workspaceSyncV3OperatorDiagnostics.js +414 -0
- package/dist/sync/v3/workspaceSyncV3OriginActor.d.ts +36 -0
- package/dist/sync/v3/workspaceSyncV3OriginActor.js +61 -0
- package/dist/sync/v3/workspaceSyncV3OriginAssertion.d.ts +46 -0
- package/dist/sync/v3/workspaceSyncV3OriginAssertion.js +121 -0
- package/dist/sync/v3/workspaceSyncV3OriginAssertionHeader.d.ts +1 -0
- package/dist/sync/v3/workspaceSyncV3OriginAssertionHeader.js +1 -0
- package/dist/sync/v3/workspaceSyncV3PlanningOrderCoverage.d.ts +10 -0
- package/dist/sync/v3/workspaceSyncV3PlanningOrderCoverage.js +34 -0
- package/dist/sync/v3/workspaceSyncV3PlanningOrderWireContract.d.ts +6 -0
- package/dist/sync/v3/workspaceSyncV3PlanningOrderWireContract.js +10 -0
- package/dist/sync/v3/workspaceSyncV3ProjectionState.d.ts +105 -0
- package/dist/sync/v3/workspaceSyncV3ProjectionState.js +467 -0
- package/dist/sync/v3/workspaceSyncV3TaskCommentAudit.d.ts +56 -0
- package/dist/sync/v3/workspaceSyncV3TaskCommentAudit.js +250 -0
- package/dist/sync/v3/workspaceSyncV3TaskRelationshipProjection.d.ts +30 -0
- package/dist/sync/v3/workspaceSyncV3TaskRelationshipProjection.js +142 -0
- package/dist/sync/v3/workspaceSyncV3TaskRootProjection.d.ts +40 -0
- package/dist/sync/v3/workspaceSyncV3TaskRootProjection.js +246 -0
- package/dist/sync/v3/workspaceSyncV3TaxonomyFeedProjection.d.ts +39 -0
- package/dist/sync/v3/workspaceSyncV3TaxonomyFeedProjection.js +185 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowCoverage.d.ts +10 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowCoverage.js +36 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowRuntimeApply.d.ts +17 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowRuntimeApply.js +143 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowRuntimeProjection.d.ts +9 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowRuntimeProjection.js +195 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowWireContract.d.ts +11 -0
- package/dist/sync/v3/workspaceSyncV3WorkflowWireContract.js +12 -0
- package/dist/sync/v3/workspaceSyncV3WorkstreamProjection.d.ts +4 -0
- package/dist/sync/v3/workspaceSyncV3WorkstreamProjection.js +98 -0
- package/dist/sync/v3/workspaceSyncV3WorkstreamTaskOrderProjection.d.ts +9 -0
- package/dist/sync/v3/workspaceSyncV3WorkstreamTaskOrderProjection.js +72 -0
- package/dist/sync/v3/workstreamActivityAuthoritativeRevision.d.ts +11 -0
- package/dist/sync/v3/workstreamActivityAuthoritativeRevision.js +23 -0
- package/dist/sync/v3/workstreamActivityIdentity.d.ts +8 -0
- package/dist/sync/v3/workstreamActivityIdentity.js +14 -0
- package/dist/sync/v3/workstreamCoexistence.d.ts +19 -0
- package/dist/sync/v3/workstreamCoexistence.js +64 -0
- package/dist/sync/v3/workstreamMutationPayload.d.ts +27 -0
- package/dist/sync/v3/workstreamMutationPayload.js +147 -0
- package/dist/sync/v3/workstreamMutationService.d.ts +72 -0
- package/dist/sync/v3/workstreamMutationService.js +256 -0
- package/dist/sync/v3/workstreamTaskOrderMutationService.d.ts +55 -0
- package/dist/sync/v3/workstreamTaskOrderMutationService.js +110 -0
- package/dist/sync/v3/workstreamTaskOrderSync.d.ts +14 -0
- package/dist/sync/v3/workstreamTaskOrderSync.js +25 -0
- package/dist/sync/workspaceContentManifest.d.ts +86 -0
- package/dist/sync/workspaceContentManifest.js +123 -0
- package/dist/sync/workspacePullFeed.d.ts +186 -2
- package/dist/sync/workspacePullFeed.js +513 -136
- package/dist/sync/workspacePushPreparedPlan.d.ts +21 -0
- package/dist/sync/workspacePushPreparedPlan.js +1 -0
- package/dist/sync/workspaceRepair.d.ts +17 -25
- package/dist/sync/workspaceRepair.js +348 -25
- package/dist/sync/workspaceSyncContentDecryption.d.ts +6 -0
- package/dist/sync/workspaceSyncContentDecryption.js +11 -0
- package/dist/sync/workspaceSyncModel.d.ts +216 -5
- package/dist/sync/workspaceSyncModel.js +371 -35
- package/dist/sync/workspaceSyncSnapshotProjection.d.ts +11 -0
- package/dist/sync/workspaceSyncSnapshotProjection.js +101 -0
- package/dist/sync/workspaceSyncState.d.ts +13 -0
- package/dist/sync/workspaceSyncState.js +36 -0
- package/dist/sync/workspaceSyncV2SnapshotBuilder.d.ts +106 -0
- package/dist/sync/workspaceSyncV2SnapshotBuilder.js +193 -0
- package/dist/types.d.ts +23 -15
- package/dist/types.js +1 -3
- package/dist/ui/ai-profile-clients/amazon-nova.svg +1 -0
- package/dist/ui/ai-profile-clients/antigravity.png +0 -0
- package/dist/ui/ai-profile-clients/chatgpt.svg +10 -0
- package/dist/ui/ai-profile-clients/claude-chat.svg +1 -0
- package/dist/ui/ai-profile-clients/claude-code.svg +15 -0
- package/dist/ui/ai-profile-clients/cline-app-icon-light.png +0 -0
- package/dist/ui/ai-profile-clients/cline.svg +16 -0
- package/dist/ui/ai-profile-clients/codex.svg +1 -0
- package/dist/ui/ai-profile-clients/copilot.png +0 -0
- package/dist/ui/ai-profile-clients/cursor.svg +1 -0
- package/dist/ui/ai-profile-clients/deepseek.svg +1 -0
- package/dist/ui/ai-profile-clients/gemini-cli-icon.png +0 -0
- package/dist/ui/ai-profile-clients/gemini.svg +10 -0
- package/dist/ui/ai-profile-clients/grok.svg +31 -0
- package/dist/ui/ai-profile-clients/kiro.svg +11 -0
- package/dist/ui/ai-profile-clients/llama.svg +1 -0
- package/dist/ui/ai-profile-clients/mistral.svg +1 -0
- package/dist/ui/ai-profile-clients/ms_copilot.jpeg +0 -0
- package/dist/ui/ai-profile-clients/openclaw.png +0 -0
- package/dist/ui/ai-profile-clients/perplexity.svg +1 -0
- package/dist/ui/ai-profile-clients/vscode.svg +41 -0
- package/dist/ui/ai-profile-clients/windsurf.svg +11 -0
- package/dist/ui/assets/AiIdentityRosterCard-DB1BLO_j.js +1 -0
- package/dist/ui/assets/AiProfilesModule-DPxQeF9N.js +1 -0
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-CBRZ8rca.css +1 -0
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-DHNYaNg6.js +3 -0
- package/dist/ui/assets/AssetTraySortControl-B9k5caQW.css +1 -0
- package/dist/ui/assets/AssetTraySortControl-DphbyHVc.js +1 -0
- package/dist/ui/assets/ContextAttachmentManager-CMxSzHqc.js +3 -0
- package/dist/ui/assets/DocumentWorkspace-BC7sy5TG.js +261 -0
- package/dist/ui/assets/DocumentWorkspace-BIBGBfd7.css +1 -0
- package/dist/ui/assets/EntityActivityTimeline-BfJbZRdl.css +1 -0
- package/dist/ui/assets/EntityActivityTimeline-pJ2ZjZ-k.js +1 -0
- package/dist/ui/assets/PlanningModule-CeTqXMMz.css +1 -0
- package/dist/ui/assets/PlanningModule-t5GbvVR9.js +1 -0
- package/dist/ui/assets/PlansPage-BVH_NfgT.js +1 -0
- package/dist/ui/assets/PlansPage-C2nkK2Bp.css +1 -0
- package/dist/ui/assets/TaskContextUpload-Ds4LnDzV.css +1 -0
- package/dist/ui/assets/TaskContextUpload-bl4fOOUz.js +1 -0
- package/dist/ui/assets/TaskSettings-xVsxSa0g.js +12 -0
- package/dist/ui/assets/TaskforceAgentsModule-CkAxW19K.js +21 -0
- package/dist/ui/assets/TaskforceAgentsModule-D6IC0S7Q.css +1 -0
- package/dist/ui/assets/WorkflowManagerModule-BKqIGVnF.js +1 -0
- package/dist/ui/assets/WorkflowManagerModule-DF10XENz.css +1 -0
- package/dist/ui/assets/antigravity-DRKQga2U.png +0 -0
- package/dist/ui/assets/cursor-BM_3k4Y4.svg +1 -0
- package/dist/ui/assets/gemini-cli-icon-dBAVjCcn.png +0 -0
- package/dist/ui/assets/grok-BuodbWaG.svg +31 -0
- package/dist/ui/assets/index-BzJlVnNS.css +1 -0
- package/dist/ui/assets/index-Cx7vZJHL.js +7 -0
- package/dist/ui/assets/{vendor-dnd-DRzYolkg.js → vendor-dnd-CJ-AjP-Y.js} +1 -1
- package/dist/ui/assets/{vendor-icons-CLnehDTw.js → vendor-icons-B8ZNsH1g.js} +1 -1
- package/dist/ui/assets/{vendor-markdown-BUxTU7dS.js → vendor-markdown-_lhNCyq-.js} +9 -9
- package/dist/ui/assets/vendor-router-AqJMU8Lz.js +3 -0
- package/dist/ui/assets/vscode-C_7wk1WI.svg +41 -0
- package/dist/ui/branding/logos/logo_dark_bg.png +0 -0
- package/dist/ui/branding/logos/logo_favicon_dark.png +0 -0
- package/dist/ui/branding/logos/logo_favicon_dark.svg +56 -0
- package/dist/ui/branding/logos/logo_favicon_light.png +0 -0
- package/dist/ui/branding/logos/logo_light_bg.png +0 -0
- package/dist/ui/images/Taskforce_Van.webp +0 -0
- package/dist/ui/index.html +6 -6
- package/dist/update/uiUpdateService.d.ts +43 -0
- package/dist/update/uiUpdateService.js +149 -0
- package/dist/update/updateCli.d.ts +15 -0
- package/dist/update/updateCli.js +76 -0
- package/dist/update/updateExecutor.d.ts +40 -0
- package/dist/update/updateExecutor.js +474 -0
- package/dist/update/updateStatus.d.ts +83 -0
- package/dist/update/updateStatus.js +703 -0
- package/dist/utils/aiProfileAvatarPaths.d.ts +14 -0
- package/dist/utils/aiProfileAvatarPaths.js +52 -0
- package/dist/utils/aiProfileDefaultLogo.d.ts +7 -0
- package/dist/utils/aiProfileDefaultLogo.js +84 -0
- package/dist/utils/aiProfileEvents.d.ts +9 -1
- package/dist/utils/annotatedAttachments.d.ts +8 -0
- package/dist/utils/annotatedAttachments.js +17 -1
- package/dist/utils/assetTraySorting.d.ts +25 -0
- package/dist/utils/assetTraySorting.js +83 -0
- package/dist/utils/assignees.d.ts +5 -0
- package/dist/utils/assignees.js +14 -9
- package/dist/utils/authLogin.d.ts +10 -0
- package/dist/utils/authLogin.js +8 -0
- package/dist/utils/authSessionEvents.d.ts +2 -0
- package/dist/utils/authSessionEvents.js +6 -0
- package/dist/utils/avatarUpload.js +5 -5
- package/dist/utils/canonicalReferenceAttachments.d.ts +12 -0
- package/dist/utils/canonicalReferenceAttachments.js +42 -0
- package/dist/utils/cloudAssetDisplay.d.ts +2 -0
- package/dist/utils/cloudAssetDisplay.js +8 -0
- package/dist/utils/constants.d.ts +4 -11
- package/dist/utils/constants.js +5 -64
- package/dist/utils/contextAttachmentPreview.d.ts +11 -0
- package/dist/utils/contextAttachmentPreview.js +8 -0
- package/dist/utils/contextAttachmentUpload.d.ts +8 -0
- package/dist/utils/contextAttachmentUpload.js +144 -0
- package/dist/utils/documentNames.js +6 -4
- package/dist/utils/entityReferences.d.ts +14 -0
- package/dist/utils/entityReferences.js +21 -0
- package/dist/utils/httpSetCookie.d.ts +3 -0
- package/dist/utils/httpSetCookie.js +22 -0
- package/dist/utils/imageNoteStoragePaths.d.ts +3 -0
- package/dist/utils/imageNoteStoragePaths.js +19 -0
- package/dist/utils/imageReferences.d.ts +6 -0
- package/dist/utils/imageReferences.js +1 -0
- package/dist/utils/planningArchiveOrchestrator.d.ts +23 -0
- package/dist/utils/planningArchiveOrchestrator.js +37 -0
- package/dist/utils/planningArchivePresentation.d.ts +20 -0
- package/dist/utils/planningArchivePresentation.js +23 -0
- package/dist/utils/planningArchiveReadiness.d.ts +26 -0
- package/dist/utils/planningArchiveReadiness.js +30 -0
- package/dist/utils/planningFavorites.d.ts +7 -0
- package/dist/utils/planningFavorites.js +34 -0
- package/dist/utils/syncEventPresentation.js +53 -0
- package/dist/utils/syncStatusPresentation.d.ts +25 -0
- package/dist/utils/syncStatusPresentation.js +86 -5
- package/dist/utils/taskActivity.d.ts +9 -2
- package/dist/utils/taskActivity.js +61 -0
- package/dist/utils/taskDraftDefaults.d.ts +0 -8
- package/dist/utils/taskDraftDefaults.js +0 -4
- package/dist/utils/taskEvents.d.ts +11 -0
- package/dist/utils/taskEvents.js +6 -0
- package/dist/utils/taskHeaderQuickFilter.d.ts +14 -0
- package/dist/utils/taskHeaderQuickFilter.js +32 -0
- package/dist/utils/taskInvalidation.d.ts +23 -0
- package/dist/utils/taskInvalidation.js +67 -0
- package/dist/utils/taskNormalization.d.ts +2 -1
- package/dist/utils/taskNormalization.js +44 -18
- package/dist/utils/taskReferences.d.ts +16 -0
- package/dist/utils/taskReferences.js +63 -0
- package/dist/utils/taskforceAgentEvents.d.ts +8 -0
- package/dist/utils/taskforceAgentEvents.js +6 -0
- package/dist/utils/taskforceAgentSkillEvents.d.ts +7 -0
- package/dist/utils/taskforceAgentSkillEvents.js +8 -0
- package/dist/utils/uiNotice.d.ts +3 -0
- package/dist/utils/uiNotice.js +1 -1
- package/dist/utils/workspaceResourceEvents.d.ts +7 -0
- package/dist/utils/workspaceResourceEvents.js +6 -0
- package/dist/utils/workspaceSyncPresentation.d.ts +24 -0
- package/dist/utils/workspaceSyncPresentation.js +243 -6
- package/package.json +69 -21
- package/dist/components/features/AgentsModule.d.ts +0 -18
- package/dist/components/features/AgentsModule.js +0 -479
- package/dist/components/features/InitiativesModule.d.ts +0 -22
- package/dist/components/features/InitiativesModule.js +0 -33
- package/dist/components/features/WorkflowsModule.d.ts +0 -27
- package/dist/components/features/WorkflowsModule.js +0 -21
- package/dist/components/features/settings/WorkflowEditor.d.ts +0 -15
- package/dist/components/features/settings/WorkflowEditor.js +0 -245
- package/dist/components/views/panels/DocumentFilterToolbar.d.ts +0 -10
- package/dist/components/views/panels/DocumentFilterToolbar.js +0 -7
- package/dist/components/views/standalone/modals/AccountHubModal.d.ts +0 -61
- package/dist/components/views/standalone/modals/AccountHubModal.js +0 -108
- package/dist/components/views/standalone/modals/EditProfileModal.d.ts +0 -19
- package/dist/components/views/standalone/modals/EditProfileModal.js +0 -11
- package/dist/hooks/ui/useResourceExport.d.ts +0 -21
- package/dist/hooks/ui/useResourceExport.js +0 -87
- package/dist/hooks/ui/useWorkflowTemplates.d.ts +0 -37
- package/dist/hooks/ui/useWorkflowTemplates.js +0 -116
- package/dist/mcp/clientProfileDefaults.d.ts +0 -12
- package/dist/mcp/clientProfileDefaults.js +0 -41
- package/dist/resources/templates/WORKFLOW_V2_POLICY.md +0 -55
- package/dist/resources/templates/environments/aider.yaml +0 -14
- package/dist/resources/templates/environments/antigravity.yaml +0 -10
- package/dist/resources/templates/environments/claude.yaml +0 -10
- package/dist/resources/templates/environments/cline.yaml +0 -10
- package/dist/resources/templates/environments/codex.yaml +0 -13
- package/dist/resources/templates/environments/copilot.yaml +0 -10
- package/dist/resources/templates/environments/cursor.yaml +0 -9
- package/dist/resources/templates/environments/gemini.yaml +0 -9
- package/dist/resources/templates/environments/windsurf.yaml +0 -10
- package/dist/resources/templates/workflow-sources/README.md +0 -9
- package/dist/resources/templates/workflow-sources/workflowDocs.mjs +0 -530
- package/dist/resources/templates/workflow-sources/workflowEditorOverrides.json +0 -1
- package/dist/resources/templates/workflows/collaborate.yaml +0 -109
- package/dist/resources/templates/workflows/do.yaml +0 -87
- package/dist/resources/templates/workflows/evaluate.yaml +0 -116
- package/dist/resources/templates/workflows/execute.yaml +0 -156
- package/dist/resources/templates/workflows/plan.yaml +0 -118
- package/dist/resources/templates/workflows/review.yaml +0 -114
- package/dist/services/formatTransformers.d.ts +0 -29
- package/dist/services/formatTransformers.js +0 -56
- package/dist/services/templateEngine.d.ts +0 -46
- package/dist/services/templateEngine.js +0 -148
- package/dist/shared/workflowDefaults.d.ts +0 -9
- package/dist/shared/workflowDefaults.js +0 -11
- package/dist/ui/agent-logos/Gemini CLI.jpeg +0 -0
- package/dist/ui/agent-logos/antigravity.jpeg +0 -0
- package/dist/ui/agent-logos/chatgpt.png +0 -0
- package/dist/ui/agent-logos/claude-code.jpeg +0 -0
- package/dist/ui/agent-logos/codex.jpeg +0 -0
- package/dist/ui/agent-logos/cursor.png +0 -0
- package/dist/ui/agent-logos/openclaw.jpeg +0 -0
- package/dist/ui/agent-logos/windsurf.png +0 -0
- package/dist/ui/assets/AgentsModule-C4LcqhcZ.js +0 -1
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-B-Dq22d2.js +0 -3
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-BVKew-mH.css +0 -1
- package/dist/ui/assets/ContextAttachmentManager-DsXPTvi-.js +0 -3
- package/dist/ui/assets/DocumentWorkspace-CxA1wO3U.js +0 -252
- package/dist/ui/assets/DocumentWorkspace-D4rJKXzd.css +0 -1
- package/dist/ui/assets/EntityActivityTimeline-B8nSe8l3.js +0 -1
- package/dist/ui/assets/EntityActivityTimeline-DyqvvhuF.css +0 -1
- package/dist/ui/assets/InitiativesModule-VY95v38E.js +0 -1
- package/dist/ui/assets/PlansPage-CQbKDv1a.js +0 -1
- package/dist/ui/assets/PlansPage-DeAzWYTb.css +0 -1
- package/dist/ui/assets/TaskContextUpload-DvDlNpHC.js +0 -1
- package/dist/ui/assets/TaskSettings-CUWbYYtP.js +0 -12
- package/dist/ui/assets/WorkflowsModule-CgM3Jako.js +0 -5
- package/dist/ui/assets/documentReferences-Do9YjrS3.js +0 -1
- package/dist/ui/assets/index--mh3pktj.js +0 -5
- package/dist/ui/assets/index-BawaaEXS.css +0 -1
- package/dist/ui/assets/vendor-router-BbWMxlnO.js +0 -3
- package/dist/ui/branding/logos/logo_black_01.png +0 -0
- package/dist/ui/branding/logos/logo_black_02.png +0 -0
- package/dist/ui/branding/logos/logo_white_01.png +0 -0
- package/dist/ui/branding/logos/logo_white_02.png +0 -0
- package/scripts/generate-workflow-templates.mjs +0 -134
- package/src/resources/templates/WORKFLOW_V2_POLICY.md +0 -55
- package/src/resources/templates/environments/aider.yaml +0 -14
- package/src/resources/templates/environments/antigravity.yaml +0 -10
- package/src/resources/templates/environments/claude.yaml +0 -10
- package/src/resources/templates/environments/cline.yaml +0 -10
- package/src/resources/templates/environments/codex.yaml +0 -13
- package/src/resources/templates/environments/copilot.yaml +0 -10
- package/src/resources/templates/environments/cursor.yaml +0 -9
- package/src/resources/templates/environments/gemini.yaml +0 -9
- package/src/resources/templates/environments/windsurf.yaml +0 -10
- package/src/resources/templates/workflow-sources/README.md +0 -9
- package/src/resources/templates/workflow-sources/workflowDocs.mjs +0 -530
- package/src/resources/templates/workflow-sources/workflowEditorOverrides.json +0 -1
- package/src/resources/templates/workflows/collaborate.yaml +0 -109
- package/src/resources/templates/workflows/do.yaml +0 -87
- package/src/resources/templates/workflows/evaluate.yaml +0 -116
- package/src/resources/templates/workflows/execute.yaml +0 -156
- package/src/resources/templates/workflows/plan.yaml +0 -118
- package/src/resources/templates/workflows/review.yaml +0 -114
- /package/dist/ui/branding/logos/{logo_dark.svg → logo_dark_no_bg.svg} +0 -0
- /package/dist/ui/branding/logos/{logo_favicon.svg → logo_favicon_light.svg} +0 -0
- /package/dist/ui/branding/logos/{logo_light.svg → logo_light_no_bg.svg} +0 -0
|
@@ -94,6 +94,11 @@
|
|
|
94
94
|
|
|
95
95
|
/* Modal Styles moved to Modal.module.css */
|
|
96
96
|
|
|
97
|
+
.coreModal {
|
|
98
|
+
position: relative;
|
|
99
|
+
isolation: isolate;
|
|
100
|
+
}
|
|
101
|
+
|
|
97
102
|
/* Header */
|
|
98
103
|
.header {
|
|
99
104
|
display: flex;
|
|
@@ -228,6 +233,30 @@
|
|
|
228
233
|
flex: 0 0 auto;
|
|
229
234
|
}
|
|
230
235
|
|
|
236
|
+
.taskCountBadgeButton {
|
|
237
|
+
position: relative;
|
|
238
|
+
z-index: 1;
|
|
239
|
+
font-family: inherit;
|
|
240
|
+
cursor: pointer;
|
|
241
|
+
transition: border-color 120ms ease, background-color 120ms ease, color 120ms ease;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.taskCountBadgeButton:hover {
|
|
245
|
+
border-color: var(--border-strong);
|
|
246
|
+
color: var(--text-primary);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.taskCountBadgeButton:focus-visible {
|
|
250
|
+
outline: 2px solid var(--brand-primary);
|
|
251
|
+
outline-offset: 2px;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.taskCountBadgeActive {
|
|
255
|
+
color: var(--brand-primary);
|
|
256
|
+
border-color: color-mix(in srgb, var(--brand-primary) 55%, var(--border-default));
|
|
257
|
+
background: color-mix(in srgb, var(--brand-primary) 12%, var(--surface-page));
|
|
258
|
+
}
|
|
259
|
+
|
|
231
260
|
.taskCountBadgeAlert {
|
|
232
261
|
color: #f87171;
|
|
233
262
|
border-color: color-mix(in srgb, #ef4444 45%, var(--border-default));
|
|
@@ -623,16 +652,6 @@
|
|
|
623
652
|
position: relative;
|
|
624
653
|
}
|
|
625
654
|
|
|
626
|
-
.deleteBtn {
|
|
627
|
-
color: #ef4444;
|
|
628
|
-
/* match deletion color */
|
|
629
|
-
background: rgba(239, 68, 68, 0.15);
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
.deleteBtn:hover {
|
|
633
|
-
background: rgba(239, 68, 68, 0.3);
|
|
634
|
-
}
|
|
635
|
-
|
|
636
655
|
.loading {
|
|
637
656
|
display: flex;
|
|
638
657
|
justify-content: center;
|
|
@@ -655,10 +674,9 @@
|
|
|
655
674
|
gap: 8px;
|
|
656
675
|
}
|
|
657
676
|
|
|
658
|
-
.
|
|
677
|
+
.referenceBadge {
|
|
659
678
|
display: inline-flex;
|
|
660
679
|
align-items: center;
|
|
661
|
-
gap: 5px;
|
|
662
680
|
background: color-mix(in srgb, var(--color-info, #3b82f6) 12%, transparent);
|
|
663
681
|
border: 1px solid color-mix(in srgb, var(--color-info, #3b82f6) 28%, transparent);
|
|
664
682
|
color: var(--color-info, #3b82f6);
|
|
@@ -677,7 +695,7 @@
|
|
|
677
695
|
box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-info, #3b82f6) 8%, transparent);
|
|
678
696
|
}
|
|
679
697
|
|
|
680
|
-
.
|
|
698
|
+
.referenceBadgeLabel {
|
|
681
699
|
display: block;
|
|
682
700
|
min-width: 0;
|
|
683
701
|
max-width: 100%;
|
|
@@ -686,7 +704,7 @@
|
|
|
686
704
|
white-space: nowrap;
|
|
687
705
|
}
|
|
688
706
|
|
|
689
|
-
.
|
|
707
|
+
.referenceBadge:not(.referenceBadgeStatic):hover {
|
|
690
708
|
background: color-mix(in srgb, var(--color-info, #3b82f6) 18%, transparent);
|
|
691
709
|
color: var(--color-info, #3b82f6);
|
|
692
710
|
border-color: color-mix(in srgb, var(--color-info, #3b82f6) 40%, transparent);
|
|
@@ -696,12 +714,44 @@
|
|
|
696
714
|
0 4px 12px color-mix(in srgb, var(--color-info, #3b82f6) 22%, transparent);
|
|
697
715
|
}
|
|
698
716
|
|
|
699
|
-
.
|
|
717
|
+
.referenceBadgeStatic {
|
|
718
|
+
cursor: default;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.provisionalReferenceBadge {
|
|
722
|
+
--provisional-reference-color: var(--color-warning, #f59e0b);
|
|
723
|
+
background: color-mix(in srgb, var(--provisional-reference-color) 14%, transparent);
|
|
724
|
+
border-color: color-mix(in srgb, var(--provisional-reference-color) 34%, transparent);
|
|
725
|
+
color: var(--provisional-reference-color);
|
|
726
|
+
box-shadow: 0 0 0 1px color-mix(in srgb, var(--provisional-reference-color) 10%, transparent);
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
[data-theme="light"] .provisionalReferenceBadge,
|
|
730
|
+
[data-theme="dawn"] .provisionalReferenceBadge {
|
|
731
|
+
--provisional-reference-color: #b45309;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.provisionalReferenceBadge:not(.referenceBadgeStatic):hover {
|
|
735
|
+
background: color-mix(in srgb, var(--provisional-reference-color) 20%, transparent);
|
|
736
|
+
border-color: color-mix(in srgb, var(--provisional-reference-color) 46%, transparent);
|
|
737
|
+
color: var(--provisional-reference-color);
|
|
738
|
+
box-shadow:
|
|
739
|
+
0 0 0 1px color-mix(in srgb, var(--provisional-reference-color) 14%, transparent),
|
|
740
|
+
0 4px 12px color-mix(in srgb, var(--provisional-reference-color) 18%, transparent);
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.copiedReference {
|
|
700
744
|
background: var(--color-info-bg, rgba(59, 130, 246, 0.1)) !important;
|
|
701
745
|
color: var(--color-info, #3b82f6) !important;
|
|
702
746
|
border-color: rgba(59, 130, 246, 0.3) !important;
|
|
703
747
|
}
|
|
704
748
|
|
|
749
|
+
.provisionalReferenceBadge.copiedReference {
|
|
750
|
+
background: color-mix(in srgb, var(--provisional-reference-color) 14%, transparent) !important;
|
|
751
|
+
border-color: color-mix(in srgb, var(--provisional-reference-color) 34%, transparent) !important;
|
|
752
|
+
color: var(--provisional-reference-color) !important;
|
|
753
|
+
}
|
|
754
|
+
|
|
705
755
|
.highlight {
|
|
706
756
|
display: inline;
|
|
707
757
|
background: rgba(139, 92, 246, 0.2);
|
|
@@ -825,35 +875,6 @@
|
|
|
825
875
|
--type-color: #f97316;
|
|
826
876
|
}
|
|
827
877
|
|
|
828
|
-
/* Approach Badge Styles */
|
|
829
|
-
.approachPill {
|
|
830
|
-
text-transform: capitalize;
|
|
831
|
-
font-weight: 600;
|
|
832
|
-
}
|
|
833
|
-
|
|
834
|
-
.approach_evaluate {
|
|
835
|
-
background: rgba(234, 179, 8, 0.15);
|
|
836
|
-
color: #eab308;
|
|
837
|
-
border-color: rgba(234, 179, 8, 0.3);
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
.approach_collaborate {
|
|
841
|
-
background: rgba(59, 130, 246, 0.15);
|
|
842
|
-
color: #3b82f6;
|
|
843
|
-
border-color: rgba(59, 130, 246, 0.3);
|
|
844
|
-
}
|
|
845
|
-
|
|
846
|
-
.approach_plan {
|
|
847
|
-
background: rgba(16, 185, 129, 0.15);
|
|
848
|
-
color: #10b981;
|
|
849
|
-
border-color: rgba(16, 185, 129, 0.3);
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
.approachActive {
|
|
853
|
-
border-color: rgba(139, 92, 246, 0.5);
|
|
854
|
-
background: rgba(139, 92, 246, 0.1);
|
|
855
|
-
}
|
|
856
|
-
|
|
857
878
|
.statusActionsGroup {
|
|
858
879
|
display: flex;
|
|
859
880
|
align-items: center;
|
|
@@ -1833,43 +1854,6 @@
|
|
|
1833
1854
|
background: rgba(139, 92, 246, 0.1);
|
|
1834
1855
|
}
|
|
1835
1856
|
|
|
1836
|
-
/* Markdown Content Styling */
|
|
1837
|
-
/* Unified Inline Code Styles */
|
|
1838
|
-
.inlineCode {
|
|
1839
|
-
background: var(--code-inline-bg);
|
|
1840
|
-
color: var(--code-inline-text);
|
|
1841
|
-
padding: 2px 5px;
|
|
1842
|
-
border-radius: 4px;
|
|
1843
|
-
font-family: "Monaco", "Menlo", "Cascadia Code", monospace;
|
|
1844
|
-
font-size: 0.85em;
|
|
1845
|
-
border: 1px solid var(--code-inline-border);
|
|
1846
|
-
vertical-align: baseline;
|
|
1847
|
-
}
|
|
1848
|
-
|
|
1849
|
-
.codeBlock {
|
|
1850
|
-
background: var(--code-block-bg);
|
|
1851
|
-
border: 1px solid var(--code-block-border);
|
|
1852
|
-
border-radius: 12px;
|
|
1853
|
-
padding: 16px;
|
|
1854
|
-
margin: 16px 0;
|
|
1855
|
-
overflow-x: auto;
|
|
1856
|
-
box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4);
|
|
1857
|
-
position: relative;
|
|
1858
|
-
white-space: pre-wrap;
|
|
1859
|
-
/* Better for code blocks to wrap if they are too long */
|
|
1860
|
-
word-break: break-word;
|
|
1861
|
-
}
|
|
1862
|
-
|
|
1863
|
-
.codeBlock code {
|
|
1864
|
-
background: transparent;
|
|
1865
|
-
padding: 0;
|
|
1866
|
-
color: var(--code-block-text);
|
|
1867
|
-
font-size: 13px;
|
|
1868
|
-
line-height: 1.6;
|
|
1869
|
-
font-family: "Monaco", "Menlo", "Cascadia Code", monospace;
|
|
1870
|
-
border: none;
|
|
1871
|
-
}
|
|
1872
|
-
|
|
1873
1857
|
.taskChildrenSummaryBadges {
|
|
1874
1858
|
display: flex;
|
|
1875
1859
|
flex-direction: column;
|
|
@@ -2161,6 +2145,42 @@
|
|
|
2161
2145
|
overflow-y: auto;
|
|
2162
2146
|
}
|
|
2163
2147
|
|
|
2148
|
+
.filterSearch {
|
|
2149
|
+
position: sticky;
|
|
2150
|
+
top: -6px;
|
|
2151
|
+
z-index: 1;
|
|
2152
|
+
padding: 6px 0;
|
|
2153
|
+
background: var(--bg-secondary, #1a1a2e);
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
.filterSearchIcon {
|
|
2157
|
+
position: absolute;
|
|
2158
|
+
left: 9px;
|
|
2159
|
+
top: 50%;
|
|
2160
|
+
transform: translateY(-50%);
|
|
2161
|
+
color: var(--text-helper, var(--text-secondary));
|
|
2162
|
+
pointer-events: none;
|
|
2163
|
+
}
|
|
2164
|
+
|
|
2165
|
+
.filterSearchInput.filterSearchInput {
|
|
2166
|
+
box-sizing: border-box;
|
|
2167
|
+
padding: 6px 7px 6px 26px;
|
|
2168
|
+
font-size: 12px;
|
|
2169
|
+
outline: none;
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2172
|
+
.filterSearchInput:focus {
|
|
2173
|
+
border-color: var(--field-focus-border, var(--brand-primary));
|
|
2174
|
+
box-shadow: 0 0 0 2px var(--field-focus-ring, var(--brand-primary-soft));
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
.filterEmpty {
|
|
2178
|
+
padding: 12px 8px;
|
|
2179
|
+
color: var(--text-helper, var(--text-secondary));
|
|
2180
|
+
font-size: 12px;
|
|
2181
|
+
text-align: center;
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2164
2184
|
.filterOption {
|
|
2165
2185
|
display: flex;
|
|
2166
2186
|
width: 100%;
|
|
@@ -2433,47 +2453,6 @@
|
|
|
2433
2453
|
border-top: 1px solid var(--border-primary, rgba(255, 255, 255, 0.1));
|
|
2434
2454
|
}
|
|
2435
2455
|
|
|
2436
|
-
/* Priority Styles */
|
|
2437
|
-
.priorityItem_low {
|
|
2438
|
-
border-left: 4px solid var(--priority-low) !important;
|
|
2439
|
-
}
|
|
2440
|
-
|
|
2441
|
-
.priorityItem_medium {
|
|
2442
|
-
border-left: 4px solid var(--priority-medium) !important;
|
|
2443
|
-
}
|
|
2444
|
-
|
|
2445
|
-
.priorityItem_high {
|
|
2446
|
-
border-left: 4px solid var(--priority-high) !important;
|
|
2447
|
-
}
|
|
2448
|
-
|
|
2449
|
-
.priorityItem_critical {
|
|
2450
|
-
border-left: 4px solid var(--priority-critical) !important;
|
|
2451
|
-
}
|
|
2452
|
-
|
|
2453
|
-
.priorityPill_low {
|
|
2454
|
-
background: rgba(148, 163, 184, 0.1) !important;
|
|
2455
|
-
color: var(--priority-low) !important;
|
|
2456
|
-
border-color: rgba(148, 163, 184, 0.2) !important;
|
|
2457
|
-
}
|
|
2458
|
-
|
|
2459
|
-
.priorityPill_medium {
|
|
2460
|
-
background: rgba(234, 179, 8, 0.1) !important;
|
|
2461
|
-
color: var(--priority-medium) !important;
|
|
2462
|
-
border-color: rgba(234, 179, 8, 0.2) !important;
|
|
2463
|
-
}
|
|
2464
|
-
|
|
2465
|
-
.priorityPill_high {
|
|
2466
|
-
background: rgba(239, 68, 68, 0.1) !important;
|
|
2467
|
-
color: var(--priority-high) !important;
|
|
2468
|
-
border-color: rgba(239, 68, 68, 0.2) !important;
|
|
2469
|
-
}
|
|
2470
|
-
|
|
2471
|
-
.priorityPill_critical {
|
|
2472
|
-
background: rgba(239, 68, 68, 0.1) !important;
|
|
2473
|
-
color: var(--priority-critical) !important;
|
|
2474
|
-
border-color: rgba(239, 68, 68, 0.2) !important;
|
|
2475
|
-
}
|
|
2476
|
-
|
|
2477
2456
|
.reviewPill {
|
|
2478
2457
|
background: rgba(139, 92, 246, 0.15) !important;
|
|
2479
2458
|
color: #a78bfa !important;
|
|
@@ -2616,10 +2595,10 @@
|
|
|
2616
2595
|
color: var(--text-primary);
|
|
2617
2596
|
text-transform: uppercase;
|
|
2618
2597
|
letter-spacing: 0.05em;
|
|
2619
|
-
animation:
|
|
2598
|
+
animation: levelLabelFadeIn 0.3s ease-out;
|
|
2620
2599
|
}
|
|
2621
2600
|
|
|
2622
|
-
@keyframes
|
|
2601
|
+
@keyframes levelLabelFadeIn {
|
|
2623
2602
|
from {
|
|
2624
2603
|
opacity: 0;
|
|
2625
2604
|
transform: translateX(-5px);
|
|
@@ -2755,18 +2734,6 @@
|
|
|
2755
2734
|
border-radius: 10px;
|
|
2756
2735
|
}
|
|
2757
2736
|
|
|
2758
|
-
@keyframes fadeIn {
|
|
2759
|
-
from {
|
|
2760
|
-
opacity: 0;
|
|
2761
|
-
transform: translateY(-5px);
|
|
2762
|
-
}
|
|
2763
|
-
|
|
2764
|
-
to {
|
|
2765
|
-
opacity: 1;
|
|
2766
|
-
transform: translateY(0);
|
|
2767
|
-
}
|
|
2768
|
-
}
|
|
2769
|
-
|
|
2770
2737
|
.specialistSection {
|
|
2771
2738
|
display: flex;
|
|
2772
2739
|
flex-direction: column;
|
|
@@ -2979,16 +2946,6 @@
|
|
|
2979
2946
|
color: #8b5cf6;
|
|
2980
2947
|
}
|
|
2981
2948
|
|
|
2982
|
-
/* Edit Actions Header */
|
|
2983
|
-
.editActionsHeader {
|
|
2984
|
-
display: flex;
|
|
2985
|
-
justify-content: space-between;
|
|
2986
|
-
align-items: center;
|
|
2987
|
-
margin-bottom: 12px;
|
|
2988
|
-
padding-bottom: 12px;
|
|
2989
|
-
border-bottom: 1px solid var(--border-primary, rgba(255, 255, 255, 0.1));
|
|
2990
|
-
}
|
|
2991
|
-
|
|
2992
2949
|
.editActionsGroup {
|
|
2993
2950
|
display: flex;
|
|
2994
2951
|
gap: 8px;
|
|
@@ -2996,40 +2953,6 @@
|
|
|
2996
2953
|
justify-self: end;
|
|
2997
2954
|
}
|
|
2998
2955
|
|
|
2999
|
-
.urlInputGroup {
|
|
3000
|
-
display: flex;
|
|
3001
|
-
gap: 8px;
|
|
3002
|
-
align-items: center;
|
|
3003
|
-
width: 100%;
|
|
3004
|
-
}
|
|
3005
|
-
|
|
3006
|
-
.urlInputGroup input {
|
|
3007
|
-
flex: 1;
|
|
3008
|
-
min-width: 0;
|
|
3009
|
-
/* Allow shrinking if needed */
|
|
3010
|
-
}
|
|
3011
|
-
|
|
3012
|
-
.iconBtn {
|
|
3013
|
-
background: var(--bg-primary, #0f0f1a);
|
|
3014
|
-
border: 1px solid var(--border-primary, rgba(255, 255, 255, 0.1));
|
|
3015
|
-
color: var(--text-muted, #666);
|
|
3016
|
-
cursor: pointer;
|
|
3017
|
-
width: 42px;
|
|
3018
|
-
height: 42px;
|
|
3019
|
-
border-radius: var(--radius-md, 12px);
|
|
3020
|
-
display: flex;
|
|
3021
|
-
align-items: center;
|
|
3022
|
-
justify-content: center;
|
|
3023
|
-
transition: all 0.2s;
|
|
3024
|
-
flex-shrink: 0;
|
|
3025
|
-
}
|
|
3026
|
-
|
|
3027
|
-
.iconBtn:hover {
|
|
3028
|
-
color: var(--text-primary, #fff);
|
|
3029
|
-
border-color: #8b5cf6;
|
|
3030
|
-
background: rgba(139, 92, 246, 0.1);
|
|
3031
|
-
}
|
|
3032
|
-
|
|
3033
2956
|
.stickyActionHeader {
|
|
3034
2957
|
position: sticky;
|
|
3035
2958
|
top: 0;
|
|
@@ -3047,6 +2970,12 @@
|
|
|
3047
2970
|
backdrop-filter: blur(10px);
|
|
3048
2971
|
}
|
|
3049
2972
|
|
|
2973
|
+
.taskNoticeAnchor {
|
|
2974
|
+
position: relative;
|
|
2975
|
+
z-index: 21;
|
|
2976
|
+
flex-shrink: 0;
|
|
2977
|
+
}
|
|
2978
|
+
|
|
3050
2979
|
.taskHierarchyHeader {
|
|
3051
2980
|
min-width: 0;
|
|
3052
2981
|
display: flex;
|
|
@@ -3094,19 +3023,90 @@
|
|
|
3094
3023
|
min-width: 24px;
|
|
3095
3024
|
}
|
|
3096
3025
|
|
|
3097
|
-
.
|
|
3098
|
-
display: flex;
|
|
3099
|
-
|
|
3100
|
-
gap: 8px;
|
|
3026
|
+
.taskHierarchyBadgeRow .taskWorkstreamPicker {
|
|
3027
|
+
display: inline-flex;
|
|
3028
|
+
width: max-content;
|
|
3101
3029
|
min-width: 0;
|
|
3030
|
+
max-width: min(100%, 12rem);
|
|
3031
|
+
flex: 0 0 auto;
|
|
3032
|
+
}
|
|
3033
|
+
|
|
3034
|
+
.taskWorkstreamPicker :global(.taxonomyDropdownButton) {
|
|
3035
|
+
width: 24px;
|
|
3036
|
+
min-width: 24px;
|
|
3037
|
+
max-width: 24px;
|
|
3038
|
+
min-height: 22px;
|
|
3039
|
+
height: 22px;
|
|
3040
|
+
justify-content: center;
|
|
3041
|
+
gap: 0;
|
|
3042
|
+
padding: 0;
|
|
3043
|
+
border-color: color-mix(in srgb, var(--color-info, #3b82f6) 28%, transparent);
|
|
3044
|
+
border-radius: 4px;
|
|
3045
|
+
background: color-mix(in srgb, var(--color-info, #3b82f6) 12%, transparent);
|
|
3046
|
+
color: var(--color-info, #3b82f6);
|
|
3047
|
+
font-size: 10px;
|
|
3048
|
+
font-family: var(--font-mono, monospace);
|
|
3049
|
+
box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-info, #3b82f6) 8%, transparent);
|
|
3050
|
+
}
|
|
3051
|
+
|
|
3052
|
+
.taskWorkstreamPicker :global(.taxonomyDropdownButton:hover:not(:disabled)) {
|
|
3053
|
+
border-color: color-mix(in srgb, var(--color-info, #3b82f6) 40%, transparent);
|
|
3054
|
+
background: color-mix(in srgb, var(--color-info, #3b82f6) 18%, transparent);
|
|
3055
|
+
color: var(--color-info, #3b82f6);
|
|
3056
|
+
filter: none;
|
|
3057
|
+
transform: translateY(-1px);
|
|
3058
|
+
box-shadow:
|
|
3059
|
+
0 0 0 1px color-mix(in srgb, var(--color-info, #3b82f6) 12%, transparent),
|
|
3060
|
+
0 4px 12px color-mix(in srgb, var(--color-info, #3b82f6) 22%, transparent);
|
|
3061
|
+
}
|
|
3062
|
+
|
|
3063
|
+
.taskWorkstreamPicker :global(.taxonomyDropdownButton:focus-visible) {
|
|
3064
|
+
border-color: var(--color-info, #3b82f6);
|
|
3065
|
+
outline-color: var(--color-info, #3b82f6);
|
|
3066
|
+
box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-info, #3b82f6) 18%, transparent);
|
|
3067
|
+
}
|
|
3068
|
+
|
|
3069
|
+
.taskWorkstreamPicker :global(.taxonomyDropdownOpen) {
|
|
3070
|
+
border-color: color-mix(in srgb, var(--color-info, #3b82f6) 40%, transparent) !important;
|
|
3071
|
+
border-radius: var(--radius-sm);
|
|
3072
|
+
background: color-mix(in srgb, var(--color-info, #3b82f6) 18%, transparent);
|
|
3073
|
+
color: var(--color-info, #3b82f6);
|
|
3074
|
+
}
|
|
3075
|
+
|
|
3076
|
+
.taskWorkstreamPicker :global(.taxonomyDropdownButtonContent) {
|
|
3077
|
+
flex: 0 0 auto;
|
|
3078
|
+
gap: 0;
|
|
3079
|
+
}
|
|
3080
|
+
|
|
3081
|
+
.taskWorkstreamPickerIcon {
|
|
3082
|
+
display: inline-flex;
|
|
3083
|
+
align-items: center;
|
|
3084
|
+
justify-content: center;
|
|
3102
3085
|
}
|
|
3103
3086
|
|
|
3104
|
-
.
|
|
3105
|
-
width:
|
|
3087
|
+
.taskWorkstreamPickerPanel {
|
|
3088
|
+
min-width: 280px;
|
|
3089
|
+
}
|
|
3090
|
+
|
|
3091
|
+
.taskWorkstreamPickerOption {
|
|
3092
|
+
display: grid;
|
|
3093
|
+
grid-template-columns: max-content minmax(0, 1fr);
|
|
3094
|
+
align-items: center;
|
|
3095
|
+
gap: 10px;
|
|
3106
3096
|
min-width: 0;
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3097
|
+
}
|
|
3098
|
+
|
|
3099
|
+
.taskWorkstreamPickerOption > span:first-child {
|
|
3100
|
+
color: var(--text-helper);
|
|
3101
|
+
font-family: var(--font-mono, monospace);
|
|
3102
|
+
font-size: 11px;
|
|
3103
|
+
}
|
|
3104
|
+
|
|
3105
|
+
.taskWorkstreamPickerOption > span:last-child {
|
|
3106
|
+
overflow: hidden;
|
|
3107
|
+
color: var(--text-primary);
|
|
3108
|
+
text-overflow: ellipsis;
|
|
3109
|
+
white-space: nowrap;
|
|
3110
3110
|
}
|
|
3111
3111
|
|
|
3112
3112
|
|
|
@@ -3133,81 +3133,33 @@
|
|
|
3133
3133
|
color: var(--status-error);
|
|
3134
3134
|
}
|
|
3135
3135
|
|
|
3136
|
-
.
|
|
3136
|
+
.primaryUpdateBtn {
|
|
3137
|
+
background: var(--button-primary-bg);
|
|
3138
|
+
color: var(--button-primary-text);
|
|
3139
|
+
border: 1px solid var(--button-primary-border);
|
|
3140
|
+
padding: 8px 16px;
|
|
3141
|
+
border-radius: var(--radius-md, 12px);
|
|
3142
|
+
font-weight: 600;
|
|
3143
|
+
font-size: 13px;
|
|
3137
3144
|
display: flex;
|
|
3138
3145
|
align-items: center;
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
font-weight: 600;
|
|
3144
|
-
font-size: 14px;
|
|
3145
|
-
animation: slideInUp 0.3s ease-out;
|
|
3146
|
+
gap: 6px;
|
|
3147
|
+
cursor: pointer;
|
|
3148
|
+
transition: all 0.2s;
|
|
3149
|
+
box-shadow: 0 4px 12px var(--brand-primary-glow);
|
|
3146
3150
|
}
|
|
3147
3151
|
|
|
3148
|
-
.
|
|
3149
|
-
|
|
3150
|
-
|
|
3152
|
+
.primaryUpdateBtn:hover:not(:disabled) {
|
|
3153
|
+
box-shadow: 0 8px 24px var(--brand-primary-glow);
|
|
3154
|
+
transform: translateY(-1px);
|
|
3151
3155
|
}
|
|
3152
3156
|
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
to {
|
|
3160
|
-
opacity: 1;
|
|
3161
|
-
transform: translateY(0);
|
|
3162
|
-
}
|
|
3163
|
-
}
|
|
3164
|
-
|
|
3165
|
-
@keyframes scaleIn {
|
|
3166
|
-
from {
|
|
3167
|
-
opacity: 0;
|
|
3168
|
-
transform: scale(0.5);
|
|
3169
|
-
}
|
|
3170
|
-
|
|
3171
|
-
to {
|
|
3172
|
-
opacity: 1;
|
|
3173
|
-
transform: scale(1);
|
|
3174
|
-
}
|
|
3175
|
-
}
|
|
3176
|
-
|
|
3177
|
-
/* Ensure the modal content scrolls under this */
|
|
3178
|
-
.form {
|
|
3179
|
-
overflow-y: auto;
|
|
3180
|
-
flex: 1;
|
|
3181
|
-
/* Remove padding-top from form if it was there, handled by content flow */
|
|
3182
|
-
}
|
|
3183
|
-
|
|
3184
|
-
.primaryUpdateBtn {
|
|
3185
|
-
background: var(--button-primary-bg);
|
|
3186
|
-
color: var(--button-primary-text);
|
|
3187
|
-
border: 1px solid var(--button-primary-border);
|
|
3188
|
-
padding: 8px 16px;
|
|
3189
|
-
border-radius: var(--radius-md, 12px);
|
|
3190
|
-
font-weight: 600;
|
|
3191
|
-
font-size: 13px;
|
|
3192
|
-
display: flex;
|
|
3193
|
-
align-items: center;
|
|
3194
|
-
gap: 6px;
|
|
3195
|
-
cursor: pointer;
|
|
3196
|
-
transition: all 0.2s;
|
|
3197
|
-
box-shadow: 0 4px 12px var(--brand-primary-glow);
|
|
3198
|
-
}
|
|
3199
|
-
|
|
3200
|
-
.primaryUpdateBtn:hover:not(:disabled) {
|
|
3201
|
-
box-shadow: 0 8px 24px var(--brand-primary-glow);
|
|
3202
|
-
transform: translateY(-1px);
|
|
3203
|
-
}
|
|
3204
|
-
|
|
3205
|
-
.primaryUpdateBtn:disabled {
|
|
3206
|
-
background: #4b5563;
|
|
3207
|
-
cursor: not-allowed;
|
|
3208
|
-
box-shadow: none;
|
|
3209
|
-
opacity: 0.7;
|
|
3210
|
-
}
|
|
3157
|
+
.primaryUpdateBtn:disabled {
|
|
3158
|
+
background: #4b5563;
|
|
3159
|
+
cursor: not-allowed;
|
|
3160
|
+
box-shadow: none;
|
|
3161
|
+
opacity: 0.7;
|
|
3162
|
+
}
|
|
3211
3163
|
|
|
3212
3164
|
.secondaryHeaderBtn {
|
|
3213
3165
|
background: rgba(255, 255, 255, 0.05);
|
|
@@ -3242,43 +3194,6 @@
|
|
|
3242
3194
|
border-color: var(--button-destructive-hover-border);
|
|
3243
3195
|
}
|
|
3244
3196
|
|
|
3245
|
-
/* Threaded Comment System */
|
|
3246
|
-
.commentSection {
|
|
3247
|
-
margin-top: 16px;
|
|
3248
|
-
border: 1px solid var(--border-primary, rgba(255, 255, 255, 0.1));
|
|
3249
|
-
border-radius: var(--radius-md, 12px);
|
|
3250
|
-
overflow: hidden;
|
|
3251
|
-
background: rgba(0, 0, 0, 0.15);
|
|
3252
|
-
display: flex;
|
|
3253
|
-
flex-direction: column;
|
|
3254
|
-
flex-shrink: 0;
|
|
3255
|
-
transition: all 0.3s ease;
|
|
3256
|
-
}
|
|
3257
|
-
|
|
3258
|
-
.commentSection:focus-within {
|
|
3259
|
-
border-color: rgba(139, 92, 246, 0.3);
|
|
3260
|
-
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
|
|
3261
|
-
}
|
|
3262
|
-
|
|
3263
|
-
.commentSection .labelRow {
|
|
3264
|
-
padding: 10px 14px;
|
|
3265
|
-
border-bottom: 1px solid var(--border-primary, rgba(255, 255, 255, 0.05));
|
|
3266
|
-
background: rgba(255, 255, 255, 0.01);
|
|
3267
|
-
}
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
@keyframes fadeIn {
|
|
3271
|
-
from {
|
|
3272
|
-
opacity: 0;
|
|
3273
|
-
transform: translateY(4px);
|
|
3274
|
-
}
|
|
3275
|
-
|
|
3276
|
-
to {
|
|
3277
|
-
opacity: 1;
|
|
3278
|
-
transform: translateY(0);
|
|
3279
|
-
}
|
|
3280
|
-
}
|
|
3281
|
-
|
|
3282
3197
|
.attachmentCaptureContainer {
|
|
3283
3198
|
padding: 1rem;
|
|
3284
3199
|
background: var(--bg-primary);
|
|
@@ -3384,9 +3299,8 @@
|
|
|
3384
3299
|
|
|
3385
3300
|
.attachmentGrid {
|
|
3386
3301
|
display: grid;
|
|
3387
|
-
grid-template-columns: repeat(auto-fill, minmax(
|
|
3388
|
-
gap:
|
|
3389
|
-
margin-top: 12px;
|
|
3302
|
+
grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
|
|
3303
|
+
gap: 8px;
|
|
3390
3304
|
}
|
|
3391
3305
|
|
|
3392
3306
|
.attachmentCard {
|
|
@@ -3406,7 +3320,7 @@
|
|
|
3406
3320
|
.attachmentPreviewContainer {
|
|
3407
3321
|
position: relative;
|
|
3408
3322
|
width: 100%;
|
|
3409
|
-
aspect-ratio:
|
|
3323
|
+
aspect-ratio: 4/3;
|
|
3410
3324
|
background: #000;
|
|
3411
3325
|
overflow: hidden;
|
|
3412
3326
|
}
|
|
@@ -3420,6 +3334,20 @@
|
|
|
3420
3334
|
display: block;
|
|
3421
3335
|
}
|
|
3422
3336
|
|
|
3337
|
+
.attachmentPreviewButton {
|
|
3338
|
+
width: 100%;
|
|
3339
|
+
height: 100%;
|
|
3340
|
+
padding: 0;
|
|
3341
|
+
border: 0;
|
|
3342
|
+
background: transparent;
|
|
3343
|
+
cursor: pointer;
|
|
3344
|
+
}
|
|
3345
|
+
|
|
3346
|
+
.attachmentPreviewButton:focus-visible {
|
|
3347
|
+
outline: 2px solid var(--field-focus-border);
|
|
3348
|
+
outline-offset: -2px;
|
|
3349
|
+
}
|
|
3350
|
+
|
|
3423
3351
|
.attachmentPreviewContainer:hover img {
|
|
3424
3352
|
transform: scale(1.02);
|
|
3425
3353
|
}
|
|
@@ -3460,7 +3388,8 @@
|
|
|
3460
3388
|
transition: opacity 0.2s;
|
|
3461
3389
|
}
|
|
3462
3390
|
|
|
3463
|
-
.attachmentPreviewContainer:hover .attachmentActions
|
|
3391
|
+
.attachmentPreviewContainer:hover .attachmentActions,
|
|
3392
|
+
.attachmentPreviewContainer:focus-within .attachmentActions {
|
|
3464
3393
|
opacity: 1;
|
|
3465
3394
|
}
|
|
3466
3395
|
|
|
@@ -3486,12 +3415,14 @@
|
|
|
3486
3415
|
transform: scale(1.05);
|
|
3487
3416
|
}
|
|
3488
3417
|
|
|
3489
|
-
.attachmentCaptionInput
|
|
3418
|
+
.attachmentCaptionInput,
|
|
3419
|
+
.documentAttachmentCaptionInput {
|
|
3420
|
+
min-width: 0;
|
|
3490
3421
|
width: 100%;
|
|
3491
|
-
padding:
|
|
3492
|
-
background:
|
|
3493
|
-
border:
|
|
3494
|
-
border-
|
|
3422
|
+
padding: 6px 8px;
|
|
3423
|
+
background: var(--bg-primary);
|
|
3424
|
+
border: 1px solid var(--border-primary);
|
|
3425
|
+
border-radius: var(--radius-sm, 6px);
|
|
3495
3426
|
color: var(--text-secondary);
|
|
3496
3427
|
font-size: var(--text-xs, 12px);
|
|
3497
3428
|
font-family: inherit;
|
|
@@ -3499,7 +3430,8 @@
|
|
|
3499
3430
|
transition: all 0.2s;
|
|
3500
3431
|
}
|
|
3501
3432
|
|
|
3502
|
-
.attachmentCaptionInput:focus
|
|
3433
|
+
.attachmentCaptionInput:focus,
|
|
3434
|
+
.documentAttachmentCaptionInput:focus {
|
|
3503
3435
|
background: rgba(255, 255, 255, 0.03);
|
|
3504
3436
|
color: var(--text-primary);
|
|
3505
3437
|
}
|
|
@@ -3508,118 +3440,207 @@
|
|
|
3508
3440
|
display: none;
|
|
3509
3441
|
}
|
|
3510
3442
|
|
|
3511
|
-
.
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3443
|
+
.contextMenuControl {
|
|
3444
|
+
position: relative;
|
|
3445
|
+
display: inline-flex;
|
|
3446
|
+
flex-shrink: 0;
|
|
3447
|
+
}
|
|
3448
|
+
|
|
3449
|
+
.contextMenu {
|
|
3450
|
+
position: absolute;
|
|
3451
|
+
z-index: 30;
|
|
3452
|
+
top: calc(100% + 4px);
|
|
3453
|
+
right: 0;
|
|
3454
|
+
min-width: 150px;
|
|
3455
|
+
padding: 4px;
|
|
3456
|
+
border: 1px solid var(--border-primary);
|
|
3515
3457
|
border-radius: var(--radius-md);
|
|
3516
|
-
background:
|
|
3458
|
+
background: var(--bg-secondary);
|
|
3459
|
+
box-shadow: var(--box-shadow-lg);
|
|
3517
3460
|
}
|
|
3518
3461
|
|
|
3519
|
-
.
|
|
3520
|
-
|
|
3462
|
+
.contextMenu button {
|
|
3463
|
+
width: 100%;
|
|
3521
3464
|
display: flex;
|
|
3522
3465
|
align-items: center;
|
|
3523
3466
|
gap: 8px;
|
|
3524
|
-
|
|
3467
|
+
padding: 7px 8px;
|
|
3468
|
+
border: 0;
|
|
3469
|
+
border-radius: var(--radius-sm, 6px);
|
|
3470
|
+
background: transparent;
|
|
3471
|
+
color: var(--text-secondary);
|
|
3472
|
+
font: inherit;
|
|
3473
|
+
font-size: 12px;
|
|
3474
|
+
text-align: left;
|
|
3475
|
+
cursor: pointer;
|
|
3525
3476
|
}
|
|
3526
3477
|
|
|
3527
|
-
.
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
|
|
3478
|
+
.contextMenu button:hover,
|
|
3479
|
+
.contextMenu button:focus-visible {
|
|
3480
|
+
background: var(--surface-hover);
|
|
3481
|
+
color: var(--text-primary);
|
|
3482
|
+
}
|
|
3483
|
+
|
|
3484
|
+
.contextMenu button:focus-visible {
|
|
3485
|
+
outline: 2px solid var(--field-focus-border);
|
|
3486
|
+
outline-offset: -2px;
|
|
3487
|
+
}
|
|
3488
|
+
|
|
3489
|
+
.contextAddMenu {
|
|
3490
|
+
top: auto;
|
|
3491
|
+
bottom: calc(100% + 4px);
|
|
3492
|
+
}
|
|
3493
|
+
|
|
3494
|
+
.contextActionsMenu {
|
|
3495
|
+
top: calc(100% + 2px);
|
|
3496
|
+
}
|
|
3497
|
+
|
|
3498
|
+
.contextMenu .contextDestructiveMenuItem {
|
|
3499
|
+
color: var(--color-error, #ef4444);
|
|
3500
|
+
}
|
|
3501
|
+
|
|
3502
|
+
.contextContent {
|
|
3503
|
+
position: relative;
|
|
3504
|
+
display: flex;
|
|
3505
|
+
flex-direction: column;
|
|
3506
|
+
gap: 10px;
|
|
3507
|
+
min-height: 42px;
|
|
3508
|
+
margin-top: 6px;
|
|
3509
|
+
padding: 2px 0;
|
|
3510
|
+
}
|
|
3511
|
+
|
|
3512
|
+
.contextContentDropActive {
|
|
3513
|
+
border-radius: var(--radius-md);
|
|
3514
|
+
}
|
|
3515
|
+
|
|
3516
|
+
.contextDropOverlay {
|
|
3517
|
+
position: absolute;
|
|
3518
|
+
z-index: 20;
|
|
3519
|
+
inset: 0;
|
|
3535
3520
|
display: flex;
|
|
3536
3521
|
align-items: center;
|
|
3537
3522
|
justify-content: center;
|
|
3538
3523
|
gap: 8px;
|
|
3524
|
+
min-height: 54px;
|
|
3525
|
+
border: 1px dashed var(--brand-primary);
|
|
3526
|
+
border-radius: var(--radius-md);
|
|
3527
|
+
background: color-mix(in srgb, var(--bg-primary) 90%, var(--brand-primary));
|
|
3528
|
+
color: var(--text-primary);
|
|
3539
3529
|
font-size: 12px;
|
|
3540
|
-
|
|
3530
|
+
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand-primary) 35%, transparent);
|
|
3541
3531
|
}
|
|
3542
3532
|
|
|
3543
|
-
.
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
animation: contextDropzonePulse 220ms ease-out;
|
|
3533
|
+
.contextLinkComposer {
|
|
3534
|
+
display: grid;
|
|
3535
|
+
grid-template-columns: minmax(0, 1fr) auto auto;
|
|
3536
|
+
align-items: center;
|
|
3537
|
+
gap: 6px;
|
|
3549
3538
|
}
|
|
3550
3539
|
|
|
3551
|
-
.
|
|
3540
|
+
.contextEmptyState {
|
|
3541
|
+
min-height: 42px;
|
|
3552
3542
|
display: flex;
|
|
3553
|
-
|
|
3554
|
-
|
|
3543
|
+
align-items: center;
|
|
3544
|
+
justify-content: center;
|
|
3545
|
+
gap: 7px;
|
|
3546
|
+
color: var(--text-muted);
|
|
3547
|
+
font-size: 12px;
|
|
3548
|
+
}
|
|
3549
|
+
|
|
3550
|
+
.contextGroupLabel {
|
|
3551
|
+
margin-bottom: 6px;
|
|
3552
|
+
color: var(--text-muted);
|
|
3553
|
+
font-size: 10px;
|
|
3554
|
+
font-weight: 700;
|
|
3555
|
+
letter-spacing: 0.05em;
|
|
3556
|
+
text-transform: uppercase;
|
|
3555
3557
|
}
|
|
3556
3558
|
|
|
3557
3559
|
.contextNotice {
|
|
3558
|
-
margin-top: 8px;
|
|
3559
3560
|
font-size: 11px;
|
|
3560
3561
|
color: var(--text-muted, #8a90a0);
|
|
3561
3562
|
}
|
|
3562
3563
|
|
|
3564
|
+
.contextCaptionEditor {
|
|
3565
|
+
display: grid;
|
|
3566
|
+
grid-template-columns: minmax(0, 1fr) auto;
|
|
3567
|
+
align-items: center;
|
|
3568
|
+
gap: 4px;
|
|
3569
|
+
padding: 5px;
|
|
3570
|
+
}
|
|
3571
|
+
|
|
3572
|
+
.attachmentCaptionLabel {
|
|
3573
|
+
width: 100%;
|
|
3574
|
+
padding: 7px 8px;
|
|
3575
|
+
overflow: hidden;
|
|
3576
|
+
border: 0;
|
|
3577
|
+
background: transparent;
|
|
3578
|
+
color: var(--text-secondary);
|
|
3579
|
+
font: inherit;
|
|
3580
|
+
font-size: 11px;
|
|
3581
|
+
text-align: left;
|
|
3582
|
+
text-overflow: ellipsis;
|
|
3583
|
+
white-space: nowrap;
|
|
3584
|
+
cursor: text;
|
|
3585
|
+
}
|
|
3586
|
+
|
|
3587
|
+
.attachmentCaptionLabel:hover,
|
|
3588
|
+
.attachmentCaptionLabel:focus-visible {
|
|
3589
|
+
background: var(--surface-hover);
|
|
3590
|
+
color: var(--text-primary);
|
|
3591
|
+
}
|
|
3592
|
+
|
|
3593
|
+
.attachmentCaptionLabel:focus-visible {
|
|
3594
|
+
outline: 2px solid var(--field-focus-border);
|
|
3595
|
+
outline-offset: -2px;
|
|
3596
|
+
}
|
|
3597
|
+
|
|
3563
3598
|
.documentAttachmentList {
|
|
3564
3599
|
display: flex;
|
|
3565
3600
|
flex-direction: column;
|
|
3566
|
-
gap:
|
|
3567
|
-
margin-top: 12px;
|
|
3601
|
+
gap: 6px;
|
|
3568
3602
|
}
|
|
3569
3603
|
|
|
3570
3604
|
.documentAttachmentItem {
|
|
3571
3605
|
border: 1px solid var(--border-primary);
|
|
3572
3606
|
border-radius: var(--radius-md);
|
|
3573
3607
|
background: color-mix(in srgb, var(--bg-secondary, rgba(255, 255, 255, 0.03)), transparent 8%);
|
|
3574
|
-
overflow: hidden;
|
|
3575
3608
|
}
|
|
3576
3609
|
|
|
3577
3610
|
.documentAttachmentRow {
|
|
3578
3611
|
display: grid;
|
|
3579
3612
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
3580
3613
|
align-items: center;
|
|
3581
|
-
gap:
|
|
3582
|
-
|
|
3614
|
+
gap: 6px;
|
|
3615
|
+
min-height: 38px;
|
|
3616
|
+
padding: 5px 6px 5px 10px;
|
|
3583
3617
|
}
|
|
3584
3618
|
|
|
3585
3619
|
.documentAttachmentLink {
|
|
3620
|
+
flex: 1 1 auto;
|
|
3586
3621
|
min-width: 0;
|
|
3587
3622
|
border: none;
|
|
3588
3623
|
background: transparent;
|
|
3589
3624
|
color: var(--text-primary, #fff);
|
|
3590
3625
|
display: flex;
|
|
3591
3626
|
align-items: center;
|
|
3592
|
-
|
|
3593
|
-
gap: 12px;
|
|
3627
|
+
gap: 8px;
|
|
3594
3628
|
padding: 0;
|
|
3595
3629
|
cursor: pointer;
|
|
3596
3630
|
text-align: left;
|
|
3597
3631
|
}
|
|
3598
3632
|
|
|
3599
3633
|
.documentAttachmentMain {
|
|
3634
|
+
width: 100%;
|
|
3600
3635
|
min-width: 0;
|
|
3601
|
-
display:
|
|
3602
|
-
align-items: center;
|
|
3603
|
-
gap: 8px;
|
|
3604
|
-
}
|
|
3605
|
-
|
|
3606
|
-
.documentAttachmentText {
|
|
3607
|
-
min-width: 0;
|
|
3608
|
-
display: inline-flex;
|
|
3636
|
+
display: flex;
|
|
3609
3637
|
align-items: center;
|
|
3610
3638
|
gap: 6px;
|
|
3611
|
-
flex-wrap: wrap;
|
|
3612
3639
|
}
|
|
3613
3640
|
|
|
3614
|
-
.
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
display: inline-flex;
|
|
3618
|
-
align-items: center;
|
|
3619
|
-
justify-content: center;
|
|
3620
|
-
color: var(--text-muted, #94a3b8);
|
|
3621
|
-
opacity: 0.75;
|
|
3622
|
-
flex-shrink: 0;
|
|
3641
|
+
.documentAttachmentReference {
|
|
3642
|
+
flex: 0 0 auto;
|
|
3643
|
+
max-width: none;
|
|
3623
3644
|
}
|
|
3624
3645
|
|
|
3625
3646
|
.documentAttachmentName {
|
|
@@ -3633,70 +3654,46 @@
|
|
|
3633
3654
|
|
|
3634
3655
|
.documentAttachmentType {
|
|
3635
3656
|
flex-shrink: 0;
|
|
3636
|
-
|
|
3657
|
+
position: relative;
|
|
3658
|
+
width: 28px;
|
|
3659
|
+
height: 28px;
|
|
3660
|
+
display: inline-flex;
|
|
3661
|
+
align-items: center;
|
|
3662
|
+
justify-content: center;
|
|
3663
|
+
font-size: 9px;
|
|
3637
3664
|
line-height: 1;
|
|
3638
3665
|
font-weight: 700;
|
|
3639
3666
|
letter-spacing: 0.03em;
|
|
3640
3667
|
color: var(--text-muted, #94a3b8);
|
|
3641
|
-
|
|
3642
|
-
border: 1px solid var(--border-primary);
|
|
3643
|
-
border-radius: 6px;
|
|
3644
|
-
padding: 3px 6px;
|
|
3645
|
-
}
|
|
3646
|
-
|
|
3647
|
-
.documentAttachmentActions {
|
|
3648
|
-
display: flex;
|
|
3649
|
-
align-items: center;
|
|
3650
|
-
gap: 6px;
|
|
3668
|
+
padding: 0;
|
|
3651
3669
|
}
|
|
3652
3670
|
|
|
3653
|
-
.
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
color: var(--text-secondary, #c4c4c4);
|
|
3671
|
+
.documentAttachmentTypeOutline {
|
|
3672
|
+
position: absolute;
|
|
3673
|
+
inset: 0;
|
|
3657
3674
|
width: 28px;
|
|
3658
3675
|
height: 28px;
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
font-size: 0;
|
|
3676
|
+
overflow: visible;
|
|
3677
|
+
fill: rgba(255, 255, 255, 0.04);
|
|
3678
|
+
stroke: var(--border-primary);
|
|
3679
|
+
stroke-width: 1;
|
|
3680
|
+
stroke-linecap: round;
|
|
3681
|
+
stroke-linejoin: round;
|
|
3666
3682
|
}
|
|
3667
3683
|
|
|
3668
|
-
.
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
background: rgba(255, 255, 255, 0.08);
|
|
3672
|
-
}
|
|
3673
|
-
|
|
3674
|
-
.documentAttachmentCaptionInput {
|
|
3675
|
-
width: 100%;
|
|
3676
|
-
padding: 9px 12px;
|
|
3677
|
-
background: transparent;
|
|
3678
|
-
border: none;
|
|
3679
|
-
border-top: 1px solid var(--border-primary);
|
|
3680
|
-
color: var(--text-secondary);
|
|
3681
|
-
font-size: var(--text-xs, 12px);
|
|
3682
|
-
font-family: inherit;
|
|
3683
|
-
outline: none;
|
|
3684
|
-
transition: all 0.2s;
|
|
3684
|
+
.documentAttachmentTypeFoldFill {
|
|
3685
|
+
fill: color-mix(in srgb, var(--border-primary) 35%, var(--bg-secondary));
|
|
3686
|
+
stroke: none;
|
|
3685
3687
|
}
|
|
3686
3688
|
|
|
3687
|
-
.
|
|
3688
|
-
|
|
3689
|
-
color: var(--text-primary);
|
|
3689
|
+
.documentAttachmentTypeFoldLine {
|
|
3690
|
+
fill: none;
|
|
3690
3691
|
}
|
|
3691
3692
|
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
100% {
|
|
3698
|
-
transform: scale(1);
|
|
3699
|
-
}
|
|
3693
|
+
.documentAttachmentTypeLabel {
|
|
3694
|
+
position: relative;
|
|
3695
|
+
z-index: 1;
|
|
3696
|
+
transform: translateY(2px);
|
|
3700
3697
|
}
|
|
3701
3698
|
|
|
3702
3699
|
.brokenImage {
|
|
@@ -3985,6 +3982,230 @@
|
|
|
3985
3982
|
gap: 0.75rem;
|
|
3986
3983
|
}
|
|
3987
3984
|
|
|
3985
|
+
.mcpHealthCompactAlert,
|
|
3986
|
+
.mcpHealthUpdateRow,
|
|
3987
|
+
.mcpHealthBlockingAlert {
|
|
3988
|
+
display: flex;
|
|
3989
|
+
align-items: center;
|
|
3990
|
+
gap: 10px;
|
|
3991
|
+
min-height: 40px;
|
|
3992
|
+
padding: 9px 10px;
|
|
3993
|
+
border: 1px solid var(--border-subtle);
|
|
3994
|
+
border-radius: var(--radius-md);
|
|
3995
|
+
color: var(--text-secondary);
|
|
3996
|
+
font-size: 12px;
|
|
3997
|
+
}
|
|
3998
|
+
|
|
3999
|
+
.mcpHealthCompactAlert {
|
|
4000
|
+
background: var(--surface-raised);
|
|
4001
|
+
}
|
|
4002
|
+
|
|
4003
|
+
.mcpHealthUpdateRow {
|
|
4004
|
+
background: var(--status-warning-bg);
|
|
4005
|
+
border-color: color-mix(in srgb, var(--status-warning) 34%, var(--border-subtle));
|
|
4006
|
+
}
|
|
4007
|
+
|
|
4008
|
+
.mcpHealthBlockingAlert {
|
|
4009
|
+
align-items: flex-start;
|
|
4010
|
+
background: var(--status-error-bg);
|
|
4011
|
+
border-color: color-mix(in srgb, var(--status-error) 34%, var(--border-subtle));
|
|
4012
|
+
color: var(--status-error-text);
|
|
4013
|
+
}
|
|
4014
|
+
|
|
4015
|
+
.mcpHealthUpdateIcon {
|
|
4016
|
+
display: grid;
|
|
4017
|
+
place-items: center;
|
|
4018
|
+
color: var(--status-warning-text);
|
|
4019
|
+
}
|
|
4020
|
+
|
|
4021
|
+
.mcpHealthCompactBody {
|
|
4022
|
+
display: flex;
|
|
4023
|
+
flex: 1;
|
|
4024
|
+
flex-direction: column;
|
|
4025
|
+
gap: 2px;
|
|
4026
|
+
min-width: 0;
|
|
4027
|
+
}
|
|
4028
|
+
|
|
4029
|
+
.mcpHealthCompactBody strong {
|
|
4030
|
+
color: var(--text-primary);
|
|
4031
|
+
font-size: 12px;
|
|
4032
|
+
}
|
|
4033
|
+
|
|
4034
|
+
.mcpHealthCompactBody code {
|
|
4035
|
+
font-size: 11px;
|
|
4036
|
+
}
|
|
4037
|
+
|
|
4038
|
+
.mcpHealthCompactActions {
|
|
4039
|
+
display: flex;
|
|
4040
|
+
gap: 8px;
|
|
4041
|
+
margin-left: auto;
|
|
4042
|
+
}
|
|
4043
|
+
|
|
4044
|
+
.mcpHealthStableAction {
|
|
4045
|
+
justify-content: center;
|
|
4046
|
+
min-width: 108px;
|
|
4047
|
+
}
|
|
4048
|
+
|
|
4049
|
+
.mcpUpdateDialog {
|
|
4050
|
+
display: flex;
|
|
4051
|
+
flex-direction: column;
|
|
4052
|
+
gap: 16px;
|
|
4053
|
+
max-height: min(620px, calc(100vh - 180px));
|
|
4054
|
+
padding: 20px 24px 24px;
|
|
4055
|
+
overflow-y: auto;
|
|
4056
|
+
}
|
|
4057
|
+
|
|
4058
|
+
.mcpUpdateDialogIntro,
|
|
4059
|
+
.mcpUpdateRestartGuidance {
|
|
4060
|
+
margin: 0;
|
|
4061
|
+
color: var(--text-secondary);
|
|
4062
|
+
font-size: 13px;
|
|
4063
|
+
line-height: 1.5;
|
|
4064
|
+
}
|
|
4065
|
+
|
|
4066
|
+
.mcpUpdateVersionGrid {
|
|
4067
|
+
display: grid;
|
|
4068
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
4069
|
+
gap: 8px;
|
|
4070
|
+
margin: 0;
|
|
4071
|
+
}
|
|
4072
|
+
|
|
4073
|
+
.mcpUpdateVersionGrid > div {
|
|
4074
|
+
min-width: 0;
|
|
4075
|
+
padding: 10px;
|
|
4076
|
+
border: 1px solid var(--border-subtle);
|
|
4077
|
+
border-radius: var(--radius-md);
|
|
4078
|
+
background: var(--surface-raised);
|
|
4079
|
+
}
|
|
4080
|
+
|
|
4081
|
+
.mcpUpdateVersionGrid dt,
|
|
4082
|
+
.mcpUpdateDiagnostics dt {
|
|
4083
|
+
color: var(--text-muted);
|
|
4084
|
+
font-size: 10px;
|
|
4085
|
+
font-weight: 700;
|
|
4086
|
+
letter-spacing: 0.04em;
|
|
4087
|
+
text-transform: uppercase;
|
|
4088
|
+
}
|
|
4089
|
+
|
|
4090
|
+
.mcpUpdateVersionGrid dd,
|
|
4091
|
+
.mcpUpdateDiagnostics dd {
|
|
4092
|
+
margin: 3px 0 0;
|
|
4093
|
+
color: var(--text-primary);
|
|
4094
|
+
font-size: 12px;
|
|
4095
|
+
overflow-wrap: anywhere;
|
|
4096
|
+
}
|
|
4097
|
+
|
|
4098
|
+
.mcpUpdateLoading,
|
|
4099
|
+
.mcpUpdateNotice {
|
|
4100
|
+
display: flex;
|
|
4101
|
+
align-items: flex-start;
|
|
4102
|
+
gap: 8px;
|
|
4103
|
+
color: var(--text-secondary);
|
|
4104
|
+
font-size: 12px;
|
|
4105
|
+
}
|
|
4106
|
+
|
|
4107
|
+
.mcpUpdateNotice {
|
|
4108
|
+
padding: 9px 10px;
|
|
4109
|
+
border: 1px solid var(--border-subtle);
|
|
4110
|
+
border-radius: var(--radius-md);
|
|
4111
|
+
background: var(--surface-raised);
|
|
4112
|
+
}
|
|
4113
|
+
|
|
4114
|
+
.mcpUpdateCommands {
|
|
4115
|
+
display: flex;
|
|
4116
|
+
flex-direction: column;
|
|
4117
|
+
gap: 8px;
|
|
4118
|
+
}
|
|
4119
|
+
|
|
4120
|
+
.mcpUpdateSectionLabel {
|
|
4121
|
+
color: var(--text-primary);
|
|
4122
|
+
font-size: 12px;
|
|
4123
|
+
font-weight: 700;
|
|
4124
|
+
}
|
|
4125
|
+
|
|
4126
|
+
.mcpHealthCommandRow {
|
|
4127
|
+
display: flex;
|
|
4128
|
+
align-items: center;
|
|
4129
|
+
gap: 8px;
|
|
4130
|
+
max-width: 100%;
|
|
4131
|
+
flex-wrap: wrap;
|
|
4132
|
+
}
|
|
4133
|
+
|
|
4134
|
+
.mcpHealthCommand {
|
|
4135
|
+
max-width: 100%;
|
|
4136
|
+
padding: 6px 8px;
|
|
4137
|
+
overflow-wrap: anywhere;
|
|
4138
|
+
border: 1px solid var(--border-subtle);
|
|
4139
|
+
border-radius: 6px;
|
|
4140
|
+
background: var(--surface-raised);
|
|
4141
|
+
color: var(--text-primary);
|
|
4142
|
+
font-size: 11px;
|
|
4143
|
+
}
|
|
4144
|
+
|
|
4145
|
+
.mcpUpdateDiagnostics {
|
|
4146
|
+
border-top: 1px solid var(--border-subtle);
|
|
4147
|
+
padding-top: 12px;
|
|
4148
|
+
color: var(--text-secondary);
|
|
4149
|
+
font-size: 12px;
|
|
4150
|
+
}
|
|
4151
|
+
|
|
4152
|
+
.mcpUpdateDiagnostics summary {
|
|
4153
|
+
width: fit-content;
|
|
4154
|
+
cursor: pointer;
|
|
4155
|
+
color: var(--text-primary);
|
|
4156
|
+
font-weight: 600;
|
|
4157
|
+
}
|
|
4158
|
+
|
|
4159
|
+
.mcpUpdateDiagnostics dl {
|
|
4160
|
+
display: grid;
|
|
4161
|
+
gap: 10px;
|
|
4162
|
+
margin: 12px 0 0;
|
|
4163
|
+
}
|
|
4164
|
+
|
|
4165
|
+
.mcpUpdateDiagnostics dl > div {
|
|
4166
|
+
min-width: 0;
|
|
4167
|
+
}
|
|
4168
|
+
|
|
4169
|
+
.mcpUpdateDialogActions {
|
|
4170
|
+
display: flex;
|
|
4171
|
+
justify-content: flex-end;
|
|
4172
|
+
gap: 8px;
|
|
4173
|
+
}
|
|
4174
|
+
|
|
4175
|
+
.mcpHealthCopyError {
|
|
4176
|
+
display: flex;
|
|
4177
|
+
align-items: flex-start;
|
|
4178
|
+
gap: 8px;
|
|
4179
|
+
padding: 8px 10px;
|
|
4180
|
+
border: 1px solid color-mix(in srgb, var(--status-error) 30%, transparent);
|
|
4181
|
+
border-radius: var(--radius-md);
|
|
4182
|
+
background: var(--status-error-bg);
|
|
4183
|
+
color: var(--status-error-text);
|
|
4184
|
+
font-size: 12px;
|
|
4185
|
+
}
|
|
4186
|
+
|
|
4187
|
+
@media (max-width: 640px) {
|
|
4188
|
+
.mcpHealthCompactAlert,
|
|
4189
|
+
.mcpHealthUpdateRow,
|
|
4190
|
+
.mcpHealthBlockingAlert {
|
|
4191
|
+
align-items: stretch;
|
|
4192
|
+
flex-direction: column;
|
|
4193
|
+
}
|
|
4194
|
+
|
|
4195
|
+
.mcpHealthCompactActions {
|
|
4196
|
+
margin-left: 0;
|
|
4197
|
+
}
|
|
4198
|
+
|
|
4199
|
+
.mcpUpdateVersionGrid {
|
|
4200
|
+
grid-template-columns: 1fr;
|
|
4201
|
+
}
|
|
4202
|
+
|
|
4203
|
+
.mcpUpdateDialogActions {
|
|
4204
|
+
align-items: stretch;
|
|
4205
|
+
flex-direction: column-reverse;
|
|
4206
|
+
}
|
|
4207
|
+
}
|
|
4208
|
+
|
|
3988
4209
|
.settingLabelGroup {
|
|
3989
4210
|
display: flex;
|
|
3990
4211
|
flex-direction: column;
|
|
@@ -4128,7 +4349,7 @@
|
|
|
4128
4349
|
padding: 8px 16px 14px;
|
|
4129
4350
|
}
|
|
4130
4351
|
|
|
4131
|
-
.
|
|
4352
|
+
.settingsCodeBlock {
|
|
4132
4353
|
margin: 0;
|
|
4133
4354
|
background: #1e1e2e !important;
|
|
4134
4355
|
padding: 14px 16px !important;
|
|
@@ -4137,7 +4358,7 @@
|
|
|
4137
4358
|
border-radius: 0 !important;
|
|
4138
4359
|
}
|
|
4139
4360
|
|
|
4140
|
-
.
|
|
4361
|
+
.settingsCodeBlock code {
|
|
4141
4362
|
font-family: "JetBrains Mono", "Fira Code", monospace;
|
|
4142
4363
|
font-size: 13px;
|
|
4143
4364
|
line-height: 1.6;
|
|
@@ -4269,56 +4490,69 @@
|
|
|
4269
4490
|
}
|
|
4270
4491
|
|
|
4271
4492
|
.taskScopeToggle {
|
|
4493
|
+
display: inline-flex;
|
|
4494
|
+
align-items: center;
|
|
4272
4495
|
gap: 8px;
|
|
4496
|
+
min-height: 32px;
|
|
4497
|
+
padding-left: 12px;
|
|
4498
|
+
border-left: 1px solid var(--chrome-divider);
|
|
4273
4499
|
}
|
|
4274
4500
|
|
|
4275
|
-
.taskScopeToggle span {
|
|
4276
|
-
color: var(--text-label
|
|
4501
|
+
.taskScopeToggle > span {
|
|
4502
|
+
color: var(--text-label);
|
|
4277
4503
|
}
|
|
4278
4504
|
|
|
4279
4505
|
.taskScopeTabs {
|
|
4280
4506
|
display: inline-flex;
|
|
4281
4507
|
align-items: center;
|
|
4282
|
-
gap:
|
|
4283
|
-
flex-wrap: wrap;
|
|
4508
|
+
gap: 2px;
|
|
4284
4509
|
min-height: 32px;
|
|
4285
|
-
padding: 3px;
|
|
4286
|
-
border-radius: 11px;
|
|
4287
|
-
background: color-mix(in srgb, var(--surface-inset, rgba(15, 23, 42, 0.08)) 72%, transparent);
|
|
4288
|
-
border: 1px solid color-mix(in srgb, var(--border-default) 72%, transparent);
|
|
4289
4510
|
}
|
|
4290
4511
|
|
|
4291
4512
|
.taskScopeTab {
|
|
4292
4513
|
appearance: none;
|
|
4293
|
-
|
|
4514
|
+
position: relative;
|
|
4515
|
+
border: 0;
|
|
4294
4516
|
background: transparent;
|
|
4295
|
-
color: var(--text-
|
|
4296
|
-
min-height:
|
|
4297
|
-
padding: 0
|
|
4298
|
-
border-radius:
|
|
4517
|
+
color: var(--text-secondary);
|
|
4518
|
+
min-height: 32px;
|
|
4519
|
+
padding: 0 10px;
|
|
4520
|
+
border-radius: var(--radius-sm);
|
|
4299
4521
|
font-size: 11px;
|
|
4300
4522
|
font-weight: 600;
|
|
4301
4523
|
letter-spacing: 0.02em;
|
|
4302
4524
|
cursor: pointer;
|
|
4303
|
-
transition: background
|
|
4525
|
+
transition: background-color var(--transition-base), color var(--transition-base);
|
|
4526
|
+
}
|
|
4527
|
+
|
|
4528
|
+
.taskScopeTab::after {
|
|
4529
|
+
content: '';
|
|
4530
|
+
position: absolute;
|
|
4531
|
+
right: 8px;
|
|
4532
|
+
bottom: 0;
|
|
4533
|
+
left: 8px;
|
|
4534
|
+
height: 2px;
|
|
4535
|
+
border-radius: var(--radius-full);
|
|
4536
|
+
background: transparent;
|
|
4537
|
+
transition: background-color var(--transition-base);
|
|
4304
4538
|
}
|
|
4305
4539
|
|
|
4306
4540
|
.taskScopeTab:hover {
|
|
4307
|
-
color: var(--text-
|
|
4308
|
-
background:
|
|
4309
|
-
|
|
4541
|
+
color: var(--text-primary);
|
|
4542
|
+
background: var(--surface-hover);
|
|
4543
|
+
}
|
|
4544
|
+
|
|
4545
|
+
.taskScopeTab:focus-visible {
|
|
4546
|
+
outline: 2px solid var(--brand-primary-border);
|
|
4547
|
+
outline-offset: -2px;
|
|
4310
4548
|
}
|
|
4311
4549
|
|
|
4312
4550
|
.taskScopeTabActive {
|
|
4313
|
-
|
|
4314
|
-
border-color: color-mix(in srgb, var(--brand-primary-border) 78%, transparent);
|
|
4315
|
-
color: color-mix(in srgb, var(--brand-primary-strong) 72%, var(--text-title) 28%);
|
|
4551
|
+
color: var(--text-primary);
|
|
4316
4552
|
}
|
|
4317
4553
|
|
|
4318
|
-
.taskScopeTabActive
|
|
4319
|
-
|
|
4320
|
-
background: color-mix(in srgb, var(--brand-primary-soft) 96%, var(--surface-elevated) 4%);
|
|
4321
|
-
border-color: color-mix(in srgb, var(--brand-primary-border) 84%, transparent);
|
|
4554
|
+
.taskScopeTabActive::after {
|
|
4555
|
+
background: var(--brand-primary);
|
|
4322
4556
|
}
|
|
4323
4557
|
|
|
4324
4558
|
.taskToolbarAction {
|
|
@@ -4925,133 +5159,1368 @@
|
|
|
4925
5159
|
animation: docSpin 1s linear infinite;
|
|
4926
5160
|
}
|
|
4927
5161
|
|
|
4928
|
-
@keyframes docSpin {
|
|
4929
|
-
to {
|
|
4930
|
-
transform: rotate(360deg);
|
|
4931
|
-
}
|
|
5162
|
+
@keyframes docSpin {
|
|
5163
|
+
to {
|
|
5164
|
+
transform: rotate(360deg);
|
|
5165
|
+
}
|
|
5166
|
+
}
|
|
5167
|
+
|
|
5168
|
+
/* Right panel */
|
|
5169
|
+
.docViewerPanel {
|
|
5170
|
+
flex: 1;
|
|
5171
|
+
min-width: 0;
|
|
5172
|
+
display: flex;
|
|
5173
|
+
flex-direction: column;
|
|
5174
|
+
overflow: hidden;
|
|
5175
|
+
}
|
|
5176
|
+
|
|
5177
|
+
.docViewerEmpty {
|
|
5178
|
+
flex: 1;
|
|
5179
|
+
display: flex;
|
|
5180
|
+
align-items: center;
|
|
5181
|
+
justify-content: center;
|
|
5182
|
+
color: var(--text-muted);
|
|
5183
|
+
font-size: 13px;
|
|
5184
|
+
}
|
|
5185
|
+
|
|
5186
|
+
/* Markdown prose */
|
|
5187
|
+
/* =============================
|
|
5188
|
+
Document Editor (Phase 2)
|
|
5189
|
+
============================= */
|
|
5190
|
+
|
|
5191
|
+
/* AI Profiles Management */
|
|
5192
|
+
.agentsModuleRoot {
|
|
5193
|
+
--agent-tray-width: min(760px, calc(100vw - 96px));
|
|
5194
|
+
position: relative;
|
|
5195
|
+
display: flex;
|
|
5196
|
+
flex: 1;
|
|
5197
|
+
min-width: 0;
|
|
5198
|
+
min-height: 0;
|
|
5199
|
+
width: 100%;
|
|
5200
|
+
box-sizing: border-box;
|
|
5201
|
+
overflow: hidden;
|
|
5202
|
+
}
|
|
5203
|
+
|
|
5204
|
+
.agentsModuleWithTray {
|
|
5205
|
+
transition: padding-left 220ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
5206
|
+
}
|
|
5207
|
+
|
|
5208
|
+
.agentsModuleTrayOpen {
|
|
5209
|
+
padding-left: calc(var(--agent-tray-width) + 20px);
|
|
5210
|
+
}
|
|
5211
|
+
|
|
5212
|
+
.agentTrayPanel {
|
|
5213
|
+
position: absolute;
|
|
5214
|
+
top: 0;
|
|
5215
|
+
bottom: 0;
|
|
5216
|
+
left: 0;
|
|
5217
|
+
width: var(--agent-tray-width);
|
|
5218
|
+
min-width: min(360px, calc(100vw - 96px));
|
|
5219
|
+
max-width: 760px;
|
|
5220
|
+
display: flex;
|
|
5221
|
+
flex-direction: column;
|
|
5222
|
+
box-sizing: border-box;
|
|
5223
|
+
border-right: 1px solid var(--border-primary);
|
|
5224
|
+
background: var(--bg-secondary);
|
|
5225
|
+
overflow: hidden;
|
|
5226
|
+
transform: translateX(-100%);
|
|
5227
|
+
opacity: 0;
|
|
5228
|
+
visibility: hidden;
|
|
5229
|
+
pointer-events: none;
|
|
5230
|
+
z-index: 34;
|
|
5231
|
+
box-shadow: 4px 0 18px rgba(8, 10, 24, 0.16);
|
|
5232
|
+
transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), opacity 160ms ease, visibility 0s linear 220ms;
|
|
5233
|
+
}
|
|
5234
|
+
|
|
5235
|
+
.agentTrayPanelOpen {
|
|
5236
|
+
transform: translateX(0);
|
|
5237
|
+
opacity: 1;
|
|
5238
|
+
visibility: visible;
|
|
5239
|
+
pointer-events: auto;
|
|
5240
|
+
transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), opacity 160ms ease, visibility 0s linear 0s;
|
|
5241
|
+
}
|
|
5242
|
+
|
|
5243
|
+
.agentTrayHeader {
|
|
5244
|
+
position: sticky;
|
|
5245
|
+
top: 0;
|
|
5246
|
+
z-index: 12;
|
|
5247
|
+
display: flex;
|
|
5248
|
+
align-items: center;
|
|
5249
|
+
justify-content: space-between;
|
|
5250
|
+
gap: 0.75rem;
|
|
5251
|
+
padding: 12px 12px 10px;
|
|
5252
|
+
border-bottom: 1px solid var(--border-default);
|
|
5253
|
+
background: var(--bg-secondary);
|
|
5254
|
+
box-shadow: 0 10px 16px color-mix(in srgb, var(--bg-secondary) 90%, transparent);
|
|
5255
|
+
flex-shrink: 0;
|
|
5256
|
+
}
|
|
5257
|
+
|
|
5258
|
+
.agentTrayTitle {
|
|
5259
|
+
flex: 1;
|
|
5260
|
+
display: flex;
|
|
5261
|
+
align-items: center;
|
|
5262
|
+
gap: 6px;
|
|
5263
|
+
font-size: 0.78rem;
|
|
5264
|
+
font-weight: 700;
|
|
5265
|
+
letter-spacing: 0.06em;
|
|
5266
|
+
text-transform: uppercase;
|
|
5267
|
+
color: var(--text-secondary);
|
|
5268
|
+
}
|
|
5269
|
+
|
|
5270
|
+
.agentTrayContent {
|
|
5271
|
+
flex: 1;
|
|
5272
|
+
min-height: 0;
|
|
5273
|
+
padding: 12px 0 16px;
|
|
5274
|
+
overflow-y: auto;
|
|
5275
|
+
overflow-x: hidden;
|
|
5276
|
+
}
|
|
5277
|
+
|
|
5278
|
+
.agentTrayContentInner {
|
|
5279
|
+
padding: 0 12px;
|
|
5280
|
+
}
|
|
5281
|
+
|
|
5282
|
+
.agentsModuleContent {
|
|
5283
|
+
display: flex;
|
|
5284
|
+
flex: 1;
|
|
5285
|
+
width: 100%;
|
|
5286
|
+
min-height: 0;
|
|
5287
|
+
overflow: hidden;
|
|
5288
|
+
}
|
|
5289
|
+
|
|
5290
|
+
.taskforceAgentsModuleRoot {
|
|
5291
|
+
--doc-tray-width: min(332px, calc(100vw - 96px));
|
|
5292
|
+
position: relative;
|
|
5293
|
+
display: flex;
|
|
5294
|
+
flex: 1;
|
|
5295
|
+
min-width: 0;
|
|
5296
|
+
min-height: 0;
|
|
5297
|
+
width: 100%;
|
|
5298
|
+
overflow: hidden;
|
|
5299
|
+
}
|
|
5300
|
+
|
|
5301
|
+
.taskforceAgentsModuleMain {
|
|
5302
|
+
flex: 1;
|
|
5303
|
+
min-width: 0;
|
|
5304
|
+
min-height: 0;
|
|
5305
|
+
overflow: auto;
|
|
5306
|
+
transition: margin-left 220ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
5307
|
+
}
|
|
5308
|
+
|
|
5309
|
+
.taskforceAgentsModuleTrayOpen .taskforceAgentsModuleMain {
|
|
5310
|
+
margin-left: var(--doc-tray-width);
|
|
5311
|
+
}
|
|
5312
|
+
|
|
5313
|
+
.taskforceAgentRosterHeader {
|
|
5314
|
+
display: flex;
|
|
5315
|
+
align-items: center;
|
|
5316
|
+
justify-content: space-between;
|
|
5317
|
+
gap: 8px;
|
|
5318
|
+
min-height: 56px;
|
|
5319
|
+
padding: 12px 0 10px;
|
|
5320
|
+
box-sizing: border-box;
|
|
5321
|
+
border-bottom: 1px solid var(--border-primary);
|
|
5322
|
+
background: var(--bg-secondary);
|
|
5323
|
+
flex-shrink: 0;
|
|
5324
|
+
}
|
|
5325
|
+
|
|
5326
|
+
.taskforceAgentRosterTitle {
|
|
5327
|
+
flex: 1;
|
|
5328
|
+
display: inline-flex;
|
|
5329
|
+
align-items: center;
|
|
5330
|
+
gap: 6px;
|
|
5331
|
+
color: var(--text-secondary);
|
|
5332
|
+
font-size: 0.72rem;
|
|
5333
|
+
font-weight: 700;
|
|
5334
|
+
letter-spacing: 0.06em;
|
|
5335
|
+
text-transform: uppercase;
|
|
5336
|
+
}
|
|
5337
|
+
|
|
5338
|
+
.taskforceAgentRosterContent {
|
|
5339
|
+
flex: 1;
|
|
5340
|
+
min-height: 0;
|
|
5341
|
+
padding: 12px 0 16px;
|
|
5342
|
+
overflow-y: auto;
|
|
5343
|
+
overflow-x: hidden;
|
|
5344
|
+
}
|
|
5345
|
+
|
|
5346
|
+
.taskforceAgentLibraryPortal {
|
|
5347
|
+
width: 100%;
|
|
5348
|
+
min-height: 0;
|
|
5349
|
+
height: 100%;
|
|
5350
|
+
}
|
|
5351
|
+
|
|
5352
|
+
.taskforceAgentBuilderNavigation {
|
|
5353
|
+
display: flex;
|
|
5354
|
+
position: relative;
|
|
5355
|
+
align-items: flex-end;
|
|
5356
|
+
align-self: stretch;
|
|
5357
|
+
gap: 12px;
|
|
5358
|
+
min-height: 42px;
|
|
5359
|
+
padding: 0 4px;
|
|
5360
|
+
margin-bottom: -2rem;
|
|
5361
|
+
}
|
|
5362
|
+
|
|
5363
|
+
.taskforceAgentBuilderNavigation::after {
|
|
5364
|
+
content: '';
|
|
5365
|
+
position: absolute;
|
|
5366
|
+
z-index: 0;
|
|
5367
|
+
right: 4px;
|
|
5368
|
+
bottom: 0;
|
|
5369
|
+
left: 4px;
|
|
5370
|
+
height: 1px;
|
|
5371
|
+
background: var(--border-default);
|
|
5372
|
+
pointer-events: none;
|
|
5373
|
+
}
|
|
5374
|
+
|
|
5375
|
+
.taskforceAgentBuilderTabs {
|
|
5376
|
+
display: flex;
|
|
5377
|
+
position: relative;
|
|
5378
|
+
z-index: 1;
|
|
5379
|
+
flex: 1 1 auto;
|
|
5380
|
+
align-items: flex-end;
|
|
5381
|
+
min-width: 0;
|
|
5382
|
+
gap: 4px;
|
|
5383
|
+
overflow-x: auto;
|
|
5384
|
+
overflow-y: hidden;
|
|
5385
|
+
scrollbar-width: none;
|
|
5386
|
+
}
|
|
5387
|
+
|
|
5388
|
+
.taskforceAgentBuilderTabs::-webkit-scrollbar {
|
|
5389
|
+
display: none;
|
|
5390
|
+
}
|
|
5391
|
+
|
|
5392
|
+
.taskforceAgentBuilderCreateBtn {
|
|
5393
|
+
position: relative;
|
|
5394
|
+
z-index: 1;
|
|
5395
|
+
flex: 0 0 auto;
|
|
5396
|
+
margin: 0 0 5px auto;
|
|
5397
|
+
}
|
|
5398
|
+
|
|
5399
|
+
.taskforceAgentBuilderTab {
|
|
5400
|
+
appearance: none;
|
|
5401
|
+
position: relative;
|
|
5402
|
+
min-width: 88px;
|
|
5403
|
+
min-height: 38px;
|
|
5404
|
+
padding: 0 18px;
|
|
5405
|
+
border: 1px solid transparent;
|
|
5406
|
+
border-bottom: 0;
|
|
5407
|
+
border-radius: var(--radius-md) var(--radius-md) 0 0;
|
|
5408
|
+
background: transparent;
|
|
5409
|
+
color: var(--text-helper);
|
|
5410
|
+
font: inherit;
|
|
5411
|
+
font-size: 0.75rem;
|
|
5412
|
+
font-weight: 600;
|
|
5413
|
+
letter-spacing: 0.02em;
|
|
5414
|
+
cursor: pointer;
|
|
5415
|
+
transition:
|
|
5416
|
+
background-color var(--transition-base),
|
|
5417
|
+
border-color var(--transition-base),
|
|
5418
|
+
color var(--transition-base);
|
|
5419
|
+
}
|
|
5420
|
+
|
|
5421
|
+
.taskforceAgentBuilderTab:hover:not([aria-selected="true"]) {
|
|
5422
|
+
background: var(--surface-inset);
|
|
5423
|
+
border-color: color-mix(in srgb, var(--border-default) 72%, transparent);
|
|
5424
|
+
color: var(--text-secondary);
|
|
5425
|
+
}
|
|
5426
|
+
|
|
5427
|
+
.taskforceAgentBuilderTab:focus-visible {
|
|
5428
|
+
z-index: 2;
|
|
5429
|
+
outline: 2px solid var(--brand-primary);
|
|
5430
|
+
outline-offset: -3px;
|
|
5431
|
+
}
|
|
5432
|
+
|
|
5433
|
+
.taskforceAgentBuilderTabActive {
|
|
5434
|
+
z-index: 1;
|
|
5435
|
+
margin-bottom: -1px;
|
|
5436
|
+
background: var(--surface-panel);
|
|
5437
|
+
border-color: var(--border-default);
|
|
5438
|
+
color: var(--brand-primary-strong);
|
|
5439
|
+
}
|
|
5440
|
+
|
|
5441
|
+
.taskforceAgentBuilderTabActive::after {
|
|
5442
|
+
content: '';
|
|
5443
|
+
position: absolute;
|
|
5444
|
+
right: 0;
|
|
5445
|
+
bottom: -1px;
|
|
5446
|
+
left: 0;
|
|
5447
|
+
height: 2px;
|
|
5448
|
+
background: var(--surface-panel);
|
|
5449
|
+
}
|
|
5450
|
+
|
|
5451
|
+
.taskforceAgentBuilderPanel {
|
|
5452
|
+
padding-top: 1.5rem;
|
|
5453
|
+
}
|
|
5454
|
+
|
|
5455
|
+
.taskforceAgentBuilderPanel[hidden] {
|
|
5456
|
+
display: none;
|
|
5457
|
+
}
|
|
5458
|
+
|
|
5459
|
+
.taskforceAgentBuilderEmpty {
|
|
5460
|
+
min-height: min(420px, 58vh);
|
|
5461
|
+
display: flex;
|
|
5462
|
+
flex-direction: column;
|
|
5463
|
+
align-items: center;
|
|
5464
|
+
justify-content: center;
|
|
5465
|
+
gap: 10px;
|
|
5466
|
+
}
|
|
5467
|
+
|
|
5468
|
+
.taskforceAgentBuilderEmptyIcon {
|
|
5469
|
+
width: 44px;
|
|
5470
|
+
height: 44px;
|
|
5471
|
+
display: inline-flex;
|
|
5472
|
+
align-items: center;
|
|
5473
|
+
justify-content: center;
|
|
5474
|
+
border: 1px solid var(--border-default);
|
|
5475
|
+
border-radius: var(--radius-md);
|
|
5476
|
+
background: var(--surface-inset);
|
|
5477
|
+
color: var(--text-helper);
|
|
5478
|
+
}
|
|
5479
|
+
|
|
5480
|
+
.taskforceAgentTestGrid {
|
|
5481
|
+
display: grid;
|
|
5482
|
+
grid-template-columns: minmax(320px, 0.92fr) minmax(280px, 0.72fr);
|
|
5483
|
+
gap: 16px;
|
|
5484
|
+
align-items: start;
|
|
5485
|
+
}
|
|
5486
|
+
|
|
5487
|
+
.taskforceAgentContextBanner {
|
|
5488
|
+
display: grid;
|
|
5489
|
+
grid-template-columns: minmax(0, 1fr) auto;
|
|
5490
|
+
align-items: center;
|
|
5491
|
+
gap: 10px;
|
|
5492
|
+
margin-top: 14px;
|
|
5493
|
+
padding: 10px 12px;
|
|
5494
|
+
border: 1px solid color-mix(in srgb, var(--accent-primary) 28%, var(--border-primary));
|
|
5495
|
+
border-radius: var(--radius-md, 8px);
|
|
5496
|
+
background: color-mix(in srgb, var(--accent-primary) 8%, var(--bg-secondary));
|
|
5497
|
+
}
|
|
5498
|
+
|
|
5499
|
+
.taskforceAgentContextBanner div {
|
|
5500
|
+
display: flex;
|
|
5501
|
+
flex-direction: column;
|
|
5502
|
+
gap: 3px;
|
|
5503
|
+
min-width: 0;
|
|
5504
|
+
}
|
|
5505
|
+
|
|
5506
|
+
.taskforceAgentContextActions.taskforceAgentContextActions {
|
|
5507
|
+
flex-direction: row;
|
|
5508
|
+
align-items: center;
|
|
5509
|
+
gap: 6px;
|
|
5510
|
+
}
|
|
5511
|
+
|
|
5512
|
+
.taskforceAgentContextBanner span {
|
|
5513
|
+
color: var(--text-helper);
|
|
5514
|
+
font-size: 10px;
|
|
5515
|
+
font-weight: 700;
|
|
5516
|
+
letter-spacing: 0.05em;
|
|
5517
|
+
text-transform: uppercase;
|
|
5518
|
+
}
|
|
5519
|
+
|
|
5520
|
+
.taskforceAgentContextBanner strong {
|
|
5521
|
+
min-width: 0;
|
|
5522
|
+
overflow: hidden;
|
|
5523
|
+
text-overflow: ellipsis;
|
|
5524
|
+
white-space: nowrap;
|
|
5525
|
+
color: var(--text-primary);
|
|
5526
|
+
font-size: 13px;
|
|
5527
|
+
font-weight: 650;
|
|
5528
|
+
}
|
|
5529
|
+
|
|
5530
|
+
.taskforceAssistantWorkspace {
|
|
5531
|
+
--taskforce-agent-assistant-width: clamp(380px, 28vw, 500px);
|
|
5532
|
+
position: relative;
|
|
5533
|
+
display: flex;
|
|
5534
|
+
flex: 1;
|
|
5535
|
+
min-height: 0;
|
|
5536
|
+
min-width: 0;
|
|
5537
|
+
overflow: hidden;
|
|
5538
|
+
}
|
|
5539
|
+
|
|
5540
|
+
.taskforceAssistantWorkspaceContent {
|
|
5541
|
+
display: flex;
|
|
5542
|
+
flex: 1;
|
|
5543
|
+
min-width: 0;
|
|
5544
|
+
min-height: 0;
|
|
5545
|
+
padding-right: 0;
|
|
5546
|
+
transition: padding-right var(--transition-base);
|
|
5547
|
+
}
|
|
5548
|
+
|
|
5549
|
+
.taskforceAssistantWorkspaceOpen .taskforceAssistantWorkspaceContent {
|
|
5550
|
+
padding-right: var(--taskforce-agent-assistant-width);
|
|
5551
|
+
}
|
|
5552
|
+
|
|
5553
|
+
.taskforceAssistantWorkspaceCollapsed {
|
|
5554
|
+
--taskforce-agent-assistant-width: 56px;
|
|
5555
|
+
}
|
|
5556
|
+
|
|
5557
|
+
.taskforceModalWithAssistantPanel.taskforceModalWithAssistantPanel {
|
|
5558
|
+
--taskforce-agent-assistant-width: clamp(380px, 28vw, 500px);
|
|
5559
|
+
padding-right: calc(var(--taskforce-agent-assistant-width) + 24px);
|
|
5560
|
+
}
|
|
5561
|
+
|
|
5562
|
+
.taskforceModalWithAssistantPanelCollapsed.taskforceModalWithAssistantPanelCollapsed {
|
|
5563
|
+
--taskforce-agent-assistant-width: 56px;
|
|
5564
|
+
}
|
|
5565
|
+
|
|
5566
|
+
.taskforceTaskModalOverlay.taskforceTaskModalOverlay {
|
|
5567
|
+
background: transparent;
|
|
5568
|
+
backdrop-filter: none;
|
|
5569
|
+
}
|
|
5570
|
+
|
|
5571
|
+
.taskforceTaskModalOverlay::before {
|
|
5572
|
+
content: "";
|
|
5573
|
+
position: fixed;
|
|
5574
|
+
top: var(--taskforce-task-modal-backdrop-top, 72px);
|
|
5575
|
+
right: 0;
|
|
5576
|
+
bottom: 0;
|
|
5577
|
+
left: var(--taskforce-task-modal-backdrop-left, 0);
|
|
5578
|
+
background: rgba(7, 10, 24, 0.64);
|
|
5579
|
+
backdrop-filter: blur(10px);
|
|
5580
|
+
}
|
|
5581
|
+
|
|
5582
|
+
.taskforceTaskModalOverlay :global(.tf-modal-shell) {
|
|
5583
|
+
position: relative;
|
|
5584
|
+
z-index: 1;
|
|
5585
|
+
}
|
|
5586
|
+
|
|
5587
|
+
.taskforceAgentDrawerOverlay {
|
|
5588
|
+
--taskforce-agent-assistant-width: clamp(380px, 28vw, 500px);
|
|
5589
|
+
position: fixed;
|
|
5590
|
+
right: 0;
|
|
5591
|
+
bottom: 0;
|
|
5592
|
+
z-index: 1160;
|
|
5593
|
+
width: var(--taskforce-agent-assistant-width, min(500px, calc(100vw - 56px)));
|
|
5594
|
+
pointer-events: none;
|
|
5595
|
+
}
|
|
5596
|
+
|
|
5597
|
+
.taskforceAgentDrawerOverlayCollapsed {
|
|
5598
|
+
--taskforce-agent-assistant-width: 56px;
|
|
5599
|
+
}
|
|
5600
|
+
|
|
5601
|
+
.taskforceAgentDrawerPanel {
|
|
5602
|
+
width: 100%;
|
|
5603
|
+
height: 100%;
|
|
5604
|
+
display: flex;
|
|
5605
|
+
flex-direction: column;
|
|
5606
|
+
min-height: 0;
|
|
5607
|
+
border-left: 1px solid var(--border-primary);
|
|
5608
|
+
background: color-mix(in srgb, var(--surface-modal) 94%, var(--surface-page));
|
|
5609
|
+
box-shadow: -18px 0 34px rgba(0, 0, 0, 0.22);
|
|
5610
|
+
pointer-events: auto;
|
|
5611
|
+
}
|
|
5612
|
+
|
|
5613
|
+
.taskforceAgentDrawerHeader {
|
|
5614
|
+
display: grid;
|
|
5615
|
+
grid-template-columns: minmax(0, 1fr) auto;
|
|
5616
|
+
align-items: center;
|
|
5617
|
+
gap: 12px;
|
|
5618
|
+
padding: 14px 16px;
|
|
5619
|
+
border-bottom: 1px solid var(--border-primary);
|
|
5620
|
+
background: color-mix(in srgb, var(--bg-secondary) 80%, transparent);
|
|
5621
|
+
}
|
|
5622
|
+
|
|
5623
|
+
.taskforceAgentDrawerAgentHeader,
|
|
5624
|
+
.taskforceAgentDrawerHeaderFallback {
|
|
5625
|
+
display: grid;
|
|
5626
|
+
grid-template-columns: 36px minmax(0, 1fr);
|
|
5627
|
+
align-items: center;
|
|
5628
|
+
gap: 10px;
|
|
5629
|
+
min-width: 0;
|
|
5630
|
+
}
|
|
5631
|
+
|
|
5632
|
+
.taskforceAgentDrawerAgentAvatar,
|
|
5633
|
+
.taskforceAgentDrawerFallbackAvatar {
|
|
5634
|
+
position: relative;
|
|
5635
|
+
width: 36px;
|
|
5636
|
+
height: 36px;
|
|
5637
|
+
border-radius: 50%;
|
|
5638
|
+
display: inline-flex;
|
|
5639
|
+
align-items: center;
|
|
5640
|
+
justify-content: center;
|
|
5641
|
+
overflow: hidden;
|
|
5642
|
+
flex: 0 0 auto;
|
|
5643
|
+
color: var(--text-secondary);
|
|
5644
|
+
background: var(--agent-avatar-bg);
|
|
5645
|
+
border: 1px solid var(--agent-avatar-border);
|
|
5646
|
+
}
|
|
5647
|
+
|
|
5648
|
+
.taskforceAgentDrawerAgentAvatar img {
|
|
5649
|
+
width: 100%;
|
|
5650
|
+
height: 100%;
|
|
5651
|
+
object-fit: cover;
|
|
5652
|
+
display: block;
|
|
5653
|
+
}
|
|
5654
|
+
|
|
5655
|
+
.taskforceAgentDrawerAgentAvatarButton {
|
|
5656
|
+
padding: 0;
|
|
5657
|
+
cursor: pointer;
|
|
5658
|
+
transition:
|
|
5659
|
+
border-color var(--transition-base),
|
|
5660
|
+
box-shadow var(--transition-base),
|
|
5661
|
+
transform var(--transition-base);
|
|
5662
|
+
}
|
|
5663
|
+
|
|
5664
|
+
.taskforceAgentDrawerAgentAvatarButton:hover:not(:disabled) {
|
|
5665
|
+
border-color: var(--accent-primary);
|
|
5666
|
+
box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-primary) 16%, transparent);
|
|
5667
|
+
}
|
|
5668
|
+
|
|
5669
|
+
.taskforceAgentDrawerAgentAvatarButton:focus-visible {
|
|
5670
|
+
outline: 2px solid var(--accent-primary);
|
|
5671
|
+
outline-offset: 2px;
|
|
5672
|
+
}
|
|
5673
|
+
|
|
5674
|
+
.taskforceAgentDrawerAgentAvatarButton:disabled {
|
|
5675
|
+
cursor: default;
|
|
5676
|
+
opacity: 0.7;
|
|
5677
|
+
}
|
|
5678
|
+
|
|
5679
|
+
.taskforceAgentDrawerAgentPicker {
|
|
5680
|
+
display: flex;
|
|
5681
|
+
flex-direction: column;
|
|
5682
|
+
gap: 3px;
|
|
5683
|
+
min-width: 0;
|
|
5684
|
+
}
|
|
5685
|
+
|
|
5686
|
+
.taskforceAgentDrawerAgentPicker select {
|
|
5687
|
+
height: 32px;
|
|
5688
|
+
min-height: 32px;
|
|
5689
|
+
padding-block: 4px;
|
|
5690
|
+
font-weight: 650;
|
|
5691
|
+
}
|
|
5692
|
+
|
|
5693
|
+
.taskforceAgentDrawerHeaderFallback strong {
|
|
5694
|
+
color: var(--text-primary);
|
|
5695
|
+
font-size: 14px;
|
|
5696
|
+
line-height: 1.25;
|
|
5697
|
+
}
|
|
5698
|
+
|
|
5699
|
+
.taskforceAgentDrawerHeaderActions {
|
|
5700
|
+
display: inline-flex;
|
|
5701
|
+
align-items: center;
|
|
5702
|
+
gap: 8px;
|
|
5703
|
+
}
|
|
5704
|
+
|
|
5705
|
+
.taskforceAgentDrawerLoading {
|
|
5706
|
+
flex: 1;
|
|
5707
|
+
display: flex;
|
|
5708
|
+
align-items: center;
|
|
5709
|
+
justify-content: center;
|
|
5710
|
+
color: var(--text-secondary);
|
|
5711
|
+
}
|
|
5712
|
+
|
|
5713
|
+
.taskforceAgentDrawerSurface {
|
|
5714
|
+
flex: 1;
|
|
5715
|
+
min-height: 0;
|
|
5716
|
+
display: flex;
|
|
5717
|
+
flex-direction: column;
|
|
5718
|
+
gap: 12px;
|
|
5719
|
+
padding: 14px;
|
|
5720
|
+
overflow: auto;
|
|
5721
|
+
}
|
|
5722
|
+
|
|
5723
|
+
.taskforceAgentDrawerControls {
|
|
5724
|
+
display: flex;
|
|
5725
|
+
flex-direction: column;
|
|
5726
|
+
gap: 10px;
|
|
5727
|
+
min-width: 0;
|
|
5728
|
+
}
|
|
5729
|
+
|
|
5730
|
+
.taskforceAgentProfileTray {
|
|
5731
|
+
display: flex;
|
|
5732
|
+
flex-direction: column;
|
|
5733
|
+
gap: 12px;
|
|
5734
|
+
min-width: 0;
|
|
5735
|
+
padding: 12px;
|
|
5736
|
+
border: 1px solid var(--border-primary);
|
|
5737
|
+
border-radius: var(--radius-md, 8px);
|
|
5738
|
+
background: color-mix(in srgb, var(--bg-secondary) 84%, transparent);
|
|
5739
|
+
animation: taskforceAgentProfileTrayIn 0.16s ease-out;
|
|
5740
|
+
}
|
|
5741
|
+
|
|
5742
|
+
.taskforceAgentProfileTrayHeader {
|
|
5743
|
+
display: grid;
|
|
5744
|
+
grid-template-columns: 64px minmax(0, 1fr) auto;
|
|
5745
|
+
align-items: start;
|
|
5746
|
+
gap: 12px;
|
|
5747
|
+
min-width: 0;
|
|
5748
|
+
}
|
|
5749
|
+
|
|
5750
|
+
.taskforceAgentProfileTrayIdentity {
|
|
5751
|
+
display: flex;
|
|
5752
|
+
min-width: 0;
|
|
5753
|
+
flex-direction: column;
|
|
5754
|
+
gap: 2px;
|
|
5755
|
+
}
|
|
5756
|
+
|
|
5757
|
+
.taskforceAgentProfileTrayIdentity span,
|
|
5758
|
+
.taskforceAgentProfileTrayDetails dt {
|
|
5759
|
+
color: var(--text-helper);
|
|
5760
|
+
font-size: 10px;
|
|
5761
|
+
font-weight: 700;
|
|
5762
|
+
letter-spacing: 0.05em;
|
|
5763
|
+
text-transform: uppercase;
|
|
5764
|
+
}
|
|
5765
|
+
|
|
5766
|
+
.taskforceAgentProfileTrayIdentity strong,
|
|
5767
|
+
.taskforceAgentProfileTrayIdentity small {
|
|
5768
|
+
min-width: 0;
|
|
5769
|
+
overflow: hidden;
|
|
5770
|
+
text-overflow: ellipsis;
|
|
5771
|
+
white-space: nowrap;
|
|
5772
|
+
}
|
|
5773
|
+
|
|
5774
|
+
.taskforceAgentProfileTrayIdentity strong {
|
|
5775
|
+
color: var(--text-primary);
|
|
5776
|
+
font-size: 14px;
|
|
5777
|
+
font-weight: 700;
|
|
5778
|
+
}
|
|
5779
|
+
|
|
5780
|
+
.taskforceAgentProfileTrayIdentity small {
|
|
5781
|
+
color: var(--text-secondary);
|
|
5782
|
+
font-size: 12px;
|
|
5783
|
+
line-height: 1.25;
|
|
5784
|
+
}
|
|
5785
|
+
|
|
5786
|
+
.taskforceAgentProfileTrayDetails {
|
|
5787
|
+
display: grid;
|
|
5788
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
5789
|
+
gap: 10px 12px;
|
|
5790
|
+
margin: 0;
|
|
5791
|
+
}
|
|
5792
|
+
|
|
5793
|
+
.taskforceAgentProfileTrayDetails div {
|
|
5794
|
+
min-width: 0;
|
|
5795
|
+
}
|
|
5796
|
+
|
|
5797
|
+
.taskforceAgentProfileTrayDetails dt {
|
|
5798
|
+
margin: 0 0 3px;
|
|
5799
|
+
}
|
|
5800
|
+
|
|
5801
|
+
.taskforceAgentProfileTrayDetails dd {
|
|
5802
|
+
min-width: 0;
|
|
5803
|
+
margin: 0;
|
|
5804
|
+
overflow: hidden;
|
|
5805
|
+
color: var(--text-primary);
|
|
5806
|
+
font-size: 12px;
|
|
5807
|
+
font-weight: 650;
|
|
5808
|
+
line-height: 1.3;
|
|
5809
|
+
text-overflow: ellipsis;
|
|
5810
|
+
white-space: nowrap;
|
|
5811
|
+
}
|
|
5812
|
+
|
|
5813
|
+
@keyframes taskforceAgentProfileTrayIn {
|
|
5814
|
+
from {
|
|
5815
|
+
opacity: 0;
|
|
5816
|
+
transform: translateY(-6px);
|
|
5817
|
+
}
|
|
5818
|
+
to {
|
|
5819
|
+
opacity: 1;
|
|
5820
|
+
transform: translateY(0);
|
|
5821
|
+
}
|
|
5822
|
+
}
|
|
5823
|
+
|
|
5824
|
+
.taskforceAgentDrawerChatControls {
|
|
5825
|
+
display: grid;
|
|
5826
|
+
grid-template-columns: minmax(0, 1fr) 2.125rem 2.125rem;
|
|
5827
|
+
align-items: center;
|
|
5828
|
+
gap: 8px;
|
|
5829
|
+
min-width: 0;
|
|
5830
|
+
}
|
|
5831
|
+
|
|
5832
|
+
.taskforceAgentConversationRename {
|
|
5833
|
+
display: grid;
|
|
5834
|
+
grid-template-columns: minmax(0, 1fr) 2.125rem 2.125rem;
|
|
5835
|
+
align-items: center;
|
|
5836
|
+
gap: 8px;
|
|
5837
|
+
min-width: 0;
|
|
5838
|
+
}
|
|
5839
|
+
|
|
5840
|
+
.taskforceAgentConversationRename .input {
|
|
5841
|
+
min-width: 0;
|
|
5842
|
+
}
|
|
5843
|
+
|
|
5844
|
+
.taskforceAgentConversationRenameError {
|
|
5845
|
+
grid-column: 1 / -1;
|
|
5846
|
+
color: var(--status-error);
|
|
5847
|
+
font-size: 11px;
|
|
5848
|
+
line-height: 1.35;
|
|
5849
|
+
}
|
|
5850
|
+
|
|
5851
|
+
.taskforceAgentDrawerConversationList {
|
|
5852
|
+
flex: 1;
|
|
5853
|
+
min-height: 220px;
|
|
5854
|
+
max-height: none;
|
|
5855
|
+
}
|
|
5856
|
+
|
|
5857
|
+
.taskforceAgentDrawerPrompt {
|
|
5858
|
+
display: grid;
|
|
5859
|
+
grid-template-columns: minmax(0, 1fr) auto;
|
|
5860
|
+
align-items: end;
|
|
5861
|
+
gap: 8px;
|
|
5862
|
+
min-width: 0;
|
|
5863
|
+
}
|
|
5864
|
+
|
|
5865
|
+
.taskforceAgentDrawerPrompt textarea {
|
|
5866
|
+
min-height: 86px;
|
|
5867
|
+
max-height: 180px;
|
|
5868
|
+
resize: vertical;
|
|
5869
|
+
}
|
|
5870
|
+
|
|
5871
|
+
.taskforceAgentDrawerPrompt .secondaryHeaderBtn {
|
|
5872
|
+
height: 36px;
|
|
5873
|
+
min-width: 84px;
|
|
5874
|
+
justify-content: center;
|
|
5875
|
+
}
|
|
5876
|
+
|
|
5877
|
+
.taskforceAgentDrawerPromptStatus {
|
|
5878
|
+
grid-column: 1 / -1;
|
|
5879
|
+
min-height: 16px;
|
|
5880
|
+
color: var(--status-error);
|
|
5881
|
+
font-size: 11px;
|
|
5882
|
+
line-height: 1.35;
|
|
5883
|
+
}
|
|
5884
|
+
|
|
5885
|
+
.taskforceAgentDrawerMetrics {
|
|
5886
|
+
display: flex;
|
|
5887
|
+
justify-content: flex-end;
|
|
5888
|
+
gap: 14px;
|
|
5889
|
+
min-height: 18px;
|
|
5890
|
+
color: var(--text-helper);
|
|
5891
|
+
font-size: 11px;
|
|
5892
|
+
line-height: 1.4;
|
|
5893
|
+
}
|
|
5894
|
+
|
|
5895
|
+
.taskforceAgentDrawerMetrics span {
|
|
5896
|
+
display: inline-flex;
|
|
5897
|
+
align-items: baseline;
|
|
5898
|
+
gap: 5px;
|
|
5899
|
+
min-width: 0;
|
|
5900
|
+
}
|
|
5901
|
+
|
|
5902
|
+
.taskforceAgentDrawerMetrics strong {
|
|
5903
|
+
color: var(--text-secondary);
|
|
5904
|
+
font-size: 10px;
|
|
5905
|
+
font-weight: 700;
|
|
5906
|
+
letter-spacing: 0.05em;
|
|
5907
|
+
text-transform: uppercase;
|
|
5908
|
+
}
|
|
5909
|
+
|
|
5910
|
+
.taskforceAgentOutputStack {
|
|
5911
|
+
display: flex;
|
|
5912
|
+
flex-direction: column;
|
|
5913
|
+
gap: 12px;
|
|
5914
|
+
min-width: 0;
|
|
5915
|
+
}
|
|
5916
|
+
|
|
5917
|
+
.taskforceAgentOutputPanel {
|
|
5918
|
+
display: flex;
|
|
5919
|
+
flex-direction: column;
|
|
5920
|
+
gap: 10px;
|
|
5921
|
+
min-width: 0;
|
|
5922
|
+
border: 1px solid var(--border-primary);
|
|
5923
|
+
border-radius: var(--radius-md, 8px);
|
|
5924
|
+
background: color-mix(in srgb, var(--bg-secondary) 82%, transparent);
|
|
5925
|
+
padding: 12px;
|
|
5926
|
+
}
|
|
5927
|
+
|
|
5928
|
+
.taskforceAgentTestTitle {
|
|
5929
|
+
display: flex;
|
|
5930
|
+
align-items: center;
|
|
5931
|
+
gap: 10px;
|
|
5932
|
+
min-width: 0;
|
|
5933
|
+
}
|
|
5934
|
+
|
|
5935
|
+
.taskforceAgentTestTitle .taskforceAgentBuilderEmptyIcon {
|
|
5936
|
+
width: 36px;
|
|
5937
|
+
height: 36px;
|
|
5938
|
+
flex: 0 0 auto;
|
|
5939
|
+
}
|
|
5940
|
+
|
|
5941
|
+
.taskforceAgentTestTitle > div {
|
|
5942
|
+
display: flex;
|
|
5943
|
+
flex-direction: column;
|
|
5944
|
+
gap: 2px;
|
|
5945
|
+
min-width: 0;
|
|
5946
|
+
}
|
|
5947
|
+
|
|
5948
|
+
.taskforceAgentTestTitle p {
|
|
5949
|
+
margin: 0;
|
|
5950
|
+
color: var(--text-secondary);
|
|
5951
|
+
font-size: 11px;
|
|
5952
|
+
line-height: 1.4;
|
|
5953
|
+
}
|
|
5954
|
+
|
|
5955
|
+
.taskforceAgentTestNotice,
|
|
5956
|
+
.taskforceAgentTestError,
|
|
5957
|
+
.taskforceAgentTestPending {
|
|
5958
|
+
display: flex;
|
|
5959
|
+
align-items: flex-start;
|
|
5960
|
+
gap: 8px;
|
|
5961
|
+
padding: 9px 10px;
|
|
5962
|
+
border: 1px solid var(--border-primary);
|
|
5963
|
+
border-radius: var(--radius-sm, 6px);
|
|
5964
|
+
background: color-mix(in srgb, var(--input-bg) 72%, transparent);
|
|
5965
|
+
color: var(--text-secondary);
|
|
5966
|
+
font-size: 11px;
|
|
5967
|
+
line-height: 1.45;
|
|
5968
|
+
}
|
|
5969
|
+
|
|
5970
|
+
.taskforceAgentTestNotice svg,
|
|
5971
|
+
.taskforceAgentTestError svg,
|
|
5972
|
+
.taskforceAgentTestPending svg {
|
|
5973
|
+
flex: 0 0 auto;
|
|
5974
|
+
margin-top: 1px;
|
|
5975
|
+
}
|
|
5976
|
+
|
|
5977
|
+
.taskforceAgentTestNotice svg {
|
|
5978
|
+
color: var(--status-success);
|
|
5979
|
+
}
|
|
5980
|
+
|
|
5981
|
+
.taskforceAgentTestError {
|
|
5982
|
+
border-color: color-mix(in srgb, var(--status-error) 35%, var(--border-primary));
|
|
5983
|
+
color: var(--status-error);
|
|
5984
|
+
}
|
|
5985
|
+
|
|
5986
|
+
.taskforceAgentTestPending svg {
|
|
5987
|
+
color: var(--accent-primary);
|
|
5988
|
+
}
|
|
5989
|
+
|
|
5990
|
+
.taskforceAgentTestActions {
|
|
5991
|
+
display: flex;
|
|
5992
|
+
justify-content: flex-end;
|
|
5993
|
+
flex-wrap: wrap;
|
|
5994
|
+
gap: 8px;
|
|
5995
|
+
}
|
|
5996
|
+
|
|
5997
|
+
.taskforceAgentTestActions > button:first-child {
|
|
5998
|
+
margin-right: auto;
|
|
5999
|
+
}
|
|
6000
|
+
|
|
6001
|
+
.taskforceAgentTestRestriction {
|
|
6002
|
+
margin: 0;
|
|
6003
|
+
color: var(--text-helper);
|
|
6004
|
+
font-size: 11px;
|
|
6005
|
+
line-height: 1.4;
|
|
6006
|
+
}
|
|
6007
|
+
|
|
6008
|
+
.taskforceAgentTestResult {
|
|
6009
|
+
display: flex;
|
|
6010
|
+
flex-direction: column;
|
|
6011
|
+
gap: 10px;
|
|
6012
|
+
padding: 10px;
|
|
6013
|
+
border: 1px solid color-mix(in srgb, var(--status-success) 26%, var(--border-primary));
|
|
6014
|
+
border-radius: var(--radius-md, 8px);
|
|
6015
|
+
background: color-mix(in srgb, var(--status-success) 5%, var(--input-bg));
|
|
6016
|
+
}
|
|
6017
|
+
|
|
6018
|
+
.taskforceAgentTestResultHeader {
|
|
6019
|
+
display: flex;
|
|
6020
|
+
justify-content: space-between;
|
|
6021
|
+
align-items: center;
|
|
6022
|
+
gap: 10px;
|
|
6023
|
+
color: var(--text-helper);
|
|
6024
|
+
font-size: 10px;
|
|
6025
|
+
line-height: 1.4;
|
|
6026
|
+
}
|
|
6027
|
+
|
|
6028
|
+
.taskforceAgentTestResultHeader span:first-child {
|
|
6029
|
+
display: inline-flex;
|
|
6030
|
+
align-items: center;
|
|
6031
|
+
gap: 6px;
|
|
6032
|
+
color: var(--status-success);
|
|
6033
|
+
font-weight: 650;
|
|
6034
|
+
}
|
|
6035
|
+
|
|
6036
|
+
.taskforceAgentTestResponse {
|
|
6037
|
+
min-width: 0;
|
|
6038
|
+
color: var(--text-primary);
|
|
6039
|
+
font-size: 13px;
|
|
6040
|
+
line-height: 1.5;
|
|
6041
|
+
overflow-wrap: anywhere;
|
|
6042
|
+
}
|
|
6043
|
+
|
|
6044
|
+
.taskforceAgentTestResponse > :first-child {
|
|
6045
|
+
margin-top: 0;
|
|
6046
|
+
}
|
|
6047
|
+
|
|
6048
|
+
.taskforceAgentTestResponse > :last-child {
|
|
6049
|
+
margin-bottom: 0;
|
|
6050
|
+
}
|
|
6051
|
+
|
|
6052
|
+
.taskforceAgentReadonlyField {
|
|
6053
|
+
min-height: 36px;
|
|
6054
|
+
display: flex;
|
|
6055
|
+
align-items: center;
|
|
6056
|
+
padding: 8px 10px;
|
|
6057
|
+
border: 1px solid var(--border-primary);
|
|
6058
|
+
border-radius: var(--radius-md, 8px);
|
|
6059
|
+
background: color-mix(in srgb, var(--input-bg) 78%, var(--bg-secondary));
|
|
6060
|
+
color: var(--text-primary);
|
|
6061
|
+
font-size: 13px;
|
|
6062
|
+
line-height: 1.35;
|
|
6063
|
+
}
|
|
6064
|
+
|
|
6065
|
+
.taskforceAgentAvatarPanel {
|
|
6066
|
+
display: flex;
|
|
6067
|
+
align-items: center;
|
|
6068
|
+
flex-wrap: wrap;
|
|
6069
|
+
gap: 14px;
|
|
6070
|
+
min-width: 0;
|
|
6071
|
+
padding: 12px;
|
|
6072
|
+
border: 1px solid var(--border-primary);
|
|
6073
|
+
border-radius: var(--radius-md, 8px);
|
|
6074
|
+
background: color-mix(in srgb, var(--bg-secondary) 82%, transparent);
|
|
6075
|
+
}
|
|
6076
|
+
|
|
6077
|
+
.taskforceAgentAvatarEditControl {
|
|
6078
|
+
position: relative;
|
|
6079
|
+
width: 88px;
|
|
6080
|
+
height: 88px;
|
|
6081
|
+
}
|
|
6082
|
+
|
|
6083
|
+
.taskforceAgentAvatarPreview,
|
|
6084
|
+
.taskforceAgentListAvatar {
|
|
6085
|
+
position: relative;
|
|
6086
|
+
display: inline-flex;
|
|
6087
|
+
align-items: center;
|
|
6088
|
+
justify-content: center;
|
|
6089
|
+
flex: 0 0 auto;
|
|
6090
|
+
overflow: hidden;
|
|
6091
|
+
border: 1px solid var(--border-primary);
|
|
6092
|
+
border-radius: 50%;
|
|
6093
|
+
background: color-mix(in srgb, var(--accent-primary) 8%, var(--input-bg));
|
|
6094
|
+
color: var(--text-secondary);
|
|
6095
|
+
}
|
|
6096
|
+
|
|
6097
|
+
.taskforceAgentAvatarPreview {
|
|
6098
|
+
width: 64px;
|
|
6099
|
+
height: 64px;
|
|
6100
|
+
}
|
|
6101
|
+
|
|
6102
|
+
.taskforceAgentAvatarPreview img,
|
|
6103
|
+
.taskforceAgentListAvatar img {
|
|
6104
|
+
width: 100%;
|
|
6105
|
+
height: 100%;
|
|
6106
|
+
object-fit: cover;
|
|
6107
|
+
}
|
|
6108
|
+
|
|
6109
|
+
.taskforceAgentAvatarSyncing {
|
|
6110
|
+
border-color: color-mix(in srgb, var(--accent-primary) 58%, var(--border-primary));
|
|
6111
|
+
}
|
|
6112
|
+
|
|
6113
|
+
.taskforceAgentAvatarSyncIcon {
|
|
6114
|
+
position: absolute;
|
|
6115
|
+
right: 0;
|
|
6116
|
+
bottom: 0;
|
|
6117
|
+
width: 15px;
|
|
6118
|
+
height: 15px;
|
|
6119
|
+
padding: 2px;
|
|
6120
|
+
border: 1px solid var(--border-primary);
|
|
6121
|
+
border-radius: 50%;
|
|
6122
|
+
background: var(--bg-primary);
|
|
6123
|
+
color: var(--accent-primary);
|
|
6124
|
+
}
|
|
6125
|
+
|
|
6126
|
+
.taskforceAgentAvatarCopy {
|
|
6127
|
+
display: flex;
|
|
6128
|
+
flex: 1 1 140px;
|
|
6129
|
+
min-width: 0;
|
|
6130
|
+
flex-direction: column;
|
|
6131
|
+
gap: 2px;
|
|
6132
|
+
}
|
|
6133
|
+
|
|
6134
|
+
.taskforceAgentAvatarCopy strong {
|
|
6135
|
+
min-width: 0;
|
|
6136
|
+
overflow: hidden;
|
|
6137
|
+
color: var(--text-primary);
|
|
6138
|
+
font-size: 14px;
|
|
6139
|
+
font-weight: 650;
|
|
6140
|
+
text-overflow: ellipsis;
|
|
6141
|
+
white-space: nowrap;
|
|
6142
|
+
}
|
|
6143
|
+
|
|
6144
|
+
.taskforceAgentAvatarRole {
|
|
6145
|
+
min-width: 0;
|
|
6146
|
+
overflow: hidden;
|
|
6147
|
+
color: var(--text-secondary);
|
|
6148
|
+
font-size: 11px;
|
|
6149
|
+
line-height: 1.25;
|
|
6150
|
+
text-overflow: ellipsis;
|
|
6151
|
+
white-space: nowrap;
|
|
6152
|
+
}
|
|
6153
|
+
|
|
6154
|
+
.taskforceAgentAvatarCopy small {
|
|
6155
|
+
min-width: 0;
|
|
6156
|
+
overflow: hidden;
|
|
6157
|
+
color: var(--text-secondary);
|
|
6158
|
+
font-size: 11px;
|
|
6159
|
+
line-height: 1.25;
|
|
6160
|
+
text-overflow: ellipsis;
|
|
6161
|
+
white-space: nowrap;
|
|
6162
|
+
}
|
|
6163
|
+
|
|
6164
|
+
.taskforceAgentToolbar {
|
|
6165
|
+
display: flex;
|
|
6166
|
+
flex: 0 1 auto;
|
|
6167
|
+
align-items: center;
|
|
6168
|
+
justify-content: flex-end;
|
|
6169
|
+
flex-wrap: wrap;
|
|
6170
|
+
gap: 8px;
|
|
6171
|
+
margin-left: auto;
|
|
6172
|
+
}
|
|
6173
|
+
|
|
6174
|
+
.taskforceAgentConversationSelect,
|
|
6175
|
+
.taskforceAgentConversationRename .input {
|
|
6176
|
+
height: 34px;
|
|
6177
|
+
font-size: 12px;
|
|
6178
|
+
}
|
|
6179
|
+
|
|
6180
|
+
.taskforceAgentConversationSelect {
|
|
6181
|
+
width: 100%;
|
|
6182
|
+
min-width: 0;
|
|
6183
|
+
}
|
|
6184
|
+
|
|
6185
|
+
.taskforceAgentList {
|
|
6186
|
+
display: flex;
|
|
6187
|
+
flex-direction: column;
|
|
6188
|
+
gap: 8px;
|
|
6189
|
+
}
|
|
6190
|
+
|
|
6191
|
+
.taskforceAgentListEmpty {
|
|
6192
|
+
color: var(--text-secondary);
|
|
6193
|
+
font-size: 12px;
|
|
6194
|
+
line-height: 1.45;
|
|
6195
|
+
margin: 0;
|
|
6196
|
+
}
|
|
6197
|
+
|
|
6198
|
+
.taskforceAgentSignatureColorField {
|
|
6199
|
+
display: flex;
|
|
6200
|
+
flex-direction: column;
|
|
6201
|
+
align-items: flex-start;
|
|
6202
|
+
gap: 8px;
|
|
6203
|
+
padding: 12px 0;
|
|
6204
|
+
}
|
|
6205
|
+
|
|
6206
|
+
.taskforceAgentSignatureColorField > div:first-child {
|
|
6207
|
+
display: flex;
|
|
6208
|
+
flex-direction: column;
|
|
6209
|
+
gap: 3px;
|
|
6210
|
+
}
|
|
6211
|
+
|
|
6212
|
+
.taskforceAgentSignatureColorField small {
|
|
6213
|
+
color: var(--text-helper);
|
|
6214
|
+
font-size: 11px;
|
|
6215
|
+
}
|
|
6216
|
+
|
|
6217
|
+
.taskforceAgentSignatureColorField .aiProfileColorPicker {
|
|
6218
|
+
justify-content: flex-start;
|
|
6219
|
+
margin-top: 0;
|
|
6220
|
+
}
|
|
6221
|
+
|
|
6222
|
+
.taskforceAgentBehaviorGrid {
|
|
6223
|
+
display: grid;
|
|
6224
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
6225
|
+
gap: 14px;
|
|
6226
|
+
}
|
|
6227
|
+
|
|
6228
|
+
.taskforceAgentBehaviorWide {
|
|
6229
|
+
grid-column: 1 / -1;
|
|
6230
|
+
}
|
|
6231
|
+
|
|
6232
|
+
.taskforceAgentFieldHelper {
|
|
6233
|
+
display: block;
|
|
6234
|
+
color: var(--text-helper);
|
|
6235
|
+
font-size: 11px;
|
|
6236
|
+
line-height: 1.4;
|
|
6237
|
+
}
|
|
6238
|
+
|
|
6239
|
+
.taskforceAgentPresentationGroup {
|
|
6240
|
+
display: grid;
|
|
6241
|
+
gap: 12px;
|
|
6242
|
+
padding: 14px;
|
|
6243
|
+
border: 1px solid var(--border-primary);
|
|
6244
|
+
border-radius: var(--radius-md, 8px);
|
|
6245
|
+
background: color-mix(in srgb, var(--bg-secondary) 66%, transparent);
|
|
6246
|
+
}
|
|
6247
|
+
|
|
6248
|
+
.taskforceAgentPresentationGroup > div:first-child {
|
|
6249
|
+
display: flex;
|
|
6250
|
+
flex-direction: column;
|
|
6251
|
+
gap: 4px;
|
|
6252
|
+
}
|
|
6253
|
+
|
|
6254
|
+
.taskforceAgentLogList {
|
|
6255
|
+
display: flex;
|
|
6256
|
+
flex-direction: column;
|
|
6257
|
+
gap: 8px;
|
|
6258
|
+
}
|
|
6259
|
+
|
|
6260
|
+
.taskforceAgentLogEntry {
|
|
6261
|
+
display: grid;
|
|
6262
|
+
grid-template-columns: 16px auto minmax(0, 1fr);
|
|
6263
|
+
gap: 8px;
|
|
6264
|
+
align-items: start;
|
|
6265
|
+
color: var(--text-secondary);
|
|
6266
|
+
font-size: 12px;
|
|
6267
|
+
line-height: 1.45;
|
|
6268
|
+
overflow-wrap: anywhere;
|
|
6269
|
+
}
|
|
6270
|
+
|
|
6271
|
+
.taskforceAgentToolDetails {
|
|
6272
|
+
grid-column: 3;
|
|
6273
|
+
min-width: 0;
|
|
6274
|
+
color: var(--text-secondary);
|
|
6275
|
+
}
|
|
6276
|
+
|
|
6277
|
+
.taskforceAgentToolDetails summary {
|
|
6278
|
+
width: fit-content;
|
|
6279
|
+
cursor: pointer;
|
|
6280
|
+
color: var(--accent-primary);
|
|
6281
|
+
font-size: 11px;
|
|
6282
|
+
line-height: 1.4;
|
|
6283
|
+
}
|
|
6284
|
+
|
|
6285
|
+
.taskforceAgentToolActivity {
|
|
6286
|
+
margin-top: 10px;
|
|
6287
|
+
padding-top: 10px;
|
|
6288
|
+
border-top: 1px solid var(--border-primary);
|
|
6289
|
+
color: var(--text-secondary);
|
|
6290
|
+
}
|
|
6291
|
+
|
|
6292
|
+
.taskforceAgentToolActivity > summary {
|
|
6293
|
+
display: flex;
|
|
6294
|
+
align-items: center;
|
|
6295
|
+
justify-content: space-between;
|
|
6296
|
+
gap: 10px;
|
|
6297
|
+
cursor: pointer;
|
|
6298
|
+
}
|
|
6299
|
+
|
|
6300
|
+
.taskforceAgentToolActivity > summary span {
|
|
6301
|
+
color: var(--text-helper);
|
|
6302
|
+
font-size: 10px;
|
|
6303
|
+
font-weight: 700;
|
|
6304
|
+
letter-spacing: 0.05em;
|
|
6305
|
+
text-transform: uppercase;
|
|
6306
|
+
}
|
|
6307
|
+
|
|
6308
|
+
.taskforceAgentToolActivity > summary strong {
|
|
6309
|
+
color: var(--text-primary);
|
|
6310
|
+
font-size: 12px;
|
|
6311
|
+
}
|
|
6312
|
+
|
|
6313
|
+
.taskforceAgentToolActivityList {
|
|
6314
|
+
display: flex;
|
|
6315
|
+
flex-direction: column;
|
|
6316
|
+
gap: 6px;
|
|
6317
|
+
margin-top: 8px;
|
|
6318
|
+
}
|
|
6319
|
+
|
|
6320
|
+
.taskforceAgentToolCall {
|
|
6321
|
+
border: 1px solid var(--border-primary);
|
|
6322
|
+
border-radius: var(--radius-sm, 6px);
|
|
6323
|
+
background: color-mix(in srgb, var(--input-bg) 72%, transparent);
|
|
6324
|
+
}
|
|
6325
|
+
|
|
6326
|
+
.taskforceAgentToolCall > summary {
|
|
6327
|
+
display: grid;
|
|
6328
|
+
grid-template-columns: 14px minmax(0, 1fr) auto;
|
|
6329
|
+
align-items: center;
|
|
6330
|
+
gap: 8px;
|
|
6331
|
+
padding: 6px 8px;
|
|
6332
|
+
cursor: pointer;
|
|
6333
|
+
color: var(--status-success);
|
|
6334
|
+
}
|
|
6335
|
+
|
|
6336
|
+
.taskforceAgentToolCallFailed > summary {
|
|
6337
|
+
color: var(--status-error);
|
|
6338
|
+
}
|
|
6339
|
+
|
|
6340
|
+
.taskforceAgentToolCallName {
|
|
6341
|
+
min-width: 0;
|
|
6342
|
+
overflow: hidden;
|
|
6343
|
+
color: var(--text-primary);
|
|
6344
|
+
font-size: 12px;
|
|
6345
|
+
font-weight: 600;
|
|
6346
|
+
text-overflow: ellipsis;
|
|
6347
|
+
white-space: nowrap;
|
|
6348
|
+
}
|
|
6349
|
+
|
|
6350
|
+
.taskforceAgentToolCallStatus {
|
|
6351
|
+
color: currentColor;
|
|
6352
|
+
font-size: 11px;
|
|
6353
|
+
font-weight: 600;
|
|
6354
|
+
}
|
|
6355
|
+
|
|
6356
|
+
.taskforceAgentToolDetailsGrid {
|
|
6357
|
+
display: grid;
|
|
6358
|
+
grid-template-columns: 72px minmax(0, 1fr);
|
|
6359
|
+
gap: 6px 8px;
|
|
6360
|
+
margin-top: 6px;
|
|
6361
|
+
padding: 8px;
|
|
6362
|
+
border: 1px solid var(--border-primary);
|
|
6363
|
+
border-radius: var(--radius-sm, 6px);
|
|
6364
|
+
background: color-mix(in srgb, var(--input-bg) 72%, transparent);
|
|
6365
|
+
}
|
|
6366
|
+
|
|
6367
|
+
.taskforceAgentToolDetailsGrid span {
|
|
6368
|
+
color: var(--text-helper);
|
|
6369
|
+
font-size: 10px;
|
|
6370
|
+
text-transform: uppercase;
|
|
6371
|
+
letter-spacing: 0;
|
|
6372
|
+
}
|
|
6373
|
+
|
|
6374
|
+
.taskforceAgentToolDetailsGrid code,
|
|
6375
|
+
.taskforceAgentToolDetailsGrid pre {
|
|
6376
|
+
min-width: 0;
|
|
6377
|
+
margin: 0;
|
|
6378
|
+
color: var(--text-primary);
|
|
6379
|
+
font-family: var(--font-mono, monospace);
|
|
6380
|
+
font-size: 11px;
|
|
6381
|
+
line-height: 1.4;
|
|
6382
|
+
white-space: pre-wrap;
|
|
6383
|
+
overflow-wrap: anywhere;
|
|
6384
|
+
}
|
|
6385
|
+
|
|
6386
|
+
.taskforceAgentToolDetailsGrid pre {
|
|
6387
|
+
max-height: 96px;
|
|
6388
|
+
overflow: auto;
|
|
6389
|
+
}
|
|
6390
|
+
|
|
6391
|
+
.taskforceAgentLogSuccess {
|
|
6392
|
+
color: var(--status-success);
|
|
6393
|
+
}
|
|
6394
|
+
|
|
6395
|
+
.taskforceAgentLogError {
|
|
6396
|
+
color: var(--status-error);
|
|
6397
|
+
}
|
|
6398
|
+
|
|
6399
|
+
.taskforceAgentLogTime {
|
|
6400
|
+
color: var(--text-helper);
|
|
6401
|
+
font-size: 11px;
|
|
6402
|
+
white-space: nowrap;
|
|
6403
|
+
}
|
|
6404
|
+
|
|
6405
|
+
.taskforceAgentConversationList {
|
|
6406
|
+
display: flex;
|
|
6407
|
+
flex-direction: column;
|
|
6408
|
+
gap: 10px;
|
|
6409
|
+
min-height: 160px;
|
|
6410
|
+
max-height: 360px;
|
|
6411
|
+
overflow-y: auto;
|
|
6412
|
+
padding: 10px;
|
|
6413
|
+
border: 1px solid var(--border-primary);
|
|
6414
|
+
border-radius: var(--radius-md, 8px);
|
|
6415
|
+
background: var(--input-bg);
|
|
6416
|
+
}
|
|
6417
|
+
|
|
6418
|
+
.taskforceAgentConversationList.taskforceAgentDrawerConversationList {
|
|
6419
|
+
flex: 1 1 0;
|
|
6420
|
+
min-height: 140px;
|
|
6421
|
+
max-height: none;
|
|
6422
|
+
}
|
|
6423
|
+
|
|
6424
|
+
.taskforceAgentDrawerConversationList .taskforceAgentConversationBody,
|
|
6425
|
+
.taskforceAgentDrawerConversationList .taskforceAgentConversationMessage > p {
|
|
6426
|
+
font-size: 12px;
|
|
6427
|
+
line-height: 1.45;
|
|
6428
|
+
}
|
|
6429
|
+
|
|
6430
|
+
.taskforceAgentConversationEmpty {
|
|
6431
|
+
color: var(--text-secondary);
|
|
6432
|
+
font-size: 13px;
|
|
6433
|
+
line-height: 1.5;
|
|
4932
6434
|
}
|
|
4933
6435
|
|
|
4934
|
-
|
|
4935
|
-
.docViewerPanel {
|
|
4936
|
-
flex: 1;
|
|
4937
|
-
min-width: 0;
|
|
6436
|
+
.taskforceAgentConversationMessage {
|
|
4938
6437
|
display: flex;
|
|
4939
6438
|
flex-direction: column;
|
|
4940
|
-
|
|
6439
|
+
gap: 4px;
|
|
6440
|
+
width: fit-content;
|
|
6441
|
+
max-width: 88%;
|
|
6442
|
+
padding: 8px 10px;
|
|
6443
|
+
border: 1px solid var(--border-primary);
|
|
6444
|
+
border-radius: var(--radius-md, 8px);
|
|
6445
|
+
background: color-mix(in srgb, var(--bg-secondary) 74%, transparent);
|
|
6446
|
+
color: var(--text-body);
|
|
4941
6447
|
}
|
|
4942
6448
|
|
|
4943
|
-
.
|
|
4944
|
-
|
|
4945
|
-
|
|
4946
|
-
|
|
4947
|
-
|
|
4948
|
-
|
|
4949
|
-
font-size: 13px;
|
|
6449
|
+
.taskforceAgentConversationMessage > span {
|
|
6450
|
+
color: var(--text-helper);
|
|
6451
|
+
font-size: 10px;
|
|
6452
|
+
font-weight: 700;
|
|
6453
|
+
letter-spacing: 0.05em;
|
|
6454
|
+
text-transform: uppercase;
|
|
4950
6455
|
}
|
|
4951
6456
|
|
|
4952
|
-
|
|
4953
|
-
|
|
4954
|
-
|
|
4955
|
-
|
|
6457
|
+
.taskforceAgentConversationMessage > p {
|
|
6458
|
+
margin: 0;
|
|
6459
|
+
color: var(--text-primary);
|
|
6460
|
+
font-size: 13px;
|
|
6461
|
+
line-height: 1.5;
|
|
6462
|
+
white-space: pre-wrap;
|
|
6463
|
+
overflow-wrap: anywhere;
|
|
6464
|
+
}
|
|
4956
6465
|
|
|
4957
|
-
|
|
4958
|
-
.agentsModuleRoot {
|
|
4959
|
-
--agent-tray-width: min(760px, calc(100vw - 96px));
|
|
4960
|
-
position: relative;
|
|
4961
|
-
flex: 1;
|
|
6466
|
+
.taskforceAgentConversationBody {
|
|
4962
6467
|
min-width: 0;
|
|
4963
|
-
|
|
4964
|
-
width: 100%;
|
|
4965
|
-
box-sizing: border-box;
|
|
4966
|
-
overflow: hidden;
|
|
4967
|
-
padding: 20px 24px 22px;
|
|
6468
|
+
color: var(--text-body);
|
|
4968
6469
|
}
|
|
4969
6470
|
|
|
4970
|
-
.
|
|
4971
|
-
|
|
6471
|
+
.taskforceAgentConversationMessageUser {
|
|
6472
|
+
align-self: flex-end;
|
|
6473
|
+
background: color-mix(in srgb, var(--brand-primary) 8%, transparent);
|
|
6474
|
+
border-color: color-mix(in srgb, var(--brand-primary) 28%, var(--border-primary));
|
|
6475
|
+
border-top-right-radius: var(--radius-sm);
|
|
4972
6476
|
}
|
|
4973
6477
|
|
|
4974
|
-
.
|
|
4975
|
-
|
|
6478
|
+
.taskforceAgentConversationMessageUser > span {
|
|
6479
|
+
align-self: flex-end;
|
|
6480
|
+
text-align: end;
|
|
4976
6481
|
}
|
|
4977
6482
|
|
|
4978
|
-
.
|
|
4979
|
-
|
|
4980
|
-
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
|
|
4985
|
-
|
|
4986
|
-
|
|
4987
|
-
|
|
4988
|
-
|
|
4989
|
-
|
|
4990
|
-
|
|
4991
|
-
overflow: hidden;
|
|
4992
|
-
transform: translateX(-100%);
|
|
4993
|
-
opacity: 0;
|
|
4994
|
-
visibility: hidden;
|
|
4995
|
-
pointer-events: none;
|
|
4996
|
-
z-index: 34;
|
|
4997
|
-
box-shadow: 4px 0 18px rgba(8, 10, 24, 0.16);
|
|
4998
|
-
transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), opacity 160ms ease, visibility 0s linear 220ms;
|
|
6483
|
+
.taskforceAgentConversationMessageAssistant {
|
|
6484
|
+
align-self: flex-start;
|
|
6485
|
+
background: color-mix(
|
|
6486
|
+
in srgb,
|
|
6487
|
+
var(--conversation-accent, var(--brand-cloud-accent)) 12%,
|
|
6488
|
+
transparent
|
|
6489
|
+
);
|
|
6490
|
+
border-color: color-mix(
|
|
6491
|
+
in srgb,
|
|
6492
|
+
var(--conversation-accent, var(--brand-cloud-accent)) 32%,
|
|
6493
|
+
var(--border-primary)
|
|
6494
|
+
);
|
|
6495
|
+
border-top-left-radius: var(--radius-sm);
|
|
4999
6496
|
}
|
|
5000
6497
|
|
|
5001
|
-
.
|
|
5002
|
-
|
|
5003
|
-
|
|
5004
|
-
|
|
5005
|
-
pointer-events: auto;
|
|
5006
|
-
transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), opacity 160ms ease, visibility 0s linear 0s;
|
|
6498
|
+
.taskforceAgentMetaGrid {
|
|
6499
|
+
display: grid;
|
|
6500
|
+
grid-template-columns: 1fr;
|
|
6501
|
+
gap: 8px;
|
|
5007
6502
|
}
|
|
5008
6503
|
|
|
5009
|
-
.
|
|
5010
|
-
position: sticky;
|
|
5011
|
-
top: 0;
|
|
5012
|
-
z-index: 12;
|
|
6504
|
+
.taskforceAgentMetaGrid > div {
|
|
5013
6505
|
display: flex;
|
|
5014
|
-
|
|
5015
|
-
|
|
5016
|
-
|
|
5017
|
-
padding: 12px 12px 10px;
|
|
5018
|
-
border-bottom: 1px solid var(--border-default);
|
|
5019
|
-
background: var(--bg-secondary);
|
|
5020
|
-
box-shadow: 0 10px 16px color-mix(in srgb, var(--bg-secondary) 90%, transparent);
|
|
5021
|
-
flex-shrink: 0;
|
|
6506
|
+
flex-direction: column;
|
|
6507
|
+
gap: 3px;
|
|
6508
|
+
min-width: 0;
|
|
5022
6509
|
}
|
|
5023
6510
|
|
|
5024
|
-
.
|
|
5025
|
-
|
|
5026
|
-
|
|
5027
|
-
align-items: center;
|
|
5028
|
-
gap: 6px;
|
|
5029
|
-
font-size: 0.78rem;
|
|
6511
|
+
.taskforceAgentMetaGrid span {
|
|
6512
|
+
color: var(--text-helper);
|
|
6513
|
+
font-size: 10px;
|
|
5030
6514
|
font-weight: 700;
|
|
5031
|
-
letter-spacing: 0.
|
|
6515
|
+
letter-spacing: 0.05em;
|
|
5032
6516
|
text-transform: uppercase;
|
|
5033
|
-
color: var(--text-secondary);
|
|
5034
|
-
}
|
|
5035
|
-
|
|
5036
|
-
.agentTrayContent {
|
|
5037
|
-
flex: 1;
|
|
5038
|
-
min-height: 0;
|
|
5039
|
-
padding: 12px 0 16px;
|
|
5040
|
-
overflow-y: auto;
|
|
5041
|
-
overflow-x: hidden;
|
|
5042
|
-
}
|
|
5043
|
-
|
|
5044
|
-
.agentTrayContentInner {
|
|
5045
|
-
padding: 0 12px;
|
|
5046
|
-
}
|
|
5047
|
-
|
|
5048
|
-
.agentsModuleContent {
|
|
5049
|
-
width: min(100%, 760px);
|
|
5050
|
-
min-height: 0;
|
|
5051
6517
|
}
|
|
5052
6518
|
|
|
5053
|
-
.
|
|
5054
|
-
|
|
6519
|
+
.taskforceAgentMetaGrid strong,
|
|
6520
|
+
.taskforceAgentMetaGrid code {
|
|
6521
|
+
color: var(--text-primary);
|
|
6522
|
+
font-size: 12px;
|
|
6523
|
+
overflow-wrap: anywhere;
|
|
5055
6524
|
}
|
|
5056
6525
|
|
|
5057
6526
|
.marginTop24 {
|
|
@@ -5085,22 +6554,56 @@
|
|
|
5085
6554
|
|
|
5086
6555
|
.aiProfilesExplorer {
|
|
5087
6556
|
display: grid;
|
|
5088
|
-
grid-template-columns: 360px
|
|
5089
|
-
|
|
5090
|
-
align-items: start;
|
|
5091
|
-
justify-content: start;
|
|
6557
|
+
grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
|
|
6558
|
+
align-items: stretch;
|
|
5092
6559
|
min-height: 0;
|
|
5093
|
-
width:
|
|
5094
|
-
|
|
6560
|
+
width: 100%;
|
|
6561
|
+
overflow: hidden;
|
|
6562
|
+
}
|
|
6563
|
+
|
|
6564
|
+
.aiProfilesRosterPanel {
|
|
6565
|
+
min-width: 0;
|
|
6566
|
+
min-height: 0;
|
|
6567
|
+
padding: 0 12px;
|
|
6568
|
+
display: flex;
|
|
6569
|
+
flex-direction: column;
|
|
6570
|
+
border-right: 1px solid var(--border-primary);
|
|
6571
|
+
background: var(--bg-secondary);
|
|
6572
|
+
overflow: hidden;
|
|
6573
|
+
}
|
|
6574
|
+
|
|
6575
|
+
.aiProfilesRosterSummary {
|
|
6576
|
+
display: flex;
|
|
6577
|
+
flex-direction: column;
|
|
6578
|
+
gap: 8px;
|
|
6579
|
+
padding: 12px 0 10px;
|
|
6580
|
+
border-bottom: 1px solid var(--border-divider);
|
|
6581
|
+
flex-shrink: 0;
|
|
6582
|
+
}
|
|
6583
|
+
|
|
6584
|
+
.aiProfilesRosterSummary .aiProfileSeatSummary {
|
|
6585
|
+
margin-bottom: 0;
|
|
6586
|
+
}
|
|
6587
|
+
|
|
6588
|
+
.aiProfilesRosterState {
|
|
6589
|
+
display: flex;
|
|
6590
|
+
align-items: center;
|
|
6591
|
+
justify-content: center;
|
|
6592
|
+
gap: 6px;
|
|
6593
|
+
min-height: 96px;
|
|
6594
|
+
padding: 20px 4px;
|
|
6595
|
+
color: var(--text-muted);
|
|
6596
|
+
font-size: 12px;
|
|
6597
|
+
text-align: center;
|
|
5095
6598
|
}
|
|
5096
6599
|
|
|
5097
6600
|
.aiProfilesListPane {
|
|
6601
|
+
flex: 1;
|
|
5098
6602
|
min-width: 0;
|
|
5099
|
-
|
|
6603
|
+
min-height: 0;
|
|
5100
6604
|
overflow-y: auto;
|
|
5101
6605
|
overflow-x: hidden;
|
|
5102
6606
|
overscroll-behavior: contain;
|
|
5103
|
-
padding-right: 8px;
|
|
5104
6607
|
scrollbar-gutter: stable;
|
|
5105
6608
|
--tf-scrollbar-size: 8px;
|
|
5106
6609
|
--tf-scrollbar-thumb-border: 1px;
|
|
@@ -5111,6 +6614,14 @@
|
|
|
5111
6614
|
flex-direction: column;
|
|
5112
6615
|
gap: 16px;
|
|
5113
6616
|
min-width: 0;
|
|
6617
|
+
padding: 12px 0 16px;
|
|
6618
|
+
}
|
|
6619
|
+
|
|
6620
|
+
.aiProfilesDetailViewport {
|
|
6621
|
+
min-width: 0;
|
|
6622
|
+
min-height: 0;
|
|
6623
|
+
padding: 24px 28px;
|
|
6624
|
+
overflow: auto;
|
|
5114
6625
|
}
|
|
5115
6626
|
|
|
5116
6627
|
.aiProfilesSection {
|
|
@@ -5152,10 +6663,8 @@
|
|
|
5152
6663
|
|
|
5153
6664
|
.aiProfileGroupSelected {
|
|
5154
6665
|
border-color: var(--agent-card-selected-border, rgba(96, 165, 250, 0.5));
|
|
5155
|
-
background:
|
|
5156
|
-
|
|
5157
|
-
var(--agent-card-selected-bg, rgba(255, 255, 255, 0.04));
|
|
5158
|
-
box-shadow: var(--agent-card-selected-shadow, inset 0 0 0 1px rgba(96, 165, 250, 0.16));
|
|
6666
|
+
background: var(--agent-card-bg, rgba(255, 255, 255, 0.02));
|
|
6667
|
+
box-shadow: 0 0 0 2px color-mix(in srgb, var(--agent-card-selected-border, var(--brand-primary)) 16%, transparent);
|
|
5159
6668
|
transform: none;
|
|
5160
6669
|
}
|
|
5161
6670
|
|
|
@@ -5194,6 +6703,18 @@
|
|
|
5194
6703
|
object-fit: cover;
|
|
5195
6704
|
}
|
|
5196
6705
|
|
|
6706
|
+
.aiProfileGroupAvatarLogo {
|
|
6707
|
+
border-radius: 12px;
|
|
6708
|
+
padding: 0;
|
|
6709
|
+
border: 0;
|
|
6710
|
+
background: var(--surface-elevated, var(--surface-panel));
|
|
6711
|
+
}
|
|
6712
|
+
|
|
6713
|
+
.aiProfileGroupAvatarLogo img {
|
|
6714
|
+
object-fit: contain;
|
|
6715
|
+
border-radius: inherit;
|
|
6716
|
+
}
|
|
6717
|
+
|
|
5197
6718
|
.aiProfileGroupIdentity {
|
|
5198
6719
|
min-width: 0;
|
|
5199
6720
|
display: flex;
|
|
@@ -5243,6 +6764,12 @@
|
|
|
5243
6764
|
opacity: 0.86;
|
|
5244
6765
|
}
|
|
5245
6766
|
|
|
6767
|
+
.aiProfileGroupSignatureSwatch {
|
|
6768
|
+
position: absolute;
|
|
6769
|
+
right: 16px;
|
|
6770
|
+
bottom: 10px;
|
|
6771
|
+
}
|
|
6772
|
+
|
|
5246
6773
|
.aiProfileSeatScopeIconDetail {
|
|
5247
6774
|
top: 18px;
|
|
5248
6775
|
right: 18px;
|
|
@@ -5322,8 +6849,9 @@
|
|
|
5322
6849
|
}
|
|
5323
6850
|
|
|
5324
6851
|
.aiProfileDetailCard {
|
|
5325
|
-
width: 620px;
|
|
6852
|
+
width: min(620px, 100%);
|
|
5326
6853
|
min-width: 0;
|
|
6854
|
+
box-sizing: border-box;
|
|
5327
6855
|
border: 1px solid var(--agent-detail-border, var(--border-primary, rgba(255, 255, 255, 0.08)));
|
|
5328
6856
|
border-radius: var(--radius-md);
|
|
5329
6857
|
padding: 16px;
|
|
@@ -5357,6 +6885,24 @@
|
|
|
5357
6885
|
flex: 0 0 auto;
|
|
5358
6886
|
}
|
|
5359
6887
|
|
|
6888
|
+
.aiProfileDetailAvatar.aiProfileDetailAvatarLogo {
|
|
6889
|
+
padding: 0;
|
|
6890
|
+
border: 0;
|
|
6891
|
+
background: transparent;
|
|
6892
|
+
box-shadow: none;
|
|
6893
|
+
}
|
|
6894
|
+
|
|
6895
|
+
.aiProfileDetailAvatar.aiProfileDetailAvatarLogo:hover:not(:disabled) {
|
|
6896
|
+
border-color: transparent;
|
|
6897
|
+
box-shadow: none;
|
|
6898
|
+
transform: none;
|
|
6899
|
+
}
|
|
6900
|
+
|
|
6901
|
+
.aiProfileDetailAvatarLogo img {
|
|
6902
|
+
object-fit: contain;
|
|
6903
|
+
border-radius: inherit;
|
|
6904
|
+
}
|
|
6905
|
+
|
|
5360
6906
|
.aiProfileDetailHeading {
|
|
5361
6907
|
min-width: 0;
|
|
5362
6908
|
flex: 1;
|
|
@@ -5419,7 +6965,8 @@
|
|
|
5419
6965
|
line-height: 1.3;
|
|
5420
6966
|
}
|
|
5421
6967
|
|
|
5422
|
-
.aiProfileSignatureSwatch
|
|
6968
|
+
.aiProfileSignatureSwatch,
|
|
6969
|
+
.aiProfileGroupSignatureSwatch {
|
|
5423
6970
|
width: 12px;
|
|
5424
6971
|
height: 12px;
|
|
5425
6972
|
border-radius: 3px;
|
|
@@ -5429,6 +6976,54 @@
|
|
|
5429
6976
|
0 2px 6px rgba(0, 0, 0, 0.22);
|
|
5430
6977
|
}
|
|
5431
6978
|
|
|
6979
|
+
.aiProfileGroupSignatureSwatch {
|
|
6980
|
+
width: 8px;
|
|
6981
|
+
height: 8px;
|
|
6982
|
+
border-radius: var(--radius-full);
|
|
6983
|
+
box-shadow: none;
|
|
6984
|
+
}
|
|
6985
|
+
|
|
6986
|
+
.aiProfileSignatureColorButton {
|
|
6987
|
+
display: inline-flex;
|
|
6988
|
+
align-items: center;
|
|
6989
|
+
gap: 7px;
|
|
6990
|
+
padding: 3px 6px;
|
|
6991
|
+
border: 1px solid transparent;
|
|
6992
|
+
border-radius: 6px;
|
|
6993
|
+
background: transparent;
|
|
6994
|
+
color: inherit;
|
|
6995
|
+
font: inherit;
|
|
6996
|
+
cursor: pointer;
|
|
6997
|
+
}
|
|
6998
|
+
|
|
6999
|
+
.aiProfileSignatureColorButton:hover:not(:disabled),
|
|
7000
|
+
.aiProfileSignatureColorButton:focus-visible {
|
|
7001
|
+
border-color: var(--border-primary);
|
|
7002
|
+
background: var(--surface-hover, rgba(255, 255, 255, 0.05));
|
|
7003
|
+
}
|
|
7004
|
+
|
|
7005
|
+
.aiProfileColorPicker {
|
|
7006
|
+
display: flex;
|
|
7007
|
+
flex-wrap: wrap;
|
|
7008
|
+
align-items: center;
|
|
7009
|
+
gap: 7px;
|
|
7010
|
+
margin-top: 8px;
|
|
7011
|
+
}
|
|
7012
|
+
|
|
7013
|
+
.aiProfileColorOption {
|
|
7014
|
+
width: 24px;
|
|
7015
|
+
height: 24px;
|
|
7016
|
+
padding: 0;
|
|
7017
|
+
border: 2px solid var(--surface-primary, #fff);
|
|
7018
|
+
border-radius: 7px;
|
|
7019
|
+
box-shadow: 0 0 0 1px var(--border-primary);
|
|
7020
|
+
cursor: pointer;
|
|
7021
|
+
}
|
|
7022
|
+
|
|
7023
|
+
.aiProfileColorOption[aria-pressed='true'] {
|
|
7024
|
+
box-shadow: 0 0 0 2px var(--text-primary);
|
|
7025
|
+
}
|
|
7026
|
+
|
|
5432
7027
|
.aiProfileDetailDataList {
|
|
5433
7028
|
display: grid;
|
|
5434
7029
|
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
|
|
@@ -5627,9 +7222,9 @@
|
|
|
5627
7222
|
display: flex;
|
|
5628
7223
|
align-items: flex-start;
|
|
5629
7224
|
gap: 6px;
|
|
5630
|
-
border: 1px solid
|
|
5631
|
-
background:
|
|
5632
|
-
color:
|
|
7225
|
+
border: 1px solid color-mix(in srgb, var(--status-error) 35%, transparent);
|
|
7226
|
+
background: var(--status-error-bg);
|
|
7227
|
+
color: var(--status-error);
|
|
5633
7228
|
border-radius: 10px;
|
|
5634
7229
|
padding: 8px 10px;
|
|
5635
7230
|
font-size: 12px;
|
|
@@ -5637,22 +7232,25 @@
|
|
|
5637
7232
|
}
|
|
5638
7233
|
|
|
5639
7234
|
@media (max-width: 1100px) {
|
|
5640
|
-
.
|
|
5641
|
-
|
|
5642
|
-
}
|
|
5643
|
-
|
|
5644
|
-
.agentsModuleContent {
|
|
5645
|
-
width: 100%;
|
|
7235
|
+
.taskforceAgentTestGrid {
|
|
7236
|
+
grid-template-columns: minmax(0, 1fr);
|
|
5646
7237
|
}
|
|
5647
7238
|
|
|
5648
7239
|
.aiProfilesExplorer {
|
|
5649
7240
|
grid-template-columns: minmax(0, 1fr);
|
|
5650
|
-
|
|
7241
|
+
overflow-y: auto;
|
|
5651
7242
|
}
|
|
5652
7243
|
|
|
5653
|
-
.
|
|
5654
|
-
max-height: min(
|
|
5655
|
-
|
|
7244
|
+
.aiProfilesRosterPanel {
|
|
7245
|
+
max-height: min(50vh, 440px);
|
|
7246
|
+
border-right: 0;
|
|
7247
|
+
border-bottom: 1px solid var(--border-primary);
|
|
7248
|
+
}
|
|
7249
|
+
|
|
7250
|
+
.aiProfilesDetailViewport {
|
|
7251
|
+
min-height: max-content;
|
|
7252
|
+
padding: 20px;
|
|
7253
|
+
overflow: visible;
|
|
5656
7254
|
}
|
|
5657
7255
|
|
|
5658
7256
|
.aiProfileDetailPane {
|
|
@@ -5664,7 +7262,21 @@
|
|
|
5664
7262
|
}
|
|
5665
7263
|
}
|
|
5666
7264
|
|
|
7265
|
+
@media (max-width: 760px) {
|
|
7266
|
+
.taskforceAgentBehaviorGrid {
|
|
7267
|
+
grid-template-columns: minmax(0, 1fr);
|
|
7268
|
+
}
|
|
7269
|
+
|
|
7270
|
+
.taskforceAgentBehaviorWide {
|
|
7271
|
+
grid-column: auto;
|
|
7272
|
+
}
|
|
7273
|
+
}
|
|
7274
|
+
|
|
5667
7275
|
@media (max-width: 640px) {
|
|
7276
|
+
.taskforceAgentsModuleTrayOpen .taskforceAgentsModuleMain {
|
|
7277
|
+
margin-left: 0;
|
|
7278
|
+
}
|
|
7279
|
+
|
|
5668
7280
|
.aiProfileDetailDataList {
|
|
5669
7281
|
grid-template-columns: 1fr;
|
|
5670
7282
|
}
|