@glossarist/concept-browser 0.4.7 → 0.4.8

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.4.7",
3
+ "version": "0.4.8",
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": {
@@ -5,8 +5,8 @@ import { useSiteConfig } from '../config/use-site-config';
5
5
  const { config } = useSiteConfig();
6
6
 
7
7
  const poweredBy = computed(() => {
8
- const pb = config.value?.features?.poweredBy as { title?: string; url?: string } | undefined;
9
- return { title: pb?.title || 'Glossarist Concept Browser', url: pb?.url || 'https://github.com/glossarist/concept-browser' };
8
+ const pb = config.value?.features?.poweredBy as { message?: string; url?: string } | undefined;
9
+ return { message: pb?.message || 'Built with the Glossarist Concept Browser', url: pb?.url || 'https://github.com/glossarist/concept-browser' };
10
10
  });
11
11
 
12
12
  const socialLinks = computed(() => {
@@ -55,7 +55,7 @@ const ownerUrl = computed(() => config.value?.branding?.ownerUrl || '/');
55
55
  >{{ link.label }}</a>
56
56
  <span class="text-ink-200">|</span>
57
57
  <span class="text-xs">
58
- Built with the <a :href="poweredBy.url" target="_blank" rel="noopener" class="concept-link">{{ poweredBy.title }}</a>
58
+ <a :href="poweredBy.url" target="_blank" rel="noopener" class="concept-link">{{ poweredBy.message }}</a>
59
59
  </span>
60
60
  </div>
61
61
  </div>
@@ -235,13 +235,12 @@ function scrollMainToTop() {
235
235
  <!-- Powered by -->
236
236
  <div class="mt-6 pt-4 border-t border-ink-100/60">
237
237
  <div class="text-[11px] text-ink-300">
238
- Built with the
239
238
  <a
240
239
  :href="(siteConfig?.features?.poweredBy as any)?.url || 'https://github.com/glossarist/concept-browser'"
241
240
  target="_blank"
242
241
  rel="noopener"
243
242
  class="concept-link"
244
- >{{ (siteConfig?.features?.poweredBy as any)?.title || 'Glossarist Concept Browser' }}</a>
243
+ >{{ (siteConfig?.features?.poweredBy as any)?.message || 'Built with the Glossarist Concept Browser' }}</a>
245
244
  </div>
246
245
  </div>
247
246
  </div>
@@ -31,8 +31,8 @@ export interface SiteBranding {
31
31
  // === Features ===
32
32
 
33
33
  export interface PoweredByConfig {
34
- title: string;
35
- url: string;
34
+ message?: string;
35
+ url?: string;
36
36
  }
37
37
 
38
38
  export interface SiteFeatures {