@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 +7 -11
- package/CHANGELOG.md +12 -0
- package/package.json +7 -7
- package/src/components/Header/Header.jsx +3 -1
package/.changelog.draft
CHANGED
|
@@ -1,17 +1,13 @@
|
|
|
1
|
-
## 5.0.
|
|
1
|
+
## 5.0.1 (2024-10-09)
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### Bugfix
|
|
4
4
|
|
|
5
|
-
-
|
|
5
|
+
- Fixed missing key in header @sneridagh [#417](https://github.com/kitconcept/volto-light-theme/pull/417)
|
|
6
6
|
|
|
7
|
-
|
|
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
|
-
|
|
15
|
-
|
|
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.
|
|
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.
|
|
30
|
-
"release-it": "^17.
|
|
29
|
+
"@plone/scripts": "^3.6.2",
|
|
30
|
+
"release-it": "^17.7.0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@plone/components": "2.0.0-alpha.
|
|
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": "^
|
|
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": "^
|
|
40
|
+
"@kitconcept/volto-highlight-block": "^4.0.0",
|
|
41
41
|
"@kitconcept/volto-introduction-block": "^1.0.0",
|
|
42
|
-
"@kitconcept/volto-separator-block": "^4.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
|
|
77
|
+
<UniversalLink key={item.url} href={item.url}>
|
|
78
|
+
{item.title}
|
|
79
|
+
</UniversalLink>
|
|
78
80
|
))}
|
|
79
81
|
</div>
|
|
80
82
|
{siteLabel && (
|