@eodash/eodash 5.0.0-rc.1 → 5.0.0-rc.1.6

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 (89) hide show
  1. package/README.md +1 -1
  2. package/core/client/composables/EodashMap.js +19 -5
  3. package/core/client/composables/EodashProcess.js +51 -5
  4. package/core/client/eodash.js +8 -7
  5. package/core/client/eodashSTAC/EodashCollection.js +16 -0
  6. package/core/client/eodashSTAC/createLayers.js +61 -4
  7. package/core/client/eodashSTAC/helpers.js +39 -4
  8. package/core/client/types.ts +7 -0
  9. package/core/client/utils/states.js +3 -0
  10. package/dist/client/{DashboardLayout-FS5inBIm.js → DashboardLayout-SZfMDUoR.js} +2 -2
  11. package/dist/client/{DynamicWebComponent-CBSgT677.js → DynamicWebComponent-I9gzMY0L.js} +1 -1
  12. package/dist/client/EodashDatePicker-B9_u6TTm.js +405 -0
  13. package/dist/client/{EodashItemFilter-CFNKjm_Z.js → EodashItemFilter-G7YsYO3B.js} +1 -1
  14. package/dist/client/{EodashLayerControl-CzffoPUs.js → EodashLayerControl-CJ94ul63.js} +10 -2
  15. package/dist/client/{EodashLayoutSwitcher-DM0zDhvI.js → EodashLayoutSwitcher-DRKm8A8U.js} +2 -2
  16. package/dist/client/{EodashMap-BdFZ657e.js → EodashMap-Dp44Ajbi.js} +60 -10
  17. package/dist/client/{EodashMapBtns-rC_IPD-Z.js → EodashMapBtns-BlPFwhPc.js} +4 -4
  18. package/dist/client/{EodashProcess-SLsTISKV.js → EodashProcess-BLmIgUGT.js} +158 -25
  19. package/dist/client/{EodashStacInfo-DFD0gtWm.js → EodashStacInfo-BIRcfcMo.js} +1 -1
  20. package/dist/client/{EodashTools-ImohD2ys.js → EodashTools-PNfJ-Cw3.js} +4 -4
  21. package/dist/client/{ExportState-LNZAovzM.js → ExportState-5JyTshJH.js} +4 -4
  22. package/dist/client/{Footer-c19dV1ZR.js → Footer-CM9hgdQP.js} +1 -1
  23. package/dist/client/{Header-CcvXFqqt.js → Header-BTq4DW1x.js} +3 -3
  24. package/dist/client/{MobileLayout-OM6Wc-vj.js → MobileLayout-Atfoxf8d.js} +5 -5
  25. package/dist/client/{PopUp-B0_c0207.js → PopUp-Bmfn3N_4.js} +3 -3
  26. package/dist/client/{VImg-BpDhCbL0.js → VImg-CUF4S39i.js} +2 -2
  27. package/dist/client/{VMain-DC05bDwX.js → VMain-CQpXnzDR.js} +1 -1
  28. package/dist/client/{VOverlay-C7EUyVe_.js → VOverlay-DUnITwM1.js} +3 -3
  29. package/dist/client/{VTooltip-C78suika.js → VTooltip-BYTlbKer.js} +3 -3
  30. package/dist/client/{WidgetsContainer-sD1vDnhF.js → WidgetsContainer-BPbgxdb0.js} +1 -1
  31. package/dist/client/{asWebComponent-D8bMMCEr.js → asWebComponent-DW1XzZkL.js} +138 -27
  32. package/dist/client/eo-dash.css +1 -1
  33. package/dist/client/eo-dash.js +1 -1
  34. package/dist/client/{forwardRefs-yw6tFXER.js → forwardRefs-gx1Fzngc.js} +1 -1
  35. package/dist/client/{index-CpK_Yaom.js → index-DvFppNyk.js} +1 -1
  36. package/dist/client/{transition-B2YwqAYJ.js → transition-j2eWJYMg.js} +1 -1
  37. package/dist/types/core/client/App.vue.d.ts +7 -0
  38. package/dist/types/core/client/asWebComponent.d.ts +9 -0
  39. package/dist/types/core/client/components/DashboardLayout.vue.d.ts +2 -0
  40. package/dist/types/core/client/components/DynamicWebComponent.vue.d.ts +20 -0
  41. package/dist/types/core/client/components/ErrorAlert.vue.d.ts +2 -0
  42. package/dist/types/core/client/components/Footer.vue.d.ts +106 -0
  43. package/dist/types/core/client/components/Header.vue.d.ts +2 -0
  44. package/dist/types/core/client/components/IframeWrapper.vue.d.ts +7 -0
  45. package/dist/types/core/client/components/Loading.vue.d.ts +2 -0
  46. package/dist/types/core/client/components/MobileLayout.vue.d.ts +312 -0
  47. package/dist/types/core/client/composables/DefineEodash.d.ts +2 -0
  48. package/dist/types/core/client/composables/DefineTemplate.d.ts +15 -0
  49. package/dist/types/core/client/composables/DefineWidgets.d.ts +14 -0
  50. package/dist/types/core/client/composables/EodashMap.d.ts +6 -0
  51. package/dist/types/core/client/composables/EodashProcess.d.ts +162 -0
  52. package/dist/types/core/client/composables/index.d.ts +9 -0
  53. package/dist/types/core/client/eodash.d.ts +8 -0
  54. package/dist/types/core/client/eodashSTAC/EodashCollection.d.ts +113 -0
  55. package/dist/types/core/client/eodashSTAC/createLayers.d.ts +45 -0
  56. package/dist/types/core/client/eodashSTAC/helpers.d.ts +135 -0
  57. package/dist/types/core/client/eodashSTAC/triggers.d.ts +1 -0
  58. package/dist/types/core/client/main.d.ts +2 -0
  59. package/dist/types/core/client/plugins/axios.d.ts +2 -0
  60. package/dist/types/core/client/plugins/index.d.ts +3 -0
  61. package/dist/types/core/client/plugins/vuetify.d.ts +82 -0
  62. package/dist/types/core/client/render.d.ts +1 -0
  63. package/dist/types/core/client/store/actions.d.ts +12 -0
  64. package/dist/types/core/client/store/index.d.ts +11 -0
  65. package/dist/types/core/client/store/stac.d.ts +25 -0
  66. package/dist/types/core/client/store/states.d.ts +22 -0
  67. package/dist/types/core/client/types.d.ts +279 -0
  68. package/dist/types/core/client/utils/index.d.ts +2 -0
  69. package/dist/types/core/client/utils/keys.d.ts +8 -0
  70. package/dist/types/core/client/utils/states.d.ts +20 -0
  71. package/dist/types/core/client/views/Dashboard.vue.d.ts +9 -0
  72. package/dist/types/widgets/EodashDatePicker.vue.d.ts +15 -0
  73. package/dist/types/widgets/EodashItemFilter.vue.d.ts +44 -0
  74. package/dist/types/widgets/EodashLayerControl.vue.d.ts +13 -0
  75. package/dist/types/widgets/EodashLayoutSwitcher.vue.d.ts +11 -0
  76. package/dist/types/widgets/EodashMap.vue.d.ts +14 -0
  77. package/dist/types/widgets/EodashMapBtns.vue.d.ts +13 -0
  78. package/dist/types/widgets/EodashProcess.vue.d.ts +4 -0
  79. package/dist/types/widgets/EodashStacInfo.vue.d.ts +21 -0
  80. package/dist/types/widgets/EodashTools.vue.d.ts +19 -0
  81. package/dist/types/widgets/ExportState.vue.d.ts +7 -0
  82. package/dist/types/widgets/PopUp.vue.d.ts +27 -0
  83. package/dist/types/widgets/WidgetsContainer.vue.d.ts +10 -0
  84. package/package.json +11 -11
  85. package/widgets/EodashDatePicker.vue +89 -6
  86. package/widgets/EodashLayerControl.vue +13 -1
  87. package/widgets/EodashMap.vue +51 -5
  88. package/widgets/EodashProcess.vue +57 -11
  89. package/dist/client/EodashDatePicker-BGSS2ZYK.js +0 -306
