@eodash/eodash 5.0.0-rc.2.3 → 5.0.0-rc.2.4
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/composables/EodashMap.js +0 -1
- package/core/client/composables/EodashProcess.js +4 -0
- package/core/client/eodash.js +2 -2
- package/core/client/eodashSTAC/createLayers.js +0 -6
- package/core/client/types.ts +1 -1
- package/core/client/vite-env.d.ts +13 -0
- package/dist/client/{DashboardLayout-Reny_s87.js → DashboardLayout-D1UcB3RV.js} +3 -3
- package/dist/client/{DynamicWebComponent-DQPKIscC.js → DynamicWebComponent-DtZ_mHL9.js} +2 -2
- package/dist/client/{EodashDatePicker-E5GjnQQ2.js → EodashDatePicker-CYU0MZX5.js} +3 -3
- package/dist/client/{EodashItemFilter-DN77Uqgg.js → EodashItemFilter-SE9oW3oZ.js} +3 -3
- package/dist/client/{EodashLayerControl-DduVhg2O.js → EodashLayerControl-BuGe29Nt.js} +2 -2
- package/dist/client/{EodashLayoutSwitcher-CeNnYuaC.js → EodashLayoutSwitcher-6wLl-Gtd.js} +3 -3
- package/dist/client/{EodashMap-C3bgcNJk.js → EodashMap-DhVCoYMi.js} +3 -2
- package/dist/client/{EodashMapBtns-B73UApEn.js → EodashMapBtns-BWWu6eHG.js} +5 -5
- package/dist/client/{EodashProcess-IQPnj17j.js → EodashProcess-GSj_LMsK.js} +10 -5
- package/dist/client/{EodashStacInfo-CeZqI75-.js → EodashStacInfo-DjRSGLHM.js} +2 -2
- package/dist/client/{EodashTools-CAE604ZJ.js → EodashTools-CJ4hBH_X.js} +5 -5
- package/dist/client/{ExportState-DXw8Dwvk.js → ExportState-BqnlEpzR.js} +5 -5
- package/dist/client/{Footer-Bl9tQTyj.js → Footer-C_3WrfI4.js} +2 -2
- package/dist/client/{Header-qH_kBs-u.js → Header-D_hcGpNG.js} +4 -4
- package/dist/client/{IframeWrapper-BgM9aU8f.js → IframeWrapper-XzQDZy0T.js} +1 -1
- package/dist/client/{MobileLayout-Du5n5XyY.js → MobileLayout-CDbupC9v.js} +6 -6
- package/dist/client/{PopUp-B12NWJHU.js → PopUp-Ba6mY2jQ.js} +5 -4
- package/dist/client/{VImg-CjsuV4n9.js → VImg-Yc9F9pYq.js} +4 -4
- package/dist/client/{VMain-B11EjLm6.js → VMain-BiS7HPEk.js} +1 -1
- package/dist/client/{VOverlay-CLR2s8AQ.js → VOverlay-B9mxXaCv.js} +4 -4
- package/dist/client/{VTooltip-DqyE5_aG.js → VTooltip-XJLaLrZQ.js} +3 -3
- package/dist/client/{WidgetsContainer-YI9ZycgC.js → WidgetsContainer-DRVb_73N.js} +2 -2
- package/dist/client/{asWebComponent-DBkwthjq.js → asWebComponent-DZpMGxEY.js} +155 -154
- package/dist/client/eo-dash.css +1 -1
- package/dist/client/eo-dash.js +1 -1
- package/dist/client/{forwardRefs-BTYtR3pq.js → forwardRefs-BtkfywIE.js} +1 -1
- package/dist/client/{index-BhfdO0rU.js → index-f55xuyof.js} +3 -1
- package/dist/client/{transition-B79onGGb.js → transition-CtL4BoVi.js} +2 -2
- package/dist/node/cli.js +2 -2
- package/dist/types/core/client/components/MobileLayout.vue.d.ts +254 -241
- package/dist/types/core/client/eodashSTAC/EodashCollection.d.ts +6 -10
- package/dist/types/core/client/eodashSTAC/createLayers.d.ts +5 -5
- package/dist/types/core/client/eodashSTAC/helpers.d.ts +2 -71
- package/dist/types/widgets/PopUp.vue.d.ts +2 -2
- package/package.json +20 -20
- package/widgets/EodashItemFilter.vue +1 -1
- package/widgets/EodashMap.vue +1 -0
- package/widgets/EodashProcess.vue +5 -0
|
@@ -184,6 +184,7 @@ export function extractGeometries(jsonformValue, jsonformSchema) {
|
|
|
184
184
|
* @param {import("@eox/jsonform").EOxJSONForm | null} jsonFormEl
|
|
185
185
|
**/
|
|
186
186
|
export function injectJsonformCSS(jsonFormEl) {
|
|
187
|
+
//@ts-expect-error TODO
|
|
187
188
|
if (!jsonFormEl?.shadowRoot) {
|
|
188
189
|
console.error("jsonform has no shadowRoot");
|
|
189
190
|
return;
|
|
@@ -192,6 +193,7 @@ export function injectJsonformCSS(jsonFormEl) {
|
|
|
192
193
|
stylesheet.replaceSync(`.je-indented-panel {
|
|
193
194
|
border: none !important;
|
|
194
195
|
}`);
|
|
196
|
+
//@ts-expect-error TODO
|
|
195
197
|
jsonFormEl.shadowRoot.adoptedStyleSheets = [stylesheet];
|
|
196
198
|
}
|
|
197
199
|
|
|
@@ -446,6 +448,7 @@ export async function handleProcesses({
|
|
|
446
448
|
);
|
|
447
449
|
const bboxProperty = getBboxProperty(jsonformSchema.value);
|
|
448
450
|
const jsonformValue = /** @type {Record<string,any>} */ (
|
|
451
|
+
//@ts-expect-error todo
|
|
449
452
|
jsonformEl.value?.value
|
|
450
453
|
);
|
|
451
454
|
|
|
@@ -601,6 +604,7 @@ export async function initProcess({
|
|
|
601
604
|
processResults,
|
|
602
605
|
});
|
|
603
606
|
if (selectedStac.value["eodash:jsonform"]) {
|
|
607
|
+
//@ts-expect-error todo
|
|
604
608
|
jsonformEl.value?.editor.destroy();
|
|
605
609
|
// wait for the layers to be rendered
|
|
606
610
|
jsonformSchema.value = await axios
|
package/core/client/eodash.js
CHANGED
|
@@ -10,14 +10,14 @@ import { reactive } from "vue";
|
|
|
10
10
|
export const eodash = reactive({
|
|
11
11
|
id: "demo",
|
|
12
12
|
stacEndpoint:
|
|
13
|
-
"https://esa-eodash.github.io/RACE-catalog/RACE/catalog.json",
|
|
13
|
+
// "https://esa-eodash.github.io/RACE-catalog/RACE/catalog.json",
|
|
14
14
|
// "https://gtif-cerulean.github.io/catalog/cerulean/catalog.json",
|
|
15
15
|
// "https://eodashcatalog.eox.at/samplecatalog/samples/catalog.json",
|
|
16
16
|
// "https://eodashcatalog.eox.at/test-style/trilateral/catalog.json",
|
|
17
17
|
// "https://gtif-cerulean.github.io/catalog/cerulean/catalog.json",
|
|
18
18
|
// "https://gtif-cerulean.github.io/deside-catalog/deside/catalog.json",
|
|
19
19
|
// "https://gtif-cerulean.github.io/cerulean-catalog/cerulean/catalog.json",
|
|
20
|
-
|
|
20
|
+
"https://gtif-austria.github.io/public-catalog/GTIF-Austria/catalog.json",
|
|
21
21
|
brand: {
|
|
22
22
|
noLayout: true,
|
|
23
23
|
name: "Demo",
|
|
@@ -103,12 +103,6 @@ export async function createLayersFromAssets(
|
|
|
103
103
|
layer.properties = { ...layer.properties, ...(extraProperties ?? {}) };
|
|
104
104
|
|
|
105
105
|
jsonArray.push(layer);
|
|
106
|
-
const layer2 = structuredClone(layer)
|
|
107
|
-
// temporary solution to avoid selection of the same layer
|
|
108
|
-
// to be removed
|
|
109
|
-
layer2.interactions = []
|
|
110
|
-
layer2.properties.id = layer2.properties.id + "_selection"
|
|
111
|
-
jsonArray.push(layer2)
|
|
112
106
|
} else if (assets[ast]?.type === "image/tiff") {
|
|
113
107
|
geoTIFFIdx = idx;
|
|
114
108
|
geoTIFFSources.push({
|
package/core/client/types.ts
CHANGED
|
@@ -323,7 +323,7 @@ export declare const store: typeof import("@/store").default;
|
|
|
323
323
|
/////
|
|
324
324
|
|
|
325
325
|
export * from "./main.js";
|
|
326
|
-
|
|
326
|
+
//@ts-expect-error todo
|
|
327
327
|
export type EodashStyleJson = import("ol/style/webgl.js").WebGLStyle & {
|
|
328
328
|
variables?: Record<string, string | number | boolean | null | undefined>;
|
|
329
329
|
legend?: import("@eox/layercontrol/src/components/layer-config.js").EOxLayerControlLayerConfig["layerConfig"]["legend"];
|
|
@@ -5,6 +5,19 @@ declare module "*.vue" {
|
|
|
5
5
|
const component: DefineComponent<object, object, unknown>;
|
|
6
6
|
export default component;
|
|
7
7
|
}
|
|
8
|
+
declare module "@eox/jsonform" {
|
|
9
|
+
class EOxJSONForm extends import("lit").LitElement{
|
|
10
|
+
constructor(){
|
|
11
|
+
super();
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export { EOxJSONForm };
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
declare module "@eox/jsonform/src/custom-inputs/spatial/utils" {
|
|
18
|
+
const isMulti:(value:any)=> boolean;
|
|
19
|
+
export { isMulti };
|
|
20
|
+
}
|
|
8
21
|
declare interface Window {
|
|
9
22
|
eodashStore: typeof import("@/store").default;
|
|
10
23
|
setEodashLoglevel: typeof import("loglevel").setLevel;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { createBlock, openBlock, withCtx, createElementVNode, normalizeStyle, unref, createElementBlock, createCommentVNode, Suspense, resolveDynamicComponent, mergeProps, Fragment, renderList, Transition } from 'vue';
|
|
2
2
|
import '@eox/layout';
|
|
3
|
-
import { _ as _export_sfc, F as useDefineTemplate } from './asWebComponent-
|
|
4
|
-
import { V as VMain } from './VMain-
|
|
3
|
+
import { _ as _export_sfc, F as useDefineTemplate } from './asWebComponent-DZpMGxEY.js';
|
|
4
|
+
import { V as VMain } from './VMain-BiS7HPEk.js';
|
|
5
5
|
|
|
6
6
|
const _hoisted_1 = ["gap"];
|
|
7
7
|
const _hoisted_2 = ["id", "h", "w", "x", "y"];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { withAsyncContext, ref, onMounted, onUnmounted,
|
|
2
|
-
import { $ as useSTAcStore } from './asWebComponent-
|
|
1
|
+
import { withAsyncContext, ref, onMounted, onUnmounted, createElementBlock, openBlock, createBlock, resolveDynamicComponent, mergeProps } from 'vue';
|
|
2
|
+
import { $ as useSTAcStore } from './asWebComponent-DZpMGxEY.js';
|
|
3
3
|
|
|
4
4
|
const _hoisted_1 = { class: "d-flex flex-column fill-height overflow-auto" };
|
|
5
5
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { resolveComponent, render, h, mergeProps, useCssVars, useTemplateRef, customRef,
|
|
1
|
+
import { resolveComponent, render, h, mergeProps, useCssVars, ref, useTemplateRef, customRef, computed, reactive, toRef, watch, onMounted, createElementBlock, openBlock, createVNode, unref, createSlots, withCtx, createElementVNode, withDirectives, createCommentVNode, createBlock, toHandlers } from 'vue';
|
|
2
2
|
import { DatePicker } from 'v-calendar';
|
|
3
|
-
import { E as isObject, Y as consoleError,
|
|
3
|
+
import { E as isObject, Y as consoleError, r as useDisplay, Z as datetime, $ as useSTAcStore, a0 as eodashCollections, a1 as collectionsPalette, a2 as makePanelTransparent, V as VBtn, v as VIcon } from './asWebComponent-DZpMGxEY.js';
|
|
4
4
|
import { mdiRayEndArrow, mdiRayStartArrow } from '@mdi/js';
|
|
5
5
|
import log from 'loglevel';
|
|
6
|
-
import { V as VTooltip } from './VTooltip-
|
|
6
|
+
import { V as VTooltip } from './VTooltip-XJLaLrZQ.js';
|
|
7
7
|
|
|
8
8
|
// Utilities
|
|
9
9
|
function useDirectiveComponent(component, props) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { computed, ref,
|
|
2
|
-
import {
|
|
1
|
+
import { computed, ref, createElementBlock, openBlock, mergeProps, unref, createElementVNode, toDisplayString } from 'vue';
|
|
2
|
+
import { r as useDisplay, $ as useSTAcStore } from './asWebComponent-DZpMGxEY.js';
|
|
3
3
|
import '@eox/itemfilter';
|
|
4
4
|
|
|
5
5
|
const _hoisted_1 = [".items"];
|
|
@@ -138,7 +138,7 @@ return (_ctx, _cache) => {
|
|
|
138
138
|
ref: eoxItemFilter,
|
|
139
139
|
style: {"overflow":"auto","--background-color":"none"},
|
|
140
140
|
onSelect: onSelect,
|
|
141
|
-
".items": unref(store).stac?.filter((item) => item.rel ===
|
|
141
|
+
".items": unref(store).stac?.filter((item) => item.rel === 'child')
|
|
142
142
|
}), [
|
|
143
143
|
createElementVNode("h4", _hoisted_2, toDisplayString(__props.filtersTitle), 1 /* TEXT */),
|
|
144
144
|
createElementVNode("h4", _hoisted_3, toDisplayString(__props.resultsTitle), 1 /* TEXT */)
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { computed, ref, openBlock,
|
|
1
|
+
import { computed, ref, createElementBlock, openBlock, createCommentVNode, mergeProps, unref } from 'vue';
|
|
2
2
|
import '@eox/layercontrol';
|
|
3
3
|
import '@eox/jsonform';
|
|
4
4
|
import '@eox/timecontrol';
|
|
5
5
|
import 'color-legend-element';
|
|
6
|
-
import { $ as useSTAcStore, a3 as mapCompareEl, a4 as mapEl, a5 as eodashCompareCollections, a0 as eodashCollections, a6 as layerControlFormValue, a7 as getColFromLayer } from './asWebComponent-
|
|
6
|
+
import { $ as useSTAcStore, a3 as mapCompareEl, a4 as mapEl, a5 as eodashCompareCollections, a0 as eodashCollections, a6 as layerControlFormValue, a7 as getColFromLayer } from './asWebComponent-DZpMGxEY.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
|
-
import { ref,
|
|
2
|
-
import { a2 as makePanelTransparent,
|
|
1
|
+
import { ref, createElementBlock, openBlock, createVNode, withCtx, mergeProps } from 'vue';
|
|
2
|
+
import { a2 as makePanelTransparent, v as VIcon, al as activeTemplate } from './asWebComponent-DZpMGxEY.js';
|
|
3
3
|
import { mdiViewDashboard } from '@mdi/js';
|
|
4
|
-
import { V as VTooltip } from './VTooltip-
|
|
4
|
+
import { V as VTooltip } from './VTooltip-XJLaLrZQ.js';
|
|
5
5
|
|
|
6
6
|
const _sfc_main = {
|
|
7
7
|
__name: 'EodashLayoutSwitcher',
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { onMounted, onUnmounted, watch, nextTick, ref, toRaw, computed,
|
|
1
|
+
import { onMounted, onUnmounted, watch, nextTick, ref, toRaw, computed, createElementBlock, openBlock, createElementVNode, unref, normalizeStyle } from 'vue';
|
|
2
2
|
import '@eox/map';
|
|
3
3
|
import '@eox/map/src/plugins/advancedLayersAndSources';
|
|
4
|
-
import { a8 as eoxLayersKey, $ as useSTAcStore, a9 as setMapProjFromCol, aa as posIsSetFromUrl, ab as useOnLayersUpdate, ac as EodashCollection, ad as mapPosition, a4 as mapEl, a3 as mapCompareEl, Z as datetime, a0 as eodashCollections,
|
|
4
|
+
import { a8 as eoxLayersKey, $ as useSTAcStore, a9 as setMapProjFromCol, aa as posIsSetFromUrl, ab as useOnLayersUpdate, ac as EodashCollection, ad as mapPosition, a4 as mapEl, a3 as mapCompareEl, Z as datetime, a0 as eodashCollections, a6 as layerControlFormValue, a5 as eodashCompareCollections } from './asWebComponent-DZpMGxEY.js';
|
|
5
5
|
import { storeToRefs } from 'pinia';
|
|
6
6
|
import log from 'loglevel';
|
|
7
7
|
import { useEventBus } from '@vueuse/core';
|
|
@@ -527,6 +527,7 @@ const tooltipPropertyTransform = (param) => {
|
|
|
527
527
|
}),
|
|
528
528
|
);
|
|
529
529
|
|
|
530
|
+
//@ts-expect-error todo
|
|
530
531
|
const tooltipProp = updatedProperties?.find((prop) => prop.id === param.key);
|
|
531
532
|
if (!tooltipProp) {
|
|
532
533
|
return undefined;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { computed, ref,
|
|
2
|
-
import { _ as _export_sfc,
|
|
1
|
+
import { computed, ref, createElementBlock, openBlock, createBlock, createCommentVNode, createVNode, unref, withCtx } from 'vue';
|
|
2
|
+
import { _ as _export_sfc, r as useDisplay, a2 as makePanelTransparent, V as VBtn, ae as availableMapProjection, af as changeMapProjection, ag as setActiveTemplate } from './asWebComponent-DZpMGxEY.js';
|
|
3
3
|
import { mdiMapPlus, mdiEarthBox, mdiCompare } from '@mdi/js';
|
|
4
|
-
import ExportState from './ExportState-
|
|
5
|
-
import _sfc_main$1 from './PopUp-
|
|
6
|
-
import _sfc_main$2 from './EodashItemFilter-
|
|
4
|
+
import ExportState from './ExportState-BqnlEpzR.js';
|
|
5
|
+
import _sfc_main$1 from './PopUp-Ba6mY2jQ.js';
|
|
6
|
+
import _sfc_main$2 from './EodashItemFilter-SE9oW3oZ.js';
|
|
7
7
|
|
|
8
8
|
const _sfc_main = {
|
|
9
9
|
__name: 'EodashMapBtns',
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { createVNode, watch, onMounted,
|
|
1
|
+
import { createVNode, nextTick, watch, onMounted, ref, useTemplateRef, computed, createElementBlock, openBlock, createCommentVNode, normalizeStyle, toRaw, withCtx, createElementVNode, createBlock, createTextVNode } from 'vue';
|
|
2
2
|
import '@eox/chart';
|
|
3
3
|
import '@eox/drawtools';
|
|
4
4
|
import '@eox/jsonform';
|
|
5
|
-
import {
|
|
5
|
+
import { g as genericComponent, p as propsFactory, c as useRtl, H as useDimension, a as useRender, h as makeTagProps, J as makeDimensionProps, i as makeComponentProps, ah as axios, ai as getLayers, a4 as mapEl, aj as extractLayerConfig, a8 as eoxLayersKey, $ as useSTAcStore, ab as useOnLayersUpdate, V as VBtn } from './asWebComponent-DZpMGxEY.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';
|
|
@@ -218,6 +218,7 @@ function extractGeometries(jsonformValue, jsonformSchema) {
|
|
|
218
218
|
* @param {import("@eox/jsonform").EOxJSONForm | null} jsonFormEl
|
|
219
219
|
**/
|
|
220
220
|
function injectJsonformCSS(jsonFormEl) {
|
|
221
|
+
//@ts-expect-error TODO
|
|
221
222
|
if (!jsonFormEl?.shadowRoot) {
|
|
222
223
|
console.error("jsonform has no shadowRoot");
|
|
223
224
|
return;
|
|
@@ -226,6 +227,7 @@ function injectJsonformCSS(jsonFormEl) {
|
|
|
226
227
|
stylesheet.replaceSync(`.je-indented-panel {
|
|
227
228
|
border: none !important;
|
|
228
229
|
}`);
|
|
230
|
+
//@ts-expect-error TODO
|
|
229
231
|
jsonFormEl.shadowRoot.adoptedStyleSheets = [stylesheet];
|
|
230
232
|
}
|
|
231
233
|
|
|
@@ -427,7 +429,7 @@ async function getChartValues(links, jsonformValue, specUrl) {
|
|
|
427
429
|
for (const link of dataLinks ?? []) {
|
|
428
430
|
if (link.type && ["application/json", "text/csv"].includes(link.type)) {
|
|
429
431
|
const dataUrl = mustache.render(link.href, {
|
|
430
|
-
...(jsonformValue),
|
|
432
|
+
...(jsonformValue ?? {}),
|
|
431
433
|
...(link["eox:flatstyle"] ?? {}),
|
|
432
434
|
});
|
|
433
435
|
// Wait for data to be retrieved
|
|
@@ -442,7 +444,7 @@ async function getChartValues(links, jsonformValue, specUrl) {
|
|
|
442
444
|
dataValues[/** @type {string} */ (link.id)] = await axios
|
|
443
445
|
.get(
|
|
444
446
|
mustache.render(link.href, {
|
|
445
|
-
...(jsonformValue),
|
|
447
|
+
...(jsonformValue ?? {}),
|
|
446
448
|
...(link["eox:flatstyle"] ?? {}),
|
|
447
449
|
}),
|
|
448
450
|
)
|
|
@@ -480,6 +482,7 @@ async function handleProcesses({
|
|
|
480
482
|
);
|
|
481
483
|
const bboxProperty = getBboxProperty(jsonformSchema.value);
|
|
482
484
|
const jsonformValue = /** @type {Record<string,any>} */ (
|
|
485
|
+
//@ts-expect-error todo
|
|
483
486
|
jsonformEl.value?.value
|
|
484
487
|
);
|
|
485
488
|
|
|
@@ -635,6 +638,7 @@ async function initProcess({
|
|
|
635
638
|
processResults,
|
|
636
639
|
});
|
|
637
640
|
if (selectedStac.value["eodash:jsonform"]) {
|
|
641
|
+
//@ts-expect-error todo
|
|
638
642
|
jsonformEl.value?.editor.destroy();
|
|
639
643
|
// wait for the layers to be rendered
|
|
640
644
|
jsonformSchema.value = await axios
|
|
@@ -769,6 +773,7 @@ useOnLayersUpdate(async (evt, _payload) => {
|
|
|
769
773
|
});
|
|
770
774
|
|
|
771
775
|
const startProcess = async () => {
|
|
776
|
+
//@ts-expect-error todo
|
|
772
777
|
const errors = jsonformEl.value?.editor.validate();
|
|
773
778
|
if (errors?.length) {
|
|
774
779
|
console.warn("[eodash] Form validation failed", errors);
|
|
@@ -783,7 +788,6 @@ const startProcess = async () => {
|
|
|
783
788
|
loading,
|
|
784
789
|
//@ts-expect-error TODO
|
|
785
790
|
selectedStac,
|
|
786
|
-
isProcessed,
|
|
787
791
|
isPolling,
|
|
788
792
|
processResults,
|
|
789
793
|
});
|
|
@@ -798,6 +802,7 @@ const chartStyles = computed(() => {
|
|
|
798
802
|
styles["height"] =
|
|
799
803
|
Math.max(
|
|
800
804
|
(containerEl.value?.offsetHeight ?? 0) -
|
|
805
|
+
//@ts-expect-error TODO
|
|
801
806
|
(jsonformEl.value?.offsetHeight ?? 0),
|
|
802
807
|
200,
|
|
803
808
|
) + "px";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { createElementBlock, openBlock, createElementVNode, unref } from 'vue';
|
|
2
2
|
import '@eox/stacinfo';
|
|
3
|
-
import { ak as currentUrl } from './asWebComponent-
|
|
3
|
+
import { ak as currentUrl } from './asWebComponent-DZpMGxEY.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
|
-
import { ref, computed,
|
|
2
|
-
import _sfc_main$2 from './PopUp-
|
|
3
|
-
import _sfc_main$3 from './EodashItemFilter-
|
|
4
|
-
import _sfc_main$1 from './EodashLayoutSwitcher-
|
|
1
|
+
import { ref, computed, createElementBlock, openBlock, createElementVNode, createVNode, createBlock, createCommentVNode, unref, withCtx, mergeProps } from 'vue';
|
|
2
|
+
import _sfc_main$2 from './PopUp-Ba6mY2jQ.js';
|
|
3
|
+
import _sfc_main$3 from './EodashItemFilter-SE9oW3oZ.js';
|
|
4
|
+
import _sfc_main$1 from './EodashLayoutSwitcher-6wLl-Gtd.js';
|
|
5
5
|
import { mdiViewDashboard, mdiPlus } from '@mdi/js';
|
|
6
|
-
import {
|
|
6
|
+
import { r as useDisplay, a2 as makePanelTransparent, V as VBtn } from './asWebComponent-DZpMGxEY.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
|
-
import { createVNode, Fragment, computed, withDirectives, mergeProps, resolveDirective, toRef, mergeModels, useModel, ref,
|
|
1
|
+
import { createVNode, Fragment, computed, withDirectives, mergeProps, resolveDirective, toRef, mergeModels, useModel, ref, createBlock, openBlock, 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-
|
|
4
|
-
import { an as createSimpleFunctional, g as genericComponent,
|
|
5
|
-
import { a as VExpandTransition } from './index-
|
|
6
|
-
import { V as VImg } from './VImg-
|
|
3
|
+
import _sfc_main$1 from './PopUp-Ba6mY2jQ.js';
|
|
4
|
+
import { an as createSimpleFunctional, g as genericComponent, i as makeComponentProps, C as provideDefaults, a as useRender, p as propsFactory, h as makeTagProps, b as provideTheme, K as useBorder, ao as useVariant, A as useDensity, M as useRounded, ap as useSize, aq as genOverlays, v as VIcon, N as VDefaultsProvider, ar as makeVariantProps, f as makeThemeProps, as as makeSizeProps, O as makeRoundedProps, D as makeDensityProps, Q as makeBorderProps, y as IconValue, at as Ripple, H as useDimension, L as useElevation, au as useLoader, av as useLocation, aw as usePosition, ax as useLink, ay as makeRouterProps, az as makePositionProps, aA as makeLocationProps, aB as makeLoaderProps, P as makeElevationProps, J as makeDimensionProps, aC as LoaderSlot, u as useTextColor, q as convertToUnit, _ as _export_sfc, aD as removeUnneededProperties, aE as VRow, aF as VCol, aG as copyToClipBoard, V as VBtn, ai as getLayers, ad as mapPosition, ae as availableMapProjection } from './asWebComponent-DZpMGxEY.js';
|
|
5
|
+
import { a as VExpandTransition } from './index-f55xuyof.js';
|
|
6
|
+
import { V as VImg } from './VImg-Yc9F9pYq.js';
|
|
7
7
|
|
|
8
8
|
// Styles
|
|
9
9
|
const VSpacer = createSimpleFunctional('v-spacer', 'div', 'VSpacer');
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ref, toRef, shallowRef, computed,
|
|
2
|
-
import {
|
|
1
|
+
import { ref, toRef, shallowRef, computed, watchEffect, createVNode, inject, createBlock, openBlock, unref, withCtx, createElementVNode, toDisplayString } from 'vue';
|
|
2
|
+
import { g as genericComponent, p as propsFactory, b as provideTheme, B as useBackgroundColor, K as useBorder, L as useElevation, M as useRounded, s as useResizeObserver, T as useToggleScope, U as useLayoutItem, a as useRender, q as convertToUnit, f as makeThemeProps, h as makeTagProps, O as makeRoundedProps, W as makeLayoutItemProps, P as makeElevationProps, i as makeComponentProps, Q as makeBorderProps, _ as _export_sfc, X as eodashKey, r as useDisplay } from './asWebComponent-DZpMGxEY.js';
|
|
3
3
|
|
|
4
4
|
const makeVFooterProps = propsFactory({
|
|
5
5
|
app: Boolean,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { createVNode, toRef, shallowRef, computed, ref, watch, onMounted, onBeforeUnmount,
|
|
2
|
-
import { p as propsFactory,
|
|
3
|
-
import { a as VExpandTransition } from './index-
|
|
4
|
-
import { V as VImg } from './VImg-
|
|
1
|
+
import { createVNode, toRef, shallowRef, computed, ref, watch, onMounted, onBeforeUnmount, watchEffect, mergeProps, inject, createBlock, openBlock, withCtx, createTextVNode, toDisplayString, unref } from 'vue';
|
|
2
|
+
import { p as propsFactory, g as genericComponent, h as makeTagProps, i as makeComponentProps, a as useRender, B as useBackgroundColor, K as useBorder, L as useElevation, M as useRounded, b as provideTheme, c as useRtl, C as provideDefaults, N as VDefaultsProvider, q as convertToUnit, f as makeThemeProps, O as makeRoundedProps, P as makeElevationProps, Q as makeBorderProps, R as clamp, S as consoleWarn, j as useProxiedModel, T as useToggleScope, U as useLayoutItem, W as makeLayoutItemProps, _ as _export_sfc, X as eodashKey } from './asWebComponent-DZpMGxEY.js';
|
|
3
|
+
import { a as VExpandTransition } from './index-f55xuyof.js';
|
|
4
|
+
import { V as VImg } from './VImg-Yc9F9pYq.js';
|
|
5
5
|
import { u as useSsrBoot } from './ssrBoot-BP7SYRyC.js';
|
|
6
6
|
|
|
7
7
|
const makeVToolbarTitleProps = propsFactory({
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { ref, computed, createVNode, mergeProps, Fragment, shallowRef, watch, provide, withDirectives, resolveDirective, inject, vShow, nextTick, toRef, useCssVars, onMounted,
|
|
2
|
-
import { k as keys,
|
|
3
|
-
import { V as VMain } from './VMain-
|
|
4
|
-
import { f as forwardRefs, a as animate, s as standardEasing,
|
|
1
|
+
import { ref, computed, createVNode, mergeProps, Fragment, shallowRef, watch, provide, withDirectives, resolveDirective, inject, vShow, nextTick, toRef, useCssVars, onMounted, createBlock, openBlock, withCtx, createElementBlock, Suspense, createCommentVNode, unref, resolveDynamicComponent, renderList, createElementVNode, createTextVNode, toDisplayString } from 'vue';
|
|
2
|
+
import { k as keys, g as genericComponent, p as propsFactory, u as useTextColor, a as useRender, V as VBtn, o as omit, m as makeVBtnProps, b as provideTheme, c as useRtl, d as useLocale, e as useGroup, f as makeThemeProps, h as makeTagProps, i as makeComponentProps, j as useProxiedModel, l as useGroupItem, n as makeGroupItemProps, q as convertToUnit, r as useDisplay, s as useResizeObserver, t as useGoTo, I as IN_BROWSER, v as VIcon, w as makeGroupProps, x as makeDisplayProps, y as IconValue, z as focusableChildren, A as useDensity, B as useBackgroundColor, C as provideDefaults, D as makeDensityProps, E as isObject, _ as _export_sfc, F as useDefineTemplate, G as useLayout } from './asWebComponent-DZpMGxEY.js';
|
|
3
|
+
import { V as VMain } from './VMain-BiS7HPEk.js';
|
|
4
|
+
import { f as forwardRefs, a as animate, s as standardEasing, u as useLazy, m as makeLazyProps, b as useScopeId } from './forwardRefs-BtkfywIE.js';
|
|
5
5
|
import { u as useSsrBoot } from './ssrBoot-BP7SYRyC.js';
|
|
6
|
-
import { M as MaybeTransition } from './transition-
|
|
7
|
-
import { V as VFadeTransition } from './index-
|
|
6
|
+
import { M as MaybeTransition } from './transition-CtL4BoVi.js';
|
|
7
|
+
import { V as VFadeTransition } from './index-f55xuyof.js';
|
|
8
8
|
|
|
9
9
|
// Utilities
|
|
10
10
|
const handleGesture = wrapper => {
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { createVNode, Transition, mergeProps, ref, onBeforeUnmount, watch, nextTick, toRef, mergeModels, useModel,
|
|
2
|
-
import { g as genericComponent, p as propsFactory, j as useProxiedModel,
|
|
3
|
-
import { m as makeVOverlayProps, V as VOverlay } from './VOverlay-
|
|
4
|
-
import { a as animate,
|
|
1
|
+
import { createVNode, Transition, mergeProps, ref, onBeforeUnmount, watch, nextTick, toRef, mergeModels, useModel, createElementBlock, openBlock, withCtx, createBlock, createCommentVNode, resolveDynamicComponent, unref, renderSlot } from 'vue';
|
|
2
|
+
import { g as genericComponent, p as propsFactory, j as useProxiedModel, I as IN_BROWSER, a as useRender, z as focusableChildren, N as VDefaultsProvider, b as provideTheme, B as useBackgroundColor, K as useBorder, H as useDimension, L as useElevation, av as useLocation, aw as usePosition, M as useRounded, f as makeThemeProps, h as makeTagProps, O as makeRoundedProps, az as makePositionProps, aA as makeLocationProps, P as makeElevationProps, J as makeDimensionProps, i as makeComponentProps, Q as makeBorderProps, aJ as useDefineWidgets } from './asWebComponent-DZpMGxEY.js';
|
|
3
|
+
import { m as makeVOverlayProps, V as VOverlay } from './VOverlay-B9mxXaCv.js';
|
|
4
|
+
import { a as animate, g as getTargetBox, n as nullifyTransforms, c as acceleratedEasing, d as deceleratedEasing, s as standardEasing, b as useScopeId, f as forwardRefs } from './forwardRefs-BtkfywIE.js';
|
|
5
5
|
|
|
6
|
+
// Utilities
|
|
6
7
|
const makeVDialogTransitionProps = propsFactory({
|
|
7
8
|
target: [Object, Array]
|
|
8
9
|
}, 'v-dialog-transition');
|
|
@@ -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 { aH as SUPPORTS_INTERSECTION,
|
|
3
|
-
import { m as makeTransitionProps, M as MaybeTransition } from './transition-
|
|
2
|
+
import { aH as SUPPORTS_INTERSECTION, g as genericComponent, p as propsFactory, H as useDimension, a as useRender, J as makeDimensionProps, i as makeComponentProps, B as useBackgroundColor, M as useRounded, aI as getCurrentInstance, q as convertToUnit, O as makeRoundedProps } from './asWebComponent-DZpMGxEY.js';
|
|
3
|
+
import { m as makeTransitionProps, M as MaybeTransition } from './transition-CtL4BoVi.js';
|
|
4
4
|
|
|
5
5
|
// Utilities
|
|
6
6
|
function mounted(el, binding) {
|
|
@@ -266,10 +266,10 @@ const VImg = genericComponent()({
|
|
|
266
266
|
"style": {
|
|
267
267
|
objectPosition: props.position
|
|
268
268
|
},
|
|
269
|
+
"crossorigin": props.crossorigin,
|
|
269
270
|
"src": normalisedSrc.value.src,
|
|
270
271
|
"srcset": normalisedSrc.value.srcset,
|
|
271
272
|
"alt": props.alt,
|
|
272
|
-
"crossorigin": props.crossorigin,
|
|
273
273
|
"referrerpolicy": props.referrerpolicy,
|
|
274
274
|
"draggable": props.draggable,
|
|
275
275
|
"sizes": props.sizes,
|
|
@@ -295,9 +295,9 @@ const VImg = genericComponent()({
|
|
|
295
295
|
"style": {
|
|
296
296
|
objectPosition: props.position
|
|
297
297
|
},
|
|
298
|
+
"crossorigin": props.crossorigin,
|
|
298
299
|
"src": normalisedSrc.value.lazySrc,
|
|
299
300
|
"alt": props.alt,
|
|
300
|
-
"crossorigin": props.crossorigin,
|
|
301
301
|
"referrerpolicy": props.referrerpolicy,
|
|
302
302
|
"draggable": props.draggable
|
|
303
303
|
}, null)]
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createVNode } from 'vue';
|
|
2
|
-
import {
|
|
2
|
+
import { g as genericComponent, p as propsFactory, H as useDimension, G as useLayout, a as useRender, h as makeTagProps, J as makeDimensionProps, i as makeComponentProps } from './asWebComponent-DZpMGxEY.js';
|
|
3
3
|
import { u as useSsrBoot } from './ssrBoot-BP7SYRyC.js';
|
|
4
4
|
|
|
5
5
|
const makeVMainProps = propsFactory({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { aK as isOn, aL as eventName, p as propsFactory,
|
|
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-
|
|
4
|
-
import { m as makeTransitionProps, M as MaybeTransition } from './transition-
|
|
1
|
+
import { computed, watch, onScopeDispose, nextTick, ref, watchEffect, effectScope, inject, mergeProps, shallowRef, onMounted, reactive, provide, toRaw, readonly, warn, toRef, onBeforeUnmount, createVNode, Fragment, Teleport, withDirectives, vShow, resolveDirective, Transition } from 'vue';
|
|
2
|
+
import { aK as isOn, aL as eventName, p as propsFactory, 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, I as IN_BROWSER, T as useToggleScope, aS as defer, aI as getCurrentInstance, aT as templateRef, aU as matchesSelector, r as useDisplay, f as makeThemeProps, J as makeDimensionProps, i as makeComponentProps, g as genericComponent, j as useProxiedModel, b as provideTheme, c as useRtl, B as useBackgroundColor, H as useDimension, aV as useRouter, aW as useBackButton, a as useRender } from './asWebComponent-DZpMGxEY.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-BtkfywIE.js';
|
|
4
|
+
import { m as makeTransitionProps, M as MaybeTransition } from './transition-CtL4BoVi.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-
|
|
3
|
-
import { b as useScopeId, f as forwardRefs } from './forwardRefs-
|
|
4
|
-
import {
|
|
2
|
+
import { m as makeVOverlayProps, V as VOverlay } from './VOverlay-B9mxXaCv.js';
|
|
3
|
+
import { b as useScopeId, f as forwardRefs } from './forwardRefs-BtkfywIE.js';
|
|
4
|
+
import { g as genericComponent, p as propsFactory, j as useProxiedModel, am as getUid, a as useRender, o as omit } from './asWebComponent-DZpMGxEY.js';
|
|
5
5
|
|
|
6
6
|
const makeVTooltipProps = propsFactory({
|
|
7
7
|
id: String,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ref, onMounted, nextTick,
|
|
2
|
-
import { aJ as useDefineWidgets, G as useLayout } from './asWebComponent-
|
|
1
|
+
import { ref, onMounted, nextTick, createElementBlock, openBlock, Fragment, renderList, unref, createElementVNode, toDisplayString, normalizeStyle, createBlock, resolveDynamicComponent, mergeProps } from 'vue';
|
|
2
|
+
import { aJ as useDefineWidgets, G as useLayout } from './asWebComponent-DZpMGxEY.js';
|
|
3
3
|
import 'animated-details';
|
|
4
4
|
|
|
5
5
|
const _sfc_main = {
|