@eodash/eodash 5.0.0-alpha.2.24 → 5.0.0-alpha.2.26

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 (23) hide show
  1. package/core/client/utils/createLayers.js +12 -1
  2. package/dist/client/{DashboardLayout-DXDjBC-p.js → DashboardLayout-E_JzgCH5.js} +2 -2
  3. package/dist/client/{DynamicWebComponent-BJ5-IY6R.js → DynamicWebComponent-C9pVUfT3.js} +1 -1
  4. package/dist/client/{EodashDatePicker-I6KQaEyw.js → EodashDatePicker-CjU8R2ia.js} +3 -3
  5. package/dist/client/{EodashItemFilter-CuX_el88.js → EodashItemFilter-VGQasaBJ.js} +1 -1
  6. package/dist/client/{EodashLayerControl-QXaIbd4a.js → EodashLayerControl-mKfwru42.js} +1 -1
  7. package/dist/client/{EodashMap-PD1dCjMS.js → EodashMap-BpwL82-w.js} +1 -1
  8. package/dist/client/{EodashMapBtns-DzguYarW.js → EodashMapBtns-GNNBdBW9.js} +2 -2
  9. package/dist/client/{ExportState-CzxCA7c4.js → ExportState-ByVuIAQb.js} +4 -4
  10. package/dist/client/{Footer-DEajGQxT.js → Footer-D691KLtK.js} +1 -1
  11. package/dist/client/{Header-B0UJlW9C.js → Header-B8UBQstf.js} +3 -3
  12. package/dist/client/{MobileLayout-9o2BIRae.js → MobileLayout-6bHjYguI.js} +5 -5
  13. package/dist/client/{PopUp-B62ZJOjC.js → PopUp-CdFcnKMY.js} +3 -3
  14. package/dist/client/{VImg-QLk7OX01.js → VImg-fKGJ7xyb.js} +2 -2
  15. package/dist/client/{VMain-B-MLcE-i.js → VMain-Hf5R6yWY.js} +1 -1
  16. package/dist/client/{VOverlay-BvYPb1bZ.js → VOverlay-ClFjEtlD.js} +3 -3
  17. package/dist/client/{WidgetsContainer-DrniIeya.js → WidgetsContainer-XXYJfaPR.js} +1 -1
  18. package/dist/client/{asWebComponent-DMuA5f9s.js → asWebComponent-BsbKnhGV.js} +18 -7
  19. package/dist/client/eo-dash.js +1 -1
  20. package/dist/client/{forwardRefs-D3tZz55-.js → forwardRefs-I2EA3z3_.js} +1 -1
  21. package/dist/client/{index-DsMetMaJ.js → index-B3dnMr8a.js} +1 -1
  22. package/dist/client/{transition-BLWVvxR6.js → transition-DJ9gfiuP.js} +1 -1
  23. package/package.json +1 -1
@@ -96,6 +96,9 @@ export async function createLayersFromAssets(
96
96
  },
97
97
  style,
98
98
  };
99
+ if (extraProperties !== null) {
100
+ layer.properties = { ...layer.properties, ...extraProperties };
101
+ }
99
102
  jsonArray.push(layer);
100
103
  }
101
104
 
@@ -147,6 +150,10 @@ export const createLayersFromLinks = async (
147
150
  viewProjectionCode,
148
151
  );
149
152
  log.debug("WMS Layer added", linkId);
