@eodash/eodash 5.3.0 → 5.3.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.
Files changed (35) hide show
  1. package/core/client/eodashSTAC/helpers.js +8 -16
  2. package/dist/client/{DashboardLayout-Cq15p4TH.js → DashboardLayout-BAstYnhU.js} +2 -2
  3. package/dist/client/{DynamicWebComponent-Cv-fPRG1.js → DynamicWebComponent-7v4_DFqP.js} +1 -1
  4. package/dist/client/{EodashDatePicker-CPlJwEIO.js → EodashDatePicker-IVHLv9UN.js} +3 -3
  5. package/dist/client/{EodashItemFilter-Ydebgbjj.js → EodashItemFilter-BPMpnXjo.js} +1 -1
  6. package/dist/client/{EodashLayerControl-COhrkNEs.js → EodashLayerControl-CSnQh2tb.js} +2 -2
  7. package/dist/client/{EodashLayoutSwitcher-pnKhTRZV.js → EodashLayoutSwitcher-CPpGM8Pb.js} +3 -3
  8. package/dist/client/{EodashMapBtns-Cj0Fx119.js → EodashMapBtns-C_jyUJ2x.js} +6 -6
  9. package/dist/client/{EodashStacInfo-Dadkg_Nj.js → EodashStacInfo-DjuWc0Iz.js} +1 -1
  10. package/dist/client/{EodashTimeSlider-CpoHX0S7.js → EodashTimeSlider-CDh9Lf02.js} +2 -2
  11. package/dist/client/{EodashTools-UGBG7KC9.js → EodashTools-DSvDUUlL.js} +4 -4
  12. package/dist/client/{ExportState-GtJkAqeZ.js → ExportState-BhjxS0jG.js} +4 -4
  13. package/dist/client/{Footer-D3ZPG5c4.js → Footer-C3PPcdjv.js} +1 -1
  14. package/dist/client/{Header-z6AK-wpN.js → Header-E5NbT7HE.js} +2 -2
  15. package/dist/client/{MobileLayout-BXNsNftb.js → MobileLayout-DY7OHr1k.js} +2 -2
  16. package/dist/client/{PopUp-BbQdjENV.js → PopUp-CSPXdqKI.js} +2 -2
  17. package/dist/client/{ProcessList-C6VsdsYI.js → ProcessList-C3HV7G0b.js} +4 -4
  18. package/dist/client/{VImg-CxaMSB99.js → VImg-FoXcOnWF.js} +2 -2
  19. package/dist/client/{VMain-Ds7yw0wj.js → VMain-Ck2g1QOG.js} +1 -1
  20. package/dist/client/{VTooltip-Cze6CEVh.js → VTooltip-F_1Zcvhp.js} +2 -2
  21. package/dist/client/{WidgetsContainer-D66bj-JJ.js → WidgetsContainer-Cq9uZEuN.js} +1 -1
  22. package/dist/client/{asWebComponent-CWbNRdf9.js → asWebComponent-DZeEbWG0.js} +8 -8
  23. package/dist/client/{async-BA7oWCMX.js → async-Dk79llLt.js} +2 -2
  24. package/dist/client/eo-dash.js +1 -1
  25. package/dist/client/{forwardRefs-BUfxOIo-.js → forwardRefs-BbvoXHtj.js} +2 -2
  26. package/dist/client/{handling-DlNTtKB-.js → handling-DxucYlYh.js} +3 -3
  27. package/dist/client/{helpers-CtE0W7iu.js → helpers-CI_7CUmn.js} +8 -16
  28. package/dist/client/{index-DeECc3lV.js → index-BO5uGfUe.js} +3 -3
  29. package/dist/client/{index-D4_NRKrf.js → index-C13BiO9C.js} +2 -2
  30. package/dist/client/{index-CeEZIjO6.js → index-DcCcdbgR.js} +5 -5
  31. package/dist/client/{index-CsKbRDeN.js → index-KrGHjH-_.js} +3 -3
  32. package/dist/client/templates.js +1 -1
  33. package/dist/client/{transition-Byvp3L6Y.js → transition-Ctkv90El.js} +1 -1
  34. package/dist/types/core/client/eodashSTAC/helpers.d.ts +1 -1
  35. package/package.json +1 -1
