@abi-software/mapintegratedvuer 1.16.1 → 1.16.3-simulation.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.
- package/dist/{ContentMixin-C3-OeGQ0.js → ContentMixin-CXBghkG4.js} +224 -455
- package/dist/{style-DobzTuWc.js → DynamicMarkerMixin-C077TWyL.js} +1 -1
- package/dist/Flatmap-CKWEbXwI.js +103454 -0
- package/dist/{Iframe-BDztAIUe.js → Iframe-CImGKtGq.js} +2 -2
- package/dist/{MultiFlatmap-CxvFZqgX.js → MultiFlatmap-jLxHqKwa.js} +15 -15
- package/dist/{Plot-D3Ff5rKZ.js → Plot-CZP1T3yL.js} +2 -2
- package/dist/{Scaffold-BYvsIJcy.js → Scaffold-Z2Jv6mwD.js} +79 -53
- package/dist/Simulation-OtmfB6BF.js +72 -0
- package/dist/{index-CGSECPAp.js → index-Bym6cokq.js} +19683 -20023
- package/dist/mapintegratedvuer.js +1 -1
- package/dist/mapintegratedvuer.umd.cjs +4271 -231
- package/dist/style.css +1 -1
- package/package.json +9 -4
- package/src/App.vue +290 -260
- package/src/assets/styles.scss +1 -1
- package/src/components/ContentBar.vue +0 -1
- package/src/components/ContentVuer.vue +0 -2
- 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 +125 -0
- package/src/components/MapContent.vue +1 -3
- package/src/components/PlotComponent.vue +56 -0
- package/src/components/SplitFlow.vue +470 -439
- package/src/components/scripts/utilities.js +1 -1
- package/src/components/viewers/Flatmap.vue +136 -84
- package/src/components/viewers/MultiFlatmap.vue +1 -1
- package/src/components/viewers/Simulation.vue +65 -15
- package/src/components.d.ts +3 -0
- package/src/main.js +9 -3
- package/src/mixins/ContentMixin.js +419 -390
- package/src/services/mapping.js +69 -0
- package/src/stores/entries.js +1 -1
- package/src/stores/mapping.js +29 -0
- package/src/stores/settings.js +0 -4
- package/src/stores/simulationPlotStore.js +104 -0
- package/src/stores/splitFlow.js +427 -362
- package/src/types/simulation.js +18 -0
- package/dist/Flatmap-BbTHRVGX.js +0 -202
- package/dist/Simulation-By8hjqPs.js +0 -28
- 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.16.
|
|
3
|
+
"version": "1.16.3-simulation.0",
|
|
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.12.
|
|
56
|
-
"@abi-software/map-side-bar": "2.
|
|
55
|
+
"@abi-software/flatmapvuer": "1.12.3-beta.1",
|
|
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",
|
|
60
|
-
"@abi-software/simulationvuer": "3.0.
|
|
60
|
+
"@abi-software/simulationvuer": "3.0.12",
|
|
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",
|