@geode/opengeodeweb-front 10.24.1 → 10.24.2
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/CameraManager.vue +2 -1
- package/app/components/CameraOrientation.vue +2 -1
- package/app/components/FeedBack/ErrorBanner.vue +1 -1
- package/app/components/FeedBack/Snackers.vue +1 -0
- package/app/components/HybridViewerTooltip.vue +1 -1
- package/app/components/Launcher.vue +1 -1
- package/app/components/Loading.vue +2 -2
- package/app/components/RemoteRenderingView.vue +3 -2
- package/app/components/ToolPanel.vue +1 -1
- package/app/components/ViewToolbar.vue +1 -1
- package/app/components/Viewer/ContextMenu/CenterButton.vue +2 -1
- package/app/components/Viewer/ContextMenu/ContextMenuItem.vue +1 -1
- package/app/components/Viewer/ContextMenu/InfoCard.vue +1 -1
- package/app/components/Viewer/ObjectTree/Base/StickyHeader.vue +1 -1
- package/app/components/Viewer/ObjectTree/Layout.vue +3 -3
- package/app/components/Viewer/Ui.vue +1 -1
- package/package.json +1 -1
|
@@ -21,7 +21,8 @@ const { show_dialog, width } = defineProps({
|
|
|
21
21
|
variant="panel"
|
|
22
22
|
padding="pa-0"
|
|
23
23
|
class="position-absolute elevation-24"
|
|
24
|
-
style="
|
|
24
|
+
style="top: 90px; right: 55px"
|
|
25
|
+
z-index="1"
|
|
25
26
|
>
|
|
26
27
|
<v-card-text class="pa-0">
|
|
27
28
|
<Saver />
|
|
@@ -172,7 +172,8 @@ watch(hoveredFace, (newFace, oldFace) => {
|
|
|
172
172
|
v-model="show"
|
|
173
173
|
title="Camera Orientations"
|
|
174
174
|
:width="width"
|
|
175
|
-
style="
|
|
175
|
+
style="top: 90px; right: 55px"
|
|
176
|
+
z-index="1"
|
|
176
177
|
>
|
|
177
178
|
<div
|
|
178
179
|
class="pa-0 overflow-hidden position-relative"
|
|
@@ -61,8 +61,8 @@ onUnmounted(() => {
|
|
|
61
61
|
height: 100vh;
|
|
62
62
|
background: rgba(0, 0, 0, 0.45);
|
|
63
63
|
backdrop-filter: blur(10px);
|
|
64
|
-
z-index: 2400;
|
|
65
64
|
pointer-events: auto;
|
|
65
|
+
z-index: 3;
|
|
66
66
|
"
|
|
67
67
|
>
|
|
68
68
|
<div
|
|
@@ -73,7 +73,7 @@ onUnmounted(() => {
|
|
|
73
73
|
background-size: 40px 40px;
|
|
74
74
|
background-position: center;
|
|
75
75
|
pointer-events: none;
|
|
76
|
-
z-index:
|
|
76
|
+
z-index: 0;
|
|
77
77
|
"
|
|
78
78
|
/>
|
|
79
79
|
|
|
@@ -123,7 +123,8 @@ onMounted(async () => {
|
|
|
123
123
|
<slot name="ui"></slot>
|
|
124
124
|
<v-col
|
|
125
125
|
ref="viewer"
|
|
126
|
-
style="overflow: hidden; position: relative;
|
|
126
|
+
style="overflow: hidden; position: relative; height: 100%; width: 100%"
|
|
127
|
+
z-index="0"
|
|
127
128
|
class="pa-0"
|
|
128
129
|
@pointerup.capture="get_x_y"
|
|
129
130
|
@keydown.esc="viewerStore.toggle_picking_mode(false)"
|
|
@@ -135,7 +136,7 @@ onMounted(async () => {
|
|
|
135
136
|
<style scoped>
|
|
136
137
|
.list {
|
|
137
138
|
position: absolute;
|
|
138
|
-
z-index:
|
|
139
|
+
z-index: 1;
|
|
139
140
|
left: 0;
|
|
140
141
|
top: 0;
|
|
141
142
|
background-color: transparent;
|
|
@@ -74,7 +74,8 @@ function onCenterClick(event) {
|
|
|
74
74
|
icon
|
|
75
75
|
variant="outlined"
|
|
76
76
|
class="central-selector-btn elevation-6"
|
|
77
|
-
style="width: 52px; height: 52px
|
|
77
|
+
style="width: 52px; height: 52px"
|
|
78
|
+
z-index="1"
|
|
78
79
|
:style="computedItemStyles"
|
|
79
80
|
@mousedown="onMouseDown"
|
|
80
81
|
@mouseup="onMouseUp"
|
|
@@ -304,7 +304,7 @@ function onVerticalResizeStart(event, index) {
|
|
|
304
304
|
<style scoped>
|
|
305
305
|
.treeview-layout {
|
|
306
306
|
position: absolute;
|
|
307
|
-
z-index:
|
|
307
|
+
z-index: 1;
|
|
308
308
|
left: 0;
|
|
309
309
|
top: 0;
|
|
310
310
|
height: calc(100vh - 100px);
|
|
@@ -414,7 +414,7 @@ function onVerticalResizeStart(event, index) {
|
|
|
414
414
|
position: relative;
|
|
415
415
|
cursor: ns-resize;
|
|
416
416
|
background-color: transparent;
|
|
417
|
-
z-index:
|
|
417
|
+
z-index: 1;
|
|
418
418
|
}
|
|
419
419
|
|
|
420
420
|
.v-split-resizer::after {
|
|
@@ -442,7 +442,7 @@ function onVerticalResizeStart(event, index) {
|
|
|
442
442
|
width: 8px;
|
|
443
443
|
height: 100%;
|
|
444
444
|
cursor: ew-resize;
|
|
445
|
-
z-index:
|
|
445
|
+
z-index: 2;
|
|
446
446
|
}
|
|
447
447
|
|
|
448
448
|
.total-resizer:hover {
|
package/package.json
CHANGED