@vcmap/ui 5.0.0-rc.17 → 5.0.0-rc.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.
Files changed (34) hide show
  1. package/config/www.config.json +748 -123
  2. package/dist/assets/{cesium.41de56.js → cesium.2f992f.js} +0 -0
  3. package/dist/assets/cesium.js +1 -1
  4. package/dist/assets/{core.af84e3.js → core.cb0408.js} +2 -2
  5. package/dist/assets/core.js +1 -1
  6. package/dist/assets/{index.5b773cad.js → index.bccdf969.js} +1 -1
  7. package/dist/assets/{ol.5c7490.js → ol.5e3fd0.js} +0 -0
  8. package/dist/assets/ol.js +1 -1
  9. package/dist/assets/ui.08c48f.css +1 -0
  10. package/dist/assets/{ui.dffe32.js → ui.08c48f.js} +997 -983
  11. package/dist/assets/ui.js +1 -1
  12. package/dist/assets/{vue.25da17.js → vue.228ead.js} +0 -0
  13. package/dist/assets/vue.js +2 -2
  14. package/dist/assets/{vuetify.e4ece7.css → vuetify.0b5039.css} +0 -0
  15. package/dist/assets/{vuetify.e4ece7.js → vuetify.0b5039.js} +1 -1
  16. package/dist/assets/vuetify.js +2 -2
  17. package/dist/index.html +1 -1
  18. package/package.json +1 -1
  19. package/plugins/buttonExamples/ButtonExamples.vue +18 -0
  20. package/plugins/package.json +1 -1
  21. package/plugins/test/index.js +3 -1
  22. package/plugins/test/toolbox-data.js +168 -111
  23. package/src/actions/actionHelper.js +3 -1
  24. package/src/application/VcsNavbar.vue +1 -1
  25. package/src/components/buttons/VcsButton.vue +14 -3
  26. package/src/components/lists/VcsActionList.vue +2 -0
  27. package/src/contentTree/layerContentTreeItem.js +2 -2
  28. package/src/featureInfo/BalloonComponent.vue +2 -2
  29. package/src/i18n/de.js +6 -2
  30. package/src/i18n/en.js +4 -0
  31. package/src/legend/legendHelper.js +6 -7
  32. package/src/legend/vcsLegend.vue +12 -3
  33. package/src/manager/toolbox/ToolboxManager.vue +1 -0
  34. package/dist/assets/ui.dffe32.css +0 -1
@@ -27,7 +27,13 @@
27
27
  <v-list dense>
28
28
  <div v-for="(item, idx) in entry.legend" :key="idx">
29
29
  <div v-if="item.type === LegendType.Image" class="mx-2">
30
- <v-img :src="$t(item.src)" max-width="287" class="mx-2" :title="item.tooltip" />
30
+ <img
31
+ :src="$t(item.src)"
32
+ max-width="287"
33
+ max-height="auto"
34
+ class="mx-2 legend-image"
35
+ :title="item.tooltip"
36
+ >
31
37
  </div>
32
38
  <div v-else-if="item.type === LegendType.Iframe" class="mx-2">
33
39
  <iframe
@@ -58,7 +64,6 @@
58
64
  VExpansionPanelContent,
59
65
  VIcon,
60
66
  VList,
61
- VImg,
62
67
  } from 'vuetify/lib';
63
68
  import { LegendType } from './legendHelper.js';
64
69
  import StyleLegendItem from './styleLegendItem.vue';
@@ -80,7 +85,6 @@
80
85
  VExpansionPanelContent,
81
86
  VIcon,
82
87
  VList,
83
- VImg,
84
88
  },
85
89
  props: {
86
90
  entries: {
@@ -115,4 +119,9 @@
115
119
  max-width: 189px;
116
120
  }
117
121
  }
122
+ .legend-image {
123
+ max-width: 287px;
124
+ height: auto;
125
+ width: auto;
126
+ }
118
127
  </style>
@@ -28,6 +28,7 @@
28
28
  :tooltip="group.action.title"
29
29
  :icon="group.action.icon"
30
30
  :active="group.action.active"
31
+ :background="group.action.background"
31
32
  @click.stop="group.action.callback($event)"
32
33
  v-bind="{...$attrs}"
33
34
  large