@abi-software/mapintegratedvuer 1.12.3 → 1.12.5
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/dist/{ContentMixin-VMqzviO6.js → ContentMixin-XThMnwN-.js} +1 -1
- package/dist/{Flatmap-DyoEGFLl.js → Flatmap-B6_dZU5G.js} +3 -3
- package/dist/{Iframe-6hjlklF3.js → Iframe-RfH8qEW9.js} +2 -2
- package/dist/{MultiFlatmap-Bzx6YjEX.js → MultiFlatmap-jXbN0p2D.js} +3 -3
- package/dist/{Plot-oBY3hkMV.js → Plot-_4H8SF2m.js} +2 -2
- package/dist/{Scaffold-BD8f28dq.js → Scaffold-DN3DRmcm.js} +2 -2
- package/dist/{Simulation-B3PxP7QN.js → Simulation-CVlV7n8p.js} +2 -2
- package/dist/{index-DdxLquWS.js → index-B_Swzf2X.js} +18 -19
- package/dist/mapintegratedvuer.js +1 -1
- package/dist/mapintegratedvuer.umd.cjs +8 -8
- package/dist/{style-B2GyuExH.js → style-ySL9_UYl.js} +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/src/components/ContextCard.vue +4 -1
- package/src/components/MapContent.vue +9 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abi-software/mapintegratedvuer",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.5",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"serve": "vite --host --force",
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"*.js"
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@abi-software/flatmapvuer": "1.11.
|
|
56
|
-
"@abi-software/map-side-bar": "2.10.
|
|
55
|
+
"@abi-software/flatmapvuer": "1.11.3",
|
|
56
|
+
"@abi-software/map-side-bar": "2.10.4",
|
|
57
57
|
"@abi-software/map-utilities": "1.7.2",
|
|
58
58
|
"@abi-software/plotvuer": "1.0.5",
|
|
59
59
|
"@abi-software/scaffoldvuer": "1.11.3",
|
|
@@ -633,10 +633,13 @@ export default {
|
|
|
633
633
|
margin-top: 16px;
|
|
634
634
|
}
|
|
635
635
|
|
|
636
|
-
.
|
|
636
|
+
.context-card-container {
|
|
637
637
|
a {
|
|
638
638
|
color: #8300BF;
|
|
639
639
|
}
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.source-data-list {
|
|
640
643
|
span {
|
|
641
644
|
color: #8300BF;
|
|
642
645
|
text-decoration: underline;
|
|
@@ -259,7 +259,9 @@ export default {
|
|
|
259
259
|
region: state.region,
|
|
260
260
|
resource: state.url,
|
|
261
261
|
state: state.state,
|
|
262
|
-
viewUrl: state.viewUrl
|
|
262
|
+
viewUrl: state.viewUrl,
|
|
263
|
+
discoverId: state.dataset_id,
|
|
264
|
+
version: state.dataset_version,
|
|
263
265
|
};
|
|
264
266
|
if (state.isBodyScaffold) {
|
|
265
267
|
const data = await getBodyScaffoldInfo(this.options.sparcApi, state.label);
|
|
@@ -280,7 +282,9 @@ export default {
|
|
|
280
282
|
type: state.type,
|
|
281
283
|
resource: state.resource,
|
|
282
284
|
state: state.state,
|
|
283
|
-
label: state.label
|
|
285
|
+
label: state.label,
|
|
286
|
+
discoverId: state.dataset_id,
|
|
287
|
+
version: state.dataset_version,
|
|
284
288
|
};
|
|
285
289
|
this.$refs.flow.createNewEntry(newView);
|
|
286
290
|
} else {
|
|
@@ -326,7 +330,9 @@ export default {
|
|
|
326
330
|
type: state.type,
|
|
327
331
|
resource: state.resource,
|
|
328
332
|
state: state.state,
|
|
329
|
-
label: state.label
|
|
333
|
+
label: state.label,
|
|
334
|
+
discoverId: state.dataset_id,
|
|
335
|
+
version: state.dataset_version,
|
|
330
336
|
};
|
|
331
337
|
this.$refs.flow.createNewEntry(newView);
|
|
332
338
|
}
|