@abi-software/mapintegratedvuer 1.17.2 → 1.17.3-simulation.1
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/{ConnectivityGraph-BL4B9GZX.js → ConnectivityGraph-9pXPgFJR.js} +2 -2
- package/dist/{ContentMixin-Djmb_gqk.js → ContentMixin-DIqgKIz6.js} +279 -536
- package/dist/Flatmap-D7GVPV7o.js +103422 -0
- package/dist/{Iframe-ByYxT4Yq.js → Iframe-CCEA3d9c.js} +2 -2
- package/dist/{MultiFlatmap-DSkdlRiS.js → MultiFlatmap-Cuke1uNp.js} +3 -3
- package/dist/{Plot-ymkHVq_A.js → Plot-B4oTBVAT.js} +2 -2
- package/dist/{Scaffold-bw7posKm.js → Scaffold-Czz8X5kL.js} +79 -53
- package/dist/Simulation-BKmz8zwm.js +107 -0
- package/dist/{index-CwfUgFL1.js → index-_b4VBGHk.js} +30002 -25408
- package/dist/mapintegratedvuer.js +1 -1
- package/dist/mapintegratedvuer.umd.cjs +4291 -229
- package/dist/style-CM86xE3J.js +119 -0
- package/dist/style.css +1 -1
- package/package.json +10 -5
- package/src/App.vue +285 -258
- package/src/assets/styles.scss +1 -1
- package/src/components/ContextCard.vue +0 -1
- package/src/components/DummyRouteComponent.vue +1 -0
- package/src/components/EventBus.ts +13 -0
- package/src/components/FloatingWindow.vue +142 -0
- package/src/components/MapContent.vue +9 -4
- package/src/components/PlotComponent.vue +56 -0
- package/src/components/SplitDialog.vue +1 -6
- package/src/components/SplitFlow.vue +504 -444
- package/src/components/scripts/utilities.js +1 -1
- package/src/components/viewers/Flatmap.vue +166 -83
- package/src/components/viewers/Simulation.vue +118 -11
- package/src/components.d.ts +3 -0
- package/src/main.js +9 -3
- package/src/mixins/ContentMixin.js +467 -406
- package/src/mixins/DynamicMarkerMixin.js +50 -17
- package/src/services/mapping.js +69 -0
- package/src/services/testData.js +71 -0
- package/src/stores/entries.js +1 -1
- package/src/stores/mapping.js +29 -0
- package/src/stores/settings.js +4 -0
- package/src/stores/simulationPlotStore.js +124 -0
- package/src/stores/splitFlow.js +425 -352
- package/src/types/simulation.js +18 -0
- package/dist/Flatmap-uPEQNDkK.js +0 -202
- package/dist/Simulation-C_gdqDes.js +0 -28
- package/dist/style-Czqe2bTf.js +0 -57
- package/src/components/EventBus.js +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abi-software/mapintegratedvuer",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.3-simulation.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"serve": "vite --host --force",
|
|
@@ -52,21 +52,26 @@
|
|
|
52
52
|
"*.js"
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@abi-software/flatmapvuer": "1.13.1",
|
|
56
|
-
"@abi-software/map-side-bar": "2.14.1",
|
|
55
|
+
"@abi-software/flatmapvuer": "1.13.1-simulation.5",
|
|
56
|
+
"@abi-software/map-side-bar": "2.14.1-simulation.8",
|
|
57
57
|
"@abi-software/map-utilities": "1.8.1",
|
|
58
58
|
"@abi-software/plotvuer": "1.0.7",
|
|
59
|
-
"@abi-software/scaffoldvuer": "1.
|
|
60
|
-
"@abi-software/simulationvuer": "3.0
|
|
59
|
+
"@abi-software/scaffoldvuer": "1.15.1",
|
|
60
|
+
"@abi-software/simulationvuer": "3.1.0",
|
|
61
61
|
"@abi-software/sparc-annotation": "0.3.2",
|
|
62
62
|
"@abi-software/svg-sprite": "1.0.4",
|
|
63
63
|
"@element-plus/icons-vue": "^2.3.1",
|
|
64
64
|
"@vitejs/plugin-vue": "^4.6.2",
|
|
65
|
+
"@vueuse/core": "^14.1.0",
|
|
65
66
|
"css-element-queries": "^1.2.3",
|
|
66
67
|
"element-plus": "2.8.4",
|
|
68
|
+
"jsonschema": "^1.5.0",
|
|
67
69
|
"marked": "^4.3.0",
|
|
70
|
+
"mathjs": "^15.1.0",
|
|
68
71
|
"mitt": "^3.0.1",
|
|
69
72
|
"pinia": "^2.1.7",
|
|
73
|
+
"plotly.js-dist-min": "2.35.3",
|
|
74
|
+
"read-excel-file": "^6.0.1",
|
|
70
75
|
"splitpanes": "^3.1.5",
|
|
71
76
|
"unplugin-vue-components": "^0.26.0",
|
|
72
77
|
"vue": "^3.4.21",
|