@abi-software/mapintegratedvuer 1.16.2 → 1.16.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abi-software/mapintegratedvuer",
3
- "version": "1.16.2",
3
+ "version": "1.16.3",
4
4
  "license": "Apache-2.0",
5
5
  "scripts": {
6
6
  "serve": "vite --host --force",
@@ -53,7 +53,7 @@
53
53
  ],
54
54
  "dependencies": {
55
55
  "@abi-software/flatmapvuer": "1.12.2",
56
- "@abi-software/map-side-bar": "^2.12.4",
56
+ "@abi-software/map-side-bar": "2.13.0",
57
57
  "@abi-software/map-utilities": "1.7.7",
58
58
  "@abi-software/plotvuer": "1.0.7",
59
59
  "@abi-software/scaffoldvuer": "1.13.1-beta.2",
package/src/App.vue CHANGED
@@ -174,7 +174,6 @@ export default {
174
174
  algoliaId: import.meta.env.VITE_ALGOLIA_ID,
175
175
  pennsieveApi: import.meta.env.VITE_PENNSIEVE_API_LOCATION,
176
176
  flatmapAPI: this.$route.query.flatmapserver ? this.$route.query.flatmapserver : import.meta.env.VITE_FLATMAPAPI_LOCATION,
177
- nlLinkPrefix: import.meta.env.VITE_NL_LINK_PREFIX,
178
177
  rootUrl: import.meta.env.VITE_ROOT_URL,
179
178
  }
180
179
  }
@@ -148,7 +148,6 @@ export default {
148
148
  ALGOLIA_KEY: this.settingsStore.algoliaKey,
149
149
  ALGOLIA_ID: this.settingsStore.algoliaId,
150
150
  PENNSIEVE_API_LOCATION: this.settingsStore.pennsieveApi,
151
- NL_LINK_PREFIX: this.settingsStore.nlLinkPrefix,
152
151
  ROOT_URL: this.settingsStore.rootUrl,
153
152
  };
154
153
  },
@@ -173,9 +173,7 @@ export default {
173
173
  ...mapStores(useEntriesStore, useSplitFlowStore),
174
174
  viewerType() {
175
175
  switch (this.entry.type) {
176
- case "Biolucida":
177
176
  case "Iframe":
178
- case "Segmentation":
179
177
  return 'Iframe';
180
178
  default:
181
179
  return this.entry.type;
@@ -406,7 +406,6 @@ export default {
406
406
  this.options.algoliaId ? this.settingsStore.updateAlgoliaId(this.options.algoliaId) : null;
407
407
  this.options.pennsieveApi ? this.settingsStore.updatePennsieveApi(this.options.pennsieveApi) : null;
408
408
  this.options.flatmapAPI ? this.settingsStore.updateFlatmapAPI(this.options.flatmapAPI) : null;
409
- this.options.nlLinkPrefix ? this.settingsStore.updateNLLinkPrefix(this.options.nlLinkPrefix) : null;
410
409
  this.options.rootUrl ? this.settingsStore.updateRootUrl(this.options.rootUrl) : null;
411
410
  }
412
411
  this.settingsStore.updateAllClosable(this.allClosable);
@@ -1026,7 +1026,6 @@ export default {
1026
1026
  ALGOLIA_KEY: this.settingsStore.algoliaKey,
1027
1027
  ALGOLIA_ID: this.settingsStore.algoliaId,
1028
1028
  PENNSIEVE_API_LOCATION: this.settingsStore.pennsieveApi,
1029
- NL_LINK_PREFIX: this.settingsStore.nlLinkPrefix,
1030
1029
  ROOT_URL: this.settingsStore.rootUrl,
1031
1030
  FLATMAPAPI_LOCATION: this.settingsStore.flatmapAPI,
1032
1031
  };
@@ -12,7 +12,6 @@ export const useSettingsStore = defineStore('settings', {
12
12
  algoliaId: undefined,
13
13
  pennsieveApi: undefined,
14
14
  flatmapAPI: undefined,
15
- nlLinkPrefix: undefined,
16
15
  mapManager: undefined,
17
16
  rootUrl: undefined,
18
17
  facets: { species: [], gender: [], organ: [] },
@@ -114,9 +113,6 @@ export const useSettingsStore = defineStore('settings', {
114
113
  updateMapManager(mapManager) {
115
114
  this.mapManager = mapManager;
116
115
  },
117
- updateNLLinkPrefix(nlLinkPrefix) {
118
- this.nlLinkPrefix = nlLinkPrefix;
119
- },
120
116
  updateRootUrl(rootUrl) {
121
117
  this.rootUrl = rootUrl;
122
118
  },