@tutti-os/agent-gui 0.0.23 → 0.0.25
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/AgentMessageMarkdown-BnpM_dCB.d.ts +658 -0
- package/dist/agent-conversation/index.d.ts +5 -14
- package/dist/agent-conversation/index.js +3 -3
- package/dist/agent-message-center/index.d.ts +2 -2
- package/dist/agent-message-center/index.js +3 -3
- package/dist/{agentConversationVM-CGYkOuOP.d.ts → agentConversationVM-BvlmCNOm.d.ts} +2 -2
- package/dist/app/renderer/agentactivity.css +21 -28
- package/dist/{chunk-MQAGIHYM.js → chunk-3QDLVPMJ.js} +36 -4
- package/dist/chunk-3QDLVPMJ.js.map +1 -0
- package/dist/{chunk-3LVEFR2N.js → chunk-5PIXN7UF.js} +15 -14
- package/dist/{chunk-3LVEFR2N.js.map → chunk-5PIXN7UF.js.map} +1 -1
- package/dist/{chunk-ZC4E2QJU.js → chunk-OSBLVO4N.js} +3 -3
- package/dist/{chunk-7Q3JKSQ5.js → chunk-VNRRXUI3.js} +125 -44
- package/dist/chunk-VNRRXUI3.js.map +1 -0
- package/dist/{chunk-CCI6EK5W.js → chunk-YHRJD6HA.js} +1 -1
- package/dist/chunk-YHRJD6HA.js.map +1 -0
- package/dist/context-mention-palette/index.d.ts +1 -3
- package/dist/context-mention-palette/index.js +2 -2
- package/dist/index.d.ts +29 -417
- package/dist/index.js +473 -130
- package/dist/index.js.map +1 -1
- package/dist/plan-decision-ops.d.ts +2 -2
- package/dist/workspace-agent-generated-files.d.ts +1 -1
- package/dist/{workspaceAgentActivityListViewModel-BK_J3aNX.d.ts → workspaceAgentActivityListViewModel-jRF8cP37.d.ts} +2 -2
- package/package.json +12 -12
- package/dist/AgentMessageMarkdown-DeYPURtF.d.ts +0 -7
- package/dist/chunk-7Q3JKSQ5.js.map +0 -1
- package/dist/chunk-CCI6EK5W.js.map +0 -1
- package/dist/chunk-MQAGIHYM.js.map +0 -1
- /package/dist/{chunk-ZC4E2QJU.js.map → chunk-OSBLVO4N.js.map} +0 -0
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
} from "./chunk-XAQQN6MP.js";
|
|
10
10
|
import {
|
|
11
11
|
getOptionalAgentHostApi
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-YHRJD6HA.js";
|
|
13
13
|
import {
|
|
14
14
|
AGENT_CONTEXT_MENTION_PROVIDER_IDS
|
|
15
15
|
} from "./chunk-JM24HADP.js";
|
|
@@ -1662,7 +1662,7 @@ import {
|
|
|
1662
1662
|
normalizeAgentActivityDisplayStatus
|
|
1663
1663
|
} from "@tutti-os/agent-activity-core";
|
|
1664
1664
|
import {
|
|
1665
|
-
|
|
1665
|
+
MentionPaletteFromState,
|
|
1666
1666
|
flattenMentionPaletteEntries,
|
|
1667
1667
|
issueMentionStatusTone,
|
|
1668
1668
|
renderMentionRow
|
|
@@ -1759,7 +1759,7 @@ function groupStartKeys(state) {
|
|
|
1759
1759
|
return state.groups.map((group) => {
|
|
1760
1760
|
const firstItem = group.items[0];
|
|
1761
1761
|
if (firstItem) {
|
|
1762
|
-
return `${group.id}:${firstItem
|
|
1762
|
+
return `${group.id}:${agentMentionItemKey(firstItem)}`;
|
|
1763
1763
|
}
|
|
1764
1764
|
if (group.hasMore) {
|
|
1765
1765
|
return `expand:${group.id}`;
|
|
@@ -1782,8 +1782,6 @@ function AgentFileMentionPalette({
|
|
|
1782
1782
|
onSelectCategory,
|
|
1783
1783
|
onSelectFilter,
|
|
1784
1784
|
onExpandGroup,
|
|
1785
|
-
onCycleFilter,
|
|
1786
|
-
onMoveSelection,
|
|
1787
1785
|
onOpenReferences
|
|
1788
1786
|
}) {
|
|
1789
1787
|
"use memo";
|
|
@@ -1828,7 +1826,7 @@ function AgentFileMentionPalette({
|
|
|
1828
1826
|
query: state.query
|
|
1829
1827
|
});
|
|
1830
1828
|
return /* @__PURE__ */ jsx(
|
|
1831
|
-
|
|
1829
|
+
MentionPaletteFromState,
|
|
1832
1830
|
{
|
|
1833
1831
|
state: shellState,
|
|
1834
1832
|
highlightedKey,
|
|
@@ -1859,13 +1857,15 @@ function AgentFileMentionPalette({
|
|
|
1859
1857
|
loadingBanner: /* @__PURE__ */ jsx(MentionPaletteLoadingBanner, { label: loadingLabel }),
|
|
1860
1858
|
theme: AGENT_MENTION_PALETTE_THEME,
|
|
1861
1859
|
renderListFooter: showFileSearchMoreHint ? () => /* @__PURE__ */ jsx(MentionFileSearchMoreHint, {}) : void 0,
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1860
|
+
callbacks: {
|
|
1861
|
+
onHighlightChange,
|
|
1862
|
+
onActiveCategoryIdChange: (categoryId) => {
|
|
1863
|
+
onSelectCategory(categoryId);
|
|
1864
|
+
onSelectFilter(categoryId);
|
|
1865
|
+
},
|
|
1866
|
+
onExpandGroup: (groupId) => onExpandGroup(groupId),
|
|
1867
|
+
onSelectItem
|
|
1868
|
+
}
|
|
1869
1869
|
}
|
|
1870
1870
|
);
|
|
1871
1871
|
}
|
|
@@ -2129,9 +2129,10 @@ export {
|
|
|
2129
2129
|
DEFAULT_AGENT_MENTION_FILTER,
|
|
2130
2130
|
AgentMentionSearchController,
|
|
2131
2131
|
preloadAgentMentionBrowse,
|
|
2132
|
+
agentMentionItemKey,
|
|
2132
2133
|
flattenAgentMentionPaletteEntries,
|
|
2133
2134
|
groupStartKeys,
|
|
2134
2135
|
AgentFileMentionPalette,
|
|
2135
2136
|
AgentContextMentionPalette
|
|
2136
2137
|
};
|
|
2137
|
-
//# sourceMappingURL=chunk-
|
|
2138
|
+
//# sourceMappingURL=chunk-5PIXN7UF.js.map
|