@eodash/eodash 5.1.0 → 5.2.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.
Files changed (65) hide show
  1. package/core/client/components/DashboardLayout.vue +1 -1
  2. package/core/client/components/EodashOverlay.vue +4 -5
  3. package/core/client/components/MobileLayout.vue +42 -21
  4. package/core/client/composables/index.js +1 -1
  5. package/core/client/eodashSTAC/EodashCollection.js +4 -15
  6. package/core/client/eodashSTAC/createLayers.js +30 -0
  7. package/core/client/eodashSTAC/helpers.js +23 -1
  8. package/dist/client/{DashboardLayout-ByVs1DrY.js → DashboardLayout-Dq9Kfe6O.js} +5 -5
  9. package/dist/client/{DynamicWebComponent-C3W7HSQm.js → DynamicWebComponent-DCBMXskE.js} +1 -1
  10. package/dist/client/{EodashDatePicker-BIAf1sMT.js → EodashDatePicker-DtngxU6s.js} +3 -3
  11. package/dist/client/{EodashItemFilter-DPznh8UB.js → EodashItemFilter-ClQebJQt.js} +1 -1
  12. package/dist/client/{EodashLayerControl-Bhxjw4V2.js → EodashLayerControl-BLBds28C.js} +2 -2
  13. package/dist/client/{EodashLayoutSwitcher-C5qTEffW.js → EodashLayoutSwitcher-DQ8SfVDd.js} +3 -3
  14. package/dist/client/EodashMapBtns-B89_YBDw.js +326 -0
  15. package/dist/client/{EodashStacInfo-CSvvF2jI.js → EodashStacInfo-Dt1nF06x.js} +1 -1
  16. package/dist/client/{EodashTools-Cv1SXQ5y.js → EodashTools-DV5ykmWc.js} +4 -4
  17. package/dist/client/{ExportState-D-iuwaad.js → ExportState-B6zZQUmE.js} +4 -5
  18. package/dist/client/{Footer-CyF0zRAk.js → Footer-DNhXs8k6.js} +1 -1
  19. package/dist/client/{Header-CgD8jDKU.js → Header-BjhN5JY4.js} +2 -3
  20. package/dist/client/MobileLayout-JelB6w1G.js +118 -0
  21. package/dist/client/{PopUp-BsYLvWch.js → PopUp-CgpvNr3o.js} +2 -3
  22. package/dist/client/{ProcessList-C2xsLU2_.js → ProcessList-vecpxThi.js} +17 -10
  23. package/dist/client/{VImg-OHe8YTs2.js → VImg-CETuikH2.js} +200 -5
  24. package/dist/client/{VMain-PryTLU4a.js → VMain-Ci9DyaGU.js} +1 -1
  25. package/dist/client/{VTooltip-DZ0fjpB3.js → VTooltip-J4ac48X7.js} +2 -3
  26. package/dist/client/{WidgetsContainer-B9LBadcC.js → WidgetsContainer-CCML4TyV.js} +1 -1
  27. package/dist/client/{asWebComponent-By_7_JjS.js → asWebComponent-ZyEzWOOf.js} +59 -160
  28. package/dist/client/{async-DkSu_u2K.js → async-B7jIrM53.js} +69 -5
  29. package/dist/client/eo-dash.js +1 -1
  30. package/dist/client/{VOverlay-yUn7p-Uf.js → forwardRefs-BQclvjMq.js} +272 -5
  31. package/dist/client/{handling-CgmFXkW6.js → handling-BS24aG1q.js} +20 -5
  32. package/dist/client/{helpers-Dy0Q13tP.js → helpers-wXK7Ywio.js} +24 -2
  33. package/dist/client/{index-skjhlH8u.js → index-4UCzZi8B.js} +5 -5
  34. package/dist/client/{index-Dqj4tbx2.js → index-9KR-G20t.js} +2 -2
  35. package/dist/client/{index-Ch_HchK3.js → index-B2XpdgR6.js} +191 -57
  36. package/dist/client/material-symbols-outlined.woff2 +0 -0
  37. package/dist/client/material-symbols-rounded.woff2 +0 -0
  38. package/dist/client/material-symbols-sharp.woff2 +0 -0
  39. package/dist/client/material-symbols-subset.woff2 +0 -0
  40. package/dist/client/templates.js +27 -37
  41. package/dist/client/{transition-C98Yn4Vo.js → transition-yBii4fu6.js} +1 -1
  42. package/dist/node/cli.js +1 -1
  43. package/dist/types/core/client/eodashSTAC/helpers.d.ts +5 -0
  44. package/dist/types/core/client/types.d.ts +1 -1
  45. package/dist/types/templates/compare.d.ts +0 -25
  46. package/dist/types/templates/expert.d.ts +16 -20
  47. package/dist/types/templates/light.d.ts +9 -0
  48. package/dist/types/widgets/{EodashMapBtns.vue.d.ts → EodashMap/EodashMapBtns.vue.d.ts} +4 -0
  49. package/dist/types/widgets/EodashMap/index.vue.d.ts +8 -0
  50. package/dist/types/widgets/EodashProcess/methods/async.d.ts +1 -0
  51. package/package.json +4 -2
  52. package/templates/compare.js +0 -20
  53. package/templates/expert.js +16 -15
  54. package/templates/light.js +10 -1
  55. package/widgets/EodashMap/EodashMapBtns.vue +269 -0
  56. package/widgets/EodashMap/index.vue +252 -37
  57. package/widgets/EodashProcess/ProcessList.vue +13 -1
  58. package/widgets/EodashProcess/methods/async.js +22 -1
  59. package/widgets/EodashProcess/methods/custom-endpoints/chart/veda-endpoint.js +19 -3
  60. package/widgets/EodashProcess/methods/utils.js +45 -1
  61. package/dist/client/EodashMapBtns-WoGq8MuV.js +0 -173
  62. package/dist/client/MobileLayout-EKQ_kpSh.js +0 -1226
  63. package/dist/client/forwardRefs-BXxrv98s.js +0 -272
  64. package/dist/client/index-BuhOHXKv.js +0 -199
  65. package/widgets/EodashMapBtns.vue +0 -155
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <v-main>
2
+ <v-main class="pa-0">
3
3
  <eox-layout
