@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
@@ -1,14 +1,46 @@
1
- import { watch, onMounted, nextTick, ref, openBlock, createElementBlock, createCommentVNode, toRaw, createElementVNode, createBlock, withCtx, createTextVNode } from 'vue';
1
+ import { createVNode, watch, onMounted, nextTick, ref, openBlock, createElementBlock, createCommentVNode, toRaw, withCtx, createElementVNode, createBlock, createTextVNode } from 'vue';
2
2
  import '@eox/chart';
3
3
  import '@eox/drawtools';
4
4
  import '@eox/jsonform';
5
- import { af as axios, ag as getLayers, a3 as mapEl, ah as extractLayerConfig, aa as eoxLayersKey, $ as useSTAcStore, ai as useOnLayersUpdate, V as VBtn } from './asWebComponent-D8bMMCEr.js';
5
+ import { p as propsFactory, b as makeComponentProps, H as makeDimensionProps, c as makeTagProps, g as genericComponent, f as useRtl, J as useDimension, a as useRender, ah as axios, ai as getLayers, a3 as mapEl, aj as extractLayerConfig, ab as eoxLayersKey, $ as useSTAcStore, ad as useOnLayersUpdate, V as VBtn } from './asWebComponent-DW1XzZkL.js';
6
6
  import { storeToRefs } from 'pinia';
7
7
  import { useEventBus } from '@vueuse/core';
8
8
  import { isMulti } from '@eox/jsonform/src/custom-inputs/spatial/utils';
9
9
  import mustache from 'mustache';
10
10
  import log from 'loglevel';
11
11
 
12
+ const makeVContainerProps = propsFactory({
13
+ fluid: {
14
+ type: Boolean,
15
+ default: false
16
+ },
17
+ ...makeComponentProps(),
18
+ ...makeDimensionProps(),
19
+ ...makeTagProps()
20
+ }, 'VContainer');
21
+ const VContainer = genericComponent()({
22
+ name: 'VContainer',
23
+ props: makeVContainerProps(),
24
+ setup(props, _ref) {
25
+ let {
26
+ slots
27
+ } = _ref;
28
+ const {
29
+ rtlClasses
30
+ } = useRtl();
31
+ const {
32
+ dimensionStyles
33
+ } = useDimension(props);
34
+ useRender(() => createVNode(props.tag, {
35
+ "class": ['v-container', {
36
+ 'v-container--fluid': props.fluid
37
+ }, rtlClasses.value, props.class],
38
+ "style": [dimensionStyles.value, props.style]
39
+ }, slots));
40
+ return {};
41
+ }
42
+ });
43
+
12
44
  /**
13
45
  * Polls the process status and fetches a result item when the process is successful.
14
46
  *
@@ -50,6 +82,10 @@ async function pollProcessStatus({
50
82
  console.log("Result file fetched successfully:", resultResponse.data);
51
83
  return resultResponse.data; // Return the json result list
52
84
  }
85
+ if (processReport.status === "failed") {
86
+ isPolling.value = false;
87
+ throw new Error("Process failed.", processReport);
88
+ }
53
89
 
54
90
  // Log the current status if not successful
55
91
  console.log(
@@ -372,7 +408,7 @@ async function processGeoTiff(links, jsonformValue, layerId, isPolling) {
372
408
  * @param {import("stac-ts").StacLink[] | undefined} links
373
409
  * @param {Record<string,any> | undefined} jsonformValue
374
410
  * @param {string} specUrl
375
- * @returns {Promise<[import("vega").Spec|null,Record<string,any>|null]>}
411
+ * @returns {Promise<[import("@eox/chart").EOxChart["spec"] | null,Record<string,any>|null]>}
376
412
  **/
