@eodash/eodash 5.0.0-rc.1 → 5.0.0-rc.1.6

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 (89) hide show
  1. package/README.md +1 -1
  2. package/core/client/composables/EodashMap.js +19 -5
  3. package/core/client/composables/EodashProcess.js +51 -5
  4. package/core/client/eodash.js +8 -7
  5. package/core/client/eodashSTAC/EodashCollection.js +16 -0
  6. package/core/client/eodashSTAC/createLayers.js +61 -4
  7. package/core/client/eodashSTAC/helpers.js +39 -4
  8. package/core/client/types.ts +7 -0
  9. package/core/client/utils/states.js +3 -0
  10. package/dist/client/{DashboardLayout-FS5inBIm.js → DashboardLayout-SZfMDUoR.js} +2 -2
  11. package/dist/client/{DynamicWebComponent-CBSgT677.js → DynamicWebComponent-I9gzMY0L.js} +1 -1
  12. package/dist/client/EodashDatePicker-B9_u6TTm.js +405 -0
  13. package/dist/client/{EodashItemFilter-CFNKjm_Z.js → EodashItemFilter-G7YsYO3B.js} +1 -1
  14. package/dist/client/{EodashLayerControl-CzffoPUs.js → EodashLayerControl-CJ94ul63.js} +10 -2
  15. package/dist/client/{EodashLayoutSwitcher-DM0zDhvI.js → EodashLayoutSwitcher-DRKm8A8U.js} +2 -2
  16. package/dist/client/{EodashMap-BdFZ657e.js → EodashMap-Dp44Ajbi.js} +60 -10
  17. package/dist/client/{EodashMapBtns-rC_IPD-Z.js → EodashMapBtns-BlPFwhPc.js} +4 -4
  18. package/dist/client/{EodashProcess-SLsTISKV.js → EodashProcess-BLmIgUGT.js} +158 -25
  19. package/dist/client/{EodashStacInfo-DFD0gtWm.js → EodashStacInfo-BIRcfcMo.js} +1 -1
  20. package/dist/client/{EodashTools-ImohD2ys.js → EodashTools-PNfJ-Cw3.js} +4 -4
  21. package/dist/client/{ExportState-LNZAovzM.js → ExportState-5JyTshJH.js} +4 -4
  22. package/dist/client/{Footer-c19dV1ZR.js → Footer-CM9hgdQP.js} +1 -1
  23. package/dist/client/{Header-CcvXFqqt.js → Header-BTq4DW1x.js} +3 -3
  24. package/dist/client/{MobileLayout-OM6Wc-vj.js → MobileLayout-Atfoxf8d.js} +5 -5
  25. package/dist/client/{PopUp-B0_c0207.js → PopUp-Bmfn3N_4.js} +3 -3
  26. package/dist/client/{VImg-BpDhCbL0.js → VImg-CUF4S39i.js} +2 -2
  27. package/dist/client/{VMain-DC05bDwX.js → VMain-CQpXnzDR.js} +1 -1
  28. package/dist/client/{VOverlay-C7EUyVe_.js → VOverlay-DUnITwM1.js} +3 -3
  29. package/dist/client/{VTooltip-C78suika.js → VTooltip-BYTlbKer.js} +3 -3
  30. package/dist/client/{WidgetsContainer-sD1vDnhF.js → WidgetsContainer-BPbgxdb0.js} +1 -1
  31. package/dist/client/{asWebComponent-D8bMMCEr.js → asWebComponent-DW1XzZkL.js} +138 -27
  32. package/dist/client/eo-dash.css +1 -1
  33. package/dist/client/eo-dash.js +1 -1
  34. package/dist/client/{forwardRefs-yw6tFXER.js → forwardRefs-gx1Fzngc.js} +1 -1
  35. package/dist/client/{index-CpK_Yaom.js → index-DvFppNyk.js} +1 -1
  36. package/dist/client/{transition-B2YwqAYJ.js → transition-j2eWJYMg.js} +1 -1
  37. package/dist/types/core/client/App.vue.d.ts +7 -0
  38. package/dist/types/core/client/asWebComponent.d.ts +9 -0
  39. package/dist/types/core/client/components/DashboardLayout.vue.d.ts +2 -0
  40. package/dist/types/core/client/components/DynamicWebComponent.vue.d.ts +20 -0
  41. package/dist/types/core/client/components/ErrorAlert.vue.d.ts +2 -0
  42. package/dist/types/core/client/components/Footer.vue.d.ts +106 -0
  43. package/dist/types/core/client/components/Header.vue.d.ts +2 -0
  44. package/dist/types/core/client/components/IframeWrapper.vue.d.ts +7 -0
  45. package/dist/types/core/client/components/Loading.vue.d.ts +2 -0
  46. package/dist/types/core/client/components/MobileLayout.vue.d.ts +312 -0
  47. package/dist/types/core/client/composables/DefineEodash.d.ts +2 -0
  48. package/dist/types/core/client/composables/DefineTemplate.d.ts +15 -0
  49. package/dist/types/core/client/composables/DefineWidgets.d.ts +14 -0
  50. package/dist/types/core/client/composables/EodashMap.d.ts +6 -0
  51. package/dist/types/core/client/composables/EodashProcess.d.ts +162 -0
  52. package/dist/types/core/client/composables/index.d.ts +9 -0
  53. package/dist/types/core/client/eodash.d.ts +8 -0
  54. package/dist/types/core/client/eodashSTAC/EodashCollection.d.ts +113 -0
  55. package/dist/types/core/client/eodashSTAC/createLayers.d.ts +45 -0
  56. package/dist/types/core/client/eodashSTAC/helpers.d.ts +135 -0
  57. package/dist/types/core/client/eodashSTAC/triggers.d.ts +1 -0
  58. package/dist/types/core/client/main.d.ts +2 -0
  59. package/dist/types/core/client/plugins/axios.d.ts +2 -0
  60. package/dist/types/core/client/plugins/index.d.ts +3 -0
  61. package/dist/types/core/client/plugins/vuetify.d.ts +82 -0
  62. package/dist/types/core/client/render.d.ts +1 -0
  63. package/dist/types/core/client/store/actions.d.ts +12 -0
  64. package/dist/types/core/client/store/index.d.ts +11 -0
  65. package/dist/types/core/client/store/stac.d.ts +25 -0
  66. package/dist/types/core/client/store/states.d.ts +22 -0
  67. package/dist/types/core/client/types.d.ts +279 -0
  68. package/dist/types/core/client/utils/index.d.ts +2 -0
  69. package/dist/types/core/client/utils/keys.d.ts +8 -0
  70. package/dist/types/core/client/utils/states.d.ts +20 -0
  71. package/dist/types/core/client/views/Dashboard.vue.d.ts +9 -0
  72. package/dist/types/widgets/EodashDatePicker.vue.d.ts +15 -0
  73. package/dist/types/widgets/EodashItemFilter.vue.d.ts +44 -0
  74. package/dist/types/widgets/EodashLayerControl.vue.d.ts +13 -0
  75. package/dist/types/widgets/EodashLayoutSwitcher.vue.d.ts +11 -0
  76. package/dist/types/widgets/EodashMap.vue.d.ts +14 -0
  77. package/dist/types/widgets/EodashMapBtns.vue.d.ts +13 -0
  78. package/dist/types/widgets/EodashProcess.vue.d.ts +4 -0
  79. package/dist/types/widgets/EodashStacInfo.vue.d.ts +21 -0
  80. package/dist/types/widgets/EodashTools.vue.d.ts +19 -0
  81. package/dist/types/widgets/ExportState.vue.d.ts +7 -0
  82. package/dist/types/widgets/PopUp.vue.d.ts +27 -0
  83. package/dist/types/widgets/WidgetsContainer.vue.d.ts +10 -0
  84. package/package.json +11 -11
  85. package/widgets/EodashDatePicker.vue +89 -6
  86. package/widgets/EodashLayerControl.vue +13 -1
  87. package/widgets/EodashMap.vue +51 -5
  88. package/widgets/EodashProcess.vue +57 -11
  89. package/dist/client/EodashDatePicker-BGSS2ZYK.js +0 -306
