@adminforth/agent 1.18.2 → 1.18.3
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/ToolRenderer.vue +2 -2
- package/dist/custom/ToolRenderer.vue +2 -2
- package/package.json +1 -1
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,
|
|
36
|
-
total size is 185,
|
|
35
|
+
sent 187,006 bytes received 455 bytes 374,922.00 bytes/sec
|
|
36
|
+
total size is 185,154 speedup is 0.99
|
package/custom/ToolRenderer.vue
CHANGED
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
:key="section.label"
|
|
32
32
|
class="overflow-hidden rounded-xl border border-black/5 bg-white/70 shadow-sm backdrop-blur-sm dark:border-white/10 dark:bg-slate-900/50"
|
|
33
33
|
>
|
|
34
|
-
<header class="border-b border-black/5 px-3 py-2 text-[
|
|
34
|
+
<header class="border-b border-black/5 px-3 py-2 text-[0.7rem] font-semibold uppercase tracking-[0.22em] text-gray-500 dark:border-white/10 dark:text-gray-400">
|
|
35
35
|
{{ section.label }}
|
|
36
36
|
</header>
|
|
37
37
|
<div class="grid grid-cols-[auto,1fr] gap-x-3 gap-y-1 px-3 py-3 font-mono text-xs leading-5 text-gray-700 dark:text-gray-200">
|
|
38
38
|
<template v-for="line in section.lines" :key="`${section.label}-${line.number}`">
|
|
39
|
-
<span class="select-none text-[
|
|
39
|
+
<span class="select-none text-[0.7rem] text-gray-400 dark:text-gray-500">{{ line.number }}</span>
|
|
40
40
|
<span class="whitespace-pre-wrap break-words">{{ line.content || ' ' }}</span>
|
|
41
41
|
</template>
|
|
42
42
|
</div>
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
:key="section.label"
|
|
32
32
|
class="overflow-hidden rounded-xl border border-black/5 bg-white/70 shadow-sm backdrop-blur-sm dark:border-white/10 dark:bg-slate-900/50"
|
|
33
33
|
>
|
|
34
|
-
<header class="border-b border-black/5 px-3 py-2 text-[
|
|
34
|
+
<header class="border-b border-black/5 px-3 py-2 text-[0.7rem] font-semibold uppercase tracking-[0.22em] text-gray-500 dark:border-white/10 dark:text-gray-400">
|
|
35
35
|
{{ section.label }}
|
|
36
36
|
</header>
|
|
37
37
|
<div class="grid grid-cols-[auto,1fr] gap-x-3 gap-y-1 px-3 py-3 font-mono text-xs leading-5 text-gray-700 dark:text-gray-200">
|
|
38
38
|
<template v-for="line in section.lines" :key="`${section.label}-${line.number}`">
|
|
39
|
-
<span class="select-none text-[
|
|
39
|
+
<span class="select-none text-[0.7rem] text-gray-400 dark:text-gray-500">{{ line.number }}</span>
|
|
40
40
|
<span class="whitespace-pre-wrap break-words">{{ line.content || ' ' }}</span>
|
|
41
41
|
</template>
|
|
42
42
|
</div>
|