@eodash/eodash 5.0.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 (162) hide show
  1. package/README.md +1 -0
  2. package/core/client/App.vue +8 -2
  3. package/core/client/asWebComponent.js +5 -5
  4. package/core/client/components/DashboardLayout.vue +43 -26
  5. package/core/client/components/EodashOverlay.vue +5 -6
  6. package/core/client/components/ErrorAlert.vue +2 -2
  7. package/core/client/components/Footer.vue +4 -4
  8. package/core/client/components/Header.vue +3 -3
  9. package/core/client/components/MobileLayout.vue +47 -27
  10. package/core/client/composables/DefineEodash.js +38 -43
  11. package/core/client/composables/DefineTemplate.js +4 -2
  12. package/core/client/composables/DefineWidgets.js +14 -8
  13. package/core/client/composables/index.js +273 -23
  14. package/core/client/eodashSTAC/EodashCollection.js +84 -62
  15. package/core/client/eodashSTAC/createLayers.js +30 -0
  16. package/core/client/eodashSTAC/helpers.js +159 -28
  17. package/core/client/eodashSTAC/parquet.js +145 -0
  18. package/core/client/eodashSTAC/triggers.js +6 -3
  19. package/core/client/plugins/index.js +4 -3
  20. package/core/client/plugins/vuetify.js +3 -0
  21. package/core/client/store/actions.js +21 -4
  22. package/core/client/store/stac.js +93 -56
  23. package/core/client/store/states.js +15 -5
  24. package/core/client/types.ts +59 -43
  25. package/core/client/utils/index.js +79 -0
  26. package/core/client/utils/keys.js +2 -2
  27. package/core/client/utils/states.js +30 -5
  28. package/core/client/views/Dashboard.vue +36 -32
  29. package/core/client/vite-env.d.ts +7 -0
  30. package/dist/client/{DashboardLayout-CkWvOMOW.js → DashboardLayout-Dq9Kfe6O.js} +24 -13
  31. package/dist/client/{DynamicWebComponent-DYBbpvUK.js → DynamicWebComponent-DCBMXskE.js} +1 -1
  32. package/dist/client/{EodashDatePicker-CALmW3SI.js → EodashDatePicker-DtngxU6s.js} +59 -32
  33. package/dist/client/{EodashItemFilter-DlQiE713.js → EodashItemFilter-ClQebJQt.js} +20 -10
  34. package/dist/client/{EodashLayerControl-DEzEbft7.js → EodashLayerControl-BLBds28C.js} +29 -16
  35. package/dist/client/EodashLayoutSwitcher-DQ8SfVDd.js +61 -0
  36. package/dist/client/EodashMapBtns-B89_YBDw.js +326 -0
  37. package/dist/client/{EodashStacInfo-DPPxDkF6.js → EodashStacInfo-Dt1nF06x.js} +3 -18
  38. package/dist/client/{EodashTools-CUaL9s4H.js → EodashTools-DV5ykmWc.js} +13 -13
  39. package/dist/client/{ExportState-DjyIZVhl.js → ExportState-B6zZQUmE.js} +57 -52
  40. package/dist/client/{Footer-DyL0JoWt.js → Footer-DNhXs8k6.js} +15 -13
  41. package/dist/client/{Header-B5Dgty9l.js → Header-BjhN5JY4.js} +32 -28
  42. package/dist/client/MobileLayout-JelB6w1G.js +118 -0
  43. package/dist/client/{PopUp-BfB8s_ki.js → PopUp-CgpvNr3o.js} +18 -10
  44. package/dist/client/ProcessList-vecpxThi.js +198 -0
  45. package/dist/client/{VImg-FD1WVphJ.js → VImg-CETuikH2.js} +221 -26
  46. package/dist/client/{VMain-DJKG4SvM.js → VMain-Ci9DyaGU.js} +7 -7
  47. package/dist/client/{VTooltip-CfeefrXI.js → VTooltip-J4ac48X7.js} +12 -10
  48. package/dist/client/{WidgetsContainer-C2TaTdb6.js → WidgetsContainer-CCML4TyV.js} +1 -1
  49. package/dist/client/asWebComponent-ZyEzWOOf.js +19092 -0
  50. package/dist/client/async-B7jIrM53.js +804 -0
  51. package/dist/client/eo-dash.js +1 -1
  52. package/dist/client/{VOverlay-BzOdRu9h.js → forwardRefs-BQclvjMq.js} +332 -28
  53. package/dist/client/handling-BS24aG1q.js +1227 -0
  54. package/dist/client/helpers-wXK7Ywio.js +4556 -0
  55. package/dist/client/index-4UCzZi8B.js +376 -0
  56. package/dist/client/{index-4CT7Tz83.js → index-9KR-G20t.js} +2 -2
  57. package/dist/client/{index-CIHH_3dW.js → index-B2XpdgR6.js} +227 -86
  58. package/dist/client/material-symbols-outlined.woff2 +0 -0
  59. package/dist/client/material-symbols-rounded.woff2 +0 -0
  60. package/dist/client/material-symbols-sharp.woff2 +0 -0
  61. package/dist/client/material-symbols-subset.woff2 +0 -0
  62. package/dist/client/{ssrBoot-BP7SYRyC.js → ssrBoot-Zgc_Ttvi.js} +2 -2
  63. package/dist/client/templates.js +840 -0
  64. package/dist/client/transition-yBii4fu6.js +40 -0
  65. package/dist/node/cli.js +16 -6
  66. package/dist/node/types.d.ts +1 -1
  67. package/dist/types/core/client/App.vue.d.ts +2 -2
  68. package/dist/types/core/client/asWebComponent.d.ts +1 -1
  69. package/dist/types/core/client/components/DynamicWebComponent.vue.d.ts +1 -3
  70. package/dist/types/core/client/components/Footer.vue.d.ts +1 -105
  71. package/dist/types/core/client/components/IframeWrapper.vue.d.ts +1 -1
  72. package/dist/types/core/client/components/MobileLayout.vue.d.ts +1 -324
  73. package/dist/types/core/client/composables/DefineEodash.d.ts +2 -2
  74. package/dist/types/core/client/composables/DefineTemplate.d.ts +1 -1
  75. package/dist/types/core/client/composables/DefineWidgets.d.ts +4 -4
  76. package/dist/types/core/client/composables/index.d.ts +24 -2
  77. package/dist/types/core/client/eodashSTAC/EodashCollection.d.ts +9 -6
  78. package/dist/types/core/client/eodashSTAC/helpers.d.ts +25 -5
  79. package/dist/types/core/client/eodashSTAC/parquet.d.ts +2 -0
  80. package/dist/types/core/client/plugins/vuetify.d.ts +7 -4
  81. package/dist/types/core/client/store/actions.d.ts +3 -2
  82. package/dist/types/core/client/store/stac.d.ts +16 -13
  83. package/dist/types/core/client/store/states.d.ts +14 -4
  84. package/dist/types/core/client/types.d.ts +46 -31
  85. package/dist/types/core/client/utils/index.d.ts +2 -0
  86. package/dist/types/core/client/utils/keys.d.ts +4 -4
  87. package/dist/types/core/client/utils/states.d.ts +59 -47
  88. package/dist/types/core/client/views/Dashboard.vue.d.ts +2 -2
  89. package/dist/types/templates/baseConfig.d.ts +4 -0
  90. package/dist/types/templates/compare.d.ts +185 -0
  91. package/dist/types/templates/expert.d.ts +147 -0
  92. package/dist/types/templates/index.d.ts +6 -0
  93. package/dist/types/templates/light.d.ts +154 -0
  94. package/dist/types/widgets/EodashDatePicker.vue.d.ts +1 -458
  95. package/dist/types/widgets/EodashItemFilter.vue.d.ts +3 -3
  96. package/dist/types/widgets/EodashLayerControl.vue.d.ts +14 -7
  97. package/dist/types/widgets/EodashLayoutSwitcher.vue.d.ts +1 -3
  98. package/dist/types/widgets/{EodashMapBtns.vue.d.ts → EodashMap/EodashMapBtns.vue.d.ts} +12 -8
  99. package/dist/types/widgets/EodashMap/index.vue.d.ts +9 -4
  100. package/dist/types/widgets/EodashProcess/ProcessList.vue.d.ts +8 -1
  101. package/dist/types/widgets/EodashProcess/index.vue.d.ts +8 -4
  102. package/dist/types/widgets/EodashProcess/methods/async.d.ts +19 -18
  103. package/dist/types/widgets/EodashProcess/methods/composables.d.ts +3 -2
  104. package/dist/types/widgets/EodashProcess/methods/custom-endpoints/chart/index.d.ts +1 -0
  105. package/dist/types/widgets/EodashProcess/methods/custom-endpoints/chart/sentinelhub-endpoint.d.ts +6 -0
  106. package/dist/types/widgets/EodashProcess/methods/custom-endpoints/chart/veda-endpoint.d.ts +4 -0
  107. package/dist/types/widgets/EodashProcess/methods/custom-endpoints/layers/eoxhub-workspaces-endpoint.d.ts +5 -0
  108. package/dist/types/widgets/EodashProcess/methods/custom-endpoints/layers/index.d.ts +1 -0
  109. package/dist/types/widgets/EodashProcess/methods/handling.d.ts +12 -5
  110. package/dist/types/widgets/EodashProcess/methods/outputs.d.ts +72 -41
  111. package/dist/types/widgets/EodashProcess/methods/utils.d.ts +41 -21
  112. package/dist/types/widgets/EodashProcess/states.d.ts +11 -0
  113. package/dist/types/widgets/EodashProcess/types.d.ts +41 -0
  114. package/dist/types/widgets/EodashStacInfo.vue.d.ts +14 -14
  115. package/dist/types/widgets/EodashTools.vue.d.ts +3 -3
  116. package/dist/types/widgets/ExportState.vue.d.ts +1 -1
  117. package/dist/types/widgets/PopUp.vue.d.ts +11 -16
  118. package/dist/types/widgets/WidgetsContainer.vue.d.ts +3 -6
  119. package/package.json +55 -45
  120. package/templates/baseConfig.js +68 -0
  121. package/templates/compare.js +142 -0
  122. package/templates/expert.js +124 -0
  123. package/templates/index.js +8 -0
  124. package/templates/light.js +139 -0
  125. package/widgets/EodashDatePicker.vue +80 -31
  126. package/widgets/EodashItemFilter.vue +26 -11
  127. package/widgets/EodashLayerControl.vue +20 -11
  128. package/widgets/EodashLayoutSwitcher.vue +6 -3
  129. package/widgets/EodashMap/EodashMapBtns.vue +269 -0
  130. package/widgets/EodashMap/index.vue +255 -45
  131. package/widgets/EodashMap/methods/create-layers-config.js +4 -3
  132. package/widgets/EodashMap/methods/index.js +33 -23
  133. package/widgets/EodashProcess/ProcessList.vue +47 -11
  134. package/widgets/EodashProcess/index.vue +55 -20
  135. package/widgets/EodashProcess/methods/async.js +99 -60
  136. package/widgets/EodashProcess/methods/composables.js +21 -14
  137. package/widgets/EodashProcess/methods/custom-endpoints/chart/index.js +35 -0
  138. package/widgets/EodashProcess/methods/custom-endpoints/chart/sentinelhub-endpoint.js +275 -0
  139. package/widgets/EodashProcess/methods/custom-endpoints/chart/veda-endpoint.js +132 -0
  140. package/widgets/EodashProcess/methods/custom-endpoints/layers/eoxhub-workspaces-endpoint.js +94 -0
  141. package/widgets/EodashProcess/methods/custom-endpoints/layers/index.js +33 -0
  142. package/widgets/EodashProcess/methods/handling.js +127 -80
  143. package/widgets/EodashProcess/methods/outputs.js +376 -125
  144. package/widgets/EodashProcess/methods/utils.js +442 -10
  145. package/widgets/EodashProcess/states.js +13 -0
  146. package/widgets/EodashProcess/types.ts +46 -0
  147. package/widgets/EodashStacInfo.vue +2 -17
  148. package/widgets/EodashTools.vue +13 -13
  149. package/widgets/WidgetsContainer.vue +1 -1
  150. package/core/client/eodash.js +0 -454
  151. package/dist/client/EodashLayoutSwitcher-CDeCV8F-.js +0 -52
  152. package/dist/client/EodashMapBtns-CktQCfa-.js +0 -131
  153. package/dist/client/MobileLayout-CRsg_5Q4.js +0 -1217
  154. package/dist/client/ProcessList-DTefwQZx.js +0 -484
  155. package/dist/client/asWebComponent-CLhcT715.js +0 -12479
  156. package/dist/client/eo-dash.css +0 -5
  157. package/dist/client/forwardRefs-Bon_Kku1.js +0 -245
  158. package/dist/client/index-Bm9cbtx5.js +0 -201
  159. package/dist/client/index-DiGDvTQU.js +0 -780
  160. package/dist/client/transition-C5I57hn6.js +0 -37
  161. package/dist/types/core/client/eodash.d.ts +0 -8
  162. package/widgets/EodashMapBtns.vue +0 -113
