@taskforcehq/taskforce 0.3.327 → 0.3.329
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/dist/Taskforce.module.css +257 -87
- package/dist/TaskforceCore.js +237 -230
- package/dist/annotatedAttachments/AnnotatedAttachmentSessionStore.js +1 -1
- package/dist/cli.js +34 -0
- package/dist/cliCloudTargetGuard.d.ts +5 -0
- package/dist/cliCloudTargetGuard.js +11 -0
- package/dist/components/activity/EntityActivityTimeline.js +15 -5
- package/dist/components/context/AttachmentPreviewHost.js +1 -1
- package/dist/components/context/ContextAttachmentManager.d.ts +3 -0
- package/dist/components/context/ContextAttachmentManager.js +116 -20
- package/dist/components/features/AnnotatedAttachmentWorkspace.js +24 -8
- package/dist/components/features/TaskSettings.d.ts +12 -1
- package/dist/components/features/TaskSettings.js +147 -40
- package/dist/components/features/agentCapabilities/AgentCapabilitiesPrototype.d.ts +1 -1
- package/dist/components/features/planning/PlanningEntitySummary.d.ts +3 -1
- package/dist/components/features/planning/PlanningEntitySummary.js +3 -2
- package/dist/components/features/planning/PlanningLinkPicker.d.ts +3 -1
- package/dist/components/features/planning/PlanningLinkPicker.js +5 -3
- package/dist/components/features/planning/PlanningModule.js +28 -14
- package/dist/components/features/planning/PlanningTaskOrderList.d.ts +1 -1
- package/dist/components/features/planning/PlanningTaskOrderList.js +17 -6
- package/dist/components/features/planning/PlanningVisualIdentity.d.ts +14 -0
- package/dist/components/features/planning/PlanningVisualIdentity.js +106 -0
- package/dist/components/features/planning/planningTaskArrangement.d.ts +1 -0
- package/dist/components/features/planning/planningTaskArrangement.js +5 -5
- package/dist/components/features/planning/planningWorkspaceModel.d.ts +11 -0
- package/dist/components/features/taskforceAgentEditorModel.js +3 -1
- package/dist/components/task/TaskActionHeader.d.ts +2 -1
- package/dist/components/task/TaskActionHeader.js +2 -2
- package/dist/components/task/TaskCard.d.ts +5 -0
- package/dist/components/task/TaskCard.js +101 -13
- package/dist/components/task/TaskContextUpload.d.ts +3 -0
- package/dist/components/task/TaskContextUpload.js +2 -2
- package/dist/components/task/TaskForm.d.ts +4 -0
- package/dist/components/task/TaskForm.js +32 -7
- package/dist/components/task/TaskImageReviews.js +28 -19
- package/dist/components/task/TaskKanban.d.ts +6 -1
- package/dist/components/task/TaskKanban.js +152 -6
- package/dist/components/task/TaskList.d.ts +5 -0
- package/dist/components/task/TaskList.js +3 -3
- package/dist/components/task/TaskStatusActions.js +11 -2
- package/dist/components/task/TaskWorkstreamPicker.js +2 -1
- package/dist/components/ui/DocumentTypeIcon.d.ts +7 -0
- package/dist/components/ui/DocumentTypeIcon.js +8 -0
- package/dist/components/ui/PasswordInput.d.ts +6 -0
- package/dist/components/ui/PasswordInput.js +11 -0
- package/dist/components/ui/TaxonomyDropdown.d.ts +9 -1
- package/dist/components/ui/TaxonomyDropdown.js +30 -3
- package/dist/components/ui/TopNoticeLayer.js +1 -1
- package/dist/components/views/AppShellHeader.js +32 -11
- package/dist/components/views/PlanComparisonPage.js +12 -0
- package/dist/components/views/StandaloneLayout.js +68 -39
- package/dist/components/views/WidgetView.js +10 -7
- package/dist/components/views/panels/PlanningDrawer.d.ts +7 -1
- package/dist/components/views/panels/PlanningDrawer.js +51 -54
- package/dist/components/views/standalone/modals/AccountSettingsModal.js +26 -17
- package/dist/config/envSchema.js +13 -0
- package/dist/config/localServiceCloudTarget.d.ts +10 -0
- package/dist/config/localServiceCloudTarget.js +76 -0
- package/dist/config/localServiceRuntimeContract.d.ts +13 -0
- package/dist/config/localServiceRuntimeContract.js +135 -0
- package/dist/core/AiProfileService.d.ts +1 -0
- package/dist/core/AiProfileService.js +48 -9
- package/dist/core/AttachmentLinkService.js +7 -4
- package/dist/core/DeletedTaskLifecycleService.d.ts +5 -0
- package/dist/core/DeletedTaskLifecycleService.js +55 -3
- package/dist/core/McpTokenService.d.ts +4 -0
- package/dist/core/McpTokenService.js +52 -0
- package/dist/core/TaskAttachmentLinksDurableMutationService.d.ts +8 -2
- package/dist/core/TaskAttachmentLinksDurableMutationService.js +51 -18
- package/dist/core/Taskforce.d.ts +124 -2
- package/dist/core/Taskforce.js +1175 -87
- package/dist/core/types.d.ts +8 -1
- package/dist/documentReviews/DocumentReviewCommentStore.d.ts +11 -0
- package/dist/documentReviews/DocumentReviewCommentStore.js +35 -2
- package/dist/documentReviews/service.d.ts +4 -0
- package/dist/documentReviews/service.js +141 -46
- package/dist/hooks/sync/useDurableLocalOutboxDrain.d.ts +1 -1
- package/dist/hooks/sync/useDurableTaskCreateMutation.js +1 -1
- package/dist/hooks/sync/useDurableTaskMetadataMutation.d.ts +1 -0
- package/dist/hooks/sync/useDurableTaskMetadataMutation.js +1 -0
- package/dist/hooks/sync/useDurableTaskStatusMutation.d.ts +1 -0
- package/dist/hooks/tasks/taskHttpMutation.js +1 -0
- package/dist/hooks/tasks/useCloudTaskSearch.d.ts +12 -0
- package/dist/hooks/tasks/useCloudTaskSearch.js +71 -0
- package/dist/hooks/tasks/useTaskDescriptionImageDraftRecovery.d.ts +16 -0
- package/dist/hooks/tasks/useTaskDescriptionImageDraftRecovery.js +197 -0
- package/dist/hooks/tasks/useTaskEditorNavigation.d.ts +16 -3
- package/dist/hooks/tasks/useTaskEditorNavigation.js +72 -13
- package/dist/hooks/tasks/useTaskFormActions.d.ts +9 -0
- package/dist/hooks/tasks/useTaskFormActions.js +96 -17
- package/dist/hooks/ui/useSettingsModel.d.ts +24 -2
- package/dist/hooks/ui/useSettingsModel.js +13 -2
- package/dist/hooks/ui/useSettingsPersistence.d.ts +12 -1
- package/dist/hooks/ui/useSettingsPersistence.js +74 -47
- package/dist/hooks/useFilterSort.d.ts +7 -3
- package/dist/hooks/useFilterSort.js +15 -5
- package/dist/hooks/useTaskData.d.ts +10 -1
- package/dist/hooks/useTaskData.js +216 -7
- package/dist/hooks/useTaskMutations.d.ts +10 -2
- package/dist/hooks/useTaskMutations.js +223 -43
- package/dist/hooks/useTaskforce.d.ts +94 -57
- package/dist/hooks/useTaskforce.js +428 -16
- package/dist/hooks/useUiNotice.d.ts +4 -0
- package/dist/hooks/useUiNotice.js +4 -0
- package/dist/mcp/adminWorkspaceRegistrar.js +3 -3
- package/dist/mcp/canonicalAssetHelpers.d.ts +13 -0
- package/dist/mcp/canonicalAssetHelpers.js +39 -5
- package/dist/mcp/collaborationRegistrar.js +15 -13
- package/dist/mcp/documentAssetRegistrar.js +60 -44
- package/dist/mcp/documentHelpers.d.ts +1 -0
- package/dist/mcp/documentHelpers.js +7 -3
- package/dist/mcp/localServiceProxy.js +4 -1
- package/dist/mcp/runtime.d.ts +16 -0
- package/dist/mcp/runtime.js +735 -210
- package/dist/mcp/taskAttachmentCommandAdapter.d.ts +2 -0
- package/dist/mcp/taskAttachmentCommandAdapter.js +14 -8
- package/dist/mcp/taskPlanningRegistrar.js +78 -67
- package/dist/mcp/toolCallCompatibility.js +38 -1
- package/dist/mcp/toolCatalog.d.ts +1 -0
- package/dist/mcp/toolRegistry.js +2 -2
- package/dist/migrations/taskSchemaMigrations.js +47 -0
- package/dist/runtime/appGateDefinitions.d.ts +30 -6
- package/dist/runtime/appGateDefinitions.js +6 -6
- package/dist/runtime/appGates.d.ts +12 -13
- package/dist/runtime/appGates.js +29 -13
- package/dist/runtime/nodeAppGates.d.ts +8 -0
- package/dist/runtime/nodeAppGates.js +27 -0
- package/dist/server/appAccess.d.ts +12 -0
- package/dist/server/appAccess.js +21 -0
- package/dist/server/authorizedWorkspaceAccess.d.ts +12 -0
- package/dist/server/authorizedWorkspaceAccess.js +40 -0
- package/dist/server/cloudCollectionRead.d.ts +25 -0
- package/dist/server/cloudCollectionRead.js +120 -0
- package/dist/server/cloudCollectionReadPool.d.ts +52 -0
- package/dist/server/cloudCollectionReadPool.js +140 -0
- package/dist/server/cloudCollectionReadWorker.d.ts +1 -0
- package/dist/server/cloudCollectionReadWorker.js +36 -0
- package/dist/server/index.d.ts +6 -11
- package/dist/server/index.js +67 -42
- package/dist/server/localServiceLease.d.ts +6 -0
- package/dist/server/localServiceLease.js +17 -1
- package/dist/server/localWorkspaceSyncServerRuntime.js +10 -3
- package/dist/server/rateLimit.d.ts +1 -0
- package/dist/server/rateLimit.js +4 -0
- package/dist/server/realtimeSyncWs.js +36 -12
- package/dist/server/routes/admin.js +1 -0
- package/dist/server/routes/agentRoles.js +3 -2
- package/dist/server/routes/agentSkills.js +3 -2
- package/dist/server/routes/agents.js +118 -16
- package/dist/server/routes/annotatedAttachments.js +3 -2
- package/dist/server/routes/auth.js +3 -1
- package/dist/server/routes/documents.d.ts +5 -2
- package/dist/server/routes/documents.js +160 -13
- package/dist/server/routes/durableTaskHttpRouters.d.ts +11 -2
- package/dist/server/routes/durableTaskHttpRouters.js +2 -2
- package/dist/server/routes/localService.js +4 -0
- package/dist/server/routes/primitives.d.ts +4 -0
- package/dist/server/routes/shared.d.ts +24 -0
- package/dist/server/routes/shared.js +114 -18
- package/dist/server/routes/sync.js +22 -0
- package/dist/server/routes/syncAuxRoutes.js +5 -2
- package/dist/server/routes/syncPullApplyRoutes.js +23 -4
- package/dist/server/routes/syncV3FeedRoutes.js +22 -18
- package/dist/server/routes/syncV3LocalCaptureRoutes.js +48 -4
- package/dist/server/routes/syncV3LocalFeedApplyRoutes.d.ts +1 -0
- package/dist/server/routes/syncV3LocalFeedApplyRoutes.js +26 -0
- package/dist/server/routes/syncV3OperationRoutes.js +27 -2
- package/dist/server/routes/tasks.js +299 -97
- package/dist/server/routes/workspaces.js +43 -1
- package/dist/server/routes.js +35 -7
- package/dist/server/workspaceDeletionAdmission.d.ts +23 -0
- package/dist/server/workspaceDeletionAdmission.js +50 -0
- package/dist/service/localServiceCli.js +52 -25
- package/dist/service/localServiceClientLifecycle.js +93 -6
- package/dist/services/codexAppServerModelGateway.d.ts +112 -0
- package/dist/services/codexAppServerModelGateway.js +438 -0
- package/dist/services/taskforceAgentMcpBridge.d.ts +7 -1
- package/dist/services/taskforceAgentMcpBridge.js +23 -3
- package/dist/shared/planningIdentity.d.ts +20 -0
- package/dist/shared/planningIdentity.js +79 -0
- package/dist/shared/taskforceAgentDefinition.js +7 -1
- package/dist/shared/taskforceAgentModels.d.ts +1 -0
- package/dist/shared/taskforceAgentModels.js +30 -1
- package/dist/storage/postgresAdapter.d.ts +20 -3
- package/dist/storage/postgresAdapter.js +110 -14
- package/dist/storage/postgresRequestDiagnostics.d.ts +8 -0
- package/dist/storage/postgresRequestDiagnostics.js +24 -0
- package/dist/storage/postgresWorker.js +13 -4
- package/dist/storage/postgresWorkerProtocol.d.ts +29 -0
- package/dist/storage/postgresWorkerProtocol.js +30 -0
- package/dist/storage/workspaceAssetStore.d.ts +32 -0
- package/dist/storage/workspaceAssetStore.js +70 -0
- package/dist/sync/cloudSyncApi.d.ts +4 -1
- package/dist/sync/cloudSyncApi.js +7 -2
- package/dist/sync/contentSyncState.d.ts +1 -1
- package/dist/sync/coordinator/localSyncExecutionPermitStore.d.ts +17 -0
- package/dist/sync/coordinator/localSyncExecutionPermitStore.js +77 -23
- package/dist/sync/coordinator/localWorkspaceSyncRunner.js +6 -2
- package/dist/sync/coordinator/workspaceSyncTransportGateway.js +4 -2
- package/dist/sync/engine/workspaceSyncEngineBrowserGatewayRemoteServices.js +20 -2
- package/dist/sync/engine/workspaceSyncEngineLocalServices.d.ts +4 -0
- package/dist/sync/engine/workspaceSyncEngineLocalServices.js +11 -0
- package/dist/sync/engine/workspaceSyncEngineRemoteServices.d.ts +16 -0
- package/dist/sync/engine/workspaceSyncEngineRemoteServices.js +2 -1
- package/dist/sync/engine/workspaceSyncEngineServerRemoteServices.d.ts +1 -1
- package/dist/sync/engine/workspaceSyncEngineServerRemoteServices.js +46 -4
- package/dist/sync/engine/workspaceSyncEngineServerRunnerOperations.d.ts +3 -1
- package/dist/sync/engine/workspaceSyncEngineServerRunnerOperations.js +51 -11
- package/dist/sync/engine/workspaceSyncEngineTransfers.d.ts +1 -1
- package/dist/sync/engine/workspaceSyncEngineTransfers.js +8 -3
- package/dist/sync/engine/workspaceSyncV2ChangeDispatcher.js +2 -0
- package/dist/sync/syncApplyHandlers.d.ts +3 -1
- package/dist/sync/syncApplyHandlers.js +29 -0
- package/dist/sync/syncService.d.ts +2 -0
- package/dist/sync/syncService.js +13 -1
- package/dist/sync/taskSyncPayload.d.ts +1 -0
- package/dist/sync/taskSyncPayload.js +6 -0
- package/dist/sync/v3/combinedFeedCapability.js +4 -0
- package/dist/sync/v3/durableTaskAttachmentLinksMutationRouter.d.ts +3 -0
- package/dist/sync/v3/durableTaskAttachmentLinksMutationRouter.js +31 -3
- package/dist/sync/v3/durableTaskChecklistMutationRouter.d.ts +2 -0
- package/dist/sync/v3/durableTaskChecklistMutationRouter.js +4 -0
- package/dist/sync/v3/durableTaskHttpBulkMutationRouter.d.ts +1 -0
- package/dist/sync/v3/durableTaskHttpBulkMutationRouter.js +47 -12
- package/dist/sync/v3/durableTaskHttpRootMutationRouter.d.ts +5 -3
- package/dist/sync/v3/durableTaskHttpRootMutationRouter.js +27 -2
- package/dist/sync/v3/localInitiativeOutboxService.js +4 -2
- package/dist/sync/v3/localOutboxDispatcher.js +5 -1
- package/dist/sync/v3/localTaskAttachmentLinksOutboxHandler.js +12 -2
- package/dist/sync/v3/localTaskAttachmentLinksOutboxService.d.ts +3 -0
- package/dist/sync/v3/localTaskAttachmentLinksOutboxService.js +62 -10
- package/dist/sync/v3/localTaskCreateOutboxService.js +15 -6
- package/dist/sync/v3/localTaskMetadataClient.d.ts +1 -0
- package/dist/sync/v3/localTaskMetadataClient.js +1 -0
- package/dist/sync/v3/localTaskMetadataOutboxHandler.js +5 -1
- package/dist/sync/v3/localTaskMetadataOutboxService.d.ts +2 -0
- package/dist/sync/v3/localTaskMetadataOutboxService.js +7 -0
- package/dist/sync/v3/localTaskRestoreOutboxService.js +14 -6
- package/dist/sync/v3/localTaskStatusClient.d.ts +1 -0
- package/dist/sync/v3/localTaskStatusClient.js +6 -1
- package/dist/sync/v3/localTaskStatusOutboxService.d.ts +2 -0
- package/dist/sync/v3/localTaskStatusOutboxService.js +54 -13
- package/dist/sync/v3/localWorkstreamOutboxService.js +4 -2
- package/dist/sync/v3/syncDurabilityStore.d.ts +15 -0
- package/dist/sync/v3/syncDurabilityStore.js +201 -43
- package/dist/sync/v3/taskAttachmentLinksMutationService.d.ts +7 -4
- package/dist/sync/v3/taskAttachmentLinksMutationService.js +37 -12
- package/dist/sync/v3/taskChecklistMutationService.d.ts +4 -2
- package/dist/sync/v3/taskChecklistMutationService.js +4 -0
- package/dist/sync/v3/taskCreateMutationService.d.ts +2 -2
- package/dist/sync/v3/taskCreateMutationService.js +7 -4
- package/dist/sync/v3/taskMetadataCoexistence.js +4 -0
- package/dist/sync/v3/taskMetadataMutationService.d.ts +3 -0
- package/dist/sync/v3/taskMetadataMutationService.js +4 -0
- package/dist/sync/v3/taskRestoreMutationService.d.ts +2 -2
- package/dist/sync/v3/taskRestoreMutationService.js +7 -4
- package/dist/sync/v3/taskStatusMutationService.d.ts +2 -0
- package/dist/sync/v3/taskStatusMutationService.js +4 -0
- package/dist/sync/v3/workflowAssignmentSync.d.ts +1 -0
- package/dist/sync/v3/workflowAssignmentSync.js +3 -0
- package/dist/sync/v3/workspaceSyncV2ProjectionExclusions.d.ts +1 -1
- package/dist/sync/v3/workspaceSyncV2ProjectionExclusions.js +14 -12
- package/dist/sync/v3/workspaceSyncV3AttachmentApplyObligationStore.d.ts +11 -0
- package/dist/sync/v3/workspaceSyncV3AttachmentApplyObligationStore.js +27 -10
- package/dist/sync/v3/workspaceSyncV3AttachmentAssetHydration.d.ts +2 -1
- package/dist/sync/v3/workspaceSyncV3AttachmentAssetHydration.js +52 -10
- package/dist/sync/v3/workspaceSyncV3CloudOperationHandler.js +10 -1
- package/dist/sync/v3/workspaceSyncV3CombinedFeedOrchestrator.js +15 -4
- package/dist/sync/v3/workspaceSyncV3CombinedLocalApply.js +66 -13
- package/dist/sync/v3/workspaceSyncV3CombinedRepairBaseline.d.ts +11 -0
- package/dist/sync/v3/workspaceSyncV3CombinedRepairBaseline.js +57 -22
- package/dist/sync/v3/workspaceSyncV3CombinedRepairMaterialization.d.ts +10 -4
- package/dist/sync/v3/workspaceSyncV3CombinedRepairMaterialization.js +124 -51
- package/dist/sync/v3/workspaceSyncV3CombinedRepairSnapshot.d.ts +10 -0
- package/dist/sync/v3/workspaceSyncV3CombinedRepairSnapshot.js +120 -28
- package/dist/sync/v3/workspaceSyncV3CombinedWireContract.d.ts +3 -1
- package/dist/sync/v3/workspaceSyncV3CombinedWireContract.js +18 -0
- package/dist/sync/v3/workspaceSyncV3CoverageRegistry.js +6 -0
- package/dist/sync/v3/workspaceSyncV3FeedProfile.d.ts +1 -1
- package/dist/sync/v3/workspaceSyncV3LegacyBoundaryAttestation.d.ts +1 -0
- package/dist/sync/v3/workspaceSyncV3LegacyBoundaryAttestation.js +23 -10
- package/dist/sync/v3/workspaceSyncV3NestedTaskApply.d.ts +3 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskApply.js +64 -13
- package/dist/sync/v3/workspaceSyncV3NestedTaskCodecs.d.ts +9 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskCodecs.js +26 -0
- package/dist/sync/v3/workspaceSyncV3NestedTaskProjection.d.ts +15 -5
- package/dist/sync/v3/workspaceSyncV3NestedTaskProjection.js +50 -14
- package/dist/sync/v3/workspaceSyncV3NestedTaskRepairSnapshot.d.ts +2 -1
- package/dist/sync/v3/workspaceSyncV3NestedTaskRepairSnapshot.js +11 -3
- package/dist/sync/v3/workspaceSyncV3OperationProtocol.d.ts +3 -0
- package/dist/sync/v3/workspaceSyncV3OperatorDiagnostics.d.ts +2 -0
- package/dist/sync/v3/workspaceSyncV3OperatorDiagnostics.js +19 -7
- package/dist/sync/v3/workspaceSyncV3RepairSqlBatching.d.ts +2 -0
- package/dist/sync/v3/workspaceSyncV3RepairSqlBatching.js +10 -0
- package/dist/sync/v3/workspaceSyncV3TaskCommentAudit.js +9 -2
- package/dist/sync/v3/workspaceSyncV3TaskCoverCoverage.d.ts +7 -0
- package/dist/sync/v3/workspaceSyncV3TaskCoverCoverage.js +37 -0
- package/dist/sync/v3/workspaceSyncV3TaskCoverWireContract.d.ts +6 -0
- package/dist/sync/v3/workspaceSyncV3TaskCoverWireContract.js +9 -0
- package/dist/sync/v3/workspaceSyncV3TaskRootProjection.d.ts +1 -1
- package/dist/sync/v3/workspaceSyncV3TaskRootProjection.js +1 -1
- package/dist/sync/workspacePullFeed.d.ts +6 -1
- package/dist/sync/workspacePullFeed.js +174 -162
- package/dist/sync/workspaceRepair.d.ts +3 -0
- package/dist/sync/workspaceRepair.js +67 -6
- package/dist/sync/workspaceSyncModel.d.ts +11 -0
- package/dist/sync/workspaceSyncModel.js +27 -2
- package/dist/types.d.ts +55 -1
- package/dist/types.js +6 -0
- package/dist/ui/assets/{AiIdentityRosterCard-DB1BLO_j.js → AiIdentityRosterCard-BZM4aQnM.js} +1 -1
- package/dist/ui/assets/AiProfilesModule-BbAEWtHH.js +1 -0
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-B68Wg-RV.js +3 -0
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-TzYu7pkG.css +1 -0
- package/dist/ui/assets/AssetTraySortControl-C8Rztyal.js +1 -0
- package/dist/ui/assets/ContextAttachmentManager-Cj3c7X9y.js +3 -0
- package/dist/ui/assets/{DocumentWorkspace-BC7sy5TG.js → DocumentWorkspace-B5uvzems.js} +4 -4
- package/dist/ui/assets/EntityActivityTimeline-BVFvCB5R.js +1 -0
- package/dist/ui/assets/PlanningModule-B5DWQOGz.js +1 -0
- package/dist/ui/assets/PlanningModule-CoIR9hbV.css +1 -0
- package/dist/ui/assets/PlansPage-AY4cGWco.js +1 -0
- package/dist/ui/assets/TaskContextUpload-DZxTVesW.js +1 -0
- package/dist/ui/assets/TaskContextUpload-qmBeUw3u.css +1 -0
- package/dist/ui/assets/TaskSettings-BeWAuyZj.js +12 -0
- package/dist/ui/assets/{TaskforceAgentsModule-CkAxW19K.js → TaskforceAgentsModule-BifCYtjR.js} +6 -6
- package/dist/ui/assets/WorkflowManagerModule-DEr5di_r.js +1 -0
- package/dist/ui/assets/index-I5zhdtgt.js +7 -0
- package/dist/ui/assets/index-VRFsx3wz.css +1 -0
- package/dist/ui/assets/{vendor-icons-B8ZNsH1g.js → vendor-icons-D9Lpw-j4.js} +1 -1
- package/dist/ui/index.html +3 -3
- package/dist/utils/constants.d.ts +2 -2
- package/dist/utils/constants.js +1 -1
- package/dist/utils/contextAttachmentUpload.d.ts +2 -0
- package/dist/utils/contextAttachmentUpload.js +7 -0
- package/dist/utils/contextFiles.d.ts +1 -1
- package/dist/utils/contextFiles.js +4 -4
- package/dist/utils/taskActivity.d.ts +3 -2
- package/dist/utils/taskActivity.js +19 -2
- package/dist/utils/taskEditorReconciliation.d.ts +40 -0
- package/dist/utils/taskEditorReconciliation.js +217 -0
- package/dist/utils/taskNormalization.d.ts +1 -0
- package/dist/utils/taskNormalization.js +39 -0
- package/dist/utils/taskSearch.js +2 -2
- package/dist/utils/uiNotice.d.ts +4 -0
- package/package.json +21 -4
- package/dist/ui/assets/AiProfilesModule-DPxQeF9N.js +0 -1
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-CBRZ8rca.css +0 -1
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-DHNYaNg6.js +0 -3
- package/dist/ui/assets/AssetTraySortControl-DphbyHVc.js +0 -1
- package/dist/ui/assets/ContextAttachmentManager-CMxSzHqc.js +0 -3
- package/dist/ui/assets/EntityActivityTimeline-pJ2ZjZ-k.js +0 -1
- package/dist/ui/assets/PlanningModule-CeTqXMMz.css +0 -1
- package/dist/ui/assets/PlanningModule-t5GbvVR9.js +0 -1
- package/dist/ui/assets/PlansPage-BVH_NfgT.js +0 -1
- package/dist/ui/assets/TaskContextUpload-Ds4LnDzV.css +0 -1
- package/dist/ui/assets/TaskContextUpload-bl4fOOUz.js +0 -1
- package/dist/ui/assets/TaskSettings-xVsxSa0g.js +0 -12
- package/dist/ui/assets/WorkflowManagerModule-BKqIGVnF.js +0 -1
- package/dist/ui/assets/index-BzJlVnNS.css +0 -1
- package/dist/ui/assets/index-Cx7vZJHL.js +0 -7
|
@@ -172,7 +172,6 @@
|
|
|
172
172
|
}
|
|
173
173
|
|
|
174
174
|
.projectSlash {
|
|
175
|
-
margin: 0 4px;
|
|
176
175
|
opacity: 0.3;
|
|
177
176
|
font-weight: 300;
|
|
178
177
|
color: var(--text-muted);
|
|
@@ -181,6 +180,7 @@
|
|
|
181
180
|
.projectNameGroup {
|
|
182
181
|
display: inline-flex;
|
|
183
182
|
align-items: center;
|
|
183
|
+
gap: 6px;
|
|
184
184
|
flex: 0 0 auto;
|
|
185
185
|
min-width: 0;
|
|
186
186
|
}
|
|
@@ -194,13 +194,16 @@
|
|
|
194
194
|
}
|
|
195
195
|
|
|
196
196
|
.projectName {
|
|
197
|
+
appearance: none;
|
|
197
198
|
font-size: 18px;
|
|
199
|
+
font-family: inherit;
|
|
198
200
|
font-weight: 600;
|
|
201
|
+
font-style: italic;
|
|
199
202
|
color: var(--chrome-project-pill-text);
|
|
200
|
-
background:
|
|
201
|
-
padding: 2px
|
|
202
|
-
border
|
|
203
|
-
border:
|
|
203
|
+
background: transparent;
|
|
204
|
+
padding: 2px;
|
|
205
|
+
border: 0;
|
|
206
|
+
border-radius: 0;
|
|
204
207
|
letter-spacing: 0.02em;
|
|
205
208
|
text-transform: uppercase;
|
|
206
209
|
display: inline-flex;
|
|
@@ -212,6 +215,36 @@
|
|
|
212
215
|
white-space: nowrap;
|
|
213
216
|
}
|
|
214
217
|
|
|
218
|
+
button.projectName {
|
|
219
|
+
cursor: pointer;
|
|
220
|
+
transition: color var(--transition-base);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
button.projectName:hover {
|
|
224
|
+
color: var(--brand-primary-strong);
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
button.projectName:focus-visible {
|
|
228
|
+
outline: 2px solid var(--field-focus-border, var(--brand-primary));
|
|
229
|
+
outline-offset: 3px;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.projectNameCopied {
|
|
233
|
+
color: var(--status-success-text);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.projectNameCopyFeedback {
|
|
237
|
+
position: absolute;
|
|
238
|
+
width: 1px;
|
|
239
|
+
height: 1px;
|
|
240
|
+
padding: 0;
|
|
241
|
+
margin: -1px;
|
|
242
|
+
overflow: hidden;
|
|
243
|
+
clip: rect(0, 0, 0, 0);
|
|
244
|
+
white-space: nowrap;
|
|
245
|
+
border: 0;
|
|
246
|
+
}
|
|
247
|
+
|
|
215
248
|
.taskCountBadge {
|
|
216
249
|
display: inline-flex;
|
|
217
250
|
align-items: center;
|
|
@@ -959,6 +992,15 @@
|
|
|
959
992
|
transform: scale(1.1);
|
|
960
993
|
}
|
|
961
994
|
|
|
995
|
+
.restoreTaskBtn {
|
|
996
|
+
background: rgba(59, 130, 246, 0.1) !important;
|
|
997
|
+
color: #3b82f6 !important;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.restoreTaskBtn:hover {
|
|
1001
|
+
background: rgba(59, 130, 246, 0.25) !important;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
962
1004
|
.startWorkBtn {
|
|
963
1005
|
background: rgba(59, 130, 246, 0.1) !important;
|
|
964
1006
|
color: #3b82f6 !important;
|
|
@@ -997,15 +1039,6 @@
|
|
|
997
1039
|
}
|
|
998
1040
|
|
|
999
1041
|
|
|
1000
|
-
.archiveTaskBtn {
|
|
1001
|
-
background: rgba(59, 130, 246, 0.1) !important;
|
|
1002
|
-
color: #3b82f6 !important;
|
|
1003
|
-
}
|
|
1004
|
-
|
|
1005
|
-
.archiveTaskBtn:hover {
|
|
1006
|
-
background: rgba(59, 130, 246, 0.25) !important;
|
|
1007
|
-
}
|
|
1008
|
-
|
|
1009
1042
|
.bulkArchiveBtn {
|
|
1010
1043
|
display: flex;
|
|
1011
1044
|
align-items: center;
|
|
@@ -1137,16 +1170,35 @@
|
|
|
1137
1170
|
|
|
1138
1171
|
.settingsTabs {
|
|
1139
1172
|
display: flex;
|
|
1140
|
-
padding: 12px 1.25rem 0 1.25rem;
|
|
1141
|
-
gap: 4px;
|
|
1142
|
-
background: var(--bg-secondary);
|
|
1143
|
-
border-bottom: 1px solid var(--border-primary);
|
|
1144
1173
|
position: sticky;
|
|
1145
1174
|
top: 0;
|
|
1146
1175
|
z-index: 20;
|
|
1176
|
+
align-items: flex-end;
|
|
1177
|
+
min-width: 0;
|
|
1178
|
+
min-height: 42px;
|
|
1179
|
+
padding: 0 4px;
|
|
1180
|
+
gap: 4px;
|
|
1181
|
+
background: transparent;
|
|
1147
1182
|
flex-shrink: 0;
|
|
1148
1183
|
overflow-x: auto;
|
|
1149
1184
|
overflow-y: hidden;
|
|
1185
|
+
scrollbar-width: none;
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
.settingsTabs::after {
|
|
1189
|
+
content: '';
|
|
1190
|
+
position: absolute;
|
|
1191
|
+
z-index: 0;
|
|
1192
|
+
right: 4px;
|
|
1193
|
+
bottom: 0;
|
|
1194
|
+
left: 4px;
|
|
1195
|
+
height: 1px;
|
|
1196
|
+
background: var(--border-default);
|
|
1197
|
+
pointer-events: none;
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
.settingsTabs::-webkit-scrollbar {
|
|
1201
|
+
display: none;
|
|
1150
1202
|
}
|
|
1151
1203
|
|
|
1152
1204
|
.settingsLayout {
|
|
@@ -1276,35 +1328,57 @@
|
|
|
1276
1328
|
}
|
|
1277
1329
|
|
|
1278
1330
|
.settingsTabBtn {
|
|
1279
|
-
|
|
1331
|
+
appearance: none;
|
|
1332
|
+
position: relative;
|
|
1333
|
+
z-index: 1;
|
|
1334
|
+
min-width: 88px;
|
|
1335
|
+
min-height: 38px;
|
|
1336
|
+
padding: 0 18px;
|
|
1280
1337
|
background: transparent;
|
|
1281
|
-
border:
|
|
1282
|
-
border-bottom:
|
|
1283
|
-
|
|
1284
|
-
|
|
1338
|
+
border: 1px solid transparent;
|
|
1339
|
+
border-bottom: 0;
|
|
1340
|
+
border-radius: var(--radius-md) var(--radius-md) 0 0;
|
|
1341
|
+
color: var(--text-helper);
|
|
1342
|
+
font: inherit;
|
|
1343
|
+
font-size: 0.75rem;
|
|
1285
1344
|
font-weight: 600;
|
|
1286
|
-
|
|
1287
|
-
letter-spacing: 0.03em;
|
|
1345
|
+
letter-spacing: 0.02em;
|
|
1288
1346
|
cursor: pointer;
|
|
1289
|
-
display: flex;
|
|
1290
|
-
align-items: center;
|
|
1291
|
-
gap: 8px;
|
|
1292
|
-
transition: all 0.2s;
|
|
1293
|
-
border-top-left-radius: 8px;
|
|
1294
|
-
border-top-right-radius: 8px;
|
|
1295
1347
|
flex-shrink: 0;
|
|
1296
1348
|
white-space: nowrap;
|
|
1349
|
+
transition:
|
|
1350
|
+
background-color var(--transition-base),
|
|
1351
|
+
border-color var(--transition-base),
|
|
1352
|
+
color var(--transition-base);
|
|
1297
1353
|
}
|
|
1298
1354
|
|
|
1299
|
-
.settingsTabBtn:hover {
|
|
1300
|
-
|
|
1301
|
-
|
|
1355
|
+
.settingsTabBtn:hover:not(.settingsTabBtnActive) {
|
|
1356
|
+
background: var(--surface-inset);
|
|
1357
|
+
border-color: color-mix(in srgb, var(--border-default) 72%, transparent);
|
|
1358
|
+
color: var(--text-secondary);
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
.settingsTabBtn:focus-visible {
|
|
1362
|
+
z-index: 2;
|
|
1363
|
+
outline: 2px solid var(--brand-primary);
|
|
1364
|
+
outline-offset: -3px;
|
|
1302
1365
|
}
|
|
1303
1366
|
|
|
1304
1367
|
.settingsTabBtnActive {
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1368
|
+
margin-bottom: -1px;
|
|
1369
|
+
background: var(--surface-modal);
|
|
1370
|
+
border-color: var(--border-default);
|
|
1371
|
+
color: var(--brand-primary-strong);
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
.settingsTabBtnActive::after {
|
|
1375
|
+
content: '';
|
|
1376
|
+
position: absolute;
|
|
1377
|
+
right: 0;
|
|
1378
|
+
bottom: -1px;
|
|
1379
|
+
left: 0;
|
|
1380
|
+
height: 2px;
|
|
1381
|
+
background: var(--surface-modal);
|
|
1308
1382
|
}
|
|
1309
1383
|
|
|
1310
1384
|
.settingsContent {
|
|
@@ -1325,12 +1399,10 @@
|
|
|
1325
1399
|
}
|
|
1326
1400
|
|
|
1327
1401
|
.settingsTabMcpOnly .settingsTabs {
|
|
1328
|
-
margin: 0
|
|
1329
|
-
padding:
|
|
1330
|
-
background:
|
|
1331
|
-
box-shadow:
|
|
1332
|
-
0 -16px 0 16px var(--bg-secondary),
|
|
1333
|
-
0 10px 18px color-mix(in srgb, var(--bg-secondary) 92%, transparent);
|
|
1402
|
+
margin: 0;
|
|
1403
|
+
padding: 0 4px;
|
|
1404
|
+
background: transparent;
|
|
1405
|
+
box-shadow: none;
|
|
1334
1406
|
}
|
|
1335
1407
|
|
|
1336
1408
|
.mcpRegistrationHint {
|
|
@@ -1533,6 +1605,116 @@
|
|
|
1533
1605
|
gap: 0.5rem;
|
|
1534
1606
|
}
|
|
1535
1607
|
|
|
1608
|
+
.taskCardSettingsLayout {
|
|
1609
|
+
display: grid;
|
|
1610
|
+
grid-template-columns: minmax(13rem, 16rem) minmax(17rem, 20rem);
|
|
1611
|
+
align-items: start;
|
|
1612
|
+
gap: var(--space-2xl);
|
|
1613
|
+
width: min(100%, 38rem);
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
.taskCardDependentSetting {
|
|
1617
|
+
margin-left: var(--space-xl);
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
.taskCardSettingWithHelp {
|
|
1621
|
+
display: flex;
|
|
1622
|
+
flex-direction: column;
|
|
1623
|
+
gap: 2px;
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
.taskCardSettingHelp {
|
|
1627
|
+
margin-left: 23px;
|
|
1628
|
+
color: var(--text-helper);
|
|
1629
|
+
font-size: 10px;
|
|
1630
|
+
line-height: 1.3;
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.taskCardSettingsPreview {
|
|
1634
|
+
display: flex;
|
|
1635
|
+
flex-direction: column;
|
|
1636
|
+
gap: var(--space-md);
|
|
1637
|
+
min-width: 0;
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
.taskCardSettingsPreviewFrame {
|
|
1641
|
+
min-width: 0;
|
|
1642
|
+
pointer-events: none;
|
|
1643
|
+
user-select: none;
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
@media (max-width: 720px) {
|
|
1647
|
+
.taskCardSettingsLayout {
|
|
1648
|
+
grid-template-columns: minmax(0, 1fr);
|
|
1649
|
+
gap: var(--space-xl);
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
.taskCardSettingsPreview {
|
|
1653
|
+
width: min(100%, 20rem);
|
|
1654
|
+
}
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.workspaceIdentity {
|
|
1658
|
+
display: grid;
|
|
1659
|
+
grid-template-columns: 7.5rem minmax(0, 1fr);
|
|
1660
|
+
align-items: center;
|
|
1661
|
+
gap: var(--space-md, 12px);
|
|
1662
|
+
padding-bottom: var(--space-sm, 8px);
|
|
1663
|
+
border-bottom: 1px solid var(--border-divider);
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
.workspaceIdentityValueRow {
|
|
1667
|
+
display: flex;
|
|
1668
|
+
align-items: center;
|
|
1669
|
+
gap: var(--space-sm, 8px);
|
|
1670
|
+
min-width: 0;
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
.workspaceIdentityValue {
|
|
1674
|
+
min-width: 0;
|
|
1675
|
+
overflow: hidden;
|
|
1676
|
+
color: var(--text-body);
|
|
1677
|
+
font-size: var(--text-sm, 14px);
|
|
1678
|
+
text-overflow: ellipsis;
|
|
1679
|
+
white-space: nowrap;
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
.workspaceProfileForm {
|
|
1683
|
+
display: grid;
|
|
1684
|
+
grid-template-columns: 7.5rem minmax(0, 1fr);
|
|
1685
|
+
align-items: center;
|
|
1686
|
+
gap: var(--space-sm, 8px) var(--space-md, 12px);
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
.workspaceProfileTextareaLabel {
|
|
1690
|
+
align-self: start;
|
|
1691
|
+
padding-top: var(--space-md, 12px);
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
.workspaceProfileActions {
|
|
1695
|
+
display: flex;
|
|
1696
|
+
grid-column: 2;
|
|
1697
|
+
justify-content: flex-end;
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
@media (max-width: 640px) {
|
|
1701
|
+
.workspaceIdentity {
|
|
1702
|
+
grid-template-columns: 6.5rem minmax(0, 1fr);
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
.workspaceProfileForm {
|
|
1706
|
+
grid-template-columns: minmax(0, 1fr);
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
.workspaceProfileTextareaLabel {
|
|
1710
|
+
padding-top: 0;
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1713
|
+
.workspaceProfileActions {
|
|
1714
|
+
grid-column: 1;
|
|
1715
|
+
}
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1536
1718
|
.settingTitle {
|
|
1537
1719
|
font-size: 0.75rem;
|
|
1538
1720
|
font-weight: 600;
|
|
@@ -3415,6 +3597,12 @@
|
|
|
3415
3597
|
transform: scale(1.05);
|
|
3416
3598
|
}
|
|
3417
3599
|
|
|
3600
|
+
.attachmentActionBtnActive {
|
|
3601
|
+
color: var(--brand-primary);
|
|
3602
|
+
border-color: color-mix(in srgb, var(--brand-primary) 65%, white);
|
|
3603
|
+
background: color-mix(in srgb, var(--brand-primary) 32%, rgba(0, 0, 0, 0.82));
|
|
3604
|
+
}
|
|
3605
|
+
|
|
3418
3606
|
.attachmentCaptionInput,
|
|
3419
3607
|
.documentAttachmentCaptionInput {
|
|
3420
3608
|
min-width: 0;
|
|
@@ -3495,6 +3683,15 @@
|
|
|
3495
3683
|
top: calc(100% + 2px);
|
|
3496
3684
|
}
|
|
3497
3685
|
|
|
3686
|
+
.attachmentImageActionsMenu {
|
|
3687
|
+
position: fixed;
|
|
3688
|
+
z-index: calc(var(--z-overlay) + 1);
|
|
3689
|
+
top: auto;
|
|
3690
|
+
right: auto;
|
|
3691
|
+
width: 150px;
|
|
3692
|
+
max-width: calc(100vw - 16px);
|
|
3693
|
+
}
|
|
3694
|
+
|
|
3498
3695
|
.contextMenu .contextDestructiveMenuItem {
|
|
3499
3696
|
color: var(--color-error, #ef4444);
|
|
3500
3697
|
}
|
|
@@ -3652,50 +3849,6 @@
|
|
|
3652
3849
|
color: var(--text-primary, #fff);
|
|
3653
3850
|
}
|
|
3654
3851
|
|
|
3655
|
-
.documentAttachmentType {
|
|
3656
|
-
flex-shrink: 0;
|
|
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;
|
|
3664
|
-
line-height: 1;
|
|
3665
|
-
font-weight: 700;
|
|
3666
|
-
letter-spacing: 0.03em;
|
|
3667
|
-
color: var(--text-muted, #94a3b8);
|
|
3668
|
-
padding: 0;
|
|
3669
|
-
}
|
|
3670
|
-
|
|
3671
|
-
.documentAttachmentTypeOutline {
|
|
3672
|
-
position: absolute;
|
|
3673
|
-
inset: 0;
|
|
3674
|
-
width: 28px;
|
|
3675
|
-
height: 28px;
|
|
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;
|
|
3682
|
-
}
|
|
3683
|
-
|
|
3684
|
-
.documentAttachmentTypeFoldFill {
|
|
3685
|
-
fill: color-mix(in srgb, var(--border-primary) 35%, var(--bg-secondary));
|
|
3686
|
-
stroke: none;
|
|
3687
|
-
}
|
|
3688
|
-
|
|
3689
|
-
.documentAttachmentTypeFoldLine {
|
|
3690
|
-
fill: none;
|
|
3691
|
-
}
|
|
3692
|
-
|
|
3693
|
-
.documentAttachmentTypeLabel {
|
|
3694
|
-
position: relative;
|
|
3695
|
-
z-index: 1;
|
|
3696
|
-
transform: translateY(2px);
|
|
3697
|
-
}
|
|
3698
|
-
|
|
3699
3852
|
.brokenImage {
|
|
3700
3853
|
display: flex;
|
|
3701
3854
|
align-items: center;
|
|
@@ -4804,6 +4957,23 @@
|
|
|
4804
4957
|
overflow-x: visible;
|
|
4805
4958
|
}
|
|
4806
4959
|
|
|
4960
|
+
.kanbanDroppableScrollVirtualized {
|
|
4961
|
+
display: block;
|
|
4962
|
+
position: relative;
|
|
4963
|
+
overflow-anchor: none;
|
|
4964
|
+
}
|
|
4965
|
+
|
|
4966
|
+
.kanbanVirtualCanvas {
|
|
4967
|
+
position: relative;
|
|
4968
|
+
width: 100%;
|
|
4969
|
+
}
|
|
4970
|
+
|
|
4971
|
+
.kanbanVirtualRow {
|
|
4972
|
+
position: absolute;
|
|
4973
|
+
left: 0;
|
|
4974
|
+
right: 0;
|
|
4975
|
+
}
|
|
4976
|
+
|
|
4807
4977
|
.kanbanEmpty {
|
|
4808
4978
|
padding: 16px;
|
|
4809
4979
|
background: var(--bg-primary);
|