@vcmap/ui 5.0.0-rc.20 → 5.0.0-rc.22
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/build/buildHelpers.js +1 -0
- package/build/commonViteConfig.js +1 -0
- package/config/www.config.json +25 -14
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/{core.60e74d.js → core.a66593.js} +2443 -2457
- package/dist/assets/core.js +1 -1
- package/dist/assets/favicon.decf54cc.svg +10 -0
- package/dist/assets/{index.884a53ef.js → index.8b833ead.js} +1 -1
- package/dist/assets/{ol.c6ff35.js → ol.d4539f.js} +12406 -12152
- package/dist/assets/ol.js +1 -1
- package/dist/assets/ui.d760e4.css +5 -0
- package/dist/assets/{ui.bf504d.js → ui.d760e4.js} +5218 -4240
- package/dist/assets/ui.js +1 -1
- package/dist/assets/vue.js +2 -2
- package/dist/assets/vuetify.427322.css +5 -0
- package/dist/assets/{vuetify.0d7360.js → vuetify.427322.js} +1 -1
- package/dist/assets/vuetify.js +2 -2
- package/dist/index.html +6 -1
- package/index.html +5 -0
- package/index.js +2 -1
- package/lib/olLib.js +15 -1
- package/package.json +4 -3
- package/plugins/@vcmap/project-selector/ProjectSelectorComponent.vue +1 -1
- package/plugins/@vcmap/theme-changer/ThemeChangerComponent.vue +10 -4
- package/plugins/@vcmap-show-case/form-inputs-example/FormInputsExample.vue +75 -81
- package/plugins/@vcmap-show-case/form-inputs-example/index.js +7 -3
- package/plugins/@vcmap-show-case/form-inputs-example/validation.js +1 -1
- package/plugins/@vcmap-show-case/list-example/ListExample.vue +5 -2
- package/plugins/@vcmap-show-case/wizard-example/wizardExample.vue +57 -23
- package/plugins/package.json +2 -1
- package/src/application/VcsApp.vue +13 -5
- package/src/application/VcsAttributions.vue +2 -3
- package/src/application/VcsAttributionsFooter.vue +10 -16
- package/src/application/VcsNavbar.vue +1 -2
- package/src/application/VcsSettings.vue +21 -8
- package/src/assets/favicon-128.png +0 -0
- package/src/assets/favicon-180.png +0 -0
- package/src/assets/favicon-192.png +0 -0
- package/src/assets/favicon-32.png +0 -0
- package/src/assets/favicon.svg +10 -0
- package/src/components/buttons/VcsButton.vue +2 -3
- package/src/components/form-inputs-controls/VcsCheckbox.vue +46 -26
- package/src/components/form-inputs-controls/VcsFormSection.vue +15 -13
- package/src/components/form-inputs-controls/VcsLabel.vue +10 -1
- package/src/components/form-inputs-controls/VcsRadio.vue +38 -18
- package/src/components/form-inputs-controls/VcsSelect.vue +117 -59
- package/src/components/form-inputs-controls/VcsTextArea.vue +101 -60
- package/src/components/form-inputs-controls/VcsTextField.vue +171 -69
- package/src/components/form-inputs-controls/VcsWizard.vue +20 -14
- package/src/components/form-inputs-controls/VcsWizardStep.vue +18 -16
- package/src/components/form-inputs-controls/composables.js +26 -0
- package/src/components/form-output/VcsFormattedNumber.vue +1 -1
- package/src/components/icons/2DDistanceIcon.vue +0 -3
- package/src/components/icons/3DDistanceIcon.vue +0 -3
- package/src/components/icons/3DHeightIcon.vue +0 -3
- package/src/components/icons/CheckboxCheckedIcon.vue +4 -11
- package/src/components/icons/CheckboxIcon.vue +9 -2
- package/src/components/icons/CheckboxIndeterminateIcon.vue +4 -21
- package/src/components/icons/CommentIcon.vue +1 -5
- package/src/components/icons/ObliqueViewIcon.vue +6 -8
- package/src/components/icons/SimpleCircleOutlinedIcon.vue +1 -1
- package/src/components/icons/SplitViewIcon.vue +0 -4
- package/src/components/icons/ToolsIcon.vue +2 -4
- package/src/components/lists/VcsActionList.vue +0 -1
- package/src/components/lists/VcsList.vue +6 -25
- package/src/components/lists/VcsTreeview.vue +2 -2
- package/src/components/lists/VcsTreeviewLeaf.vue +3 -9
- package/src/components/lists/VcsTreeviewSearchbar.vue +4 -4
- package/src/components/notification/VcsBadge.vue +6 -2
- package/src/components/notification/VcsHelp.vue +39 -0
- package/src/components/tables/VcsTable.vue +70 -24
- package/src/featureInfo/AddressBalloonComponent.vue +1 -1
- package/src/featureInfo/BalloonComponent.vue +14 -9
- package/src/featureInfo/featureInfo.js +25 -7
- package/src/featureInfo/tableFeatureInfoView.js +4 -0
- package/src/i18n/de.js +5 -1
- package/src/i18n/en.js +5 -1
- package/src/legend/styleLegendItem.vue +24 -2
- package/src/legend/vcsLegend.vue +24 -31
- package/src/manager/toolbox/GroupToolboxComponent.vue +2 -3
- package/src/manager/toolbox/SelectToolboxComponent.vue +11 -5
- package/src/manager/toolbox/ToolboxManager.vue +0 -7
- package/src/manager/window/WindowComponent.vue +0 -1
- package/src/manager/window/WindowComponentHeader.vue +2 -2
- package/src/navigation/overviewMap.js +6 -15
- package/src/navigation/tiltSlider.vue +30 -6
- package/src/search/resultsComponent.vue +0 -1
- package/src/search/search.js +7 -17
- package/src/search/searchComponent.vue +6 -7
- package/src/styles/_theming.scss +72 -3
- package/src/styles/_typography.scss +0 -5
- package/src/styles/main.scss +1 -0
- package/src/styles/shades.scss +2 -0
- package/src/styles/variables.scss +40 -4
- package/src/uiConfig.js +1 -0
- package/src/vcsUiApp.js +5 -0
- package/src/vuePlugins/vuetify.js +59 -13
- package/dist/assets/core.f198cf.js +0 -15993
- package/dist/assets/ol.dbd604.js +0 -44299
- package/dist/assets/ui.bf504d.css +0 -1
- package/dist/assets/vue.a831f1.js +0 -4675
- package/dist/assets/vuetify.0d7360.css +0 -5
- /package/dist/assets/{cesium.adbd45.js → cesium.88cffd.js} +0 -0
- /package/dist/assets/{vue.75b819.js → vue.db5102.js} +0 -0
package/build/buildHelpers.js
CHANGED
package/config/www.config.json
CHANGED
@@ -589,20 +589,6 @@
|
|
589
589
|
"terrain"
|
590
590
|
]
|
591
591
|
},
|
592
|
-
{
|
593
|
-
"type": "WaterShaderLayer",
|
594
|
-
"name": "WaterLayer",
|
595
|
-
"activeOnStartup": false,
|
596
|
-
"url": "https://www.virtualcitymap.de/datasource-data/lindau_2022_water/berlin_section-T0.000000_tileset.json",
|
597
|
-
"shaderProperties": {
|
598
|
-
"waveScaling": 41,
|
599
|
-
"scaleWithHeight": true,
|
600
|
-
"velocityScaling": 0,
|
601
|
-
"animationCycle": 3,
|
602
|
-
"transparencyFactor": 5,
|
603
|
-
"waterColor": "#288a86"
|
604
|
-
}
|
605
|
-
},
|
606
592
|
{
|
607
593
|
"type": "TerrainLayer",
|
608
594
|
"name": "GermanyBaseTerrain",
|
@@ -1942,6 +1928,31 @@
|
|
1942
1928
|
{
|
1943
1929
|
"name": "@vcmap/search-nominatim",
|
1944
1930
|
"entry": "plugins/@vcmap/search-nominatim/index.js"
|
1931
|
+
},
|
1932
|
+
{
|
1933
|
+
"name": "@vcmap/export",
|
1934
|
+
"entry": "plugins/@vcmap/export/index.js",
|
1935
|
+
"crs": ["EPSG:25832", "EPSG:4326"],
|
1936
|
+
"allowCrsTextInput": false,
|
1937
|
+
"fmeSecurityToken": "abdec250f1d7f09c6383248d8596bf48ef436d6d",
|
1938
|
+
"fmeServerUrl": "https://fmeserver-virtualcitysystems--2.fmecloud.com/fmedatadownload/germany_viewer/MultiExporter.fmw",
|
1939
|
+
"dataProjection": {
|
1940
|
+
"epsg": "25832",
|
1941
|
+
"proj4": "+proj=utm +zone=32 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs"
|
1942
|
+
},
|
1943
|
+
"dataSourceOptionsList": [
|
1944
|
+
{ "type": "cityModel" },
|
1945
|
+
{
|
1946
|
+
"type": "oblique",
|
1947
|
+
"obliqueCollectionName": "obliques"
|
1948
|
+
},
|
1949
|
+
{
|
1950
|
+
"type": "geojson",
|
1951
|
+
"geojsonUrl": "https://download-berlin3d.virtualcitymap.de/datasource-data/HOSTING-Berlin-DLPortal/2020_mesh_index.json",
|
1952
|
+
"baseUrl": "https://download-berlin3d.virtualcitymap.de/datasource-data/berlin_mesh_2021",
|
1953
|
+
"title": "Mesh model"
|
1954
|
+
}
|
1955
|
+
]
|
1945
1956
|
}
|
1946
1957
|
]
|
1947
1958
|
}
|
package/dist/assets/cesium.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export * from "./cesium.
|
1
|
+
export * from "./cesium.88cffd.js";
|