@kitconcept/volto-light-theme 5.0.0 → 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,17 +1,9 @@
1
- ## 5.0.0 (2024-07-02)
1
+ ## 5.0.2 (2024-12-09)
2
2
 
3
- ### Breaking
3
+ ### Bugfix
4
4
 
5
- - Upgrade to a39, enable new image widget @sneridagh
6
-
7
- Breaking:
8
- The new Image widget component is used in the VLT shadowed image component.
9
- The minimum Volto version requirements have changed for this reason.
10
- The new image widget is present in core from these versions on:
11
- - Volto 17.18.0
12
- - Volto 18.0.0-alpha.36
13
-
14
- For more information, please take a look at the upgrade guide:
15
- https://github.com/kitconcept/volto-light-theme/blob/main/UPGRADE-GUIDE.md [#405](https://github.com/kitconcept/volto-light-theme/pull/405)
5
+ - Fixed missing key in header @sneridagh
6
+ Bump `volto-button-block` version
7
+ Bump to Volto 18.0.0-alpha.45 [#417](https://github.com/kitconcept/volto-light-theme/pull/417)
16
8
 
17
9
 
package/CHANGELOG.md CHANGED
@@ -8,6 +8,26 @@
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
+
19
+ ## 5.0.1 (2024-10-09)
20
+
21
+ ### Bugfix
22
+
23
+ - Fixed missing key in header @sneridagh [#417](https://github.com/kitconcept/volto-light-theme/pull/417)
24
+
25
+ ### Internal
26
+
27
+ - Update versions to latest volto-highlight-block, volto-button-block @sneridagh [#408](https://github.com/kitconcept/volto-light-theme/pull/408)
28
+ - Bump `volto-button-block` version @sneridagh
29
+ Bump to Volto 18.0.0-alpha.45 [#417](https://github.com/kitconcept/volto-light-theme/pull/417)
30
+
11
31
  ## 5.0.0 (2024-07-02)
12
32
 
13
33
  ### Breaking
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitconcept/volto-light-theme",
3
- "version": "5.0.0",
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",
@@ -26,20 +26,20 @@
26
26
  "access": "public"
27
27
  },
28
28
  "devDependencies": {
29
- "@plone/scripts": "^3.6.1",
30
- "release-it": "^17.1.1"
29
+ "@plone/scripts": "^3.6.2",
30
+ "release-it": "^17.7.0"
31
31
  },
32
32
  "dependencies": {
33
- "@plone/components": "2.0.0-alpha.11"
33
+ "@plone/components": "2.2.1"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@eeacms/volto-accordion-block": "^10.4.6",
37
- "@kitconcept/volto-button-block": "^2.3.1",
37
+ "@kitconcept/volto-button-block": "^3.0.2",
38
38
  "@kitconcept/volto-dsgvo-banner": "^2.3.2",
39
39
  "@kitconcept/volto-heading-block": "^2.4.0",
40
- "@kitconcept/volto-highlight-block": "^3.0.1",
40
+ "@kitconcept/volto-highlight-block": "^4.0.0",
41
41
  "@kitconcept/volto-introduction-block": "^1.0.0",
42
- "@kitconcept/volto-separator-block": "^4.1.1",
42
+ "@kitconcept/volto-separator-block": "^4.1.2",
43
43
  "@kitconcept/volto-slider-block": "^6.3.1"
44
44
  },
45
45
  "scripts": {
@@ -74,7 +74,9 @@ const IntranetHeader = ({ pathname, siteLabel, token, siteAction }) => {
74
74
  {!token && <Anontools />}
75
75
  {siteAction &&
76
76
  siteAction.map((item) => (
77
- <UniversalLink href={item.url}>{item.title}</UniversalLink>
77
+ <UniversalLink key={item.url} href={item.url}>
78
+ {item.title}
79
+ </UniversalLink>
78
80
  ))}
79
81
  </div>
80
82
  {siteLabel && (
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;