@geode/opengeodeweb-front 10.30.1 → 10.30.2-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.
- package/app/components/Viewer/Generic/Model/BlocksOptions.vue +6 -1
- package/app/components/Viewer/Generic/Model/CornersOptions.vue +6 -1
- package/app/components/Viewer/Generic/Model/LinesOptions.vue +6 -1
- package/app/components/Viewer/Generic/Model/SurfacesOptions.vue +6 -1
- package/package.json +3 -3
|
@@ -255,7 +255,12 @@ const polyhedronSchema = back_schemas.opengeodeweb_back.model_component_polyhedr
|
|
|
255
255
|
/>
|
|
256
256
|
</OptionsSection>
|
|
257
257
|
|
|
258
|
-
<OptionsSection
|
|
258
|
+
<OptionsSection
|
|
259
|
+
v-if="blockId"
|
|
260
|
+
title="Component Options"
|
|
261
|
+
class="mt-4"
|
|
262
|
+
data-testid="modelComponentOptions"
|
|
263
|
+
>
|
|
259
264
|
<VisibilitySwitch v-model="blockVisibility" />
|
|
260
265
|
<ViewerOptionsColoringTypeSelector
|
|
261
266
|
:id="modelId"
|
|
@@ -172,7 +172,12 @@ const vertexSchema = back_schemas.opengeodeweb_back.model_component_vertex_attri
|
|
|
172
172
|
/>
|
|
173
173
|
</OptionsSection>
|
|
174
174
|
|
|
175
|
-
<OptionsSection
|
|
175
|
+
<OptionsSection
|
|
176
|
+
v-if="cornerId"
|
|
177
|
+
title="Component Options"
|
|
178
|
+
class="mt-4"
|
|
179
|
+
data-testid="modelComponentOptions"
|
|
180
|
+
>
|
|
176
181
|
<VisibilitySwitch v-model="cornerVisibility" />
|
|
177
182
|
<ViewerOptionsColoringTypeSelector
|
|
178
183
|
:id="modelId"
|
|
@@ -251,7 +251,12 @@ const edgeSchema = back_schemas.opengeodeweb_back.model_component_edge_attribute
|
|
|
251
251
|
/>
|
|
252
252
|
</OptionsSection>
|
|
253
253
|
|
|
254
|
-
<OptionsSection
|
|
254
|
+
<OptionsSection
|
|
255
|
+
v-if="lineId"
|
|
256
|
+
title="Component Options"
|
|
257
|
+
class="mt-4"
|
|
258
|
+
data-testid="modelComponentOptions"
|
|
259
|
+
>
|
|
255
260
|
<VisibilitySwitch v-model="lineVisibility" />
|
|
256
261
|
<ViewerOptionsColoringTypeSelector
|
|
257
262
|
:id="modelId"
|
|
@@ -259,7 +259,12 @@ const polygonSchema = back_schemas.opengeodeweb_back.model_component_polygon_att
|
|
|
259
259
|
/>
|
|
260
260
|
</OptionsSection>
|
|
261
261
|
|
|
262
|
-
<OptionsSection
|
|
262
|
+
<OptionsSection
|
|
263
|
+
v-if="surfaceId"
|
|
264
|
+
title="Component Options"
|
|
265
|
+
class="mt-4"
|
|
266
|
+
data-testid="modelComponentOptions"
|
|
267
|
+
>
|
|
263
268
|
<VisibilitySwitch v-model="surfaceVisibility" />
|
|
264
269
|
<ViewerOptionsColoringTypeSelector
|
|
265
270
|
:id="modelId"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geode/opengeodeweb-front",
|
|
3
|
-
"version": "10.30.1",
|
|
3
|
+
"version": "10.30.2-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",
|