@mundogamernetwork/shared-ui 1.1.88 → 1.1.90

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.
@@ -630,7 +630,7 @@ body:has(.kit-press) {
630
630
  flex-direction: column;
631
631
  align-items: center;
632
632
  gap: 12px;
633
- padding: 40px 24px;
633
+ padding: 64px 24px;
634
634
  margin-top: 0;
635
635
  border-top: 1px solid var(--kit-line, #252a34);
636
636
  text-align: center;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mundogamernetwork/shared-ui",
3
- "version": "1.1.88",
3
+ "version": "1.1.90",
4
4
  "description": "Mundo Gamer Network - Shared UI Layer (Nuxt 3)",
5
5
  "type": "module",
6
6
  "main": "./nuxt.config.ts",
@@ -29,7 +29,7 @@ const lang = SUPPORTED_LOCALES.find(l => routePath.includes(l)) || 'en';
29
29
  const { data: kitData, error: fetchError, pending } = await useAsyncData(
30
30
  `press-kit-${slug}`,
31
31
  () => $fetch<any>(`${apiBase}/public/press-kits/${slug}`, {
32
- params: { include: 'assets,videos,credits,awards,quotes,articles,coverage,showcases', lang },
32
+ params: { include: 'assets,videos,credits,awards,quotes', lang },
33
33
  }),
34
34
  { lazy: false },
35
35
  );
@@ -133,6 +133,9 @@ const facts = computed(() => {
133
133
  if (k.steam_url) out.push({ label: 'Steam', value: 'Steam ↗', href: k.steam_url });
134
134
  if (k.epic_url) out.push({ label: 'Epic Games', value: 'Epic Games ↗', href: k.epic_url });
135
135
  if (k.itch_url) out.push({ label: 'itch.io', value: 'itch.io ↗', href: k.itch_url });
136
+ if (k.game?.platforms?.length) out.push({ label: 'kit.press.platforms', value: k.game.platforms.join(', ') });
137
+ if (k.game?.genres?.length) out.push({ label: 'kit.press.genres', value: k.game.genres.join(', ') });
138
+ if (k.game?.engines?.length) out.push({ label: 'kit.press.engine', value: k.game.engines.join(', ') });
136
139
  if (k.press_contact_email) out.push({ label: 'kit.press.contact', value: k.press_contact_email, href: `mailto:${k.press_contact_email}` });
137
140
  return out;
138
141
  });