@taskforcehq/taskforce 0.3.328 → 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 +233 -34
- 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/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/PlanningModule.js +2 -5
- package/dist/components/features/planning/PlanningTaskOrderList.d.ts +1 -1
- package/dist/components/features/planning/PlanningTaskOrderList.js +17 -6
- package/dist/components/features/planning/planningTaskArrangement.d.ts +1 -0
- package/dist/components/features/planning/planningTaskArrangement.js +5 -5
- package/dist/components/features/taskforceAgentEditorModel.js +3 -1
- package/dist/components/task/TaskCard.d.ts +5 -0
- package/dist/components/task/TaskCard.js +65 -10
- package/dist/components/task/TaskImageReviews.js +14 -5
- 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/ui/PasswordInput.d.ts +6 -0
- package/dist/components/ui/PasswordInput.js +11 -0
- 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 +7 -31
- package/dist/components/views/WidgetView.js +3 -3
- package/dist/components/views/panels/PlanningDrawer.js +5 -12
- package/dist/components/views/standalone/modals/AccountSettingsModal.js +26 -17
- package/dist/config/envSchema.js +12 -0
- package/dist/config/localServiceRuntimeContract.d.ts +13 -0
- package/dist/config/localServiceRuntimeContract.js +135 -0
- package/dist/core/AiProfileService.js +46 -8
- package/dist/core/DeletedTaskLifecycleService.d.ts +1 -0
- package/dist/core/DeletedTaskLifecycleService.js +37 -6
- package/dist/core/TaskAttachmentLinksDurableMutationService.d.ts +3 -2
- package/dist/core/TaskAttachmentLinksDurableMutationService.js +33 -9
- package/dist/core/Taskforce.d.ts +62 -2
- package/dist/core/Taskforce.js +635 -32
- package/dist/core/types.d.ts +6 -0
- 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 +6 -0
- package/dist/hooks/tasks/useTaskFormActions.js +65 -12
- 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 +37 -9
- package/dist/hooks/useTaskforce.js +349 -39
- 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/documentAssetRegistrar.js +44 -35
- package/dist/mcp/documentHelpers.d.ts +1 -0
- package/dist/mcp/documentHelpers.js +7 -3
- package/dist/mcp/runtime.js +172 -42
- package/dist/mcp/taskPlanningRegistrar.js +41 -38
- package/dist/mcp/toolCallCompatibility.js +38 -1
- package/dist/mcp/toolCatalog.d.ts +1 -0
- package/dist/migrations/taskSchemaMigrations.js +12 -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/cloudCollectionRead.d.ts +1 -1
- package/dist/server/cloudCollectionRead.js +2 -2
- package/dist/server/index.d.ts +3 -0
- package/dist/server/index.js +15 -3
- package/dist/server/localServiceLease.d.ts +3 -0
- package/dist/server/localServiceLease.js +9 -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/durableTaskHttpRouters.d.ts +9 -2
- package/dist/server/routes/localService.js +2 -0
- package/dist/server/routes/primitives.d.ts +2 -0
- package/dist/server/routes/syncAuxRoutes.js +5 -2
- package/dist/server/routes/syncPullApplyRoutes.js +23 -4
- package/dist/server/routes/syncV3FeedRoutes.js +18 -16
- package/dist/server/routes/syncV3LocalCaptureRoutes.js +28 -2
- package/dist/server/routes/syncV3LocalFeedApplyRoutes.d.ts +1 -0
- package/dist/server/routes/syncV3LocalFeedApplyRoutes.js +26 -0
- package/dist/server/routes/syncV3OperationRoutes.js +10 -0
- package/dist/server/routes/tasks.js +103 -11
- package/dist/server/routes/workspaces.js +43 -1
- package/dist/server/workspaceDeletionAdmission.d.ts +23 -0
- package/dist/server/workspaceDeletionAdmission.js +50 -0
- package/dist/service/localServiceCli.js +16 -0
- package/dist/service/localServiceClientLifecycle.js +36 -10
- 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/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 +106 -14
- package/dist/storage/postgresWorker.js +13 -4
- package/dist/storage/postgresWorkerProtocol.d.ts +29 -0
- package/dist/storage/postgresWorkerProtocol.js +30 -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 +1 -0
- package/dist/sync/coordinator/localSyncExecutionPermitStore.js +7 -1
- package/dist/sync/coordinator/localWorkspaceSyncRunner.js +6 -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 +11 -0
- package/dist/sync/engine/workspaceSyncEngineRemoteServices.js +2 -1
- package/dist/sync/engine/workspaceSyncEngineServerRemoteServices.js +31 -4
- package/dist/sync/engine/workspaceSyncEngineServerRunnerOperations.d.ts +3 -1
- package/dist/sync/engine/workspaceSyncEngineServerRunnerOperations.js +25 -8
- package/dist/sync/engine/workspaceSyncEngineTransfers.d.ts +1 -1
- package/dist/sync/engine/workspaceSyncEngineTransfers.js +8 -3
- package/dist/sync/syncService.d.ts +2 -0
- package/dist/sync/syncService.js +4 -1
- package/dist/sync/v3/combinedFeedCapability.js +4 -0
- package/dist/sync/v3/durableTaskAttachmentLinksMutationRouter.d.ts +2 -0
- package/dist/sync/v3/durableTaskAttachmentLinksMutationRouter.js +11 -1
- 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 +30 -8
- package/dist/sync/v3/durableTaskHttpRootMutationRouter.d.ts +5 -3
- package/dist/sync/v3/durableTaskHttpRootMutationRouter.js +27 -2
- package/dist/sync/v3/localTaskAttachmentLinksOutboxService.d.ts +2 -0
- package/dist/sync/v3/localTaskAttachmentLinksOutboxService.js +47 -7
- 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/syncDurabilityStore.d.ts +7 -0
- package/dist/sync/v3/syncDurabilityStore.js +31 -11
- package/dist/sync/v3/taskAttachmentLinksMutationService.d.ts +6 -4
- package/dist/sync/v3/taskAttachmentLinksMutationService.js +19 -10
- 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/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 +13 -3
- 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 +9 -1
- package/dist/sync/v3/workspaceSyncV3CombinedFeedOrchestrator.js +8 -3
- package/dist/sync/v3/workspaceSyncV3CombinedLocalApply.js +51 -10
- package/dist/sync/v3/workspaceSyncV3CombinedRepairBaseline.d.ts +7 -0
- package/dist/sync/v3/workspaceSyncV3CombinedRepairBaseline.js +30 -18
- package/dist/sync/v3/workspaceSyncV3CombinedRepairMaterialization.d.ts +9 -4
- package/dist/sync/v3/workspaceSyncV3CombinedRepairMaterialization.js +98 -47
- package/dist/sync/v3/workspaceSyncV3CombinedRepairSnapshot.d.ts +10 -0
- package/dist/sync/v3/workspaceSyncV3CombinedRepairSnapshot.js +58 -21
- 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 +2 -0
- package/dist/sync/v3/workspaceSyncV3OperatorDiagnostics.d.ts +2 -0
- package/dist/sync/v3/workspaceSyncV3OperatorDiagnostics.js +19 -7
- 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/workspacePullFeed.js +2 -1
- package/dist/sync/workspaceRepair.d.ts +3 -0
- package/dist/sync/workspaceRepair.js +67 -6
- package/dist/types.d.ts +47 -1
- package/dist/types.js +6 -0
- package/dist/ui/assets/{AiIdentityRosterCard-MZs7lVED.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-Kf1pelSy.js → AssetTraySortControl-C8Rztyal.js} +1 -1
- package/dist/ui/assets/{ContextAttachmentManager-B8boOs6Q.js → ContextAttachmentManager-Cj3c7X9y.js} +2 -2
- package/dist/ui/assets/{DocumentWorkspace-DXH4XUsB.js → DocumentWorkspace-B5uvzems.js} +1 -1
- package/dist/ui/assets/{EntityActivityTimeline-BtSTq0ON.js → EntityActivityTimeline-BVFvCB5R.js} +1 -1
- package/dist/ui/assets/PlanningModule-B5DWQOGz.js +1 -0
- package/dist/ui/assets/PlansPage-AY4cGWco.js +1 -0
- package/dist/ui/assets/TaskContextUpload-DZxTVesW.js +1 -0
- package/dist/ui/assets/TaskSettings-BeWAuyZj.js +12 -0
- package/dist/ui/assets/{TaskforceAgentsModule-BazdUwxZ.js → TaskforceAgentsModule-BifCYtjR.js} +6 -6
- package/dist/ui/assets/{WorkflowManagerModule-DWFspC-o.js → WorkflowManagerModule-DEr5di_r.js} +1 -1
- package/dist/ui/assets/index-I5zhdtgt.js +7 -0
- package/dist/ui/assets/index-VRFsx3wz.css +1 -0
- package/dist/ui/assets/{vendor-icons-BkFLXavV.js → vendor-icons-D9Lpw-j4.js} +1 -1
- package/dist/ui/index.html +3 -3
- 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 +16 -4
- package/dist/ui/assets/AiProfilesModule-C3i0LOxe.js +0 -1
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-CBRZ8rca.css +0 -1
- package/dist/ui/assets/AnnotatedAttachmentWorkspace-DVZk5Tln.js +0 -3
- package/dist/ui/assets/PlanningModule-BPVyEa-f.js +0 -1
- package/dist/ui/assets/PlansPage-ChqgxALc.js +0 -1
- package/dist/ui/assets/TaskContextUpload-CB3ol0sN.js +0 -1
- package/dist/ui/assets/TaskSettings-g4ECKNOz.js +0 -12
- package/dist/ui/assets/index-BUplSsv_.js +0 -7
- package/dist/ui/assets/index-gz2EXuoK.css +0 -1
|
@@ -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;
|
|
@@ -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;
|
|
@@ -4775,6 +4957,23 @@
|
|
|
4775
4957
|
overflow-x: visible;
|
|
4776
4958
|
}
|
|
4777
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
|
+
|
|
4778
4977
|
.kanbanEmpty {
|
|
4779
4978
|
padding: 16px;
|
|
4780
4979
|
background: var(--bg-primary);
|