@vcmap/ui 6.3.6 → 6.3.7

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.
Files changed (25) hide show
  1. package/config/base.config.json +22 -3
  2. package/config/concepts-show-case.config.json +4 -0
  3. package/dist/assets/{cesium-13cf3c65.js → cesium-a9fcdef3.js} +64804 -64777
  4. package/dist/assets/cesium.js +1 -1
  5. package/dist/assets/{core-b552e43f.js → core-a6684686.js} +5008 -4996
  6. package/dist/assets/core-workers/panoramaImageWorker.js +1 -1
  7. package/dist/assets/core.js +1 -1
  8. package/dist/assets/ol.js +1 -1
  9. package/dist/assets/{ui-a2ca1d03.js → ui-130549f1.js} +11 -11
  10. package/dist/assets/ui.js +1 -1
  11. package/dist/assets/vue.js +1 -1
  12. package/dist/assets/{vuetify-e536bde6.js → vuetify-6d0e90c9.js} +1 -1
  13. package/dist/assets/vuetify.js +1 -1
  14. package/package.json +2 -2
  15. package/plugins/@vcmap-show-case/tileset-feature-visibility/package.json +5 -0
  16. package/plugins/@vcmap-show-case/tileset-feature-visibility/src/TilesetFeatureVisibilityComponent.vue +349 -0
  17. package/plugins/@vcmap-show-case/tileset-feature-visibility/src/TilesetFeatureVisibilityInteraction.js +66 -0
  18. package/plugins/@vcmap-show-case/tileset-feature-visibility/src/index.js +135 -0
  19. package/plugins/package.json +4 -4
  20. package/src/vuePlugins/vuetify.js +2 -4
  21. /package/dist/assets/core-workers/{panoramaImageWorker.js-1169c1e6.js → panoramaImageWorker.js-1e5adc77.js} +0 -0
  22. /package/dist/assets/{ol-bb6d9ab8.js → ol-15bf8646.js} +0 -0
  23. /package/dist/assets/{ui-a2ca1d03.css → ui-130549f1.css} +0 -0
  24. /package/dist/assets/{vue-1a9cf873.js → vue-d93cd563.js} +0 -0
  25. /package/dist/assets/{vuetify-e536bde6.css → vuetify-6d0e90c9.css} +0 -0
@@ -2,17 +2,17 @@
2
2
  "dependencies": {
3
3
  "@vcmap/print": "^4.0.0",
4
4
  "@vcmap/walk": "^2.0.0",
5
- "@vcmap/clipping-tool": "^3.0.0",
5
+ "@vcmap/clipping-tool": "^4.0.0",
6
6
  "@vcmap/transparent-terrain": "^3.0.0",
7
7
  "@vcmap/height-profile": "^3.0.0",
8
8
  "@vcmap/flight": "^3.0.0",
9
9
  "@vcmap/swipe-tool": "^4.0.0",
10
- "@vcmap/export": "^2.0.0",
11
- "@vcmap/viewshed": "^4.0.0",
10
+ "@vcmap/export": "^2.1.0",
11
+ "@vcmap/viewshed": "^4.1.0",
12
12
  "@vcmap/measurement": "^5.0.0",
13
13
  "@vcmap/multi-view": "^3.0.0",
14
14
  "@vcmap/draw": "^5.0.0",
15
- "@vcmap/shadow": "^3.0.0",
15
+ "@vcmap/shadow": "^3.1.0",
16
16
  "@vcmap/search-wfs": "^2.1.0",
17
17
  "@vcmap/search-esri": "^3.0.0",
18
18
  "@vcmap/search-coordinate": "^2.0.0",
@@ -358,11 +358,9 @@ export function useFontSize() {
358
358
  export function isMobileLandscape() {
359
359
  const display = useDisplay();
360
360
  return computed(() => {
361
- // Check if the device is a mobile platform (e.g., Android, iOS, or touch-based)
361
+ // Check if the device is a mobile platform (e.g., Android, iOS)
362
362
  const isMobilePlatform =
363
- display.platform.value.android ||
364
- display.platform.value.ios ||
365
- display.platform.value.touch;
363
+ display.platform.value.android || display.platform.value.ios;
366
364
 
367
365
  // Check if the device height is less than the threshold for SM
368
366
  const isHeightXs = display.height.value <= display.thresholds.value.sm;
File without changes