@@ -3775,9 +3775,11 @@ const eodash = reactive({
3775
3775
  stacEndpoint:
3776
3776
  // "https://eurodatacube.github.io/eodash-catalog/RACE/catalog.json",
3777
3777
  // "https://gtif-cerulean.github.io/catalog/cerulean/catalog.json",
3778
- "https://eodashcatalog.eox.at/samplecatalog/samples/catalog.json",
3779
- // "https://eodashcatalog.eox.at/test-style/trilateral/catalog.json",
3780
- // "https://gtif-cerulean.github.io/catalog/cerulean/catalog.json",
3778
+ // "https://eodashcatalog.eox.at/samplecatalog/samples/catalog.json",
3779
+ // "https://eodashcatalog.eox.at/test-style/trilateral/catalog.json",
3780
+ // "https://gtif-cerulean.github.io/catalog/cerulean/catalog.json",
3781
+ // "https://gtif-cerulean.github.io/deside-catalog/deside/catalog.json",
3782
+ "https://gtif-cerulean.github.io/cerulean-catalog/cerulean/catalog.json",
3781
3783
  brand: {
3782
3784
  noLayout: true,
3783
3785
  name: "Demo",
@@ -3908,10 +3910,9 @@ const eodash = reactive({
3908
3910
  widget: {
3909
3911
  name: "EodashDatePicker",
3910
3912
  properties: {
3911
- hideArrows: true,
3912
- hideInputField: true,
3913
3913
  hintText: `<b>Hint:</b> closest available date is displayed <br />
3914
3914
  on map (see Analysis Layers)`,
3915
+ toggleCalendar: true,
3915
3916
  },
3916
3917
  },
3917
3918
  }
@@ -4035,10 +4036,10 @@ const eodash = reactive({
4035
4036
  defineWidget: (selectedSTAC) =>
4036
4037
  selectedSTAC?.links.some((l) => l.rel === "service")
4037
4038
  ? {
4038
- id: Symbol(),
4039
+ id: "Processes",
4039
4040
  type: "internal",
4040
4041
  title: "Processes",
4041
- layout: { x: 0, y: 7, w: 3, h: 5 },
4042
+ layout: { x: 9, y: 7, w: 3, h: 5 },
4042
4043
  widget: {
4043
4044
  name: "EodashProcess",
4044
4045
  },
@@ -4646,7 +4647,7 @@ function APCAcontrast(text, background) {
4646
4647
  // WoB should always return negative value.
4647
4648
 
4648
4649
  const SAPC = (Ybg ** revBG - Ytxt ** revTXT) * scaleWoB;
4649
- outputContrast = SAPC > -loClip ? 0.0 : SAPC > -loConThresh ? SAPC - SAPC * loConFactor * loConOffset : SAPC + loConOffset;
4650
+ outputContrast = SAPC > -1e-3 ? 0.0 : SAPC > -0.078 ? SAPC - SAPC * loConFactor * loConOffset : SAPC + loConOffset;
4650
4651
  }
4651
4652
  return outputContrast * 100;
4652
4653
  }
@@ -4679,7 +4680,7 @@ function toXYZ$1(lab) {
4679
4680
 
4680
4681
  // Utilities
4681
4682
  // For converting XYZ to sRGB
4682
- const srgbForwardMatrix = [[3.2406, -1.5372, -0.4986], [-0.9689, 1.8758, 0.0415], [0.0557, -0.2040, 1.0570]];
4683
+ const srgbForwardMatrix = [[3.2406, -1.5372, -0.4986], [-0.9689, 1.8758, 0.0415], [0.0557, -0.204, 1.0570]];
4683
4684
 
4684
4685
  // Forward gamma adjust
4685
4686
  const srgbForwardTransform = C => C <= 0.0031308 ? C * 12.92 : 1.055 * C ** (1 / 2.4) - 0.055;
@@ -7429,7 +7430,7 @@ function createLayout(props) {
7429
7430
  }
7430
7431
 
7431
7432
  function createVuetify() {
7432
- let vuetify = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
7433
+ let vuetify = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
7433
7434
  const {
7434
7435
  blueprint,
7435
7436
  ...rest
@@ -7556,6 +7557,9 @@ const eodashCompareCollections = shallowReactive([]);
7556
7557
  /** whether the map postion was set in URL params on first load */
7557
7558
  const posIsSetFromUrl = ref(false);
7558
7559
 
7560
+ /** @type {import("vue").Ref<Record<string,any>|undefined>} */
7561
+ const layerControlFormValue = ref({});
7562
+
7559
7563
  // functions of this folder can only be consumed inside setup stores,
7560
7564
  // setup functions or vue composition api components https://vuejs.org/guide/reusability/composables
7561
7565
 
@@ -7814,13 +7818,17 @@ function generateFeatures(links) {
7814
7818
  /**
7815
7819
  * Sperates and extracts layerConfig (jsonform schema & legend) from a style json
7816
7820
  *
7817
- * @param { import("ol/layer/WebGLTile").Style & { jsonform?: Record<string,any> } & { legend?: Record<string,any> } } [style] */
7821
+ * @param { import("@/types").EodashStyleJson} [style] */
7818
7822
  function extractLayerConfig(style) {
7823
+ if (!style) {
7824
+ return { layerConfig: undefined, style: undefined };
7825
+ }
7826
+ style = { ...style };
7819
7827
  /** @type {Record<string,unknown> | undefined} */
7820
7828
  let layerConfig = undefined;
7829
+
7821
7830
  if (style?.jsonform) {
7822
7831
  layerConfig = { schema: style.jsonform, type: "style" };
7823
- style = { ...style };
7824
7832
  delete style.jsonform;
7825
7833
  if (style?.legend) {
7826
7834
  layerConfig.legend = style.legend;
@@ -7899,7 +7907,7 @@ const fetchStyle = async (item, itemUrl) => {
7899
7907
  url = toAbsolute(styleLink.href, itemUrl);
7900
7908
  }
7901
7909
 
7902
- /** @type {import("ol/layer/WebGLTile").Style & {jsonform?:Record<string,any>}} */
7910
+ /** @type {import("@/types").EodashStyleJson} */
7903
7911
  const styleJson = await axios.get(url).then((resp) => resp.data);
7904
7912
 
7905
7913
  log.debug("fetched styles JSON", JSON.parse(JSON.stringify(styleJson)));
@@ -7975,8 +7983,9 @@ const extractLayerDatetime = (links, currentStep) => {
7975
7983
  controlValues,
7976
7984
  currentStep,
7977
7985
  slider: true,
7986
+ navigation: true,
7978
7987
  play: false,
7979
- displayFormat: "DD MMMM YYYY",
7988
+ displayFormat: "DD.MM.YYYY HH:MM",
7980
7989
  };
7981
7990
  };
7982
7991
 
@@ -8071,14 +8080,14 @@ const getColFromLayer = async (indicators, layer) => {
8071
8080
  */
8072
8081
  const createLayerID = (collectionId, itemId, link, projectionCode) => {
8073
8082
  const linkId = link.id || link.title || link.href;
8074
- let lId = `${collectionId ?? ""};:;${itemId ?? ""};:;${linkId ?? ""};:;${projectionCode ?? ""}`;
8083
+ let lId = `${collectionId ?? ""};:;${itemId ?? ""};:;${linkId ?? ""};:;${projectionCode}`;
8075
8084
  // If we are looking at base layers and overlays we remove the collection and item part
8076
8085
  // as we want to make sure tiles are not reloaded when switching layers
8077
8086
  if (
8078
8087
  /** @type {string[]} */
8079
8088
  (link.roles)?.find((r) => ["baselayer", "overlay"].includes(r))
8080
8089
  ) {
8081
- lId = `${linkId ?? ""};:;${projectionCode ?? ""}`;
8090
+ lId = `${linkId ?? ""};:;${projectionCode}`;
8082
8091
  }
8083
8092
  log.debug("Generated Layer ID", lId);
8084
8093
  return lId;
@@ -8121,6 +8130,36 @@ const removeUnneededProperties = (layers) => {
8121
8130
  return cloned;
8122
8131
  };
8123
8132
 
8133
+ /**
8134
+ * @param {string[]} geojsonUrls
8135
+ */
8136
+ async function mergeGeojsons(geojsonUrls) {
8137
+ if (!geojsonUrls.length) {
8138
+ return undefined;
8139
+ }
8140
+ if (geojsonUrls.length === 1) {
8141
+ return geojsonUrls[0];
8142
+ }
8143
+
8144
+ const merged = {
8145
+ type: "FeatureCollection",
8146
+ /** @type {import("ol").Feature[]} */
8147
+ features: [],
8148
+ };
8149
+ await Promise.all(
8150
+ geojsonUrls.map((url) =>
8151
+ axios.get(url).then((resp) => {
8152
+ const geojson = resp.data;
8153
+ merged.features.push(...(geojson.features ?? []));
8154
+ }),
8155
+ ),
8156
+ );
8157
+
8158
+ return encodeURI(
8159
+ "data:application/json;charset=utf-8," + JSON.stringify(merged),
8160
+ );
8161
+ }
8162
+
8124
8163
  /**
8125
8164
  * Returns the current layers of {@link mapEl}
8126
8165
  * @returns {Record<string,any>[]}
@@ -8206,7 +8245,7 @@ const actions = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
8206
8245
  * @param {string} title
8207
8246
  * @param {Record<string,import("stac-ts").StacAsset>} assets
8208
8247
  * @param {import("stac-ts").StacItem } item
8209
- * @param {import("ol/layer/WebGLTile").Style} [style]
8248
+ * @param {import("@/types").EodashStyleJson} [style]
8210
8249
  * @param {Record<string, unknown>} [layerConfig]
8211
8250
  * @param {Record<string, unknown>} [layerDatetime]
8212
8251
  * @param {object | null} [extraProperties]
@@ -8226,6 +8265,11 @@ async function createLayersFromAssets(
8226
8265
  let geoTIFFSources = [];
8227
8266
  /** @type {number|null} */
8228
8267
  let geoTIFFIdx = null;
8268
+ // let geoJsonLayers = [];
8269
+ let geoJsonIdx = 0;
8270
+
8271
+ const geoJsonSources = [];
8272
+ let geoJsonRoles = {};
8229
8273
 
8230
8274
  for (const [idx, ast] of Object.keys(assets).entries()) {
8231
8275
  // register projection if exists
@@ -8234,14 +8278,18 @@ async function createLayersFromAssets(
8234
8278
  assets[ast]?.["proj:epsg"] || assets[ast]?.["eodash:proj4_def"]
8235
8279
  );
8236
8280
  await registerProjection(assetProjection);
8237
-
8238
8281
  if (assets[ast]?.type === "application/geo+json") {
8282
+ geoJsonSources.push(assets[ast].href);
8283
+ geoJsonIdx = idx;
8284
+ extractRoles(geoJsonRoles, assets[ast]);
8285
+ } else if (assets[ast]?.type === "application/vnd.flatgeobuf") {
8239
8286
  const assetId = createAssetID(collectionId, item.id, idx);
8240
- log.debug("Creating Vector layer from GeoJSON", assetId);
8287
+ log.debug(`Creating Vector layer from FlatGeoBuf`, assetId);
8288
+
8241
8289
  const layer = {
8242
8290
  type: "Vector",
8243
8291
  source: {
8244
- type: "Vector",
8292
+ type: "FlatGeoBuf",
8245
8293
  url: assets[ast].href,
8246
8294
  format: "GeoJSON",
8247
8295
  },
@@ -8258,6 +8306,23 @@ async function createLayersFromAssets(
8258
8306
  },
8259
8307
  ...(!style?.variables && { style }),
8260
8308
  };
8309
+ // add tooltip interaction if style has tooltip
8310
+ if (style?.tooltip) {
8311
+ // @ts-expect-error no type for eox-map layer
8312
+ layer.interactions = [
8313
+ {
8314
+ type: "select",
8315
+ options: {
8316
+ id: "selectInteraction",
8317
+ condition: "pointermove",
8318
+ style: {
8319
+ "stroke-color": "#335267",
8320
+ "stroke-width": 4,
8321
+ },
8322
+ },
8323
+ },
8324
+ ];
8325
+ }
8261
8326
 
8262
8327
  extractRoles(layer.properties, assets[ast]);
8263
8328
 
@@ -8270,6 +8335,36 @@ async function createLayersFromAssets(
8270
8335
  }
8271
8336
  }
8272
8337
 
8338
+ if (geoJsonSources.length) {
8339
+ const assetId = createAssetID(collectionId, item.id, geoJsonIdx);
8340
+ log.debug(`Creating Vector layer from GeoJsons`, assetId);
8341
+
8342
+ const layer = {
8343
+ type: "Vector",
8344
+ source: {
8345
+ type: "Vector",
8346
+ url: await mergeGeojsons(geoJsonSources),
8347
+ format: "GeoJSON",
8348
+ },
8349
+ properties: {
8350
+ ...geoJsonRoles,
8351
+ id: assetId,
8352
+ title,
8353
+ layerDatetime,
8354
+ ...(layerConfig && {
8355
+ layerConfig: {
8356
+ ...layerConfig,
8357
+ style,
8358
+ },
8359
+ }),
8360
+ },
8361
+ ...(!style?.variables && { style }),
8362
+ };
8363
+
8364
+ layer.properties = { ...layer.properties, ...(extraProperties ?? {}) };
8365
+
8366
+ jsonArray.push(layer);
8367
+ }
8273
8368
  if (geoTIFFSources.length && typeof geoTIFFIdx === "number") {
8274
8369
  const geotiffSourceID = collectionId + ";:;GeoTIFF";
8275
8370
  log.debug("Creating WebGLTile layer from GeoTIFF", geotiffSourceID);
@@ -8520,6 +8615,9 @@ class EodashCollection {
8520
8615
  */
8521
8616
  selectedItem;
8522
8617
 
8618
+ /** @type {import("@/types").EodashStyleJson["tooltip"]} */
8619
+ #tooltipProperties = [];
8620
+
8523
8621
  // read only
8524
8622
  get collectionStac() {
8525
8623
  return this.#collectionStac;
@@ -8779,6 +8877,19 @@ class EodashCollection {
8779
8877
  : this.getItems()?.at(-1);
8780
8878
  }
8781
8879
 
8880
+ async getToolTipProperties() {
8881
+ if (!(this.selectedItem instanceof Item)) {
8882
+ return [];
8883
+ }
8884
+ let styles = await fetchStyle(
8885
+ this.selectedItem,
8886
+ `${this.#collectionUrl}/${this.selectedItem.id}`,
8887
+ );
8888
+ const { tooltip } = styles || { tooltip: [] };
8889
+ this.#tooltipProperties = tooltip ?? [];
8890
+ return this.#tooltipProperties;
8891
+ }
8892
+
8782
8893
  /**
8783
8894
  *
8784
8895
  * @param {string} datetime
@@ -11191,7 +11302,7 @@ const ErrorAlert = /*#__PURE__*/_export_sfc(_sfc_main$3, [['__scopeId',"data-v-a
11191
11302
  const internalWidgets = (() => {
11192
11303
  /** @type {Record<string, () => Promise<import("vue").Component>>} */
11193
11304
  const importMap = {
11194
- .../* #__PURE__ */ Object.assign({"/widgets/EodashDatePicker.vue": () => import('./EodashDatePicker-BGSS2ZYK.js'),"/widgets/EodashItemFilter.vue": () => import('./EodashItemFilter-CFNKjm_Z.js'),"/widgets/EodashLayerControl.vue": () => import('./EodashLayerControl-CzffoPUs.js'),"/widgets/EodashLayoutSwitcher.vue": () => import('./EodashLayoutSwitcher-DM0zDhvI.js'),"/widgets/EodashMap.vue": () => import('./EodashMap-BdFZ657e.js'),"/widgets/EodashMapBtns.vue": () => import('./EodashMapBtns-rC_IPD-Z.js'),"/widgets/EodashProcess.vue": () => import('./EodashProcess-SLsTISKV.js'),"/widgets/EodashStacInfo.vue": () => import('./EodashStacInfo-DFD0gtWm.js'),"/widgets/EodashTools.vue": () => import('./EodashTools-ImohD2ys.js'),"/widgets/ExportState.vue": () => import('./ExportState-LNZAovzM.js'),"/widgets/PopUp.vue": () => import('./PopUp-B0_c0207.js'),"/widgets/WidgetsContainer.vue": () => import('./WidgetsContainer-sD1vDnhF.js')}),
11305
+ .../* #__PURE__ */ Object.assign({"/widgets/EodashDatePicker.vue": () => import('./EodashDatePicker-B9_u6TTm.js'),"/widgets/EodashItemFilter.vue": () => import('./EodashItemFilter-G7YsYO3B.js'),"/widgets/EodashLayerControl.vue": () => import('./EodashLayerControl-CJ94ul63.js'),"/widgets/EodashLayoutSwitcher.vue": () => import('./EodashLayoutSwitcher-DRKm8A8U.js'),"/widgets/EodashMap.vue": () => import('./EodashMap-Dp44Ajbi.js'),"/widgets/EodashMapBtns.vue": () => import('./EodashMapBtns-BlPFwhPc.js'),"/widgets/EodashProcess.vue": () => import('./EodashProcess-BLmIgUGT.js'),"/widgets/EodashStacInfo.vue": () => import('./EodashStacInfo-BIRcfcMo.js'),"/widgets/EodashTools.vue": () => import('./EodashTools-PNfJ-Cw3.js'),"/widgets/ExportState.vue": () => import('./ExportState-5JyTshJH.js'),"/widgets/PopUp.vue": () => import('./PopUp-Bmfn3N_4.js'),"/widgets/WidgetsContainer.vue": () => import('./WidgetsContainer-BPbgxdb0.js')}),
11195
11306
  .../* #__PURE__ */ Object.assign({}),
11196
11307
  };
11197
11308
  for (const key in importMap) {
@@ -11299,7 +11410,7 @@ const getWidgetDefinition = (config) => {
11299
11410
 
11300
11411
  case "web-component":
11301
11412
  importedWidget.component = defineAsyncComponent({
11302
- loader: () => import('./DynamicWebComponent-CBSgT677.js'),
11413
+ loader: () => import('./DynamicWebComponent-I9gzMY0L.js'),
11303
11414
  suspensible: true,
11304
11415
  });
11305
11416
  importedWidget.props = reactive(config.widget);
@@ -11733,15 +11844,15 @@ const { loadSTAC } = useSTAcStore();
11733
11844
  const { smAndDown } = useDisplay();
11734
11845
  const TemplateComponent = computed(() =>
11735
11846
  smAndDown.value
11736
- ? defineAsyncComponent(() => import('./MobileLayout-OM6Wc-vj.js'))
11737
- : defineAsyncComponent(() => import('./DashboardLayout-FS5inBIm.js')),
11847
+ ? defineAsyncComponent(() => import('./MobileLayout-Atfoxf8d.js'))
11848
+ : defineAsyncComponent(() => import('./DashboardLayout-SZfMDUoR.js')),
11738
11849
  );
11739
11850
 
11740
11851
  const HeaderComponent = defineAsyncComponent(
11741
- () => import('./Header-CcvXFqqt.js'),
11852
+ () => import('./Header-BTq4DW1x.js'),
11742
11853
  );
11743
11854
  const FooterComponent = defineAsyncComponent(
11744
- () => import('./Footer-c19dV1ZR.js'),
11855
+ () => import('./Footer-CM9hgdQP.js'),
11745
11856
  );
11746
11857
 
11747
11858
  const templateHeight = props.isWebComponent ? "100%" : "100dvh";
@@ -11940,4 +12051,4 @@ function register() {
11940
12051
 
11941
12052
  register();
11942
12053
 
11943
- export { useSTAcStore as $, makeDensityProps as A, useDensity as B, useBackgroundColor as C, provideDefaults as D, isObject as E, useDefineTemplate as F, useLayout as G, makeDimensionProps as H, IconValue as I, useDimension as J, makeBorderProps as K, makeElevationProps as L, makeRoundedProps as M, useBorder as N, useElevation as O, useRounded as P, VDefaultsProvider as Q, clamp as R, consoleWarn as S, makeLayoutItemProps as T, useToggleScope as U, VBtn as V, useLayoutItem as W, eodashKey as X, consoleError as Y, datetime as Z, _export_sfc as _, useRender as a, eodashCollections as a0, makePanelTransparent as a1, mapCompareEl as a2, mapEl as a3, eodashCompareCollections as a4, getColFromLayer as a5, registerProjection as a6, getProjectionCode as a7, availableMapProjection as a8, changeMapProjection as a9, useLink as aA, LoaderSlot as aB, removeUnneededProperties as aC, VRow as aD, VCol as aE, copyToClipBoard as aF, SUPPORTS_INTERSECTION as aG, getCurrentInstance as aH, useDefineWidgets as aI, isOn as aJ, eventName as aK, destructComputed as aL, parseAnchor as aM, flipSide as aN, flipAlign as aO, flipCorner as aP, getAxis as aQ, defer as aR, templateRef as aS, matchesSelector as aT, useRouter as aU, useBackButton as aV, EodashConstructor as aW, register as aX, store as aY, eoxLayersKey as aa, posIsSetFromUrl as ab, EodashCollection as ac, mapPosition as ad, setActiveTemplate as ae, axios$1 as af, getLayers as ag, extractLayerConfig as ah, useOnLayersUpdate as ai, currentUrl as aj, activeTemplate as ak, getUid as al, createSimpleFunctional as am, makeSizeProps as an, makeVariantProps as ao, useVariant as ap, useSize as aq, genOverlays as ar, makeLoaderProps as as, makeLocationProps as at, makePositionProps as au, makeRouterProps as av, Ripple as aw, useLoader as ax, useLocation as ay, usePosition as az, makeComponentProps as b, makeTagProps as c, makeThemeProps as d, provideTheme as e, useRtl as f, genericComponent as g, useLocale as h, useGroup as i, useProxiedModel as j, keys as k, makeGroupItemProps as l, makeVBtnProps as m, useGroupItem as n, omit as o, propsFactory as p, convertToUnit as q, makeDisplayProps as r, makeGroupProps as s, useDisplay as t, useTextColor as u, useResizeObserver as v, useGoTo as w, IN_BROWSER as x, VIcon as y, focusableChildren as z };
12054
+ export { useSTAcStore as $, makeDensityProps as A, useDensity as B, useBackgroundColor as C, provideDefaults as D, isObject as E, useDefineTemplate as F, useLayout as G, makeDimensionProps as H, IconValue as I, useDimension as J, makeBorderProps as K, makeElevationProps as L, makeRoundedProps as M, useBorder as N, useElevation as O, useRounded as P, VDefaultsProvider as Q, clamp as R, consoleWarn as S, makeLayoutItemProps as T, useToggleScope as U, VBtn as V, useLayoutItem as W, eodashKey as X, consoleError as Y, datetime as Z, _export_sfc as _, useRender as a, eodashCollections as a0, makePanelTransparent as a1, mapCompareEl as a2, mapEl as a3, eodashCompareCollections as a4, layerControlFormValue as a5, getColFromLayer as a6, registerProjection as a7, getProjectionCode as a8, availableMapProjection as a9, usePosition as aA, useLink as aB, LoaderSlot as aC, removeUnneededProperties as aD, VRow as aE, VCol as aF, copyToClipBoard as aG, SUPPORTS_INTERSECTION as aH, getCurrentInstance as aI, useDefineWidgets as aJ, isOn as aK, eventName as aL, destructComputed as aM, parseAnchor as aN, flipSide as aO, flipAlign as aP, flipCorner as aQ, getAxis as aR, defer as aS, templateRef as aT, matchesSelector as aU, useRouter as aV, useBackButton as aW, EodashConstructor as aX, register as aY, store as aZ, changeMapProjection as aa, eoxLayersKey as ab, posIsSetFromUrl as ac, useOnLayersUpdate as ad, EodashCollection as ae, mapPosition as af, setActiveTemplate as ag, axios$1 as ah, getLayers as ai, extractLayerConfig as aj, currentUrl as ak, activeTemplate as al, getUid as am, createSimpleFunctional as an, makeSizeProps as ao, makeVariantProps as ap, useVariant as aq, useSize as ar, genOverlays as as, makeLoaderProps as at, makeLocationProps as au, makePositionProps as av, makeRouterProps as aw, Ripple as ax, useLoader as ay, useLocation as az, makeComponentProps as b, makeTagProps as c, makeThemeProps as d, provideTheme as e, useRtl as f, genericComponent as g, useLocale as h, useGroup as i, useProxiedModel as j, keys as k, makeGroupItemProps as l, makeVBtnProps as m, useGroupItem as n, omit as o, propsFactory as p, convertToUnit as q, makeDisplayProps as r, makeGroupProps as s, useDisplay as t, useTextColor as u, useResizeObserver as v, useGoTo as w, IN_BROWSER as x, VIcon as y, focusableChildren as z };