@eodash/eodash 5.1.0 → 5.2.0

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 (65) hide show
  1. package/core/client/components/DashboardLayout.vue +1 -1
  2. package/core/client/components/EodashOverlay.vue +4 -5
  3. package/core/client/components/MobileLayout.vue +42 -21
  4. package/core/client/composables/index.js +1 -1
  5. package/core/client/eodashSTAC/EodashCollection.js +4 -15
  6. package/core/client/eodashSTAC/createLayers.js +30 -0
  7. package/core/client/eodashSTAC/helpers.js +23 -1
  8. package/dist/client/{DashboardLayout-ByVs1DrY.js → DashboardLayout-Dq9Kfe6O.js} +5 -5
  9. package/dist/client/{DynamicWebComponent-C3W7HSQm.js → DynamicWebComponent-DCBMXskE.js} +1 -1
  10. package/dist/client/{EodashDatePicker-BIAf1sMT.js → EodashDatePicker-DtngxU6s.js} +3 -3
  11. package/dist/client/{EodashItemFilter-DPznh8UB.js → EodashItemFilter-ClQebJQt.js} +1 -1
  12. package/dist/client/{EodashLayerControl-Bhxjw4V2.js → EodashLayerControl-BLBds28C.js} +2 -2
  13. package/dist/client/{EodashLayoutSwitcher-C5qTEffW.js → EodashLayoutSwitcher-DQ8SfVDd.js} +3 -3
  14. package/dist/client/EodashMapBtns-B89_YBDw.js +326 -0
  15. package/dist/client/{EodashStacInfo-CSvvF2jI.js → EodashStacInfo-Dt1nF06x.js} +1 -1
  16. package/dist/client/{EodashTools-Cv1SXQ5y.js → EodashTools-DV5ykmWc.js} +4 -4
  17. package/dist/client/{ExportState-D-iuwaad.js → ExportState-B6zZQUmE.js} +4 -5
  18. package/dist/client/{Footer-CyF0zRAk.js → Footer-DNhXs8k6.js} +1 -1
  19. package/dist/client/{Header-CgD8jDKU.js → Header-BjhN5JY4.js} +2 -3
  20. package/dist/client/MobileLayout-JelB6w1G.js +118 -0
  21. package/dist/client/{PopUp-BsYLvWch.js → PopUp-CgpvNr3o.js} +2 -3
  22. package/dist/client/{ProcessList-C2xsLU2_.js → ProcessList-vecpxThi.js} +17 -10
  23. package/dist/client/{VImg-OHe8YTs2.js → VImg-CETuikH2.js} +200 -5
  24. package/dist/client/{VMain-PryTLU4a.js → VMain-Ci9DyaGU.js} +1 -1
  25. package/dist/client/{VTooltip-DZ0fjpB3.js → VTooltip-J4ac48X7.js} +2 -3
  26. package/dist/client/{WidgetsContainer-B9LBadcC.js → WidgetsContainer-CCML4TyV.js} +1 -1
  27. package/dist/client/{asWebComponent-By_7_JjS.js → asWebComponent-ZyEzWOOf.js} +59 -160
  28. package/dist/client/{async-DkSu_u2K.js → async-B7jIrM53.js} +69 -5
  29. package/dist/client/eo-dash.js +1 -1
  30. package/dist/client/{VOverlay-yUn7p-Uf.js → forwardRefs-BQclvjMq.js} +272 -5
  31. package/dist/client/{handling-CgmFXkW6.js → handling-BS24aG1q.js} +20 -5
  32. package/dist/client/{helpers-Dy0Q13tP.js → helpers-wXK7Ywio.js} +24 -2
  33. package/dist/client/{index-skjhlH8u.js → index-4UCzZi8B.js} +5 -5
  34. package/dist/client/{index-Dqj4tbx2.js → index-9KR-G20t.js} +2 -2
  35. package/dist/client/{index-Ch_HchK3.js → index-B2XpdgR6.js} +191 -57
  36. package/dist/client/material-symbols-outlined.woff2 +0 -0
  37. package/dist/client/material-symbols-rounded.woff2 +0 -0
  38. package/dist/client/material-symbols-sharp.woff2 +0 -0
  39. package/dist/client/material-symbols-subset.woff2 +0 -0
  40. package/dist/client/templates.js +27 -37
  41. package/dist/client/{transition-C98Yn4Vo.js → transition-yBii4fu6.js} +1 -1
  42. package/dist/node/cli.js +1 -1
  43. package/dist/types/core/client/eodashSTAC/helpers.d.ts +5 -0
  44. package/dist/types/core/client/types.d.ts +1 -1
  45. package/dist/types/templates/compare.d.ts +0 -25
  46. package/dist/types/templates/expert.d.ts +16 -20
  47. package/dist/types/templates/light.d.ts +9 -0
  48. package/dist/types/widgets/{EodashMapBtns.vue.d.ts → EodashMap/EodashMapBtns.vue.d.ts} +4 -0
  49. package/dist/types/widgets/EodashMap/index.vue.d.ts +8 -0
  50. package/dist/types/widgets/EodashProcess/methods/async.d.ts +1 -0
  51. package/package.json +4 -2
  52. package/templates/compare.js +0 -20
  53. package/templates/expert.js +16 -15
  54. package/templates/light.js +10 -1
  55. package/widgets/EodashMap/EodashMapBtns.vue +269 -0
  56. package/widgets/EodashMap/index.vue +252 -37
  57. package/widgets/EodashProcess/ProcessList.vue +13 -1
  58. package/widgets/EodashProcess/methods/async.js +22 -1
  59. package/widgets/EodashProcess/methods/custom-endpoints/chart/veda-endpoint.js +19 -3
  60. package/widgets/EodashProcess/methods/utils.js +45 -1
  61. package/dist/client/EodashMapBtns-WoGq8MuV.js +0 -173
  62. package/dist/client/MobileLayout-EKQ_kpSh.js +0 -1226
  63. package/dist/client/forwardRefs-BXxrv98s.js +0 -272
  64. package/dist/client/index-BuhOHXKv.js +0 -199
  65. package/widgets/EodashMapBtns.vue +0 -155
