@eeacms/volto-marine-policy 1.1.16 → 1.1.18
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 +10 -2
- package/package.json +1 -1
- package/src/components/Blocks/MsfdDataExplorerBlock/View.jsx +4 -1
- package/src/index.js +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -4,11 +4,19 @@ 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
|
+
### [1.1.18](https://github.com/eea/volto-marine-policy/compare/1.1.17...1.1.18) - 10 July 2024
|
|
8
8
|
|
|
9
9
|
#### :bug: Bug Fixes
|
|
10
10
|
|
|
11
|
-
- fix:
|
|
11
|
+
- fix: remove /policy-and-reporting from externalRoutes [laszlocseh - [`36c2887`](https://github.com/eea/volto-marine-policy/commit/36c2887d738ac81c615a18bbdea2d5ed3dc66eb1)]
|
|
12
|
+
|
|
13
|
+
### [1.1.17](https://github.com/eea/volto-marine-policy/compare/1.1.16...1.1.17) - 10 July 2024
|
|
14
|
+
|
|
15
|
+
#### :bug: Bug Fixes
|
|
16
|
+
|
|
17
|
+
- fix: in MSFDDataExplorerBlock added bootstrap.js to scripts [laszlocseh - [`8bf4882`](https://github.com/eea/volto-marine-policy/commit/8bf4882612c896a9e050afdbf2ee8f6e6e970280)]
|
|
18
|
+
|
|
19
|
+
### [1.1.16](https://github.com/eea/volto-marine-policy/compare/1.1.15...1.1.16) - 11 June 2024
|
|
12
20
|
|
|
13
21
|
### [1.1.15](https://github.com/eea/volto-marine-policy/compare/1.1.14...1.1.15) - 10 June 2024
|
|
14
22
|
|
package/package.json
CHANGED
|
@@ -44,13 +44,16 @@ const MsfdDataExplorerBlockView = (props) => {
|
|
|
44
44
|
'/marine/++api++/++resource++msfd/js/jquery-ui.js',
|
|
45
45
|
'/marine/++api++/++resource++msfd/js/tabs.js',
|
|
46
46
|
'/marine/++api++/++resource++msfd/js/msfd_search.js',
|
|
47
|
+
'/marine/++api++/++resource++msfd/bs3/js/bootstrap.min.js',
|
|
47
48
|
];
|
|
48
49
|
|
|
49
50
|
if (!loading) {
|
|
50
51
|
$.getScript(scripts[0], () => {
|
|
51
52
|
$.getScript(scripts[1], () => {
|
|
52
53
|
$.getScript(scripts[2], () => {
|
|
53
|
-
$.getScript(scripts[3])
|
|
54
|
+
$.getScript(scripts[3], () => {
|
|
55
|
+
$.getScript(scripts[4]);
|
|
56
|
+
});
|
|
54
57
|
});
|
|
55
58
|
});
|
|
56
59
|
});
|
package/src/index.js
CHANGED
|
@@ -245,28 +245,28 @@ const applyConfig = (config) => {
|
|
|
245
245
|
return payload.location.pathname;
|
|
246
246
|
},
|
|
247
247
|
},
|
|
248
|
-
{
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
},
|
|
248
|
+
// {
|
|
249
|
+
// match: {
|
|
250
|
+
// path:
|
|
251
|
+
// '/(.*)marine(-new)?/policy-and-reporting/assessment-by-country(.*)',
|
|
252
|
+
// exact: false,
|
|
253
|
+
// strict: false,
|
|
254
|
+
// },
|
|
255
|
+
// url(payload) {
|
|
256
|
+
// return payload.location.pathname;
|
|
257
|
+
// },
|
|
258
|
+
// },
|
|
259
|
+
// {
|
|
260
|
+
// match: {
|
|
261
|
+
// path:
|
|
262
|
+
// '/(.*)marine(-new)?/policy-and-reporting/assessment-by-region(.*)',
|
|
263
|
+
// exact: false,
|
|
264
|
+
// strict: false,
|
|
265
|
+
// },
|
|
266
|
+
// url(payload) {
|
|
267
|
+
// return payload.location.pathname;
|
|
268
|
+
// },
|
|
269
|
+
// },
|
|
270
270
|
];
|
|
271
271
|
|
|
272
272
|
config.settings.openExternalLinkInNewTab = true;
|