4
4
  :mediaBreakpoints="[0, 960, 1920]"
5
5
  :gap="gap"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="eodash-overlay" v-if="$vuetify.display.mdAndUp">
2
+ <div class="eodash-overlay">
3
3
  <p>
4
4
  <a href="https://github.com/eodash/eodash" target="_blank"
5
5
  >eodash v{{ version }}</a
@@ -41,10 +41,9 @@ const base64Logo = btoa(eoxLogo);
41
41
  z-index: 9999;
42
42
  pointer-events: none;
43
43
  p {
44
- position: absolute;
45
- bottom: -4px;
46
- left: 95px;
47
- transform: translate(-50%, -50%);
44
+ position: fixed;
45
+ bottom: 6px;
46
+ left: 24px;
48
47
  color: rgba(var(--v-theme-on-secondary), 1);
49
48
  }
50
49
  a {
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <v-main class="overflow-hidden">
2
+ <v-main class="overflow-hidden pa-0">
3
3
  <Suspense suspensible>
4
4
  <component
5
5
  id="bg-widget"
@@ -18,9 +18,17 @@
18
18
  class="pa-2 panel bg-surface"
19
19
  >
20
20
  <div class="d-flex py-2 justify-end align-end">
21
- <v-btn icon variant="text" class="close-btn" @click="activeIdx = -1"
22
- >&#x2715;</v-btn
21
+ <button
22
+ class="circle small transparent close-btn"
23
+ @click="activeIdx = -1"
23
24
  >
25
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
26
+ <title>close</title>
27
+ <path
28
+ d="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z"
29
+ />
30
+ </svg>
31
+ </button>
24
32
  </div>
25
33
  <Suspense suspensible>
26
34
  <div
@@ -37,20 +45,17 @@
37
45
  </div>
38
46
  </template>
39
47
 
40
- <v-tabs
41
- ref="tabs"
42
- align-tabs="center"
43
- bg-color="surface"
44
- class="tabs"
45
- show-arrows
46
- v-model="activeIdx"
47
- >
48
+ <nav class="tabbed tabs">
48
49
  <template v-for="(importedWidget, idx) in importedWidgets" :key="idx">
49
- <v-tab v-if="importedWidget.value.component" :value="idx">
50
- {{ importedWidget.value.title }}
51
- </v-tab>
50
+ <a
51
+ v-if="importedWidget.value.component"
52
+ :class="{ active: activeIdx === idx }"
53
+ @click="activeIdx = activeIdx === idx ? -1 : idx"
54
+ >
55
+ <span>{{ importedWidget.value.title }}</span>
56
+ </a>
52
57
  </template>
53
- </v-tabs>
58
+ </nav>
54
59
  </v-main>
55
60
  </template>
56
61
  <script setup>
@@ -63,8 +68,6 @@ const { mainRect } = useLayout();
63
68
 
64
69
  const activeIdx = ref(-1);
65
70
 
66
- /** @type {import("vue").Ref<import("vuetify/components").VTabs | null>} */
67
- const tabs = ref(null);
68
71
  const tabsHeightFromBtm = ref("");
69
72
  const mainRectTopPx = ref("");
70
73
  const mainRectBtmPx = ref("");
@@ -72,11 +75,22 @@ const mainRectBtmPx = ref("");
72
75
  onMounted(() => {
73
76
  mainRectTopPx.value = mainRect.value.top + "px";
74
77
  mainRectBtmPx.value = (mainRect.value.bottom || 48) + "px";
75
- tabsHeightFromBtm.value =
76
- mainRect.value.bottom + (tabs.value?.$el?.clientHeight ?? 48) + "px";
78
+ tabsHeightFromBtm.value = mainRect.value.bottom + 48 + 32 + "px"; // 48px nav height + 32px bottom offset
77
79
  });
78
80
  </script>
79
81
  <style scoped>
82
+ @import url("@eox/ui/style.css");
83
+
84
+ #bg-widget {
85
+ position: absolute;
86
+ top: 0;
87
+ left: 0;
88
+ right: 0;
89
+ bottom: 0;
90
+ width: 100%;
91
+ height: 100%;
92
+ }
93
+
80
94
  .panel {
81
95
  bottom: v-bind("tabsHeightFromBtm");
82
96
  top: v-bind("mainRectTopPx");
@@ -97,9 +111,16 @@ onMounted(() => {
97
111
  }
98
112
 
99
113
  .tabs {
100
- bottom: v-bind("mainRectBtmPx");
101
- position: relative;
114
+ position: fixed;
115
+ bottom: 32px;
116
+ left: 12px;
117
+ right: 12px;
118
+ width: calc(100% - 24px);
119
+ height: 48px;
102
120
  z-index: 10;
121
+ background: white;
122
+ border-radius: 24px;
123
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
103
124
  }
104
125
  :deep(.bg-surface) {
105
126
  backdrop-filter: blur(10px) !important;
@@ -384,7 +384,7 @@ export const useEmitLayersUpdate = async (event, mapEl, layers) => {
384
384
  return;
385
385
  }
386
386
 
387
- dl.getLayers().once("change", async () => {
387
+ mapEl.map.once("loadend", async () => {
388
388
  await emit();
389
389
  res(true);
390
390
  });
@@ -9,6 +9,7 @@ import {
9
9
  generateFeatures,
10
10
  getDatetimeProperty,
11
11
  replaceLayer,
12
+ extractLayerLegend,
12
13
  } from "./helpers";
13
14
  import {
14
15
  getLayers,
@@ -184,20 +185,7 @@ export class EodashCollection {
184
185
 
185
186
  if (isSupported) {
186
187
  // Checking for potential legend asset
187
- let extraProperties = null;
188
- if (this.#collectionStac?.assets?.legend?.href) {
189
- extraProperties = {
190
- description: `<div style="width: 100%">
191
- <img src="${this.#collectionStac.assets.legend.href}" style="max-height:70px; margin-top:-15px; margin-bottom:-20px;" />
192
- </div>`,
193
- };
194
- }
195
- // Check if collection has eox:colorlegend definition, if yes overwrite legend description
196
- if (this.#collectionStac && this.#collectionStac["eox:colorlegend"]) {
197
- extraProperties = {
198
- layerLegend: this.#collectionStac["eox:colorlegend"],
199
- };
200
- }
188
+ let extraProperties = extractLayerLegend(this.#collectionStac);
201
189
  extraProperties = {
202
190
  ...extraProperties,
203
191
  ...(this.color && { color: this.color }),
@@ -212,7 +200,6 @@ export class EodashCollection {
212
200
  );
213
201
 
214
202
  jsonArray.push(
215
- ...links,
216
203
  ...(await createLayersFromAssets(
217
204
  this.#collectionStac?.id ?? "",
218
205
  title || this.#collectionStac?.title || item.id,
@@ -223,6 +210,8 @@ export class EodashCollection {
223
210
  layerDatetime,
224
211
  extraProperties,
225
212
  )),
213
+ ...links,
214
+ // We add the links after the assets so they are layered underneath assets
226
215
  );
227
216
  } else {
228
217
  // fallback to STAC
@@ -95,6 +95,36 @@ export async function createLayersFromAssets(
95
95
  url: assets[ast].href,
96
96
  attributions: assets[ast].attribution,
97
97
  });
98
+ } else if (assets[ast]?.type === "application/geodb+json") {
99
+ const responseData = await (await fetch(assets[ast].href)).json();
100
+ if (
101
+ !responseData ||
102
+ !Array.isArray(responseData) ||
103
+ responseData.length === 0
104
+ ) {
105
+ console.error(
106
+ "[eodash] GeoDB response data is not in expected format",
107
+ responseData,
108
+ );
109
+ continue;
110
+ }
111
+ const features = responseData.map((item) => {
112
+ return {
113
+ type: "Feature",
114
+ geometry: item.geometry,
115
+ // we pass the item making sure to remove geometry to avoid duplication
116
+ properties: { ...item, geometry: undefined },
117
+ };
118
+ });
119
+ const geojson = {
120
+ type: "FeatureCollection",
121
+ features: features,
122
+ };
123
+ geoJsonSources.push(
124
+ encodeURI(
125
+ "data:application/json;charset=utf-8," + JSON.stringify(geojson),
126
+ ),
127
+ );
98
128
  }
99
129
  }
100
130
 
@@ -221,7 +221,7 @@ export const extractLayerDatetime = (links, currentStep) => {
221
221
  slider: true,
222
222
  navigation: true,
223
223
  play: false,
224
- displayFormat: "DD.MM.YYYY HH:MM",
224
+ displayFormat: "DD.MM.YYYY HH:mm",
225
225
  };
226
226
  };
227
227
 
@@ -550,3 +550,25 @@ export function getDatetimeProperty(links) {
550
550
  return prop;
551
551
  }
552
552
  }
553
+
554
+ /**
555
+ * @param {import ("stac-ts").StacCollection | undefined | null} collection
556
+ * @returns {object}
557
+ */
558
+ export function extractLayerLegend(collection) {
559
+ let extraProperties = {};
560
+ if (collection?.assets?.legend?.href) {
561
+ extraProperties = {
562
+ description: `<div style="width: 100%">
563
+ <img src="${collection.assets.legend.href}" style="max-height:70px; margin-top:-15px; margin-bottom:-20px;" />
564
+ </div>`,
565
+ };
566
+ }
567
+ // Check if collection has eox:colorlegend definition, if yes overwrite legend description
568
+ if (collection && collection["eox:colorlegend"]) {
569
+ extraProperties = {
570
+ layerLegend: collection["eox:colorlegend"],
571
+ };
572
+ }
573
+ return extraProperties;
574
+ }
@@ -1,9 +1,9 @@
1
1
  import { createBlock, openBlock, withCtx, createElementVNode, unref, createElementBlock, createCommentVNode, normalizeStyle, Suspense, resolveDynamicComponent, mergeProps, Fragment, renderList, Transition } from 'vue';
2
2
  import '@eox/layout';
3
- import { _ as _export_sfc, F as useDefineTemplate } from './asWebComponent-By_7_JjS.js';
4
- import { V as VMain } from './VMain-PryTLU4a.js';
3
+ import { _ as _export_sfc, u as useDefineTemplate } from './asWebComponent-ZyEzWOOf.js';
4
+ import { V as VMain } from './VMain-Ci9DyaGU.js';
5
5
 
6
- const _style_0 = ".panel[data-v-835b2a14]{position:relative;overflow:auto;z-index:1;pointer-events:none}.pointer[data-v-835b2a14]{pointer-events:all}.bg-panel[data-v-835b2a14]{z-index:0;border-radius:0!important}.fade-enter-active[data-v-835b2a14],.fade-leave-active[data-v-835b2a14]{transition:opacity .25s ease}.fade-enter-from[data-v-835b2a14],.fade-leave-to[data-v-835b2a14]{opacity:0}.bg-surface[data-v-835b2a14],.bg-primary[data-v-835b2a14]{backdrop-filter:blur(10px)!important;border-radius:8px;border:none;box-shadow:0 0 1px #18274b38,0 6px 12px -6px #18274b1f,0 8px 24px -4px #18274b14;max-height:100%;overflow:auto;scrollbar-color:rgba(var(--v-theme-on-surface),.2) transparent;scrollbar-width:thin}.bg-surface[data-v-835b2a14]{background-color:rgba(var(--v-theme-surface),var(--v-surface-opacity, .8))!important}.bg-primary[data-v-835b2a14]{background-color:rgba(var(--v-theme-primary),var(--v-primary-opacity, .8))!important}";
6
+ const _style_0 = ".panel[data-v-4126a8ae]{position:relative;overflow:auto;z-index:1;pointer-events:none}.pointer[data-v-4126a8ae]{pointer-events:all}.bg-panel[data-v-4126a8ae]{z-index:0;border-radius:0!important}.fade-enter-active[data-v-4126a8ae],.fade-leave-active[data-v-4126a8ae]{transition:opacity .25s ease}.fade-enter-from[data-v-4126a8ae],.fade-leave-to[data-v-4126a8ae]{opacity:0}.bg-surface[data-v-4126a8ae],.bg-primary[data-v-4126a8ae]{backdrop-filter:blur(10px)!important;border-radius:8px;border:none;box-shadow:0 0 1px #18274b38,0 6px 12px -6px #18274b1f,0 8px 24px -4px #18274b14;max-height:100%;overflow:auto;scrollbar-color:rgba(var(--v-theme-on-surface),.2) transparent;scrollbar-width:thin}.bg-surface[data-v-4126a8ae]{background-color:rgba(var(--v-theme-surface),var(--v-surface-opacity, .8))!important}.bg-primary[data-v-4126a8ae]{background-color:rgba(var(--v-theme-primary),var(--v-primary-opacity, .8))!important}";
7
7
 
8
8
  const _hoisted_1 = ["gap"];
9
9
  const _hoisted_2 = ["id", "h", "w", "x", "y"];
@@ -24,7 +24,7 @@ const layoutStyle = {
24
24
  return (_ctx, _cache) => {
25
25
 
26
26
 
27
- return (openBlock(), createBlock(VMain, null, {
27
+ return (openBlock(), createBlock(VMain, { class: "pa-0" }, {
28
28
  default: withCtx(() => [
29
29
  createElementVNode("eox-layout", {
30
30
  mediaBreakpoints: [0, 960, 1920],
@@ -90,6 +90,6 @@ return (_ctx, _cache) => {
90
90
  }
91
91
 
92
92
  };
93
- const DashboardLayout = /*#__PURE__*/_export_sfc(_sfc_main, [['styles',[_style_0]],['__scopeId',"data-v-835b2a14"]]);
93
+ const DashboardLayout = /*#__PURE__*/_export_sfc(_sfc_main, [['styles',[_style_0]],['__scopeId',"data-v-4126a8ae"]]);
94
94
 
95
95
  export { DashboardLayout as default };
@@ -1,5 +1,5 @@
1
1
  import { withAsyncContext, ref, onMounted, onUnmounted, createElementBlock, openBlock, createBlock, resolveDynamicComponent, mergeProps } from 'vue';
2
- import { Y as useSTAcStore } from './asWebComponent-By_7_JjS.js';
2
+ import { E as useSTAcStore } from './asWebComponent-ZyEzWOOf.js';
3
3
 
4
4
  const _hoisted_1 = { class: "d-flex flex-column fill-height overflow-auto" };
5
5
 
@@ -1,11 +1,11 @@
1
1
  import { useCssVars, ref, useTemplateRef, customRef, computed, reactive, watch, onMounted, createElementBlock, openBlock, createVNode, unref, createSlots, withCtx, createElementVNode, withDirectives, createCommentVNode, createBlock, mergeProps, toHandlers } from 'vue';
2
2
  import { DatePicker } from 'v-calendar';
3
- import { _ as _export_sfc, r as useDisplay, Y as useSTAcStore, Z as useTransparentPanel, V as VBtn, v as VIcon, $ as eodashCollections, a0 as eodashCompareCollections } from './asWebComponent-By_7_JjS.js';
4
- import { x as datetime, k as getDatetimeProperty } from './helpers-Dy0Q13tP.js';
3
+ import { _ as _export_sfc, D as useDisplay, E as useSTAcStore, F as useTransparentPanel, G as VBtn, H as VIcon, I as eodashCollections, J as eodashCompareCollections } from './asWebComponent-ZyEzWOOf.js';
4
+ import { y as datetime, k as getDatetimeProperty } from './helpers-wXK7Ywio.js';
5
5
  import { mdiRayEndArrow, mdiRayStartArrow } from '@mdi/js';
6
6
  import log from 'loglevel';
7
7
  import { storeToRefs } from 'pinia';
8
- import { T as Tooltip } from './index-Dqj4tbx2.js';
8
+ import { T as Tooltip } from './index-9KR-G20t.js';
9
9
 
10
10
  const _style_0 = ".vc-popover-content{--vc-nav-hover-bg: rgba(var(--v-theme-on-surface), .1);--vc-nav-item-active-color: rgb(var(--v-theme-on-secondary));--vc-nav-item-active-bg: rgba(var(--v-theme-secondary), .8);--vc-focus-ring: 0 0 0 2px rgba(var(--v-theme-secondary), .5)}.vc-container{--vc-day-content-hover-bg: rgba(var(--v-theme-on-surface), .2);--vc-focus-ring: 0 0 0 2px rgba(var(--v-theme-secondary), .4);--vc-header-arrow-hover-bg: rgba(var(--v-theme-secondary), .1)}.vc-attr{--vc-accent-600: rgba(var(--v-theme-secondary), .8)}.datePicker{--vc-day-content-hover-bg: red}@media (min-width: 960px){.datePicker{position:absolute;bottom:0;left:0;right:0;margin-inline:auto;width:fit-content}}.vc-day-content{color:#5e5e5e;font-weight:400}.vc-highlight-content-solid{color:#fff!important}.vc-popover-content-wrapper{transform:var(--254ea936)!important}.vc-date-picker-content,.datePicker{backdrop-filter:blur(10px)!important;border-radius:8px;border:none;box-shadow:0 0 1px #18274b38,0 6px 12px -6px #18274b1f,0 8px 24px -4px #18274b14;background-color:rgba(var(--v-theme-surface),var(--v-surface-opacity, .8))!important}.vc-popover-caret.direction-top.align-left{clip-path:polygon(0% 0%,100% 0%,0% 100%,0% 100%)}.vc-bordered{border:none}";
11
11
 
@@ -1,5 +1,5 @@
1
1
  import { computed, ref, createElementBlock, openBlock, mergeProps, unref, createElementVNode, toDisplayString } from 'vue';
2
- import { _ as _export_sfc, Y as useSTAcStore, a5 as isFirstLoad } from './asWebComponent-By_7_JjS.js';
2
+ import { _ as _export_sfc, E as useSTAcStore, O as isFirstLoad } from './asWebComponent-ZyEzWOOf.js';
3
3
  import '@eox/itemfilter';
4
4
 
5
5
  const _style_0 = "eox-itemfilter[data-v-1be0ec61]{--form-flex-direction: row}@media (max-width: 768px){eox-itemfilter[data-v-1be0ec61]{--form-flex-direction: column}}";
@@ -3,8 +3,8 @@ import '@eox/layercontrol';
3
3
  import '@eox/jsonform';
4
4
  import '@eox/timecontrol';
5
5
  import 'color-legend-element';
6
- import { H as mapCompareEl, d as mapEl, I as getColFromLayer } from './helpers-Dy0Q13tP.js';
7
- import { _ as _export_sfc, Y as useSTAcStore, a1 as layerControlFormValueCompare, a2 as layerControlFormValue, a0 as eodashCompareCollections, $ as eodashCollections } from './asWebComponent-By_7_JjS.js';
6
+ import { I as mapCompareEl, d as mapEl, J as getColFromLayer } from './helpers-wXK7Ywio.js';
7
+ import { _ as _export_sfc, E as useSTAcStore, K as layerControlFormValueCompare, L as layerControlFormValue, J as eodashCompareCollections, I as eodashCollections } from './asWebComponent-ZyEzWOOf.js';
8
8
  import { storeToRefs } from 'pinia';
9
9
 
10
10
  const _style_0 = "eox-layercontrol[data-v-88d02d9c]{overflow:auto}";
@@ -1,8 +1,8 @@
1
1
  import { ref, createElementBlock, openBlock, createBlock, unref, withCtx, createVNode, mergeProps } from 'vue';
2
- import { z as activeTemplate } from './helpers-Dy0Q13tP.js';
2
+ import { A as activeTemplate } from './helpers-wXK7Ywio.js';
3
3
  import { mdiViewDashboard } from '@mdi/js';
4
- import { r as useDisplay, Z as useTransparentPanel, v as VIcon } from './asWebComponent-By_7_JjS.js';
5
- import { V as VTooltip } from './VTooltip-DZ0fjpB3.js';
4
+ import { D as useDisplay, F as useTransparentPanel, H as VIcon } from './asWebComponent-ZyEzWOOf.js';
5
+ import { V as VTooltip } from './VTooltip-J4ac48X7.js';
6
6
 
7
7
  const _sfc_main = {
8
8
  __name: 'EodashLayoutSwitcher',