@adminforth/agent 1.16.1 → 1.16.2

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
@@ -31,5 +31,5 @@ custom/skills/fetch_data/SKILL.md
31
31
  custom/skills/mutate_data/
32
32
  custom/skills/mutate_data/SKILL.md
33
33
 
34
- sent 184,388 bytes received 436 bytes 369,648.00 bytes/sec
35
- total size is 182,599 speedup is 0.99
34
+ sent 184,526 bytes received 436 bytes 369,924.00 bytes/sec
35
+ total size is 182,737 speedup is 0.99
@@ -125,14 +125,20 @@
125
125
  >
126
126
  <button
127
127
  aria-label="Select mode"
128
- class="flex h-9 w-9 items-center justify-center rounded-md border border-gray-200 bg-white text-lightNavbarIcons transition-colors duration-200 hover:bg-gray-100 dark:border-gray-600 dark:bg-gray-800 dark:text-darkNavbarIcons dark:hover:bg-gray-700"
128
+ class="flex px-2 py-1 items-center text-sm justify-center
129
+ rounded-md bg-white text-lightListTableHeadingText
130
+ transition-colors duration-200 hover:bg-gray-100
131
+ dark:text-darkListTableHeadingText dark:bg-gray-700 dark:hover:bg-gray-800"
129
132
  :class="isModeMenuOpen ? 'bg-gray-100 dark:bg-gray-700' : ''"
130
133
  :disabled="agentStore.isResponseInProgress"
131
134
  title="Select mode"
132
135
  type="button"
133
136
  @click="toggleModeMenu"
134
137
  >
135
- <IconBrainOutline class="h-4 w-4" />
138
+ {{ agentStore.activeModeName }}
139
+ <IconAngleDownOutline
140
+ class="w-4 h-4 ml-1"
141
+ />
136
142
  </button>
137
143
 
138
144
  <div
@@ -171,7 +177,7 @@
171
177
 
172
178
  <script setup lang="ts">
173
179
  import { IconChatBubbleLeft20Solid, IconSparklesSolid, IconArrowsPointingOut, IconArrowsPointingIn } from '@iconify-prerendered/vue-heroicons';
174
- import { IconCloseOutline, IconBarsOutline, IconArrowUpOutline, IconCloseSidebarSolid, IconOpenSidebarSolid, IconBrainOutline } from '@iconify-prerendered/vue-flowbite';
180
+ import { IconCloseOutline, IconBarsOutline, IconArrowUpOutline, IconCloseSidebarSolid, IconOpenSidebarSolid, IconAngleDownOutline } from '@iconify-prerendered/vue-flowbite';
175
181
  import { useTemplateRef, onMounted, ref,computed } from 'vue';
176
182
  import { onClickOutside } from '@vueuse/core'
177
183
  import ConversationArea from './ConversationArea.vue';
@@ -125,14 +125,20 @@
125
125
  >
126
126
  <button
127
127
  aria-label="Select mode"
128
- class="flex h-9 w-9 items-center justify-center rounded-md border border-gray-200 bg-white text-lightNavbarIcons transition-colors duration-200 hover:bg-gray-100 dark:border-gray-600 dark:bg-gray-800 dark:text-darkNavbarIcons dark:hover:bg-gray-700"
128
+ class="flex px-2 py-1 items-center text-sm justify-center
129
+ rounded-md bg-white text-lightListTableHeadingText
130
+ transition-colors duration-200 hover:bg-gray-100
131
+ dark:text-darkListTableHeadingText dark:bg-gray-700 dark:hover:bg-gray-800"
129
132
  :class="isModeMenuOpen ? 'bg-gray-100 dark:bg-gray-700' : ''"
130
133
  :disabled="agentStore.isResponseInProgress"
131
134
  title="Select mode"
132
135
  type="button"
133
136
  @click="toggleModeMenu"
134
137
  >
135
- <IconBrainOutline class="h-4 w-4" />
138
+ {{ agentStore.activeModeName }}
139
+ <IconAngleDownOutline
140
+ class="w-4 h-4 ml-1"
141
+ />
136
142
  </button>
137
143
 
138
144
  <div
@@ -171,7 +177,7 @@
171
177
 
172
178
  <script setup lang="ts">
173
179
  import { IconChatBubbleLeft20Solid, IconSparklesSolid, IconArrowsPointingOut, IconArrowsPointingIn } from '@iconify-prerendered/vue-heroicons';
174
- import { IconCloseOutline, IconBarsOutline, IconArrowUpOutline, IconCloseSidebarSolid, IconOpenSidebarSolid, IconBrainOutline } from '@iconify-prerendered/vue-flowbite';
180
+ import { IconCloseOutline, IconBarsOutline, IconArrowUpOutline, IconCloseSidebarSolid, IconOpenSidebarSolid, IconAngleDownOutline } from '@iconify-prerendered/vue-flowbite';
175
181
  import { useTemplateRef, onMounted, ref,computed } from 'vue';
176
182
  import { onClickOutside } from '@vueuse/core'
177
183
  import ConversationArea from './ConversationArea.vue';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/agent",
3
- "version": "1.16.1",
3
+ "version": "1.16.2",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",