@tutti-os/agent-gui 0.0.100 → 0.0.102
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/README.md +31 -0
- package/dist/{AgentGUI-DgBjACOL.d.ts → AgentGUI-BJ3As1gI.d.ts} +17 -36
- package/dist/agent-conversation/index.d.ts +1 -1
- package/dist/agent-conversation/index.js +2 -2
- package/dist/agent-gui.d.ts +3 -3
- package/dist/agent-gui.js +6 -6
- package/dist/agent-message-center/index.js +2 -2
- package/dist/{agentGuiNodeTypes-C-wBSM-Y.d.ts → agentGuiNodeTypes-BH3lz6gn.d.ts} +2 -1
- package/dist/app/renderer/agentactivity.css +2 -37
- package/dist/{chunk-BQJOYTW2.js → chunk-LHKBR77G.js} +474 -487
- package/dist/chunk-LHKBR77G.js.map +1 -0
- package/dist/{chunk-MES7BQWI.js → chunk-MJOQP2ED.js} +28 -97
- package/dist/chunk-MJOQP2ED.js.map +1 -0
- package/dist/{chunk-XFRY2WWB.js → chunk-TDVYZEUI.js} +2 -2
- package/dist/{chunk-FAE7CXZO.js → chunk-W4RYNKWO.js} +2 -2
- package/dist/{chunk-EUW6VPIK.js → chunk-YYE35EZ5.js} +8 -5
- package/dist/{chunk-EUW6VPIK.js.map → chunk-YYE35EZ5.js.map} +1 -1
- package/dist/{chunk-JWHPVETQ.js → chunk-ZPKPIHMZ.js} +44 -11
- package/dist/chunk-ZPKPIHMZ.js.map +1 -0
- package/dist/context-mention-palette/index.js +2 -2
- package/dist/index.d.ts +5 -5
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/mention-search.js +1 -1
- package/package.json +12 -12
- package/dist/chunk-BQJOYTW2.js.map +0 -1
- package/dist/chunk-JWHPVETQ.js.map +0 -1
- package/dist/chunk-MES7BQWI.js.map +0 -1
- /package/dist/{chunk-XFRY2WWB.js.map → chunk-TDVYZEUI.js.map} +0 -0
- /package/dist/{chunk-FAE7CXZO.js.map → chunk-W4RYNKWO.js.map} +0 -0
package/README.md
CHANGED
|
@@ -98,6 +98,37 @@ pnpm check:agent-activity-runtime-boundaries
|
|
|
98
98
|
`hostCapabilities`, `hostActions`, and `renderSlots`. Extend the owning object;
|
|
99
99
|
do not restore flat compatibility props.
|
|
100
100
|
|
|
101
|
+
## Reference Provenance Filtering
|
|
102
|
+
|
|
103
|
+
Reference provenance filtering is disabled by default. Collaboration hosts can
|
|
104
|
+
opt in by injecting the complete catalog through
|
|
105
|
+
`hostCapabilities.referenceProvenanceFilterCatalog`:
|
|
106
|
+
|
|
107
|
+
```tsx
|
|
108
|
+
<AgentGUI
|
|
109
|
+
{...props}
|
|
110
|
+
hostCapabilities={{
|
|
111
|
+
referenceProvenanceFilterCatalog: {
|
|
112
|
+
enabledDimensions: ["agent", "member"],
|
|
113
|
+
agentOptions: [{ id: "agent-1", label: "Agent 1" }],
|
|
114
|
+
memberOptions: [{ id: "member-1", label: "Member 1" }]
|
|
115
|
+
}
|
|
116
|
+
}}
|
|
117
|
+
/>
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
The catalog is host-owned: option IDs must be durable identities understood by
|
|
121
|
+
the host's injected reference/search providers. Active dimensions are passed
|
|
122
|
+
to those providers as query metadata and must be enforced before pagination.
|
|
123
|
+
Sources that cannot enforce an active dimension must fail closed instead of
|
|
124
|
+
returning unfiltered results.
|
|
125
|
+
|
|
126
|
+
`referenceProvenanceFilterEnabled` remains as the legacy Tutti personal-edition
|
|
127
|
+
switch. When enabled without an explicit catalog, AgentGUI derives only the
|
|
128
|
+
Agent options from the Agent directory and keeps `memberOptions` empty. Omitting
|
|
129
|
+
both properties keeps the filter off. An explicitly supplied catalog (including
|
|
130
|
+
`null`) takes precedence over the legacy switch.
|
|
131
|
+
|
|
101
132
|
## Home Suggestions
|
|
102
133
|
|
|
103
134
|
The five starter entries below the empty new-session composer are enabled by
|
|
@@ -3,8 +3,8 @@ import { PropsWithChildren, JSX, HTMLAttributes, ReactNode } from 'react';
|
|
|
3
3
|
import { I18nRuntime } from '@tutti-os/ui-i18n-runtime';
|
|
4
4
|
import { AgentActivityGoalControlInput, AgentActivityGoalControlResult, AgentActivityCreateSessionInput, AgentActivitySession, AgentActivityDeleteSessionInput, AgentActivityDeleteSessionResult, AgentActivitySendInput, AgentActivitySessionSettings, AgentActivityActivateSessionResult, AgentActivitySnapshot, AgentSessionEngine, AgentActivityMessageOrder, AgentActivityMessagePage, AgentActivitySendInputResult, AgentActivityRenameSessionInput, AgentActivitySubmitInteractiveInput, AgentActivitySubmitInteractiveResult, AgentActivitySnapshotListener, AgentActivitySubmitSettingsPatch } from '@tutti-os/agent-activity-core';
|
|
5
5
|
import { u as AgentHostAgentSessionComposerSettings, y as AgentHostUnactivateAgentSessionResult, h as AgentGUIAgentTarget, n as AgentGUIProvider, z as AgentPromptContentBlock, m as AgentGUINodeData, P as Point, o as AgentGUIProviderRailAllPresentation, p as AgentGUIProviderRailMode, q as AgentGUIProviderReadinessGate, l as AgentGUIHomeSuggestionId, N as NodeFrame, e as AgentGUIAgentDirectorySnapshot, k as AgentGUIAllAgentsPresentation } from './types-CnT8rNUI.js';
|
|
6
|
-
import { A as AgentComposerDraft,
|
|
7
|
-
import { WorkspaceFileReference, ReferenceLocateTarget, WorkspaceFileReferenceAdapter } from '@tutti-os/workspace-file-reference/contracts';
|
|
6
|
+
import { A as AgentComposerDraft, q as AgentSessionCommand, d as AgentGUIProviderSkillOption, b as AgentGUIComposerSettingsVM, e as AgentGUIQueueStatus, f as AgentGUIQueuedPromptVM, l as AgentMessageMarkdownWorkspaceAppIcon, r as AgentSlashCommandCapability, c as AgentGUINodeViewModel, n as AgentProbeSnapshot, a as AgentComposerDraftFile, i as AgentHostInputApi } from './agentGuiNodeTypes-BH3lz6gn.js';
|
|
7
|
+
import { WorkspaceFileReference, ReferenceLocateTarget, WorkspaceFileReferenceAdapter, ReferenceProvenanceCatalog } from '@tutti-os/workspace-file-reference/contracts';
|
|
8
8
|
import { A as AgentContextMentionItem } from './agentFileMentionContracts-58IjMU-u.js';
|
|
9
9
|
import { WorkspaceFileEntry } from '@tutti-os/workspace-file-manager/services';
|
|
10
10
|
import { ReferenceSourceAggregator } from '@tutti-os/workspace-file-reference/core';
|
|
@@ -16,38 +16,6 @@ import { WorkspaceUserProject } from '@tutti-os/workspace-user-project/contracts
|
|
|
16
16
|
import { ReferenceProvenanceFilterSnapshot, ReferenceProvenanceFilterController } from '@tutti-os/workspace-file-reference/react';
|
|
17
17
|
import { A as AgentGuiI18nLocale } from './runtime-BBNdWgDU.js';
|
|
18
18
|
|
|
19
|
-
interface AgentHostManagedAgentsStateItem {
|
|
20
|
-
toolId: string;
|
|
21
|
-
toolClass: string;
|
|
22
|
-
agentId?: string;
|
|
23
|
-
hostDetected?: boolean;
|
|
24
|
-
hostConfigDetected?: boolean;
|
|
25
|
-
hostVersion?: string;
|
|
26
|
-
targetVersion: string;
|
|
27
|
-
recommendedVersion?: string;
|
|
28
|
-
decisionReason: string;
|
|
29
|
-
fallbackApplied: boolean;
|
|
30
|
-
notes?: string;
|
|
31
|
-
}
|
|
32
|
-
interface AgentHostToolchainConfigSyncedAgent {
|
|
33
|
-
agentId: string;
|
|
34
|
-
/** RFC3339 timestamp for when Tutti last synced this agent's host config. */
|
|
35
|
-
syncedAt?: string;
|
|
36
|
-
}
|
|
37
|
-
interface AgentHostManagedAgentsState {
|
|
38
|
-
metadataSynced: boolean;
|
|
39
|
-
toolCatalogRevision: string;
|
|
40
|
-
agentProfileRevision: string;
|
|
41
|
-
totalCount: number;
|
|
42
|
-
items: AgentHostManagedAgentsStateItem[];
|
|
43
|
-
/** Agent IDs ready for normal AgentGUI use (installed and authenticated/ready). */
|
|
44
|
-
readyAgentIds: string[];
|
|
45
|
-
/** Agent IDs whose host config has been synced to the VM through Manage Agents. */
|
|
46
|
-
configSyncedAgentIds: string[];
|
|
47
|
-
/** Agent config sync metadata, including when Tutti last copied host config. */
|
|
48
|
-
configSyncedAgents?: AgentHostToolchainConfigSyncedAgent[];
|
|
49
|
-
}
|
|
50
|
-
|
|
51
19
|
declare const APP_UPDATE_POLICIES: readonly ["off", "prompt", "auto"];
|
|
52
20
|
type AppUpdatePolicy = (typeof APP_UPDATE_POLICIES)[number];
|
|
53
21
|
|
|
@@ -948,6 +916,11 @@ interface AgentGUIOpenSessionRequest {
|
|
|
948
916
|
sequence: number;
|
|
949
917
|
}
|
|
950
918
|
|
|
919
|
+
interface AgentGUIComposerAppendRequest {
|
|
920
|
+
files: readonly AgentComposerDraftFile[];
|
|
921
|
+
sequence: number;
|
|
922
|
+
}
|
|
923
|
+
|
|
951
924
|
interface AgentGUIPrefillPromptRequest {
|
|
952
925
|
agentTargetId?: string | null;
|
|
953
926
|
autoSubmit?: boolean;
|
|
@@ -1000,6 +973,7 @@ interface AgentGUINodeFrameLayout {
|
|
|
1000
973
|
conversationRailAutoCollapseWidthPx?: number | null;
|
|
1001
974
|
}
|
|
1002
975
|
interface AgentGUINodeRuntimeRequests {
|
|
976
|
+
composerAppend?: AgentGUIComposerAppendRequest | null;
|
|
1003
977
|
composerFocusSequence?: number | null;
|
|
1004
978
|
newConversationSequence?: number | null;
|
|
1005
979
|
openSession?: AgentGUIOpenSessionRequest | null;
|
|
@@ -1009,6 +983,14 @@ interface AgentGUINodeRuntimeRequests {
|
|
|
1009
983
|
onProbeRefreshRequest?: WorkspaceDesktopAgentProbeRefreshRequest;
|
|
1010
984
|
}
|
|
1011
985
|
interface AgentGUINodeHostCapabilities {
|
|
986
|
+
/**
|
|
987
|
+
* Complete host-owned catalog for reference provenance filtering. Supplying
|
|
988
|
+
* it explicitly opts the host into the dimensions declared by the catalog.
|
|
989
|
+
* Omit it to keep filtering disabled unless the legacy Agent-only flag is
|
|
990
|
+
* enabled.
|
|
991
|
+
*/
|
|
992
|
+
referenceProvenanceFilterCatalog?: ReferenceProvenanceCatalog | null;
|
|
993
|
+
/** Legacy Tutti Agent-only opt-in. Prefer an explicit catalog in new hosts. */
|
|
1012
994
|
referenceProvenanceFilterEnabled?: boolean;
|
|
1013
995
|
capabilityMenuState?: AgentComposerCapabilityMenuState;
|
|
1014
996
|
accountMenuState?: AgentGUIAccountMenuState | null;
|
|
@@ -1020,7 +1002,6 @@ interface AgentGUINodeHostCapabilities {
|
|
|
1020
1002
|
providerReadinessGates?: Partial<Record<AgentGUIProvider, AgentGUIProviderReadinessGate | null>> | null;
|
|
1021
1003
|
defaultAgentTargetId?: string | null;
|
|
1022
1004
|
providerAuthAccountLabels?: Partial<Record<string, string>>;
|
|
1023
|
-
managedAgentsState?: AgentHostManagedAgentsState | null;
|
|
1024
1005
|
contextMentionProviders?: readonly AgentContextMentionProvider[];
|
|
1025
1006
|
workspaceAppIcons?: readonly AgentMessageMarkdownWorkspaceAppIcon[];
|
|
1026
1007
|
disabledHomeSuggestions?: readonly AgentGUIHomeSuggestionId[];
|
|
@@ -1079,4 +1060,4 @@ interface AgentGUIProps extends Omit<AgentGUINodeProps, "hostCapabilities" | "re
|
|
|
1079
1060
|
}
|
|
1080
1061
|
declare const AgentGUI: react.NamedExoticComponent<AgentGUIProps>;
|
|
1081
1062
|
|
|
1082
|
-
export { type AgentActivityRuntime as A,
|
|
1063
|
+
export { type AgentActivityRuntime as A, type AgentGUISidebarFooterRenderer as B, resetAgentActivityRuntimeForTests as C, setAgentActivityRuntimeForTests as D, useAgentActivityRuntime as E, useAgentActivitySnapshot as F, useOptionalAgentActivityRuntime as G, type AgentActivityRuntimeDeleteSessionsBatchInput as a, type AgentActivityRuntimeDeleteSessionsBatchResult as b, type AgentActivityRuntimeListSessionMessagesInput as c, type AgentActivityRuntimePromptContentBlock as d, AgentActivityRuntimeProvider as e, type AgentActivityRuntimeProviderProps as f, type AgentActivityRuntimeSessionSectionDeletionCandidates as g, type AgentActivityRuntimeSessionSectionScopeInput as h, type AgentActivityRuntimeSetSessionPinnedInput as i, type AgentActivityRuntimeUpdateSessionSettingsInput as j, type AgentActivityRuntimeUpdateSessionSettingsResult as k, type AgentActivityRuntimeUploadPromptContentInput as l, type AgentActivityRuntimeUploadPromptContentResult as m, AgentGUI as n, type AgentGUIAccountMenuState as o, type AgentGUIAgentsEmptyRenderer as p, type AgentGUIComposerAppendRequest as q, type AgentGUIComposerContentType as r, type AgentGUIComposerFocusMethod as s, type AgentGUIEngagementContext as t, type AgentGUIEngagementEvent as u, type AgentGUIEngagementEventSink as v, type AgentGUIProps as w, type AgentGUIProviderUnavailableStateContext as x, type AgentGUIProviderUnavailableStateRenderer as y, type AgentGUISidebarFooterContext as z };
|
|
@@ -2,7 +2,7 @@ import * as react from 'react';
|
|
|
2
2
|
import { ReactNode, JSX } from 'react';
|
|
3
3
|
import { c as AgentConversationVM, e as WorkspaceLinkAction, d as WorkspaceAgentSessionDetailViewModel } from '../agentConversationVM-BzHZhwFP.js';
|
|
4
4
|
export { B as BuildWorkspaceAgentSessionDetailInput, W as WorkspaceAgentActivityTimelineItem, f as buildWorkspaceAgentSessionDetailViewModel } from '../agentConversationVM-BzHZhwFP.js';
|
|
5
|
-
import {
|
|
5
|
+
import { d as AgentGUIProviderSkillOption, l as AgentMessageMarkdownWorkspaceAppIcon } from '../agentGuiNodeTypes-BH3lz6gn.js';
|
|
6
6
|
export { W as WorkspaceAgentActivityCard } from '../workspaceAgentActivityListTypes-DZfS_HgG.js';
|
|
7
7
|
import '@tutti-os/workspace-issue-manager/core';
|
|
8
8
|
import '@tutti-os/agent-activity-core';
|
|
@@ -6,13 +6,13 @@ import {
|
|
|
6
6
|
projectAgentConversationVM,
|
|
7
7
|
reconcileProjectedAgentConversationVM,
|
|
8
8
|
useProjectedAgentConversation
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-ZPKPIHMZ.js";
|
|
10
10
|
import "../chunk-7BXWPI4F.js";
|
|
11
11
|
import "../chunk-FGLQZ6I4.js";
|
|
12
12
|
import "../chunk-GCW57WYQ.js";
|
|
13
13
|
import "../chunk-F5UR6EJG.js";
|
|
14
14
|
import "../chunk-LUGELG5V.js";
|
|
15
|
-
import "../chunk-
|
|
15
|
+
import "../chunk-MJOQP2ED.js";
|
|
16
16
|
import "../chunk-UESYITH6.js";
|
|
17
17
|
import "../chunk-PJP5BUU6.js";
|
|
18
18
|
import "../chunk-H6IQ63DQ.js";
|
package/dist/agent-gui.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import 'react';
|
|
2
2
|
import '@tutti-os/ui-i18n-runtime';
|
|
3
|
-
export { n as AgentGUI,
|
|
4
|
-
import './agentGuiNodeTypes-
|
|
3
|
+
export { n as AgentGUI, w as AgentGUIProps } from './AgentGUI-BJ3As1gI.js';
|
|
4
|
+
import './agentGuiNodeTypes-BH3lz6gn.js';
|
|
5
5
|
export { l as AgentGUIHomeSuggestionId } from './types-CnT8rNUI.js';
|
|
6
6
|
import './runtime-BBNdWgDU.js';
|
|
7
|
+
export { ReferenceProvenanceCatalog as AgentGUIReferenceProvenanceFilterCatalog } from '@tutti-os/workspace-file-reference/contracts';
|
|
7
8
|
import '@tutti-os/agent-activity-core';
|
|
8
|
-
import '@tutti-os/workspace-file-reference/contracts';
|
|
9
9
|
import './agentFileMentionContracts-58IjMU-u.js';
|
|
10
10
|
import '@tutti-os/workspace-file-manager/services';
|
|
11
11
|
import '@tutti-os/workspace-file-reference/core';
|
package/dist/agent-gui.js
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AgentGUI
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-LHKBR77G.js";
|
|
4
4
|
import "./chunk-D7HMQLBO.js";
|
|
5
5
|
import "./chunk-KAV2WHTG.js";
|
|
6
6
|
import "./chunk-4YVKAPKW.js";
|
|
7
7
|
import "./chunk-QY22OBJS.js";
|
|
8
8
|
import "./chunk-L3GMMGRS.js";
|
|
9
9
|
import "./chunk-UHBCM6RO.js";
|
|
10
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-ZPKPIHMZ.js";
|
|
11
11
|
import "./chunk-7BXWPI4F.js";
|
|
12
|
-
import "./chunk-
|
|
12
|
+
import "./chunk-W4RYNKWO.js";
|
|
13
13
|
import "./chunk-C35SNDVZ.js";
|
|
14
14
|
import "./chunk-FGLQZ6I4.js";
|
|
15
15
|
import "./chunk-4YG7YK7S.js";
|
|
16
|
-
import "./chunk-
|
|
16
|
+
import "./chunk-YYE35EZ5.js";
|
|
17
17
|
import "./chunk-4YCCATI4.js";
|
|
18
18
|
import "./chunk-GCW57WYQ.js";
|
|
19
19
|
import "./chunk-F5UR6EJG.js";
|
|
20
20
|
import "./chunk-LUGELG5V.js";
|
|
21
21
|
import "./chunk-JM24HADP.js";
|
|
22
|
-
import "./chunk-
|
|
22
|
+
import "./chunk-TDVYZEUI.js";
|
|
23
23
|
import "./chunk-2RQM7PJN.js";
|
|
24
|
-
import "./chunk-
|
|
24
|
+
import "./chunk-MJOQP2ED.js";
|
|
25
25
|
import "./chunk-DWUVRWXD.js";
|
|
26
26
|
import "./chunk-YMXYBG7U.js";
|
|
27
27
|
import "./chunk-UESYITH6.js";
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
dispatchAgentPlanPromptAction,
|
|
7
7
|
getPromptToolDetails,
|
|
8
8
|
isPromptRequestIdTitle
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-TDVYZEUI.js";
|
|
10
10
|
import {
|
|
11
11
|
useEngineSelector
|
|
12
12
|
} from "../chunk-2RQM7PJN.js";
|
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
extractExitPlanModeOptions,
|
|
20
20
|
isExitPlanSwitchModeInput,
|
|
21
21
|
normalizeAskUserQuestions
|
|
22
|
-
} from "../chunk-
|
|
22
|
+
} from "../chunk-MJOQP2ED.js";
|
|
23
23
|
import {
|
|
24
24
|
userAvatarPlaceholderUrl,
|
|
25
25
|
workspaceAgentActivityStatusLabel
|
|
@@ -511,6 +511,7 @@ type AgentComposerDraftContent = [
|
|
|
511
511
|
];
|
|
512
512
|
/** One atomic, unsent composer message. */
|
|
513
513
|
type AgentComposerDraft = AgentComposerDraftContent;
|
|
514
|
+
type AgentComposerDraftFile = Omit<AgentComposerRegularFileBlock, "type" | "kind">;
|
|
514
515
|
interface AgentGUIComposerSettingsVM {
|
|
515
516
|
sessionSettings: AgentSessionComposerSettings | null;
|
|
516
517
|
draftSettings: {
|
|
@@ -646,4 +647,4 @@ interface AgentGUINodeViewModel {
|
|
|
646
647
|
operations: AgentGUIOperationsViewModel;
|
|
647
648
|
}
|
|
648
649
|
|
|
649
|
-
export type { AgentComposerDraft as A, PersistWriteResult as P, ReadWorkspaceAgentReadStateInput as R, WorkspaceAgentReadStateSnapshot as W,
|
|
650
|
+
export type { AgentComposerDraft as A, PersistWriteResult as P, ReadWorkspaceAgentReadStateInput as R, WorkspaceAgentReadStateSnapshot as W, AgentComposerDraftFile as a, AgentGUIComposerSettingsVM as b, AgentGUINodeViewModel as c, AgentGUIProviderSkillOption as d, AgentGUIQueueStatus as e, AgentGUIQueuedPromptVM as f, AgentHostApi as g, AgentHostApplyWorkspaceGitPatchInput as h, AgentHostInputApi as i, AgentHostRuntimeApi as j, AgentHostSelectFilesInput as k, AgentMessageMarkdownWorkspaceAppIcon as l, AgentProbeProvider as m, AgentProbeSnapshot as n, AgentProviderProbeListInput as o, AgentProviderProbeListResult as p, AgentSessionCommand as q, AgentSlashCommandCapability as r, AgentUsageQuota as s, AgentUsageSnapshot as t, WriteWorkspaceAgentReadStateInput as u };
|
|
@@ -4241,7 +4241,7 @@ aside.workspace-agents-status-panel
|
|
|
4241
4241
|
.tsh-agent-object-token__main {
|
|
4242
4242
|
padding: 0 6px;
|
|
4243
4243
|
border-radius: 6px;
|
|
4244
|
-
background:
|
|
4244
|
+
background: transparent;
|
|
4245
4245
|
}
|
|
4246
4246
|
|
|
4247
4247
|
[data-agent-mention-kind="skill"].tsh-agent-object-token--entity.ProseMirror-selectednode
|
|
@@ -4340,7 +4340,7 @@ aside.workspace-agents-status-panel
|
|
|
4340
4340
|
border-radius: 4px;
|
|
4341
4341
|
font-size: 13px;
|
|
4342
4342
|
line-height: 24px;
|
|
4343
|
-
transform: translateY(
|
|
4343
|
+
transform: translateY(-2px);
|
|
4344
4344
|
}
|
|
4345
4345
|
|
|
4346
4346
|
.agent-gui-node__composer-textarea
|
|
@@ -7210,41 +7210,6 @@ button.agent-gui-node__conversation-section-toggle:hover
|
|
|
7210
7210
|
outline: none;
|
|
7211
7211
|
}
|
|
7212
7212
|
|
|
7213
|
-
.agent-gui-node__provider-setup-notice {
|
|
7214
|
-
position: absolute;
|
|
7215
|
-
top: 56px;
|
|
7216
|
-
left: 50%;
|
|
7217
|
-
transform: translateX(-50%);
|
|
7218
|
-
z-index: 2;
|
|
7219
|
-
box-sizing: border-box;
|
|
7220
|
-
width: max-content;
|
|
7221
|
-
max-width: min(calc(100% - (var(--agent-gui-detail-padding-x) * 2)), 420px);
|
|
7222
|
-
margin: 0;
|
|
7223
|
-
/* The pill sizes to its content (width: max-content), so the action button's
|
|
7224
|
-
margin-left:auto has no free space to absorb and the message text would butt
|
|
7225
|
-
directly against "Set up". Space the message and action explicitly. */
|
|
7226
|
-
column-gap: 6px;
|
|
7227
|
-
pointer-events: none;
|
|
7228
|
-
}
|
|
7229
|
-
|
|
7230
|
-
.agent-gui-node__detail-header + .agent-gui-node__provider-setup-notice {
|
|
7231
|
-
top: calc(64px + 16px);
|
|
7232
|
-
}
|
|
7233
|
-
|
|
7234
|
-
.agent-gui-node__provider-setup-notice-action {
|
|
7235
|
-
flex: 0 0 auto;
|
|
7236
|
-
margin-left: auto;
|
|
7237
|
-
border: 0;
|
|
7238
|
-
padding: 0;
|
|
7239
|
-
background: transparent;
|
|
7240
|
-
color: currentColor;
|
|
7241
|
-
font: inherit;
|
|
7242
|
-
text-decoration: underline;
|
|
7243
|
-
cursor: pointer;
|
|
7244
|
-
pointer-events: auto;
|
|
7245
|
-
-webkit-app-region: no-drag;
|
|
7246
|
-
}
|
|
7247
|
-
|
|
7248
7213
|
.agent-gui-node__layout [data-slot="status-dot"],
|
|
7249
7214
|
[data-testid="workspace-agent-message-center"] [data-slot="status-dot"] {
|
|
7250
7215
|
--agent-gui-status-dot-color: var(
|