@@ -1,7 +1,6 @@
1
1
  import { createVNode, Transition, mergeProps, ref, onBeforeUnmount, watch, nextTick, normalizeStyle, normalizeClass, 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, ai as useLocation, aj as usePosition, M as useRounded, f as makeThemeProps, h as makeTagProps, O as makeRoundedProps, am as makePositionProps, an as makeLocationProps, P as makeElevationProps, J as makeDimensionProps, i as makeComponentProps, Q as makeBorderProps, av as useDefineWidgets } from './asWebComponent-By_7_JjS.js';
3
- import { m as makeVOverlayProps, V as VOverlay } from './VOverlay-yUn7p-Uf.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-BXxrv98s.js';
2
+ import { g as genericComponent, p as propsFactory, x as useProxiedModel, al as IN_BROWSER, c as useRender, am as focusableChildren, V as VDefaultsProvider, k as provideTheme, f as useBackgroundColor, h as useBorder, b as useDimension, i as useElevation, a7 as useLocation, a8 as usePosition, j as useRounded, q as makeThemeProps, m as makeTagProps, r as makeRoundedProps, ab as makePositionProps, ac as makeLocationProps, s as makeElevationProps, d as makeDimensionProps, e as makeComponentProps, t as makeBorderProps, an as useDefineWidgets } from './asWebComponent-ZyEzWOOf.js';
3
+ import { a as animate, g as getTargetBox, n as nullifyTransforms, b as acceleratedEasing, d as deceleratedEasing, s as standardEasing, u as useScopeId, f as forwardRefs, m as makeVOverlayProps, V as VOverlay } from './forwardRefs-BQclvjMq.js';
5
4
 
6
5
  // Utilities
