@eodash/eodash 5.0.0-alpha.2.11 → 5.0.0-alpha.2.12

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.
Files changed (30) hide show
  1. package/dist/client/{DashboardLayout-D5c2wAGC.js → DashboardLayout-g4rqjeWc.js} +2 -2
  2. package/dist/client/{DynamicWebComponent-CBuMCUIj.js → DynamicWebComponent-BKV7nbud.js} +1 -1
  3. package/dist/client/{EodashDatePicker-D0qdMMTE.js → EodashDatePicker-D4zsy9eq.js} +4 -4
  4. package/dist/client/{EodashItemFilter-CTRnGRRS.js → EodashItemFilter-CRA5Ksjy.js} +1 -1
  5. package/dist/client/{EodashLayerControl-Bpm0BwcW.js → EodashLayerControl-CcFkORFA.js} +777 -776
  6. package/dist/client/{EodashMap-DaMtQefq.js → EodashMap-Bq6kJxfa.js} +4 -4
  7. package/dist/client/{EodashMapBtns-B5z8h8mr.js → EodashMapBtns-Tzefzyf2.js} +2 -2
  8. package/dist/client/{ExportState-Bp3n6gba.js → ExportState-CbK0FtDG.js} +6 -6
  9. package/dist/client/{Footer-BROOTKhV.js → Footer-BrNqLnRu.js} +1 -1
  10. package/dist/client/{Header-C_fKVTsg.js → Header-CbTE-BoI.js} +4 -4
  11. package/dist/client/{IframeWrapper-32Q3DBYr.js → IframeWrapper-Ph5bZpJZ.js} +1 -1
  12. package/dist/client/{MobileLayout-TVGrYpNT.js → MobileLayout-kdgmpNhM.js} +6 -6
  13. package/dist/client/{PopUp-BJzmeeKG.js → PopUp-BWbFe1C1.js} +3 -3
  14. package/dist/client/{VImg-BT4Vb0UT.js → VImg-CzQmrZjo.js} +2 -2
  15. package/dist/client/{VMain-BDVUXNEk.js → VMain-DfQqCpW9.js} +2 -2
  16. package/dist/client/{VOverlay-Ck_4Lxcb.js → VOverlay-sx4v7gXf.js} +3 -3
  17. package/dist/client/{WidgetsContainer-DjjX_n1U.js → WidgetsContainer-BrWo2pW8.js} +1 -1
  18. package/dist/client/{asWebComponent-wn9bbgx9.js → asWebComponent-CVFLR8Hh.js} +6 -6
  19. package/dist/client/{decoder-Cth6J7EK-CLlwAswr.js → decoder-Cth6J7EK-DlG9ScOz.js} +1 -1
  20. package/dist/client/eo-dash.js +1 -1
  21. package/dist/client/{forwardRefs--PLRH8zp.js → forwardRefs-BOAfCdT0.js} +1 -1
  22. package/dist/client/{helpers-CoqJPYdE.js → helpers-BjdrMtvO.js} +1 -1
  23. package/dist/client/{index-Dt0NRXIq.js → index-Ct9AYlRj.js} +1 -1
  24. package/dist/client/{lerc-BgbQqdFI-CCpDWUne.js → lerc-BgbQqdFI-B1NkI4BO.js} +1 -1
  25. package/dist/client/{ssrBoot-DjZDIkG_.js → ssrBoot-BfIptj2L.js} +1 -1
  26. package/dist/client/style.css +1 -1
  27. package/dist/client/{transition-C8OQt_kp.js → transition-YJj28Lgx.js} +1 -1
  28. package/package.json +1 -1
  29. package/widgets/EodashLayerControl.vue +3 -1
  30. package/widgets/ExportState.vue +3 -2
@@ -1,4 +1,4 @@
1
- import { p as m, ay as b, d, bh as l, ab as u } from "./asWebComponent-wn9bbgx9.js";
1
+ import { p as m, ay as b, d, bh as l, ab as u } from "./asWebComponent-CVFLR8Hh.js";
2
2
  const j = m({
3
3
  transition: {
4
4
  type: [Boolean, String, Object],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eodash/eodash",
3
- "version": "5.0.0-alpha.2.11",
3
+ "version": "5.0.0-alpha.2.12",
4
4
  "type": "module",
5
5
  "types": "./core/client/types.d.ts",
6
6
  "files": [
@@ -1,5 +1,7 @@
1
1
  <template>
2
- <eox-layercontrol ref="eoxLayercontrol" class="pa-4" />
2
+ <span class="d-flex flex-column fill-height overflow-auto pa-4">
3
+ <eox-layercontrol ref="eoxLayercontrol" />
4
+ </span>
3
5
  </template>
4
6
  <script setup>
5
7
  import "@eox/layercontrol";
@@ -88,7 +88,7 @@ const copyBtns = [
88
88
 
89
89
  const mapStepCode = computed(() => {
90
90
  const [x, y, z] = mapPosition.value;
91
- const preTag = "### <!--{ layers=";
91
+ const preTag = "### <!" + "--{ layers=";
92
92
  const endTag = `zoom="${z}" center=[${[x, y]}] animationOptions={duration:500}}-->
93
93
  #### Tour step title
94
94
  Text describing the current step of the tour and why it is interesting what the map shows currently
@@ -98,7 +98,8 @@ Text describing the current step of the tour and why it is interesting what the
98
98
  const mapEntryCode = computed(() => {
99
99
  const [x, y, z] = mapPosition.value;
100
100
  const preTag =
101
- '## Map Example <!--{as="eox-map" style="width: 100%; height: 500px;" layers=';
101
+ "## Map Example <!" +
102
+ '--{as="eox-map" style="width: 100%; height: 500px;" layers=';
102
103
  const endTag = `zoom="${z}" center=[${[x, y]}] }-->`;
103
104
  return `${preTag}'${JSON.stringify(props.getLayers())}' ${endTag}`;
104
105
  });