377
413
  async function getChartValues(links, jsonformValue, specUrl) {
378
414
  if (!specUrl || !links) return [null, null];
@@ -391,7 +427,7 @@ async function getChartValues(links, jsonformValue, specUrl) {
391
427
  for (const link of dataLinks ?? []) {
392
428
  if (link.type && ["application/json", "text/csv"].includes(link.type)) {
393
429
  const dataUrl = mustache.render(link.href, {
394
- ...(jsonformValue ?? {}),
430
+ ...(jsonformValue),
395
431
  ...(link["eox:flatstyle"] ?? {}),
396
432
  });
397
433
  // Wait for data to be retrieved
@@ -406,7 +442,7 @@ async function getChartValues(links, jsonformValue, specUrl) {
406
442
  dataValues[/** @type {string} */ (link.id)] = await axios
407
443
  .get(
408
444
  mustache.render(link.href, {
409
- ...(jsonformValue ?? {}),
445
+ ...(jsonformValue),
410
446
  ...(link["eox:flatstyle"] ?? {}),
411
447
  }),
412
448
  )
@@ -421,9 +457,10 @@ async function getChartValues(links, jsonformValue, specUrl) {
421
457
  * @param {import("vue").Ref<import("stac-ts").StacCollection | null>} params.selectedStac
422
458
  * @param {import("vue").Ref<import("@eox/jsonform").EOxJSONForm | null>} params.jsonformEl
423
459
  * @param {import("vue").Ref<Record<string,any>|null>} params.jsonformSchema
424
- * @param {import("vue").Ref<import("@eox/chart").EOxChart["spec"]>} params.chartSpec
460
+ * @param {import("vue").Ref<import("@eox/chart").EOxChart["spec"] | null>} params.chartSpec
425
461
  * @param {import("vue").Ref<Record<string, any> | null>} params.chartData
426
462
  * @param {import("vue").Ref<boolean>} params.isPolling
463
+ * @param {import("vue").Ref<any[]>} params.processResults
427
464
  */
428
465
  async function handleProcesses({
429
466
  loading,
@@ -433,6 +470,7 @@ async function handleProcesses({
433
470
  chartSpec,
434
471
  chartData,
435
472
  isPolling,
473
+ processResults,
436
474
  }) {
437
475
  log.debug("Processing...");
438
476
  loading.value = true;
@@ -458,22 +496,50 @@ async function handleProcesses({
458
496
  { ...(jsonformValue ?? {}) },
459
497
  specUrl,
460
498
  );
499
+ if (Object.keys(chartData.value ?? {}).length) {
500
+ processResults.value.push(chartData.value);
501
+ }
502
+ //@ts-expect-error we assume that the spec data is of type InlineData
503
+ if (chartSpec.value?.data?.values?.length) {
504
+ //@ts-expect-error we assume that the spec data is of type InlineData
505
+ processResults.value.push(chartSpec.value?.data.values);
506
+ }
507
+
461
508
  if (chartSpec.value && !("background" in chartSpec.value)) {
462
509
  chartSpec.value["background"] = "transparent";
463
510
  }
511
+
464
512
  const geotiffLayer = await processGeoTiff(
465
513
  serviceLinks,
466
514
  jsonformValue,
467
515
  selectedStac.value?.id ?? "",
468
516
  isPolling,
469
517
  );
518
+
519
+ if (geotiffLayer && geotiffLayer.source?.sources.length) {
520
+ processResults.value.push(
521
+ ...(geotiffLayer.source?.sources?.map((source) => source.url) ?? []),
522
+ );
523
+ }
524
+ // 3. vector geojson
470
525
  const vectorLayers = await processVector(
471
526
  serviceLinks,
472
527
  jsonformValue,
473
528
  selectedStac.value?.id ?? "",
474
529
  );
475
530
 
531
+ if (vectorLayers?.length) {
532
+ processResults.value.push(
533
+ ...vectorLayers.map((layer) => layer.source?.url),
534
+ );
535
+ }
536
+
476
537
  const imageLayers = processImage(serviceLinks, jsonformValue, origBbox);
538
+ if (imageLayers?.length) {
539
+ processResults.value.push(
540
+ ...imageLayers.map((layer) => layer.source?.url),
541
+ );
542
+ }
477
543
 
478
544
  log.debug(
479
545
  "rendered layers after processing:",
@@ -511,8 +577,9 @@ async function handleProcesses({
511
577
  * @param {Object} params
512
578
  * @param {import("vue").Ref<boolean>} params.loading
513
579
  * @param {import("vue").Ref<boolean>} params.isProcessed
514
- * @param {import("vue").Ref<import("@eox/chart").EOxChart["spec"]>} params.chartSpec
580
+ * @param {import("vue").Ref<import("@eox/chart").EOxChart["spec"] | null>} params.chartSpec
515
581
  * @param {import("vue").Ref<boolean>} params.isPolling
582
+ * @param {import("vue").Ref<any[]>} params.processResults
516
583
  * @param {import("vue").Ref<Record<string,any>|null>} params.jsonformSchema
517
584
  */
518
585
  function resetProcess({
@@ -520,12 +587,14 @@ function resetProcess({
520
587
  isProcessed,
521
588
  chartSpec,
522
589
  jsonformSchema,
590
+ processResults,
523
591
  isPolling,
524
592
  }) {
525
593
  loading.value = false;
526
594
  isProcessed.value = false;
527
595
  isPolling.value = false;
528
596
  chartSpec.value = null;
597
+ processResults.value = [];
529
598
  jsonformSchema.value = null;
530
599
  }
531
600
 
@@ -538,7 +607,8 @@ function resetProcess({
538
607
  * @param {import("vue").Ref<import("stac-ts").StacCollection>} params.selectedStac
539
608
  * @param {import("vue").Ref<import("@eox/jsonform").EOxJSONForm | null>} params.jsonformEl
540
609
  * @param {import("vue").Ref<Record<string,any> | null>} params.jsonformSchema
541
- * @param {import("vue").Ref<import("@eox/chart").EOxChart["spec"]>} params.chartSpec
610
+ * @param {import("vue").Ref<import("@eox/chart").EOxChart["spec"] | null>} params.chartSpec
611
+ * @param {import("vue").Ref<any[]>} params.processResults
542
612
  * @param {import("vue").Ref<boolean>} params.isProcessed
543
613
  * @param {import("vue").Ref<boolean>} params.loading
544
614
  * @param {import("vue").Ref<boolean>} params.isPolling
@@ -549,13 +619,21 @@ async function initProcess({
549
619
  jsonformSchema,
550
620
  chartSpec,
551
621
  isProcessed,
622
+ processResults,
552
623
  loading,
553
624
  isPolling,
554
625
  }) {
555
626
  if (!selectedStac.value) {
556
627
  return;
557
628
  }
558
- resetProcess({ loading, isProcessed, chartSpec, jsonformSchema, isPolling });
629
+ resetProcess({
630
+ loading,
631
+ isProcessed,
632
+ chartSpec,
633
+ jsonformSchema,
634
+ isPolling,
635
+ processResults,
636
+ });
559
637
  if (selectedStac.value["eodash:jsonform"]) {
560
638
  jsonformEl.value?.editor.destroy();
561
639
  // wait for the layers to be rendered
@@ -604,7 +682,39 @@ const loading = ref(false);
604
682
  const autoExec = ref(false);
605
683
 
606
684
  const isPolling = ref(false);
685
+ /** @type {import("vue").Ref<any[]>} */
686
+ const processResults = ref([]);
607
687
 
688
+ const downloadResults = () => {
689
+ processResults.value.forEach((result) => {
690
+ if (!result) {
691
+ return;
692
+ }
693
+ let url = "";
694
+ let downloadFile = "";
695
+ if (typeof result === "string") {
696
+ url = result;
697
+ //@ts-expect-error TODO
698
+ downloadFile = url.includes("/") ? url.split("/").pop() : url;
699
+ downloadFile = downloadFile.includes("?")
700
+ ? downloadFile.split("?")[0]
701
+ : downloadFile;
702
+ } else {
703
+ result = JSON.stringify(result);
704
+ const blob = new Blob([result], { type: "text" });
705
+ url = URL.createObjectURL(blob);
706
+ downloadFile = selectedStac.value?.id + "_process_results.json";
707
+ }
708
+ const link = document.createElement("a");
709
+ if (confirm(`Would you like to download ${downloadFile}?`)) {
710
+ link.href = url;
711
+ link.download = downloadFile;
712
+ link.click();
713
+ }
714
+ URL.revokeObjectURL(url);
715
+ link.remove();
716
+ });
717
+ };
608
718
  onMounted(async () => {
609
719
  // wait for the layers to be rendered
610
720
  if (mapEl.value?.layers.length <= 1) {
@@ -617,6 +727,7 @@ onMounted(async () => {
617
727
  chartSpec,
618
728
  isProcessed,
619
729
  loading,
730
+ processResults,
620
731
  isPolling,
621
732
  });
622
733
  });
@@ -628,6 +739,7 @@ onMounted(async () => {
628
739
  jsonformSchema,
629
740
  chartSpec,
630
741
  isProcessed,
742
+ processResults,
631
743
  loading,
632
744
  isPolling,
633
745
  });
@@ -643,6 +755,7 @@ useOnLayersUpdate(
643
755
  jsonformSchema,
644
756
  chartSpec,
645
757
  isProcessed,
758
+ processResults,
646
759
  loading,
647
760
  isPolling,
648
761
  }),
@@ -654,6 +767,7 @@ const startProcess = async () => {
654
767
  console.warn("[eodash] Form validation failed", errors);
655
768
  return;
656
769
  }
770
+ processResults.value = [];
657
771
  await handleProcesses({
658
772
  jsonformEl,
659
773
  jsonformSchema,
@@ -664,6 +778,7 @@ const startProcess = async () => {
664
778
  selectedStac,
665
779
  isProcessed,
666
780
  isPolling,
781
+ processResults,
667
782
  });
668
783
  isProcessed.value = true;
669
784
  };
@@ -671,6 +786,7 @@ useAutoExec(autoExec, jsonformEl, jsonformSchema, startProcess);
671
786
 
672
787
  return (_ctx, _cache) => {
673
788
 
789
+
674
790
 
675
791
  return (openBlock(), createElementBlock("div", _hoisted_1, [
676
792
  (jsonformSchema.value)
@@ -689,22 +805,39 @@ return (_ctx, _cache) => {
689
805
  ".dataValues": toRaw(chartData.value)
690
806
  }, null, 40 /* PROPS, NEED_HYDRATION */, _hoisted_3))
691
807
  : createCommentVNode("v-if", true),
692
- createElementVNode("span", null, [
693
- (!autoExec.value)
694
- ? (openBlock(), createBlock(VBtn, {
695
- key: 0,
696
- loading: loading.value,
697
- style: {"float":"right","margin-right":"20px"},
698
- onClick: startProcess,
699
- color: "primary"
700
- }, {
701
- default: withCtx(() => _cache[0] || (_cache[0] = [
702
- createTextVNode(" Execute ")
703
- ])),
704
- _: 1 /* STABLE */
705
- }, 8 /* PROPS */, ["loading"]))
706
- : createCommentVNode("v-if", true)
707
- ])
808
+ createVNode(VContainer, null, {
809
+ default: withCtx(() => [
810
+ createElementVNode("span", null, [
811
+ (!autoExec.value)
812
+ ? (openBlock(), createBlock(VBtn, {
813
+ key: 0,
814
+ loading: loading.value,
815
+ style: {"float":"right","margin-right":"20px"},
816
+ onClick: startProcess,
817
+ color: "primary"
818
+ }, {
819
+ default: withCtx(() => _cache[0] || (_cache[0] = [
820
+ createTextVNode(" Execute ")
821
+ ])),
822
+ _: 1 /* STABLE */
823
+ }, 8 /* PROPS */, ["loading"]))
824
+ : createCommentVNode("v-if", true),
825
+ (processResults.value.length && isProcessed.value)
826
+ ? (openBlock(), createBlock(VBtn, {
827
+ key: 1,
828
+ color: "primary",
829
+ onClick: downloadResults
830
+ }, {
831
+ default: withCtx(() => _cache[1] || (_cache[1] = [
832
+ createTextVNode(" Download ")
833
+ ])),
834
+ _: 1 /* STABLE */
835
+ }))
836
+ : createCommentVNode("v-if", true)
837
+ ])
838
+ ]),
839
+ _: 1 /* STABLE */
840
+ })
708
841
  ]))
709
842
  }
710
843
  }
@@ -1,6 +1,6 @@
1
1
  import { openBlock, createElementBlock, createElementVNode, unref } from 'vue';
2
2
  import '@eox/stacinfo';
3
- import { aj as currentUrl } from './asWebComponent-D8bMMCEr.js';
3
+ import { ak as currentUrl } from './asWebComponent-DW1XzZkL.js';
4
4
 
5
5
  const _hoisted_1 = { class: "flex-grow-1 fill-height overflow-auto" };
6
6
  const _hoisted_2 = [".for", ".allowHtml", ".body", ".featured", ".footer", ".styleOverride", ".header", ".subheader", ".tags"];
@@ -1,9 +1,9 @@
1
1
  import { ref, computed, openBlock, createElementBlock, createElementVNode, createBlock, unref, createCommentVNode, createVNode, withCtx, mergeProps } from 'vue';
2
- import _sfc_main$2 from './PopUp-B0_c0207.js';
3
- import _sfc_main$3 from './EodashItemFilter-CFNKjm_Z.js';
4
- import _sfc_main$1 from './EodashLayoutSwitcher-DM0zDhvI.js';
2
+ import _sfc_main$2 from './PopUp-Bmfn3N_4.js';
3
+ import _sfc_main$3 from './EodashItemFilter-G7YsYO3B.js';
4
+ import _sfc_main$1 from './EodashLayoutSwitcher-DRKm8A8U.js';
5
5
  import { mdiViewDashboard, mdiPlus } from '@mdi/js';
6
- import { t as useDisplay, a1 as makePanelTransparent, V as VBtn } from './asWebComponent-D8bMMCEr.js';
6
+ import { t as useDisplay, a1 as makePanelTransparent, V as VBtn } from './asWebComponent-DW1XzZkL.js';
7
7
 
8
8
  const _hoisted_1 = { class: "d-flex flex-row justify-space-between pa-4 align-center" };
9
9
 
@@ -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-B0_c0207.js';
4
- import { am as createSimpleFunctional, g as genericComponent, b as makeComponentProps, D as provideDefaults, a as useRender, p as propsFactory, c as makeTagProps, I as IconValue, K as makeBorderProps, A as makeDensityProps, M as makeRoundedProps, an as makeSizeProps, d as makeThemeProps, ao as makeVariantProps, e as provideTheme, N as useBorder, ap as useVariant, B as useDensity, P as useRounded, aq as useSize, y as VIcon, Q as VDefaultsProvider, ar as genOverlays, H as makeDimensionProps, L as makeElevationProps, as as makeLoaderProps, at as makeLocationProps, au as makePositionProps, av as makeRouterProps, aw as Ripple, J as useDimension, O as useElevation, ax as useLoader, ay as useLocation, az as usePosition, aA as useLink, aB as LoaderSlot, u as useTextColor, q as convertToUnit, _ as _export_sfc, ag as getLayers, aC as removeUnneededProperties, aD as VRow, aE as VCol, V as VBtn, aF as copyToClipBoard, ad as mapPosition, a8 as availableMapProjection } from './asWebComponent-D8bMMCEr.js';
5
- import { a as VExpandTransition } from './index-CpK_Yaom.js';
6
- import { V as VImg } from './VImg-BpDhCbL0.js';
3
+ import _sfc_main$1 from './PopUp-Bmfn3N_4.js';
4
+ import { an as createSimpleFunctional, g as genericComponent, b as makeComponentProps, D as provideDefaults, a as useRender, p as propsFactory, c as makeTagProps, I as IconValue, K as makeBorderProps, A as makeDensityProps, M as makeRoundedProps, ao as makeSizeProps, d as makeThemeProps, ap as makeVariantProps, e as provideTheme, N as useBorder, aq as useVariant, B as useDensity, P as useRounded, ar as useSize, y as VIcon, Q as VDefaultsProvider, as as genOverlays, H as makeDimensionProps, L as makeElevationProps, at as makeLoaderProps, au as makeLocationProps, av as makePositionProps, aw as makeRouterProps, ax as Ripple, J as useDimension, O as useElevation, ay as useLoader, az as useLocation, aA as usePosition, aB as useLink, aC as LoaderSlot, u as useTextColor, q as convertToUnit, _ as _export_sfc, ai as getLayers, aD as removeUnneededProperties, aE as VRow, aF as VCol, V as VBtn, aG as copyToClipBoard, af as mapPosition, a9 as availableMapProjection } from './asWebComponent-DW1XzZkL.js';
5
+ import { a as VExpandTransition } from './index-DvFppNyk.js';
6
+ import { V as VImg } from './VImg-CUF4S39i.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, K as makeBorderProps, b as makeComponentProps, L as makeElevationProps, T as makeLayoutItemProps, M as makeRoundedProps, c as makeTagProps, d as makeThemeProps, g as genericComponent, e as provideTheme, C as useBackgroundColor, N as useBorder, O as useElevation, P as useRounded, v as useResizeObserver, U as useToggleScope, a as useRender, q as convertToUnit, W as useLayoutItem, _ as _export_sfc, X as eodashKey, t as useDisplay } from './asWebComponent-D8bMMCEr.js';
2
+ import { p as propsFactory, K as makeBorderProps, b as makeComponentProps, L as makeElevationProps, T as makeLayoutItemProps, M as makeRoundedProps, c as makeTagProps, d as makeThemeProps, g as genericComponent, e as provideTheme, C as useBackgroundColor, N as useBorder, O as useElevation, P as useRounded, v as useResizeObserver, U as useToggleScope, a as useRender, q as convertToUnit, W as useLayoutItem, _ as _export_sfc, X as eodashKey, t as useDisplay } from './asWebComponent-DW1XzZkL.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, K as makeBorderProps, L as makeElevationProps, M as makeRoundedProps, d as makeThemeProps, C as useBackgroundColor, N as useBorder, O as useElevation, P as useRounded, e as provideTheme, f as useRtl, D as provideDefaults, Q as VDefaultsProvider, q as convertToUnit, R as clamp, S as consoleWarn, T as makeLayoutItemProps, j as useProxiedModel, U as useToggleScope, W as useLayoutItem, _ as _export_sfc, X as eodashKey } from './asWebComponent-D8bMMCEr.js';
3
- import { a as VExpandTransition } from './index-CpK_Yaom.js';
4
- import { V as VImg } from './VImg-BpDhCbL0.js';
2
+ import { p as propsFactory, b as makeComponentProps, c as makeTagProps, g as genericComponent, a as useRender, K as makeBorderProps, L as makeElevationProps, M as makeRoundedProps, d as makeThemeProps, C as useBackgroundColor, N as useBorder, O as useElevation, P as useRounded, e as provideTheme, f as useRtl, D as provideDefaults, Q as VDefaultsProvider, q as convertToUnit, R as clamp, S as consoleWarn, T as makeLayoutItemProps, j as useProxiedModel, U as useToggleScope, W as useLayoutItem, _ as _export_sfc, X as eodashKey } from './asWebComponent-DW1XzZkL.js';
3
+ import { a as VExpandTransition } from './index-DvFppNyk.js';
4
+ import { V as VImg } from './VImg-CUF4S39i.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, createElementVNode, createTextVNode, 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 useDefineTemplate, G as useLayout } from './asWebComponent-D8bMMCEr.js';
3
- import { V as VMain } from './VMain-DC05bDwX.js';
4
- import { f as forwardRefs, a as animate, s as standardEasing, m as makeLazyProps, u as useLazy, b as useScopeId } from './forwardRefs-yw6tFXER.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 useDefineTemplate, G as useLayout } from './asWebComponent-DW1XzZkL.js';
3
+ import { V as VMain } from './VMain-CQpXnzDR.js';
4
+ import { f as forwardRefs, a as animate, s as standardEasing, m as makeLazyProps, u as useLazy, b as useScopeId } from './forwardRefs-gx1Fzngc.js';
5
5
  import { u as useSsrBoot } from './ssrBoot-BP7SYRyC.js';
6
- import { M as MaybeTransition } from './transition-B2YwqAYJ.js';
7
- import { V as VFadeTransition } from './index-CpK_Yaom.js';
6
+ import { M as MaybeTransition } from './transition-j2eWJYMg.js';
7
+ import { V as VFadeTransition } from './index-DvFppNyk.js';
8
8
 
9
9
  // Utilities
10
10
  const handleGesture = wrapper => {
@@ -1,7 +1,7 @@
1
1
  import { createVNode, Transition, mergeProps, ref, onBeforeUnmount, 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, Q as VDefaultsProvider, K as makeBorderProps, b as makeComponentProps, H as makeDimensionProps, L as makeElevationProps, at as makeLocationProps, au as makePositionProps, M as makeRoundedProps, c as makeTagProps, d as makeThemeProps, e as provideTheme, C as useBackgroundColor, N as useBorder, J as useDimension, O as useElevation, ay as useLocation, az as usePosition, P as useRounded, aI as useDefineWidgets } from './asWebComponent-D8bMMCEr.js';
3
- import { m as makeVOverlayProps, V as VOverlay } from './VOverlay-C7EUyVe_.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-yw6tFXER.js';
2
+ import { g as genericComponent, p as propsFactory, j as useProxiedModel, x as IN_BROWSER, a as useRender, z as focusableChildren, Q as VDefaultsProvider, K as makeBorderProps, b as makeComponentProps, H as makeDimensionProps, L as makeElevationProps, au as makeLocationProps, av as makePositionProps, M as makeRoundedProps, c as makeTagProps, d as makeThemeProps, e as provideTheme, C as useBackgroundColor, N as useBorder, J as useDimension, O as useElevation, az as useLocation, aA as usePosition, P as useRounded, aJ as useDefineWidgets } from './asWebComponent-DW1XzZkL.js';
3
+ import { m as makeVOverlayProps, V as VOverlay } from './VOverlay-DUnITwM1.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-gx1Fzngc.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 { aG as SUPPORTS_INTERSECTION, p as propsFactory, b as makeComponentProps, H as makeDimensionProps, g as genericComponent, J as useDimension, a as useRender, M as makeRoundedProps, C as useBackgroundColor, P as useRounded, aH as getCurrentInstance, q as convertToUnit } from './asWebComponent-D8bMMCEr.js';
3
- import { m as makeTransitionProps, M as MaybeTransition } from './transition-B2YwqAYJ.js';
2
+ import { aH as SUPPORTS_INTERSECTION, p as propsFactory, b as makeComponentProps, H as makeDimensionProps, g as genericComponent, J as useDimension, a as useRender, M as makeRoundedProps, C as useBackgroundColor, P as useRounded, aI as getCurrentInstance, q as convertToUnit } from './asWebComponent-DW1XzZkL.js';
3
+ import { m as makeTransitionProps, M as MaybeTransition } from './transition-j2eWJYMg.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, H as makeDimensionProps, c as makeTagProps, g as genericComponent, J as useDimension, G as useLayout, a as useRender } from './asWebComponent-D8bMMCEr.js';
2
+ import { p as propsFactory, b as makeComponentProps, H as makeDimensionProps, c as makeTagProps, g as genericComponent, J as useDimension, G as useLayout, a as useRender } from './asWebComponent-DW1XzZkL.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 { aJ as isOn, aK as eventName, p as propsFactory, x as IN_BROWSER, U as useToggleScope, aL as destructComputed, aM as parseAnchor, aN as flipSide, aO as flipAlign, aP as flipCorner, Y as consoleError, aQ as getAxis, q as convertToUnit, R as clamp, aR as defer, aH as getCurrentInstance, aS as templateRef, aT as matchesSelector, t as useDisplay, b as makeComponentProps, H as makeDimensionProps, d as makeThemeProps, g as genericComponent, j as useProxiedModel, e as provideTheme, f as useRtl, C as useBackgroundColor, J as useDimension, aU as useRouter, a as useRender, aV as useBackButton } from './asWebComponent-D8bMMCEr.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-yw6tFXER.js';
4
- import { m as makeTransitionProps, M as MaybeTransition } from './transition-B2YwqAYJ.js';
2
+ import { aK as isOn, aL as eventName, p as propsFactory, x as IN_BROWSER, U as useToggleScope, aM as destructComputed, aN as parseAnchor, aO as flipSide, aP as flipAlign, aQ as flipCorner, Y as consoleError, aR as getAxis, q as convertToUnit, R as clamp, aS as defer, aI as getCurrentInstance, aT as templateRef, aU as matchesSelector, t as useDisplay, b as makeComponentProps, H as makeDimensionProps, d as makeThemeProps, g as genericComponent, j as useProxiedModel, e as provideTheme, f as useRtl, C as useBackgroundColor, J as useDimension, aV as useRouter, a as useRender, aW as useBackButton } from './asWebComponent-DW1XzZkL.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-gx1Fzngc.js';
4
+ import { m as makeTransitionProps, M as MaybeTransition } from './transition-j2eWJYMg.js';
5
5
 
6
6
  // Utilities
7
7
  const handlers = new WeakMap();
@@ -1,7 +1,7 @@
1
1
  import { computed, ref, mergeProps, createVNode } from 'vue';
2
- import { m as makeVOverlayProps, V as VOverlay } from './VOverlay-C7EUyVe_.js';
3
- import { b as useScopeId, f as forwardRefs } from './forwardRefs-yw6tFXER.js';
4
- import { p as propsFactory, o as omit, g as genericComponent, j as useProxiedModel, al as getUid, a as useRender } from './asWebComponent-D8bMMCEr.js';
2
+ import { m as makeVOverlayProps, V as VOverlay } from './VOverlay-DUnITwM1.js';
3
+ import { b as useScopeId, f as forwardRefs } from './forwardRefs-gx1Fzngc.js';
4
+ import { p as propsFactory, o as omit, g as genericComponent, j as useProxiedModel, am as getUid, a as useRender } from './asWebComponent-DW1XzZkL.js';
5
5
 
6
6
  const makeVTooltipProps = propsFactory({
7
7
  id: String,
@@ -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 { aI as useDefineWidgets, G as useLayout } from './asWebComponent-D8bMMCEr.js';
2
+ import { aJ as useDefineWidgets, G as useLayout } from './asWebComponent-DW1XzZkL.js';
3
3
  import 'animated-details';
4
4
 
5
5
  const _sfc_main = {