@tutti-os/agent-gui 0.0.16 → 0.0.17
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/agent-conversation/index.js +4 -4
- package/dist/agent-message-center/index.d.ts +4 -1
- package/dist/agent-message-center/index.js +172 -9
- package/dist/agent-message-center/index.js.map +1 -1
- package/dist/app/renderer/agentactivity.css +32 -0
- package/dist/{chunk-SIDWRR5I.js → chunk-65YMY2M3.js} +5 -1
- package/dist/chunk-65YMY2M3.js.map +1 -0
- package/dist/{chunk-EKATXC3W.js → chunk-CDTTIUPL.js} +2 -2
- package/dist/{chunk-267VY3EJ.js → chunk-HVOPJU2K.js} +4 -4
- package/dist/{chunk-FJYH2ZPX.js → chunk-K44WER5Z.js} +2 -2
- package/dist/{chunk-KWPL3JYS.js → chunk-KHTIC52P.js} +2 -2
- package/dist/{chunk-CABHBFYH.js → chunk-OJ5WX7SZ.js} +2 -2
- package/dist/{chunk-LWRYYGPZ.js → chunk-VNAQ6QFE.js} +4 -4
- package/dist/{chunk-LW2S255I.js → chunk-VO2TZNKV.js} +4 -4
- package/dist/context-mention-palette/index.js +5 -5
- package/dist/i18n/index.d.ts +4 -0
- package/dist/i18n/index.js +1 -1
- package/dist/index.js +194 -43
- package/dist/index.js.map +1 -1
- package/dist/workspace-agent-generated-files.js +2 -2
- package/package.json +12 -12
- package/dist/chunk-SIDWRR5I.js.map +0 -1
- /package/dist/{chunk-EKATXC3W.js.map → chunk-CDTTIUPL.js.map} +0 -0
- /package/dist/{chunk-267VY3EJ.js.map → chunk-HVOPJU2K.js.map} +0 -0
- /package/dist/{chunk-FJYH2ZPX.js.map → chunk-K44WER5Z.js.map} +0 -0
- /package/dist/{chunk-KWPL3JYS.js.map → chunk-KHTIC52P.js.map} +0 -0
- /package/dist/{chunk-CABHBFYH.js.map → chunk-OJ5WX7SZ.js.map} +0 -0
- /package/dist/{chunk-LWRYYGPZ.js.map → chunk-VNAQ6QFE.js.map} +0 -0
- /package/dist/{chunk-LW2S255I.js.map → chunk-VO2TZNKV.js.map} +0 -0
|
@@ -4517,6 +4517,38 @@ button.agent-gui-node__conversation-section-toggle:hover
|
|
|
4517
4517
|
gap: 2px;
|
|
4518
4518
|
}
|
|
4519
4519
|
|
|
4520
|
+
.agent-gui-node__conversation-section-pagination {
|
|
4521
|
+
display: flex;
|
|
4522
|
+
flex-wrap: wrap;
|
|
4523
|
+
gap: 6px;
|
|
4524
|
+
align-items: center;
|
|
4525
|
+
min-width: 0;
|
|
4526
|
+
padding: 2px 6px 0 22px;
|
|
4527
|
+
}
|
|
4528
|
+
|
|
4529
|
+
.agent-gui-node__conversation-section-pagination-button {
|
|
4530
|
+
min-width: 0;
|
|
4531
|
+
border: 0;
|
|
4532
|
+
border-radius: 4px;
|
|
4533
|
+
background: transparent;
|
|
4534
|
+
color: var(--text-tertiary);
|
|
4535
|
+
cursor: pointer;
|
|
4536
|
+
font: inherit;
|
|
4537
|
+
font-size: 12px;
|
|
4538
|
+
line-height: 18px;
|
|
4539
|
+
padding: 1px 4px;
|
|
4540
|
+
text-align: left;
|
|
4541
|
+
transition:
|
|
4542
|
+
background-color 140ms ease,
|
|
4543
|
+
color 140ms ease;
|
|
4544
|
+
}
|
|
4545
|
+
|
|
4546
|
+
.agent-gui-node__conversation-section-pagination-button:hover,
|
|
4547
|
+
.agent-gui-node__conversation-section-pagination-button:focus-visible {
|
|
4548
|
+
background-color: var(--agent-gui-surface-hover);
|
|
4549
|
+
color: var(--text-primary);
|
|
4550
|
+
}
|
|
4551
|
+
|
|
4520
4552
|
@media (prefers-reduced-motion: reduce) {
|
|
4521
4553
|
.agent-gui-node__conversation-section-items {
|
|
4522
4554
|
transition: none;
|
|
@@ -848,6 +848,8 @@ var en = {
|
|
|
848
848
|
shortcutCmdEnter: "Cmd + Enter",
|
|
849
849
|
shortcutCtrEnter: "Ctr + Enter",
|
|
850
850
|
openConversationWindow: "Open session in new window",
|
|
851
|
+
showMoreConversations: "Show more",
|
|
852
|
+
showLessConversations: "Show less",
|
|
851
853
|
deleteSession: "Delete session",
|
|
852
854
|
pinSession: "Pin session",
|
|
853
855
|
unpinSession: "Unpin session",
|
|
@@ -3235,6 +3237,8 @@ var zhCN = {
|
|
|
3235
3237
|
shortcutCmdEnter: "Cmd + Enter",
|
|
3236
3238
|
shortcutCtrEnter: "Ctr + Enter",
|
|
3237
3239
|
openConversationWindow: "\u5728\u65B0\u7A97\u53E3\u6253\u5F00\u4F1A\u8BDD",
|
|
3240
|
+
showMoreConversations: "\u663E\u793A\u66F4\u591A",
|
|
3241
|
+
showLessConversations: "\u6536\u8D77",
|
|
3238
3242
|
deleteSession: "\u5220\u9664\u4F1A\u8BDD",
|
|
3239
3243
|
pinSession: "\u7F6E\u9876\u4F1A\u8BDD",
|
|
3240
3244
|
unpinSession: "\u53D6\u6D88\u7F6E\u9876",
|
|
@@ -4888,4 +4892,4 @@ export {
|
|
|
4888
4892
|
AgentGuiI18nProvider,
|
|
4889
4893
|
useTranslation
|
|
4890
4894
|
};
|
|
4891
|
-
//# sourceMappingURL=chunk-
|
|
4895
|
+
//# sourceMappingURL=chunk-65YMY2M3.js.map
|