@eox/pages-theme-eox 1.2.0 → 1.2.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.1](https://gitlab.eox.at/eox/hub/eoxhub-portal/compare/v1.2.0...v1.2.1) (2026-03-23)
4
+
5
+ ### Bug Fixes
6
+
7
+ - add `logo.target` prop to LogoSection ([8b664b4](https://gitlab.eox.at/eox/hub/eoxhub-portal/commit/8b664b4f981a200d6bf28ea53999035850698a49))
8
+
3
9
  ## [1.2.0](https://gitlab.eox.at/eox/hub/eoxhub-portal/compare/v1.1.2...v1.2.0) (2026-03-19)
4
10
 
5
11
  ### Features
package/README.md CHANGED
@@ -238,7 +238,12 @@ Displays a grid of client or partner logos. It automatically handles logo sizing
238
238
  ```html
239
239
  <LogoSection
240
240
  :logos="[
241
- { image: '/logos/client1.png', alt: 'Client 1', link: 'https://client1.com' },
241
+ {
242
+ image: '/logos/client1.png',
243
+ alt: 'Client 1',
244
+ link: 'https://client1.com',
245
+ target: '_blank'
246
+ },
242
247
  { image: '/logos/client2.png', alt: 'Client 2' }
243
248
  ]"
244
249
  base-height="4"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eox/pages-theme-eox",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "type": "module",
5
5
  "description": "Vitepress Theme with EOX branding",
6
6
  "main": "src/index.js",
@@ -5,6 +5,7 @@
5
5
  v-for="logo in logos"
6
6
  :is="logo.link ? 'a' : 'div'"
7
7
  :href="logo.link || undefined"
8
+ :target="logo.target || undefined"
8
9
  class="logo"
9
10
  >
10
11
  <img :src="logo.image" :alt="logo.alt" />