@@ -381,25 +381,17 @@ export const replaceLayer = (currentLayers, oldLayer, newLayers) => {
381
381
  * @param {import('../eodashSTAC/EodashCollection.js').EodashCollection[]} indicators
382
382
  * @param {import('ol/layer').Layer} layer
383
383
  */
384
- export const getColFromLayer = (indicators, layer) => {
385
- // init cols
386
- // const collections = indicators.map((ind) => ind.collectionStac);
384
+ export const getColFromLayer = async (indicators, layer) => {
387
385
  const [collectionId, itemId, ..._other] = layer.get("id").split(";:;");
388
386
 
389
- return indicators.find(async (ind) => {
390
- const isCollection = ind.collectionStac?.id === collectionId;
391
- if (!isCollection) {
392
- return false;
387
+ for (const ind of indicators) {
388
+ if (ind.collectionStac?.id !== collectionId) continue;
389
+ const items = await ind.getItems();
390
+ const itemIds = items?.map(item => item.id || item.datetime) ?? [];
391
+ if (itemIds.includes(itemId)) {
392
+ return ind;
393
393
  }
394
- /** @type {string[]} */
395
- const itemIds = [];
396
- await ind.getItems().then((items) => {
397
- itemIds.push(
398
- ...(items?.map((item) => /** @type {string} */ (item.id)) ?? []),
399
- );
400
- });
401
- return itemIds.includes(itemId);
402
- });
394
+ }
403
395
  };
404
396
 
405
397
  /**
@@ -1,7 +1,7 @@
1
1
  import { createBlock, openBlock, withCtx, createElementVNode, unref, createElementBlock, createCommentVNode, normalizeStyle, Suspense, resolveDynamicComponent, mergeProps, Fragment, renderList, Transition } from 'vue';
2
2
  import '@eox/layout';
3
- import { _ as _export_sfc, u as useDefineTemplate } from './asWebComponent-CWbNRdf9.js';
4
- import { V as VMain } from './VMain-Ds7yw0wj.js';
3
+ import { _ as _export_sfc, u as useDefineTemplate } from './asWebComponent-DZeEbWG0.js';
4
+ import { V as VMain } from './VMain-Ck2g1QOG.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, createElementBlock, openBlock, createBlock, resolveDynamicComponent, mergeProps } from 'vue';
2
- import { E as useSTAcStore } from './asWebComponent-CWbNRdf9.js';
2
+ import { E as useSTAcStore } from './asWebComponent-DZeEbWG0.js';
3
3
 
4
4
  const _hoisted_1 = { class: "d-flex flex-column fill-height overflow-auto" };
5
5
 
@@ -1,11 +1,11 @@
1
1
  import { useCssVars, ref, useTemplateRef, customRef, computed, reactive, watch, onMounted, createElementBlock, openBlock, createVNode, unref, createSlots, withCtx, createElementVNode, withDirectives, createCommentVNode, createBlock, mergeProps, toHandlers } from 'vue';
2
2
  import { DatePicker } from 'v-calendar';
3
- import { _ as _export_sfc, D as useDisplay, E as useSTAcStore, F as useTransparentPanel, G as VBtn, H as VIcon, I as eodashCollections, J as eodashCompareCollections } from './asWebComponent-CWbNRdf9.js';
4
- import { A as datetime } from './helpers-CtE0W7iu.js';
3
+ import { _ as _export_sfc, D as useDisplay, E as useSTAcStore, F as useTransparentPanel, G as VBtn, H as VIcon, I as eodashCollections, J as eodashCompareCollections } from './asWebComponent-DZeEbWG0.js';
4
+ import { A as datetime } from './helpers-CI_7CUmn.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-D4_NRKrf.js';
8
+ import { T as Tooltip } from './index-C13BiO9C.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(--v5270a4d4)!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, createElementBlock, openBlock, mergeProps, unref, createElementVNode, toDisplayString } from 'vue';
2
- import { _ as _export_sfc, E as useSTAcStore, Q as isFirstLoad } from './asWebComponent-CWbNRdf9.js';
2
+ import { _ as _export_sfc, E as useSTAcStore, Q as isFirstLoad } from './asWebComponent-DZeEbWG0.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, createElementBlock, openBlock, createCommentVNode, mergeProps, unref, renderSlot, createElementVNode, toDisplayString } from 'vue';
2
2
  import 'color-legend-element';
3
3
  import '@eox/timecontrol';
4
- import { M as mapCompareEl, h as mapEl, N as getColFromLayer } from './helpers-CtE0W7iu.js';
5
- import { _ as _export_sfc, E as useSTAcStore, M as layerControlFormValueCompare, N as layerControlFormValue, J as eodashCompareCollections, I as eodashCollections } from './asWebComponent-CWbNRdf9.js';
4
+ import { M as mapCompareEl, h as mapEl, N as getColFromLayer } from './helpers-CI_7CUmn.js';
5
+ import { _ as _export_sfc, E as useSTAcStore, M as layerControlFormValueCompare, N as layerControlFormValue, J as eodashCompareCollections, I as eodashCollections } from './asWebComponent-DZeEbWG0.js';
6
6
  import { storeToRefs } from 'pinia';
7
7
 
8
8
  /**
@@ -1,8 +1,8 @@
1
1
  import { ref, createElementBlock, openBlock, createBlock, unref, withCtx, createVNode, mergeProps } from 'vue';
2
- import { C as activeTemplate } from './helpers-CtE0W7iu.js';
2
+ import { C as activeTemplate } from './helpers-CI_7CUmn.js';
3
3
  import { mdiViewDashboard } from '@mdi/js';
4
- import { D as useDisplay, F as useTransparentPanel, H as VIcon } from './asWebComponent-CWbNRdf9.js';
5
- import { V as VTooltip } from './VTooltip-Cze6CEVh.js';
4
+ import { D as useDisplay, F as useTransparentPanel, H as VIcon } from './asWebComponent-DZeEbWG0.js';
5
+ import { V as VTooltip } from './VTooltip-F_1Zcvhp.js';
6
6
 
7
7
  const _sfc_main = {
8
8
  __name: 'EodashLayoutSwitcher',
@@ -1,12 +1,12 @@
1
1
  import { computed, ref, createElementBlock, openBlock, createCommentVNode, createBlock, createVNode, createElementVNode, unref, withCtx, mergeProps, triggerRef } from 'vue';
2
- import { _ as _export_sfc, E as useSTAcStore, D as useDisplay, F as useTransparentPanel } from './asWebComponent-CWbNRdf9.js';
3
- import { C as activeTemplate, P as availableMapProjection, Q as changeMapProjection, B as poi, H as comparePoi, h as mapEl, R as setActiveTemplate } from './helpers-CtE0W7iu.js';
2
+ import { _ as _export_sfc, E as useSTAcStore, D as useDisplay, F as useTransparentPanel } from './asWebComponent-DZeEbWG0.js';
3
+ import { C as activeTemplate, P as availableMapProjection, Q as changeMapProjection, B as poi, H as comparePoi, h as mapEl, R as setActiveTemplate } from './helpers-CI_7CUmn.js';
4
4
  import { mdiCompareRemove, mdiCompare, mdiPlus, mdiMinus, mdiMapPlus, mdiEarthBox, mdiStarFourPointsCircleOutline } from '@mdi/js';
5
- import ExportState from './ExportState-GtJkAqeZ.js';
6
- import _sfc_main$1 from './PopUp-BbQdjENV.js';
7
- import EodashItemFilter from './EodashItemFilter-Ydebgbjj.js';
5
+ import ExportState from './ExportState-BhjxS0jG.js';
6
+ import _sfc_main$1 from './PopUp-CSPXdqKI.js';
7
+ import EodashItemFilter from './EodashItemFilter-BPMpnXjo.js';
8
8
  import { storeToRefs } from 'pinia';
9
- import { l as loadPOiIndicator } from './handling-DlNTtKB-.js';
9
+ import { l as loadPOiIndicator } from './handling-DxucYlYh.js';
10
10
  import { e as easeOut } from './easing-CH0-9wR8.js';
11
11
  import '@eox/geosearch';
12
12
 
@@ -1,6 +1,6 @@
1
1
  import { createElementBlock, openBlock, createElementVNode, unref } from 'vue';
2
2
  import '@eox/stacinfo';
3
- import { z as currentUrl } from './helpers-CtE0W7iu.js';
3
+ import { z as currentUrl } from './helpers-CI_7CUmn.js';
4
4
 
5
5
  const _hoisted_1 = { class: "flex-grow-1" };
6
6
  const _hoisted_2 = [".for", ".allowHtml", ".body", ".featured", ".footer", ".styleOverride", ".header", ".subheader", ".tags"];
@@ -1,6 +1,6 @@
1
1
  import { computed, createElementBlock, createCommentVNode, openBlock, unref } from 'vue';
2
- import { h as mapEl, A as datetime } from './helpers-CtE0W7iu.js';
3
- import { I as eodashCollections } from './asWebComponent-CWbNRdf9.js';
2
+ import { h as mapEl, A as datetime } from './helpers-CI_7CUmn.js';
3
+ import { I as eodashCollections } from './asWebComponent-DZeEbWG0.js';
4
4
  import '@eox/timeslider';
5
5
 
6
6
  const _hoisted_1 = [".filters"];
@@ -1,9 +1,9 @@
1
1
  import { ref, computed, createElementBlock, openBlock, createElementVNode, createVNode, createBlock, createCommentVNode, unref, withCtx, mergeProps } from 'vue';
2
- import _sfc_main$2 from './PopUp-BbQdjENV.js';
3
- import EodashItemFilter from './EodashItemFilter-Ydebgbjj.js';
4
- import _sfc_main$1 from './EodashLayoutSwitcher-pnKhTRZV.js';
2
+ import _sfc_main$2 from './PopUp-CSPXdqKI.js';
3
+ import EodashItemFilter from './EodashItemFilter-BPMpnXjo.js';
4
+ import _sfc_main$1 from './EodashLayoutSwitcher-CPpGM8Pb.js';
5
5
  import { mdiViewDashboard, mdiPlusCircleOutline } from '@mdi/js';
6
- import { _ as _export_sfc, D as useDisplay, F as useTransparentPanel, G as VBtn } from './asWebComponent-CWbNRdf9.js';
6
+ import { _ as _export_sfc, D as useDisplay, F as useTransparentPanel, G as VBtn } from './asWebComponent-DZeEbWG0.js';
7
7
 
8
8
  const _style_0 = ".v-btn--size-default[data-v-73449028]{--v-btn-height: 30px}";
9
9
 
@@ -1,9 +1,9 @@
1
1
  import { createVNode, normalizeStyle, normalizeClass, createElementVNode, Fragment, toDisplayString, withDirectives, mergeProps, computed, mergeModels, useModel, ref, createBlock, openBlock, withCtx, createElementBlock, createCommentVNode, renderList, unref, createTextVNode, vShow } from 'vue';
2
2
  import { mdiContentCopy, mdiClipboardCheckOutline } from '@mdi/js';
3
- import _sfc_main$1 from './PopUp-BbQdjENV.js';
4
- import { $ as createSimpleFunctional, g as genericComponent, p as propsFactory, n as provideDefaults, c as useRender, m as makeTagProps, e as makeComponentProps, k as provideTheme, h as useBorder, a0 as useVariant, U as useDensity, j as useRounded, a1 as useSize, a2 as genOverlays, H as VIcon, V as VDefaultsProvider, a3 as makeVariantProps, q as makeThemeProps, a4 as makeSizeProps, r as makeRoundedProps, W as makeDensityProps, t as makeBorderProps, a5 as IconValue, a6 as Ripple, b as useDimension, i as useElevation, a7 as useLoader, a8 as useLocation, a9 as usePosition, aa as useLink, ab as makeRouterProps, ac as makePositionProps, ad as makeLocationProps, ae as makeLoaderProps, s as makeElevationProps, d as makeDimensionProps, af as LoaderSlot, ag as useTextColor, o as convertToUnit, _ as _export_sfc, ah as copyToClipBoard, G as VBtn } from './asWebComponent-CWbNRdf9.js';
5
- import { V as removeUnneededProperties, W as getChartSpec, p as getLayers, D as mapPosition, P as availableMapProjection } from './helpers-CtE0W7iu.js';
6
- import { V as VImg, a as VExpandTransition } from './VImg-CxaMSB99.js';
3
+ import _sfc_main$1 from './PopUp-CSPXdqKI.js';
4
+ import { $ as createSimpleFunctional, g as genericComponent, p as propsFactory, n as provideDefaults, c as useRender, m as makeTagProps, e as makeComponentProps, k as provideTheme, h as useBorder, a0 as useVariant, U as useDensity, j as useRounded, a1 as useSize, a2 as genOverlays, H as VIcon, V as VDefaultsProvider, a3 as makeVariantProps, q as makeThemeProps, a4 as makeSizeProps, r as makeRoundedProps, W as makeDensityProps, t as makeBorderProps, a5 as IconValue, a6 as Ripple, b as useDimension, i as useElevation, a7 as useLoader, a8 as useLocation, a9 as usePosition, aa as useLink, ab as makeRouterProps, ac as makePositionProps, ad as makeLocationProps, ae as makeLoaderProps, s as makeElevationProps, d as makeDimensionProps, af as LoaderSlot, ag as useTextColor, o as convertToUnit, _ as _export_sfc, ah as copyToClipBoard, G as VBtn } from './asWebComponent-DZeEbWG0.js';
5
+ import { V as removeUnneededProperties, W as getChartSpec, p as getLayers, D as mapPosition, P as availableMapProjection } from './helpers-CI_7CUmn.js';
6
+ import { V as VImg, a as VExpandTransition } from './VImg-FoXcOnWF.js';
7
7
 
8
8
  // Styles
9
9
  const VSpacer = createSimpleFunctional('v-spacer', 'div', 'VSpacer');
@@ -1,5 +1,5 @@
1
1
  import { ref, shallowRef, computed, toRef, watchEffect, createVNode, normalizeStyle, normalizeClass, inject, createBlock, openBlock, unref, withCtx, createElementVNode, toDisplayString } from 'vue';
2
- import { g as genericComponent, p as propsFactory, k as provideTheme, f as useBackgroundColor, h as useBorder, i as useElevation, j as useRounded, C as useResizeObserver, y as useToggleScope, z as useLayoutItem, c as useRender, o as convertToUnit, q as makeThemeProps, m as makeTagProps, r as makeRoundedProps, A as makeLayoutItemProps, s as makeElevationProps, e as makeComponentProps, t as makeBorderProps, _ as _export_sfc, B as eodashKey, D as useDisplay } from './asWebComponent-CWbNRdf9.js';
2
+ import { g as genericComponent, p as propsFactory, k as provideTheme, f as useBackgroundColor, h as useBorder, i as useElevation, j as useRounded, C as useResizeObserver, y as useToggleScope, z as useLayoutItem, c as useRender, o as convertToUnit, q as makeThemeProps, m as makeTagProps, r as makeRoundedProps, A as makeLayoutItemProps, s as makeElevationProps, e as makeComponentProps, t as makeBorderProps, _ as _export_sfc, B as eodashKey, D as useDisplay } from './asWebComponent-DZeEbWG0.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, createBlock, openBlock, withCtx, createTextVNode, toDisplayString, unref } from 'vue';
2
- import { p as propsFactory, g as genericComponent, m as makeTagProps, e as makeComponentProps, c as useRender, f as useBackgroundColor, h as useBorder, i as useElevation, j as useRounded, k as provideTheme, l as useRtl, n as provideDefaults, V as VDefaultsProvider, o as convertToUnit, q as makeThemeProps, r as makeRoundedProps, s as makeElevationProps, t as makeBorderProps, v as clamp, w as consoleWarn, x as useProxiedModel, y as useToggleScope, z as useLayoutItem, A as makeLayoutItemProps, _ as _export_sfc, B as eodashKey } from './asWebComponent-CWbNRdf9.js';
3
- import { V as VImg, a as VExpandTransition } from './VImg-CxaMSB99.js';
2
+ import { p as propsFactory, g as genericComponent, m as makeTagProps, e as makeComponentProps, c as useRender, f as useBackgroundColor, h as useBorder, i as useElevation, j as useRounded, k as provideTheme, l as useRtl, n as provideDefaults, V as VDefaultsProvider, o as convertToUnit, q as makeThemeProps, r as makeRoundedProps, s as makeElevationProps, t as makeBorderProps, v as clamp, w as consoleWarn, x as useProxiedModel, y as useToggleScope, z as useLayoutItem, A as makeLayoutItemProps, _ as _export_sfc, B as eodashKey } from './asWebComponent-DZeEbWG0.js';
3
+ import { V as VImg, a as VExpandTransition } from './VImg-FoXcOnWF.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}";