@eodash/eodash 5.0.0-alpha.1.9 → 5.0.0-alpha.2

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 (79) hide show
  1. package/README.md +1 -1
  2. package/bin/cli.js +15 -8
  3. package/bin/main.js +9 -0
  4. package/bin/serverConfig.js +58 -29
  5. package/bin/types.d.ts +52 -0
  6. package/bin/utils.js +70 -20
  7. package/core/App.vue +10 -12
  8. package/core/SuspensedDashboard.ce.vue +59 -0
  9. package/core/asWebComponent.d.ts +18 -0
  10. package/core/asWebComponent.js +12 -0
  11. package/core/components/DashboardLayout.vue +23 -27
  12. package/core/components/DynamicWebComponent.vue +6 -6
  13. package/core/components/Footer.vue +11 -12
  14. package/core/components/Header.vue +5 -29
  15. package/core/components/Loading.vue +27 -0
  16. package/core/components/MobileLayout.vue +34 -63
  17. package/core/composables/DefineEodash.js +57 -0
  18. package/core/composables/DefineWidgets.js +26 -15
  19. package/core/composables/index.js +139 -67
  20. package/core/eodash.js +100 -0
  21. package/core/main.js +2 -4
  22. package/core/plugins/index.js +3 -12
  23. package/core/plugins/vuetify.js +5 -2
  24. package/core/store/Actions.js +0 -28
  25. package/core/store/States.js +12 -3
  26. package/core/store/stac.js +7 -5
  27. package/core/types.d.ts +148 -124
  28. package/core/utils/eodashSTAC.js +164 -0
  29. package/core/utils/helpers.js +40 -0
  30. package/core/utils/index.js +28 -0
  31. package/core/utils/keys.js +6 -0
  32. package/core/views/Dashboard.vue +33 -23
  33. package/core/vite-env.d.ts +16 -2
  34. package/dist/.gitkeep +0 -0
  35. package/dist/DashboardLayout-YLfAa8wH.js +168 -0
  36. package/dist/DynamicWebComponent-BDOQsEcj.js +57 -0
  37. package/dist/EodashDatePicker-DlehqSgz.js +1645 -0
  38. package/dist/EodashItemFilter-TSp7XRGy.js +51 -0
  39. package/dist/EodashMap-DInb9cfS.js +53405 -0
  40. package/dist/Footer-CIzHgJbK.js +118 -0
  41. package/dist/Header-C5PSB8Uc.js +609 -0
  42. package/dist/IframeWrapper-DYHQQRUh.js +19 -0
  43. package/dist/MobileLayout-DZmqrpub.js +523 -0
  44. package/dist/VBtn-CFPhsIX8.js +1106 -0
  45. package/dist/VMain-deI9jyIf.js +35 -0
  46. package/dist/WidgetsContainer-D_PLP1qf.js +122 -0
  47. package/dist/_commonjsHelpers-DaMA6jEr.js +8 -0
  48. package/dist/asWebComponent-BKe6Spni.js +11323 -0
  49. package/dist/basedecoder-Qm25PwVp-CHo5Pomv.js +89 -0
  50. package/dist/color-D72nEBIR.js +115 -0
  51. package/dist/decoder-kAoyGIq9-HAkjSTCt.js +10 -0
  52. package/dist/deflate-Be2Arps5-hDqMz3RA.js +10 -0
  53. package/dist/dimensions-BZkmIizV.js +53 -0
  54. package/dist/eo-dash.js +6 -0
  55. package/dist/eox-itemfilter-DcQkRD2l.js +7537 -0
  56. package/dist/eox-map-BJ9SIixs.js +36205 -0
  57. package/dist/eox-stacinfo-B-YrT7Ug.js +13698 -0
  58. package/dist/forwardRefs-Bxeu9Obx.js +142 -0
  59. package/dist/index-8ch8xKfa.js +152 -0
  60. package/dist/index-DIt8GjSR.js +65 -0
  61. package/dist/jpeg-DNfUpLwy-Fjan-04T.js +515 -0
  62. package/dist/lerc-C9VL9kri-DyVxBvsf.js +1029 -0
  63. package/dist/lzw-BOMhmEDy-Dboc93VO.js +84 -0
  64. package/dist/packbits-DaUD6MLm-Bu1PoTGa.js +24 -0
  65. package/dist/pako.esm-C3kYPGGQ-BMki8cQY.js +1087 -0
  66. package/dist/raw-CcGKjn8q-DFOt-i8n.js +9 -0
  67. package/dist/ssrBoot-Cm5pWM14.js +17 -0
  68. package/dist/style.css +5 -0
  69. package/dist/webfontloader-CyOFAuFB.js +471 -0
  70. package/dist/webimage-D2c098k3-DLj1LQxB.js +19 -0
  71. package/package.json +40 -12
  72. package/widgets/EodashDatePicker.vue +56 -0
  73. package/widgets/EodashItemFilter.vue +60 -0
  74. package/widgets/EodashMap.vue +82 -0
  75. package/widgets/WidgetsContainer.vue +1 -1
  76. package/core/composables/DefineConfig.js +0 -45
  77. package/core/eodashConfig.js +0 -136
  78. package/core/plugins/router.js +0 -20
  79. package/core/store/Keys.js +0 -6
@@ -0,0 +1,9 @@
1
+ import { g as d } from "./basedecoder-Qm25PwVp-CHo5Pomv.js";
2
+ class t extends d {
3
+ decodeBlock(e) {
4
+ return e;
5
+ }
6
+ }
7
+ export {
8
+ t as default
9
+ };
@@ -0,0 +1,17 @@
1
+ import { s, C as t, c as e, a7 as n } from "./asWebComponent-BKe6Spni.js";
2
+ function i() {
3
+ const o = s(!1);
4
+ return t(() => {
5
+ window.requestAnimationFrame(() => {
6
+ o.value = !0;
7
+ });
8
+ }), {
9
+ ssrBootStyles: e(() => o.value ? void 0 : {
10
+ transition: "none !important"
11
+ }),
12
+ isBooted: n(o)
13
+ };
14
+ }
15
+ export {
16
+ i as u
17
+ };