@eodash/eodash 5.0.0 → 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-CkWvOMOW.js → DashboardLayout-ByVs1DrY.js} +23 -12
- package/dist/client/{DynamicWebComponent-DYBbpvUK.js → DynamicWebComponent-C3W7HSQm.js} +1 -1
- package/dist/client/{EodashDatePicker-CALmW3SI.js → EodashDatePicker-BIAf1sMT.js} +59 -32
- package/dist/client/{EodashItemFilter-DlQiE713.js → EodashItemFilter-DPznh8UB.js} +20 -10
- package/dist/client/{EodashLayerControl-DEzEbft7.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-DPPxDkF6.js → EodashStacInfo-CSvvF2jI.js} +3 -18
- package/dist/client/{EodashTools-CUaL9s4H.js → EodashTools-Cv1SXQ5y.js} +13 -13
- package/dist/client/{ExportState-DjyIZVhl.js → ExportState-D-iuwaad.js} +58 -52
- package/dist/client/{Footer-DyL0JoWt.js → Footer-CyF0zRAk.js} +15 -13
- package/dist/client/{Header-B5Dgty9l.js → Header-CgD8jDKU.js} +33 -28
- package/dist/client/{MobileLayout-CRsg_5Q4.js → MobileLayout-EKQ_kpSh.js} +69 -60
- package/dist/client/{PopUp-BfB8s_ki.js → PopUp-BsYLvWch.js} +19 -10
- package/dist/client/ProcessList-C2xsLU2_.js +191 -0
- package/dist/client/{VImg-FD1WVphJ.js → VImg-OHe8YTs2.js} +24 -24
- package/dist/client/{VMain-DJKG4SvM.js → VMain-PryTLU4a.js} +7 -7
- package/dist/client/{VOverlay-BzOdRu9h.js → VOverlay-yUn7p-Uf.js} +64 -27
- package/dist/client/{VTooltip-CfeefrXI.js → VTooltip-DZ0fjpB3.js} +13 -10
- package/dist/client/{WidgetsContainer-C2TaTdb6.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-Bon_Kku1.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-Bm9cbtx5.js → index-BuhOHXKv.js} +2 -4
- package/dist/client/{index-CIHH_3dW.js → index-Ch_HchK3.js} +39 -32
- package/dist/client/{index-4CT7Tz83.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-CDeCV8F-.js +0 -52
- package/dist/client/EodashMapBtns-CktQCfa-.js +0 -131
- package/dist/client/ProcessList-DTefwQZx.js +0 -484
- package/dist/client/asWebComponent-CLhcT715.js +0 -12479
- package/dist/client/eo-dash.css +0 -5
- package/dist/client/index-DiGDvTQU.js +0 -780
- package/dist/client/transition-C5I57hn6.js +0 -37
- package/dist/types/core/client/eodash.d.ts +0 -8
|
@@ -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:
|
|
2
|
-
|
|
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?: "
|
|
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
|
-
|
|
12
|
-
}
|
|
13
|
-
|
|
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;
|
|
@@ -9,8 +9,5 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
9
9
|
readonly zoomToExtent?: boolean | undefined;
|
|
10
10
|
readonly center?: [number, number] | undefined;
|
|
11
11
|
};
|
|
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>;
|
|
12
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
13
|
export default _default;
|
|
@@ -1,19 +1,19 @@
|
|
|
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;
|
|
8
9
|
$props: {
|
|
9
|
-
|
|
10
|
-
readonly changeProjection?: boolean | undefined;
|
|
11
|
-
readonly compareIndicators?: boolean | {
|
|
10
|
+
compareIndicators?: boolean | {
|
|
12
11
|
compareTemplate?: string;
|
|
13
12
|
fallbackTemplate?: string;
|
|
14
13
|
} | undefined;
|
|
14
|
+
changeProjection?: boolean | undefined;
|
|
15
|
+
exportMap?: boolean | undefined;
|
|
16
|
+
backToPOIs?: boolean | undefined;
|
|
15
17
|
};
|
|
16
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
17
|
-
rootRef: HTMLDivElement;
|
|
18
|
-
}, HTMLDivElement>;
|
|
18
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
19
|
export default _default;
|
|
@@ -1,2 +1,9 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {
|
|
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<{}, {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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;
|