@@ -1,2 +1,2 @@
1
- export { aW as EodashConstructor, aX as register, aY as store } from './asWebComponent-D8bMMCEr.js';
1
+ export { aX as EodashConstructor, aY as register, aZ as store } from './asWebComponent-DW1XzZkL.js';
2
2
  import 'vue';
@@ -1,5 +1,5 @@
1
1
  import { shallowRef, computed, watch } from 'vue';
2
- import { p as propsFactory, aH as getCurrentInstance } from './asWebComponent-D8bMMCEr.js';
2
+ import { p as propsFactory, aI as getCurrentInstance } from './asWebComponent-DW1XzZkL.js';
3
3
 
4
4
  class Box {
5
5
  constructor(_ref) {
@@ -1,5 +1,5 @@
1
1
  import { TransitionGroup, Transition, h, camelize } from 'vue';
2
- import { g as genericComponent, p as propsFactory } from './asWebComponent-D8bMMCEr.js';
2
+ import { g as genericComponent, p as propsFactory } from './asWebComponent-DW1XzZkL.js';
3
3
 
4
4
  // Utilities
5
5
  const makeTransitionProps = propsFactory({
@@ -1,5 +1,5 @@
1
1
  import { h, mergeProps, TransitionGroup, Transition } from 'vue';
2
- import { p as propsFactory } from './asWebComponent-D8bMMCEr.js';
2
+ import { p as propsFactory } from './asWebComponent-DW1XzZkL.js';
3
3
 
4
4
  // Utilities
5
5
  const makeTransitionProps = propsFactory({
@@ -0,0 +1,7 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ config?: string | undefined;
3
+ $props: {
4
+ readonly config?: string | undefined;
5
+ };
6
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
7
+ export default _default;
@@ -0,0 +1,9 @@
1
+ export function register(): void;
2
+ /**
3
+ * @type {import("vue").VueElementConstructor<
4
+ * import("vue").ExtractPropTypes<{ config: string }>>}
5
+ * */
6
+ export const EodashConstructor: import("vue").VueElementConstructor<import("vue").ExtractPropTypes<{
7
+ config: string;
8
+ }>>;
9
+ export { default as store } from "./store";
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,20 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ properties: Record<string, any>;
3
+ link: string | Function;
4
+ tagName: string;
5
+ constructorProp?: string | undefined;
6
+ onMounted?: Function | undefined;
7
+ onUnmounted?: Function | undefined;
8
+ $props: {
9
+ readonly properties?: Record<string, any> | undefined;
10
+ readonly link?: string | Function | undefined;
11
+ readonly tagName?: string | undefined;
12
+ readonly constructorProp?: string | undefined;
13
+ readonly onMounted?: Function | undefined;
14
+ readonly onUnmounted?: Function | undefined;
15
+ };
16
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
17
+ elementRef: unknown;
18
+ }, HTMLSpanElement>;
19
+ export default _default;
20
+ export type CustomElement = HTMLElement & Record<string | number | symbol, unknown>;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,106 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
2
+ footer: import("vue").CreateComponentPublicInstance<{
3
+ absolute: boolean;
4
+ height: string | number;
5
+ order: string | number;
6
+ style: import("vue").StyleValue;
7
+ tag: string;
8
+ app: boolean;
9
+ tile: boolean;
10
+ } & {
11
+ name?: string | undefined;
12
+ border?: string | number | boolean | undefined;
13
+ color?: string | undefined;
14
+ class?: any;
15
+ theme?: string | undefined;
16
+ elevation?: string | number | undefined;
17
+ rounded?: string | number | boolean | undefined;
18
+ } & {
19
+ $children?: import("vue").VNodeChild | {
20
+ default?: (() => import("vue").VNodeChild) | undefined;
21
+ } | (() => import("vue").VNodeChild);
22
+ 'v-slots'?: {
23
+ default?: false | (() => import("vue").VNodeChild) | undefined;
24
+ } | undefined;
25
+ } & {
26
+ "v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
27
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
28
+ absolute: boolean;
29
+ height: string | number;
30
+ order: string | number;
31
+ style: import("vue").StyleValue;
32
+ tag: string;
33
+ app: boolean;
34
+ tile: boolean;
35
+ } & {
36
+ name?: string | undefined;
37
+ border?: string | number | boolean | undefined;
38
+ color?: string | undefined;
39
+ class?: any;
40
+ theme?: string | undefined;
41
+ elevation?: string | number | undefined;
42
+ rounded?: string | number | boolean | undefined;
43
+ } & {
44
+ $children?: import("vue").VNodeChild | {
45
+ default?: (() => import("vue").VNodeChild) | undefined;
46
+ } | (() => import("vue").VNodeChild);
47
+ 'v-slots'?: {
48
+ default?: false | (() => import("vue").VNodeChild) | undefined;
49
+ } | undefined;
50
+ } & {
51
+ "v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
52
+ }, {
53
+ absolute: boolean;
54
+ height: string | number;
55
+ order: string | number;
56
+ style: import("vue").StyleValue;
57
+ tag: string;
58
+ app: boolean;
59
+ rounded: string | number | boolean;
60
+ tile: boolean;
61
+ }, true, {}, import("vue").SlotsType<Partial<{
62
+ default: () => import("vue").VNode[];
63
+ }>>, {
64
+ P: {};
65
+ B: {};
66
+ D: {};
67
+ C: {};
68
+ M: {};
69
+ Defaults: {};
70
+ }, {
71
+ absolute: boolean;
72
+ height: string | number;
73
+ order: string | number;
74
+ style: import("vue").StyleValue;
75
+ tag: string;
76
+ app: boolean;
77
+ tile: boolean;
78
+ } & {
79
+ name?: string | undefined;
80
+ border?: string | number | boolean | undefined;
81
+ color?: string | undefined;
82
+ class?: any;
83
+ theme?: string | undefined;
84
+ elevation?: string | number | undefined;
85
+ rounded?: string | number | boolean | undefined;
86
+ } & {
87
+ $children?: import("vue").VNodeChild | {
88
+ default?: (() => import("vue").VNodeChild) | undefined;
89
+ } | (() => import("vue").VNodeChild);
90
+ 'v-slots'?: {
91
+ default?: false | (() => import("vue").VNodeChild) | undefined;
92
+ } | undefined;
93
+ } & {
94
+ "v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
95
+ }, {}, {}, {}, {}, {
96
+ absolute: boolean;
97
+ height: string | number;
98
+ order: string | number;
99
+ style: import("vue").StyleValue;
100
+ tag: string;
101
+ app: boolean;
102
+ rounded: string | number | boolean;
103
+ tile: boolean;
104
+ }> | null;
105
+ }, any>;
106
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,7 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ src: string;
3
+ $props: {
4
+ readonly src?: string | undefined;
5
+ };
6
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLIFrameElement>;
7
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,312 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
2
+ tabs: import("vue").CreateComponentPublicInstance<{
3
+ symbol: any;
4
+ direction: "horizontal" | "vertical";
5
+ style: import("vue").StyleValue;
6
+ mobile: boolean | null;
7
+ disabled: boolean;
8
+ multiple: boolean;
9
+ tag: string;
10
+ mandatory: boolean | "force";
11
+ items: readonly (string | number | Record<string, any>)[];
12
+ density: "default" | "comfortable" | "compact" | null;
13
+ selectedClass: string;
14
+ stacked: boolean;
15
+ centerActive: boolean;
16
+ nextIcon: string | (string | [path: string, opacity: number])[] | ((new () => any) | import("vue").FunctionalComponent<any, {}, any, {}>);
17
+ prevIcon: string | (string | [path: string, opacity: number])[] | ((new () => any) | import("vue").FunctionalComponent<any, {}, any, {}>);
18
+ grow: boolean;
19
+ hideSlider: boolean;
20
+ alignTabs: "center" | "end" | "start" | "title";
21
+ fixedTabs: boolean;
22
+ } & {
23
+ max?: number | undefined;
24
+ height?: string | number | undefined;
25
+ color?: string | undefined;
26
+ class?: any;
27
+ mobileBreakpoint?: number | ("sm" | "md" | "lg" | "xl" | "xxl" | "xs") | undefined;
28
+ modelValue?: any;
29
+ bgColor?: string | undefined;
30
+ showArrows?: string | boolean | undefined;
31
+ sliderColor?: string | undefined;
32
+ } & {
33
+ $children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
34
+ [x: `tab.${string}`]: ((arg: {
35
+ item: string | number | Record<string, any>;
36
+ }) => import("vue").VNodeChild) | undefined;
37
+ [x: `item.${string}`]: ((arg: {
38
+ item: string | number | Record<string, any>;
39
+ }) => import("vue").VNodeChild) | undefined;
40
+ default?: (() => import("vue").VNodeChild) | undefined;
41
+ tab?: ((arg: {
42
+ item: string | number | Record<string, any>;
43
+ }) => import("vue").VNodeChild) | undefined;
44
+ item?: ((arg: {
45
+ item: string | number | Record<string, any>;
46
+ }) => import("vue").VNodeChild) | undefined;
47
+ window?: (() => import("vue").VNodeChild) | undefined;
48
+ };
49
+ 'v-slots'?: {
50
+ [x: `tab.${string}`]: false | ((arg: {
51
+ item: string | number | Record<string, any>;
52
+ }) => import("vue").VNodeChild) | undefined;
53
+ [x: `item.${string}`]: false | ((arg: {
54
+ item: string | number | Record<string, any>;
55
+ }) => import("vue").VNodeChild) | undefined;
56
+ default?: false | (() => import("vue").VNodeChild) | undefined;
57
+ tab?: false | ((arg: {
58
+ item: string | number | Record<string, any>;
59
+ }) => import("vue").VNodeChild) | undefined;
60
+ item?: false | ((arg: {
61
+ item: string | number | Record<string, any>;
62
+ }) => import("vue").VNodeChild) | undefined;
63
+ window?: false | (() => import("vue").VNodeChild) | undefined;
64
+ } | undefined;
65
+ } & {
66
+ [x: `v-slot:tab.${string}`]: false | ((arg: {
67
+ item: string | number | Record<string, any>;
68
+ }) => import("vue").VNodeChild) | undefined;
69
+ [x: `v-slot:item.${string}`]: false | ((arg: {
70
+ item: string | number | Record<string, any>;
71
+ }) => import("vue").VNodeChild) | undefined;
72
+ "v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
73
+ "v-slot:tab"?: false | ((arg: {
74
+ item: string | number | Record<string, any>;
75
+ }) => import("vue").VNodeChild) | undefined;
76
+ "v-slot:item"?: false | ((arg: {
77
+ item: string | number | Record<string, any>;
78
+ }) => import("vue").VNodeChild) | undefined;
79
+ "v-slot:window"?: false | (() => import("vue").VNodeChild) | undefined;
80
+ } & {
81
+ "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
82
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
83
+ 'update:modelValue': (v: unknown) => true;
84
+ }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
85
+ symbol: any;
86
+ direction: "horizontal" | "vertical";
87
+ style: import("vue").StyleValue;
88
+ mobile: boolean | null;
89
+ disabled: boolean;
90
+ multiple: boolean;
91
+ tag: string;
92
+ mandatory: boolean | "force";
93
+ items: readonly (string | number | Record<string, any>)[];
94
+ density: "default" | "comfortable" | "compact" | null;
95
+ selectedClass: string;
96
+ stacked: boolean;
97
+ centerActive: boolean;
98
+ nextIcon: string | (string | [path: string, opacity: number])[] | ((new () => any) | import("vue").FunctionalComponent<any, {}, any, {}>);
99
+ prevIcon: string | (string | [path: string, opacity: number])[] | ((new () => any) | import("vue").FunctionalComponent<any, {}, any, {}>);
100
+ grow: boolean;
101
+ hideSlider: boolean;
102
+ alignTabs: "center" | "end" | "start" | "title";
103
+ fixedTabs: boolean;
104
+ } & {
105
+ max?: number | undefined;
106
+ height?: string | number | undefined;
107
+ color?: string | undefined;
108
+ class?: any;
109
+ mobileBreakpoint?: number | ("sm" | "md" | "lg" | "xl" | "xxl" | "xs") | undefined;
110
+ modelValue?: any;
111
+ bgColor?: string | undefined;
112
+ showArrows?: string | boolean | undefined;
113
+ sliderColor?: string | undefined;
114
+ } & {
115
+ $children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
116
+ [x: `tab.${string}`]: ((arg: {
117
+ item: string | number | Record<string, any>;
118
+ }) => import("vue").VNodeChild) | undefined;
119
+ [x: `item.${string}`]: ((arg: {
120
+ item: string | number | Record<string, any>;
121
+ }) => import("vue").VNodeChild) | undefined;
122
+ default?: (() => import("vue").VNodeChild) | undefined;
123
+ tab?: ((arg: {
124
+ item: string | number | Record<string, any>;
125
+ }) => import("vue").VNodeChild) | undefined;
126
+ item?: ((arg: {
127
+ item: string | number | Record<string, any>;
128
+ }) => import("vue").VNodeChild) | undefined;
129
+ window?: (() => import("vue").VNodeChild) | undefined;
130
+ };
131
+ 'v-slots'?: {
132
+ [x: `tab.${string}`]: false | ((arg: {
133
+ item: string | number | Record<string, any>;
134
+ }) => import("vue").VNodeChild) | undefined;
135
+ [x: `item.${string}`]: false | ((arg: {
136
+ item: string | number | Record<string, any>;
137
+ }) => import("vue").VNodeChild) | undefined;
138
+ default?: false | (() => import("vue").VNodeChild) | undefined;
139
+ tab?: false | ((arg: {
140
+ item: string | number | Record<string, any>;
141
+ }) => import("vue").VNodeChild) | undefined;
142
+ item?: false | ((arg: {
143
+ item: string | number | Record<string, any>;
144
+ }) => import("vue").VNodeChild) | undefined;
145
+ window?: false | (() => import("vue").VNodeChild) | undefined;
146
+ } | undefined;
147
+ } & {
148
+ [x: `v-slot:tab.${string}`]: false | ((arg: {
149
+ item: string | number | Record<string, any>;
150
+ }) => import("vue").VNodeChild) | undefined;
151
+ [x: `v-slot:item.${string}`]: false | ((arg: {
152
+ item: string | number | Record<string, any>;
153
+ }) => import("vue").VNodeChild) | undefined;
154
+ "v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
155
+ "v-slot:tab"?: false | ((arg: {
156
+ item: string | number | Record<string, any>;
157
+ }) => import("vue").VNodeChild) | undefined;
158
+ "v-slot:item"?: false | ((arg: {
159
+ item: string | number | Record<string, any>;
160
+ }) => import("vue").VNodeChild) | undefined;
161
+ "v-slot:window"?: false | (() => import("vue").VNodeChild) | undefined;
162
+ } & {
163
+ "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
164
+ }, {
165
+ symbol: any;
166
+ height: string | number;
167
+ direction: "horizontal" | "vertical";
168
+ style: import("vue").StyleValue;
169
+ mobile: boolean | null;
170
+ disabled: boolean;
171
+ multiple: boolean;
172
+ tag: string;
173
+ mandatory: boolean | "force";
174
+ modelValue: any;
175
+ items: readonly (string | number | Record<string, any>)[];
176
+ density: "default" | "comfortable" | "compact" | null;
177
+ selectedClass: string;
178
+ stacked: boolean;
179
+ centerActive: boolean;
180
+ nextIcon: string | (string | [path: string, opacity: number])[] | ((new () => any) | import("vue").FunctionalComponent<any, {}, any, {}>);
181
+ prevIcon: string | (string | [path: string, opacity: number])[] | ((new () => any) | import("vue").FunctionalComponent<any, {}, any, {}>);
182
+ grow: boolean;
183
+ hideSlider: boolean;
184
+ alignTabs: "center" | "end" | "start" | "title";
185
+ fixedTabs: boolean;
186
+ }, true, {}, import("vue").SlotsType<Partial<{
187
+ [x: `tab.${string}`]: (arg: {
188
+ item: string | number | Record<string, any>;
189
+ }) => import("vue").VNode[];
190
+ [x: `item.${string}`]: (arg: {
191
+ item: string | number | Record<string, any>;
192
+ }) => import("vue").VNode[];
193
+ default: () => import("vue").VNode[];
194
+ tab: (arg: {
195
+ item: string | number | Record<string, any>;
196
+ }) => import("vue").VNode[];
197
+ item: (arg: {
198
+ item: string | number | Record<string, any>;
199
+ }) => import("vue").VNode[];
200
+ window: () => import("vue").VNode[];
201
+ }>>, {
202
+ P: {};
203
+ B: {};
204
+ D: {};
205
+ C: {};
206
+ M: {};
207
+ Defaults: {};
208
+ }, {
209
+ symbol: any;
210
+ direction: "horizontal" | "vertical";
211
+ style: import("vue").StyleValue;
212
+ mobile: boolean | null;
213
+ disabled: boolean;
214
+ multiple: boolean;
215
+ tag: string;
216
+ mandatory: boolean | "force";
217
+ items: readonly (string | number | Record<string, any>)[];
218
+ density: "default" | "comfortable" | "compact" | null;
219
+ selectedClass: string;
220
+ stacked: boolean;
221
+ centerActive: boolean;
222
+ nextIcon: string | (string | [path: string, opacity: number])[] | ((new () => any) | import("vue").FunctionalComponent<any, {}, any, {}>);
223
+ prevIcon: string | (string | [path: string, opacity: number])[] | ((new () => any) | import("vue").FunctionalComponent<any, {}, any, {}>);
224
+ grow: boolean;
225
+ hideSlider: boolean;
226
+ alignTabs: "center" | "end" | "start" | "title";
227
+ fixedTabs: boolean;
228
+ } & {
229
+ max?: number | undefined;
230
+ height?: string | number | undefined;
231
+ color?: string | undefined;
232
+ class?: any;
233
+ mobileBreakpoint?: number | ("sm" | "md" | "lg" | "xl" | "xxl" | "xs") | undefined;
234
+ modelValue?: any;
235
+ bgColor?: string | undefined;
236
+ showArrows?: string | boolean | undefined;
237
+ sliderColor?: string | undefined;
238
+ } & {
239
+ $children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
240
+ [x: `tab.${string}`]: ((arg: {
241
+ item: string | number | Record<string, any>;
242
+ }) => import("vue").VNodeChild) | undefined;
243
+ [x: `item.${string}`]: ((arg: {
244
+ item: string | number | Record<string, any>;
245
+ }) => import("vue").VNodeChild) | undefined;
246
+ default?: (() => import("vue").VNodeChild) | undefined;
247
+ tab?: ((arg: {
248
+ item: string | number | Record<string, any>;
249
+ }) => import("vue").VNodeChild) | undefined;
250
+ item?: ((arg: {
251
+ item: string | number | Record<string, any>;
252
+ }) => import("vue").VNodeChild) | undefined;
253
+ window?: (() => import("vue").VNodeChild) | undefined;
254
+ };
255
+ 'v-slots'?: {
256
+ [x: `tab.${string}`]: false | ((arg: {
257
+ item: string | number | Record<string, any>;
258
+ }) => import("vue").VNodeChild) | undefined;
259
+ [x: `item.${string}`]: false | ((arg: {
260
+ item: string | number | Record<string, any>;
261
+ }) => import("vue").VNodeChild) | undefined;
262
+ default?: false | (() => import("vue").VNodeChild) | undefined;
263
+ tab?: false | ((arg: {
264
+ item: string | number | Record<string, any>;
265
+ }) => import("vue").VNodeChild) | undefined;
266
+ item?: false | ((arg: {
267
+ item: string | number | Record<string, any>;
268
+ }) => import("vue").VNodeChild) | undefined;
269
+ window?: false | (() => import("vue").VNodeChild) | undefined;
270
+ } | undefined;
271
+ } & {
272
+ [x: `v-slot:tab.${string}`]: false | ((arg: {
273
+ item: string | number | Record<string, any>;
274
+ }) => import("vue").VNodeChild) | undefined;
275
+ [x: `v-slot:item.${string}`]: false | ((arg: {
276
+ item: string | number | Record<string, any>;
277
+ }) => import("vue").VNodeChild) | undefined;
278
+ "v-slot:default"?: false | (() => import("vue").VNodeChild) | undefined;
279
+ "v-slot:tab"?: false | ((arg: {
280
+ item: string | number | Record<string, any>;
281
+ }) => import("vue").VNodeChild) | undefined;
282
+ "v-slot:item"?: false | ((arg: {
283
+ item: string | number | Record<string, any>;
284
+ }) => import("vue").VNodeChild) | undefined;
285
+ "v-slot:window"?: false | (() => import("vue").VNodeChild) | undefined;
286
+ } & {
287
+ "onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
288
+ }, {}, {}, {}, {}, {
289
+ symbol: any;
290
+ height: string | number;
291
+ direction: "horizontal" | "vertical";
292
+ style: import("vue").StyleValue;
293
+ mobile: boolean | null;
294
+ disabled: boolean;
295
+ multiple: boolean;
296
+ tag: string;
297
+ mandatory: boolean | "force";
298
+ modelValue: any;
299
+ items: readonly (string | number | Record<string, any>)[];
300
+ density: "default" | "comfortable" | "compact" | null;
301
+ selectedClass: string;
302
+ stacked: boolean;
303
+ centerActive: boolean;
304
+ nextIcon: string | (string | [path: string, opacity: number])[] | ((new () => any) | import("vue").FunctionalComponent<any, {}, any, {}>);
305
+ prevIcon: string | (string | [path: string, opacity: number])[] | ((new () => any) | import("vue").FunctionalComponent<any, {}, any, {}>);
306
+ grow: boolean;
307
+ hideSlider: boolean;
308
+ alignTabs: "center" | "end" | "start" | "title";
309
+ fixedTabs: boolean;
310
+ }> | null;
311
+ }, any>;
312
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export function useEodashRuntime(runtimeConfig: string | undefined): Promise<import("../types").Eodash>;
2
+ export function createEodash(config: ((store: typeof import("../store").default) => (Promise<import("../types").Eodash> | import("../types").Eodash)) | import("../types").Eodash): Promise<import("../types").Eodash<"compiletime">>;
@@ -0,0 +1,15 @@
1
+ /**
2
+ * @typedef {{
3
+ * bgWidget:ReturnType< typeof import("./DefineWidgets").useDefineWidgets>[number]| import("vue").ShallowRef<null>
4
+ * loading: ReturnType< typeof import("./DefineWidgets").useDefineWidgets>[number]| import("vue").ShallowRef<null>
5
+ * importedWidgets:ReturnType< typeof import("./DefineWidgets").useDefineWidgets>
6
+ * gap: import("vue").Ref<number>
7
+ * }} DefinedTemplate
8
+ **/
9
+ export function useDefineTemplate(): import("vue").ToRefs<DefinedTemplate>;
10
+ export type DefinedTemplate = {
11
+ bgWidget: ReturnType<typeof import("./DefineWidgets").useDefineWidgets>[number] | import("vue").ShallowRef<null>;
12
+ loading: ReturnType<typeof import("./DefineWidgets").useDefineWidgets>[number] | import("vue").ShallowRef<null>;
13
+ importedWidgets: ReturnType<typeof import("./DefineWidgets").useDefineWidgets>;
14
+ gap: import("vue").Ref<number>;
15
+ };
@@ -0,0 +1,14 @@
1
+ export function useDefineWidgets(widgetConfigs: (import("../types").Widget | import("../types").BackgroundWidget | Omit<import("../types").Widget, "layout"> | undefined)[] | undefined): ReactiveDefinedWidget[];
2
+ export type DefinedWidget = {
3
+ component: import("vue").Component | null;
4
+ props: Record<string, unknown>;
5
+ title: string;
6
+ id: string | number | symbol;
7
+ layout: {
8
+ x: number;
9
+ y: number;
10
+ h: number;
11
+ w: number;
12
+ };
13
+ };
14
+ export type ReactiveDefinedWidget = import("vue").ShallowRef<DefinedWidget>;
@@ -0,0 +1,6 @@
1
+ export function useHandleMapMoveEnd(mapElement: import("vue").Ref<(HTMLElement & Record<string, any> & {
2
+ map: import("ol").Map;
3
+ }) | null>, mapPosition: import("vue").Ref<(number | undefined)[]>): void;
4
+ export function useInitMap(mapElement: import("vue").Ref<import("@eox/map").EOxMap | null>, selectedIndicator: import("vue").Ref<import("stac-ts").StacCollection | null>, eodashCols: EodashCollection[], datetime: import("vue").Ref<string>, mapLayers: import("vue").Ref<Record<string, any>[]>, partnerMap: import("vue").Ref<import("@eox/map").EOxMap | null>): void;
5
+ export function useUpdateTooltipProperties(eodashCols: EodashCollection[], tooltipProperties: import("vue").Ref<import("../types").EodashStyleJson["tooltip"]>): void;
6
+ import { EodashCollection } from "../eodashSTAC/EodashCollection";