@geode/opengeodeweb-front 6.0.0-rc.2 → 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/Errors/Banner.vue +0 -1
- package/components/Errors/Snackers.vue +0 -1
- package/components/Launcher.vue +0 -3
- package/components/PackagesVersions.vue +0 -1
- package/components/Recaptcha.vue +0 -1
- package/components/RemoteRenderingView.vue +0 -2
- package/components/ViewToolbar.vue +0 -2
- package/components/Wrapper.vue +0 -2
- package/composables/api_fetch.js +0 -3
- package/composables/runFunctionIfCloudRunning.js +0 -2
- package/composables/upload_file.js +0 -3
- package/package.json +1 -1
- package/stores/cloud.js +0 -3
- package/stores/geode.js +0 -3
- package/stores/viewer.js +0 -2
- package/stores/websocket.js +0 -1
package/components/Launcher.vue
CHANGED
|
@@ -18,9 +18,6 @@
|
|
|
18
18
|
</template>
|
|
19
19
|
|
|
20
20
|
<script setup>
|
|
21
|
-
import { use_websocket_store } from "@/stores/websocket"
|
|
22
|
-
import { use_cloud_store } from "@/stores/cloud"
|
|
23
|
-
|
|
24
21
|
const websocket_store = use_websocket_store()
|
|
25
22
|
const cloud_store = use_cloud_store()
|
|
26
23
|
const { is_captcha_validated, is_connexion_launched, is_running } =
|
package/components/Recaptcha.vue
CHANGED
|
@@ -23,8 +23,6 @@
|
|
|
23
23
|
<script setup>
|
|
24
24
|
import vtkRemoteView from "@kitware/vtk.js/Rendering/Misc/RemoteView"
|
|
25
25
|
import { useElementSize } from "@vueuse/core"
|
|
26
|
-
import { use_viewer_store } from "@/stores/viewer"
|
|
27
|
-
import { use_websocket_store } from "@/stores/websocket"
|
|
28
26
|
|
|
29
27
|
const viewer_store = use_viewer_store()
|
|
30
28
|
const { picking_mode } = storeToRefs(viewer_store)
|
package/components/Wrapper.vue
CHANGED
package/composables/api_fetch.js
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import Ajv from "ajv"
|
|
2
2
|
import _ from "lodash"
|
|
3
3
|
|
|
4
|
-
import { use_errors_store } from "@/stores/errors"
|
|
5
|
-
import { use_geode_store } from "@/stores/geode"
|
|
6
|
-
|
|
7
4
|
export function api_fetch(
|
|
8
5
|
{ schema, params },
|
|
9
6
|
{ request_error_function, response_function, response_error_function } = {},
|
package/package.json
CHANGED
package/stores/cloud.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import { useStorage } from "@vueuse/core"
|
|
2
|
-
import { use_errors_store } from "@/stores/errors"
|
|
3
|
-
import { use_geode_store } from "@/stores/geode"
|
|
4
|
-
import { use_websocket_store } from "@/stores/websocket"
|
|
5
2
|
|
|
6
3
|
export const use_cloud_store = defineStore("cloud", {
|
|
7
4
|
state: () => ({
|
package/stores/geode.js
CHANGED
package/stores/viewer.js
CHANGED
package/stores/websocket.js
CHANGED
|
@@ -8,7 +8,6 @@ import SmartConnect from "wslink/src/SmartConnect"
|
|
|
8
8
|
import "@kitware/vtk.js/Rendering/OpenGL/Profiles/Geometry"
|
|
9
9
|
import { connectImageStream } from "@kitware/vtk.js/Rendering/Misc/RemoteView"
|
|
10
10
|
import protocols from "@/utils"
|
|
11
|
-
import { use_cloud_store } from "@/stores/cloud"
|
|
12
11
|
|
|
13
12
|
// Bind vtkWSLinkClient to our SmartConnect
|
|
14
13
|
vtkWSLinkClient.setSmartConnectClass(SmartConnect)
|