@kitconcept/volto-light-theme 5.0.1 → 5.0.2

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,9 @@
1
- ## 5.0.1 (2024-10-09)
1
+ ## 5.0.2 (2024-12-09)
2
2
 
3
3
  ### Bugfix
4
4
 
5
- - Fixed missing key in header @sneridagh [#417](https://github.com/kitconcept/volto-light-theme/pull/417)
6
-
7
- ### Internal
8
-
9
- - Update versions to latest volto-highlight-block, volto-button-block @sneridagh [#408](https://github.com/kitconcept/volto-light-theme/pull/408)
10
- - Bump `volto-button-block` version @sneridagh
5
+ - Fixed missing key in header @sneridagh
6
+ Bump `volto-button-block` version
11
7
  Bump to Volto 18.0.0-alpha.45 [#417](https://github.com/kitconcept/volto-light-theme/pull/417)
12
8
 
13
9
 
package/CHANGELOG.md CHANGED
@@ -8,6 +8,14 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 5.0.2 (2024-12-09)
12
+
13
+ ### Bugfix
14
+
15
+ - Fixed missing key in header @sneridagh
16
+ Bump `volto-button-block` version
17
+ Bump to Volto 18.0.0-alpha.45 [#417](https://github.com/kitconcept/volto-light-theme/pull/417)
18
+
11
19
  ## 5.0.1 (2024-10-09)
12
20
 
13
21
  ### Bugfix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitconcept/volto-light-theme",
3
- "version": "5.0.1",
3
+ "version": "5.0.2",
4
4
  "description": "Volto Light Theme by kitconcept",
5
5
  "main": "src/index.js",
6
6
  "types": "src/types/index.d.ts",
@@ -30,7 +30,7 @@
30
30
  "release-it": "^17.7.0"
31
31
  },
32
32
  "dependencies": {
33
- "@plone/components": "2.0.0-alpha.13"
33
+ "@plone/components": "2.2.1"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@eeacms/volto-accordion-block": "^10.4.6",
package/src/index.js CHANGED
@@ -60,13 +60,11 @@ const applyConfig = (config) => {
60
60
  config.settings.contentMetadataTagsImageField = 'preview_image';
61
61
 
62
62
  // Initial block for event content type
63
- config.blocks.initialBlocks = {
64
- Event: [
65
- { '@type': 'title' },
66
- { '@type': 'eventMetadata', fixed: true, required: true },
67
- { '@type': 'slate' },
68
- ],
69
- };
63
+ config.blocks.initialBlocks.Event = [
64
+ { '@type': 'title' },
65
+ { '@type': 'eventMetadata', fixed: true, required: true },
66
+ { '@type': 'slate' },
67
+ ];
70
68
 
71
69
  config.settings.siteLabel = '';
72
70
  config.settings.intranetHeader = false;