@@ -9,462 +9,5 @@ declare const _default: import("vue").DefineComponent<{}, {
9
9
  readonly hideInputField?: boolean | undefined;
10
10
  readonly toggleCalendar?: boolean | undefined;
11
11
  };
12
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
13
- rootRef: HTMLDivElement;
14
- datePicker: ({
15
- $: import("vue").ComponentInternalInstance;
16
- $data: {};
17
- $props: Partial<{
18
- updateOnInput: boolean;
19
- inputDebounce: number;
20
- color: string;
21
- isDark: boolean | "system" | import("vue-screen-utils").DarkModeClassConfig;
22
- popover: boolean | Partial<import("v-calendar/dist/types/src/utils/popovers").PopoverOptions>;
23
- mode: string;
24
- modelModifiers: import("v-calendar/dist/types/src/use/datePicker").ModelModifiers;
25
- is24hr: boolean;
26
- hideTimeHeader: boolean;
27
- timeAccuracy: number;
28
- isRequired: boolean;
29
- isRange: boolean;
30
- }> & Omit<{
31
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
32
- readonly mode: string;
33
- readonly modelModifiers: import("v-calendar/dist/types/src/use/datePicker").ModelModifiers;
34
- readonly is24hr: boolean;
35
- readonly hideTimeHeader: boolean;
36
- readonly timeAccuracy: number;
37
- readonly isRequired: boolean;
38
- readonly isRange: boolean;
39
- readonly popover: boolean | Partial<import("v-calendar/dist/types/src/utils/popovers").PopoverOptions>;
40
- readonly color?: string | undefined;
41
- readonly modelValue?: string | number | Date | Partial<{
42
- start: import("v-calendar/dist/types/src/use/datePicker").DatePickerDate;
43
- end: import("v-calendar/dist/types/src/use/datePicker").DatePickerDate;
44
- }> | null | undefined;
45
- readonly rules?: import("v-calendar/dist/types/src/utils/date/helpers").DatePartsRules | "auto" | undefined;
46
- readonly updateOnInput?: boolean | undefined;
47
- readonly inputDebounce?: number | undefined;
48
- readonly dragAttribute?: import("v-calendar/dist/types/src/utils/attribute").AttributeConfig | undefined;
49
- readonly selectAttribute?: import("v-calendar/dist/types/src/utils/attribute").AttributeConfig | undefined;
50
- readonly attributes?: Record<string, any> | unknown[] | undefined;
51
- readonly isDark?: boolean | "system" | import("vue-screen-utils").DarkModeClassConfig | undefined;
52
- readonly firstDayOfWeek?: import("v-calendar/dist/types/src/utils/date/helpers").DayOfWeek | undefined;
53
- readonly masks?: Record<string, any> | undefined;
54
- readonly locale?: string | Record<string, any> | import("v-calendar/dist/types/src/utils/locale").default | undefined;
55
- readonly timezone?: string | undefined;
56
- readonly minDate?: any;
57
- readonly maxDate?: any;
58
- readonly disabledDates?: any;
59
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "color" | "mode" | "modelModifiers" | "is24hr" | "hideTimeHeader" | "timeAccuracy" | "isRequired" | "isRange" | "updateOnInput" | "inputDebounce" | "popover" | "isDark">;
60
- $attrs: {
61
- [x: string]: unknown;
62
- };
63
- $refs: {
64
- [x: string]: unknown;
65
- };
66
- $slots: Readonly<{
67
- [name: string]: import("vue").Slot<any> | undefined;
68
- }>;
69
- $root: import("vue").ComponentPublicInstance | null;
70
- $parent: import("vue").ComponentPublicInstance | null;
71
- $host: Element | null;
72
- $emit: (event: string, ...args: any[]) => void;
73
- $el: any;
74
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
75
- mode: {
76
- type: StringConstructor;
77
- default: string;
78
- };
79
- modelValue: {
80
- type: import("vue").PropType<string | number | Date | Partial<{
81
- start: import("v-calendar/dist/types/src/use/datePicker").DatePickerDate;
82
- end: import("v-calendar/dist/types/src/use/datePicker").DatePickerDate;
83
- }> | null>;
84
- };
85
- modelModifiers: {
86
- type: import("vue").PropType<import("v-calendar/dist/types/src/use/datePicker").ModelModifiers>;
87
- default: () => {};
88
- };
89
- rules: import("vue").PropType<import("v-calendar/dist/types/src/utils/date/helpers").DatePartsRules | "auto">;
90
- is24hr: BooleanConstructor;
91
- hideTimeHeader: BooleanConstructor;
92
- timeAccuracy: {
93
- type: NumberConstructor;
94
- default: number;
95
- };
96
- isRequired: BooleanConstructor;
97
- isRange: BooleanConstructor;
98
- updateOnInput: {
99
- type: BooleanConstructor;
100
- default: () => any;
101
- };
102
- inputDebounce: {
103
- type: NumberConstructor;
104
- default: () => any;
105
- };
106
- popover: {
107
- type: import("vue").PropType<boolean | Partial<import("v-calendar/dist/types/src/utils/popovers").PopoverOptions>>;
108
- default: boolean;
109
- };
110
- dragAttribute: import("vue").PropType<import("v-calendar/dist/types/src/utils/attribute").AttributeConfig>;
111
- selectAttribute: import("vue").PropType<import("v-calendar/dist/types/src/utils/attribute").AttributeConfig>;
112
- attributes: (ArrayConstructor | ObjectConstructor)[];
113
- color: {
114
- type: StringConstructor;
115
- default: () => any;
116
- };
117
- isDark: {
118
- type: import("vue").PropType<boolean | "system" | import("vue-screen-utils").DarkModeClassConfig>;
119
- default: () => any;
120
- };
121
- firstDayOfWeek: import("vue").PropType<import("v-calendar/dist/types/src/utils/date/helpers").DayOfWeek>;
122
- masks: ObjectConstructor;
123
- locale: import("vue").PropType<string | Record<string, any> | import("v-calendar/dist/types/src/utils/locale").default>;
124
- timezone: StringConstructor;
125
- minDate: null;
126
- maxDate: null;
127
- disabledDates: null;
128
- }>> & {
129
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
130
- }, (() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
131
- [key: string]: any;
132
- }> | null | undefined) | (() => (import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
133
- [key: string]: any;
134
- }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
135
- [key: string]: any;
136
- }>[])[]), unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, {
137
- updateOnInput: boolean;
138
- inputDebounce: number;
139
- color: string;
140
- isDark: boolean | "system" | import("vue-screen-utils").DarkModeClassConfig;
141
- popover: boolean | Partial<import("v-calendar/dist/types/src/utils/popovers").PopoverOptions>;
142
- mode: string;
143
- modelModifiers: import("v-calendar/dist/types/src/use/datePicker").ModelModifiers;
144
- is24hr: boolean;
145
- hideTimeHeader: boolean;
146
- timeAccuracy: number;
147
- isRequired: boolean;
148
- isRange: boolean;
149
- }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
150
- beforeCreate?: (() => void) | (() => void)[];
151
- created?: (() => void) | (() => void)[];
152
- beforeMount?: (() => void) | (() => void)[];
153
- mounted?: (() => void) | (() => void)[];
154
- beforeUpdate?: (() => void) | (() => void)[];
155
- updated?: (() => void) | (() => void)[];
156
- activated?: (() => void) | (() => void)[];
157
- deactivated?: (() => void) | (() => void)[];
158
- beforeDestroy?: (() => void) | (() => void)[];
159
- beforeUnmount?: (() => void) | (() => void)[];
160
- destroyed?: (() => void) | (() => void)[];
161
- unmounted?: (() => void) | (() => void)[];
162
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
163
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
164
- errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
165
- };
166
- $forceUpdate: () => void;
167
- $nextTick: typeof import("vue").nextTick;
168
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
169
- } & Readonly<{
170
- updateOnInput: boolean;
171
- inputDebounce: number;
172
- color: string;
173
- isDark: boolean | "system" | import("vue-screen-utils").DarkModeClassConfig;
174
- popover: boolean | Partial<import("v-calendar/dist/types/src/utils/popovers").PopoverOptions>;
175
- mode: string;
176
- modelModifiers: import("v-calendar/dist/types/src/use/datePicker").ModelModifiers;
177
- is24hr: boolean;
178
- hideTimeHeader: boolean;
179
- timeAccuracy: number;
180
- isRequired: boolean;
181
- isRange: boolean;
182
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
183
- mode: {
184
- type: StringConstructor;
185
- default: string;
186
- };
187
- modelValue: {
188
- type: import("vue").PropType<string | number | Date | Partial<{
189
- start: import("v-calendar/dist/types/src/use/datePicker").DatePickerDate;
190
- end: import("v-calendar/dist/types/src/use/datePicker").DatePickerDate;
191
- }> | null>;
192
- };
193
- modelModifiers: {
194
- type: import("vue").PropType<import("v-calendar/dist/types/src/use/datePicker").ModelModifiers>;
195
- default: () => {};
196
- };
197
- rules: import("vue").PropType<import("v-calendar/dist/types/src/utils/date/helpers").DatePartsRules | "auto">;
198
- is24hr: BooleanConstructor;
199
- hideTimeHeader: BooleanConstructor;
200
- timeAccuracy: {
201
- type: NumberConstructor;
202
- default: number;
203
- };
204
- isRequired: BooleanConstructor;
205
- isRange: BooleanConstructor;
206
- updateOnInput: {
207
- type: BooleanConstructor;
208
- default: () => any;
209
- };
210
- inputDebounce: {
211
- type: NumberConstructor;
212
- default: () => any;
213
- };
214
- popover: {
215
- type: import("vue").PropType<boolean | Partial<import("v-calendar/dist/types/src/utils/popovers").PopoverOptions>>;
216
- default: boolean;
217
- };
218
- dragAttribute: import("vue").PropType<import("v-calendar/dist/types/src/utils/attribute").AttributeConfig>;
219
- selectAttribute: import("vue").PropType<import("v-calendar/dist/types/src/utils/attribute").AttributeConfig>;
220
- attributes: (ArrayConstructor | ObjectConstructor)[];
221
- color: {
222
- type: StringConstructor;
223
- default: () => any;
224
- };
225
- isDark: {
226
- type: import("vue").PropType<boolean | "system" | import("vue-screen-utils").DarkModeClassConfig>;
227
- default: () => any;
228
- };
229
- firstDayOfWeek: import("vue").PropType<import("v-calendar/dist/types/src/utils/date/helpers").DayOfWeek>;
230
- masks: ObjectConstructor;
231
- locale: import("vue").PropType<string | Record<string, any> | import("v-calendar/dist/types/src/utils/locale").default>;
232
- timezone: StringConstructor;
233
- minDate: null;
234
- maxDate: null;
235
- disabledDates: null;
236
- }>> & {
237
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
238
- }, "color" | "mode" | "modelModifiers" | "is24hr" | "hideTimeHeader" | "timeAccuracy" | "isRequired" | "isRange" | "updateOnInput" | "inputDebounce" | "popover" | "isDark"> & import("vue").ShallowUnwrapRef<() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
239
- [key: string]: any;
240
- }> | null | undefined> & {} & import("vue").ComponentCustomProperties & {}) | ({
241
- $: import("vue").ComponentInternalInstance;
242
- $data: {};
243
- $props: Partial<{
244
- updateOnInput: boolean;
245
- inputDebounce: number;
246
- color: string;
247
- isDark: boolean | "system" | import("vue-screen-utils").DarkModeClassConfig;
248
- popover: boolean | Partial<import("v-calendar/dist/types/src/utils/popovers").PopoverOptions>;
249
- mode: string;
250
- modelModifiers: import("v-calendar/dist/types/src/use/datePicker").ModelModifiers;
251
- is24hr: boolean;
252
- hideTimeHeader: boolean;
253
- timeAccuracy: number;
254
- isRequired: boolean;
255
- isRange: boolean;
256
- }> & Omit<{
257
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
258
- readonly mode: string;
259
- readonly modelModifiers: import("v-calendar/dist/types/src/use/datePicker").ModelModifiers;
260
- readonly is24hr: boolean;
261
- readonly hideTimeHeader: boolean;
262
- readonly timeAccuracy: number;
263
- readonly isRequired: boolean;
264
- readonly isRange: boolean;
265
- readonly popover: boolean | Partial<import("v-calendar/dist/types/src/utils/popovers").PopoverOptions>;
266
- readonly color?: string | undefined;
267
- readonly modelValue?: string | number | Date | Partial<{
268
- start: import("v-calendar/dist/types/src/use/datePicker").DatePickerDate;
269
- end: import("v-calendar/dist/types/src/use/datePicker").DatePickerDate;
270
- }> | null | undefined;
271
- readonly rules?: import("v-calendar/dist/types/src/utils/date/helpers").DatePartsRules | "auto" | undefined;
272
- readonly updateOnInput?: boolean | undefined;
273
- readonly inputDebounce?: number | undefined;
274
- readonly dragAttribute?: import("v-calendar/dist/types/src/utils/attribute").AttributeConfig | undefined;
275
- readonly selectAttribute?: import("v-calendar/dist/types/src/utils/attribute").AttributeConfig | undefined;
276
- readonly attributes?: Record<string, any> | unknown[] | undefined;
277
- readonly isDark?: boolean | "system" | import("vue-screen-utils").DarkModeClassConfig | undefined;
278
- readonly firstDayOfWeek?: import("v-calendar/dist/types/src/utils/date/helpers").DayOfWeek | undefined;
279
- readonly masks?: Record<string, any> | undefined;
280
- readonly locale?: string | Record<string, any> | import("v-calendar/dist/types/src/utils/locale").default | undefined;
281
- readonly timezone?: string | undefined;
282
- readonly minDate?: any;
283
- readonly maxDate?: any;
284
- readonly disabledDates?: any;
285
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "color" | "mode" | "modelModifiers" | "is24hr" | "hideTimeHeader" | "timeAccuracy" | "isRequired" | "isRange" | "updateOnInput" | "inputDebounce" | "popover" | "isDark">;
286
- $attrs: {
287
- [x: string]: unknown;
288
- };
289
- $refs: {
290
- [x: string]: unknown;
291
- };
292
- $slots: Readonly<{
293
- [name: string]: import("vue").Slot<any> | undefined;
294
- }>;
295
- $root: import("vue").ComponentPublicInstance | null;
296
- $parent: import("vue").ComponentPublicInstance | null;
297
- $host: Element | null;
298
- $emit: (event: string, ...args: any[]) => void;
299
- $el: any;
300
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
301
- mode: {
302
- type: StringConstructor;
303
- default: string;
304
- };
305
- modelValue: {
306
- type: import("vue").PropType<string | number | Date | Partial<{
307
- start: import("v-calendar/dist/types/src/use/datePicker").DatePickerDate;
308
- end: import("v-calendar/dist/types/src/use/datePicker").DatePickerDate;
309
- }> | null>;
310
- };
311
- modelModifiers: {
312
- type: import("vue").PropType<import("v-calendar/dist/types/src/use/datePicker").ModelModifiers>;
313
- default: () => {};
314
- };
315
- rules: import("vue").PropType<import("v-calendar/dist/types/src/utils/date/helpers").DatePartsRules | "auto">;
316
- is24hr: BooleanConstructor;
317
- hideTimeHeader: BooleanConstructor;
318
- timeAccuracy: {
319
- type: NumberConstructor;
320
- default: number;
321
- };
322
- isRequired: BooleanConstructor;
323
- isRange: BooleanConstructor;
324
- updateOnInput: {
325
- type: BooleanConstructor;
326
- default: () => any;
327
- };
328
- inputDebounce: {
329
- type: NumberConstructor;
330
- default: () => any;
331
- };
332
- popover: {
333
- type: import("vue").PropType<boolean | Partial<import("v-calendar/dist/types/src/utils/popovers").PopoverOptions>>;
334
- default: boolean;
335
- };
336
- dragAttribute: import("vue").PropType<import("v-calendar/dist/types/src/utils/attribute").AttributeConfig>;
337
- selectAttribute: import("vue").PropType<import("v-calendar/dist/types/src/utils/attribute").AttributeConfig>;
338
- attributes: (ArrayConstructor | ObjectConstructor)[];
339
- color: {
340
- type: StringConstructor;
341
- default: () => any;
342
- };
343
- isDark: {
344
- type: import("vue").PropType<boolean | "system" | import("vue-screen-utils").DarkModeClassConfig>;
345
- default: () => any;
346
- };
347
- firstDayOfWeek: import("vue").PropType<import("v-calendar/dist/types/src/utils/date/helpers").DayOfWeek>;
348
- masks: ObjectConstructor;
349
- locale: import("vue").PropType<string | Record<string, any> | import("v-calendar/dist/types/src/utils/locale").default>;
350
- timezone: StringConstructor;
351
- minDate: null;
352
- maxDate: null;
353
- disabledDates: null;
354
- }>> & {
355
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
356
- }, (() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
357
- [key: string]: any;
358
- }> | null | undefined) | (() => (import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
359
- [key: string]: any;
360
- }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
361
- [key: string]: any;
362
- }>[])[]), unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, {
363
- updateOnInput: boolean;
364
- inputDebounce: number;
365
- color: string;
366
- isDark: boolean | "system" | import("vue-screen-utils").DarkModeClassConfig;
367
- popover: boolean | Partial<import("v-calendar/dist/types/src/utils/popovers").PopoverOptions>;
368
- mode: string;
369
- modelModifiers: import("v-calendar/dist/types/src/use/datePicker").ModelModifiers;
370
- is24hr: boolean;
371
- hideTimeHeader: boolean;
372
- timeAccuracy: number;
373
- isRequired: boolean;
374
- isRange: boolean;
375
- }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
376
- beforeCreate?: (() => void) | (() => void)[];
377
- created?: (() => void) | (() => void)[];
378
- beforeMount?: (() => void) | (() => void)[];
379
- mounted?: (() => void) | (() => void)[];
380
- beforeUpdate?: (() => void) | (() => void)[];
381
- updated?: (() => void) | (() => void)[];
382
- activated?: (() => void) | (() => void)[];
383
- deactivated?: (() => void) | (() => void)[];
384
- beforeDestroy?: (() => void) | (() => void)[];
385
- beforeUnmount?: (() => void) | (() => void)[];
386
- destroyed?: (() => void) | (() => void)[];
387
- unmounted?: (() => void) | (() => void)[];
388
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
389
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
390
- errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
391
- };
392
- $forceUpdate: () => void;
393
- $nextTick: typeof import("vue").nextTick;
394
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
395
- } & Readonly<{
396
- updateOnInput: boolean;
397
- inputDebounce: number;
398
- color: string;
399
- isDark: boolean | "system" | import("vue-screen-utils").DarkModeClassConfig;
400
- popover: boolean | Partial<import("v-calendar/dist/types/src/utils/popovers").PopoverOptions>;
401
- mode: string;
402
- modelModifiers: import("v-calendar/dist/types/src/use/datePicker").ModelModifiers;
403
- is24hr: boolean;
404
- hideTimeHeader: boolean;
405
- timeAccuracy: number;
406
- isRequired: boolean;
407
- isRange: boolean;
408
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
409
- mode: {
410
- type: StringConstructor;
411
- default: string;
412
- };
413
- modelValue: {
414
- type: import("vue").PropType<string | number | Date | Partial<{
415
- start: import("v-calendar/dist/types/src/use/datePicker").DatePickerDate;
416
- end: import("v-calendar/dist/types/src/use/datePicker").DatePickerDate;
417
- }> | null>;
418
- };
419
- modelModifiers: {
420
- type: import("vue").PropType<import("v-calendar/dist/types/src/use/datePicker").ModelModifiers>;
421
- default: () => {};
422
- };
423
- rules: import("vue").PropType<import("v-calendar/dist/types/src/utils/date/helpers").DatePartsRules | "auto">;
424
- is24hr: BooleanConstructor;
425
- hideTimeHeader: BooleanConstructor;
426
- timeAccuracy: {
427
- type: NumberConstructor;
428
- default: number;
429
- };
430
- isRequired: BooleanConstructor;
431
- isRange: BooleanConstructor;
432
- updateOnInput: {
433
- type: BooleanConstructor;
434
- default: () => any;
435
- };
436
- inputDebounce: {
437
- type: NumberConstructor;
438
- default: () => any;
439
- };
440
- popover: {
441
- type: import("vue").PropType<boolean | Partial<import("v-calendar/dist/types/src/utils/popovers").PopoverOptions>>;
442
- default: boolean;
443
- };
444
- dragAttribute: import("vue").PropType<import("v-calendar/dist/types/src/utils/attribute").AttributeConfig>;
445
- selectAttribute: import("vue").PropType<import("v-calendar/dist/types/src/utils/attribute").AttributeConfig>;
446
- attributes: (ArrayConstructor | ObjectConstructor)[];
447
- color: {
448
- type: StringConstructor;
449
- default: () => any;
450
- };
451
- isDark: {
452
- type: import("vue").PropType<boolean | "system" | import("vue-screen-utils").DarkModeClassConfig>;
453
- default: () => any;
454
- };
455
- firstDayOfWeek: import("vue").PropType<import("v-calendar/dist/types/src/utils/date/helpers").DayOfWeek>;
456
- masks: ObjectConstructor;
457
- locale: import("vue").PropType<string | Record<string, any> | import("v-calendar/dist/types/src/utils/locale").default>;
458
- timezone: StringConstructor;
459
- minDate: null;
460
- maxDate: null;
461
- disabledDates: null;
462
- }>> & {
463
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
464
- }, "color" | "mode" | "modelModifiers" | "is24hr" | "hideTimeHeader" | "timeAccuracy" | "isRequired" | "isRange" | "updateOnInput" | "inputDebounce" | "popover" | "isDark"> & import("vue").ShallowUnwrapRef<() => (import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
465
- [key: string]: any;
466
- }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
467
- [key: string]: any;
468
- }>[])[]> & {} & import("vue").ComponentCustomProperties & {}) | null;
469
- }, HTMLDivElement>;
12
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
470
13
  export default _default;