7
6
  const makeVDialogTransitionProps = propsFactory({
@@ -1,9 +1,9 @@
1
1
  import { ref, createVNode, normalizeStyle, normalizeClass, createElementVNode, toRefs, onMounted, createElementBlock, openBlock, createBlock, createCommentVNode, unref, withCtx, Fragment, renderList, toDisplayString, withDirectives, toRef } from 'vue';
2
2
  import { mdiUploadBox, mdiDownloadBox, mdiTrashCanOutline } from '@mdi/js';
3
- import { g as genericComponent, p as propsFactory, b as provideTheme, A as useDensity, a as useRender, f as makeThemeProps, h as makeTagProps, D as makeDensityProps, i as makeComponentProps, q as convertToUnit, _ as _export_sfc, Y as useSTAcStore, a6 as useOnLayersUpdate, V as VBtn } from './asWebComponent-By_7_JjS.js';
4
- import { C as compareIndicator, B as indicator } from './helpers-Dy0Q13tP.js';
5
- import { u as updateJobsStatus, l as loadProcess, j as downloadPreviousResults, k as deleteJob } from './async-DkSu_u2K.js';
6
- import { T as Tooltip } from './index-Dqj4tbx2.js';
3
+ import { g as genericComponent, p as propsFactory, k as provideTheme, T as useDensity, c as useRender, q as makeThemeProps, m as makeTagProps, U as makeDensityProps, e as makeComponentProps, o as convertToUnit, _ as _export_sfc, E as useSTAcStore, P as useOnLayersUpdate, G as VBtn } from './asWebComponent-ZyEzWOOf.js';
4
+ import { D as compareIndicator, C as indicator } from './helpers-wXK7Ywio.js';
5
+ import { u as updateJobsStatus, j as getJobStatusUrl, l as loadProcess, k as downloadPreviousResults, m as deleteJob } from './async-B7jIrM53.js';
6
+ import { T as Tooltip } from './index-9KR-G20t.js';
7
7
 
8
8
  /**
9
9
  * The list of job result from the server
@@ -17,7 +17,7 @@ const jobs = ref([]);
17
17
  */
18
18
  const compareJobs = ref([]);
19
19
 
20
- const _style_0 = "div.v-table__wrapper{overflow:hidden!important;height:max-content!important}";
20
+ const _style_0 = "div.v-table__wrapper{overflow:hidden!important;height:max-content!important}.processUrl{text-decoration:none;color:var(--v-theme-primary)}";
21
21
 
22
22
  const makeVTableProps = propsFactory({
23
23
  fixedHeader: Boolean,
@@ -70,9 +70,10 @@ const VTable = genericComponent()({
70
70
  }
71
71
  });
72
72
 
73
- const _hoisted_1 = { style: {"padding":"0px"} };
73
+ const _hoisted_1 = ["href"];
74
74
  const _hoisted_2 = { style: {"padding":"0px"} };
75
75
  const _hoisted_3 = { style: {"padding":"0px"} };
76
+ const _hoisted_4 = { style: {"padding":"0px"} };
76
77
 
77
78
  const _sfc_main = {
78
79
  __name: 'ProcessList',
@@ -128,9 +129,15 @@ return (_ctx, _cache) => {
128
129
  return (openBlock(), createElementBlock("tr", {
129
130
  key: item.jobID
130
131
  }, [
131
- createElementVNode("td", null, toDisplayString(new Date(item.job_start_datetime).toISOString().slice(0, 16)), 1 /* TEXT */),
132
+ createElementVNode("td", null, [
133
+ createElementVNode("a", {
134
+ class: "processUrl",
135
+ target: "_blank",
136
+ href: unref(getJobStatusUrl)(item.jobID, unref(currentIndicator))
137
+ }, toDisplayString(new Date(item.job_start_datetime).toISOString().slice(0, 16)), 9 /* TEXT, PROPS */, _hoisted_1)
138
+ ]),
132
139
  createElementVNode("td", null, toDisplayString(item.status), 1 /* TEXT */),
133
- createElementVNode("td", _hoisted_1, [
140
+ createElementVNode("td", _hoisted_2, [
134
141
  withDirectives(createVNode(VBtn, {
135
142
  disabled: item.status !== 'successful',
136
143
  color: "primary",
@@ -141,7 +148,7 @@ return (_ctx, _cache) => {
141
148
  [Tooltip, 'Load results to map']
142
149
  ])
143
150
  ]),
144
- createElementVNode("td", _hoisted_2, [
151
+ createElementVNode("td", _hoisted_3, [
145
152
  withDirectives(createVNode(VBtn, {
146
153
  disabled: item.status !== 'successful',
147
154
  color: "primary",
@@ -152,7 +159,7 @@ return (_ctx, _cache) => {
152
159
  [Tooltip, 'Download results']
153
160
  ])
154
161
  ]),
155
- createElementVNode("td", _hoisted_3, [
162
+ createElementVNode("td", _hoisted_4, [
156
163
  withDirectives(createVNode(VBtn, {
157
164
  color: "#ff5252",
158
165
  onClick: $event => (
@@ -1,6 +1,6 @@
1
- import { createElementVNode, normalizeStyle, normalizeClass, computed, shallowRef, ref, watch, onBeforeMount, nextTick, onBeforeUnmount, toRef, withDirectives, createVNode, mergeProps, Fragment, vShow } from 'vue';
2
- import { at 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, au as getCurrentInstance, q as convertToUnit, O as makeRoundedProps } from './asWebComponent-By_7_JjS.js';
3
- import { m as makeTransitionProps, M as MaybeTransition } from './transition-C98Yn4Vo.js';
1
+ import { h, TransitionGroup, Transition, camelize, createElementVNode, normalizeStyle, normalizeClass, computed, shallowRef, ref, watch, onBeforeMount, nextTick, onBeforeUnmount, toRef, withDirectives, createVNode, mergeProps, Fragment, vShow } from 'vue';
2
+ import { aj as SUPPORTS_INTERSECTION, g as genericComponent, p as propsFactory, b as useDimension, c as useRender, d as makeDimensionProps, e as makeComponentProps, f as useBackgroundColor, j as useRounded, ak as getCurrentInstance, o as convertToUnit, r as makeRoundedProps } from './asWebComponent-ZyEzWOOf.js';
3
+ import { m as makeTransitionProps$1, M as MaybeTransition } from './transition-yBii4fu6.js';
4
4
 
5
5
  // Utilities
6
6
  function mounted(el, binding) {
@@ -47,6 +47,201 @@ const Intersect = {
47
47
  unmounted
48
48
  };
49
49
 
50
+ // Utilities
51
+ const makeTransitionProps = propsFactory({
52
+ disabled: Boolean,
53
+ group: Boolean,
54
+ hideOnLeave: Boolean,
55
+ leaveAbsolute: Boolean,
56
+ mode: String,
57
+ origin: String
58
+ }, 'transition');
59
+ function createCssTransition(name, origin, mode) {
60
+ return genericComponent()({
61
+ name,
62
+ props: makeTransitionProps({
63
+ mode,
64
+ origin
65
+ }),
66
+ setup(props, _ref) {
67
+ let {
68
+ slots
69
+ } = _ref;
70
+ const functions = {
71
+ onBeforeEnter(el) {
72
+ if (props.origin) {
73
+ el.style.transformOrigin = props.origin;
74
+ }
75
+ },
76
+ onLeave(el) {
77
+ if (props.leaveAbsolute) {
78
+ const {
79
+ offsetTop,
80
+ offsetLeft,
81
+ offsetWidth,
82
+ offsetHeight
83
+ } = el;
84
+ el._transitionInitialStyles = {
85
+ position: el.style.position,
86
+ top: el.style.top,
87
+ left: el.style.left,
88
+ width: el.style.width,
89
+ height: el.style.height
90
+ };
91
+ el.style.position = 'absolute';
92
+ el.style.top = `${offsetTop}px`;
93
+ el.style.left = `${offsetLeft}px`;
94
+ el.style.width = `${offsetWidth}px`;
95
+ el.style.height = `${offsetHeight}px`;
96
+ }
97
+ if (props.hideOnLeave) {
98
+ el.style.setProperty('display', 'none', 'important');
99
+ }
100
+ },
101
+ onAfterLeave(el) {
102
+ if (props.leaveAbsolute && el?._transitionInitialStyles) {
103
+ const {
104
+ position,
105
+ top,
106
+ left,
107
+ width,
108
+ height
109
+ } = el._transitionInitialStyles;
110
+ delete el._transitionInitialStyles;
111
+ el.style.position = position || '';
112
+ el.style.top = top || '';
113
+ el.style.left = left || '';
114
+ el.style.width = width || '';
115
+ el.style.height = height || '';
116
+ }
117
+ }
118
+ };
119
+ return () => {
120
+ const tag = props.group ? TransitionGroup : Transition;
121
+ return h(tag, {
122
+ name: props.disabled ? '' : name,
123
+ css: !props.disabled,
124
+ ...(props.group ? undefined : {
125
+ mode: props.mode
126
+ }),
127
+ ...(props.disabled ? {} : functions)
128
+ }, slots.default);
129
+ };
130
+ }
131
+ });
132
+ }
133
+ function createJavascriptTransition(name, functions) {
134
+ let mode = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'in-out';
135
+ return genericComponent()({
136
+ name,
137
+ props: {
138
+ mode: {
139
+ type: String,
140
+ default: mode
141
+ },
142
+ disabled: Boolean,
143
+ group: Boolean
144
+ },
145
+ setup(props, _ref2) {
146
+ let {
147
+ slots
148
+ } = _ref2;
149
+ const tag = props.group ? TransitionGroup : Transition;
150
+ return () => {
151
+ return h(tag, {
152
+ name: props.disabled ? '' : name,
153
+ css: !props.disabled,
154
+ // mode: props.mode, // TODO: vuejs/vue-next#3104
155
+ ...(props.disabled ? {} : functions)
156
+ }, slots.default);
157
+ };
158
+ }
159
+ });
160
+ }
161
+
162
+ // Utilities
163
+ function ExpandTransitionGenerator () {
164
+ let expandedParentClass = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
165
+ let x = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
166
+ const sizeProperty = x ? 'width' : 'height';
167
+ const offsetProperty = camelize(`offset-${sizeProperty}`);
168
+ return {
169
+ onBeforeEnter(el) {
170
+ el._parent = el.parentNode;
171
+ el._initialStyle = {
172
+ transition: el.style.transition,
173
+ overflow: el.style.overflow,
174
+ [sizeProperty]: el.style[sizeProperty]
175
+ };
176
+ },
177
+ onEnter(el) {
178
+ const initialStyle = el._initialStyle;
179
+ if (!initialStyle) return;
180
+ el.style.setProperty('transition', 'none', 'important');
181
+ // Hide overflow to account for collapsed margins in the calculated height
182
+ el.style.overflow = 'hidden';
183
+ const offset = `${el[offsetProperty]}px`;
184
+ el.style[sizeProperty] = '0';
185
+
186
+ el.style.transition = initialStyle.transition;
187
+ if (expandedParentClass && el._parent) {
188
+ el._parent.classList.add(expandedParentClass);
189
+ }
190
+ requestAnimationFrame(() => {
191
+ el.style[sizeProperty] = offset;
192
+ });
193
+ },
194
+ onAfterEnter: resetStyles,
195
+ onEnterCancelled: resetStyles,
196
+ onLeave(el) {
197
+ el._initialStyle = {
198
+ transition: '',
199
+ overflow: el.style.overflow,
200
+ [sizeProperty]: el.style[sizeProperty]
201
+ };
202
+ el.style.overflow = 'hidden';
203
+ el.style[sizeProperty] = `${el[offsetProperty]}px`;
204
+
205
+ requestAnimationFrame(() => el.style[sizeProperty] = '0');
206
+ },
207
+ onAfterLeave,
208
+ onLeaveCancelled: onAfterLeave
209
+ };
210
+ function onAfterLeave(el) {
211
+ if (expandedParentClass && el._parent) {
212
+ el._parent.classList.remove(expandedParentClass);
213
+ }
214
+ resetStyles(el);
215
+ }
216
+ function resetStyles(el) {
217
+ if (!el._initialStyle) return;
218
+ const size = el._initialStyle[sizeProperty];
219
+ el.style.overflow = el._initialStyle.overflow;
220
+ if (size != null) el.style[sizeProperty] = size;
221
+ delete el._initialStyle;
222
+ }
223
+ }
224
+
225
+ createCssTransition('fab-transition', 'center center', 'out-in');
226
+
227
+ // Generic transitions
228
+ createCssTransition('dialog-bottom-transition');
229
+ createCssTransition('dialog-top-transition');
230
+ createCssTransition('fade-transition');
231
+ createCssTransition('scale-transition');
232
+ createCssTransition('scroll-x-transition');
233
+ createCssTransition('scroll-x-reverse-transition');
234
+ createCssTransition('scroll-y-transition');
235
+ createCssTransition('scroll-y-reverse-transition');
236
+ createCssTransition('slide-x-transition');
237
+ createCssTransition('slide-x-reverse-transition');
238
+ createCssTransition('slide-y-transition');
239
+ createCssTransition('slide-y-reverse-transition');
240
+
241
+ // Javascript transitions
242
+ const VExpandTransition = createJavascriptTransition('expand-transition', ExpandTransitionGenerator());
243
+ createJavascriptTransition('expand-x-transition', ExpandTransitionGenerator('', true));
244
+
50
245
  function useAspectStyles(props) {
51
246
  return {
52
247
  aspectStyles: computed(() => {
@@ -127,7 +322,7 @@ const makeVImgProps = propsFactory({
127
322
  ...makeVResponsiveProps(),
128
323
  ...makeComponentProps(),
129
324
  ...makeRoundedProps(),
130
- ...makeTransitionProps()
325
+ ...makeTransitionProps$1()
131
326
  }, 'VImg');
132
327
  const VImg = genericComponent()({
133
328
  name: 'VImg',
@@ -381,4 +576,4 @@ const VImg = genericComponent()({
381
576
  }
382
577
  });
383
578
 
384
- export { VImg as V };
579
+ export { VImg as V, VExpandTransition as a };
@@ -1,5 +1,5 @@
1
1
  import { createVNode, normalizeStyle, normalizeClass, createElementVNode } from 'vue';
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-By_7_JjS.js';
2
+ import { g as genericComponent, p as propsFactory, b as useDimension, a as useLayout, c as useRender, m as makeTagProps, d as makeDimensionProps, e as makeComponentProps } from './asWebComponent-ZyEzWOOf.js';
3
3
  import { u as useSsrBoot } from './ssrBoot-Zgc_Ttvi.js';
4
4
 
5
5
  const makeVMainProps = propsFactory({
@@ -1,7 +1,6 @@
1
1
  import { useId, toRef, ref, computed, mergeProps, createVNode } from 'vue';
2
- import { m as makeVOverlayProps, V as VOverlay } from './VOverlay-yUn7p-Uf.js';
3
- import { b as useScopeId, f as forwardRefs } from './forwardRefs-BXxrv98s.js';
4
- import { g as genericComponent, p as propsFactory, j as useProxiedModel, a as useRender, o as omit } from './asWebComponent-By_7_JjS.js';
2
+ import { u as useScopeId, f as forwardRefs, m as makeVOverlayProps, V as VOverlay } from './forwardRefs-BQclvjMq.js';
3
+ import { g as genericComponent, p as propsFactory, x as useProxiedModel, c as useRender, Y as omit } from './asWebComponent-ZyEzWOOf.js';
5
4
 
6
5
  const makeVTooltipProps = propsFactory({
7
6
  id: String,
@@ -1,5 +1,5 @@
1
1
  import { ref, onMounted, nextTick, createElementBlock, openBlock, Fragment, renderList, unref, createElementVNode, toDisplayString, normalizeStyle, createBlock, resolveDynamicComponent, mergeProps } from 'vue';
2
- import { av as useDefineWidgets, G as useLayout } from './asWebComponent-By_7_JjS.js';
2
+ import { an as useDefineWidgets, a as useLayout } from './asWebComponent-ZyEzWOOf.js';
3
3
  import 'animated-details';
4
4
 
5
5
  const _sfc_main = {