@geode/opengeodeweb-front 9.11.0-rc.6 → 9.11.0-rc.8
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/.oxlintrc.json +11 -0
- package/geode-opengeodeweb-back-5.10.0-rc.8.tgz +0 -0
- package/geode-opengeodeweb-viewer-1.11.0-rc.4.tgz +0 -0
- package/package.json +3 -3
- package/stores/menu.js +3 -3
- package/test/components/Stepper.nuxt.test.js +0 -1
- package/geode-opengeodeweb-back-5.10.0-rc.5.tgz +0 -0
- package/geode-opengeodeweb-viewer-1.11.0-rc.3.tgz +0 -0
package/.oxlintrc.json
ADDED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
},
|
|
36
36
|
"description": "OpenSource Vue/Vuetify framework for web applications",
|
|
37
37
|
"type": "module",
|
|
38
|
-
"version": "9.11.0-rc.
|
|
38
|
+
"version": "9.11.0-rc.8",
|
|
39
39
|
"main": "./nuxt.config.js",
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@geode/opengeodeweb-back": "
|
|
42
|
-
"@geode/opengeodeweb-viewer": "
|
|
41
|
+
"@geode/opengeodeweb-back": "latest",
|
|
42
|
+
"@geode/opengeodeweb-viewer": "latest",
|
|
43
43
|
"@kitware/vtk.js": "33.3.0",
|
|
44
44
|
"@mdi/font": "7.4.47",
|
|
45
45
|
"@pinia/nuxt": "0.5.4",
|
package/stores/menu.js
CHANGED
|
@@ -142,7 +142,7 @@ export const useMenuStore = defineStore("menu", () => {
|
|
|
142
142
|
current_id.value = null
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
-
async function openMenu(id, x, y,
|
|
145
|
+
async function openMenu(id, x, y, width, height) {
|
|
146
146
|
await closeMenu()
|
|
147
147
|
current_id.value = id
|
|
148
148
|
|
|
@@ -151,8 +151,8 @@ export const useMenuStore = defineStore("menu", () => {
|
|
|
151
151
|
menuY.value = y
|
|
152
152
|
}
|
|
153
153
|
|
|
154
|
-
if (containerWidth) containerWidth.value =
|
|
155
|
-
if (containerHeight) containerHeight.value =
|
|
154
|
+
if (containerWidth) containerWidth.value = width
|
|
155
|
+
if (containerHeight) containerHeight.value = height
|
|
156
156
|
|
|
157
157
|
display_menu.value = true
|
|
158
158
|
}
|
|
Binary file
|
|
Binary file
|