@eodash/eodash 5.6.0 → 5.6.1
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.
- package/core/client/eodashSTAC/EodashCollection.js +5 -1
- package/core/client/eodashSTAC/helpers.js +4 -4
- package/dist/client/{DashboardLayout-DkKDhfgH.js → DashboardLayout-CqMb7OXc.js} +2 -2
- package/dist/client/{DynamicWebComponent-BrpkA-e3.js → DynamicWebComponent-DqKqTf7l.js} +1 -1
- package/dist/client/{EodashChart-p7_1FRlF.js → EodashChart-PkUQfH0k.js} +4 -4
- package/dist/client/{EodashDatePicker-HK0Jl7wQ.js → EodashDatePicker-DLJGdTtX.js} +3 -3
- package/dist/client/{EodashItemFilter-BYQDA78B.js → EodashItemFilter-Dk8KjFcX.js} +1 -1
- package/dist/client/{EodashLayerControl-NcrNncGn.js → EodashLayerControl-CC1Cogrn.js} +2 -2
- package/dist/client/{EodashLayoutSwitcher-CC2Znd0I.js → EodashLayoutSwitcher-5WZYd6rr.js} +3 -3
- package/dist/client/{EodashMapBtns-BJSh7qT-.js → EodashMapBtns-BHrSDNoC.js} +6 -6
- package/dist/client/{EodashStacInfo-BA-0UjvT.js → EodashStacInfo-B90wobPc.js} +31 -31
- package/dist/client/{EodashTimeSlider-GDv1hbw7.js → EodashTimeSlider-5vm7F3ju.js} +2 -2
- package/dist/client/{EodashTools-CWmoH0g_.js → EodashTools-CGZtTh45.js} +4 -4
- package/dist/client/{ExportState-CfAfX4RN.js → ExportState-Ce0ZnrX_.js} +4 -4
- package/dist/client/{Footer-DLGxQTZt.js → Footer-CnZqEiop.js} +1 -1
- package/dist/client/{Header-eyEyyzD6.js → Header-Dr5PBIm8.js} +2 -2
- package/dist/client/{MobileLayout-RzLOyXwL.js → MobileLayout-DyMjaeif.js} +2 -2
- package/dist/client/{PopUp-WNs6Io2N.js → PopUp-DjvE_71e.js} +2 -2
- package/dist/client/{ProcessList-RzVqbd5E.js → ProcessList-kf3olI7W.js} +4 -4
- package/dist/client/{VImg-GKUTFoV-.js → VImg-Bj6uWt6j.js} +2 -2
- package/dist/client/{VMain-D7_72mHr.js → VMain-Cm0UmKGi.js} +1 -1
- package/dist/client/{VTooltip-BbmvtvYw.js → VTooltip-DbBu-ky3.js} +2 -2
- package/dist/client/{WidgetsContainer-Dw5d7SOW.js → WidgetsContainer-CfLnd44U.js} +1 -1
- package/dist/client/{asWebComponent-DDt7V3Bl.js → asWebComponent-DfULAbpq.js} +13 -9
- package/dist/client/{async-CT3KEV52.js → async-CIbKXEEe.js} +10 -20
- package/dist/client/eo-dash.js +1 -1
- package/dist/client/{forwardRefs-CVzxyoSq.js → forwardRefs-yj3VWOK5.js} +2 -2
- package/dist/client/{handling-C285F_Mq.js → handling-s8xt2JwF.js} +390 -90
- package/dist/client/{helpers-CZFH0EVN.js → helpers-DAVGYl_f.js} +4 -4
- package/dist/client/{index-B-m7V3Kb.js → index-4TrjfJ32.js} +3 -3
- package/dist/client/{index-B_6H-N14.js → index-Bu8BMA9q.js} +39 -31
- package/dist/client/{index-DgOXD7wd.js → index-CYz6dT7K.js} +2 -2
- package/dist/client/{index-CF3ZMzTz.js → index-CugS__t5.js} +3 -3
- package/dist/client/templates.js +1 -1
- package/dist/client/{transition-C2gnrWg0.js → transition-DaOsiD4u.js} +1 -1
- package/dist/types/widgets/EodashProcess/methods/composables.d.ts +1 -2
- package/dist/types/widgets/EodashProcess/methods/handling.d.ts +6 -6
- package/dist/types/widgets/EodashProcess/methods/outputs.d.ts +3 -1
- package/dist/types/widgets/EodashProcess/methods/template-helpers.d.ts +99 -0
- package/dist/types/widgets/EodashProcess/methods/utils.d.ts +1 -6
- package/dist/types/widgets/EodashProcess/types.d.ts +1 -0
- package/dist/types/widgets/EodashStacInfo.vue.d.ts +10 -10
- package/package.json +1 -1
- package/widgets/EodashProcess/index.vue +16 -12
- package/widgets/EodashProcess/methods/composables.js +18 -15
- package/widgets/EodashProcess/methods/handling.js +78 -62
- package/widgets/EodashProcess/methods/outputs.js +74 -29
- package/widgets/EodashProcess/methods/template-helpers.js +246 -0
- package/widgets/EodashProcess/methods/utils.js +7 -17
- package/widgets/EodashProcess/types.ts +1 -0
- package/widgets/EodashStacInfo.vue +30 -30
|
@@ -464,7 +464,11 @@ export class EodashCollection {
|
|
|
464
464
|
|
|
465
465
|
// Emit event to update potential widget dependencies such as process layer ids
|
|
466
466
|
const layersEvents = useEventBus(eoxLayersKey);
|
|
467
|
-
|
|
467
|
+
if (map === "second") {
|
|
468
|
+
layersEvents.emit("compareLayertime:updated", newLayers);
|
|
469
|
+
} else {
|
|
470
|
+
layersEvents.emit("layertime:updated", newLayers);
|
|
471
|
+
}
|
|
468
472
|
|
|
469
473
|
return updatedLayers;
|
|
470
474
|
}
|
|
@@ -349,11 +349,11 @@ export const extractLayerTimeValues = (items, currentStep) => {
|
|
|
349
349
|
export const findLayersByLayerPrefix = (layers, referenceLayer) => {
|
|
350
350
|
const refId = referenceLayer?.properties?.id;
|
|
351
351
|
|
|
352
|
-
if (typeof refId !== "string" || !refId.includes("
|
|
353
|
-
throw new Error("Reference layer ID must contain a '
|
|
352
|
+
if (typeof refId !== "string" || !refId.includes(";:;")) {
|
|
353
|
+
throw new Error("Reference layer ID must contain a ';:;' separator.");
|
|
354
354
|
}
|
|
355
355
|
|
|
356
|
-
const prefix = refId.split("
|
|
356
|
+
const prefix = refId.split(";:;")[0];
|
|
357
357
|
const matches = [];
|
|
358
358
|
|
|
359
359
|
for (const layer of layers) {
|
|
@@ -361,7 +361,7 @@ export const findLayersByLayerPrefix = (layers, referenceLayer) => {
|
|
|
361
361
|
matches.push(...findLayersByLayerPrefix(layer.layers, referenceLayer));
|
|
362
362
|
} else {
|
|
363
363
|
const id = layer?.properties?.id;
|
|
364
|
-
if (typeof id === "string" && id.
|
|
364
|
+
if (typeof id === "string" && id.split(";:;")[0] === prefix) {
|
|
365
365
|
matches.push(layer);
|
|
366
366
|
}
|
|
367
367
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { openBlock, createBlock, withCtx, createElementVNode, unref, createElementBlock, normalizeStyle, Suspense, resolveDynamicComponent, mergeProps, createCommentVNode, Fragment, renderList, Transition } from 'vue';
|
|
2
2
|
import '@eox/layout';
|
|
3
|
-
import { _ as _export_sfc, u as useDefineTemplate } from './asWebComponent-
|
|
4
|
-
import { V as VMain } from './VMain-
|
|
3
|
+
import { _ as _export_sfc, u as useDefineTemplate } from './asWebComponent-DfULAbpq.js';
|
|
4
|
+
import { V as VMain } from './VMain-Cm0UmKGi.js';
|
|
5
5
|
|
|
6
6
|
const _style_0 = ".panel[data-v-9c8477cc]{position:relative;overflow:auto;z-index:1;pointer-events:none}.pointer[data-v-9c8477cc]{pointer-events:all}.bg-panel[data-v-9c8477cc]{z-index:0;border-radius:0!important}.fade-enter-active[data-v-9c8477cc],.fade-leave-active[data-v-9c8477cc]{transition:opacity .25s ease}.fade-enter-from[data-v-9c8477cc],.fade-leave-to[data-v-9c8477cc]{opacity:0}.bg-surface[data-v-9c8477cc],.bg-primary[data-v-9c8477cc]{backdrop-filter:blur(10px)!important;border-radius:8px;border:none;box-shadow:0 0 1px #18274b38,0 6px 12px -6px #18274b1f,0 8px 24px -4px #18274b14;max-height:100%;overflow:auto;scrollbar-color:rgba(var(--v-theme-on-surface),.2) transparent;scrollbar-width:thin}.bg-surface[data-v-9c8477cc]{background-color:rgba(var(--v-theme-surface),var(--v-surface-opacity, .8))!important}.bg-primary[data-v-9c8477cc]{background-color:rgba(var(--v-theme-primary),var(--v-primary-opacity, .8))!important}";
|
|
7
7
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { withAsyncContext, ref, onMounted, onUnmounted, openBlock, createElementBlock, createBlock, resolveDynamicComponent, mergeProps } from 'vue';
|
|
2
|
-
import { H as useSTAcStore } from './asWebComponent-
|
|
2
|
+
import { H as useSTAcStore } from './asWebComponent-DfULAbpq.js';
|
|
3
3
|
|
|
4
4
|
const _hoisted_1 = { class: "d-flex flex-column fill-height overflow-auto" };
|
|
5
5
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { computed, ref, useTemplateRef, onMounted, onBeforeUnmount, openBlock, createElementBlock, createElementVNode, withDirectives, unref, createCommentVNode, normalizeStyle, toRaw } from 'vue';
|
|
2
2
|
import '@eox/chart';
|
|
3
|
-
import { o as onChartClick } from './handling-
|
|
4
|
-
import { Z as compareChartData, _ as chartData, O as compareChartSpec, N as chartSpec, M as areChartsSeparateLayout } from './helpers-
|
|
5
|
-
import { _ as _export_sfc, W as getOverlayParent } from './asWebComponent-
|
|
3
|
+
import { o as onChartClick } from './handling-s8xt2JwF.js';
|
|
4
|
+
import { Z as compareChartData, _ as chartData, O as compareChartSpec, N as chartSpec, M as areChartsSeparateLayout } from './helpers-DAVGYl_f.js';
|
|
5
|
+
import { _ as _export_sfc, W as getOverlayParent } from './asWebComponent-DfULAbpq.js';
|
|
6
6
|
import { mdiArrowCollapse, mdiArrowExpand } from '@mdi/js';
|
|
7
|
-
import { T as Tooltip } from './index-
|
|
7
|
+
import { T as Tooltip } from './index-CYz6dT7K.js';
|
|
8
8
|
|
|
9
9
|
const _style_0 = ".chart-frame[data-v-c9dee45e]{position:relative}.chart-toggle[data-v-c9dee45e]{position:absolute;top:18px;right:46px;z-index:2;cursor:pointer}";
|
|
10
10
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { useCssVars, useTemplateRef, customRef, ref, computed, reactive, watch, onMounted, openBlock, createElementBlock, createVNode, unref, createSlots, withCtx, createElementVNode, withDirectives, createBlock, createCommentVNode, mergeProps, toHandlers } from 'vue';
|
|
2
2
|
import { DatePicker } from 'v-calendar';
|
|
3
|
-
import { _ as _export_sfc, G as useDisplay, H as useSTAcStore, I as useTransparentPanel, J as VBtn, K as VIcon, L as eodashCollections, M as eodashCompareCollections } from './asWebComponent-
|
|
4
|
-
import { B as datetime } from './helpers-
|
|
3
|
+
import { _ as _export_sfc, G as useDisplay, H as useSTAcStore, I as useTransparentPanel, J as VBtn, K as VIcon, L as eodashCollections, M as eodashCompareCollections } from './asWebComponent-DfULAbpq.js';
|
|
4
|
+
import { B as datetime } from './helpers-DAVGYl_f.js';
|
|
5
5
|
import { mdiRayEndArrow, mdiRayStartArrow } from '@mdi/js';
|
|
6
6
|
import log from 'loglevel';
|
|
7
7
|
import { storeToRefs } from 'pinia';
|
|
8
|
-
import { T as Tooltip } from './index-
|
|
8
|
+
import { T as Tooltip } from './index-CYz6dT7K.js';
|
|
9
9
|
|
|
10
10
|
const _style_0 = ".vc-popover-content{--vc-nav-hover-bg: rgba(var(--v-theme-on-surface), .1);--vc-nav-item-active-color: rgb(var(--v-theme-on-secondary));--vc-nav-item-active-bg: rgba(var(--v-theme-secondary), .8);--vc-focus-ring: 0 0 0 2px rgba(var(--v-theme-secondary), .5)}.vc-container{--vc-day-content-hover-bg: rgba(var(--v-theme-on-surface), .2);--vc-focus-ring: 0 0 0 2px rgba(var(--v-theme-secondary), .4);--vc-header-arrow-hover-bg: rgba(var(--v-theme-secondary), .1)}.vc-attr{--vc-accent-600: rgba(var(--v-theme-secondary), .8)}.datePicker{--vc-day-content-hover-bg: red}@media(min-width:960px){.datePicker{position:absolute;bottom:0;left:0;right:0;margin-inline:auto;width:fit-content}}.vc-day-content{color:#5e5e5e;font-weight:400}.vc-highlight-content-solid{color:#fff!important}.vc-popover-content-wrapper{transform:var(--v518b583c)!important}.vc-date-picker-content,.datePicker{backdrop-filter:blur(10px)!important;border-radius:8px;border:none;box-shadow:0 0 1px #18274b38,0 6px 12px -6px #18274b1f,0 8px 24px -4px #18274b14;background-color:rgba(var(--v-theme-surface),var(--v-surface-opacity, .8))!important}.vc-popover-caret.direction-top.align-left{clip-path:polygon(0% 0%,100% 0%,0% 100%,0% 100%)}.vc-bordered{border:none}";
|
|
11
11
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { withAsyncContext, computed, ref, openBlock, createElementBlock, mergeProps, unref, createElementVNode, toDisplayString } from 'vue';
|
|
2
|
-
import { _ as _export_sfc, H as useSTAcStore, T as isFirstLoad } from './asWebComponent-
|
|
2
|
+
import { _ as _export_sfc, H as useSTAcStore, T as isFirstLoad } from './asWebComponent-DfULAbpq.js';
|
|
3
3
|
|
|
4
4
|
const _style_0 = "eox-itemfilter[data-v-88d0abc7]{--form-flex-direction: row}@media(max-width:768px){eox-itemfilter[data-v-88d0abc7]{--form-flex-direction: column}}";
|
|
5
5
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { withAsyncContext, computed, ref, openBlock, createElementBlock, mergeProps, unref, renderSlot, createElementVNode, toDisplayString, createCommentVNode } from 'vue';
|
|
2
2
|
import 'color-legend-element';
|
|
3
3
|
import '@eox/timecontrol';
|
|
4
|
-
import { S as mapCompareEl, i as mapEl, T as getColFromLayer } from './helpers-
|
|
5
|
-
import { _ as _export_sfc, H as useSTAcStore, P as layerControlFormValueCompare, Q as layerControlFormValue, M as eodashCompareCollections, L as eodashCollections } from './asWebComponent-
|
|
4
|
+
import { S as mapCompareEl, i as mapEl, T as getColFromLayer } from './helpers-DAVGYl_f.js';
|
|
5
|
+
import { _ as _export_sfc, H as useSTAcStore, P as layerControlFormValueCompare, Q as layerControlFormValue, M as eodashCompareCollections, L as eodashCollections } from './asWebComponent-DfULAbpq.js';
|
|
6
6
|
import { storeToRefs } from 'pinia';
|
|
7
7
|
|
|
8
8
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ref, openBlock, createElementBlock, unref, createBlock, withCtx, createVNode, mergeProps } from 'vue';
|
|
2
|
-
import { D as activeTemplate } from './helpers-
|
|
2
|
+
import { D as activeTemplate } from './helpers-DAVGYl_f.js';
|
|
3
3
|
import { mdiViewDashboard } from '@mdi/js';
|
|
4
|
-
import { G as useDisplay, I as useTransparentPanel, K as VIcon } from './asWebComponent-
|
|
5
|
-
import { V as VTooltip } from './VTooltip-
|
|
4
|
+
import { G as useDisplay, I as useTransparentPanel, K as VIcon } from './asWebComponent-DfULAbpq.js';
|
|
5
|
+
import { V as VTooltip } from './VTooltip-DbBu-ky3.js';
|
|
6
6
|
|
|
7
7
|
const _sfc_main = {
|
|
8
8
|
__name: 'EodashLayoutSwitcher',
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { triggerRef, ref, computed, openBlock, createElementBlock, unref, createElementVNode, createCommentVNode, createBlock, toDisplayString, createVNode, isRef, withCtx, mergeProps } from 'vue';
|
|
2
|
-
import { H as useSTAcStore, _ as _export_sfc, G as useDisplay, I as useTransparentPanel } from './asWebComponent-
|
|
3
|
-
import { i as mapEl, D as activeTemplate, W as setActiveTemplate, V as isGlobe, v as getLayers, X as availableMapProjection, Y as changeMapProjection, C as poi, J as comparePoi } from './helpers-
|
|
2
|
+
import { H as useSTAcStore, _ as _export_sfc, G as useDisplay, I as useTransparentPanel } from './asWebComponent-DfULAbpq.js';
|
|
3
|
+
import { i as mapEl, D as activeTemplate, W as setActiveTemplate, V as isGlobe, v as getLayers, X as availableMapProjection, Y as changeMapProjection, C as poi, J as comparePoi } from './helpers-DAVGYl_f.js';
|
|
4
4
|
import { mdiCompareRemove, mdiCompare, mdiPlus, mdiMinus, mdiMapPlus, mdiEarthBox, mdiStarFourPointsCircleOutline, mdiEarth } from '@mdi/js';
|
|
5
|
-
import ExportState from './ExportState-
|
|
6
|
-
import _sfc_main$1 from './PopUp-
|
|
7
|
-
import EodashItemFilter from './EodashItemFilter-
|
|
8
|
-
import { l as loadPOiIndicator } from './handling-
|
|
5
|
+
import ExportState from './ExportState-Ce0ZnrX_.js';
|
|
6
|
+
import _sfc_main$1 from './PopUp-DjvE_71e.js';
|
|
7
|
+
import EodashItemFilter from './EodashItemFilter-Dk8KjFcX.js';
|
|
8
|
+
import { l as loadPOiIndicator } from './handling-s8xt2JwF.js';
|
|
9
9
|
import { e as easeOut } from './easing-CH0-9wR8.js';
|
|
10
10
|
import { storeToRefs } from 'pinia';
|
|
11
11
|
import '@eox/geosearch';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { openBlock, createElementBlock, createElementVNode, unref } from 'vue';
|
|
2
2
|
import '@eox/stacinfo';
|
|
3
|
-
import { G as currentUrl } from './helpers-
|
|
3
|
+
import { G as currentUrl } from './helpers-DAVGYl_f.js';
|
|
4
4
|
|
|
5
5
|
const _hoisted_1 = { class: "flex-grow-1" };
|
|
6
6
|
const _hoisted_2 = [".for", ".allowHtml", ".body", ".featured", ".footer", ".header", ".tags"];
|
|
@@ -15,38 +15,38 @@ const _sfc_main = {
|
|
|
15
15
|
},
|
|
16
16
|
|
|
17
17
|
header: {
|
|
18
|
-
/**
|
|
18
|
+
/**
|
|
19
19
|
* @type {import("vue").PropType<
|
|
20
|
-
* (string | {
|
|
21
|
-
* key: string,
|
|
22
|
-
* filter?: (item: any) => boolean
|
|
20
|
+
* (string | {
|
|
21
|
+
* key: string,
|
|
22
|
+
* filter?: (item: any) => boolean
|
|
23
23
|
* })[]
|
|
24
|
-
* >}
|
|
25
|
-
|
|
24
|
+
* >}
|
|
25
|
+
*/
|
|
26
26
|
type: Array,
|
|
27
27
|
default: () => ["title"],
|
|
28
28
|
},
|
|
29
29
|
tags: {
|
|
30
|
-
/**
|
|
30
|
+
/**
|
|
31
31
|
* @type {import("vue").PropType<
|
|
32
|
-
* (string | {
|
|
33
|
-
* key: string,
|
|
34
|
-
* filter?: (item: any) => boolean
|
|
32
|
+
* (string | {
|
|
33
|
+
* key: string,
|
|
34
|
+
* filter?: (item: any) => boolean
|
|
35
35
|
* })[]
|
|
36
|
-
* >}
|
|
37
|
-
|
|
36
|
+
* >}
|
|
37
|
+
*/
|
|
38
38
|
type: Array,
|
|
39
39
|
default: () => ["themes"],
|
|
40
40
|
},
|
|
41
41
|
body: {
|
|
42
|
-
/**
|
|
42
|
+
/**
|
|
43
43
|
* @type {import("vue").PropType<
|
|
44
|
-
* (string | {
|
|
45
|
-
* key: string,
|
|
46
|
-
* filter?: (item: any) => boolean
|
|
44
|
+
* (string | {
|
|
45
|
+
* key: string,
|
|
46
|
+
* filter?: (item: any) => boolean
|
|
47
47
|
* })[]
|
|
48
|
-
* >}
|
|
49
|
-
|
|
48
|
+
* >}
|
|
49
|
+
*/
|
|
50
50
|
type: Array,
|
|
51
51
|
default: () => [
|
|
52
52
|
"satellite",
|
|
@@ -58,26 +58,26 @@ const _sfc_main = {
|
|
|
58
58
|
],
|
|
59
59
|
},
|
|
60
60
|
featured: {
|
|
61
|
-
/**
|
|
61
|
+
/**
|
|
62
62
|
* @type {import("vue").PropType<
|
|
63
|
-
* (string | {
|
|
64
|
-
* key: string,
|
|
65
|
-
* filter?: (item: any) => boolean
|
|
63
|
+
* (string | {
|
|
64
|
+
* key: string,
|
|
65
|
+
* filter?: (item: any) => boolean
|
|
66
66
|
* })[]
|
|
67
|
-
* >}
|
|
68
|
-
|
|
67
|
+
* >}
|
|
68
|
+
*/
|
|
69
69
|
type: Array,
|
|
70
70
|
default: () => ["description", "providers", "assets", "links"],
|
|
71
71
|
},
|
|
72
72
|
footer: {
|
|
73
|
-
/**
|
|
73
|
+
/**
|
|
74
74
|
* @type {import("vue").PropType<
|
|
75
|
-
* (string | {
|
|
76
|
-
* key: string,
|
|
77
|
-
* filter?: (item: any) => boolean
|
|
75
|
+
* (string | {
|
|
76
|
+
* key: string,
|
|
77
|
+
* filter?: (item: any) => boolean
|
|
78
78
|
* })[]
|
|
79
|
-
* >}
|
|
80
|
-
|
|
79
|
+
* >}
|
|
80
|
+
*/
|
|
81
81
|
type: Array,
|
|
82
82
|
default: () => ["sci:citation", "sci:doi", "sci:publication"],
|
|
83
83
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { computed, openBlock, createElementBlock, unref, createCommentVNode } from 'vue';
|
|
2
|
-
import { i as mapEl, B as datetime } from './helpers-
|
|
3
|
-
import { L as eodashCollections } from './asWebComponent-
|
|
2
|
+
import { i as mapEl, B as datetime } from './helpers-DAVGYl_f.js';
|
|
3
|
+
import { L as eodashCollections } from './asWebComponent-DfULAbpq.js';
|
|
4
4
|
import '@eox/timeslider';
|
|
5
5
|
|
|
6
6
|
const _hoisted_1 = [".filters"];
|
|
@@ -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-
|
|
3
|
-
import EodashItemFilter from './EodashItemFilter-
|
|
4
|
-
import _sfc_main$1 from './EodashLayoutSwitcher-
|
|
2
|
+
import _sfc_main$2 from './PopUp-DjvE_71e.js';
|
|
3
|
+
import EodashItemFilter from './EodashItemFilter-Dk8KjFcX.js';
|
|
4
|
+
import _sfc_main$1 from './EodashLayoutSwitcher-5WZYd6rr.js';
|
|
5
5
|
import { mdiViewDashboard, mdiPlusCircleOutline } from '@mdi/js';
|
|
6
|
-
import { _ as _export_sfc, G as useDisplay, I as useTransparentPanel, J as VBtn } from './asWebComponent-
|
|
6
|
+
import { _ as _export_sfc, G as useDisplay, I as useTransparentPanel, J as VBtn } from './asWebComponent-DfULAbpq.js';
|
|
7
7
|
|
|
8
8
|
const _style_0 = ".v-btn--size-default[data-v-73449028]{--v-btn-height: 30px}";
|
|
9
9
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { createVNode, normalizeStyle, normalizeClass, createElementVNode, Fragment, toDisplayString, shallowRef, watch, withDirectives, mergeProps, computed, toRef, useModel, ref, openBlock, createBlock, withCtx, createElementBlock, renderList, unref, createTextVNode, vShow, createCommentVNode, mergeModels } from 'vue';
|
|
2
2
|
import { mdiContentCopy, mdiClipboardCheckOutline } from '@mdi/js';
|
|
3
|
-
import _sfc_main$1 from './PopUp-
|
|
4
|
-
import { a2 as createSimpleFunctional, g as genericComponent, o as provideDefaults, c as useRender, p as propsFactory, m as makeTagProps, e as makeComponentProps, l as provideTheme, h as useBorder, a3 as useVariant, Z as useDensity, k as useRounded, a4 as useSize, K as VIcon, V as VDefaultsProvider, a5 as genOverlays, a6 as IconValue, a7 as makeVariantProps, r as makeThemeProps, a8 as makeSizeProps, s as makeRoundedProps, $ as makeDensityProps, w as makeBorderProps, a9 as Ripple, b as useDimension, i as useElevation, aa as useLoader, j as useLocation, ab as usePosition, ac as useLink, ad as makeRouterProps, ae as makePositionProps, t as makeLocationProps, af as makeLoaderProps, v as makeElevationProps, d as makeDimensionProps, q as convertToUnit, ag as LoaderSlot, ah as useTextColor, _ as _export_sfc, J as VBtn, ai as copyToClipBoard } from './asWebComponent-
|
|
5
|
-
import { N as chartSpec, a0 as removeUnneededProperties, v as getLayers, E as mapPosition, X as availableMapProjection } from './helpers-
|
|
3
|
+
import _sfc_main$1 from './PopUp-DjvE_71e.js';
|
|
4
|
+
import { a2 as createSimpleFunctional, g as genericComponent, o as provideDefaults, c as useRender, p as propsFactory, m as makeTagProps, e as makeComponentProps, l as provideTheme, h as useBorder, a3 as useVariant, Z as useDensity, k as useRounded, a4 as useSize, K as VIcon, V as VDefaultsProvider, a5 as genOverlays, a6 as IconValue, a7 as makeVariantProps, r as makeThemeProps, a8 as makeSizeProps, s as makeRoundedProps, $ as makeDensityProps, w as makeBorderProps, a9 as Ripple, b as useDimension, i as useElevation, aa as useLoader, j as useLocation, ab as usePosition, ac as useLink, ad as makeRouterProps, ae as makePositionProps, t as makeLocationProps, af as makeLoaderProps, v as makeElevationProps, d as makeDimensionProps, q as convertToUnit, ag as LoaderSlot, ah as useTextColor, _ as _export_sfc, J as VBtn, ai as copyToClipBoard } from './asWebComponent-DfULAbpq.js';
|
|
5
|
+
import { N as chartSpec, a0 as removeUnneededProperties, v as getLayers, E as mapPosition, X as availableMapProjection } from './helpers-DAVGYl_f.js';
|
|
6
6
|
import { base64EncodeSpec } from '@eox/chart';
|
|
7
|
-
import { V as VImg, a as VExpandTransition } from './VImg-
|
|
7
|
+
import { V as VImg, a as VExpandTransition } from './VImg-Bj6uWt6j.js';
|
|
8
8
|
|
|
9
9
|
// Styles
|
|
10
10
|
const VSpacer = createSimpleFunctional('v-spacer', 'div', 'VSpacer');
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ref, shallowRef, computed, toRef, watchEffect, createVNode, normalizeStyle, normalizeClass, inject, openBlock, createBlock, unref, withCtx, createElementVNode, toDisplayString } from 'vue';
|
|
2
|
-
import { g as genericComponent, l as provideTheme, f as useBackgroundColor, h as useBorder, i as useElevation, k as useRounded, F as useResizeObserver, A as useToggleScope, B as useLayoutItem, c as useRender, q as convertToUnit, p as propsFactory, r as makeThemeProps, m as makeTagProps, s as makeRoundedProps, D as makeLayoutItemProps, v as makeElevationProps, e as makeComponentProps, w as makeBorderProps, _ as _export_sfc, E as eodashKey, G as useDisplay } from './asWebComponent-
|
|
2
|
+
import { g as genericComponent, l as provideTheme, f as useBackgroundColor, h as useBorder, i as useElevation, k as useRounded, F as useResizeObserver, A as useToggleScope, B as useLayoutItem, c as useRender, q as convertToUnit, p as propsFactory, r as makeThemeProps, m as makeTagProps, s as makeRoundedProps, D as makeLayoutItemProps, v as makeElevationProps, e as makeComponentProps, w as makeBorderProps, _ as _export_sfc, E as eodashKey, G as useDisplay } from './asWebComponent-DfULAbpq.js';
|
|
3
3
|
|
|
4
4
|
const _style_0 = ".footer-text[data-v-f0fd061e]{font-size:.8rem}";
|
|
5
5
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createVNode, normalizeStyle, normalizeClass, createElementVNode, shallowRef, computed, ref, watch, onMounted, onBeforeUnmount, toRef, watchEffect, mergeProps, inject, openBlock, createBlock, withCtx, createTextVNode, toDisplayString, unref } from 'vue';
|
|
2
|
-
import { g as genericComponent, c as useRender, p as propsFactory, m as makeTagProps, e as makeComponentProps, f as useBackgroundColor, h as useBorder, i as useElevation, j as useLocation, k as useRounded, l as provideTheme, n as useRtl, o as provideDefaults, V as VDefaultsProvider, q as convertToUnit, r as makeThemeProps, s as makeRoundedProps, t as makeLocationProps, v as makeElevationProps, w as makeBorderProps, x as clamp, y as consoleWarn, z as useProxiedModel, A as useToggleScope, B as useLayoutItem, C as omit, D as makeLayoutItemProps, _ as _export_sfc, E as eodashKey } from './asWebComponent-
|
|
3
|
-
import { V as VImg, a as VExpandTransition } from './VImg-
|
|
2
|
+
import { g as genericComponent, c as useRender, p as propsFactory, m as makeTagProps, e as makeComponentProps, f as useBackgroundColor, h as useBorder, i as useElevation, j as useLocation, k as useRounded, l as provideTheme, n as useRtl, o as provideDefaults, V as VDefaultsProvider, q as convertToUnit, r as makeThemeProps, s as makeRoundedProps, t as makeLocationProps, v as makeElevationProps, w as makeBorderProps, x as clamp, y as consoleWarn, z as useProxiedModel, A as useToggleScope, B as useLayoutItem, C as omit, D as makeLayoutItemProps, _ as _export_sfc, E as eodashKey } from './asWebComponent-DfULAbpq.js';
|
|
3
|
+
import { V as VImg, a as VExpandTransition } from './VImg-Bj6uWt6j.js';
|
|
4
4
|
import { u as useSsrBoot } from './ssrBoot-Zgc_Ttvi.js';
|
|
5
5
|
|
|
6
6
|
const _style_0 = ".logo[data-v-86c95219]{max-width:140px}";
|