@geode/opengeodeweb-front 10.2.1-rc.2 → 10.2.1-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/app/components/Carousel.vue +20 -20
- package/app/components/CrsSelector.vue +25 -25
- package/app/components/DragAndDrop.vue +31 -31
- package/app/components/ExtensionSelector.vue +56 -56
- package/app/components/FeedBack/ErrorBanner.vue +9 -9
- package/app/components/FeedBack/Snackers.vue +11 -11
- package/app/components/FileSelector.vue +9 -9
- package/app/components/FileUploader.vue +54 -54
- package/app/components/HybridRenderingView.vue +16 -16
- package/app/components/InfraConnected.vue +4 -4
- package/app/components/Inspector/InspectionButton.vue +16 -16
- package/app/components/Inspector/ResultPanel.vue +15 -15
- package/app/components/Launcher.vue +18 -18
- package/app/components/Loading.vue +26 -26
- package/app/components/MissingFilesSelector.vue +44 -44
- package/app/components/ObjectSelector.vue +50 -50
- package/app/components/PackagesVersions.vue +20 -20
- package/app/components/Recaptcha.vue +40 -40
- package/app/components/RemoteRenderingView.vue +22 -22
- package/app/components/Step.vue +46 -46
- package/app/components/Stepper.vue +8 -8
- package/app/components/VeaseViewToolbar.vue +28 -28
- package/app/components/ViewToolbar.vue +22 -22
- package/app/components/Viewer/BreadCrumb.vue +20 -20
- package/app/components/Viewer/ContextMenu.vue +34 -34
- package/app/components/Viewer/EdgedCurve/PointsOptions.vue +7 -7
- package/app/components/Viewer/EdgedCurve/SpecificEdgesOptions.vue +42 -42
- package/app/components/Viewer/Generic/Mesh/CellsOptions.vue +22 -22
- package/app/components/Viewer/Generic/Mesh/EdgesOptions.vue +40 -40
- package/app/components/Viewer/Generic/Mesh/PointsOptions.vue +41 -41
- package/app/components/Viewer/Generic/Mesh/PolygonsOptions.vue +20 -20
- package/app/components/Viewer/Generic/Mesh/PolyhedraOptions.vue +19 -19
- package/app/components/Viewer/Generic/Model/EdgesOptions.vue +12 -12
- package/app/components/Viewer/Generic/Model/PointsOptions.vue +31 -31
- package/app/components/Viewer/Grid/2D/CellsOptions.vue +8 -8
- package/app/components/Viewer/Grid/2D/EdgesOptions.vue +7 -7
- package/app/components/Viewer/Grid/2D/PointsOptions.vue +7 -7
- package/app/components/Viewer/Grid/3D/CellsOptions.vue +8 -8
- package/app/components/Viewer/Grid/3D/EdgesOptions.vue +7 -7
- package/app/components/Viewer/Grid/3D/FacetsOptions.vue +8 -8
- package/app/components/Viewer/Grid/3D/PointsOptions.vue +7 -7
- package/app/components/Viewer/HybridSolid/EdgesOptions.vue +7 -7
- package/app/components/Viewer/HybridSolid/PointsOptions.vue +7 -7
- package/app/components/Viewer/HybridSolid/PolygonsOptions.vue +7 -7
- package/app/components/Viewer/HybridSolid/PolyhedraOptions.vue +7 -7
- package/app/components/Viewer/Options/CellAttributeSelector.vue +9 -9
- package/app/components/Viewer/Options/ColorPicker.vue +12 -12
- package/app/components/Viewer/Options/ColoringTypeSelector.vue +66 -66
- package/app/components/Viewer/Options/EdgeAttributeSelector.vue +21 -21
- package/app/components/Viewer/Options/PolygonAttributeSelector.vue +9 -9
- package/app/components/Viewer/Options/PolyhedronAttributeSelector.vue +9 -9
- package/app/components/Viewer/Options/TextureItem.vue +37 -37
- package/app/components/Viewer/Options/TexturesSelector.vue +30 -30
- package/app/components/Viewer/Options/VertexAttributeSelector.vue +9 -9
- package/app/components/Viewer/Options/VisibilitySwitch.vue +4 -4
- package/app/components/Viewer/PointSet/SpecificPointsOptions.vue +41 -41
- package/app/components/Viewer/PolygonalSurface/EdgesOptions.vue +7 -7
- package/app/components/Viewer/PolygonalSurface/PointsOptions.vue +7 -7
- package/app/components/Viewer/PolygonalSurface/SpecificPolygonsOptions.vue +22 -22
- package/app/components/Viewer/Solid/EdgesOptions.vue +7 -7
- package/app/components/Viewer/Solid/PointsOptions.vue +7 -7
- package/app/components/Viewer/Solid/PolygonsOptions.vue +7 -7
- package/app/components/Viewer/Solid/SpecificPolyhedraOptions.vue +21 -21
- package/app/components/Viewer/TetrahedralSolid/TetrahedraOptions.vue +8 -8
- package/app/components/Viewer/TetrahedralSolid/TrianglesOptions.vue +8 -8
- package/app/components/Viewer/Tree/ObjectTree.vue +39 -39
- package/app/components/Viewer/TreeComponent.vue +21 -21
- package/app/components/Viewer/TreeObject.vue +37 -37
- package/app/components/Viewer/TriangulatedSurface/EdgesOptions.vue +7 -7
- package/app/components/Viewer/TriangulatedSurface/PointsOptions.vue +7 -7
- package/app/components/Viewer/TriangulatedSurface/TrianglesOptions.vue +8 -8
- package/app/components/Wrapper.vue +15 -15
- package/package.json +1 -1
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import Launcher from "@ogw_front/components/Launcher"
|
|
3
|
+
import PackagesVersions from "@ogw_front/components/PackagesVersions"
|
|
4
|
+
import Stepper from "@ogw_front/components/Stepper"
|
|
5
|
+
|
|
6
|
+
import { useInfraStore } from "@ogw_front/stores/infra"
|
|
7
|
+
|
|
8
|
+
const infraStore = useInfraStore()
|
|
9
|
+
|
|
10
|
+
const props = defineProps({
|
|
11
|
+
versions_schema: { type: Object, required: true },
|
|
12
|
+
})
|
|
13
|
+
const { versions_schema } = props
|
|
14
|
+
</script>
|
|
15
|
+
|
|
1
16
|
<template>
|
|
2
17
|
<v-container>
|
|
3
18
|
<v-row class="flex-column">
|
|
@@ -17,18 +32,3 @@
|
|
|
17
32
|
</v-row>
|
|
18
33
|
</v-container>
|
|
19
34
|
</template>
|
|
20
|
-
|
|
21
|
-
<script setup>
|
|
22
|
-
import Launcher from "@ogw_front/components/Launcher"
|
|
23
|
-
import PackagesVersions from "@ogw_front/components/PackagesVersions"
|
|
24
|
-
import Stepper from "@ogw_front/components/Stepper"
|
|
25
|
-
|
|
26
|
-
import { useInfraStore } from "@ogw_front/stores/infra"
|
|
27
|
-
|
|
28
|
-
const infraStore = useInfraStore()
|
|
29
|
-
|
|
30
|
-
const props = defineProps({
|
|
31
|
-
versions_schema: { type: Object, required: true },
|
|
32
|
-
})
|
|
33
|
-
const { versions_schema } = props
|
|
34
|
-
</script>
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@geode/opengeodeweb-front",
|
|
3
3
|
"description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "10.2.1-rc.
|
|
5
|
+
"version": "10.2.1-rc.3",
|
|
6
6
|
"main": "./nuxt.config.js",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"lint": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
|