153
+ const tileSize =
154
+ "wms:tilesize" in wmsLink
155
+ ? [wmsLink["wms:tilesize"], wmsLink["wms:tilesize"]]
156
+ : [512, 512];
150
157
  let json = {
151
158
  type: "Tile",
152
159
  properties: {
@@ -159,7 +166,7 @@ export const createLayersFromLinks = async (
159
166
  url: wmsLink.href,
160
167
  projection: linkProjectionCode,
161
168
  tileGrid: {
162
- tileSize: [512, 512],
169
+ tileSize,
163
170
  },
164
171
  params: {
165
172
  LAYERS: wmsLink["wms:layers"],
@@ -167,6 +174,10 @@ export const createLayersFromLinks = async (
167
174
  },
168
175
  },
169
176
  };
177
+ if ("wms:version" in wmsLink) {
178
+ // @ts-expect-error no type for eox-map
179
+ json.source.params["VERSION"] = wmsLink["wms:version"];
180
+ }
170
181
  extractRoles(json.properties, wmsLink);
171
182
  if ("wms:dimensions" in wmsLink) {
172
183
  // Expand all dimensions into the params attribute
@@ -1,7 +1,7 @@
1
1
  import { inject, openBlock, createBlock, withCtx, createElementVNode, unref, createElementBlock, Suspense, resolveDynamicComponent, mergeProps, createCommentVNode, Fragment, renderList, Transition } from 'vue';
2
- import { _ as _export_sfc, F as eodashKey, G as useDefineWidgets } from './asWebComponent-DMuA5f9s.js';
2
+ import { _ as _export_sfc, F as eodashKey, G as useDefineWidgets } from './asWebComponent-BsbKnhGV.js';
3
3
  import '@eox/layout';
4
- import { V as VMain } from './VMain-B-MLcE-i.js';
4
+ import { V as VMain } from './VMain-Hf5R6yWY.js';
5
5
 
6
6
  const _hoisted_1 = ["gap"];
7
7
  const _hoisted_2 = {
@@ -1,5 +1,5 @@
1
1
  import { withAsyncContext, ref, onMounted, onUnmounted, openBlock, createElementBlock, createBlock, resolveDynamicComponent, mergeProps } from 'vue';
2
- import { $ as useSTAcStore } from './asWebComponent-DMuA5f9s.js';
2
+ import { $ as useSTAcStore } from './asWebComponent-BsbKnhGV.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 { computed, ref, mergeProps, createVNode, resolveComponent, render, h, useCssVars, customRef, reactive, watch, onMounted, openBlock, createElementBlock, Fragment, unref, createSlots, withCtx, createElementVNode, toHandlers, withDirectives, createBlock } from 'vue';
2
2
  import { DatePicker } from 'v-calendar';
3
3
  import { storeToRefs } from 'pinia';
4
- import { p as propsFactory, o as omit, g as genericComponent, j as useProxiedModel, Y as getUid, a as useRender, E as isObject, Z as datetime, $ as useSTAcStore, a0 as eodashCollections, a1 as VRow, V as VBtn, y as VIcon } from './asWebComponent-DMuA5f9s.js';
4
+ import { p as propsFactory, o as omit, g as genericComponent, j as useProxiedModel, Y as getUid, a as useRender, E as isObject, Z as datetime, $ as useSTAcStore, a0 as eodashCollections, a1 as VRow, V as VBtn, y as VIcon } from './asWebComponent-BsbKnhGV.js';
5
5
  import { mdiRayEndArrow, mdiRayStartArrow } from '@mdi/js';
6
6
  import log from 'loglevel';
7
- import { m as makeVOverlayProps, V as VOverlay } from './VOverlay-BvYPb1bZ.js';
8
- import { b as useScopeId, f as forwardRefs } from './forwardRefs-D3tZz55-.js';
7
+ import { m as makeVOverlayProps, V as VOverlay } from './VOverlay-ClFjEtlD.js';
8
+ import { b as useScopeId, f as forwardRefs } from './forwardRefs-I2EA3z3_.js';
9
9
 
10
10
  const makeVTooltipProps = propsFactory({
11
11
  id: String,
@@ -1,5 +1,5 @@
1
1
  import { ref, onMounted, openBlock, createElementBlock, mergeProps, createElementVNode, toDisplayString } from 'vue';
2
- import { $ as useSTAcStore } from './asWebComponent-DMuA5f9s.js';
2
+ import { $ as useSTAcStore } from './asWebComponent-BsbKnhGV.js';
3
3
  import '@eox/itemfilter';
4
4
 
5
5
  const _hoisted_1 = {
@@ -3,7 +3,7 @@ import '@eox/layercontrol';
3
3
  import '@eox/jsonform';
4
4
  import '@eox/timecontrol';
5
5
  import 'color-legend-element';
6
- import { $ as useSTAcStore, a2 as mapCompareEl, a3 as mapEl, a4 as eodashCompareCollections, a0 as eodashCollections, a5 as getColFromLayer } from './asWebComponent-DMuA5f9s.js';
6
+ import { $ as useSTAcStore, a2 as mapCompareEl, a3 as mapEl, a4 as eodashCompareCollections, a0 as eodashCollections, a5 as getColFromLayer } from './asWebComponent-BsbKnhGV.js';
7
7
  import { storeToRefs } from 'pinia';
8
8
 
9
9
  const _hoisted_1 = { class: "d-flex flex-column fill-height overflow-auto" };
@@ -1,7 +1,7 @@
1
1
  import { onMounted, onUnmounted, watch, ref, computed, openBlock, createElementBlock, createElementVNode } from 'vue';
2
2
  import '@eox/map';
3
3
  import '@eox/map/dist/eox-map-advanced-layers-and-sources.js';
4
- import { $ as useSTAcStore, a6 as setMapProjFromCol, a7 as EodashCollection, a8 as mapPosition, a3 as mapEl, a2 as mapCompareEl, Z as datetime, a4 as eodashCompareCollections, a0 as eodashCollections } from './asWebComponent-DMuA5f9s.js';
4
+ import { $ as useSTAcStore, a6 as setMapProjFromCol, a7 as EodashCollection, a8 as mapPosition, a3 as mapEl, a2 as mapCompareEl, Z as datetime, a4 as eodashCompareCollections, a0 as eodashCollections } from './asWebComponent-BsbKnhGV.js';
5
5
  import { storeToRefs } from 'pinia';
6
6
  import log from 'loglevel';
7
7
 
@@ -1,7 +1,7 @@
1
1
  import { ref, openBlock, createElementBlock, createBlock, unref, createCommentVNode } from 'vue';
2
- import { _ as _export_sfc, a9 as makePanelTransparent, V as VBtn, aa as availableMapProjection, ab as changeMapProjection } from './asWebComponent-DMuA5f9s.js';
2
+ import { _ as _export_sfc, a9 as makePanelTransparent, V as VBtn, aa as availableMapProjection, ab as changeMapProjection } from './asWebComponent-BsbKnhGV.js';
3
3
  import { mdiMapPlus, mdiEarthBox } from '@mdi/js';
4
- import ExportState from './ExportState-CzxCA7c4.js';
4
+ import ExportState from './ExportState-ByVuIAQb.js';
5
5
 
6
6
  const _sfc_main = {
7
7
  __name: 'EodashMapBtns',
@@ -1,9 +1,9 @@
1
1
  import { createVNode, Fragment, computed, withDirectives, mergeProps, resolveDirective, toRef, mergeModels, useModel, ref, openBlock, createBlock, withCtx, createElementVNode, createTextVNode, toDisplayString, unref, createElementBlock, createCommentVNode, renderList } from 'vue';
2
2
  import { mdiClipboardCheckOutline, mdiContentCopy } from '@mdi/js';
3
- import _sfc_main$1 from './PopUp-B62ZJOjC.js';
4
- import { ac as createSimpleFunctional, g as genericComponent, b as makeComponentProps, D as provideDefaults, a as useRender, p as propsFactory, c as makeTagProps, I as IconValue, L as makeBorderProps, A as makeDensityProps, N as makeRoundedProps, ad as makeSizeProps, d as makeThemeProps, ae as makeVariantProps, e as provideTheme, O as useBorder, af as useVariant, B as useDensity, Q as useRounded, ag as useSize, y as VIcon, R as VDefaultsProvider, ah as genOverlays, J as makeDimensionProps, M as makeElevationProps, ai as makeLoaderProps, aj as makeLocationProps, ak as makePositionProps, al as makeRouterProps, am as Ripple, K as useDimension, P as useElevation, an as useLoader, ao as useLocation, ap as usePosition, aq as useLink, ar as LoaderSlot, u as useTextColor, q as convertToUnit, _ as _export_sfc, as as getLayers, a8 as mapPosition, at as removeUnneededProperties, a1 as VRow, au as VCol, V as VBtn, av as copyToClipBoard } from './asWebComponent-DMuA5f9s.js';
5
- import { a as VExpandTransition } from './index-DsMetMaJ.js';
6
- import { V as VImg } from './VImg-QLk7OX01.js';
3
+ import _sfc_main$1 from './PopUp-CdFcnKMY.js';
4
+ import { ac as createSimpleFunctional, g as genericComponent, b as makeComponentProps, D as provideDefaults, a as useRender, p as propsFactory, c as makeTagProps, I as IconValue, L as makeBorderProps, A as makeDensityProps, N as makeRoundedProps, ad as makeSizeProps, d as makeThemeProps, ae as makeVariantProps, e as provideTheme, O as useBorder, af as useVariant, B as useDensity, Q as useRounded, ag as useSize, y as VIcon, R as VDefaultsProvider, ah as genOverlays, J as makeDimensionProps, M as makeElevationProps, ai as makeLoaderProps, aj as makeLocationProps, ak as makePositionProps, al as makeRouterProps, am as Ripple, K as useDimension, P as useElevation, an as useLoader, ao as useLocation, ap as usePosition, aq as useLink, ar as LoaderSlot, u as useTextColor, q as convertToUnit, _ as _export_sfc, as as getLayers, a8 as mapPosition, at as removeUnneededProperties, a1 as VRow, au as VCol, V as VBtn, av as copyToClipBoard } from './asWebComponent-BsbKnhGV.js';
5
+ import { a as VExpandTransition } from './index-B3dnMr8a.js';
6
+ import { V as VImg } from './VImg-fKGJ7xyb.js';
7
7
 
8
8
  // Styles
9
9
  const VSpacer = createSimpleFunctional('v-spacer', 'div', 'VSpacer');
@@ -1,5 +1,5 @@
1
1
  import { ref, toRef, shallowRef, computed, createVNode, watchEffect, inject, openBlock, createBlock, unref, withCtx, createElementVNode, toDisplayString, createTextVNode } from 'vue';
2
- import { p as propsFactory, L as makeBorderProps, b as makeComponentProps, M as makeElevationProps, U as makeLayoutItemProps, N as makeRoundedProps, c as makeTagProps, d as makeThemeProps, g as genericComponent, e as provideTheme, C as useBackgroundColor, O as useBorder, P as useElevation, Q as useRounded, v as useResizeObserver, W as useToggleScope, a as useRender, q as convertToUnit, X as useLayoutItem, _ as _export_sfc, F as eodashKey, t as useDisplay } from './asWebComponent-DMuA5f9s.js';
2
+ import { p as propsFactory, L as makeBorderProps, b as makeComponentProps, M as makeElevationProps, U as makeLayoutItemProps, N as makeRoundedProps, c as makeTagProps, d as makeThemeProps, g as genericComponent, e as provideTheme, C as useBackgroundColor, O as useBorder, P as useElevation, Q as useRounded, v as useResizeObserver, W as useToggleScope, a as useRender, q as convertToUnit, X as useLayoutItem, _ as _export_sfc, F as eodashKey, t as useDisplay } from './asWebComponent-BsbKnhGV.js';
3
3
 
4
4
  const makeVFooterProps = propsFactory({
5
5
  app: Boolean,
@@ -1,7 +1,7 @@
1
1
  import { createVNode, toRef, shallowRef, computed, ref, watch, onMounted, onBeforeUnmount, mergeProps, watchEffect, inject, openBlock, createBlock, withCtx, createTextVNode, toDisplayString, unref } from 'vue';
2
- import { p as propsFactory, b as makeComponentProps, c as makeTagProps, g as genericComponent, a as useRender, L as makeBorderProps, M as makeElevationProps, N as makeRoundedProps, d as makeThemeProps, C as useBackgroundColor, O as useBorder, P as useElevation, Q as useRounded, e as provideTheme, f as useRtl, D as provideDefaults, R as VDefaultsProvider, q as convertToUnit, S as clamp, T as consoleWarn, U as makeLayoutItemProps, j as useProxiedModel, W as useToggleScope, X as useLayoutItem, _ as _export_sfc, F as eodashKey } from './asWebComponent-DMuA5f9s.js';
3
- import { a as VExpandTransition } from './index-DsMetMaJ.js';
4
- import { V as VImg } from './VImg-QLk7OX01.js';
2
+ import { p as propsFactory, b as makeComponentProps, c as makeTagProps, g as genericComponent, a as useRender, L as makeBorderProps, M as makeElevationProps, N as makeRoundedProps, d as makeThemeProps, C as useBackgroundColor, O as useBorder, P as useElevation, Q as useRounded, e as provideTheme, f as useRtl, D as provideDefaults, R as VDefaultsProvider, q as convertToUnit, S as clamp, T as consoleWarn, U as makeLayoutItemProps, j as useProxiedModel, W as useToggleScope, X as useLayoutItem, _ as _export_sfc, F as eodashKey } from './asWebComponent-BsbKnhGV.js';
3
+ import { a as VExpandTransition } from './index-B3dnMr8a.js';
4
+ import { V as VImg } from './VImg-fKGJ7xyb.js';
5
5
  import { u as useSsrBoot } from './ssrBoot-BP7SYRyC.js';
6
6
 
7
7
  const makeVToolbarTitleProps = propsFactory({
@@ -1,10 +1,10 @@
1
1
  import { ref, computed, createVNode, mergeProps, Fragment, shallowRef, watch, provide, withDirectives, resolveDirective, inject, vShow, nextTick, toRef, useCssVars, onMounted, openBlock, createBlock, withCtx, Suspense, unref, resolveDynamicComponent, createCommentVNode, createElementBlock, renderList, createTextVNode, createElementVNode, toDisplayString } from 'vue';
2
- import { k as keys, p as propsFactory, o as omit, m as makeVBtnProps, g as genericComponent, u as useTextColor, a as useRender, V as VBtn, b as makeComponentProps, c as makeTagProps, d as makeThemeProps, e as provideTheme, f as useRtl, h as useLocale, i as useGroup, j as useProxiedModel, l as makeGroupItemProps, n as useGroupItem, q as convertToUnit, I as IconValue, r as makeDisplayProps, s as makeGroupProps, t as useDisplay, v as useResizeObserver, w as useGoTo, x as IN_BROWSER, y as VIcon, z as focusableChildren, A as makeDensityProps, B as useDensity, C as useBackgroundColor, D as provideDefaults, E as isObject, _ as _export_sfc, F as eodashKey, G as useDefineWidgets, H as useLayout } from './asWebComponent-DMuA5f9s.js';
3
- import { V as VMain } from './VMain-B-MLcE-i.js';
4
- import { f as forwardRefs, a as animate, s as standardEasing, m as makeLazyProps, u as useLazy, b as useScopeId } from './forwardRefs-D3tZz55-.js';
2
+ import { k as keys, p as propsFactory, o as omit, m as makeVBtnProps, g as genericComponent, u as useTextColor, a as useRender, V as VBtn, b as makeComponentProps, c as makeTagProps, d as makeThemeProps, e as provideTheme, f as useRtl, h as useLocale, i as useGroup, j as useProxiedModel, l as makeGroupItemProps, n as useGroupItem, q as convertToUnit, I as IconValue, r as makeDisplayProps, s as makeGroupProps, t as useDisplay, v as useResizeObserver, w as useGoTo, x as IN_BROWSER, y as VIcon, z as focusableChildren, A as makeDensityProps, B as useDensity, C as useBackgroundColor, D as provideDefaults, E as isObject, _ as _export_sfc, F as eodashKey, G as useDefineWidgets, H as useLayout } from './asWebComponent-BsbKnhGV.js';
3
+ import { V as VMain } from './VMain-Hf5R6yWY.js';
4
+ import { f as forwardRefs, a as animate, s as standardEasing, m as makeLazyProps, u as useLazy, b as useScopeId } from './forwardRefs-I2EA3z3_.js';
5
5
  import { u as useSsrBoot } from './ssrBoot-BP7SYRyC.js';
6
- import { M as MaybeTransition } from './transition-BLWVvxR6.js';
7
- import { V as VFadeTransition } from './index-DsMetMaJ.js';
6
+ import { M as MaybeTransition } from './transition-DJ9gfiuP.js';
7
+ import { V as VFadeTransition } from './index-B3dnMr8a.js';
8
8
 
9
9
  // Utilities
10
10
  const handleGesture = wrapper => {
@@ -1,7 +1,7 @@
1
1
  import { createVNode, Transition, mergeProps, ref, watch, nextTick, toRef, mergeModels, useModel, openBlock, createElementBlock, withCtx, createBlock, resolveDynamicComponent, unref, createCommentVNode, renderSlot } from 'vue';
2
- import { g as genericComponent, p as propsFactory, j as useProxiedModel, x as IN_BROWSER, a as useRender, z as focusableChildren, R as VDefaultsProvider, L as makeBorderProps, b as makeComponentProps, J as makeDimensionProps, M as makeElevationProps, aj as makeLocationProps, ak as makePositionProps, N as makeRoundedProps, c as makeTagProps, d as makeThemeProps, e as provideTheme, C as useBackgroundColor, O as useBorder, K as useDimension, P as useElevation, ao as useLocation, ap as usePosition, Q as useRounded, G as useDefineWidgets } from './asWebComponent-DMuA5f9s.js';
3
- import { m as makeVOverlayProps, V as VOverlay } from './VOverlay-BvYPb1bZ.js';
4
- import { a as animate, d as deceleratedEasing, s as standardEasing, c as acceleratedEasing, g as getTargetBox, n as nullifyTransforms, b as useScopeId, f as forwardRefs } from './forwardRefs-D3tZz55-.js';
2
+ import { g as genericComponent, p as propsFactory, j as useProxiedModel, x as IN_BROWSER, a as useRender, z as focusableChildren, R as VDefaultsProvider, L as makeBorderProps, b as makeComponentProps, J as makeDimensionProps, M as makeElevationProps, aj as makeLocationProps, ak as makePositionProps, N as makeRoundedProps, c as makeTagProps, d as makeThemeProps, e as provideTheme, C as useBackgroundColor, O as useBorder, K as useDimension, P as useElevation, ao as useLocation, ap as usePosition, Q as useRounded, G as useDefineWidgets } from './asWebComponent-BsbKnhGV.js';
3
+ import { m as makeVOverlayProps, V as VOverlay } from './VOverlay-ClFjEtlD.js';
4
+ import { a as animate, d as deceleratedEasing, s as standardEasing, c as acceleratedEasing, g as getTargetBox, n as nullifyTransforms, b as useScopeId, f as forwardRefs } from './forwardRefs-I2EA3z3_.js';
5
5
 
6
6
  const makeVDialogTransitionProps = propsFactory({
7
7
  target: [Object, Array]
@@ -1,6 +1,6 @@
1
1
  import { createVNode, computed, toRef, shallowRef, ref, watch, onBeforeMount, nextTick, onBeforeUnmount, withDirectives, mergeProps, Fragment, resolveDirective, vShow } from 'vue';
2
- import { aw as SUPPORTS_INTERSECTION, p as propsFactory, b as makeComponentProps, J as makeDimensionProps, g as genericComponent, K as useDimension, a as useRender, N as makeRoundedProps, C as useBackgroundColor, Q as useRounded, ax as getCurrentInstance, q as convertToUnit } from './asWebComponent-DMuA5f9s.js';
3
- import { m as makeTransitionProps, M as MaybeTransition } from './transition-BLWVvxR6.js';
2
+ import { aw as SUPPORTS_INTERSECTION, p as propsFactory, b as makeComponentProps, J as makeDimensionProps, g as genericComponent, K as useDimension, a as useRender, N as makeRoundedProps, C as useBackgroundColor, Q as useRounded, ax as getCurrentInstance, q as convertToUnit } from './asWebComponent-BsbKnhGV.js';
3
+ import { m as makeTransitionProps, M as MaybeTransition } from './transition-DJ9gfiuP.js';
4
4
 
5
5
  // Utilities
6
6
  function mounted(el, binding) {
@@ -1,5 +1,5 @@
1
1
  import { createVNode } from 'vue';
2
- import { p as propsFactory, b as makeComponentProps, J as makeDimensionProps, c as makeTagProps, g as genericComponent, K as useDimension, H as useLayout, a as useRender } from './asWebComponent-DMuA5f9s.js';
2
+ import { p as propsFactory, b as makeComponentProps, J as makeDimensionProps, c as makeTagProps, g as genericComponent, K as useDimension, H as useLayout, a as useRender } from './asWebComponent-BsbKnhGV.js';
3
3
  import { u as useSsrBoot } from './ssrBoot-BP7SYRyC.js';
4
4
 
5
5
  const makeVMainProps = propsFactory({
@@ -1,7 +1,7 @@
1
1
  import { ref, watch, onScopeDispose, computed, nextTick, watchEffect, effectScope, inject, mergeProps, shallowRef, onMounted, reactive, provide, readonly, toRaw, warn, toRef, onBeforeUnmount, createVNode, Fragment, Teleport, withDirectives, vShow, resolveDirective, Transition } from 'vue';
2
- import { ay as isOn, az as eventName, p as propsFactory, x as IN_BROWSER, W as useToggleScope, aA as destructComputed, aB as parseAnchor, aC as flipSide, aD as flipAlign, aE as flipCorner, aF as consoleError, aG as getAxis, q as convertToUnit, S as clamp, aH as defer, ax as getCurrentInstance, aI as templateRef, aJ as matchesSelector, t as useDisplay, b as makeComponentProps, J as makeDimensionProps, d as makeThemeProps, g as genericComponent, j as useProxiedModel, e as provideTheme, f as useRtl, C as useBackgroundColor, K as useDimension, aK as useRouter, a as useRender, aL as useBackButton } from './asWebComponent-DMuA5f9s.js';
3
- import { g as getTargetBox, B as Box, e as getOverflow, n as nullifyTransforms, m as makeLazyProps, u as useLazy, b as useScopeId, a as animate, s as standardEasing } from './forwardRefs-D3tZz55-.js';
4
- import { m as makeTransitionProps, M as MaybeTransition } from './transition-BLWVvxR6.js';
2
+ import { ay as isOn, az as eventName, p as propsFactory, x as IN_BROWSER, W as useToggleScope, aA as destructComputed, aB as parseAnchor, aC as flipSide, aD as flipAlign, aE as flipCorner, aF as consoleError, aG as getAxis, q as convertToUnit, S as clamp, aH as defer, ax as getCurrentInstance, aI as templateRef, aJ as matchesSelector, t as useDisplay, b as makeComponentProps, J as makeDimensionProps, d as makeThemeProps, g as genericComponent, j as useProxiedModel, e as provideTheme, f as useRtl, C as useBackgroundColor, K as useDimension, aK as useRouter, a as useRender, aL as useBackButton } from './asWebComponent-BsbKnhGV.js';
3
+ import { g as getTargetBox, B as Box, e as getOverflow, n as nullifyTransforms, m as makeLazyProps, u as useLazy, b as useScopeId, a as animate, s as standardEasing } from './forwardRefs-I2EA3z3_.js';
4
+ import { m as makeTransitionProps, M as MaybeTransition } from './transition-DJ9gfiuP.js';
5
5
 
6
6
  // Utilities
7
7
  const handlers = new WeakMap();
@@ -1,5 +1,5 @@
1
1
  import { ref, onMounted, nextTick, openBlock, createElementBlock, Fragment, renderList, unref, createElementVNode, toDisplayString, normalizeStyle, createBlock, resolveDynamicComponent, mergeProps } from 'vue';
2
- import { G as useDefineWidgets, H as useLayout } from './asWebComponent-DMuA5f9s.js';
2
+ import { G as useDefineWidgets, H as useLayout } from './asWebComponent-BsbKnhGV.js';
3
3
  import 'animated-details';
4
4
 
5
5
  const _sfc_main = {
@@ -8027,6 +8027,9 @@ async function createLayersFromAssets(
8027
8027
  },
8028
8028
  style,
8029
8029
  };
8030
+ if (extraProperties !== null) {
8031
+ layer.properties = { ...layer.properties, ...extraProperties };
8032
+ }
8030
8033
  jsonArray.push(layer);
8031
8034
  }
8032
8035
 
@@ -8078,6 +8081,10 @@ const createLayersFromLinks = async (
8078
8081
  viewProjectionCode,
8079
8082
  );
8080
8083
  log.debug("WMS Layer added", linkId);
8084
+ const tileSize =
8085
+ "wms:tilesize" in wmsLink
8086
+ ? [wmsLink["wms:tilesize"], wmsLink["wms:tilesize"]]
8087
+ : [512, 512];
8081
8088
  let json = {
8082
8089
  type: "Tile",
8083
8090
  properties: {
@@ -8090,7 +8097,7 @@ const createLayersFromLinks = async (
8090
8097
  url: wmsLink.href,
8091
8098
  projection: linkProjectionCode,
8092
8099
  tileGrid: {
8093
- tileSize: [512, 512],
8100
+ tileSize,
8094
8101
  },
8095
8102
  params: {
8096
8103
  LAYERS: wmsLink["wms:layers"],
@@ -8098,6 +8105,10 @@ const createLayersFromLinks = async (
8098
8105
  },
8099
8106
  },
8100
8107
  };
8108
+ if ("wms:version" in wmsLink) {
8109
+ // @ts-expect-error no type for eox-map
8110
+ json.source.params["VERSION"] = wmsLink["wms:version"];
8111
+ }
8101
8112
  extractRoles(json.properties, wmsLink);
8102
8113
  if ("wms:dimensions" in wmsLink) {
8103
8114
  // Expand all dimensions into the params attribute
@@ -8911,7 +8922,7 @@ const copyToClipBoard = async (text, showIcon) => {
8911
8922
  const internalWidgets = (() => {
8912
8923
  /** @type {Record<string, () => Promise<import("vue").Component>>} */
8913
8924
  const importMap = {
8914
- .../* #__PURE__ */ Object.assign({"/widgets/EodashDatePicker.vue": () => import('./EodashDatePicker-I6KQaEyw.js'),"/widgets/EodashItemFilter.vue": () => import('./EodashItemFilter-CuX_el88.js'),"/widgets/EodashLayerControl.vue": () => import('./EodashLayerControl-QXaIbd4a.js'),"/widgets/EodashMap.vue": () => import('./EodashMap-PD1dCjMS.js'),"/widgets/EodashMapBtns.vue": () => import('./EodashMapBtns-DzguYarW.js'),"/widgets/ExportState.vue": () => import('./ExportState-CzxCA7c4.js'),"/widgets/PopUp.vue": () => import('./PopUp-B62ZJOjC.js'),"/widgets/WidgetsContainer.vue": () => import('./WidgetsContainer-DrniIeya.js')}),
8925
+ .../* #__PURE__ */ Object.assign({"/widgets/EodashDatePicker.vue": () => import('./EodashDatePicker-CjU8R2ia.js'),"/widgets/EodashItemFilter.vue": () => import('./EodashItemFilter-VGQasaBJ.js'),"/widgets/EodashLayerControl.vue": () => import('./EodashLayerControl-mKfwru42.js'),"/widgets/EodashMap.vue": () => import('./EodashMap-BpwL82-w.js'),"/widgets/EodashMapBtns.vue": () => import('./EodashMapBtns-GNNBdBW9.js'),"/widgets/ExportState.vue": () => import('./ExportState-ByVuIAQb.js'),"/widgets/PopUp.vue": () => import('./PopUp-CdFcnKMY.js'),"/widgets/WidgetsContainer.vue": () => import('./WidgetsContainer-XXYJfaPR.js')}),
8915
8926
  .../* #__PURE__ */ Object.assign({}),
8916
8927
  };
8917
8928
  for (const key in importMap) {
@@ -9020,7 +9031,7 @@ const getWidgetDefinition = (config) => {
9020
9031
 
9021
9032
  case "web-component":
9022
9033
  importedWidget.component = defineAsyncComponent({
9023
- loader: () => import('./DynamicWebComponent-BJ5-IY6R.js'),
9034
+ loader: () => import('./DynamicWebComponent-C9pVUfT3.js'),
9024
9035
  suspensible: true,
9025
9036
  });
9026
9037
  importedWidget.props = reactive(config.widget);
@@ -11371,14 +11382,14 @@ const { loadSTAC } = useSTAcStore();
11371
11382
 
11372
11383
  const { smAndDown } = useDisplay();
11373
11384
  const TemplateComponent = smAndDown.value
11374
- ? defineAsyncComponent(() => import('./MobileLayout-9o2BIRae.js'))
11375
- : defineAsyncComponent(() => import('./DashboardLayout-DXDjBC-p.js'));
11385
+ ? defineAsyncComponent(() => import('./MobileLayout-6bHjYguI.js'))
11386
+ : defineAsyncComponent(() => import('./DashboardLayout-E_JzgCH5.js'));
11376
11387
 
11377
11388
  const HeaderComponent = defineAsyncComponent(
11378
- () => import('./Header-B0UJlW9C.js'),
11389
+ () => import('./Header-B8UBQstf.js'),
11379
11390
  );
11380
11391
  const FooterComponent = defineAsyncComponent(
11381
- () => import('./Footer-DEajGQxT.js'),
11392
+ () => import('./Footer-D691KLtK.js'),
11382
11393
  );
11383
11394
 
11384
11395
  const templateHeight = props.isWebComponent ? "100%" : "100dvh";
@@ -1,2 +1,2 @@
1
- export { aM as Eodash, aN as register, aO as store } from './asWebComponent-DMuA5f9s.js';
1
+ export { aM as Eodash, aN as register, aO as store } from './asWebComponent-BsbKnhGV.js';
2
2
  import 'vue';
@@ -1,5 +1,5 @@
1
1
  import { shallowRef, computed, watch } from 'vue';
2
- import { p as propsFactory, ax as getCurrentInstance } from './asWebComponent-DMuA5f9s.js';
2
+ import { p as propsFactory, ax as getCurrentInstance } from './asWebComponent-BsbKnhGV.js';
3
3
 
4
4
  class Box {
5
5
  constructor(_ref) {
@@ -1,5 +1,5 @@
1
1
  import { TransitionGroup, Transition, h, camelize } from 'vue';
2
- import { g as genericComponent, p as propsFactory } from './asWebComponent-DMuA5f9s.js';
2
+ import { g as genericComponent, p as propsFactory } from './asWebComponent-BsbKnhGV.js';
3
3
 
4
4
  // Utilities
5
5
  const makeTransitionProps = propsFactory({
@@ -1,5 +1,5 @@
1
1
  import { h, mergeProps, TransitionGroup, Transition } from 'vue';
2
- import { p as propsFactory } from './asWebComponent-DMuA5f9s.js';
2
+ import { p as propsFactory } from './asWebComponent-BsbKnhGV.js';
3
3
 
4
4
  // Utilities
5
5
  const makeTransitionProps = propsFactory({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eodash/eodash",
3
- "version": "5.0.0-alpha.2.24",
3
+ "version": "5.0.0-alpha.2.26",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "core/client",