@geode/opengeodeweb-front 9.11.3-rc.2 → 9.11.3-rc.4

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.
@@ -0,0 +1,5 @@
1
+ {
2
+ "node": true,
3
+ "integration": true,
4
+ "microservices": "tests/integration/microservices"
5
+ }
@@ -7,29 +7,6 @@ on:
7
7
  - next
8
8
 
9
9
  jobs:
10
- test-integration:
11
- runs-on: ubuntu-latest
12
- steps:
13
- - uses: actions/checkout@v4
14
- - name: Node setup
15
- uses: actions/setup-node@v4
16
- with:
17
- node-version: 22
18
- - name: Python setup
19
- uses: actions/setup-python@v5
20
- with:
21
- python-version: 3.12
22
- - name: Install python dependencies
23
- run: |
24
- cd ./tests/integration/microservices/viewer
25
- python3 -m venv venv
26
- source venv/bin/activate
27
- pip install --extra-index-url https://wheels.vtk.org -r requirements.txt
28
- - name: Install and run tests
29
- run: |
30
- npm i
31
-
32
- npm run test:integration
33
10
  test:
34
11
  uses: Geode-solutions/actions/.github/workflows/js-test.yml@master
35
12
  with:
@@ -9,5 +9,4 @@ jobs:
9
9
  uses: Geode-solutions/actions/.github/workflows/js-test-pr.yml@master
10
10
  with:
11
11
  repos: ${{ vars.REPOS }}
12
- integration: false
13
12
  secrets: inherit
@@ -4,9 +4,9 @@
4
4
  <VeaseViewToolbar />
5
5
  <slot name="ui"></slot>
6
6
  <v-col
7
+ class="pa-0"
7
8
  ref="viewer"
8
- style="overflow: hidden; position: relative; z-index: 0"
9
- :style="{ height: viewerHeight }"
9
+ style="height: 100%; overflow: hidden; position: relative; z-index: 0"
10
10
  @click="get_x_y"
11
11
  @keydown.esc="viewerStore.toggle_picking_mode(false)"
12
12
  />
@@ -15,13 +15,6 @@
15
15
  </template>
16
16
 
17
17
  <script setup>
18
- const props = defineProps({
19
- height: {
20
- type: String,
21
- default: "100%",
22
- },
23
- })
24
-
25
18
  const emit = defineEmits(["click"])
26
19
 
27
20
  const container = useTemplateRef("viewer")
@@ -30,8 +23,6 @@
30
23
  const { windowWidth, windowHeight } = useWindowSize()
31
24
  const { width, height } = useElementSize(container)
32
25
 
33
- const viewerHeight = computed(() => props.height)
34
-
35
26
  const debouncedResize = debounce(() => {
36
27
  hybridViewerStore.resize(width.value, height.value)
37
28
  }, 100)
@@ -65,3 +56,9 @@
65
56
  emit("click", event)
66
57
  }
67
58
  </script>
59
+
60
+ <style>
61
+ img {
62
+ pointer-events: none;
63
+ }
64
+ </style>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <ContextMenuItem
2
+ <ViewerContextMenuItem
3
3
  :itemProps="props.itemProps"
4
4
  tooltip="Edges options"
5
5
  :btn_image="props.btn_image"
@@ -14,7 +14,7 @@
14
14
  />
15
15
  </template>
16
16
  </template>
17
- </ContextMenuItem>
17
+ </ViewerContextMenuItem>
18
18
  </template>
19
19
 
20
20
  <script setup>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <ContextMenuItem
2
+ <ViewerContextMenuItem
3
3
  :itemProps="props.itemProps"
4
4
  :tooltip="props.tooltip"
5
5
  :btn_image="props.btn_image"
@@ -17,7 +17,7 @@
17
17
  />
18
18
  </template>
19
19
  </template>
20
- </ContextMenuItem>
20
+ </ViewerContextMenuItem>
21
21
  </template>
22
22
 
23
23
  <script setup>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <ContextMenuItem
2
+ <ViewerContextMenuItem
3
3
  :itemProps="props.itemProps"
4
4
  :tooltip="props.tooltip"
5
5
  :btn_image="props.btn_image"
@@ -17,7 +17,7 @@
17
17
  />
18
18
  </template>
19
19
  </template>
20
- </ContextMenuItem>
20
+ </ViewerContextMenuItem>
21
21
  </template>
22
22
 
23
23
  <script setup>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <ContextMenuItem
2
+ <ViewerContextMenuItem
3
3
  :itemProps="itemProps"
4
4
  tooltip="Edges options"
5
5
  :btn_image="SurfaceEdges"
@@ -7,7 +7,7 @@
7
7
  <template #options>
8
8
  <ViewerOptionsVisibilitySwitch v-model="visibility" />
9
9
  </template>
10
- </ContextMenuItem>
10
+ </ViewerContextMenuItem>
11
11
  </template>
12
12
 
13
13
  <script setup>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <ContextMenuItem
2
+ <ViewerContextMenuItem
3
3
  :itemProps="props.itemProps"
4
4
  tooltip="Points options"
5
5
  :btn_image="SurfacePoints"
@@ -26,7 +26,7 @@
26
26
  </v-row>
27
27
  </template>
28
28
  </template>
29
- </ContextMenuItem>
29
+ </ViewerContextMenuItem>
30
30
  </template>
31
31
 
32
32
  <script setup>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <ContextMenuItem
2
+ <ViewerContextMenuItem
3
3
  :itemProps="props.itemProps"
4
4
  tooltip="Points options"
5
5
  :btn_image="props.btn_image"
@@ -36,7 +36,7 @@
36
36
  </v-row>
37
37
  </template>
38
38
  </template>
39
- </ContextMenuItem>
39
+ </ViewerContextMenuItem>
40
40
  </template>
41
41
 
42
42
  <script setup>
package/package.json CHANGED
@@ -40,7 +40,7 @@
40
40
  },
41
41
  "description": "OpenSource Vue/Vuetify framework for web applications",
42
42
  "type": "module",
43
- "version": "9.11.3-rc.2",
43
+ "version": "9.11.3-rc.4",
44
44
  "main": "./nuxt.config.js",
45
45
  "dependencies": {
46
46
  "@geode/opengeodeweb-back": "latest",