@eeacms/volto-marine-policy 1.1.7 → 1.1.9

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 CHANGED
@@ -4,11 +4,24 @@ 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
- ### [1.1.7](https://github.com/eea/volto-marine-policy/compare/1.1.6...1.1.7) - 10 May 2024
7
+ ### [1.1.9](https://github.com/eea/volto-marine-policy/compare/1.1.8...1.1.9) - 17 May 2024
8
8
 
9
- #### :house: Internal changes
9
+ #### :bug: Bug Fixes
10
10
 
11
- - chore: enable some needed externalRoutes [laszlocseh - [`0d50a5b`](https://github.com/eea/volto-marine-policy/commit/0d50a5b998cd06387cde59bde496907b81c697bd)]
11
+ - fix: max-height of toolbar for smaller screens [nileshgulia1 - [`09658d2`](https://github.com/eea/volto-marine-policy/commit/09658d211f7f27241babbda4caa3196852887b1f)]
12
+
13
+ ### [1.1.8](https://github.com/eea/volto-marine-policy/compare/1.1.7...1.1.8) - 15 May 2024
14
+
15
+ #### :bug: Bug Fixes
16
+
17
+ - fix: add resolutions to addons [nileshgulia1 - [`9c25b82`](https://github.com/eea/volto-marine-policy/commit/9c25b82ff08f701bb61838816c41f1695ee2ca00)]
18
+
19
+ #### :hammer_and_wrench: Others
20
+
21
+ - pin elastic-search-ui to 1.21.2 [nileshgulia1 - [`4957ebb`](https://github.com/eea/volto-marine-policy/commit/4957ebb22958dce41da0b0458fa5c0e61b4640fe)]
22
+ - pin @elasic/search-ui [nileshgulia1 - [`dd4c2a0`](https://github.com/eea/volto-marine-policy/commit/dd4c2a0f8a2cf8a669854158ac61852ea141ce71)]
23
+ - update resolutions [nileshgulia1 - [`c46ec3e`](https://github.com/eea/volto-marine-policy/commit/c46ec3e6eb1e6dbad1c5f12f314519c0182be1a4)]
24
+ ### [1.1.7](https://github.com/eea/volto-marine-policy/compare/1.1.6...1.1.7) - 10 May 2024
12
25
 
13
26
  ### [1.1.6](https://github.com/eea/volto-marine-policy/compare/1.1.5...1.1.6) - 9 May 2024
14
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-marine-policy",
3
- "version": "1.1.7",
3
+ "version": "1.1.9",
4
4
  "description": "@eeacms/volto-marine-policy: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -18,12 +18,13 @@
18
18
  },
19
19
  "resolutions": {
20
20
  "react-countup/countup.js": "2.5.0",
21
- "d3-array": "^2.12.1"
21
+ "d3-array": "^2.12.1",
22
+ "@elastic/search-ui": "1.21.2",
23
+ "@eeacms/volto-searchlib": "^0.9.3"
22
24
  },
23
25
  "addons": [
24
26
  "@eeacms/volto-tabs-block",
25
27
  "@eeacms/volto-embed",
26
- "@eeacms/volto-slots",
27
28
  "@eeacms/volto-eea-design-system",
28
29
  "@eeacms/volto-eea-website-theme",
29
30
  "@eeacms/volto-globalsearch",
@@ -31,11 +32,10 @@
31
32
  ],
32
33
  "dependencies": {
33
34
  "@eeacms/volto-eea-design-system": "*",
34
- "@eeacms/volto-eea-website-theme": "*",
35
- "@eeacms/volto-embed": "*",
35
+ "@eeacms/volto-eea-website-theme": "^1.33.2",
36
+ "@eeacms/volto-embed": "^9.1.1",
36
37
  "@eeacms/volto-globalsearch": "^1.0.20",
37
38
  "@eeacms/volto-searchlib": "^0.6.3",
38
- "@eeacms/volto-slots": "*",
39
39
  "@eeacms/volto-tabs-block": "*",
40
40
  "axios": "0.25.0",
41
41
  "jquery": "3.6.0",
package/src/index.js CHANGED
@@ -343,15 +343,6 @@ const applyConfig = (config) => {
343
343
  config.settings.slate.styleMenu = config.settings.slate.styleMenu || {};
344
344
  config.settings.slate.styleMenu.inlineStyles = [
345
345
  ...(config.settings.slate.styleMenu?.inlineStyles || []),
346
- { cssClass: 'h1', label: 'H1 36px' },
347
- { cssClass: 'h2', label: 'H2 30px' },
348
- { cssClass: 'h3', label: 'H3 24px' },
349
- { cssClass: 'h4', label: 'H4 18px' },
350
- { cssClass: 'h5', label: 'H5 14px' },
351
- { cssClass: 'p-text', label: 'Paragraph 18px' },
352
- { cssClass: 'poppins-regular', label: 'Poppins Regular' },
353
- { cssClass: 'poppins-light', label: 'Poppins Light' },
354
- { cssClass: 'poppins-bold', label: 'Poppins Bold' },
355
346
  { cssClass: 'large-text', label: 'Large text' },
356
347
  { cssClass: 'primary-big-text', label: 'Big text' },
357
348
  { cssClass: 'medium-text', label: 'Medium text' },
@@ -361,4 +361,11 @@ body.custom-page-header .breadcrumbs {
361
361
  margin-left: auto;
362
362
  margin-right: auto;
363
363
  width: 100%;
364
+ }
365
+
366
+ @media only screen and (max-height: @tabletBreakpoint) {
367
+ #toolbar .toolbar-content.show {
368
+ max-height: 700px !important;
369
+ z-index: 5;
370
+ }
364
371
  }