@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 +2 -2
- package/custom/ChatSurface.vue +9 -3
- package/dist/custom/ChatSurface.vue +9 -3
- package/package.json +1 -1
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,
|
|
35
|
-
total size is 182,
|
|
34
|
+
sent 184,526 bytes received 436 bytes 369,924.00 bytes/sec
|
|
35
|
+
total size is 182,737 speedup is 0.99
|
package/custom/ChatSurface.vue
CHANGED
|
@@ -125,14 +125,20 @@
|
|
|
125
125
|
>
|
|
126
126
|
<button
|
|
127
127
|
aria-label="Select mode"
|
|
128
|
-
class="flex
|
|
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
|
-
|
|
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,
|
|
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
|
|
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
|
-
|
|
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,
|
|
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';
|