@glossarist/concept-browser 0.7.12 → 0.7.13
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glossarist/concept-browser",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.13",
|
|
4
4
|
"description": "Vue SPA for browsing Glossarist terminology datasets with cross-reference resolution, graph visualization, and multi-language support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -536,12 +536,11 @@ function navTitle(page: { route: string }): string {
|
|
|
536
536
|
<button
|
|
537
537
|
v-if="group.label"
|
|
538
538
|
@click="toggleGroup(group.id)"
|
|
539
|
-
class="w-full flex items-
|
|
539
|
+
class="w-full flex items-start gap-1.5 px-2 py-1.5 rounded-lg text-xs font-semibold transition-colors hover:bg-ink-50"
|
|
540
540
|
:style="group.color ? { color: group.color } : {}"
|
|
541
541
|
>
|
|
542
|
-
<span class="w-3 text-[10px]">{{ isGroupExpanded(group.id) ? '▾' : '▸' }}</span>
|
|
543
|
-
<span class="flex-1 text-left
|
|
544
|
-
<span class="text-[10px] font-normal opacity-50">{{ group.entries.length }}</span>
|
|
542
|
+
<span class="w-3 text-[10px] mt-0.5 flex-shrink-0">{{ isGroupExpanded(group.id) ? '▾' : '▸' }}</span>
|
|
543
|
+
<span class="flex-1 text-left leading-snug">{{ group.label }}</span>
|
|
545
544
|
</button>
|
|
546
545
|
|
|
547
546
|
<!-- Group entries -->
|