@eeacms/volto-eea-website-theme 0.6.0 → 0.6.3
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.md +21 -1
- package/package.json +1 -1
- package/src/config.js +0 -3
- package/src/index.js +4 -0
- package/theme/theme.config +2 -1
package/CHANGELOG.md
CHANGED
@@ -4,13 +4,33 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
4
4
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
6
6
|
|
7
|
+
#### [0.6.3](https://github.com/eea/volto-eea-website-theme/compare/0.6.2...0.6.3)
|
8
|
+
|
9
|
+
- Relase 0.6.3 [`ea16b39`](https://github.com/eea/volto-eea-website-theme/commit/ea16b39873096e16005f360746f4ef92220bc3fd)
|
10
|
+
- Remove unused languages [`fd988a6`](https://github.com/eea/volto-eea-website-theme/commit/fd988a6f172ad85dd5533e258e0be36e07693717)
|
11
|
+
|
12
|
+
#### [0.6.2](https://github.com/eea/volto-eea-website-theme/compare/0.6.1...0.6.2)
|
13
|
+
|
14
|
+
> 1 June 2022
|
15
|
+
|
16
|
+
- Release [`#28`](https://github.com/eea/volto-eea-website-theme/pull/28)
|
17
|
+
- change (theme): added hero component [`943139d`](https://github.com/eea/volto-eea-website-theme/commit/943139d003a26b2353574da804ca8ff8f28d7467)
|
18
|
+
|
19
|
+
#### [0.6.1](https://github.com/eea/volto-eea-website-theme/compare/0.6.0...0.6.1)
|
20
|
+
|
21
|
+
> 24 May 2022
|
22
|
+
|
23
|
+
- Custom CSS for Description block [`#27`](https://github.com/eea/volto-eea-website-theme/pull/27)
|
24
|
+
|
7
25
|
#### [0.6.0](https://github.com/eea/volto-eea-website-theme/compare/0.5.4...0.6.0)
|
8
26
|
|
27
|
+
> 19 May 2022
|
28
|
+
|
29
|
+
- Remove quote block customization [`#26`](https://github.com/eea/volto-eea-website-theme/pull/26)
|
9
30
|
- Cleanup [`415014b`](https://github.com/eea/volto-eea-website-theme/commit/415014b8399de5ffb5afaa9d6440b4ea5fe2bf2a)
|
10
31
|
- Release 0.6.0 [`1253ebb`](https://github.com/eea/volto-eea-website-theme/commit/1253ebba2f1c88dbc6b77a135580f3a5d7752729)
|
11
32
|
- fix(comments): Replace moment with formatRelativeDate helper from Volto core [`9b7974a`](https://github.com/eea/volto-eea-website-theme/commit/9b7974adb3d01065b80f61d7c3c1c09a93199ee6)
|
12
33
|
- fix(seo): SSR Title block [`887edc2`](https://github.com/eea/volto-eea-website-theme/commit/887edc25e45c44bfe99b909ae87c7fb7a90278a6)
|
13
|
-
- Remove quote block customization [`4d459f5`](https://github.com/eea/volto-eea-website-theme/commit/4d459f57265c5b0b1e6ff8472e4f0350a888ca04)
|
14
34
|
|
15
35
|
#### [0.5.4](https://github.com/eea/volto-eea-website-theme/compare/0.5.3...0.5.4)
|
16
36
|
|
package/package.json
CHANGED
package/src/config.js
CHANGED
@@ -160,9 +160,7 @@ export const footerActions = [
|
|
160
160
|
export const address = 'Kongens Nytorv 6 1050 Copenhagen K (+45) 33 36 71 00';
|
161
161
|
|
162
162
|
export const languages = [
|
163
|
-
{ name: 'Albanian', code: 'sq' },
|
164
163
|
{ name: 'Български', code: 'bg' },
|
165
|
-
{ name: 'Bosanski', code: 'bs' },
|
166
164
|
{ name: 'čeština', code: 'cs' },
|
167
165
|
{ name: 'Hrvatski', code: 'hr' },
|
168
166
|
{ name: 'dansk', code: 'da' },
|
@@ -178,7 +176,6 @@ export const languages = [
|
|
178
176
|
{ name: 'italiano', code: 'it' },
|
179
177
|
{ name: 'Latviešu', code: 'lv' },
|
180
178
|
{ name: 'lietuvių', code: 'lt' },
|
181
|
-
{ name: 'Macedonian', code: 'mk' },
|
182
179
|
{ name: 'Malti', code: 'mt' },
|
183
180
|
{ name: 'Norsk', code: 'no' },
|
184
181
|
{ name: 'polski', code: 'pl' },
|
package/src/index.js
CHANGED
@@ -15,6 +15,10 @@ const applyConfig = (config) => {
|
|
15
15
|
config.blocks.blocksConfig.accordion.semanticIcon = 'ri-arrow-down-s-line';
|
16
16
|
}
|
17
17
|
|
18
|
+
// Description block custom CSS
|
19
|
+
config.blocks.blocksConfig.description.className =
|
20
|
+
'documentDescription eea callout';
|
21
|
+
|
18
22
|
// apply inPage navigation
|
19
23
|
config.settings.appExtras = [
|
20
24
|
...(config.settings.appExtras || []),
|