@eodash/eodash 5.0.0-rc.3 → 5.1.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.
- package/README.md +1 -0
- package/core/client/App.vue +8 -2
- package/core/client/asWebComponent.js +5 -5
- package/core/client/components/DashboardLayout.vue +42 -25
- package/core/client/components/EodashOverlay.vue +1 -1
- package/core/client/components/ErrorAlert.vue +2 -2
- package/core/client/components/Footer.vue +4 -4
- package/core/client/components/Header.vue +3 -3
- package/core/client/components/MobileLayout.vue +9 -10
- package/core/client/composables/DefineEodash.js +38 -43
- package/core/client/composables/DefineTemplate.js +4 -2
- package/core/client/composables/DefineWidgets.js +14 -8
- package/core/client/composables/index.js +273 -23
- package/core/client/eodashSTAC/EodashCollection.js +80 -47
- package/core/client/eodashSTAC/helpers.js +136 -27
- package/core/client/eodashSTAC/parquet.js +145 -0
- package/core/client/eodashSTAC/triggers.js +6 -3
- package/core/client/plugins/index.js +4 -3
- package/core/client/plugins/vuetify.js +3 -0
- package/core/client/store/actions.js +21 -4
- package/core/client/store/stac.js +93 -56
- package/core/client/store/states.js +15 -5
- package/core/client/types.ts +59 -43
- package/core/client/utils/index.js +79 -0
- package/core/client/utils/keys.js +2 -2
- package/core/client/utils/states.js +30 -5
- package/core/client/views/Dashboard.vue +36 -32
- package/core/client/vite-env.d.ts +7 -0
- package/dist/client/{DashboardLayout-t_PavJPO.js → DashboardLayout-ByVs1DrY.js} +23 -12
- package/dist/client/{DynamicWebComponent-y07rVJch.js → DynamicWebComponent-C3W7HSQm.js} +1 -1
- package/dist/client/{EodashDatePicker-CcOfyzGD.js → EodashDatePicker-BIAf1sMT.js} +59 -32
- package/dist/client/{EodashItemFilter-B9HCvIMi.js → EodashItemFilter-DPznh8UB.js} +20 -10
- package/dist/client/{EodashLayerControl-KStn7Nb_.js → EodashLayerControl-Bhxjw4V2.js} +29 -16
- package/dist/client/EodashLayoutSwitcher-C5qTEffW.js +61 -0
- package/dist/client/EodashMapBtns-WoGq8MuV.js +173 -0
- package/dist/client/{EodashStacInfo-C_hDy6Pd.js → EodashStacInfo-CSvvF2jI.js} +3 -18
- package/dist/client/{EodashTools-BXflvRf8.js → EodashTools-Cv1SXQ5y.js} +13 -13
- package/dist/client/{ExportState-C0QRemK1.js → ExportState-D-iuwaad.js} +58 -52
- package/dist/client/{Footer-7VGyGUAs.js → Footer-CyF0zRAk.js} +15 -13
- package/dist/client/{Header-BQJnXHYq.js → Header-CgD8jDKU.js} +33 -28
- package/dist/client/{MobileLayout-b8nQ-Vyl.js → MobileLayout-EKQ_kpSh.js} +69 -60
- package/dist/client/{PopUp-DgNrh9Df.js → PopUp-BsYLvWch.js} +19 -10
- package/dist/client/ProcessList-C2xsLU2_.js +191 -0
- package/dist/client/{VImg-D4eT3IQ1.js → VImg-OHe8YTs2.js} +24 -24
- package/dist/client/{VMain-C3hN2-H3.js → VMain-PryTLU4a.js} +7 -7
- package/dist/client/{VOverlay-tAeNygaA.js → VOverlay-yUn7p-Uf.js} +64 -27
- package/dist/client/{VTooltip-B0Q3iHMZ.js → VTooltip-DZ0fjpB3.js} +13 -10
- package/dist/client/{WidgetsContainer-CtDHfCYf.js → WidgetsContainer-B9LBadcC.js} +1 -1
- package/dist/client/asWebComponent-By_7_JjS.js +19193 -0
- package/dist/client/async-DkSu_u2K.js +740 -0
- package/dist/client/eo-dash.js +1 -1
- package/dist/client/{forwardRefs-CIFAqXaZ.js → forwardRefs-BXxrv98s.js} +31 -4
- package/dist/client/handling-CgmFXkW6.js +1212 -0
- package/dist/client/helpers-Dy0Q13tP.js +4534 -0
- package/dist/client/{index-DvcUndod.js → index-BuhOHXKv.js} +2 -4
- package/dist/client/{index-BQ16n4Sk.js → index-Ch_HchK3.js} +39 -32
- package/dist/client/{index-Cv7HBz49.js → index-Dqj4tbx2.js} +2 -2
- package/dist/client/index-skjhlH8u.js +376 -0
- package/dist/client/{ssrBoot-BP7SYRyC.js → ssrBoot-Zgc_Ttvi.js} +2 -2
- package/dist/client/templates.js +850 -0
- package/dist/client/transition-C98Yn4Vo.js +40 -0
- package/dist/node/cli.js +16 -6
- package/dist/node/types.d.ts +1 -1
- package/dist/types/core/client/App.vue.d.ts +2 -2
- package/dist/types/core/client/asWebComponent.d.ts +1 -1
- package/dist/types/core/client/components/DynamicWebComponent.vue.d.ts +1 -3
- package/dist/types/core/client/components/Footer.vue.d.ts +1 -105
- package/dist/types/core/client/components/IframeWrapper.vue.d.ts +1 -1
- package/dist/types/core/client/components/MobileLayout.vue.d.ts +1 -324
- package/dist/types/core/client/composables/DefineEodash.d.ts +2 -2
- package/dist/types/core/client/composables/DefineTemplate.d.ts +1 -1
- package/dist/types/core/client/composables/DefineWidgets.d.ts +4 -4
- package/dist/types/core/client/composables/index.d.ts +24 -2
- package/dist/types/core/client/eodashSTAC/EodashCollection.d.ts +9 -6
- package/dist/types/core/client/eodashSTAC/helpers.d.ts +20 -5
- package/dist/types/core/client/eodashSTAC/parquet.d.ts +2 -0
- package/dist/types/core/client/plugins/vuetify.d.ts +7 -4
- package/dist/types/core/client/store/actions.d.ts +3 -2
- package/dist/types/core/client/store/stac.d.ts +16 -13
- package/dist/types/core/client/store/states.d.ts +14 -4
- package/dist/types/core/client/types.d.ts +45 -30
- package/dist/types/core/client/utils/index.d.ts +2 -0
- package/dist/types/core/client/utils/keys.d.ts +4 -4
- package/dist/types/core/client/utils/states.d.ts +59 -47
- package/dist/types/core/client/views/Dashboard.vue.d.ts +2 -2
- package/dist/types/templates/baseConfig.d.ts +4 -0
- package/dist/types/templates/compare.d.ts +210 -0
- package/dist/types/templates/expert.d.ts +151 -0
- package/dist/types/templates/index.d.ts +6 -0
- package/dist/types/templates/light.d.ts +145 -0
- package/dist/types/widgets/EodashDatePicker.vue.d.ts +1 -458
- package/dist/types/widgets/EodashItemFilter.vue.d.ts +3 -3
- package/dist/types/widgets/EodashLayerControl.vue.d.ts +14 -7
- package/dist/types/widgets/EodashLayoutSwitcher.vue.d.ts +1 -3
- package/dist/types/widgets/EodashMap/index.vue.d.ts +1 -4
- package/dist/types/widgets/EodashMapBtns.vue.d.ts +8 -8
- package/dist/types/widgets/EodashProcess/ProcessList.vue.d.ts +8 -1
- package/dist/types/widgets/EodashProcess/index.vue.d.ts +8 -4
- package/dist/types/widgets/EodashProcess/methods/async.d.ts +18 -18
- package/dist/types/widgets/EodashProcess/methods/composables.d.ts +3 -2
- package/dist/types/widgets/EodashProcess/methods/custom-endpoints/chart/index.d.ts +1 -0
- package/dist/types/widgets/EodashProcess/methods/custom-endpoints/chart/sentinelhub-endpoint.d.ts +6 -0
- package/dist/types/widgets/EodashProcess/methods/custom-endpoints/chart/veda-endpoint.d.ts +4 -0
- package/dist/types/widgets/EodashProcess/methods/custom-endpoints/layers/eoxhub-workspaces-endpoint.d.ts +5 -0
- package/dist/types/widgets/EodashProcess/methods/custom-endpoints/layers/index.d.ts +1 -0
- package/dist/types/widgets/EodashProcess/methods/handling.d.ts +12 -5
- package/dist/types/widgets/EodashProcess/methods/outputs.d.ts +72 -41
- package/dist/types/widgets/EodashProcess/methods/utils.d.ts +41 -21
- package/dist/types/widgets/EodashProcess/states.d.ts +11 -0
- package/dist/types/widgets/EodashProcess/types.d.ts +41 -0
- package/dist/types/widgets/EodashStacInfo.vue.d.ts +14 -14
- package/dist/types/widgets/EodashTools.vue.d.ts +3 -3
- package/dist/types/widgets/ExportState.vue.d.ts +1 -1
- package/dist/types/widgets/PopUp.vue.d.ts +11 -16
- package/dist/types/widgets/WidgetsContainer.vue.d.ts +3 -6
- package/package.json +53 -45
- package/templates/baseConfig.js +68 -0
- package/templates/compare.js +162 -0
- package/templates/expert.js +123 -0
- package/templates/index.js +8 -0
- package/templates/light.js +130 -0
- package/widgets/EodashDatePicker.vue +80 -31
- package/widgets/EodashItemFilter.vue +26 -11
- package/widgets/EodashLayerControl.vue +20 -11
- package/widgets/EodashLayoutSwitcher.vue +6 -3
- package/widgets/EodashMap/index.vue +3 -8
- package/widgets/EodashMap/methods/create-layers-config.js +4 -3
- package/widgets/EodashMap/methods/index.js +33 -23
- package/widgets/EodashMapBtns.vue +83 -41
- package/widgets/EodashProcess/ProcessList.vue +34 -10
- package/widgets/EodashProcess/index.vue +55 -20
- package/widgets/EodashProcess/methods/async.js +77 -59
- package/widgets/EodashProcess/methods/composables.js +21 -14
- package/widgets/EodashProcess/methods/custom-endpoints/chart/index.js +35 -0
- package/widgets/EodashProcess/methods/custom-endpoints/chart/sentinelhub-endpoint.js +275 -0
- package/widgets/EodashProcess/methods/custom-endpoints/chart/veda-endpoint.js +116 -0
- package/widgets/EodashProcess/methods/custom-endpoints/layers/eoxhub-workspaces-endpoint.js +94 -0
- package/widgets/EodashProcess/methods/custom-endpoints/layers/index.js +33 -0
- package/widgets/EodashProcess/methods/handling.js +127 -80
- package/widgets/EodashProcess/methods/outputs.js +376 -125
- package/widgets/EodashProcess/methods/utils.js +398 -10
- package/widgets/EodashProcess/states.js +13 -0
- package/widgets/EodashProcess/types.ts +46 -0
- package/widgets/EodashStacInfo.vue +2 -17
- package/widgets/EodashTools.vue +13 -13
- package/widgets/WidgetsContainer.vue +1 -1
- package/core/client/eodash.js +0 -454
- package/dist/client/EodashLayoutSwitcher-DqeFO3RN.js +0 -52
- package/dist/client/EodashMapBtns-5BF27qJB.js +0 -131
- package/dist/client/ProcessList-C62SOVO6.js +0 -484
- package/dist/client/asWebComponent-BJ2NWunV.js +0 -12479
- package/dist/client/eo-dash.css +0 -5
- package/dist/client/index-Da5xXX6Q.js +0 -780
- package/dist/client/transition-Cdb4K27U.js +0 -37
- package/dist/types/core/client/eodash.d.ts +0 -8
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
gap: number;
|
|
3
|
+
loading: {
|
|
4
|
+
id: symbol;
|
|
5
|
+
type: "web-component";
|
|
6
|
+
widget: {
|
|
7
|
+
link: string;
|
|
8
|
+
tagName: "l-mirage";
|
|
9
|
+
properties: {
|
|
10
|
+
class: string;
|
|
11
|
+
size: string;
|
|
12
|
+
speed: string;
|
|
13
|
+
color: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
background: {
|
|
18
|
+
id: string;
|
|
19
|
+
type: "internal";
|
|
20
|
+
widget: {
|
|
21
|
+
name: "EodashMap";
|
|
22
|
+
properties: {
|
|
23
|
+
enableCompare: true;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
widgets: ({
|
|
28
|
+
id: string;
|
|
29
|
+
type: "internal";
|
|
30
|
+
title: string;
|
|
31
|
+
layout: {
|
|
32
|
+
x: number;
|
|
33
|
+
y: number;
|
|
34
|
+
w: string;
|
|
35
|
+
h: number;
|
|
36
|
+
};
|
|
37
|
+
widget: {
|
|
38
|
+
name: "EodashTools";
|
|
39
|
+
properties: {
|
|
40
|
+
showLayoutSwitcher: false;
|
|
41
|
+
itemFilterConfig: {
|
|
42
|
+
resultType: string;
|
|
43
|
+
filtersTitle: string;
|
|
44
|
+
resultsTitle: string;
|
|
45
|
+
subTitleProperty: string;
|
|
46
|
+
imageProperty: string;
|
|
47
|
+
enableCompare?: undefined;
|
|
48
|
+
};
|
|
49
|
+
indicatorBtnText?: undefined;
|
|
50
|
+
map?: undefined;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
defineWidget?: undefined;
|
|
54
|
+
} | {
|
|
55
|
+
id: string;
|
|
56
|
+
type: "internal";
|
|
57
|
+
title: string;
|
|
58
|
+
layout: {
|
|
59
|
+
x: string;
|
|
60
|
+
y: number;
|
|
61
|
+
w: string;
|
|
62
|
+
h: number;
|
|
63
|
+
};
|
|
64
|
+
widget: {
|
|
65
|
+
name: "EodashTools";
|
|
66
|
+
properties: {
|
|
67
|
+
showLayoutSwitcher: false;
|
|
68
|
+
indicatorBtnText: string;
|
|
69
|
+
itemFilterConfig: {
|
|
70
|
+
enableCompare: true;
|
|
71
|
+
resultType: string;
|
|
72
|
+
filtersTitle: string;
|
|
73
|
+
resultsTitle: string;
|
|
74
|
+
subTitleProperty: string;
|
|
75
|
+
imageProperty: string;
|
|
76
|
+
};
|
|
77
|
+
map?: undefined;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
defineWidget?: undefined;
|
|
81
|
+
} | {
|
|
82
|
+
id: string;
|
|
83
|
+
type: "internal";
|
|
84
|
+
title: string;
|
|
85
|
+
layout: {
|
|
86
|
+
x: number;
|
|
87
|
+
y: number;
|
|
88
|
+
w: string;
|
|
89
|
+
h: number;
|
|
90
|
+
};
|
|
91
|
+
widget: {
|
|
92
|
+
name: "EodashLayerControl";
|
|
93
|
+
properties?: undefined;
|
|
94
|
+
};
|
|
95
|
+
defineWidget?: undefined;
|
|
96
|
+
} | {
|
|
97
|
+
id: string;
|
|
98
|
+
title: string;
|
|
99
|
+
layout: {
|
|
100
|
+
x: string;
|
|
101
|
+
y: number;
|
|
102
|
+
w: string;
|
|
103
|
+
h: number;
|
|
104
|
+
};
|
|
105
|
+
type: "internal";
|
|
106
|
+
widget: {
|
|
107
|
+
name: "EodashLayerControl";
|
|
108
|
+
properties: {
|
|
109
|
+
map: "second";
|
|
110
|
+
showLayoutSwitcher?: undefined;
|
|
111
|
+
itemFilterConfig?: undefined;
|
|
112
|
+
indicatorBtnText?: undefined;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
defineWidget?: undefined;
|
|
116
|
+
} | {
|
|
117
|
+
defineWidget: (selectedSTAC: import("stac-ts").StacCollection | null) => false | {
|
|
118
|
+
id: string;
|
|
119
|
+
type: "internal";
|
|
120
|
+
title: string;
|
|
121
|
+
layout: {
|
|
122
|
+
x: number;
|
|
123
|
+
y: number;
|
|
124
|
+
w: string;
|
|
125
|
+
h: number;
|
|
126
|
+
};
|
|
127
|
+
widget: {
|
|
128
|
+
name: "EodashProcess";
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
id?: undefined;
|
|
132
|
+
type?: undefined;
|
|
133
|
+
title?: undefined;
|
|
134
|
+
layout?: undefined;
|
|
135
|
+
widget?: undefined;
|
|
136
|
+
} | {
|
|
137
|
+
defineWidget: (_: import("stac-ts").StacCollection | null, updatedCompareStac: import("stac-ts").StacCollection | null | undefined) => false | {
|
|
138
|
+
id: string;
|
|
139
|
+
type: "internal";
|
|
140
|
+
title: string;
|
|
141
|
+
layout: {
|
|
142
|
+
x: number;
|
|
143
|
+
y: number;
|
|
144
|
+
w: string;
|
|
145
|
+
h: number;
|
|
146
|
+
};
|
|
147
|
+
widget: {
|
|
148
|
+
name: "EodashProcess";
|
|
149
|
+
properties: {
|
|
150
|
+
enableCompare: true;
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
id?: undefined;
|
|
155
|
+
type?: undefined;
|
|
156
|
+
title?: undefined;
|
|
157
|
+
layout?: undefined;
|
|
158
|
+
widget?: undefined;
|
|
159
|
+
} | {
|
|
160
|
+
defineWidget: (selected: import("stac-ts").StacCollection | null) => {
|
|
161
|
+
id: string;
|
|
162
|
+
layout: {
|
|
163
|
+
x: string;
|
|
164
|
+
y: number;
|
|
165
|
+
w: number;
|
|
166
|
+
h: number;
|
|
167
|
+
};
|
|
168
|
+
title: string;
|
|
169
|
+
type: "internal";
|
|
170
|
+
widget: {
|
|
171
|
+
name: "EodashMapBtns";
|
|
172
|
+
properties: {
|
|
173
|
+
compareIndicators: {
|
|
174
|
+
fallbackTemplate: string;
|
|
175
|
+
};
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
} | null;
|
|
179
|
+
id?: undefined;
|
|
180
|
+
type?: undefined;
|
|
181
|
+
title?: undefined;
|
|
182
|
+
layout?: undefined;
|
|
183
|
+
widget?: undefined;
|
|
184
|
+
} | {
|
|
185
|
+
defineWidget: (selectedSTAC: import("stac-ts").StacCollection | null) => {
|
|
186
|
+
id: string;
|
|
187
|
+
type: "internal";
|
|
188
|
+
layout: {
|
|
189
|
+
x: number;
|
|
190
|
+
y: number;
|
|
191
|
+
w: number;
|
|
192
|
+
h: number;
|
|
193
|
+
};
|
|
194
|
+
title: string;
|
|
195
|
+
widget: {
|
|
196
|
+
name: "EodashDatePicker";
|
|
197
|
+
properties: {
|
|
198
|
+
hintText: string;
|
|
199
|
+
toggleCalendar: true;
|
|
200
|
+
};
|
|
201
|
+
};
|
|
202
|
+
} | null;
|
|
203
|
+
id?: undefined;
|
|
204
|
+
type?: undefined;
|
|
205
|
+
title?: undefined;
|
|
206
|
+
layout?: undefined;
|
|
207
|
+
widget?: undefined;
|
|
208
|
+
})[];
|
|
209
|
+
};
|
|
210
|
+
export default _default;
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
loading: {
|
|
3
|
+
id: symbol;
|
|
4
|
+
type: "web-component";
|
|
5
|
+
widget: {
|
|
6
|
+
link: string;
|
|
7
|
+
tagName: "l-mirage";
|
|
8
|
+
properties: {
|
|
9
|
+
class: string;
|
|
10
|
+
size: string;
|
|
11
|
+
speed: string;
|
|
12
|
+
color: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
background: {
|
|
17
|
+
id: string;
|
|
18
|
+
type: "internal";
|
|
19
|
+
widget: {
|
|
20
|
+
name: "EodashMap";
|
|
21
|
+
properties: {
|
|
22
|
+
enableCompare: true;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
widgets: ({
|
|
27
|
+
id: string;
|
|
28
|
+
type: "internal";
|
|
29
|
+
title: string;
|
|
30
|
+
layout: {
|
|
31
|
+
x: number;
|
|
32
|
+
y: number;
|
|
33
|
+
w: string;
|
|
34
|
+
h: number;
|
|
35
|
+
};
|
|
36
|
+
widget: {
|
|
37
|
+
name: "EodashTools";
|
|
38
|
+
properties: {
|
|
39
|
+
layoutTarget: string;
|
|
40
|
+
layoutIcon: string;
|
|
41
|
+
itemFilterConfig: {
|
|
42
|
+
resultType: string;
|
|
43
|
+
subTitleProperty: string;
|
|
44
|
+
imageProperty: string;
|
|
45
|
+
aggregateResults: string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
defineWidget?: undefined;
|
|
50
|
+
} | {
|
|
51
|
+
id: string;
|
|
52
|
+
type: "internal";
|
|
53
|
+
title: string;
|
|
54
|
+
layout: {
|
|
55
|
+
x: number;
|
|
56
|
+
y: number;
|
|
57
|
+
w: string;
|
|
58
|
+
h: number;
|
|
59
|
+
};
|
|
60
|
+
widget: {
|
|
61
|
+
name: "EodashLayerControl";
|
|
62
|
+
properties?: undefined;
|
|
63
|
+
};
|
|
64
|
+
defineWidget?: undefined;
|
|
65
|
+
} | {
|
|
66
|
+
defineWidget: (selectedSTAC: import("stac-ts").StacCollection | null) => {
|
|
67
|
+
id: string;
|
|
68
|
+
title: string;
|
|
69
|
+
layout: {
|
|
70
|
+
x: string;
|
|
71
|
+
y: number;
|
|
72
|
+
w: string;
|
|
73
|
+
h: number;
|
|
74
|
+
};
|
|
75
|
+
type: "internal";
|
|
76
|
+
widget: {
|
|
77
|
+
name: "EodashStacInfo";
|
|
78
|
+
};
|
|
79
|
+
} | null;
|
|
80
|
+
id?: undefined;
|
|
81
|
+
type?: undefined;
|
|
82
|
+
title?: undefined;
|
|
83
|
+
layout?: undefined;
|
|
84
|
+
widget?: undefined;
|
|
85
|
+
} | {
|
|
86
|
+
defineWidget: (selectedSTAC: import("stac-ts").StacCollection | null) => {
|
|
87
|
+
id: string;
|
|
88
|
+
type: "internal";
|
|
89
|
+
layout: {
|
|
90
|
+
x: number;
|
|
91
|
+
y: number;
|
|
92
|
+
w: number;
|
|
93
|
+
h: number;
|
|
94
|
+
};
|
|
95
|
+
title: string;
|
|
96
|
+
widget: {
|
|
97
|
+
name: "EodashDatePicker";
|
|
98
|
+
properties: {
|
|
99
|
+
hintText: string;
|
|
100
|
+
toggleCalendar: true;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
} | null;
|
|
104
|
+
id?: undefined;
|
|
105
|
+
type?: undefined;
|
|
106
|
+
title?: undefined;
|
|
107
|
+
layout?: undefined;
|
|
108
|
+
widget?: undefined;
|
|
109
|
+
} | {
|
|
110
|
+
defineWidget: (selected: import("stac-ts").StacCollection | null) => {
|
|
111
|
+
id: string;
|
|
112
|
+
layout: {
|
|
113
|
+
x: string;
|
|
114
|
+
y: number;
|
|
115
|
+
w: number;
|
|
116
|
+
h: number;
|
|
117
|
+
};
|
|
118
|
+
title: string;
|
|
119
|
+
type: "internal";
|
|
120
|
+
widget: {
|
|
121
|
+
name: "EodashMapBtns";
|
|
122
|
+
};
|
|
123
|
+
} | null;
|
|
124
|
+
id?: undefined;
|
|
125
|
+
type?: undefined;
|
|
126
|
+
title?: undefined;
|
|
127
|
+
layout?: undefined;
|
|
128
|
+
widget?: undefined;
|
|
129
|
+
} | {
|
|
130
|
+
defineWidget: (selectedSTAC: import("stac-ts").StacCollection | null) => false | {
|
|
131
|
+
id: string;
|
|
132
|
+
type: "internal";
|
|
133
|
+
title: string;
|
|
134
|
+
layout: {
|
|
135
|
+
x: string;
|
|
136
|
+
y: number;
|
|
137
|
+
w: string;
|
|
138
|
+
h: number;
|
|
139
|
+
};
|
|
140
|
+
widget: {
|
|
141
|
+
name: "EodashProcess";
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
id?: undefined;
|
|
145
|
+
type?: undefined;
|
|
146
|
+
title?: undefined;
|
|
147
|
+
layout?: undefined;
|
|
148
|
+
widget?: undefined;
|
|
149
|
+
})[];
|
|
150
|
+
};
|
|
151
|
+
export default _default;
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
gap: number;
|
|
3
|
+
loading: {
|
|
4
|
+
id: symbol;
|
|
5
|
+
type: "web-component";
|
|
6
|
+
widget: {
|
|
7
|
+
link: string;
|
|
8
|
+
tagName: "l-mirage";
|
|
9
|
+
properties: {
|
|
10
|
+
class: string;
|
|
11
|
+
size: string;
|
|
12
|
+
speed: string;
|
|
13
|
+
color: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
background: {
|
|
18
|
+
id: string;
|
|
19
|
+
type: "internal";
|
|
20
|
+
widget: {
|
|
21
|
+
name: "EodashMap";
|
|
22
|
+
properties: {
|
|
23
|
+
enableCompare: true;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
widgets: ({
|
|
28
|
+
id: string;
|
|
29
|
+
type: "internal";
|
|
30
|
+
title: string;
|
|
31
|
+
layout: {
|
|
32
|
+
x: number;
|
|
33
|
+
y: number;
|
|
34
|
+
w: string;
|
|
35
|
+
h: number;
|
|
36
|
+
};
|
|
37
|
+
widget: {
|
|
38
|
+
name: "EodashTools";
|
|
39
|
+
properties: {
|
|
40
|
+
layoutTarget: string;
|
|
41
|
+
layoutIcon: string;
|
|
42
|
+
itemFilterConfig: {
|
|
43
|
+
resultType: string;
|
|
44
|
+
filtersTitle: string;
|
|
45
|
+
filterProperties: never[];
|
|
46
|
+
resultsTitle: string;
|
|
47
|
+
subTitleProperty: string;
|
|
48
|
+
imageProperty: string;
|
|
49
|
+
cssVars: {
|
|
50
|
+
"--filter-display": string;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
defineWidget?: undefined;
|
|
56
|
+
} | {
|
|
57
|
+
defineWidget: (selectedSTAC: import("stac-ts").StacCollection | null) => {
|
|
58
|
+
id: string;
|
|
59
|
+
type: "internal";
|
|
60
|
+
title: string;
|
|
61
|
+
layout: {
|
|
62
|
+
x: number;
|
|
63
|
+
y: number;
|
|
64
|
+
w: string;
|
|
65
|
+
h: number;
|
|
66
|
+
};
|
|
67
|
+
widget: {
|
|
68
|
+
name: "EodashLayerControl";
|
|
69
|
+
properties: {
|
|
70
|
+
slider: boolean;
|
|
71
|
+
tools: string[];
|
|
72
|
+
cssVars: {
|
|
73
|
+
"--list-padding": string;
|
|
74
|
+
"--tools-button-visibility": string;
|
|
75
|
+
"--layer-input-visibility": string;
|
|
76
|
+
"--layer-type-visibility": string;
|
|
77
|
+
"--padding": string;
|
|
78
|
+
"--padding-vertical": string;
|
|
79
|
+
"--layer-tools-button-visibility": string;
|
|
80
|
+
"--layer-toggle-button-visibility": string;
|
|
81
|
+
"--layer-summary-visibility": string;
|
|
82
|
+
"--layer-visibility": string;
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
} | null;
|
|
87
|
+
id?: undefined;
|
|
88
|
+
type?: undefined;
|
|
89
|
+
title?: undefined;
|
|
90
|
+
layout?: undefined;
|
|
91
|
+
widget?: undefined;
|
|
92
|
+
} | {
|
|
93
|
+
defineWidget: (selectedSTAC: import("stac-ts").StacCollection | null) => {
|
|
94
|
+
id: string;
|
|
95
|
+
type: "internal";
|
|
96
|
+
title: string;
|
|
97
|
+
layout: {
|
|
98
|
+
x: string;
|
|
99
|
+
y: number;
|
|
100
|
+
w: string;
|
|
101
|
+
h: number;
|
|
102
|
+
};
|
|
103
|
+
widget: {
|
|
104
|
+
name: "EodashStacInfo";
|
|
105
|
+
properties: {
|
|
106
|
+
tags: never[];
|
|
107
|
+
header: never[];
|
|
108
|
+
footer: never[];
|
|
109
|
+
body: string[];
|
|
110
|
+
styleOverride: string;
|
|
111
|
+
featured: never[];
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
} | null;
|
|
115
|
+
id?: undefined;
|
|
116
|
+
type?: undefined;
|
|
117
|
+
title?: undefined;
|
|
118
|
+
layout?: undefined;
|
|
119
|
+
widget?: undefined;
|
|
120
|
+
} | {
|
|
121
|
+
defineWidget: (selectedSTAC: import("stac-ts").StacCollection | null) => {
|
|
122
|
+
id: string;
|
|
123
|
+
type: "internal";
|
|
124
|
+
layout: {
|
|
125
|
+
x: number;
|
|
126
|
+
y: number;
|
|
127
|
+
w: number;
|
|
128
|
+
h: number;
|
|
129
|
+
};
|
|
130
|
+
title: string;
|
|
131
|
+
widget: {
|
|
132
|
+
name: "EodashDatePicker";
|
|
133
|
+
properties: {
|
|
134
|
+
hintText: string;
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
} | null;
|
|
138
|
+
id?: undefined;
|
|
139
|
+
type?: undefined;
|
|
140
|
+
title?: undefined;
|
|
141
|
+
layout?: undefined;
|
|
142
|
+
widget?: undefined;
|
|
143
|
+
})[];
|
|
144
|
+
};
|
|
145
|
+
export default _default;
|