@eeacms/volto-marine-policy 1.0.0 → 1.1.0

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/.eslintrc.js CHANGED
@@ -54,7 +54,7 @@ const defaultConfig = {
54
54
  allowReferrer: true,
55
55
  },
56
56
  ],
57
- }
57
+ },
58
58
  };
59
59
 
60
60
  const config = addonExtenders.reduce(
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
- # Changelog
1
+ ### Changelog
2
2
 
3
- ## 1.0.0
3
+ All notable changes to this project will be documented in this file. Dates are displayed in UTC.
4
4
 
5
- - Initial release
5
+ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
+
7
+ ### [1.1.0](https://github.com/eea/volto-marine-policy/compare/1.0.0...1.1.0) - 15 April 2024
8
+
9
+ #### :hammer_and_wrench: Others
10
+
11
+ - fix cypress [nileshgulia1 - [`9d588e7`](https://github.com/eea/volto-marine-policy/commit/9d588e7e9ba1cf258c4356a3d25bcc6f1ae98356)]
12
+ - bump version [nileshgulia1 - [`55f8b71`](https://github.com/eea/volto-marine-policy/commit/55f8b7144a8c41fcd6ee327660dfd0eb512fb0ea)]
13
+ - add policy customizations [nileshgulia1 - [`8355128`](https://github.com/eea/volto-marine-policy/commit/8355128ef8c713d86261ce57d709250a38213ef6)]
14
+ - delete tpl files [nileshgulia1 - [`d21afd0`](https://github.com/eea/volto-marine-policy/commit/d21afd0ae83ad54240bea00e68656c1b87630d8e)]
15
+ ## [1.0.0](https://github.com/eea/volto-marine-policy/compare/0.1.20...1.0.0) - 14 April 2024
16
+
17
+ ### 0.1.20 - 15 April 2024
18
+
19
+ #### :hammer_and_wrench: Others
20
+
21
+ - add policy customizations [nileshgulia1 - [`8355128`](https://github.com/eea/volto-marine-policy/commit/8355128ef8c713d86261ce57d709250a38213ef6)]
22
+ - delete tpl files [nileshgulia1 - [`d21afd0`](https://github.com/eea/volto-marine-policy/commit/d21afd0ae83ad54240bea00e68656c1b87630d8e)]
23
+ - initialized volto-marine-policy [nileshgulia1 - [`9e6cf2f`](https://github.com/eea/volto-marine-policy/commit/9e6cf2f41e7c4c95571f5368d4da1411b73a3f90)]
24
+ - Initialize develop [Nilesh - [`d4cfba5`](https://github.com/eea/volto-marine-policy/commit/d4cfba54fc713b546fc68b8e253bfdb9c92e64cc)]
25
+ - Initial commit [Nilesh - [`ba76f13`](https://github.com/eea/volto-marine-policy/commit/ba76f134700e64d583e4c7d31857a2f715b64edf)]
@@ -1,3 +1,5 @@
1
+ require('dotenv').config({ path: __dirname + '/.env' });
2
+
1
3
  module.exports = {
2
4
  testMatch: ['**/src/addons/**/?(*.)+(spec|test).[jt]s?(x)'],
3
5
  collectCoverageFrom: [
@@ -5,19 +7,27 @@ module.exports = {
5
7
  '!src/**/*.d.ts',
6
8
  ],
7
9
  moduleNameMapper: {
10
+ '\\.(css|less|scss|sass)$': 'identity-obj-proxy',
8
11
  '@plone/volto/cypress': '<rootDir>/node_modules/@plone/volto/cypress',
9
12
  '@plone/volto/babel': '<rootDir>/node_modules/@plone/volto/babel',
10
13
  '@plone/volto/(.*)$': '<rootDir>/node_modules/@plone/volto/src/$1',
11
- '@package/(.*)$': '<rootDir>/src/$1',
14
+ '@package/(.*)$': '<rootDir>/node_modules/@plone/volto/src/$1',
15
+ '@root/(.*)$': '<rootDir>/node_modules/@plone/volto/src/$1',
12
16
  '@plone/volto-quanta/(.*)$': '<rootDir>/src/addons/volto-quanta/src/$1',
13
- '@eeacms/(.*?)/(.*)$': '<rootDir>/src/addons/$1/src/$2',
14
- '@plone/volto-slate':
17
+ '@eeacms/search/(.*)$': '<rootDir>/src/addons/volto-searchlib/searchlib/$1',
18
+ '@eeacms/search': '<rootDir>/src/addons/volto-searchlib/searchlib',
19
+ '@eeacms/(.*?)/(.*)$': '<rootDir>/node_modules/@eeacms/$1/src/$2',
20
+ '@plone/volto-slate$':
15
21
  '<rootDir>/node_modules/@plone/volto/packages/volto-slate/src',
22
+ '@plone/volto-slate/(.*)$':
23
+ '<rootDir>/node_modules/@plone/volto/packages/volto-slate/src/$1',
16
24
  '~/(.*)$': '<rootDir>/src/$1',
17
25
  'load-volto-addons':
18
26
  '<rootDir>/node_modules/@plone/volto/jest-addons-loader.js',
19
- '\\.(css|less|scss|sass)$': 'identity-obj-proxy',
20
27
  },
28
+ transformIgnorePatterns: [
29
+ '/node_modules/(?!(@plone|@root|@package|@eeacms)/).*/',
30
+ ],
21
31
  transform: {
22
32
  '^.+\\.js(x)?$': 'babel-jest',
23
33
  '^.+\\.(png)$': 'jest-file',
@@ -32,4 +42,9 @@ module.exports = {
32
42
  statements: 5,
33
43
  },
34
44
  },
45
+ ...(process.env.JEST_USE_SETUP === 'ON' && {
46
+ setupFilesAfterEnv: [
47
+ '<rootDir>/node_modules/@eeacms/volto-marine-policy/jest.setup.js',
48
+ ],
49
+ }),
35
50
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-marine-policy",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
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",
@@ -48,7 +48,8 @@
48
48
  "@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
49
49
  "@cypress/code-coverage": "^3.9.5",
50
50
  "@plone/scripts": "2.1.1",
51
- "babel-plugin-transform-class-properties": "^6.24.1"
51
+ "babel-plugin-transform-class-properties": "^6.24.1",
52
+ "dotenv": "^16.3.2"
52
53
  },
53
54
  "scripts": {
54
55
  "release": "release-it",
package/razzle.extend.js CHANGED
@@ -26,4 +26,4 @@ const modify = (config, { target, dev }, webpack) => {
26
26
  module.exports = {
27
27
  plugins,
28
28
  modify,
29
- };
29
+ };
package/src/index.js CHANGED
@@ -29,8 +29,8 @@ import LinkEditSchema from '@plone/volto-slate/editor/plugins/AdvancedLink/schem
29
29
 
30
30
  import { defineMessages } from 'react-intl'; // , defineMessages
31
31
 
32
- import marineLogo from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/logo/sites/wise-marine-logo.svg';
33
- import marineLogoWhite from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/logo/sites/wise-marine-logo-white.svg';
32
+ import marineLogo from '@eeacms/volto-marine-policy/../theme/assets/images/Header/wise-marine-logo.svg';
33
+ import marineLogoWhite from '@eeacms/volto-marine-policy/../theme/assets/images/Header/wise-marine-logo-white.svg';
34
34
  import eeaWhiteLogo from '@eeacms/volto-eea-design-system/../theme/themes/eea/assets/logo/eea-logo-white.svg';
35
35
  import europeanComissionLogo from '@eeacms/volto-marine-policy/static/ec_logo_white.svg';
36
36
  import MeasureView from '@eeacms/volto-marine-policy/components/Widgets/MeasureViewWidget';
@@ -423,6 +423,7 @@ const applyConfig = (config) => {
423
423
  // },
424
424
  ],
425
425
  },
426
+ organisationName: 'Marine Water Information System for Europe',
426
427
  };
427
428
 
428
429
  // SPMeasure View widget
@@ -35,18 +35,13 @@ export const clusters = {
35
35
  defaultResultView: 'horizontalCard',
36
36
  },
37
37
  {
38
- name: ' Measure',
39
- values: ['Measure'],
40
- defaultResultView: 'horizontalCard',
41
- },
42
- {
43
- name: 'Case study',
44
- values: ['Case study'],
45
- defaultResultView: 'horizontalCard',
46
- },
47
- {
48
- name: 'Glossary term',
49
- values: ['Glossary term'],
38
+ name: 'Others',
39
+ values: [
40
+ 'Glossary term',
41
+ 'Case study',
42
+ 'Measure',
43
+ 'Shipping and Ports Measure',
44
+ ],
50
45
  defaultResultView: 'horizontalCard',
51
46
  },
52
47
  ],
@@ -0,0 +1,143 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <svg width="350" height="129" id="Text_labels" data-name="Text labels" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1274.82 346.06">
4
+
5
+ <defs>
6
+
7
+ <style>
8
+
9
+ .cls-1 {
10
+
11
+ fill: #fff;
12
+
13
+ stroke-width: 0px;
14
+
15
+ }
16
+
17
+ </style>
18
+
19
+ </defs>
20
+
21
+ <g>
22
+
23
+ <path class="cls-1" d="M81.8,224.14l27.13,84.55,27.04-84.55h38.56v121.53h-29.38v-28.39l2.84-58.09-29.38,86.47h-19.37l-29.46-86.56,2.84,58.17v28.39h-29.3v-121.53h38.48Z"/>
24
+
25
+ <path class="cls-1" d="M262.18,322.97h-40.15l-7.02,22.71h-31.31l44.58-121.53h27.54l44.91,121.53h-31.47l-7.1-22.71ZM229.04,300.35h26.12l-13.1-42.15-13.03,42.15Z"/>
26
+
27
+ <path class="cls-1" d="M354.75,302.69h-15.86v42.98h-29.3v-121.53h47.83c14.41,0,25.68,3.19,33.8,9.58,8.13,6.4,12.2,15.43,12.2,27.11,0,8.44-1.71,15.45-5.14,21.01-3.42,5.57-8.78,10.07-16.07,13.51l25.37,49.07v1.26h-31.39l-21.45-42.98ZM338.89,280.14h18.53c5.57,0,9.75-1.46,12.56-4.39,2.81-2.93,4.22-7.02,4.22-12.26s-1.42-9.36-4.26-12.35c-2.84-2.98-7.02-4.47-12.52-4.47h-18.53v33.46Z"/>
28
+
29
+ <path class="cls-1" d="M452.32,345.67h-29.22v-121.53h29.22v121.53Z"/>
30
+
31
+ <path class="cls-1" d="M574.2,345.67h-29.14l-43.06-75.63v75.63h-29.3v-121.53h29.3l42.98,75.62v-75.62h29.22v121.53Z"/>
32
+
33
+ <path class="cls-1" d="M668.1,294.08h-46.08v29.05h54.42v22.54h-83.72v-121.53h83.89v22.62h-54.59v25.63h46.08v21.69Z"/>
34
+
35
+ </g>
36
+
37
+ <g>
38
+
39
+ <path class="cls-1" d="M172.73,132.42L196.43,2.84h49.39l-43.86,206.65h-51.66l-27.68-117.8-27.11,117.8h-51.52L0,2.84h49.53l23.7,129.58L101.62,2.84h42.29l28.81,129.58Z"/>
40
+
41
+ <path class="cls-1" d="M318.34,209.48h-49.67V2.84h49.67v206.65Z"/>
42
+
43
+ <path class="cls-1" d="M459.56,154.56c0-7.29-2.57-12.97-7.74-17.03-5.16-4.07-14.21-8.28-27.18-12.63-12.97-4.35-23.56-8.57-31.79-12.63-26.77-13.15-40.17-31.22-40.17-54.22,0-11.45,3.34-21.55,10.01-30.3,6.67-8.75,16.11-15.56,28.31-20.44,12.21-4.88,25.92-7.31,41.16-7.31s28.17,2.65,39.95,7.95c11.78,5.3,20.93,12.84,27.46,22.64,6.53,9.79,9.79,20.98,9.79,33.57h-49.67c0-8.42-2.57-14.95-7.74-19.59-5.16-4.63-12.13-6.95-20.93-6.95s-15.92,1.97-21.08,5.89c-5.16,3.92-7.74,8.92-7.74,14.97,0,5.3,2.84,10.1,8.52,14.41,5.68,4.31,15.66,8.75,29.95,13.34,14.28,4.59,26.02,9.53,35.2,14.83,22.33,12.86,33.49,30.61,33.49,53.22,0,18.08-6.81,32.27-20.44,42.58-13.63,10.31-32.31,15.47-56.06,15.47-16.75,0-31.91-3-45.49-9.01-13.57-6.01-23.79-14.24-30.66-24.7s-10.29-22.5-10.29-36.12h49.96c0,11.07,2.86,19.23,8.59,24.48,5.73,5.25,15.02,7.88,27.89,7.88,8.23,0,14.74-1.77,19.52-5.32,4.77-3.55,7.17-8.54,7.17-14.97Z"/>
44
+
45
+ <path class="cls-1" d="M663.08,121.77h-78.34v49.39h92.54v38.32h-142.35V2.84h142.64v38.46h-92.82v43.57h78.34v36.9Z"/>
46
+
47
+ </g>
48
+
49
+ <g>
50
+
51
+ <g>
52
+
53
+ <path class="cls-1" d="M735.25.51l14.06,39.7,13.99-39.7h14.81v54.74h-11.32v-14.96l1.13-25.83-14.78,40.79h-7.75l-14.74-40.76,1.13,25.79v14.96h-11.28V.51h14.74Z"/>
54
+
55
+ <path class="cls-1" d="M818.87,43.98h-19.78l-3.76,11.28h-11.99L803.72.51h10.45l20.49,54.74h-11.99l-3.8-11.28ZM802.14,34.84h13.69l-6.88-20.49-6.8,20.49Z"/>
56
+
57
+ <path class="cls-1" d="M860.04,35.22h-8.99v20.04h-11.28V.51h20.34c6.47,0,11.45,1.44,14.96,4.32,3.51,2.88,5.26,6.96,5.26,12.22,0,3.74-.81,6.85-2.43,9.34-1.62,2.5-4.07,4.48-7.35,5.96l11.84,22.37v.53h-12.11l-10.26-20.04ZM851.05,26.08h9.1c2.83,0,5.03-.72,6.58-2.16,1.55-1.44,2.33-3.43,2.33-5.96s-.73-4.61-2.2-6.09c-1.47-1.48-3.72-2.22-6.75-2.22h-9.06v16.43Z"/>
58
+
59
+ <path class="cls-1" d="M900.91,55.26h-11.28V.51h11.28v54.74Z"/>
60
+
61
+ <path class="cls-1" d="M955.88,55.26h-11.28l-21.96-36.02v36.02h-11.28V.51h11.28l21.99,36.09V.51h11.24v54.74Z"/>
62
+
63
+ <path class="cls-1" d="M998.66,31.53h-21.66v14.66h25.42v9.06h-36.7V.51h36.62v9.14h-25.34v13.05h21.66v8.84Z"/>
64
+
65
+ <path class="cls-1" d="M1070.85,39.47l7.37-38.95h11.24l-12.14,54.74h-11.35l-8.91-36.62-8.91,36.62h-11.35l-12.14-54.74h11.24l7.41,38.88,9.02-38.88h9.55l8.99,38.95Z"/>
66
+
67
+ <path class="cls-1" d="M1124.84,43.98h-19.78l-3.76,11.28h-11.99l20.38-54.74h10.45l20.49,54.74h-11.99l-3.8-11.28ZM1108.11,34.84h13.69l-6.88-20.49-6.8,20.49Z"/>
68
+
69
+ <path class="cls-1" d="M1182.44,9.65h-16.77v45.61h-11.28V9.65h-16.54V.51h44.59v9.14Z"/>
70
+
71
+ <path class="cls-1" d="M1221.8,31.53h-21.66v14.66h25.42v9.06h-36.7V.51h36.62v9.14h-25.34v13.05h21.66v8.84Z"/>
72
+
73
+ <path class="cls-1" d="M1252.45,35.22h-8.99v20.04h-11.28V.51h20.34c6.47,0,11.45,1.44,14.96,4.32,3.51,2.88,5.26,6.96,5.26,12.22,0,3.74-.81,6.85-2.42,9.34-1.62,2.5-4.07,4.48-7.35,5.96l11.84,22.37v.53h-12.11l-10.26-20.04ZM1243.46,26.08h9.1c2.83,0,5.03-.72,6.58-2.16,1.55-1.44,2.33-3.43,2.33-5.96s-.73-4.61-2.2-6.09c-1.47-1.48-3.72-2.22-6.75-2.22h-9.06v16.43Z"/>
74
+
75
+ </g>
76
+
77
+ <g>
78
+
79
+ <path class="cls-1" d="M731.79,154.75h-11.28v-54.74h11.28v54.74Z"/>
80
+
81
+ <path class="cls-1" d="M786.76,154.75h-11.28l-21.96-36.02v36.02h-11.28v-54.74h11.28l21.99,36.09v-36.09h11.24v54.74Z"/>
82
+
83
+ <path class="cls-1" d="M829.55,132.38h-21.66v22.37h-11.28v-54.74h35.64v9.14h-24.36v14.14h21.66v9.1Z"/>
84
+
85
+ <path class="cls-1" d="M883.76,128.62c0,5.39-.95,10.11-2.86,14.17-1.91,4.06-4.63,7.19-8.18,9.4-3.55,2.21-7.61,3.31-12.2,3.31s-8.58-1.09-12.14-3.27-6.32-5.29-8.27-9.34c-1.96-4.05-2.95-8.7-2.97-13.97v-2.71c0-5.39.97-10.13,2.91-14.23,1.94-4.1,4.69-7.24,8.23-9.44s7.6-3.29,12.16-3.29,8.62,1.1,12.16,3.29,6.29,5.34,8.23,9.44c1.94,4.1,2.91,8.83,2.91,14.19v2.44ZM872.33,126.14c0-5.74-1.03-10.1-3.08-13.08-2.05-2.98-4.99-4.47-8.8-4.47s-6.71,1.47-8.76,4.42-3.1,7.26-3.12,12.95v2.67c0,5.59,1.03,9.93,3.08,13.01,2.06,3.08,5.01,4.62,8.87,4.62s6.69-1.49,8.72-4.46c2.03-2.97,3.06-7.3,3.08-12.99v-2.67Z"/>
86
+
87
+ <path class="cls-1" d="M912.23,134.71h-8.99v20.04h-11.28v-54.74h20.34c6.47,0,11.45,1.44,14.96,4.32,3.51,2.88,5.26,6.96,5.26,12.22,0,3.73-.81,6.85-2.43,9.34-1.62,2.49-4.07,4.48-7.35,5.96l11.84,22.37v.53h-12.11l-10.26-20.04ZM903.24,125.58h9.1c2.83,0,5.03-.72,6.58-2.16,1.55-1.44,2.33-3.43,2.33-5.96s-.73-4.61-2.2-6.09c-1.47-1.48-3.72-2.22-6.75-2.22h-9.06v16.43Z"/>
88
+
89
+ <path class="cls-1" d="M955.84,100.01l14.06,39.7,13.99-39.7h14.81v54.74h-11.32v-14.96l1.13-25.83-14.78,40.79h-7.74l-14.74-40.76,1.13,25.79v14.96h-11.28v-54.74h14.74Z"/>
90
+
91
+ <path class="cls-1" d="M1039.46,143.47h-19.78l-3.76,11.28h-11.99l20.38-54.74h10.45l20.49,54.74h-11.99l-3.8-11.28ZM1022.73,134.34h13.69l-6.88-20.49-6.8,20.49Z"/>
92
+
93
+ <path class="cls-1" d="M1097.06,109.15h-16.77v45.61h-11.28v-45.61h-16.54v-9.14h44.59v9.14Z"/>
94
+
95
+ <path class="cls-1" d="M1115.48,154.75h-11.28v-54.74h11.28v54.74Z"/>
96
+
97
+ <path class="cls-1" d="M1170.9,128.62c0,5.39-.95,10.11-2.86,14.17s-4.63,7.19-8.18,9.4c-3.55,2.21-7.61,3.31-12.2,3.31s-8.59-1.09-12.14-3.27-6.32-5.29-8.27-9.34c-1.96-4.05-2.95-8.7-2.97-13.97v-2.71c0-5.39.97-10.13,2.91-14.23,1.94-4.1,4.69-7.24,8.23-9.44s7.6-3.29,12.16-3.29,8.62,1.1,12.16,3.29c3.54,2.19,6.29,5.34,8.23,9.44,1.94,4.1,2.91,8.83,2.91,14.19v2.44ZM1159.47,126.14c0-5.74-1.03-10.1-3.08-13.08-2.06-2.98-4.99-4.47-8.8-4.47s-6.71,1.47-8.76,4.42-3.1,7.26-3.12,12.95v2.67c0,5.59,1.03,9.93,3.08,13.01,2.05,3.08,5.01,4.62,8.87,4.62s6.69-1.49,8.72-4.46c2.03-2.97,3.06-7.3,3.08-12.99v-2.67Z"/>
98
+
99
+ <path class="cls-1" d="M1223.61,154.75h-11.28l-21.96-36.02v36.02h-11.28v-54.74h11.28l22,36.09v-36.09h11.24v54.74Z"/>
100
+
101
+ </g>
102
+
103
+ <g>
104
+
105
+ <path class="cls-1" d="M751.19,233.32c0-2.13-.75-3.77-2.26-4.91s-4.21-2.34-8.12-3.61-7.01-2.51-9.29-3.74c-6.22-3.36-9.32-7.88-9.32-13.57,0-2.96.83-5.6,2.5-7.91s4.06-4.13,7.18-5.43c3.12-1.3,6.62-1.96,10.51-1.96s7.39.71,10.45,2.12c3.06,1.42,5.43,3.42,7.12,6,1.69,2.58,2.54,5.51,2.54,8.8h-11.28c0-2.51-.79-4.46-2.37-5.85-1.58-1.39-3.8-2.09-6.66-2.09s-4.9.58-6.43,1.75c-1.53,1.17-2.29,2.7-2.29,4.61,0,1.78.9,3.27,2.69,4.47s4.43,2.33,7.91,3.38c6.42,1.93,11.09,4.32,14.02,7.18s4.4,6.42,4.4,10.68c0,4.74-1.79,8.45-5.38,11.15-3.58,2.69-8.41,4.04-14.48,4.04-4.21,0-8.05-.77-11.5-2.31-3.46-1.54-6.1-3.65-7.91-6.33s-2.73-5.79-2.73-9.32h11.32c0,6.04,3.61,9.06,10.83,9.06,2.68,0,4.78-.54,6.28-1.63,1.5-1.09,2.26-2.61,2.26-4.57Z"/>
106
+
107
+ <path class="cls-1" d="M789.02,217.61l11.39-24.66h12.33l-17.97,34.89v19.85h-11.47v-19.85l-17.97-34.89h12.37l11.32,24.66Z"/>
108
+
109
+ <path class="cls-1" d="M845.53,233.32c0-2.13-.75-3.77-2.26-4.91s-4.21-2.34-8.12-3.61-7.01-2.51-9.29-3.74c-6.22-3.36-9.32-7.88-9.32-13.57,0-2.96.83-5.6,2.5-7.91s4.06-4.13,7.18-5.43c3.12-1.3,6.62-1.96,10.51-1.96s7.39.71,10.45,2.12,5.43,3.42,7.12,6c1.69,2.58,2.54,5.51,2.54,8.8h-11.28c0-2.51-.79-4.46-2.37-5.85-1.58-1.39-3.8-2.09-6.65-2.09s-4.9.58-6.43,1.75c-1.53,1.17-2.29,2.7-2.29,4.61,0,1.78.9,3.27,2.69,4.47,1.79,1.2,4.43,2.33,7.91,3.38,6.42,1.93,11.09,4.32,14.02,7.18s4.4,6.42,4.4,10.68c0,4.74-1.79,8.45-5.38,11.15s-8.41,4.04-14.47,4.04c-4.21,0-8.05-.77-11.5-2.31-3.46-1.54-6.1-3.65-7.91-6.33-1.82-2.68-2.73-5.79-2.73-9.32h11.32c0,6.04,3.61,9.06,10.83,9.06,2.68,0,4.77-.54,6.28-1.63,1.5-1.09,2.26-2.61,2.26-4.57Z"/>
110
+
111
+ <path class="cls-1" d="M905.68,202.08h-16.77v45.61h-11.28v-45.61h-16.54v-9.14h44.59v9.14Z"/>
112
+
113
+ <path class="cls-1" d="M945.05,223.96h-21.66v14.66h25.42v9.06h-36.7v-54.74h36.62v9.14h-25.34v13.05h21.66v8.83Z"/>
114
+
115
+ <path class="cls-1" d="M970.16,192.94l14.06,39.7,13.99-39.7h14.81v54.74h-11.32v-14.96l1.13-25.83-14.78,40.79h-7.75l-14.74-40.76,1.13,25.79v14.96h-11.28v-54.74h14.74Z"/>
116
+
117
+ <path class="cls-1" d="M1074.98,225.32h-21.66v22.37h-11.28v-54.74h35.64v9.14h-24.36v14.14h21.66v9.1Z"/>
118
+
119
+ <path class="cls-1" d="M1129.2,221.56c0,5.39-.95,10.11-2.86,14.17-1.91,4.06-4.63,7.19-8.18,9.4s-7.61,3.31-12.2,3.31-8.58-1.09-12.14-3.27c-3.56-2.18-6.32-5.29-8.27-9.34s-2.95-8.7-2.97-13.97v-2.71c0-5.39.97-10.13,2.91-14.23,1.94-4.1,4.69-7.24,8.23-9.44s7.6-3.29,12.16-3.29,8.62,1.1,12.16,3.29c3.55,2.19,6.29,5.34,8.23,9.44,1.94,4.1,2.91,8.83,2.91,14.19v2.44ZM1117.77,219.07c0-5.74-1.03-10.1-3.08-13.08-2.06-2.98-4.99-4.47-8.8-4.47s-6.71,1.47-8.76,4.42c-2.05,2.95-3.1,7.26-3.12,12.95v2.67c0,5.59,1.03,9.93,3.08,13.01,2.05,3.08,5.01,4.62,8.87,4.62s6.69-1.49,8.72-4.46c2.03-2.97,3.06-7.3,3.08-12.99v-2.67Z"/>
120
+
121
+ <path class="cls-1" d="M1157.66,227.65h-8.99v20.04h-11.28v-54.74h20.34c6.47,0,11.45,1.44,14.96,4.32,3.51,2.88,5.26,6.96,5.26,12.22,0,3.73-.81,6.85-2.42,9.34-1.62,2.49-4.07,4.48-7.35,5.96l11.84,22.37v.53h-12.11l-10.26-20.04ZM1148.68,218.51h9.1c2.83,0,5.03-.72,6.58-2.16,1.55-1.44,2.33-3.43,2.33-5.96s-.73-4.61-2.2-6.09c-1.47-1.48-3.72-2.22-6.75-2.22h-9.06v16.43Z"/>
122
+
123
+ </g>
124
+
125
+ <g>
126
+
127
+ <path class="cls-1" d="M753.45,321.58h-21.66v14.66h25.42v9.06h-36.7v-54.74h36.62v9.14h-25.34v13.05h21.66v8.84Z"/>
128
+
129
+ <path class="cls-1" d="M805.26,290.56v36.06c0,5.99-1.87,10.73-5.62,14.21s-8.87,5.23-15.36,5.23-11.47-1.69-15.23-5.08-5.68-8.03-5.75-13.95v-36.47h11.28v36.13c0,3.58.86,6.2,2.58,7.84,1.72,1.64,4.09,2.46,7.12,2.46,6.34,0,9.56-3.33,9.66-10v-36.43h11.32Z"/>
130
+
131
+ <path class="cls-1" d="M834.77,325.27h-8.99v20.04h-11.28v-54.74h20.34c6.47,0,11.46,1.44,14.96,4.32,3.51,2.88,5.26,6.96,5.26,12.22,0,3.73-.81,6.85-2.42,9.34-1.62,2.5-4.07,4.48-7.35,5.96l11.84,22.37v.53h-12.11l-10.26-20.04ZM825.79,316.13h9.1c2.83,0,5.03-.72,6.58-2.16s2.33-3.43,2.33-5.96-.73-4.61-2.2-6.09c-1.47-1.48-3.72-2.22-6.75-2.22h-9.06v16.43Z"/>
132
+
133
+ <path class="cls-1" d="M908.61,319.17c0,5.39-.95,10.11-2.86,14.17s-4.63,7.19-8.18,9.4c-3.55,2.21-7.61,3.31-12.2,3.31s-8.58-1.09-12.14-3.27c-3.56-2.18-6.32-5.29-8.27-9.34-1.96-4.05-2.95-8.7-2.97-13.97v-2.71c0-5.39.97-10.13,2.91-14.23s4.69-7.24,8.23-9.44,7.6-3.29,12.16-3.29,8.62,1.1,12.16,3.29,6.29,5.34,8.23,9.44,2.91,8.83,2.91,14.19v2.44ZM897.19,316.69c0-5.74-1.03-10.1-3.08-13.08-2.06-2.98-4.99-4.47-8.8-4.47s-6.71,1.47-8.76,4.42c-2.06,2.95-3.1,7.26-3.12,12.95v2.67c0,5.59,1.03,9.93,3.08,13.01s5.01,4.62,8.87,4.62,6.69-1.48,8.72-4.46,3.06-7.3,3.08-12.99v-2.67Z"/>
134
+
135
+ <path class="cls-1" d="M928.09,326.02v19.29h-11.28v-54.74h21.36c4.11,0,7.73.75,10.85,2.26,3.12,1.5,5.52,3.64,7.2,6.41,1.68,2.77,2.52,5.92,2.52,9.46,0,5.37-1.84,9.59-5.51,12.69s-8.75,4.64-15.25,4.64h-9.89ZM928.09,316.88h10.08c2.98,0,5.26-.7,6.82-2.11,1.57-1.4,2.35-3.41,2.35-6.02s-.79-4.85-2.37-6.5c-1.58-1.65-3.76-2.51-6.54-2.56h-10.34v17.18Z"/>
136
+
137
+ <path class="cls-1" d="M999.41,321.58h-21.66v14.66h25.42v9.06h-36.7v-54.74h36.62v9.14h-25.34v13.05h21.66v8.84Z"/>
138
+
139
+ </g>
140
+
141
+ </g>
142
+
143
+ </svg>
@@ -0,0 +1,143 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <svg width="350" height="129" id="Text_labels" data-name="Text labels" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1274.82 346.06">
4
+
5
+ <defs>
6
+
7
+ <style>
8
+
9
+ .cls-1 {
10
+
11
+ fill: #004b7f;
12
+
13
+ stroke-width: 0px;
14
+
15
+ }
16
+
17
+ </style>
18
+
19
+ </defs>
20
+
21
+ <g>
22
+
23
+ <path class="cls-1" d="M81.8,224.14l27.13,84.55,27.04-84.55h38.56v121.53h-29.38v-28.39l2.84-58.09-29.38,86.47h-19.37l-29.46-86.56,2.84,58.17v28.39h-29.3v-121.53h38.48Z"/>
24
+
25
+ <path class="cls-1" d="M262.18,322.97h-40.15l-7.02,22.71h-31.31l44.58-121.53h27.54l44.91,121.53h-31.47l-7.1-22.71ZM229.04,300.35h26.12l-13.1-42.15-13.03,42.15Z"/>
26
+
27
+ <path class="cls-1" d="M354.75,302.69h-15.86v42.98h-29.3v-121.53h47.83c14.41,0,25.68,3.19,33.8,9.58,8.13,6.4,12.2,15.43,12.2,27.11,0,8.44-1.71,15.45-5.14,21.01-3.42,5.57-8.78,10.07-16.07,13.51l25.37,49.07v1.26h-31.39l-21.45-42.98ZM338.89,280.14h18.53c5.57,0,9.75-1.46,12.56-4.39,2.81-2.93,4.22-7.02,4.22-12.26s-1.42-9.36-4.26-12.35c-2.84-2.98-7.02-4.47-12.52-4.47h-18.53v33.46Z"/>
28
+
29
+ <path class="cls-1" d="M452.32,345.67h-29.22v-121.53h29.22v121.53Z"/>
30
+
31
+ <path class="cls-1" d="M574.2,345.67h-29.14l-43.06-75.63v75.63h-29.3v-121.53h29.3l42.98,75.62v-75.62h29.22v121.53Z"/>
32
+
33
+ <path class="cls-1" d="M668.1,294.08h-46.08v29.05h54.42v22.54h-83.72v-121.53h83.89v22.62h-54.59v25.63h46.08v21.69Z"/>
34
+
35
+ </g>
36
+
37
+ <g>
38
+
39
+ <path class="cls-1" d="M172.73,132.42L196.43,2.84h49.39l-43.86,206.65h-51.66l-27.68-117.8-27.11,117.8h-51.52L0,2.84h49.53l23.7,129.58L101.62,2.84h42.29l28.81,129.58Z"/>
40
+
41
+ <path class="cls-1" d="M318.34,209.48h-49.67V2.84h49.67v206.65Z"/>
42
+
43
+ <path class="cls-1" d="M459.56,154.56c0-7.29-2.57-12.97-7.74-17.03-5.16-4.07-14.21-8.28-27.18-12.63-12.97-4.35-23.56-8.57-31.79-12.63-26.77-13.15-40.17-31.22-40.17-54.22,0-11.45,3.34-21.55,10.01-30.3,6.67-8.75,16.11-15.56,28.31-20.44,12.21-4.88,25.92-7.31,41.16-7.31s28.17,2.65,39.95,7.95c11.78,5.3,20.93,12.84,27.46,22.64,6.53,9.79,9.79,20.98,9.79,33.57h-49.67c0-8.42-2.57-14.95-7.74-19.59-5.16-4.63-12.13-6.95-20.93-6.95s-15.92,1.97-21.08,5.89c-5.16,3.92-7.74,8.92-7.74,14.97,0,5.3,2.84,10.1,8.52,14.41,5.68,4.31,15.66,8.75,29.95,13.34,14.28,4.59,26.02,9.53,35.2,14.83,22.33,12.86,33.49,30.61,33.49,53.22,0,18.08-6.81,32.27-20.44,42.58-13.63,10.31-32.31,15.47-56.06,15.47-16.75,0-31.91-3-45.49-9.01-13.57-6.01-23.79-14.24-30.66-24.7s-10.29-22.5-10.29-36.12h49.96c0,11.07,2.86,19.23,8.59,24.48,5.73,5.25,15.02,7.88,27.89,7.88,8.23,0,14.74-1.77,19.52-5.32,4.77-3.55,7.17-8.54,7.17-14.97Z"/>
44
+
45
+ <path class="cls-1" d="M663.08,121.77h-78.34v49.39h92.54v38.32h-142.35V2.84h142.64v38.46h-92.82v43.57h78.34v36.9Z"/>
46
+
47
+ </g>
48
+
49
+ <g>
50
+
51
+ <g>
52
+
53
+ <path class="cls-1" d="M735.25.51l14.06,39.7,13.99-39.7h14.81v54.74h-11.32v-14.96l1.13-25.83-14.78,40.79h-7.75l-14.74-40.76,1.13,25.79v14.96h-11.28V.51h14.74Z"/>
54
+
55
+ <path class="cls-1" d="M818.87,43.98h-19.78l-3.76,11.28h-11.99L803.72.51h10.45l20.49,54.74h-11.99l-3.8-11.28ZM802.14,34.84h13.69l-6.88-20.49-6.8,20.49Z"/>
56
+
57
+ <path class="cls-1" d="M860.04,35.22h-8.99v20.04h-11.28V.51h20.34c6.47,0,11.45,1.44,14.96,4.32,3.51,2.88,5.26,6.96,5.26,12.22,0,3.74-.81,6.85-2.43,9.34-1.62,2.5-4.07,4.48-7.35,5.96l11.84,22.37v.53h-12.11l-10.26-20.04ZM851.05,26.08h9.1c2.83,0,5.03-.72,6.58-2.16,1.55-1.44,2.33-3.43,2.33-5.96s-.73-4.61-2.2-6.09c-1.47-1.48-3.72-2.22-6.75-2.22h-9.06v16.43Z"/>
58
+
59
+ <path class="cls-1" d="M900.91,55.26h-11.28V.51h11.28v54.74Z"/>
60
+
61
+ <path class="cls-1" d="M955.88,55.26h-11.28l-21.96-36.02v36.02h-11.28V.51h11.28l21.99,36.09V.51h11.24v54.74Z"/>
62
+
63
+ <path class="cls-1" d="M998.66,31.53h-21.66v14.66h25.42v9.06h-36.7V.51h36.62v9.14h-25.34v13.05h21.66v8.84Z"/>
64
+
65
+ <path class="cls-1" d="M1070.85,39.47l7.37-38.95h11.24l-12.14,54.74h-11.35l-8.91-36.62-8.91,36.62h-11.35l-12.14-54.74h11.24l7.41,38.88,9.02-38.88h9.55l8.99,38.95Z"/>
66
+
67
+ <path class="cls-1" d="M1124.84,43.98h-19.78l-3.76,11.28h-11.99l20.38-54.74h10.45l20.49,54.74h-11.99l-3.8-11.28ZM1108.11,34.84h13.69l-6.88-20.49-6.8,20.49Z"/>
68
+
69
+ <path class="cls-1" d="M1182.44,9.65h-16.77v45.61h-11.28V9.65h-16.54V.51h44.59v9.14Z"/>
70
+
71
+ <path class="cls-1" d="M1221.8,31.53h-21.66v14.66h25.42v9.06h-36.7V.51h36.62v9.14h-25.34v13.05h21.66v8.84Z"/>
72
+
73
+ <path class="cls-1" d="M1252.45,35.22h-8.99v20.04h-11.28V.51h20.34c6.47,0,11.45,1.44,14.96,4.32,3.51,2.88,5.26,6.96,5.26,12.22,0,3.74-.81,6.85-2.42,9.34-1.62,2.5-4.07,4.48-7.35,5.96l11.84,22.37v.53h-12.11l-10.26-20.04ZM1243.46,26.08h9.1c2.83,0,5.03-.72,6.58-2.16,1.55-1.44,2.33-3.43,2.33-5.96s-.73-4.61-2.2-6.09c-1.47-1.48-3.72-2.22-6.75-2.22h-9.06v16.43Z"/>
74
+
75
+ </g>
76
+
77
+ <g>
78
+
79
+ <path class="cls-1" d="M731.79,154.75h-11.28v-54.74h11.28v54.74Z"/>
80
+
81
+ <path class="cls-1" d="M786.76,154.75h-11.28l-21.96-36.02v36.02h-11.28v-54.74h11.28l21.99,36.09v-36.09h11.24v54.74Z"/>
82
+
83
+ <path class="cls-1" d="M829.55,132.38h-21.66v22.37h-11.28v-54.74h35.64v9.14h-24.36v14.14h21.66v9.1Z"/>
84
+
85
+ <path class="cls-1" d="M883.76,128.62c0,5.39-.95,10.11-2.86,14.17-1.91,4.06-4.63,7.19-8.18,9.4-3.55,2.21-7.61,3.31-12.2,3.31s-8.58-1.09-12.14-3.27-6.32-5.29-8.27-9.34c-1.96-4.05-2.95-8.7-2.97-13.97v-2.71c0-5.39.97-10.13,2.91-14.23,1.94-4.1,4.69-7.24,8.23-9.44s7.6-3.29,12.16-3.29,8.62,1.1,12.16,3.29,6.29,5.34,8.23,9.44c1.94,4.1,2.91,8.83,2.91,14.19v2.44ZM872.33,126.14c0-5.74-1.03-10.1-3.08-13.08-2.05-2.98-4.99-4.47-8.8-4.47s-6.71,1.47-8.76,4.42-3.1,7.26-3.12,12.95v2.67c0,5.59,1.03,9.93,3.08,13.01,2.06,3.08,5.01,4.62,8.87,4.62s6.69-1.49,8.72-4.46c2.03-2.97,3.06-7.3,3.08-12.99v-2.67Z"/>
86
+
87
+ <path class="cls-1" d="M912.23,134.71h-8.99v20.04h-11.28v-54.74h20.34c6.47,0,11.45,1.44,14.96,4.32,3.51,2.88,5.26,6.96,5.26,12.22,0,3.73-.81,6.85-2.43,9.34-1.62,2.49-4.07,4.48-7.35,5.96l11.84,22.37v.53h-12.11l-10.26-20.04ZM903.24,125.58h9.1c2.83,0,5.03-.72,6.58-2.16,1.55-1.44,2.33-3.43,2.33-5.96s-.73-4.61-2.2-6.09c-1.47-1.48-3.72-2.22-6.75-2.22h-9.06v16.43Z"/>
88
+
89
+ <path class="cls-1" d="M955.84,100.01l14.06,39.7,13.99-39.7h14.81v54.74h-11.32v-14.96l1.13-25.83-14.78,40.79h-7.74l-14.74-40.76,1.13,25.79v14.96h-11.28v-54.74h14.74Z"/>
90
+
91
+ <path class="cls-1" d="M1039.46,143.47h-19.78l-3.76,11.28h-11.99l20.38-54.74h10.45l20.49,54.74h-11.99l-3.8-11.28ZM1022.73,134.34h13.69l-6.88-20.49-6.8,20.49Z"/>
92
+
93
+ <path class="cls-1" d="M1097.06,109.15h-16.77v45.61h-11.28v-45.61h-16.54v-9.14h44.59v9.14Z"/>
94
+
95
+ <path class="cls-1" d="M1115.48,154.75h-11.28v-54.74h11.28v54.74Z"/>
96
+
97
+ <path class="cls-1" d="M1170.9,128.62c0,5.39-.95,10.11-2.86,14.17s-4.63,7.19-8.18,9.4c-3.55,2.21-7.61,3.31-12.2,3.31s-8.59-1.09-12.14-3.27-6.32-5.29-8.27-9.34c-1.96-4.05-2.95-8.7-2.97-13.97v-2.71c0-5.39.97-10.13,2.91-14.23,1.94-4.1,4.69-7.24,8.23-9.44s7.6-3.29,12.16-3.29,8.62,1.1,12.16,3.29c3.54,2.19,6.29,5.34,8.23,9.44,1.94,4.1,2.91,8.83,2.91,14.19v2.44ZM1159.47,126.14c0-5.74-1.03-10.1-3.08-13.08-2.06-2.98-4.99-4.47-8.8-4.47s-6.71,1.47-8.76,4.42-3.1,7.26-3.12,12.95v2.67c0,5.59,1.03,9.93,3.08,13.01,2.05,3.08,5.01,4.62,8.87,4.62s6.69-1.49,8.72-4.46c2.03-2.97,3.06-7.3,3.08-12.99v-2.67Z"/>
98
+
99
+ <path class="cls-1" d="M1223.61,154.75h-11.28l-21.96-36.02v36.02h-11.28v-54.74h11.28l22,36.09v-36.09h11.24v54.74Z"/>
100
+
101
+ </g>
102
+
103
+ <g>
104
+
105
+ <path class="cls-1" d="M751.19,233.32c0-2.13-.75-3.77-2.26-4.91s-4.21-2.34-8.12-3.61-7.01-2.51-9.29-3.74c-6.22-3.36-9.32-7.88-9.32-13.57,0-2.96.83-5.6,2.5-7.91s4.06-4.13,7.18-5.43c3.12-1.3,6.62-1.96,10.51-1.96s7.39.71,10.45,2.12c3.06,1.42,5.43,3.42,7.12,6,1.69,2.58,2.54,5.51,2.54,8.8h-11.28c0-2.51-.79-4.46-2.37-5.85-1.58-1.39-3.8-2.09-6.66-2.09s-4.9.58-6.43,1.75c-1.53,1.17-2.29,2.7-2.29,4.61,0,1.78.9,3.27,2.69,4.47s4.43,2.33,7.91,3.38c6.42,1.93,11.09,4.32,14.02,7.18s4.4,6.42,4.4,10.68c0,4.74-1.79,8.45-5.38,11.15-3.58,2.69-8.41,4.04-14.48,4.04-4.21,0-8.05-.77-11.5-2.31-3.46-1.54-6.1-3.65-7.91-6.33s-2.73-5.79-2.73-9.32h11.32c0,6.04,3.61,9.06,10.83,9.06,2.68,0,4.78-.54,6.28-1.63,1.5-1.09,2.26-2.61,2.26-4.57Z"/>
106
+
107
+ <path class="cls-1" d="M789.02,217.61l11.39-24.66h12.33l-17.97,34.89v19.85h-11.47v-19.85l-17.97-34.89h12.37l11.32,24.66Z"/>
108
+
109
+ <path class="cls-1" d="M845.53,233.32c0-2.13-.75-3.77-2.26-4.91s-4.21-2.34-8.12-3.61-7.01-2.51-9.29-3.74c-6.22-3.36-9.32-7.88-9.32-13.57,0-2.96.83-5.6,2.5-7.91s4.06-4.13,7.18-5.43c3.12-1.3,6.62-1.96,10.51-1.96s7.39.71,10.45,2.12,5.43,3.42,7.12,6c1.69,2.58,2.54,5.51,2.54,8.8h-11.28c0-2.51-.79-4.46-2.37-5.85-1.58-1.39-3.8-2.09-6.65-2.09s-4.9.58-6.43,1.75c-1.53,1.17-2.29,2.7-2.29,4.61,0,1.78.9,3.27,2.69,4.47,1.79,1.2,4.43,2.33,7.91,3.38,6.42,1.93,11.09,4.32,14.02,7.18s4.4,6.42,4.4,10.68c0,4.74-1.79,8.45-5.38,11.15s-8.41,4.04-14.47,4.04c-4.21,0-8.05-.77-11.5-2.31-3.46-1.54-6.1-3.65-7.91-6.33-1.82-2.68-2.73-5.79-2.73-9.32h11.32c0,6.04,3.61,9.06,10.83,9.06,2.68,0,4.77-.54,6.28-1.63,1.5-1.09,2.26-2.61,2.26-4.57Z"/>
110
+
111
+ <path class="cls-1" d="M905.68,202.08h-16.77v45.61h-11.28v-45.61h-16.54v-9.14h44.59v9.14Z"/>
112
+
113
+ <path class="cls-1" d="M945.05,223.96h-21.66v14.66h25.42v9.06h-36.7v-54.74h36.62v9.14h-25.34v13.05h21.66v8.83Z"/>
114
+
115
+ <path class="cls-1" d="M970.16,192.94l14.06,39.7,13.99-39.7h14.81v54.74h-11.32v-14.96l1.13-25.83-14.78,40.79h-7.75l-14.74-40.76,1.13,25.79v14.96h-11.28v-54.74h14.74Z"/>
116
+
117
+ <path class="cls-1" d="M1074.98,225.32h-21.66v22.37h-11.28v-54.74h35.64v9.14h-24.36v14.14h21.66v9.1Z"/>
118
+
119
+ <path class="cls-1" d="M1129.2,221.56c0,5.39-.95,10.11-2.86,14.17-1.91,4.06-4.63,7.19-8.18,9.4s-7.61,3.31-12.2,3.31-8.58-1.09-12.14-3.27c-3.56-2.18-6.32-5.29-8.27-9.34s-2.95-8.7-2.97-13.97v-2.71c0-5.39.97-10.13,2.91-14.23,1.94-4.1,4.69-7.24,8.23-9.44s7.6-3.29,12.16-3.29,8.62,1.1,12.16,3.29c3.55,2.19,6.29,5.34,8.23,9.44,1.94,4.1,2.91,8.83,2.91,14.19v2.44ZM1117.77,219.07c0-5.74-1.03-10.1-3.08-13.08-2.06-2.98-4.99-4.47-8.8-4.47s-6.71,1.47-8.76,4.42c-2.05,2.95-3.1,7.26-3.12,12.95v2.67c0,5.59,1.03,9.93,3.08,13.01,2.05,3.08,5.01,4.62,8.87,4.62s6.69-1.49,8.72-4.46c2.03-2.97,3.06-7.3,3.08-12.99v-2.67Z"/>
120
+
121
+ <path class="cls-1" d="M1157.66,227.65h-8.99v20.04h-11.28v-54.74h20.34c6.47,0,11.45,1.44,14.96,4.32,3.51,2.88,5.26,6.96,5.26,12.22,0,3.73-.81,6.85-2.42,9.34-1.62,2.49-4.07,4.48-7.35,5.96l11.84,22.37v.53h-12.11l-10.26-20.04ZM1148.68,218.51h9.1c2.83,0,5.03-.72,6.58-2.16,1.55-1.44,2.33-3.43,2.33-5.96s-.73-4.61-2.2-6.09c-1.47-1.48-3.72-2.22-6.75-2.22h-9.06v16.43Z"/>
122
+
123
+ </g>
124
+
125
+ <g>
126
+
127
+ <path class="cls-1" d="M753.45,321.58h-21.66v14.66h25.42v9.06h-36.7v-54.74h36.62v9.14h-25.34v13.05h21.66v8.84Z"/>
128
+
129
+ <path class="cls-1" d="M805.26,290.56v36.06c0,5.99-1.87,10.73-5.62,14.21s-8.87,5.23-15.36,5.23-11.47-1.69-15.23-5.08-5.68-8.03-5.75-13.95v-36.47h11.28v36.13c0,3.58.86,6.2,2.58,7.84,1.72,1.64,4.09,2.46,7.12,2.46,6.34,0,9.56-3.33,9.66-10v-36.43h11.32Z"/>
130
+
131
+ <path class="cls-1" d="M834.77,325.27h-8.99v20.04h-11.28v-54.74h20.34c6.47,0,11.46,1.44,14.96,4.32,3.51,2.88,5.26,6.96,5.26,12.22,0,3.73-.81,6.85-2.42,9.34-1.62,2.5-4.07,4.48-7.35,5.96l11.84,22.37v.53h-12.11l-10.26-20.04ZM825.79,316.13h9.1c2.83,0,5.03-.72,6.58-2.16s2.33-3.43,2.33-5.96-.73-4.61-2.2-6.09c-1.47-1.48-3.72-2.22-6.75-2.22h-9.06v16.43Z"/>
132
+
133
+ <path class="cls-1" d="M908.61,319.17c0,5.39-.95,10.11-2.86,14.17s-4.63,7.19-8.18,9.4c-3.55,2.21-7.61,3.31-12.2,3.31s-8.58-1.09-12.14-3.27c-3.56-2.18-6.32-5.29-8.27-9.34-1.96-4.05-2.95-8.7-2.97-13.97v-2.71c0-5.39.97-10.13,2.91-14.23s4.69-7.24,8.23-9.44,7.6-3.29,12.16-3.29,8.62,1.1,12.16,3.29,6.29,5.34,8.23,9.44,2.91,8.83,2.91,14.19v2.44ZM897.19,316.69c0-5.74-1.03-10.1-3.08-13.08-2.06-2.98-4.99-4.47-8.8-4.47s-6.71,1.47-8.76,4.42c-2.06,2.95-3.1,7.26-3.12,12.95v2.67c0,5.59,1.03,9.93,3.08,13.01s5.01,4.62,8.87,4.62,6.69-1.48,8.72-4.46,3.06-7.3,3.08-12.99v-2.67Z"/>
134
+
135
+ <path class="cls-1" d="M928.09,326.02v19.29h-11.28v-54.74h21.36c4.11,0,7.73.75,10.85,2.26,3.12,1.5,5.52,3.64,7.2,6.41,1.68,2.77,2.52,5.92,2.52,9.46,0,5.37-1.84,9.59-5.51,12.69s-8.75,4.64-15.25,4.64h-9.89ZM928.09,316.88h10.08c2.98,0,5.26-.7,6.82-2.11,1.57-1.4,2.35-3.41,2.35-6.02s-.79-4.85-2.37-6.5c-1.58-1.65-3.76-2.51-6.54-2.56h-10.34v17.18Z"/>
136
+
137
+ <path class="cls-1" d="M999.41,321.58h-21.66v14.66h25.42v9.06h-36.7v-54.74h36.62v9.14h-25.34v13.05h21.66v8.84Z"/>
138
+
139
+ </g>
140
+
141
+ </g>
142
+
143
+ </svg>
@@ -53,7 +53,7 @@ body {
53
53
  // Header
54
54
  @media only screen and (min-width: 992px) {
55
55
  .eea.header .eea-logo {
56
- max-width: 252px;
56
+ max-width: 350px;
57
57
  }
58
58
  }
59
59
 
@@ -63,14 +63,14 @@ body {
63
63
  .ui.grid > .column.row > [class*='four wide computer'].column,
64
64
  .ui.grid > [class*='four wide computer'].column,
65
65
  .ui.column.grid > [class*='four wide computer'].column {
66
- width: 25% !important;
66
+ width: 33.33333333% !important;
67
67
  }
68
68
 
69
69
  .ui.grid > .row > [class*='eight wide computer'].column,
70
70
  .ui.grid > .column.row > [class*='eight wide computer'].column,
71
71
  .ui.grid > [class*='eight wide computer'].column,
72
72
  .ui.column.grid > [class*='eight wide computer'].column {
73
- width: 75% !important;
73
+ width: 66.66666667% !important;
74
74
  }
75
75
  }
76
76
  }
package/DEVELOP.md.tpl DELETED
@@ -1,106 +0,0 @@
1
- # <%= name %>
2
-
3
- ## Develop
4
-
5
- 1. Make sure you have `docker` and `docker compose` installed and running on your machine:
6
-
7
- ```Bash
8
- git clone https://github.com/eea/<%= name %>.git
9
- cd <%= name %>
10
- git checkout -b bugfix-123456 develop
11
- make
12
- make start
13
- ```
14
-
15
- 1. Wait for `Volto started at 0.0.0.0:3000` meesage
16
-
17
- 1. Go to http://localhost:3000
18
-
19
- 1. Initialize git hooks
20
-
21
- ```Bash
22
- yarn prepare
23
- ```
24
-
25
- 1. Happy hacking!
26
-
27
- ### Or add <%= addonName %> to your Volto project
28
-
29
- Before starting make sure your development environment is properly set. See [Volto Developer Documentation](https://docs.voltocms.com/getting-started/install/)
30
-
31
- 1. Make sure you have installed `yo`, `@plone/generator-volto` and `mrs-developer`
32
-
33
- npm install -g yo @plone/generator-volto mrs-developer
34
-
35
- 1. Create new volto app
36
-
37
- yo @plone/volto my-volto-project --addon <%= addonName %> --skip-install
38
- cd my-volto-project
39
-
40
- 1. Add the following to `mrs.developer.json`:
41
-
42
- {
43
- "<%= name %>": {
44
- "url": "https://github.com/eea/<%= name %>.git",
45
- "package": "<%= addonName %>",
46
- "branch": "develop",
47
- "path": "src"
48
- }
49
- }
50
-
51
- 1. Install
52
-
53
- make develop
54
- yarn
55
-
56
- 1. Start backend
57
-
58
- docker run --pull always -it --rm --name plone -p 8080:8080 -e SITE=Plone plone/plone-backend
59
-
60
- ...wait for backend to setup and start - `Ready to handle requests`:
61
-
62
- ...you can also check http://localhost:8080/Plone
63
-
64
- 1. Start frontend
65
-
66
- yarn start
67
-
68
- 1. Go to http://localhost:3000
69
-
70
- 1. Happy hacking!
71
-
72
- cd src/addons/<%= name %>/
73
-
74
- ## Cypress
75
-
76
- To run cypress locally, first make sure you don't have any Volto/Plone running on ports `8080` and `3000`.
77
-
78
- You don't have to be in a `clean-volto-project`, you can be in any Volto Frontend
79
- project where you added `<%= name %>` to `mrs.developer.json`
80
-
81
- Go to:
82
-
83
- ```BASH
84
- cd src/addons/<%= name %>/
85
- ```
86
-
87
- Start:
88
-
89
- ```Bash
90
- make
91
- make start
92
- ```
93
-
94
- This will build and start with Docker a clean `Plone backend` and `Volto Frontend` with `<%= name %>` block installed.
95
-
96
- Open Cypress Interface:
97
-
98
- ```Bash
99
- make cypress-open
100
- ```
101
-
102
- Or run it:
103
-
104
- ```Bash
105
- make cypress-run
106
- ```