@kitconcept/volto-light-theme 7.0.0-alpha.12 → 7.0.0-alpha.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/.changelog.draft CHANGED
@@ -1,13 +1,7 @@
1
- ## 7.0.0-alpha.12 (2025-06-18)
2
-
3
- ### Feature
4
-
5
- - Reintroduce an improved `Anontools` using `portal_actions`. @sneridagh [#581](https://github.com/kitconcept/volto-light-theme/pull/581)
1
+ ## 7.0.0-alpha.13 (2025-06-18)
6
2
 
7
3
  ### Bugfix
8
4
 
9
- - Fix sticky menu precedence in z-index with the fat menu. @sneridagh [#582](https://github.com/kitconcept/volto-light-theme/pull/582)
10
- - Fixed listing in grids variations to match the standalone ones (except Grid). @sneridagh [#582](https://github.com/kitconcept/volto-light-theme/pull/582)
11
- - Fixed Person CSS in Search block. @sneridagh [#584](https://github.com/kitconcept/volto-light-theme/pull/584)
5
+ - Fixed default `selectedItemAttrs` for Teaser to include Person specific attributes. @sneridagh
12
6
 
13
7
 
package/CHANGELOG.md CHANGED
@@ -8,6 +8,12 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 7.0.0-alpha.13 (2025-06-18)
12
+
13
+ ### Bugfix
14
+
15
+ - Fixed default `selectedItemAttrs` for Teaser to include Person specific attributes. @sneridagh
16
+
11
17
  ## 7.0.0-alpha.12 (2025-06-18)
12
18
 
13
19
  ### Feature
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitconcept/volto-light-theme",
3
- "version": "7.0.0-alpha.12",
3
+ "version": "7.0.0-alpha.13",
4
4
  "description": "Volto Light Theme by kitconcept",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -3,6 +3,10 @@ export const teaserSchemaEnhancer = ({ schema, formData, intl }) => {
3
3
  schema.properties.href.selectedItemAttrs.push('effective');
4
4
  schema.properties.href.selectedItemAttrs.push('start');
5
5
  schema.properties.href.selectedItemAttrs.push('end');
6
+ schema.properties.href.selectedItemAttrs.push('description');
7
+ schema.properties.href.selectedItemAttrs.push('contact_email');
8
+ schema.properties.href.selectedItemAttrs.push('contact_phone');
9
+ schema.properties.href.selectedItemAttrs.push('contact_room');
6
10
 
7
11
  return schema;
8
12
  };