@geode/opengeodeweb-front 10.13.2 → 10.13.3-rc.1
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.
|
@@ -25,9 +25,17 @@ const visibility = computed({
|
|
|
25
25
|
</script>
|
|
26
26
|
|
|
27
27
|
<template>
|
|
28
|
-
<ViewerContextMenuItem
|
|
28
|
+
<ViewerContextMenuItem
|
|
29
|
+
data-testid="modelEdgesMenu"
|
|
30
|
+
:itemProps="itemProps"
|
|
31
|
+
tooltip="Edges options"
|
|
32
|
+
:btn_image="SurfaceEdges"
|
|
33
|
+
>
|
|
29
34
|
<template #options>
|
|
30
|
-
<ViewerOptionsVisibilitySwitch
|
|
35
|
+
<ViewerOptionsVisibilitySwitch
|
|
36
|
+
data-testid="modelEdgesVisibilitySwitch"
|
|
37
|
+
v-model="visibility"
|
|
38
|
+
/>
|
|
31
39
|
</template>
|
|
32
40
|
</ViewerContextMenuItem>
|
|
33
41
|
</template>
|
|
@@ -32,9 +32,17 @@ const size = computed({
|
|
|
32
32
|
</script>
|
|
33
33
|
|
|
34
34
|
<template>
|
|
35
|
-
<ViewerContextMenuItem
|
|
35
|
+
<ViewerContextMenuItem
|
|
36
|
+
data-testid="modelPointsMenu"
|
|
37
|
+
:itemProps="itemProps"
|
|
38
|
+
tooltip="Points options"
|
|
39
|
+
:btn_image="SurfacePoints"
|
|
40
|
+
>
|
|
36
41
|
<template #options>
|
|
37
|
-
<ViewerOptionsVisibilitySwitch
|
|
42
|
+
<ViewerOptionsVisibilitySwitch
|
|
43
|
+
data-testid="modelPointsVisibilitySwitch"
|
|
44
|
+
v-model="visibility"
|
|
45
|
+
/>
|
|
38
46
|
<template v-if="visibility">
|
|
39
47
|
<v-row class="pa-0" align="center">
|
|
40
48
|
<v-divider />
|
|
@@ -194,7 +194,7 @@ function onVerticalResizeStart(event, index) {
|
|
|
194
194
|
:scroll-top="mainView.scrollTop"
|
|
195
195
|
@update:scroll-top="treeviewStore.setScrollTop(mainView.id, $event)"
|
|
196
196
|
>
|
|
197
|
-
<GlobalObjects @show-menu="emit('show-menu', $event)" />
|
|
197
|
+
<GlobalObjects data-testid="mainObjectTree" @show-menu="emit('show-menu', $event)" />
|
|
198
198
|
</ViewerObjectTreeBox>
|
|
199
199
|
</div>
|
|
200
200
|
|
|
@@ -226,7 +226,11 @@ function onVerticalResizeStart(event, index) {
|
|
|
226
226
|
@dragstart="onDragStart(index + 1)"
|
|
227
227
|
@update:scroll-top="treeviewStore.setScrollTop(view.id, $event)"
|
|
228
228
|
>
|
|
229
|
-
<ModelComponents
|
|
229
|
+
<ModelComponents
|
|
230
|
+
data-testid="modelComponentsObjectTree"
|
|
231
|
+
:id="view.id"
|
|
232
|
+
@show-menu="emit('show-menu', $event)"
|
|
233
|
+
/>
|
|
230
234
|
</ViewerObjectTreeBox>
|
|
231
235
|
</div>
|
|
232
236
|
<div
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geode/opengeodeweb-front",
|
|
3
|
-
"version": "10.13.
|
|
3
|
+
"version": "10.13.3-rc.1",
|
|
4
4
|
"description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
|
|
5
5
|
"homepage": "https://github.com/Geode-solutions/OpenGeodeWeb-Front",
|
|
6
6
|
"bugs": {
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"build": ""
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@geode/opengeodeweb-back": "
|
|
38
|
-
"@geode/opengeodeweb-viewer": "
|
|
37
|
+
"@geode/opengeodeweb-back": "next",
|
|
38
|
+
"@geode/opengeodeweb-viewer": "next",
|
|
39
39
|
"@google-cloud/run": "3.2.0",
|
|
40
40
|
"@kitware/vtk.js": "33.3.0",
|
|
41
41
|
"@mdi/font": "7.4.47",
|