@geode/opengeodeweb-front 6.0.0-rc.1 → 6.0.0-rc.3
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/components/ExtensionSelector.vue +2 -1
- package/components/FileSelector.vue +2 -1
- package/components/MissingFilesSelector.vue +2 -1
- package/components/ObjectSelector.vue +1 -1
- package/components/Recaptcha.vue +0 -1
- package/package.json +1 -1
- package/stores/websocket.js +1 -1
- /package/{protocols → utils}/index.js +0 -0
- /package/{protocols → utils}/vtk.js +0 -0
|
@@ -50,7 +50,8 @@
|
|
|
50
50
|
</template>
|
|
51
51
|
|
|
52
52
|
<script setup>
|
|
53
|
-
import schema from "
|
|
53
|
+
import schema from "@/assets/schemas/ExtensionSelector.json"
|
|
54
|
+
|
|
54
55
|
const emit = defineEmits([
|
|
55
56
|
"update_values",
|
|
56
57
|
"increment_step",
|
|
@@ -43,7 +43,8 @@
|
|
|
43
43
|
</template>
|
|
44
44
|
|
|
45
45
|
<script setup>
|
|
46
|
-
import schema from "
|
|
46
|
+
import schema from "@/assets/schemas/MissingFilesSelector.json"
|
|
47
|
+
|
|
47
48
|
const emit = defineEmits([
|
|
48
49
|
"update_values",
|
|
49
50
|
"increment_step",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
|
|
33
33
|
<script setup>
|
|
34
34
|
import geode_objects from "@/assets/geode_objects"
|
|
35
|
-
import schema from "
|
|
35
|
+
import schema from "@/assets/schemas/ObjectSelector.json"
|
|
36
36
|
|
|
37
37
|
const emit = defineEmits(["update_values", "increment_step"])
|
|
38
38
|
|
package/components/Recaptcha.vue
CHANGED
package/package.json
CHANGED
package/stores/websocket.js
CHANGED
|
@@ -7,7 +7,7 @@ import SmartConnect from "wslink/src/SmartConnect"
|
|
|
7
7
|
|
|
8
8
|
import "@kitware/vtk.js/Rendering/OpenGL/Profiles/Geometry"
|
|
9
9
|
import { connectImageStream } from "@kitware/vtk.js/Rendering/Misc/RemoteView"
|
|
10
|
-
import protocols from "@/
|
|
10
|
+
import protocols from "@/utils"
|
|
11
11
|
|
|
12
12
|
// Bind vtkWSLinkClient to our SmartConnect
|
|
13
13
|
vtkWSLinkClient.setSmartConnectClass(SmartConnect)
|
|
File without changes
|
|
File without changes
|