@kitconcept/volto-light-theme 5.0.0 → 5.0.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.draft CHANGED
@@ -1,17 +1,13 @@
1
- ## 5.0.0 (2024-07-02)
1
+ ## 5.0.1 (2024-10-09)
2
2
 
3
- ### Breaking
3
+ ### Bugfix
4
4
 
5
- - Upgrade to a39, enable new image widget @sneridagh
5
+ - Fixed missing key in header @sneridagh [#417](https://github.com/kitconcept/volto-light-theme/pull/417)
6
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
7
+ ### Internal
13
8
 
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)
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
11
+ Bump to Volto 18.0.0-alpha.45 [#417](https://github.com/kitconcept/volto-light-theme/pull/417)
16
12
 
17
13
 
package/CHANGELOG.md CHANGED
@@ -8,6 +8,18 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 5.0.1 (2024-10-09)
12
+
13
+ ### Bugfix
14
+
15
+ - Fixed missing key in header @sneridagh [#417](https://github.com/kitconcept/volto-light-theme/pull/417)
16
+
17
+ ### Internal
18
+
19
+ - Update versions to latest volto-highlight-block, volto-button-block @sneridagh [#408](https://github.com/kitconcept/volto-light-theme/pull/408)
20
+ - Bump `volto-button-block` version @sneridagh
21
+ Bump to Volto 18.0.0-alpha.45 [#417](https://github.com/kitconcept/volto-light-theme/pull/417)
22
+
11
23
  ## 5.0.0 (2024-07-02)
12
24
 
13
25
  ### 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.1",
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.0.0-alpha.13"
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 && (