@@ -11,6 +11,7 @@ declare const _default: import("vue").DefineComponent<{}, {
11
11
  enableHighlighting: boolean;
12
12
  expandMultipleFilters: boolean;
13
13
  expandMultipleResults: boolean;
14
+ styleOverride: string;
14
15
  filterProperties: {
15
16
  keys: string[];
16
17
  title: string;
@@ -30,6 +31,7 @@ declare const _default: import("vue").DefineComponent<{}, {
30
31
  readonly enableHighlighting?: boolean | undefined;
31
32
  readonly expandMultipleFilters?: boolean | undefined;
32
33
  readonly expandMultipleResults?: boolean | undefined;
34
+ readonly styleOverride?: string | undefined;
33
35
  readonly filterProperties?: {
34
36
  keys: string[];
35
37
  title: string;
@@ -38,7 +40,5 @@ declare const _default: import("vue").DefineComponent<{}, {
38
40
  }[] | undefined;
39
41
  readonly aggregateResults?: string | undefined;
40
42
  };
41
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
42
- eoxItemFilter: unknown;
43
- }, any>;
43
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
44
44
  export default _default;
@@ -1,13 +1,20 @@
1
- declare const _default: import("vue").DefineComponent<{}, {
2
- map: "first" | "second";
1
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
2
+ export default _default;
3
+ type __VLS_WithSlots<T, S> = T & (new () => {
4
+ $slots: S;
5
+ });
6
+ declare const __VLS_component: import("vue").DefineComponent<{}, {
7
+ map: "second" | "first";
8
+ title: string;
3
9
  tools: unknown[];
4
10
  cssVars?: Record<string, any> | undefined;
5
11
  $props: {
6
- readonly map?: "first" | "second" | undefined;
12
+ readonly map?: "second" | "first" | undefined;
13
+ readonly title?: string | undefined;
7
14
  readonly tools?: unknown[] | undefined;
8
15
  readonly cssVars?: Record<string, any> | undefined;
9
16
  };
10
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
11
- eoxLayercontrol: unknown;
12
- }, HTMLSpanElement>;
13
- export default _default;
17
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ type __VLS_Slots = {
19
+ layerstitle?: ((props: {}) => any) | undefined;
20
+ };
@@ -5,7 +5,5 @@ declare const _default: import("vue").DefineComponent<{}, {
5
5
  readonly target?: string | undefined;
6
6
  readonly icon?: string | undefined;
7
7
  };
8
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
9
- rootRef: HTMLDivElement;
10
- }, HTMLDivElement>;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
11
9
  export default _default;
@@ -1,19 +1,23 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
- exportMap: boolean;
3
- changeProjection: boolean;
4
2
  compareIndicators: boolean | {
5
3
  compareTemplate?: string;
6
4
  fallbackTemplate?: string;
7
5
  };
6
+ changeProjection: boolean;
7
+ exportMap: boolean;
8
+ backToPOIs: boolean;
9
+ enableSearch: boolean;
10
+ enableZoom: boolean;
8
11
  $props: {
9
- readonly exportMap?: boolean | undefined;
10
- readonly changeProjection?: boolean | undefined;
11
- readonly compareIndicators?: boolean | {
12
+ compareIndicators?: boolean | {
12
13
  compareTemplate?: string;
13
14
  fallbackTemplate?: string;
14
15
  } | undefined;
16
+ changeProjection?: boolean | undefined;
17
+ exportMap?: boolean | undefined;
18
+ backToPOIs?: boolean | undefined;
19
+ enableSearch?: boolean | undefined;
20
+ enableZoom?: boolean | undefined;
15
21
  };
16
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
17
- rootRef: HTMLDivElement;
18
- }, HTMLDivElement>;
22
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
19
23
  export default _default;
@@ -2,15 +2,20 @@ declare const _default: import("vue").DefineComponent<{}, {
2
2
  enableCompare: boolean;
3
3
  zoom: number;
4
4
  zoomToExtent: boolean;
5
+ enableCursorCoordinates: boolean;
6
+ enableScaleLine: boolean;
7
+ btnsPosition: Record<string, any>;
8
+ btns: Record<string, any>;
5
9
  center?: [number, number] | undefined;
6
10
  $props: {
7
11
  readonly enableCompare?: boolean | undefined;
8
12
  readonly zoom?: number | undefined;
9
13
  readonly zoomToExtent?: boolean | undefined;
14
+ readonly enableCursorCoordinates?: boolean | undefined;
15
+ readonly enableScaleLine?: boolean | undefined;
16
+ readonly btnsPosition?: Record<string, any> | undefined;
17
+ readonly btns?: Record<string, any> | undefined;
10
18
  readonly center?: [number, number] | undefined;
11
19
  };
12
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
13
- eoxMap: unknown;
14
- compareMap: unknown;
15
- }, any>;
20
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
16
21
  export default _default;
@@ -1,2 +1,9 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ enableCompare: boolean;
3
+ mapElement: import("@eox/map").EOxMap | null;
4
+ $props: {
5
+ enableCompare?: boolean | undefined;
6
+ mapElement?: import("@eox/map").EOxMap | null | undefined;
7
+ };
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
9
  export default _default;
@@ -1,5 +1,9 @@
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
- container: HTMLDivElement;
3
- jsonformEl: unknown;
4
- }, HTMLDivElement>;
1
+ declare const _default: import("vue").DefineComponent<{}, {
2
+ enableCompare: boolean;
3
+ vegaEmbedOptions: Record<string, any>;
4
+ $props: {
5
+ enableCompare?: boolean | undefined;
6
+ vegaEmbedOptions?: Record<string, any> | undefined;
7
+ };
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
5
9
  export default _default;