@piveau/piveau-hub-ui-modules 4.4.28 → 4.4.29
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/dist/data-provider-interface/DataProviderInterface.vue.d.ts +319 -0
- package/dist/data-provider-interface/views/InputPage.vue.d.ts +319 -0
- package/dist/data-provider-interface/views/OverviewPage.vue.d.ts +319 -0
- package/dist/data-provider-interface/views/OverviewPage.vue.mjs +66 -58
- package/dist/data-provider-interface/views/OverviewPage.vue.mjs.map +1 -1
- package/dist/piveau-hub-ui-modules.css +1 -1
- package/package.json +1 -1
|
@@ -68,6 +68,325 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
68
68
|
}>, {
|
|
69
69
|
overviewPageIsVisible: import('vue').Ref<boolean, boolean>;
|
|
70
70
|
}, {
|
|
71
|
+
instance: {
|
|
72
|
+
metadata: {
|
|
73
|
+
title: string;
|
|
74
|
+
description: string;
|
|
75
|
+
keywords: string;
|
|
76
|
+
};
|
|
77
|
+
api: {
|
|
78
|
+
baseUrl: string;
|
|
79
|
+
hubUrl: string;
|
|
80
|
+
qualityBaseUrl: string;
|
|
81
|
+
similarityBaseUrl: string;
|
|
82
|
+
similarityServiceName: string;
|
|
83
|
+
fileUploadUrl: string;
|
|
84
|
+
sparqlUrl: string;
|
|
85
|
+
gazetteerBaseUrl: string;
|
|
86
|
+
corsproxyApiUrl: string;
|
|
87
|
+
};
|
|
88
|
+
authentication: {
|
|
89
|
+
useService: boolean;
|
|
90
|
+
login: {
|
|
91
|
+
useLogin: boolean;
|
|
92
|
+
loginTitle: string;
|
|
93
|
+
loginURL: string;
|
|
94
|
+
loginRedirectUri: string;
|
|
95
|
+
logoutTitle: string;
|
|
96
|
+
logoutURL: string;
|
|
97
|
+
logoutRedirectUri: string;
|
|
98
|
+
};
|
|
99
|
+
keycloak: {
|
|
100
|
+
realm: string;
|
|
101
|
+
clientId: string;
|
|
102
|
+
'ssl-required': string;
|
|
103
|
+
'public-client': boolean;
|
|
104
|
+
'verify-token-audience': boolean;
|
|
105
|
+
'use-resource-role-mappings': boolean;
|
|
106
|
+
'confidential-port': number;
|
|
107
|
+
url?: string | undefined;
|
|
108
|
+
};
|
|
109
|
+
keycloakInit: {
|
|
110
|
+
onLoad: "check-sso" | "login-required";
|
|
111
|
+
pkceMethod: string;
|
|
112
|
+
useNone: boolean;
|
|
113
|
+
adapter: string;
|
|
114
|
+
checkLoginIframe: boolean;
|
|
115
|
+
checkLoginIframeInterval: number;
|
|
116
|
+
responseMode: "query" | "fragment" | "form_post";
|
|
117
|
+
flow: "standard" | "implicit" | "hybrid";
|
|
118
|
+
scope: string;
|
|
119
|
+
token?: string | undefined;
|
|
120
|
+
refreshToken?: string | undefined;
|
|
121
|
+
idToken?: string | undefined;
|
|
122
|
+
timeSkew?: number | undefined;
|
|
123
|
+
redirectUri?: string | undefined;
|
|
124
|
+
silentCheckSsoRedirectUri?: string | undefined;
|
|
125
|
+
} & {
|
|
126
|
+
[k: string]: unknown;
|
|
127
|
+
};
|
|
128
|
+
rtp: {
|
|
129
|
+
grand_type: string;
|
|
130
|
+
audience: string;
|
|
131
|
+
};
|
|
132
|
+
authToken: string;
|
|
133
|
+
authMiddleware: {
|
|
134
|
+
baseUrl: string;
|
|
135
|
+
enable: boolean;
|
|
136
|
+
loginRedirectUrl: string;
|
|
137
|
+
logoutRedirectUrl: string;
|
|
138
|
+
};
|
|
139
|
+
} & {
|
|
140
|
+
[k: string]: unknown;
|
|
141
|
+
};
|
|
142
|
+
routing: {
|
|
143
|
+
routerOptions: {
|
|
144
|
+
base: string;
|
|
145
|
+
mode: string;
|
|
146
|
+
};
|
|
147
|
+
navigation: {
|
|
148
|
+
showSparql: boolean;
|
|
149
|
+
};
|
|
150
|
+
pagination: {
|
|
151
|
+
usePagination: boolean;
|
|
152
|
+
usePaginationArrows: boolean;
|
|
153
|
+
useItemsPerPage: boolean;
|
|
154
|
+
defaultItemsPerPage: number;
|
|
155
|
+
defaultItemsPerPageOptions: number[];
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
content: {
|
|
159
|
+
datasetDetails: {
|
|
160
|
+
embed: {
|
|
161
|
+
enable: boolean;
|
|
162
|
+
defaultWidth: number;
|
|
163
|
+
defaultHeight: number;
|
|
164
|
+
minRange: number;
|
|
165
|
+
maxRange: number;
|
|
166
|
+
};
|
|
167
|
+
header: {
|
|
168
|
+
navigation: string;
|
|
169
|
+
hidePublisher: boolean;
|
|
170
|
+
hideDate: boolean;
|
|
171
|
+
};
|
|
172
|
+
description: {
|
|
173
|
+
enableMarkdownInterpretation: boolean;
|
|
174
|
+
};
|
|
175
|
+
keywords: {
|
|
176
|
+
showTitle: boolean;
|
|
177
|
+
isVisible: boolean;
|
|
178
|
+
collapsed: boolean;
|
|
179
|
+
};
|
|
180
|
+
dataServices: {
|
|
181
|
+
isVisible: boolean;
|
|
182
|
+
displayAll: boolean;
|
|
183
|
+
displayCount: number;
|
|
184
|
+
incrementSteps: number[];
|
|
185
|
+
descriptionMaxLines: number;
|
|
186
|
+
descriptionMaxChars: number;
|
|
187
|
+
};
|
|
188
|
+
properties: string;
|
|
189
|
+
distributions: {
|
|
190
|
+
displayAll: boolean;
|
|
191
|
+
displayCount: number;
|
|
192
|
+
incrementSteps: number[];
|
|
193
|
+
descriptionMaxLines: number;
|
|
194
|
+
descriptionMaxChars: number;
|
|
195
|
+
showValidationButton: boolean;
|
|
196
|
+
};
|
|
197
|
+
downloadAs: {
|
|
198
|
+
url: string;
|
|
199
|
+
enable: boolean;
|
|
200
|
+
proxyUrl: string;
|
|
201
|
+
conversionFormats: {
|
|
202
|
+
sourceFileFormat: string;
|
|
203
|
+
targetFileFormat: string[];
|
|
204
|
+
}[];
|
|
205
|
+
};
|
|
206
|
+
similarDatasets: {
|
|
207
|
+
useSimilarDatasets: boolean;
|
|
208
|
+
breakpoints: {
|
|
209
|
+
verySimilar: {
|
|
210
|
+
start: number;
|
|
211
|
+
end: number;
|
|
212
|
+
};
|
|
213
|
+
similar: {
|
|
214
|
+
start: number;
|
|
215
|
+
end: number;
|
|
216
|
+
};
|
|
217
|
+
lessSimilar: {
|
|
218
|
+
start: number;
|
|
219
|
+
end: number;
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
};
|
|
223
|
+
pages: {
|
|
224
|
+
isVisible: boolean;
|
|
225
|
+
displayAll: boolean;
|
|
226
|
+
displayCount: number;
|
|
227
|
+
incrementSteps: number[];
|
|
228
|
+
descriptionMaxLines: number;
|
|
229
|
+
descriptionMaxChars: number;
|
|
230
|
+
};
|
|
231
|
+
visualisations: {
|
|
232
|
+
isVisible: boolean;
|
|
233
|
+
displayAll: boolean;
|
|
234
|
+
displayCount: number;
|
|
235
|
+
incrementSteps: number[];
|
|
236
|
+
descriptionMaxLines: number;
|
|
237
|
+
descriptionMaxChars: number;
|
|
238
|
+
};
|
|
239
|
+
isUsedBy: {
|
|
240
|
+
isVisible: boolean;
|
|
241
|
+
};
|
|
242
|
+
relatedResources: {
|
|
243
|
+
isVisible: boolean;
|
|
244
|
+
};
|
|
245
|
+
bulkDownload: {
|
|
246
|
+
buttonPosition: string;
|
|
247
|
+
MAX_FILE_TITLE_LENGTH: number;
|
|
248
|
+
MAX_REQUESTS_COUNT: number;
|
|
249
|
+
INTERVAL_MS: number;
|
|
250
|
+
TIMEOUT_MS: number;
|
|
251
|
+
};
|
|
252
|
+
quality: {
|
|
253
|
+
displayAll: boolean;
|
|
254
|
+
numberOfDisplayedQualityDistributions: number;
|
|
255
|
+
csvLinter: {
|
|
256
|
+
enable: boolean;
|
|
257
|
+
displayAll: boolean;
|
|
258
|
+
numberOfDisplayedValidationResults: number;
|
|
259
|
+
};
|
|
260
|
+
};
|
|
261
|
+
};
|
|
262
|
+
datasets: {
|
|
263
|
+
useSort: boolean;
|
|
264
|
+
useFeed: boolean;
|
|
265
|
+
useCatalogs: boolean;
|
|
266
|
+
followKeywordLinks: string;
|
|
267
|
+
maxKeywordLength: number;
|
|
268
|
+
facets: {
|
|
269
|
+
useDatasetFacets: boolean;
|
|
270
|
+
useDatasetFacetsMap: boolean;
|
|
271
|
+
showClearButton: boolean;
|
|
272
|
+
showFacetsTitle: boolean;
|
|
273
|
+
cutoff: number;
|
|
274
|
+
MIN_FACET_LIMIT: number;
|
|
275
|
+
MAX_FACET_LIMIT: number;
|
|
276
|
+
FACET_OPERATORS: {
|
|
277
|
+
or: string;
|
|
278
|
+
and: string;
|
|
279
|
+
};
|
|
280
|
+
FACET_GROUP_OPERATORS: {
|
|
281
|
+
or: string;
|
|
282
|
+
and: string;
|
|
283
|
+
};
|
|
284
|
+
defaultFacetOrder: string[];
|
|
285
|
+
scoringFacets: {
|
|
286
|
+
useScoringFacets: boolean;
|
|
287
|
+
defaultScoringFacets: Record<string, {
|
|
288
|
+
title: string;
|
|
289
|
+
id: string;
|
|
290
|
+
count: number;
|
|
291
|
+
minScoring: number;
|
|
292
|
+
maxScoring: number;
|
|
293
|
+
}>;
|
|
294
|
+
};
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
catalogs: {
|
|
298
|
+
useSort: boolean;
|
|
299
|
+
facets: {
|
|
300
|
+
useDatasetFacetsMap: boolean;
|
|
301
|
+
showClearButton: boolean;
|
|
302
|
+
showFacetsTitle: boolean;
|
|
303
|
+
cutoff: number;
|
|
304
|
+
MIN_FACET_LIMIT: number;
|
|
305
|
+
MAX_FACET_LIMIT: number;
|
|
306
|
+
FACET_OPERATORS: {
|
|
307
|
+
or: string;
|
|
308
|
+
and: string;
|
|
309
|
+
};
|
|
310
|
+
FACET_GROUP_OPERATORS: {
|
|
311
|
+
or: string;
|
|
312
|
+
and: string;
|
|
313
|
+
};
|
|
314
|
+
defaultFacetOrder: string[];
|
|
315
|
+
useCatalogFacets: boolean;
|
|
316
|
+
};
|
|
317
|
+
useCatalogCountries: boolean;
|
|
318
|
+
defaultCatalogImagePath: string;
|
|
319
|
+
defaultCatalogCountryID: string;
|
|
320
|
+
defaultCatalogID: string;
|
|
321
|
+
};
|
|
322
|
+
maps: {
|
|
323
|
+
options: {
|
|
324
|
+
id: string;
|
|
325
|
+
accessToken: string;
|
|
326
|
+
attribution: string;
|
|
327
|
+
};
|
|
328
|
+
mapVisible: boolean;
|
|
329
|
+
useAnimation: boolean;
|
|
330
|
+
location: [number[], number];
|
|
331
|
+
spatialType: "Point" | "Polygon";
|
|
332
|
+
height: string;
|
|
333
|
+
width: string;
|
|
334
|
+
mapContainerId: string;
|
|
335
|
+
urlTemplate: string;
|
|
336
|
+
geoBoundsId: string;
|
|
337
|
+
sender: {
|
|
338
|
+
height: string;
|
|
339
|
+
width: string;
|
|
340
|
+
mapContainerId: string;
|
|
341
|
+
startBounds: [[number, number], [number, number]];
|
|
342
|
+
};
|
|
343
|
+
receiver: {
|
|
344
|
+
height: string;
|
|
345
|
+
width: string;
|
|
346
|
+
mapContainerId: string;
|
|
347
|
+
startBounds: [[number, number], [number, number]];
|
|
348
|
+
attributionPosition: "topleft" | "topright" | "bottomleft" | "bottomright";
|
|
349
|
+
};
|
|
350
|
+
mapStyle: {
|
|
351
|
+
color: string;
|
|
352
|
+
fillColor: string;
|
|
353
|
+
fillOpacity: number;
|
|
354
|
+
weight: number;
|
|
355
|
+
radius: number;
|
|
356
|
+
};
|
|
357
|
+
};
|
|
358
|
+
dataProviderInterface: {
|
|
359
|
+
useService: boolean;
|
|
360
|
+
uploadFileTypes: string[];
|
|
361
|
+
enableFileUploadReplace: boolean;
|
|
362
|
+
basePath: string;
|
|
363
|
+
specification: "dcatap" | "dcatapde";
|
|
364
|
+
annifIntegration: boolean;
|
|
365
|
+
annifLinkTheme: string;
|
|
366
|
+
annifLinkSubject: string;
|
|
367
|
+
buttons: {
|
|
368
|
+
Dataset: boolean;
|
|
369
|
+
Catalogue: boolean;
|
|
370
|
+
};
|
|
371
|
+
doiRegistrationService: {
|
|
372
|
+
persistentIdentifierType: string;
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
languages: {
|
|
377
|
+
locale: string;
|
|
378
|
+
fallbackLocale: string;
|
|
379
|
+
useLanguageSelector: boolean;
|
|
380
|
+
};
|
|
381
|
+
themes: {
|
|
382
|
+
header: string;
|
|
383
|
+
};
|
|
384
|
+
tracker: {
|
|
385
|
+
isPiwikPro: boolean;
|
|
386
|
+
siteId: string;
|
|
387
|
+
trackerUrl: string;
|
|
388
|
+
};
|
|
389
|
+
};
|
|
71
390
|
dpiLocale: string | {
|
|
72
391
|
[x: string]: string[];
|
|
73
392
|
} | import('vue-router').LocationQueryValue[];
|
|
@@ -28,6 +28,325 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
28
28
|
}>, {
|
|
29
29
|
overviewPageIsVisible: import('vue').Ref<boolean, boolean>;
|
|
30
30
|
}, {
|
|
31
|
+
instance: {
|
|
32
|
+
metadata: {
|
|
33
|
+
title: string;
|
|
34
|
+
description: string;
|
|
35
|
+
keywords: string;
|
|
36
|
+
};
|
|
37
|
+
api: {
|
|
38
|
+
baseUrl: string;
|
|
39
|
+
hubUrl: string;
|
|
40
|
+
qualityBaseUrl: string;
|
|
41
|
+
similarityBaseUrl: string;
|
|
42
|
+
similarityServiceName: string;
|
|
43
|
+
fileUploadUrl: string;
|
|
44
|
+
sparqlUrl: string;
|
|
45
|
+
gazetteerBaseUrl: string;
|
|
46
|
+
corsproxyApiUrl: string;
|
|
47
|
+
};
|
|
48
|
+
authentication: {
|
|
49
|
+
useService: boolean;
|
|
50
|
+
login: {
|
|
51
|
+
useLogin: boolean;
|
|
52
|
+
loginTitle: string;
|
|
53
|
+
loginURL: string;
|
|
54
|
+
loginRedirectUri: string;
|
|
55
|
+
logoutTitle: string;
|
|
56
|
+
logoutURL: string;
|
|
57
|
+
logoutRedirectUri: string;
|
|
58
|
+
};
|
|
59
|
+
keycloak: {
|
|
60
|
+
realm: string;
|
|
61
|
+
clientId: string;
|
|
62
|
+
'ssl-required': string;
|
|
63
|
+
'public-client': boolean;
|
|
64
|
+
'verify-token-audience': boolean;
|
|
65
|
+
'use-resource-role-mappings': boolean;
|
|
66
|
+
'confidential-port': number;
|
|
67
|
+
url?: string | undefined;
|
|
68
|
+
};
|
|
69
|
+
keycloakInit: {
|
|
70
|
+
onLoad: "check-sso" | "login-required";
|
|
71
|
+
pkceMethod: string;
|
|
72
|
+
useNone: boolean;
|
|
73
|
+
adapter: string;
|
|
74
|
+
checkLoginIframe: boolean;
|
|
75
|
+
checkLoginIframeInterval: number;
|
|
76
|
+
responseMode: "query" | "fragment" | "form_post";
|
|
77
|
+
flow: "standard" | "implicit" | "hybrid";
|
|
78
|
+
scope: string;
|
|
79
|
+
token?: string | undefined;
|
|
80
|
+
refreshToken?: string | undefined;
|
|
81
|
+
idToken?: string | undefined;
|
|
82
|
+
timeSkew?: number | undefined;
|
|
83
|
+
redirectUri?: string | undefined;
|
|
84
|
+
silentCheckSsoRedirectUri?: string | undefined;
|
|
85
|
+
} & {
|
|
86
|
+
[k: string]: unknown;
|
|
87
|
+
};
|
|
88
|
+
rtp: {
|
|
89
|
+
grand_type: string;
|
|
90
|
+
audience: string;
|
|
91
|
+
};
|
|
92
|
+
authToken: string;
|
|
93
|
+
authMiddleware: {
|
|
94
|
+
baseUrl: string;
|
|
95
|
+
enable: boolean;
|
|
96
|
+
loginRedirectUrl: string;
|
|
97
|
+
logoutRedirectUrl: string;
|
|
98
|
+
};
|
|
99
|
+
} & {
|
|
100
|
+
[k: string]: unknown;
|
|
101
|
+
};
|
|
102
|
+
routing: {
|
|
103
|
+
routerOptions: {
|
|
104
|
+
base: string;
|
|
105
|
+
mode: string;
|
|
106
|
+
};
|
|
107
|
+
navigation: {
|
|
108
|
+
showSparql: boolean;
|
|
109
|
+
};
|
|
110
|
+
pagination: {
|
|
111
|
+
usePagination: boolean;
|
|
112
|
+
usePaginationArrows: boolean;
|
|
113
|
+
useItemsPerPage: boolean;
|
|
114
|
+
defaultItemsPerPage: number;
|
|
115
|
+
defaultItemsPerPageOptions: number[];
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
content: {
|
|
119
|
+
datasetDetails: {
|
|
120
|
+
embed: {
|
|
121
|
+
enable: boolean;
|
|
122
|
+
defaultWidth: number;
|
|
123
|
+
defaultHeight: number;
|
|
124
|
+
minRange: number;
|
|
125
|
+
maxRange: number;
|
|
126
|
+
};
|
|
127
|
+
header: {
|
|
128
|
+
navigation: string;
|
|
129
|
+
hidePublisher: boolean;
|
|
130
|
+
hideDate: boolean;
|
|
131
|
+
};
|
|
132
|
+
description: {
|
|
133
|
+
enableMarkdownInterpretation: boolean;
|
|
134
|
+
};
|
|
135
|
+
keywords: {
|
|
136
|
+
showTitle: boolean;
|
|
137
|
+
isVisible: boolean;
|
|
138
|
+
collapsed: boolean;
|
|
139
|
+
};
|
|
140
|
+
dataServices: {
|
|
141
|
+
isVisible: boolean;
|
|
142
|
+
displayAll: boolean;
|
|
143
|
+
displayCount: number;
|
|
144
|
+
incrementSteps: number[];
|
|
145
|
+
descriptionMaxLines: number;
|
|
146
|
+
descriptionMaxChars: number;
|
|
147
|
+
};
|
|
148
|
+
properties: string;
|
|
149
|
+
distributions: {
|
|
150
|
+
displayAll: boolean;
|
|
151
|
+
displayCount: number;
|
|
152
|
+
incrementSteps: number[];
|
|
153
|
+
descriptionMaxLines: number;
|
|
154
|
+
descriptionMaxChars: number;
|
|
155
|
+
showValidationButton: boolean;
|
|
156
|
+
};
|
|
157
|
+
downloadAs: {
|
|
158
|
+
url: string;
|
|
159
|
+
enable: boolean;
|
|
160
|
+
proxyUrl: string;
|
|
161
|
+
conversionFormats: {
|
|
162
|
+
sourceFileFormat: string;
|
|
163
|
+
targetFileFormat: string[];
|
|
164
|
+
}[];
|
|
165
|
+
};
|
|
166
|
+
similarDatasets: {
|
|
167
|
+
useSimilarDatasets: boolean;
|
|
168
|
+
breakpoints: {
|
|
169
|
+
verySimilar: {
|
|
170
|
+
start: number;
|
|
171
|
+
end: number;
|
|
172
|
+
};
|
|
173
|
+
similar: {
|
|
174
|
+
start: number;
|
|
175
|
+
end: number;
|
|
176
|
+
};
|
|
177
|
+
lessSimilar: {
|
|
178
|
+
start: number;
|
|
179
|
+
end: number;
|
|
180
|
+
};
|
|
181
|
+
};
|
|
182
|
+
};
|
|
183
|
+
pages: {
|
|
184
|
+
isVisible: boolean;
|
|
185
|
+
displayAll: boolean;
|
|
186
|
+
displayCount: number;
|
|
187
|
+
incrementSteps: number[];
|
|
188
|
+
descriptionMaxLines: number;
|
|
189
|
+
descriptionMaxChars: number;
|
|
190
|
+
};
|
|
191
|
+
visualisations: {
|
|
192
|
+
isVisible: boolean;
|
|
193
|
+
displayAll: boolean;
|
|
194
|
+
displayCount: number;
|
|
195
|
+
incrementSteps: number[];
|
|
196
|
+
descriptionMaxLines: number;
|
|
197
|
+
descriptionMaxChars: number;
|
|
198
|
+
};
|
|
199
|
+
isUsedBy: {
|
|
200
|
+
isVisible: boolean;
|
|
201
|
+
};
|
|
202
|
+
relatedResources: {
|
|
203
|
+
isVisible: boolean;
|
|
204
|
+
};
|
|
205
|
+
bulkDownload: {
|
|
206
|
+
buttonPosition: string;
|
|
207
|
+
MAX_FILE_TITLE_LENGTH: number;
|
|
208
|
+
MAX_REQUESTS_COUNT: number;
|
|
209
|
+
INTERVAL_MS: number;
|
|
210
|
+
TIMEOUT_MS: number;
|
|
211
|
+
};
|
|
212
|
+
quality: {
|
|
213
|
+
displayAll: boolean;
|
|
214
|
+
numberOfDisplayedQualityDistributions: number;
|
|
215
|
+
csvLinter: {
|
|
216
|
+
enable: boolean;
|
|
217
|
+
displayAll: boolean;
|
|
218
|
+
numberOfDisplayedValidationResults: number;
|
|
219
|
+
};
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
datasets: {
|
|
223
|
+
useSort: boolean;
|
|
224
|
+
useFeed: boolean;
|
|
225
|
+
useCatalogs: boolean;
|
|
226
|
+
followKeywordLinks: string;
|
|
227
|
+
maxKeywordLength: number;
|
|
228
|
+
facets: {
|
|
229
|
+
useDatasetFacets: boolean;
|
|
230
|
+
useDatasetFacetsMap: boolean;
|
|
231
|
+
showClearButton: boolean;
|
|
232
|
+
showFacetsTitle: boolean;
|
|
233
|
+
cutoff: number;
|
|
234
|
+
MIN_FACET_LIMIT: number;
|
|
235
|
+
MAX_FACET_LIMIT: number;
|
|
236
|
+
FACET_OPERATORS: {
|
|
237
|
+
or: string;
|
|
238
|
+
and: string;
|
|
239
|
+
};
|
|
240
|
+
FACET_GROUP_OPERATORS: {
|
|
241
|
+
or: string;
|
|
242
|
+
and: string;
|
|
243
|
+
};
|
|
244
|
+
defaultFacetOrder: string[];
|
|
245
|
+
scoringFacets: {
|
|
246
|
+
useScoringFacets: boolean;
|
|
247
|
+
defaultScoringFacets: Record<string, {
|
|
248
|
+
title: string;
|
|
249
|
+
id: string;
|
|
250
|
+
count: number;
|
|
251
|
+
minScoring: number;
|
|
252
|
+
maxScoring: number;
|
|
253
|
+
}>;
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
};
|
|
257
|
+
catalogs: {
|
|
258
|
+
useSort: boolean;
|
|
259
|
+
facets: {
|
|
260
|
+
useDatasetFacetsMap: boolean;
|
|
261
|
+
showClearButton: boolean;
|
|
262
|
+
showFacetsTitle: boolean;
|
|
263
|
+
cutoff: number;
|
|
264
|
+
MIN_FACET_LIMIT: number;
|
|
265
|
+
MAX_FACET_LIMIT: number;
|
|
266
|
+
FACET_OPERATORS: {
|
|
267
|
+
or: string;
|
|
268
|
+
and: string;
|
|
269
|
+
};
|
|
270
|
+
FACET_GROUP_OPERATORS: {
|
|
271
|
+
or: string;
|
|
272
|
+
and: string;
|
|
273
|
+
};
|
|
274
|
+
defaultFacetOrder: string[];
|
|
275
|
+
useCatalogFacets: boolean;
|
|
276
|
+
};
|
|
277
|
+
useCatalogCountries: boolean;
|
|
278
|
+
defaultCatalogImagePath: string;
|
|
279
|
+
defaultCatalogCountryID: string;
|
|
280
|
+
defaultCatalogID: string;
|
|
281
|
+
};
|
|
282
|
+
maps: {
|
|
283
|
+
options: {
|
|
284
|
+
id: string;
|
|
285
|
+
accessToken: string;
|
|
286
|
+
attribution: string;
|
|
287
|
+
};
|
|
288
|
+
mapVisible: boolean;
|
|
289
|
+
useAnimation: boolean;
|
|
290
|
+
location: [number[], number];
|
|
291
|
+
spatialType: "Point" | "Polygon";
|
|
292
|
+
height: string;
|
|
293
|
+
width: string;
|
|
294
|
+
mapContainerId: string;
|
|
295
|
+
urlTemplate: string;
|
|
296
|
+
geoBoundsId: string;
|
|
297
|
+
sender: {
|
|
298
|
+
height: string;
|
|
299
|
+
width: string;
|
|
300
|
+
mapContainerId: string;
|
|
301
|
+
startBounds: [[number, number], [number, number]];
|
|
302
|
+
};
|
|
303
|
+
receiver: {
|
|
304
|
+
height: string;
|
|
305
|
+
width: string;
|
|
306
|
+
mapContainerId: string;
|
|
307
|
+
startBounds: [[number, number], [number, number]];
|
|
308
|
+
attributionPosition: "topleft" | "topright" | "bottomleft" | "bottomright";
|
|
309
|
+
};
|
|
310
|
+
mapStyle: {
|
|
311
|
+
color: string;
|
|
312
|
+
fillColor: string;
|
|
313
|
+
fillOpacity: number;
|
|
314
|
+
weight: number;
|
|
315
|
+
radius: number;
|
|
316
|
+
};
|
|
317
|
+
};
|
|
318
|
+
dataProviderInterface: {
|
|
319
|
+
useService: boolean;
|
|
320
|
+
uploadFileTypes: string[];
|
|
321
|
+
enableFileUploadReplace: boolean;
|
|
322
|
+
basePath: string;
|
|
323
|
+
specification: "dcatap" | "dcatapde";
|
|
324
|
+
annifIntegration: boolean;
|
|
325
|
+
annifLinkTheme: string;
|
|
326
|
+
annifLinkSubject: string;
|
|
327
|
+
buttons: {
|
|
328
|
+
Dataset: boolean;
|
|
329
|
+
Catalogue: boolean;
|
|
330
|
+
};
|
|
331
|
+
doiRegistrationService: {
|
|
332
|
+
persistentIdentifierType: string;
|
|
333
|
+
};
|
|
334
|
+
};
|
|
335
|
+
};
|
|
336
|
+
languages: {
|
|
337
|
+
locale: string;
|
|
338
|
+
fallbackLocale: string;
|
|
339
|
+
useLanguageSelector: boolean;
|
|
340
|
+
};
|
|
341
|
+
themes: {
|
|
342
|
+
header: string;
|
|
343
|
+
};
|
|
344
|
+
tracker: {
|
|
345
|
+
isPiwikPro: boolean;
|
|
346
|
+
siteId: string;
|
|
347
|
+
trackerUrl: string;
|
|
348
|
+
};
|
|
349
|
+
};
|
|
31
350
|
dpiLocale: string | {
|
|
32
351
|
[x: string]: string[];
|
|
33
352
|
} | import('vue-router').LocationQueryValue[];
|