@vcmap/ui 6.3.0-rc.1 → 6.3.0-rc.2
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/config/base.config.json +6 -3
- package/config/cluster.config.json +2 -1
- package/config/dev.config.json +377 -1
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/{core-b7d98022.js → core-c23fc5f1.js} +10565 -8835
- package/dist/assets/core-workers/panoramaImageWorker.js +1 -1
- package/dist/assets/core.js +1 -1
- package/dist/assets/ol.js +1 -1
- package/dist/assets/ui-e61976d4.css +1 -0
- package/dist/assets/{ui-94adeedc.js → ui-e61976d4.js} +6650 -6544
- package/dist/assets/ui.js +1 -1
- package/dist/assets/vue.js +1 -1
- package/dist/assets/{vuetify-2f71239e.js → vuetify-de6f6eb0.js} +1 -1
- package/dist/assets/vuetify.js +1 -1
- package/index.d.ts +3 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/plugins/@vcmap-show-case/panel-tester/src/TextPanelExample.vue +1 -1
- package/plugins/package.json +4 -3
- package/src/actions/actionHelper.d.ts +0 -1
- package/src/actions/actionHelper.js +3 -3
- package/src/application/VcsApp.vue +12 -1
- package/src/application/VcsApp.vue.d.ts +32 -0
- package/src/application/VcsAttributions.vue +9 -0
- package/src/application/VcsAttributionsFooter.vue.d.ts +1 -0
- package/src/application/VcsContainer.vue.d.ts +31 -0
- package/src/application/VcsMobileMenuList.vue +16 -1
- package/src/application/VcsObliqueFooter.vue +19 -6
- package/src/application/VcsObliqueFooter.vue.d.ts +1 -0
- package/src/application/VcsPanoramaFooter.vue +26 -6
- package/src/application/VcsTextPageFooter.vue +4 -0
- package/src/application/attributionsHelper.d.ts +7 -1
- package/src/application/attributionsHelper.js +7 -2
- package/src/application/uiConfigHelper.d.ts +6 -0
- package/src/application/uiConfigHelper.js +28 -0
- package/src/contentTree/wmsGroupContentTreeItem.d.ts +52 -6
- package/src/contentTree/wmsGroupContentTreeItem.js +127 -28
- package/src/featureInfo/balloonHelper.js +8 -2
- package/src/i18n/de.d.ts +1 -0
- package/src/i18n/de.js +1 -0
- package/src/i18n/en.d.ts +1 -0
- package/src/i18n/en.js +1 -0
- package/src/manager/panel/PanelComponent.vue +48 -27
- package/src/manager/panel/PanelComponent.vue.d.ts +0 -1
- package/src/manager/panel/PanelManagerComponent.vue +42 -19
- package/src/manager/panel/PanelManagerComponent.vue.d.ts +4 -3
- package/src/search/SearchComponent.vue +9 -11
- package/src/search/SearchComponent.vue.d.ts +2 -1
- package/src/search/search.js +2 -0
- package/src/uiConfig.d.ts +46 -0
- package/src/uiConfig.js +3 -0
- package/dist/assets/ui-94adeedc.css +0 -1
- /package/dist/assets/{cesium-4fcc8a17.js → cesium-8369e63b.js} +0 -0
- /package/dist/assets/core-workers/{panoramaImageWorker.js-fc0f2458.js → panoramaImageWorker.js-f9c706f1.js} +0 -0
- /package/dist/assets/{ol-8c487975.js → ol-9f59d99f.js} +0 -0
- /package/dist/assets/{vue-225a7b37.js → vue-f6136dc6.js} +0 -0
- /package/dist/assets/{vuetify-2f71239e.css → vuetify-de6f6eb0.css} +0 -0
package/config/base.config.json
CHANGED
|
@@ -701,7 +701,8 @@
|
|
|
701
701
|
"attributions": {
|
|
702
702
|
"provider": "Berlin Partner für Wirtschaft und Technologie",
|
|
703
703
|
"url": "https://www.berlin-partner.de",
|
|
704
|
-
"year": "2020"
|
|
704
|
+
"year": "2020",
|
|
705
|
+
"icon": "imageUrl:https://www.berlin-partner.de/typo3conf/ext/berlinpartner/Resources/Public/Images/logo.svg"
|
|
705
706
|
}
|
|
706
707
|
}
|
|
707
708
|
},
|
|
@@ -791,7 +792,8 @@
|
|
|
791
792
|
"attributions": {
|
|
792
793
|
"provider": "OpenStreetMap contributors",
|
|
793
794
|
"url": "http://www.openstreetmap.org/",
|
|
794
|
-
"year": "2019"
|
|
795
|
+
"year": "2019",
|
|
796
|
+
"icon": "imageUrl:https://wiki.openstreetmap.org/w/images/7/79/Public-images-osm_logo.svg"
|
|
795
797
|
}
|
|
796
798
|
}
|
|
797
799
|
},
|
|
@@ -1148,7 +1150,8 @@
|
|
|
1148
1150
|
"attributions": {
|
|
1149
1151
|
"provider": "Berlin Partner / Senat von Berlin",
|
|
1150
1152
|
"url": "https://www.berlin-partner.de",
|
|
1151
|
-
"year": "2020"
|
|
1153
|
+
"year": "2020",
|
|
1154
|
+
"icon": "imageUrl:https://www.berlin-partner.de/typo3conf/ext/berlinpartner/Resources/Public/Images/logo.svg"
|
|
1152
1155
|
}
|
|
1153
1156
|
}
|
|
1154
1157
|
}
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
{
|
|
30
30
|
"provider": "Senatsverwaltung für Bildung, Jugend und Familie",
|
|
31
31
|
"url": "https://www.berlin.de/sen/bjf/",
|
|
32
|
-
"year": "2024"
|
|
32
|
+
"year": "2024",
|
|
33
|
+
"icon": "svgString:<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\"><circle cx=\"30\" cy=\"30\" r=\"25\" fill=\"black\"/></svg>"
|
|
33
34
|
}
|
|
34
35
|
]
|
|
35
36
|
}
|