@adminforth/agent 1.27.5 → 1.27.6
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/build.log +2 -2
- package/custom/ChatSurface.vue +1 -1
- package/dist/custom/ChatSurface.vue +1 -1
- package/package.json +1 -1
package/build.log
CHANGED
|
@@ -38,5 +38,5 @@ custom/skills/fetch_data/SKILL.md
|
|
|
38
38
|
custom/skills/mutate_data/
|
|
39
39
|
custom/skills/mutate_data/SKILL.md
|
|
40
40
|
|
|
41
|
-
sent 207,
|
|
42
|
-
total size is 205,
|
|
41
|
+
sent 207,807 bytes received 562 bytes 416,738.00 bytes/sec
|
|
42
|
+
total size is 205,493 speedup is 0.99
|
package/custom/ChatSurface.vue
CHANGED
|
@@ -219,7 +219,7 @@ const isModeMenuOpen = ref(false);
|
|
|
219
219
|
let startX = 0
|
|
220
220
|
let startWidth = 0
|
|
221
221
|
|
|
222
|
-
onClickOutside(chatSurface, () => {if (!agentStore.isTeleportedToBody) agentStore.setIsChatOpen(false);});
|
|
222
|
+
onClickOutside(chatSurface, () => {if (!agentStore.isTeleportedToBody && !agentStore.isFullScreen) agentStore.setIsChatOpen(false);});
|
|
223
223
|
onClickOutside(modeMenu, () => { isModeMenuOpen.value = false; });
|
|
224
224
|
|
|
225
225
|
onMounted(async () => {
|
|
@@ -219,7 +219,7 @@ const isModeMenuOpen = ref(false);
|
|
|
219
219
|
let startX = 0
|
|
220
220
|
let startWidth = 0
|
|
221
221
|
|
|
222
|
-
onClickOutside(chatSurface, () => {if (!agentStore.isTeleportedToBody) agentStore.setIsChatOpen(false);});
|
|
222
|
+
onClickOutside(chatSurface, () => {if (!agentStore.isTeleportedToBody && !agentStore.isFullScreen) agentStore.setIsChatOpen(false);});
|
|
223
223
|
onClickOutside(modeMenu, () => { isModeMenuOpen.value = false; });
|
|
224
224
|
|
|
225
225
|
onMounted(async () => {
|