@adminforth/agent 1.18.3 → 1.18.4

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 CHANGED
@@ -32,5 +32,5 @@ custom/skills/fetch_data/SKILL.md
32
32
  custom/skills/mutate_data/
33
33
  custom/skills/mutate_data/SKILL.md
34
34
 
35
- sent 187,006 bytes received 455 bytes 374,922.00 bytes/sec
36
- total size is 185,154 speedup is 0.99
35
+ sent 187,156 bytes received 451 bytes 375,214.00 bytes/sec
36
+ total size is 185,304 speedup is 0.99
@@ -36,7 +36,6 @@
36
36
  >
37
37
  <div
38
38
  class="flex items-center justify-between h-14 border-b border-gray-200 dark:border-gray-700"
39
- :class="{ 'pl-4': agentStore.isFullScreen }"
40
39
  >
41
40
  <div
42
41
  class="flex items-center"
@@ -33,7 +33,6 @@
33
33
  :class="{
34
34
  'bg-lightPrimary/20 hover:bg-lightPrimary/20 dark:bg-darkPrimary/20 dark:hover:bg-darkPrimary/20': agentStore.activeSessionId === session.sessionId,
35
35
  'cursor-default opacity-50 pointer-events-none': agentStore.isResponseInProgress,
36
- 'pl-8': agentStore.isFullScreen
37
36
  }"
38
37
  @click="agentStore.setActiveSession(session.sessionId); agentStore.setSessionHistoryOpen(false);"
39
38
  :disabled="agentStore.isResponseInProgress"
@@ -129,12 +129,14 @@ export const useAgentStore = defineStore('agent', () => {
129
129
  function setFullScreen(fullScreen: boolean) {
130
130
  isFullScreen.value = fullScreen;
131
131
  if (fullScreen) {
132
+ document.body.style.overflow = 'hidden';
132
133
  setLocalStorageItem('chatWidthBeforeFullScreen', chatWidth.value.toString());
133
134
  setLocalStorageItem('isTeleportedToBodyBeforeFullScreen', isTeleportedToBody.value ? 'true' : 'false');
134
135
  setIsTeleportedToBody(false);
135
136
  useAgentTransitions().setChatSurfaceTransition(false);
136
137
  setChatWidth(window.innerWidth, false);
137
138
  } else {
139
+ document.body.style.overflow = '';
138
140
  const lastChatWidth = parseInt(getLocalStorageItem('chatWidthBeforeFullScreen') || DEFAULT_CHAT_WIDTH.toString(), 10);
139
141
  const isTeleportedBeforeFullScreen = getLocalStorageItem('isTeleportedToBodyBeforeFullScreen') === 'true';
140
142
  agentTransitions.setAppRootTransition(true);
@@ -315,6 +317,9 @@ export const useAgentStore = defineStore('agent', () => {
315
317
  }
316
318
 
317
319
  function closeChat() {
320
+ if(isFullScreen.value) {
321
+ document.body.style.overflow = '';
322
+ }
318
323
  if (blockCloseOfChat.value) {
319
324
  return;
320
325
  }
@@ -323,6 +328,9 @@ export const useAgentStore = defineStore('agent', () => {
323
328
  }
324
329
 
325
330
  function openChat() {
331
+ if (isFullScreen.value) {
332
+ document.body.style.overflow = 'hidden';
333
+ }
326
334
  isChatOpen.value = true;
327
335
  nextTick(() => {
328
336
  focusTextInput();
@@ -36,7 +36,6 @@
36
36
  >
37
37
  <div
38
38
  class="flex items-center justify-between h-14 border-b border-gray-200 dark:border-gray-700"
39
- :class="{ 'pl-4': agentStore.isFullScreen }"
40
39
  >
41
40
  <div
42
41
  class="flex items-center"
@@ -33,7 +33,6 @@
33
33
  :class="{
34
34
  'bg-lightPrimary/20 hover:bg-lightPrimary/20 dark:bg-darkPrimary/20 dark:hover:bg-darkPrimary/20': agentStore.activeSessionId === session.sessionId,
35
35
  'cursor-default opacity-50 pointer-events-none': agentStore.isResponseInProgress,
36
- 'pl-8': agentStore.isFullScreen
37
36
  }"
38
37
  @click="agentStore.setActiveSession(session.sessionId); agentStore.setSessionHistoryOpen(false);"
39
38
  :disabled="agentStore.isResponseInProgress"
@@ -129,12 +129,14 @@ export const useAgentStore = defineStore('agent', () => {
129
129
  function setFullScreen(fullScreen: boolean) {
130
130
  isFullScreen.value = fullScreen;
131
131
  if (fullScreen) {
132
+ document.body.style.overflow = 'hidden';
132
133
  setLocalStorageItem('chatWidthBeforeFullScreen', chatWidth.value.toString());
133
134
  setLocalStorageItem('isTeleportedToBodyBeforeFullScreen', isTeleportedToBody.value ? 'true' : 'false');
134
135
  setIsTeleportedToBody(false);
135
136
  useAgentTransitions().setChatSurfaceTransition(false);
136
137
  setChatWidth(window.innerWidth, false);
137
138
  } else {
139
+ document.body.style.overflow = '';
138
140
  const lastChatWidth = parseInt(getLocalStorageItem('chatWidthBeforeFullScreen') || DEFAULT_CHAT_WIDTH.toString(), 10);
139
141
  const isTeleportedBeforeFullScreen = getLocalStorageItem('isTeleportedToBodyBeforeFullScreen') === 'true';
140
142
  agentTransitions.setAppRootTransition(true);
@@ -315,6 +317,9 @@ export const useAgentStore = defineStore('agent', () => {
315
317
  }
316
318
 
317
319
  function closeChat() {
320
+ if(isFullScreen.value) {
321
+ document.body.style.overflow = '';
322
+ }
318
323
  if (blockCloseOfChat.value) {
319
324
  return;
320
325
  }
@@ -323,6 +328,9 @@ export const useAgentStore = defineStore('agent', () => {
323
328
  }
324
329
 
325
330
  function openChat() {
331
+ if (isFullScreen.value) {
332
+ document.body.style.overflow = 'hidden';
333
+ }
326
334
  isChatOpen.value = true;
327
335
  nextTick(() => {
328
336
  focusTextInput();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/agent",
3
- "version": "1.18.3",
3
+ "version": "1.18.4",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",