@eeacms/volto-arcgis-block 0.1.457 → 0.1.459
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 +12 -0
- package/Jenkinsfile +3 -3
- package/package.json +1 -1
- package/src/components/MapViewer/css/ArcgisMap.css +20 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ 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.1.459](https://github.com/eea/volto-arcgis-block/compare/0.1.458...0.1.459) - 1 July 2026
|
|
8
|
+
|
|
9
|
+
### [0.1.458](https://github.com/eea/volto-arcgis-block/compare/0.1.457...0.1.458) - 29 June 2026
|
|
10
|
+
|
|
11
|
+
#### :house: Internal changes
|
|
12
|
+
|
|
13
|
+
- chore: [JENKINSFILE] sanitize sonarqube command [valentinab25 - [`773ec5d`](https://github.com/eea/volto-arcgis-block/commit/773ec5d35da8a1ba0c93c243ca5c11fc29145ab3)]
|
|
14
|
+
|
|
15
|
+
#### :hammer_and_wrench: Others
|
|
16
|
+
|
|
17
|
+
- CLMS-304777 (bug): empty line jenkins2 [Urkorue - [`53b892c`](https://github.com/eea/volto-arcgis-block/commit/53b892c929ca0e9677395e31dc98b7c61b3c1535)]
|
|
18
|
+
- CLMS-304777 (bug): empty line jenkins [Urkorue - [`32a1054`](https://github.com/eea/volto-arcgis-block/commit/32a1054d0592ff17b63b85571a9af110e10bf933)]
|
|
7
19
|
### [0.1.457](https://github.com/eea/volto-arcgis-block/compare/0.1.456...0.1.457) - 17 June 2026
|
|
8
20
|
|
|
9
21
|
### [0.1.456](https://github.com/eea/volto-arcgis-block/compare/0.1.455...0.1.456) - 11 June 2026
|
package/Jenkinsfile
CHANGED
|
@@ -238,16 +238,16 @@ pipeline {
|
|
|
238
238
|
def scannerHome = tool 'SonarQubeScanner'
|
|
239
239
|
def nodeJS = tool 'NodeJS'
|
|
240
240
|
if (env.CHANGE_ID) {
|
|
241
|
-
env.sonarParams = " -Dsonar.pullrequest.base
|
|
241
|
+
env.sonarParams = " -Dsonar.pullrequest.base='${env.CHANGE_TARGET}' -Dsonar.pullrequest.branch='${env.CHANGE_BRANCH}' -Dsonar.pullrequest.key='${env.CHANGE_ID}' "
|
|
242
242
|
}
|
|
243
243
|
else {
|
|
244
|
-
env.sonarParams = " -Dsonar.branch.name
|
|
244
|
+
env.sonarParams = " -Dsonar.branch.name='${env.BRANCH_NAME}'"
|
|
245
245
|
}
|
|
246
246
|
withSonarQubeEnv('Sonarqube') {
|
|
247
247
|
sh '''sed -i "s#/app/src/addons/${GIT_NAME}/##g" xunit-reports/coverage/lcov.info'''
|
|
248
248
|
sh '''sed -i "s#src/addons/${GIT_NAME}/##g" xunit-reports/coverage/lcov.info'''
|
|
249
249
|
// removed the integration coverage file, only unit test coverage
|
|
250
|
-
sh "export PATH=${scannerHome}/bin:${nodeJS}/bin:$PATH; sonar-scanner -Dsonar.javascript.lcov.reportPaths=./xunit-reports/coverage/lcov.info -Dsonar.sources=./src -Dsonar.projectKey
|
|
250
|
+
sh "export PATH=${scannerHome}/bin:${nodeJS}/bin:$PATH; sonar-scanner -Dsonar.javascript.lcov.reportPaths=./xunit-reports/coverage/lcov.info -Dsonar.sources=./src -Dsonar.projectKey=\"${GIT_NAME}\" -Dsonar.projectName=\"${GIT_NAME}\" -Dsonar.projectVersion=\$(jq '.version' package.json) ${env.sonarParams}"
|
|
251
251
|
sh '''try=5; while [ \$try -gt 0 ]; do curl -s -XPOST -u "${SONAR_AUTH_TOKEN}:" "${SONAR_HOST_URL}api/project_tags/set?project=${GIT_NAME}&tags=${SONARQUBE_TAGS}" > set_tags_result; if [ \$(grep -ic error set_tags_result ) -eq 0 ]; then try=0; else cat set_tags_result; echo "... Will retry"; sleep 15; try=\$(( \$try - 1 )); fi; done'''
|
|
252
252
|
}
|
|
253
253
|
}
|
package/package.json
CHANGED
|
@@ -914,6 +914,26 @@ div.upload-container
|
|
|
914
914
|
}
|
|
915
915
|
}
|
|
916
916
|
|
|
917
|
+
@media only screen and (max-width: 600px) {
|
|
918
|
+
.map-menu.tab-container {
|
|
919
|
+
width: 270px !important;
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.esri-search {
|
|
923
|
+
width: 305px !important;
|
|
924
|
+
}
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
@media only screen and (max-width: 400px) {
|
|
928
|
+
.map-menu.tab-container {
|
|
929
|
+
width: 170px !important;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.esri-search {
|
|
933
|
+
width: 205px !important;
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
|
|
917
937
|
/* Login */
|
|
918
938
|
.login-panel {
|
|
919
939
|
position: absolute;
|