@abi-software/mapintegratedvuer 1.2.0 → 1.2.1-beta.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/{ContentMixin-7nqS_zW1.js → ContentMixin-Ds5gEPQF.js} +67 -58
- package/dist/{Flatmap-uk9sw6PK.js → Flatmap-CdfB1CqK.js} +26 -23
- package/dist/{Iframe-COMbs9Ii.js → Iframe-DbBh33jx.js} +2 -2
- package/dist/{MultiFlatmap-D8xTyhCd.js → MultiFlatmap-B7-QVKdg.js} +39 -36
- package/dist/{Plot-Y-gwjnTx.js → Plot-HvPAJ33l.js} +2 -2
- package/dist/{Scaffold-DmguQx0R.js → Scaffold-D6R3P1_c.js} +16605 -19177
- package/dist/{Simulation-BbreK4xP.js → Simulation-DdQXHwHW.js} +2 -2
- package/dist/{index-pesDJRzH.js → index-8kI96-xR.js} +12577 -11750
- package/dist/index.html +4 -3
- package/dist/mapintegratedvuer.js +1 -1
- package/dist/mapintegratedvuer.umd.cjs +1004 -513
- package/dist/style-Cq_72gg0.js +11944 -0
- package/dist/{flatmapvuer-55QdueQf.js → style-XspK9sVJ.js} +24479 -28061
- package/dist/style.css +1 -1
- package/package.json +14 -8
- package/public/index.html +4 -3
- package/src/App.vue +1 -0
- package/src/components/MapContent.vue +8 -0
- package/src/components/SplitFlow.vue +37 -2
- package/src/components/viewers/Flatmap.vue +8 -2
- package/src/components/viewers/MultiFlatmap.vue +10 -3
- package/src/components/viewers/Scaffold.vue +3 -1
- package/src/mixins/ContentMixin.js +11 -0
- package/src/stores/settings.js +4 -0
- package/vite.bundle-build.js +26 -0
- package/vite.config.js +30 -47
- package/dist/style-BohN0-1G.js +0 -66
package/dist/index.html
CHANGED
@@ -4,14 +4,15 @@
|
|
4
4
|
<meta charset="utf-8">
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
6
6
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
7
|
-
<link rel="icon" href="
|
8
|
-
<title>
|
7
|
+
<link rel="icon" href="favicon.ico">
|
8
|
+
<title>Map Viewer</title>
|
9
9
|
</head>
|
10
10
|
<body>
|
11
11
|
<noscript>
|
12
|
-
<strong>We're sorry but
|
12
|
+
<strong>We're sorry but Map Viewer doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
13
13
|
</noscript>
|
14
14
|
<div id="app"></div>
|
15
|
+
<script type="module" src="/src/main.js"></script>
|
15
16
|
<!-- built files will be auto injected -->
|
16
17
|
</body>
|
17
18
|
</html>
|