@geode/opengeodeweb-front 10.26.0-rc.2 → 10.26.0

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.
@@ -205,6 +205,7 @@ function onVerticalResizeStart(event, index) {
205
205
  :style="activityBarAdaptiveStyles"
206
206
  >
207
207
  <v-btn
208
+ data-testid="toggleObjectsButton"
208
209
  icon="mdi-file-tree-outline"
209
210
  variant="text"
210
211
  :color="mainView ? 'primary' : 'black'"
@@ -157,12 +157,12 @@ export function useDataStyleState() {
157
157
 
158
158
  function getComponentStyle(id_model, id_component) {
159
159
  const key = `${id_model}_${id_component}`;
160
- return componentStyles.value[key] || { coloring: {} };
160
+ return merge({ coloring: {} }, componentStyles.value[key]);
161
161
  }
162
162
 
163
163
  function getModelComponentTypeStyle(id_model, type) {
164
164
  const key = `${id_model}_${type}`;
165
- return modelComponentTypeStyles.value[key] || { coloring: {} };
165
+ return merge({ coloring: {} }, modelComponentTypeStyles.value[key]);
166
166
  }
167
167
 
168
168
  function clear() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geode/opengeodeweb-front",
3
- "version": "10.26.0-rc.2",
3
+ "version": "10.26.0",
4
4
  "description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
5
5
  "homepage": "https://github.com/Geode-solutions/OpenGeodeWeb-Front",
6
6
  "bugs": {
@@ -34,8 +34,8 @@
34
34
  "build": ""
35
35
  },
36
36
  "dependencies": {
37
- "@geode/opengeodeweb-back": "next",
38
- "@geode/opengeodeweb-viewer": "next",
37
+ "@geode/opengeodeweb-back": "latest",
38
+ "@geode/opengeodeweb-viewer": "latest",
39
39
  "@google-cloud/run": "3.2.0",
40
40
  "@kitware/vtk.js": "33.3.0",
41
41
  "@mdi/font": "7.4.47",