@piveau/piveau-hub-ui-modules 4.8.0 → 4.8.2
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/configurations/configureServices.mjs +9 -6
- package/dist/configurations/configureServices.mjs.map +1 -1
- package/dist/datasetDetails/header/DatasetDetailsHeaderCatalogue.vue.d.ts +10 -3
- package/dist/datasetDetails/header/DatasetDetailsHeaderCatalogue.vue.mjs +55 -38
- package/dist/datasetDetails/header/DatasetDetailsHeaderCatalogue.vue.mjs.map +1 -1
- package/dist/datasetDetails/navigation/DatasetDetailsNavigationLinks.vue.d.ts +7 -2
- package/dist/datasetDetails/navigation/DatasetDetailsNavigationLinks.vue.mjs +164 -140
- package/dist/datasetDetails/navigation/DatasetDetailsNavigationLinks.vue.mjs.map +1 -1
- package/dist/datasetDetails/properties/DatasetseriesDetailsProperties.vue.d.ts +55 -0
- package/dist/datasetDetails/properties/DatasetseriesDetailsProperties.vue.mjs +128 -0
- package/dist/datasetDetails/properties/DatasetseriesDetailsProperties.vue.mjs.map +1 -0
- package/dist/datasetDetails/properties/DatasetseriesDetailsProperties.vue2.mjs +5 -0
- package/dist/datasetDetails/properties/DatasetseriesDetailsProperties.vue2.mjs.map +1 -0
- package/dist/datasetDetails/properties/DatasetseriesDetailsProperty.vue.d.ts +52 -0
- package/dist/datasetDetails/properties/DatasetseriesDetailsProperty.vue.mjs +168 -0
- package/dist/datasetDetails/properties/DatasetseriesDetailsProperty.vue.mjs.map +1 -0
- package/dist/datasetDetails/properties/DatasetseriesDetailsProperty.vue2.mjs +5 -0
- package/dist/datasetDetails/properties/DatasetseriesDetailsProperty.vue2.mjs.map +1 -0
- package/dist/datasetDetails/properties/specification.d.ts +38 -0
- package/dist/datasetDetails/properties/specification.mjs +15 -4
- package/dist/datasetDetails/properties/specification.mjs.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.mjs +112 -108
- package/dist/index.mjs.map +1 -1
- package/dist/piveau-hub-ui-modules.css +1 -1
- package/dist/services/datasetService.mjs +1 -1
- package/dist/services/datasetService.mjs.map +1 -1
- package/dist/services/datasetseriesService.d.ts +9 -0
- package/dist/services/datasetseriesService.mjs +30 -0
- package/dist/services/datasetseriesService.mjs.map +1 -0
- package/dist/store/index.mjs +25 -23
- package/dist/store/index.mjs.map +1 -1
- package/dist/store/modules/dataserviceDetailsStore.d.ts +1 -0
- package/dist/store/modules/dataserviceDetailsStore.mjs +8 -4
- package/dist/store/modules/dataserviceDetailsStore.mjs.map +1 -1
- package/dist/store/modules/datasetseriesDetailsStore.d.ts +85 -0
- package/dist/store/modules/datasetseriesDetailsStore.mjs +142 -0
- package/dist/store/modules/datasetseriesDetailsStore.mjs.map +1 -0
- package/package.json +1 -1
|
@@ -52,7 +52,7 @@ const a = `releaseDate,modificationDate,creator,landingPages,sources,
|
|
|
52
52
|
name: (e == null ? void 0 : e.name) ?? (e == null ? void 0 : e.label)
|
|
53
53
|
}) },
|
|
54
54
|
temporalResolution: { type: "string" }
|
|
55
|
-
}),
|
|
55
|
+
}), l = () => ({
|
|
56
56
|
politicalGeocodingLevelURI: { type: "objects", fields: "label,resource:link" },
|
|
57
57
|
politicalGeocodingURI: { type: "objects", fields: "label,resource:link" },
|
|
58
58
|
availability: { type: "object", translate: "availabilityDE,availability", fields: "label,resource:link" },
|
|
@@ -65,18 +65,29 @@ const a = `releaseDate,modificationDate,creator,landingPages,sources,
|
|
|
65
65
|
contributor: { type: "objects", fields: "name,type,homepage,email,resource" },
|
|
66
66
|
originator: { type: "objects", fields: "name,type,homepage,email,resource" },
|
|
67
67
|
maintainer: { type: "objects", fields: "name,type,homepage,email,resource" }
|
|
68
|
-
}),
|
|
68
|
+
}), n = () => ({
|
|
69
69
|
catalog: { type: "translation", fields: "title" },
|
|
70
70
|
publisher: { type: "object", fields: "name,email,homepage:link" },
|
|
71
71
|
contact_point: { type: "objects", fields: "email" },
|
|
72
72
|
access_right: { type: "object", fields: "resource" },
|
|
73
73
|
endpoint_url: { type: "links", translate: ",endpoint_url" },
|
|
74
74
|
format: { type: "object", fields: "label,resource:link_blank" }
|
|
75
|
+
}), o = () => ({
|
|
76
|
+
publisher: { type: "object", fields: "type,name,resource:link" },
|
|
77
|
+
issued: { type: "date", translate: "created" },
|
|
78
|
+
modified: { type: "date", translate: "updated" },
|
|
79
|
+
temporal: { type: "objects", fields: "gte:date,lte:date" },
|
|
80
|
+
spatial_resource: { type: "links", fields: "resource:link" },
|
|
81
|
+
contact_point: { type: "objects", fields: "name,email,telephone,address" },
|
|
82
|
+
spatial: { type: "objects", fields: "coordinates,type" },
|
|
83
|
+
accrual_periodicity: { type: "object", fields: "label:label,resource:link" },
|
|
84
|
+
applicable_legislation: { type: "links", translate: "legalBasis,applicableLegislation" }
|
|
75
85
|
});
|
|
76
86
|
export {
|
|
77
|
-
|
|
87
|
+
n as dcatDataserviceSchema,
|
|
88
|
+
o as dcatDatasetseriesSchema,
|
|
78
89
|
i as dcatDeFields,
|
|
79
|
-
|
|
90
|
+
l as dcatDeSchema,
|
|
80
91
|
a as dcatFields,
|
|
81
92
|
s as dcatSchema
|
|
82
93
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"specification.mjs","sources":["../../../lib/datasetDetails/properties/specification.ts"],"sourcesContent":["export const dcatFields = `releaseDate,modificationDate,creator,landingPages,sources,\n languages,publisher,contactPoints,catalogRecord,spatial,\n spatialResource,conformsTo,provenances,identifiers,otherIdentifiers, resource,\n frequency,accessRights,accrualPeriodicity,hasVersion,isVersionOf,\n temporal,versionInfo,versionNotes,attributes,dimensions,numSeries,hasQualityAnnotations,\n statUnitMeasures,isReferencedBy,qualifiedAttributions,wasGeneratedBy,\n qualifiedRelations,sample,spatialResolutionInMeters,type,temporalResolution`;\n\nexport const dcatDeFields = `politicalGeocodingLevelURI,politicalGeocodingURI,availability,\n contributorID,geocodingDescriptionDe,legalBasis,qualityProcessURI,typeDe,\n references,contributor,originator,maintainer`;\n\n/*\n Below we have schemata describing how properties should be rendered in DatasetDatailsProperties.vue. A schema is\n an object where keys correspond to the above defined fields. For each key, the value is an object the format of which\n we will now describe:\n\n - type: is the the only required property. Will be evaluated in typeCheckers.ts. It reflects the format of the\n data item (CALLED \"response\" BELOW!) retrieved by from the search network response (number, string, url, array, object, array of objects).\n Supported values are:\n * \"number\": response is a single number\n * \"first:number\": render response[0] as a number\n * \"string\": response a simple string\n * \"uri\": response a simple string, rendered as a link\n * \"date\": response a simple string, formatted as a date conforming to the current locale\n * \"translation\": response an object containing locale keys (like \"en\", \"de\"). The value corresponding to the\n current locale is rendered\n * \"object\": response an object whose where each key-value pair is rendered on a separate line\n * \"array\": response an array whose elements are rendered vertically\n * \"links\": reponse either an array of uri-strings rendered as links, or an\n array of objects with a label field that is displayed as a link and another field\n holding the href; that other field is either resource, label or id\n\n - translate: for a property \"xxx\", we have a bold label and tooltip to the left which comes from\n an i18n translation; the default i18n keys are: message.tooltip.datasetDetails.xxx for the tooltip and\n message.metadata.xxx for the displayed label. if instead of xxx, you want to use another key (with the same prefixes),\n translate can provide it. If translate is two strings separated by commas, the left one applies to the tooltip, the right\n to the label. Instead of just a replacement for xxx, you can provide i18n keys without the prefixes by starting the string with\n a slash (example: translate:\"/message.tooltip.yyy,/message.mykey.mylabelkey\"). Instead of translation keys, you can also\n provide literal values as tooltip or label by enclosing the strings in single quotes.\n\n - fields: for objects and arrays of objects, this comma-separated value indicates, what keys of the objects should\n be used for display (filtering out any additional data in the object). If not present, all existent keys will be used.\n A key given in this comma separated list can be of the form \"x\": just a key, or of the form \"x:y\": key x of type y (where\n the type is any of \"link\", \"link_blank\", \"date\" or empty; accordingly, a link (possibly target=\"_blank\") or date will be displayed).\n Also the form \"x:y:z\" is possible, where z is an indication how to translate the key for rendering. If z does not exist,\n the i18n key message.metadata.x will be translated; if z exists, we use message.metadata.z instead. The additional properties for\n \"translate\" above can also be applied to z: leading slash or single quotes.\n\n - track: enable Matomo tracking for a link. track is a string value indicating the key of the data object for which\n tracking should be enabled.\n\n - itemstyles: a string of CSS properties that applies to key-value items of a rendered object\n\n - transform: a function that maps the data to be rendered. Applies after the data has been processed in the value-method of\n DatsetDetailsProperty.vue\n\n - preTransform: same as transform, only applied to the raw data value before processing in the value-method\n\n */\n\nexport const dcatSchema = (t) => ({\n releaseDate: {type: 'date', translate: 'created'},\n modificationDate: {type: 'date', translate: 'updated'},\n landingPages: {type: 'links', translate: 'landingPage'},\n sources: {type: 'links', translate:',sources'},\n languages: {type: 'links', translate: 'language,languages'},\n publisher: {type: 'object', fields: 'name,email,homepage'},\n contactPoints: {type: 'objects', translate:\"/message.tooltip.contactPoints,contactPoints\", fields: \"name::/message.metadata.name,organisation_name::/message.datasetDetails.contactPoints.organizationName,email,telephone,address,url:link\"},\n catalogRecord: {type: 'object', translate:\"/message.tooltip.catalogRecord,catalogRecord\", fields: \"issued:date:addedToDataEuropaEU,modified:date:updatedOnDataEuropaEU,homepage\"},\n spatial: {type: 'objects', fields: \"coordinates,type\"},\n spatialResource: {type: 'links', translate:\",spatialResource\", fields: \"resource:link\"},\n conformsTo: {type: 'objects', fields: \"title::label,label,resource:link_blank\", track:\"resource\"},\n provenances: {type: 'objects', translate: 'provenance,provenances', fields: \"label,resource:link\"},\n // relatedResources: {type: 'links', translate: 'relatedResource,relatedResources'},\n identifiers: {type: 'links', translate: 'identifier,identifiers'},\n otherIdentifiers: {type: 'links', translate: 'otherIdentifier,otherIdentifiers', fields:\"identifier:link,resource:link:identifier,scheme:link\"},\n resource: {type: 'uri', translate: \",'uriRef:'\"},\n frequency: {type: 'object', fields:\"title,resource:link\"},\n accessRights: {type: 'object', translate:\"/message.tooltip.datasetDetails.distributions.rights,accessRights\", fields:\"label::\"},\n accrualPeriodicity: {type: 'object', translate:\"frequency,accrualPeriodicity\", fields:\"label::\"},\n creator: {type: 'objects', fields:\"type,name,resource:link,email,homepage:link\"},\n hasVersion: {type: 'links'},\n isVersionOf: {type: 'links', translate:\"versionOf,isVersionOf\"},\n temporal: {type: 'objects', translate:\"/message.tooltip.datasetDetails.distributions.temporalResolution,temporal\", fields: \"gte:date:,lte:date:' -'\", itemstyles:\"float:left\"},\n versionInfo: {type: 'string'},\n versionNotes: {type: 'translation'},\n attributes: {type: 'links', translate:\",attributes\"},\n dimensions: {type: 'links', translate:\",dimensions\"},\n numSeries: {type: 'number'},\n hasQualityAnnotations: {type: 'links', translate: \",qualityAnnotations\"},\n statUnitMeasures: {type: 'links', translate: \"unitsOfMeasurement\"},\n isReferencedBy: {type: 'links'},\n qualifiedAttributions: {type: 'links', translate: \"qualifiedAttribution\"},\n wasGeneratedBy: {type: 'links'},\n qualifiedRelations: {type: 'objects', translate: \"qualifiedRelation\", fields: \"relation:link,had_role:link:role\"},\n sample: {type: 'links'},\n spatialResolutionInMeters: {\n type: 'number', translate: \"spatialResolutionInMeters,spatialResolutionInMeters.label\",\n transform: value => t('message.metadata.spatialResolutionInMeters.value', {number: value})\n },\n type: {type: 'object', fields: \"label,resource:link_blank\", preTransform: (value) => ({\n ...value,\n name: value?.name ?? value?.label\n })},\n temporalResolution: {type: 'string'}\n});\n\nexport const dcatDeSchema = () => ({\n politicalGeocodingLevelURI: {type: 'objects', fields:\"label,resource:link\"},\n politicalGeocodingURI: {type: 'objects', fields:\"label,resource:link\"},\n availability: {type: 'object', translate:\"availabilityDE,availability\", fields:\"label,resource:link\"},\n contributorID: {type: 'objects', fields:\"label,resource:link\"},\n geocodingDescriptionDe: {type: 'translation'},\n legalBasis: {type: 'translation'},\n qualityProcessURI: {type: 'uri'},\n typeDe: {type: 'string', translate:\"type,type\"},\n references: {type: 'uri'},\n contributor: {type: 'objects', fields:\"name,type,homepage,email,resource\"},\n originator: {type: 'objects', fields:\"name,type,homepage,email,resource\"},\n maintainer: {type: 'objects', fields:\"name,type,homepage,email,resource\"}\n});\n\n/* Schema for dataservice-specific properties */\nexport const dcatDataserviceSchema = () => ({\n catalog: {type: 'translation', fields: 'title'},\n publisher: {type: 'object', fields: 'name,email,homepage:link'},\n contact_point: {type: 'objects', fields: 'email'},\n access_right: {type: 'object', fields: 'resource'},\n endpoint_url: {type: 'links', translate:\",endpoint_url\"},\n format: {type: 'object', fields: 'label,resource:link_blank'}\n});\n"],"names":["dcatFields","dcatDeFields","dcatSchema","value","dcatDeSchema","dcatDataserviceSchema"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"specification.mjs","sources":["../../../lib/datasetDetails/properties/specification.ts"],"sourcesContent":["export const dcatFields = `releaseDate,modificationDate,creator,landingPages,sources,\n languages,publisher,contactPoints,catalogRecord,spatial,\n spatialResource,conformsTo,provenances,identifiers,otherIdentifiers, resource,\n frequency,accessRights,accrualPeriodicity,hasVersion,isVersionOf,\n temporal,versionInfo,versionNotes,attributes,dimensions,numSeries,hasQualityAnnotations,\n statUnitMeasures,isReferencedBy,qualifiedAttributions,wasGeneratedBy,\n qualifiedRelations,sample,spatialResolutionInMeters,type,temporalResolution`;\n\nexport const dcatDeFields = `politicalGeocodingLevelURI,politicalGeocodingURI,availability,\n contributorID,geocodingDescriptionDe,legalBasis,qualityProcessURI,typeDe,\n references,contributor,originator,maintainer`;\n\n/*\n Below we have schemata describing how properties should be rendered in DatasetDatailsProperties.vue. A schema is\n an object where keys correspond to the above defined fields. For each key, the value is an object the format of which\n we will now describe:\n\n - type: is the the only required property. Will be evaluated in typeCheckers.ts. It reflects the format of the\n data item (CALLED \"response\" BELOW!) retrieved by from the search network response (number, string, url, array, object, array of objects).\n Supported values are:\n * \"number\": response is a single number\n * \"first:number\": render response[0] as a number\n * \"string\": response a simple string\n * \"uri\": response a simple string, rendered as a link\n * \"date\": response a simple string, formatted as a date conforming to the current locale\n * \"translation\": response an object containing locale keys (like \"en\", \"de\"). The value corresponding to the\n current locale is rendered\n * \"object\": response an object whose where each key-value pair is rendered on a separate line\n * \"array\": response an array whose elements are rendered vertically\n * \"links\": reponse either an array of uri-strings rendered as links, or an\n array of objects with a label field that is displayed as a link and another field\n holding the href; that other field is either resource, label or id\n\n - translate: for a property \"xxx\", we have a bold label and tooltip to the left which comes from\n an i18n translation; the default i18n keys are: message.tooltip.datasetDetails.xxx for the tooltip and\n message.metadata.xxx for the displayed label. if instead of xxx, you want to use another key (with the same prefixes),\n translate can provide it. If translate is two strings separated by commas, the left one applies to the tooltip, the right\n to the label. Instead of just a replacement for xxx, you can provide i18n keys without the prefixes by starting the string with\n a slash (example: translate:\"/message.tooltip.yyy,/message.mykey.mylabelkey\"). Instead of translation keys, you can also\n provide literal values as tooltip or label by enclosing the strings in single quotes.\n\n - fields: for objects and arrays of objects, this comma-separated value indicates, what keys of the objects should\n be used for display (filtering out any additional data in the object). If not present, all existent keys will be used.\n A key given in this comma separated list can be of the form \"x\": just a key, or of the form \"x:y\": key x of type y (where\n the type is any of \"link\", \"link_blank\", \"date\" or empty; accordingly, a link (possibly target=\"_blank\") or date will be displayed).\n Also the form \"x:y:z\" is possible, where z is an indication how to translate the key for rendering. If z does not exist,\n the i18n key message.metadata.x will be translated; if z exists, we use message.metadata.z instead. The additional properties for\n \"translate\" above can also be applied to z: leading slash or single quotes.\n\n - track: enable Matomo tracking for a link. track is a string value indicating the key of the data object for which\n tracking should be enabled.\n\n - itemstyles: a string of CSS properties that applies to key-value items of a rendered object\n\n - transform: a function that maps the data to be rendered. Applies after the data has been processed in the value-method of\n DatsetDetailsProperty.vue\n\n - preTransform: same as transform, only applied to the raw data value before processing in the value-method\n\n */\n\nexport const dcatSchema = (t) => ({\n releaseDate: {type: 'date', translate: 'created'},\n modificationDate: {type: 'date', translate: 'updated'},\n landingPages: {type: 'links', translate: 'landingPage'},\n sources: {type: 'links', translate:',sources'},\n languages: {type: 'links', translate: 'language,languages'},\n publisher: {type: 'object', fields: 'name,email,homepage'},\n contactPoints: {type: 'objects', translate:\"/message.tooltip.contactPoints,contactPoints\", fields: \"name::/message.metadata.name,organisation_name::/message.datasetDetails.contactPoints.organizationName,email,telephone,address,url:link\"},\n catalogRecord: {type: 'object', translate:\"/message.tooltip.catalogRecord,catalogRecord\", fields: \"issued:date:addedToDataEuropaEU,modified:date:updatedOnDataEuropaEU,homepage\"},\n spatial: {type: 'objects', fields: \"coordinates,type\"},\n spatialResource: {type: 'links', translate:\",spatialResource\", fields: \"resource:link\"},\n conformsTo: {type: 'objects', fields: \"title::label,label,resource:link_blank\", track:\"resource\"},\n provenances: {type: 'objects', translate: 'provenance,provenances', fields: \"label,resource:link\"},\n // relatedResources: {type: 'links', translate: 'relatedResource,relatedResources'},\n identifiers: {type: 'links', translate: 'identifier,identifiers'},\n otherIdentifiers: {type: 'links', translate: 'otherIdentifier,otherIdentifiers', fields:\"identifier:link,resource:link:identifier,scheme:link\"},\n resource: {type: 'uri', translate: \",'uriRef:'\"},\n frequency: {type: 'object', fields:\"title,resource:link\"},\n accessRights: {type: 'object', translate:\"/message.tooltip.datasetDetails.distributions.rights,accessRights\", fields:\"label::\"},\n accrualPeriodicity: {type: 'object', translate:\"frequency,accrualPeriodicity\", fields:\"label::\"},\n creator: {type: 'objects', fields:\"type,name,resource:link,email,homepage:link\"},\n hasVersion: {type: 'links'},\n isVersionOf: {type: 'links', translate:\"versionOf,isVersionOf\"},\n temporal: {type: 'objects', translate:\"/message.tooltip.datasetDetails.distributions.temporalResolution,temporal\", fields: \"gte:date:,lte:date:' -'\", itemstyles:\"float:left\"},\n versionInfo: {type: 'string'},\n versionNotes: {type: 'translation'},\n attributes: {type: 'links', translate:\",attributes\"},\n dimensions: {type: 'links', translate:\",dimensions\"},\n numSeries: {type: 'number'},\n hasQualityAnnotations: {type: 'links', translate: \",qualityAnnotations\"},\n statUnitMeasures: {type: 'links', translate: \"unitsOfMeasurement\"},\n isReferencedBy: {type: 'links'},\n qualifiedAttributions: {type: 'links', translate: \"qualifiedAttribution\"},\n wasGeneratedBy: {type: 'links'},\n qualifiedRelations: {type: 'objects', translate: \"qualifiedRelation\", fields: \"relation:link,had_role:link:role\"},\n sample: {type: 'links'},\n spatialResolutionInMeters: {\n type: 'number', translate: \"spatialResolutionInMeters,spatialResolutionInMeters.label\",\n transform: value => t('message.metadata.spatialResolutionInMeters.value', {number: value})\n },\n type: {type: 'object', fields: \"label,resource:link_blank\", preTransform: (value) => ({\n ...value,\n name: value?.name ?? value?.label\n })},\n temporalResolution: {type: 'string'}\n});\n\nexport const dcatDeSchema = () => ({\n politicalGeocodingLevelURI: {type: 'objects', fields:\"label,resource:link\"},\n politicalGeocodingURI: {type: 'objects', fields:\"label,resource:link\"},\n availability: {type: 'object', translate:\"availabilityDE,availability\", fields:\"label,resource:link\"},\n contributorID: {type: 'objects', fields:\"label,resource:link\"},\n geocodingDescriptionDe: {type: 'translation'},\n legalBasis: {type: 'translation'},\n qualityProcessURI: {type: 'uri'},\n typeDe: {type: 'string', translate:\"type,type\"},\n references: {type: 'uri'},\n contributor: {type: 'objects', fields:\"name,type,homepage,email,resource\"},\n originator: {type: 'objects', fields:\"name,type,homepage,email,resource\"},\n maintainer: {type: 'objects', fields:\"name,type,homepage,email,resource\"}\n});\n\n/* Schema for dataservice-specific properties */\nexport const dcatDataserviceSchema = () => ({\n catalog: {type: 'translation', fields: 'title'},\n publisher: {type: 'object', fields: 'name,email,homepage:link'},\n contact_point: {type: 'objects', fields: 'email'},\n access_right: {type: 'object', fields: 'resource'},\n endpoint_url: {type: 'links', translate:\",endpoint_url\"},\n format: {type: 'object', fields: 'label,resource:link_blank'}\n});\n\nexport const dcatDatasetseriesSchema = () => ({\n publisher: {type: 'object', fields: 'type,name,resource:link'},\n issued: {type: 'date', translate: 'created'},\n modified: {type: 'date', translate: 'updated'},\n temporal: {type: 'objects', fields: 'gte:date,lte:date'},\n spatial_resource: {type: 'links', fields: 'resource:link'},\n contact_point: {type: 'objects', fields: 'name,email,telephone,address'},\n spatial: {type: 'objects', fields: 'coordinates,type'},\n accrual_periodicity: {type: 'object', fields: 'label:label,resource:link'},\n applicable_legislation: {type: 'links', translate: 'legalBasis,applicableLegislation'},\n});\n"],"names":["dcatFields","dcatDeFields","dcatSchema","value","dcatDeSchema","dcatDataserviceSchema","dcatDatasetseriesSchema"],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -99,6 +99,8 @@ import { default as DatasetDetailsLinkedMetricsButton } from './datasetDetails/D
|
|
|
99
99
|
import { default as DatasetDetailsProperties } from './datasetDetails/properties/DatasetDetailsProperties';
|
|
100
100
|
import { default as DataserviceDetailsProperties } from './datasetDetails/properties/DataserviceDetailsProperties';
|
|
101
101
|
import { default as DataserviceDetailsProperty } from './datasetDetails/properties/DataserviceDetailsProperty';
|
|
102
|
+
import { default as DatasetseriesDetailsProperties } from './datasetDetails/properties/DatasetseriesDetailsProperties';
|
|
103
|
+
import { default as DatasetseriesDetailsProperty } from './datasetDetails/properties/DatasetseriesDetailsProperty';
|
|
102
104
|
import { default as DatasetDetailsQuality } from './datasetDetails/DatasetDetailsQuality';
|
|
103
105
|
import { default as DatasetDetailsShareButton } from './datasetDetails/DatasetDetailsShareButton';
|
|
104
106
|
import { default as DatasetDetailsSimilarDatasets } from './datasetDetails/DatasetDetailsSimilarDatasets';
|
|
@@ -148,7 +150,7 @@ import { default as ResourceDetailsLinkedDataButton } from './widgets/ResourceDe
|
|
|
148
150
|
import { default as Tooltip } from './widgets/Tooltip';
|
|
149
151
|
import { configSchema } from './configurations/config-schema';
|
|
150
152
|
|
|
151
|
-
export { Search, inputDefinitions, configSchema, vueKeycloak, bulkDownloadCorsProxyService, corsProxyService, uploadService, runtimeConfigurationService, datasetService, catalogService, gazetteerService, getResponseData, store, decode, truncate, getImg, getCountryFlagImg, getTranslationFor, getFacetTranslation, fileTypes, dateFilters, usePiwikSuspendFilter, useRouteMetaBreadcrumbs, configureModules, Auth, CataloguesFacets, CatalogPage, Catalogues, DatasetCitationModal, DatasetCitationTable, AutocompleteInput, ConditionalInput, DataFetchingComponent, Dropup, FileUpload, InfoSlot, LanguageSelector, Navigation, UniqueIdentifierInput, CatalogueOverview, DatasetOverview, DistributionOverview, PropertyEntry, DistOverview, DraftsPage, InputPage, LinkedDataViewer, OverviewPage, UserCataloguesPage, CatalogueMQA, UserProfilePage, DataProviderInterface, DpiMenu, DistributionActions, DistributionDownload, DistributionDownloadAs, DistributionDropdownDownload, DistributionOptionsDropdown, DistributionPreview, LinkedDataButtonsDropdown, DistributionVisualizeButton, DistributionDescription, DistributionDetails, DistributionExpand, DistributionExpandedContent, DistributionVisibleContent, Distribution, DistributionAdded, DistributionDownloadAsModal, DistributionFormat, Distributions, DistributionsHeader, DownloadAllDistributions, FadingDistributionOverlay, DatasetDetailsCategoriesKey, DatasetDetailsDataServices, DatasetDetailsFeatureHeader, DatasetDetailsFeatures, DatasetDetailsIsUsedBy, DatasetDetailsKeywords, DatasetDetailsMap, DatasetDetailsPages, DatasetDetailsRelations, DatasetDetailsSubject, DatasetDetailsVisualisations, DatasetDetailsHeader, DatasetDetailsHeaderCatalogue, DatasetDetailsHeaderTitle, DatasetDetailsNavigation, DatasetDetailsNavigationLinks, DatasetDetailsNavigationPage, DatasetDetailsNavigationPages, DatasetDetailsHvdThemes, AppMarkdownContent, DatasetDetails, DatasetDetailsActivityStream, DatasetDetailsBanners, DatasetDetailsCategories, CSVLinter, DatasetDetailsDataset, DatasetDetailsDescription, DatasetDetailsFeedbackButton, DatasetDetailsLinkedMetricsButton, DatasetDetailsProperties, DataserviceDetailsProperties, DataserviceDetailsProperty, DatasetDetailsQuality, DatasetDetailsShareButton, DatasetDetailsSimilarDatasets, DatasetDetailsSkeleton, EmbedDataset, EmbedDatasetSnippet, DatasetDate, Datasets, DatasetList, DatasetsFilters, DatasetsFiltersTabs, DatasetsTopControls, CatalogDetailsFacet, DatasetsFacets, DatasetsFacetsItem, DatasetsMapFacet, SettingsFacet, ExpandableSelectFacet, Facet, FacetTitle, SelectedFacetsOverview, RadioFacet, MapBasic, MapBoundsReceiver, MapBoundsSender, AppConfirmationDialog, AppSnackbar, AppToast, SubNavigation, Imprint, NotFound, PrivacyPolicy, SparqlSearch, PvBadge, PvDataInfoBox, PvDataInfoBoxDescription, PvDataInfoBoxFooter, PvDataInfoBoxFormats, AppLink, Dropdown, Pagination, PropertyValue, PvBanner, PvButton, PvShowMore, ResourceAccessPopup, ResourceDetailsLinkedDataButton, Tooltip, };
|
|
153
|
+
export { Search, inputDefinitions, configSchema, vueKeycloak, bulkDownloadCorsProxyService, corsProxyService, uploadService, runtimeConfigurationService, datasetService, catalogService, gazetteerService, getResponseData, store, decode, truncate, getImg, getCountryFlagImg, getTranslationFor, getFacetTranslation, fileTypes, dateFilters, usePiwikSuspendFilter, useRouteMetaBreadcrumbs, configureModules, Auth, CataloguesFacets, CatalogPage, Catalogues, DatasetCitationModal, DatasetCitationTable, AutocompleteInput, ConditionalInput, DataFetchingComponent, Dropup, FileUpload, InfoSlot, LanguageSelector, Navigation, UniqueIdentifierInput, CatalogueOverview, DatasetOverview, DistributionOverview, PropertyEntry, DistOverview, DraftsPage, InputPage, LinkedDataViewer, OverviewPage, UserCataloguesPage, CatalogueMQA, UserProfilePage, DataProviderInterface, DpiMenu, DistributionActions, DistributionDownload, DistributionDownloadAs, DistributionDropdownDownload, DistributionOptionsDropdown, DistributionPreview, LinkedDataButtonsDropdown, DistributionVisualizeButton, DistributionDescription, DistributionDetails, DistributionExpand, DistributionExpandedContent, DistributionVisibleContent, Distribution, DistributionAdded, DistributionDownloadAsModal, DistributionFormat, Distributions, DistributionsHeader, DownloadAllDistributions, FadingDistributionOverlay, DatasetDetailsCategoriesKey, DatasetDetailsDataServices, DatasetDetailsFeatureHeader, DatasetDetailsFeatures, DatasetDetailsIsUsedBy, DatasetDetailsKeywords, DatasetDetailsMap, DatasetDetailsPages, DatasetDetailsRelations, DatasetDetailsSubject, DatasetDetailsVisualisations, DatasetDetailsHeader, DatasetDetailsHeaderCatalogue, DatasetDetailsHeaderTitle, DatasetDetailsNavigation, DatasetDetailsNavigationLinks, DatasetDetailsNavigationPage, DatasetDetailsNavigationPages, DatasetDetailsHvdThemes, AppMarkdownContent, DatasetDetails, DatasetDetailsActivityStream, DatasetDetailsBanners, DatasetDetailsCategories, CSVLinter, DatasetDetailsDataset, DatasetDetailsDescription, DatasetDetailsFeedbackButton, DatasetDetailsLinkedMetricsButton, DatasetDetailsProperties, DataserviceDetailsProperties, DataserviceDetailsProperty, DatasetseriesDetailsProperties, DatasetseriesDetailsProperty, DatasetDetailsQuality, DatasetDetailsShareButton, DatasetDetailsSimilarDatasets, DatasetDetailsSkeleton, EmbedDataset, EmbedDatasetSnippet, DatasetDate, Datasets, DatasetList, DatasetsFilters, DatasetsFiltersTabs, DatasetsTopControls, CatalogDetailsFacet, DatasetsFacets, DatasetsFacetsItem, DatasetsMapFacet, SettingsFacet, ExpandableSelectFacet, Facet, FacetTitle, SelectedFacetsOverview, RadioFacet, MapBasic, MapBoundsReceiver, MapBoundsSender, AppConfirmationDialog, AppSnackbar, AppToast, SubNavigation, Imprint, NotFound, PrivacyPolicy, SparqlSearch, PvBadge, PvDataInfoBox, PvDataInfoBoxDescription, PvDataInfoBoxFooter, PvDataInfoBoxFormats, AppLink, Dropdown, Pagination, PropertyValue, PvBanner, PvButton, PvShowMore, ResourceAccessPopup, ResourceDetailsLinkedDataButton, Tooltip, };
|
|
152
154
|
export * as helpers from './utils/helpers';
|
|
153
155
|
export { defineUserConfig, type Config, type ResolvedConfig } from './configurations/config-schema';
|
|
154
156
|
export { useRuntimeEnv } from './composables/useRuntimeEnv';
|
package/dist/index.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { default as d } from "./services/uploadService.mjs";
|
|
|
5
5
|
import { default as x } from "./services/runtimeConfigurationService.mjs";
|
|
6
6
|
import { default as n, getResponseData as c } from "./services/datasetService.mjs";
|
|
7
7
|
import { default as v } from "./services/catalogService.mjs";
|
|
8
|
-
import { default as
|
|
8
|
+
import { default as b } from "./services/gazetteerService.mjs";
|
|
9
9
|
import { default as F } from "./store/index.mjs";
|
|
10
10
|
import { decode as w } from "./utils/jwt.mjs";
|
|
11
11
|
import * as t from "./utils/helpers.mjs";
|
|
@@ -31,7 +31,7 @@ import { default as mt } from "./data-provider-interface/components/InfoSlot.vue
|
|
|
31
31
|
import { default as Dt } from "./data-provider-interface/components/LanguageSelector.vue.mjs";
|
|
32
32
|
import { default as ct } from "./data-provider-interface/components/Navigation.vue.mjs";
|
|
33
33
|
import { default as vt } from "./data-provider-interface/components/UniqueIdentifierInput.vue.mjs";
|
|
34
|
-
import { default as
|
|
34
|
+
import { default as bt } from "./form/inputDefinitions.mjs";
|
|
35
35
|
import { default as Ft } from "./data-provider-interface/views/OverviewPage/CatalogueOverview.vue.mjs";
|
|
36
36
|
import { default as wt } from "./data-provider-interface/views/OverviewPage/DatasetOverview.vue.mjs";
|
|
37
37
|
import { default as yt } from "./data-provider-interface/views/OverviewPage/DistributionOverview.vue.mjs";
|
|
@@ -58,7 +58,7 @@ import { default as me } from "./datasetDetails/distributions/distributionDetail
|
|
|
58
58
|
import { default as De } from "./datasetDetails/distributions/distributionDetails/DistributionExpand.vue.mjs";
|
|
59
59
|
import { default as ce } from "./datasetDetails/distributions/distributionDetails/DistributionExpandedContent.vue.mjs";
|
|
60
60
|
import { default as ve } from "./datasetDetails/distributions/distributionDetails/DistributionVisibleContent.vue.mjs";
|
|
61
|
-
import { default as
|
|
61
|
+
import { default as be } from "./datasetDetails/distributions/Distribution.vue.mjs";
|
|
62
62
|
import { default as Fe } from "./datasetDetails/distributions/DistributionAdded.vue.mjs";
|
|
63
63
|
import { default as we } from "./datasetDetails/distributions/DistributionDownloadAsModal.vue.mjs";
|
|
64
64
|
import { default as ye } from "./datasetDetails/distributions/DistributionFormat.vue.mjs";
|
|
@@ -85,7 +85,7 @@ import { default as ma } from "./datasetDetails/header/DatasetDetailsHeaderCatal
|
|
|
85
85
|
import { default as Da } from "./datasetDetails/header/DatasetDetailsHeaderTitle.vue.mjs";
|
|
86
86
|
import { default as ca } from "./datasetDetails/navigation/DatasetDetailsNavigation.vue.mjs";
|
|
87
87
|
import { default as va } from "./datasetDetails/navigation/DatasetDetailsNavigationLinks.vue.mjs";
|
|
88
|
-
import { default as
|
|
88
|
+
import { default as ba } from "./datasetDetails/navigation/DatasetDetailsNavigationPage.vue.mjs";
|
|
89
89
|
import { default as Fa } from "./datasetDetails/navigation/DatasetDetailsNavigationPages.vue.mjs";
|
|
90
90
|
import { default as wa } from "./datasetDetails/AppMarkdownContent.vue.mjs";
|
|
91
91
|
import { default as ya } from "./datasetDetails/DatasetDetails.vue.mjs";
|
|
@@ -100,68 +100,70 @@ import { default as qa } from "./datasetDetails/DatasetDetailsLinkedMetricsButto
|
|
|
100
100
|
import { default as Qa } from "./datasetDetails/properties/DatasetDetailsProperties.vue.mjs";
|
|
101
101
|
import { default as Ga } from "./datasetDetails/properties/DataserviceDetailsProperties.vue.mjs";
|
|
102
102
|
import { default as Wa } from "./datasetDetails/properties/DataserviceDetailsProperty.vue.mjs";
|
|
103
|
-
import { default as Ya } from "./datasetDetails/
|
|
104
|
-
import { default as _a } from "./datasetDetails/
|
|
105
|
-
import { default as to } from "./datasetDetails/
|
|
106
|
-
import { default as ao } from "./datasetDetails/
|
|
107
|
-
import { default as ro } from "./
|
|
108
|
-
import { default as fo } from "./
|
|
109
|
-
import { default as io } from "./datasets/
|
|
110
|
-
import { default as po } from "./datasets/
|
|
111
|
-
import { default as xo } from "./datasets/
|
|
112
|
-
import { default as no } from "./datasets/
|
|
113
|
-
import { default as go } from "./
|
|
114
|
-
import { default as
|
|
115
|
-
import { default as So } from "./
|
|
116
|
-
import { default as Co } from "./
|
|
117
|
-
import { default as Bo } from "./datasets/datasetsFacets/
|
|
118
|
-
import { default as Io } from "./datasets/datasetsFacets/
|
|
119
|
-
import { default as Mo } from "./
|
|
120
|
-
import { default as To } from "./
|
|
121
|
-
import { default as Lo } from "./facets/
|
|
122
|
-
import { default as Ro } from "./facets/
|
|
123
|
-
import { default as No } from "./facets/
|
|
124
|
-
import { default as Uo } from "./
|
|
125
|
-
import { default as Ko } from "./
|
|
126
|
-
import { default as zo } from "./map/
|
|
127
|
-
import { default as jo } from "./
|
|
128
|
-
import { default as Jo } from "./
|
|
129
|
-
import { default as Xo } from "./modal/
|
|
130
|
-
import { default as Zo } from "./
|
|
131
|
-
import { default as $o } from "./
|
|
132
|
-
import { default as er } from "./
|
|
133
|
-
import { default as or } from "./pages/
|
|
134
|
-
import { default as sr } from "./pages/
|
|
135
|
-
import { default as lr } from "./
|
|
136
|
-
import { default as ur } from "./
|
|
137
|
-
import { default as dr } from "./
|
|
138
|
-
import { default as xr } from "./PvDataInfoBox/
|
|
139
|
-
import { default as nr } from "./PvDataInfoBox/
|
|
140
|
-
import { default as gr } from "./
|
|
141
|
-
import { default as
|
|
142
|
-
import { default as Sr } from "./widgets/
|
|
143
|
-
import { default as Cr } from "./widgets/
|
|
144
|
-
import { default as Br } from "./widgets/
|
|
145
|
-
import { default as Ir } from "./widgets/
|
|
146
|
-
import { default as Mr } from "./widgets/
|
|
147
|
-
import { default as Tr } from "./widgets/
|
|
148
|
-
import { default as Lr } from "./widgets/
|
|
149
|
-
import { default as Rr } from "./widgets/
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
103
|
+
import { default as Ya } from "./datasetDetails/properties/DatasetseriesDetailsProperties.vue.mjs";
|
|
104
|
+
import { default as _a } from "./datasetDetails/properties/DatasetseriesDetailsProperty.vue.mjs";
|
|
105
|
+
import { default as to } from "./datasetDetails/DatasetDetailsQuality.vue.mjs";
|
|
106
|
+
import { default as ao } from "./datasetDetails/DatasetDetailsShareButton.vue.mjs";
|
|
107
|
+
import { default as ro } from "./datasetDetails/DatasetDetailsSimilarDatasets.vue.mjs";
|
|
108
|
+
import { default as fo } from "./datasetDetails/DatasetDetailsSkeleton.vue.mjs";
|
|
109
|
+
import { default as io } from "./datasets/DatasetDate.vue.mjs";
|
|
110
|
+
import { default as po } from "./datasets/Datasets.vue.mjs";
|
|
111
|
+
import { default as xo } from "./datasets/DatasetList.vue.mjs";
|
|
112
|
+
import { default as no } from "./datasets/DatasetsFilters.vue.mjs";
|
|
113
|
+
import { default as go } from "./datasets/DatasetsFiltersTabs.vue.mjs";
|
|
114
|
+
import { default as Po } from "./datasets/DatasetsTopControls.vue.mjs";
|
|
115
|
+
import { default as So } from "./search/Search.vue.mjs";
|
|
116
|
+
import { default as Co } from "./facets/CatalogDetailsFacet.vue.mjs";
|
|
117
|
+
import { default as Bo } from "./datasets/datasetsFacets/DatasetsFacets.vue.mjs";
|
|
118
|
+
import { default as Io } from "./datasets/datasetsFacets/DatasetsFacetsItem.vue.mjs";
|
|
119
|
+
import { default as Mo } from "./datasets/datasetsFacets/DatasetsMapFacet.vue.mjs";
|
|
120
|
+
import { default as To } from "./datasets/datasetsFacets/SettingsFacet.vue.mjs";
|
|
121
|
+
import { default as Lo } from "./facets/ExpandableSelectFacet.vue.mjs";
|
|
122
|
+
import { default as Ro } from "./facets/Facet.vue.mjs";
|
|
123
|
+
import { default as No } from "./facets/FacetTitle.vue.mjs";
|
|
124
|
+
import { default as Uo } from "./facets/SelectedFacetsOverview.vue.mjs";
|
|
125
|
+
import { default as Ko } from "./facets/RadioFacet.vue.mjs";
|
|
126
|
+
import { default as zo } from "./map/MapBasic.vue.mjs";
|
|
127
|
+
import { default as jo } from "./map/MapBoundsReceiver.vue.mjs";
|
|
128
|
+
import { default as Jo } from "./map/MapBoundsSender.vue.mjs";
|
|
129
|
+
import { default as Xo } from "./modal/AppConfirmationDialog.vue.mjs";
|
|
130
|
+
import { default as Zo } from "./modal/AppSnackbar.vue.mjs";
|
|
131
|
+
import { default as $o } from "./modal/AppToast.vue.mjs";
|
|
132
|
+
import { default as er } from "./navigation/SubNavigation.vue.mjs";
|
|
133
|
+
import { default as or } from "./pages/Imprint.vue.mjs";
|
|
134
|
+
import { default as sr } from "./pages/NotFound.vue.mjs";
|
|
135
|
+
import { default as lr } from "./pages/PrivacyPolicy.vue.mjs";
|
|
136
|
+
import { default as ur } from "./pages/SparqlSearch.vue.mjs";
|
|
137
|
+
import { default as dr } from "./PvBadge/PvBadge.vue.mjs";
|
|
138
|
+
import { default as xr } from "./PvDataInfoBox/PvDataInfoBox.vue.mjs";
|
|
139
|
+
import { default as nr } from "./PvDataInfoBox/PvDataInfoBoxDescription.vue.mjs";
|
|
140
|
+
import { default as gr } from "./PvDataInfoBox/PvDataInfoBoxFooter.vue.mjs";
|
|
141
|
+
import { default as Pr } from "./PvDataInfoBox/PvDataInfoBoxFormats.vue.mjs";
|
|
142
|
+
import { default as Sr } from "./widgets/AppLink.vue.mjs";
|
|
143
|
+
import { default as Cr } from "./widgets/Dropdown.vue.mjs";
|
|
144
|
+
import { default as Br } from "./widgets/Pagination.vue.mjs";
|
|
145
|
+
import { default as Ir } from "./widgets/PropertyValue.vue.mjs";
|
|
146
|
+
import { default as Mr } from "./widgets/PvBanner.vue.mjs";
|
|
147
|
+
import { default as Tr } from "./widgets/PvButton.vue.mjs";
|
|
148
|
+
import { default as Lr } from "./widgets/PvShowMore.vue.mjs";
|
|
149
|
+
import { default as Rr } from "./widgets/ResourceAccessPopup.vue.mjs";
|
|
150
|
+
import { default as Nr } from "./widgets/ResourceDetailsLinkedDataButton.vue.mjs";
|
|
151
|
+
import { default as Ur } from "./widgets/Tooltip.vue.mjs";
|
|
152
|
+
import { defineUserConfig as Kr } from "./configSchema.mjs";
|
|
153
|
+
import { useRuntimeEnv as zr } from "./composables/useRuntimeEnv.mjs";
|
|
152
154
|
import * as e from "./composables/head/index.mjs";
|
|
153
155
|
import * as a from "./dataProviderInterface.mjs";
|
|
154
|
-
import { configSchema as
|
|
156
|
+
import { configSchema as jr } from "./configurations/config-schema/configSchema.mjs";
|
|
155
157
|
export {
|
|
156
|
-
|
|
157
|
-
|
|
158
|
+
Xo as AppConfirmationDialog,
|
|
159
|
+
Sr as AppLink,
|
|
158
160
|
wa as AppMarkdownContent,
|
|
159
|
-
|
|
160
|
-
|
|
161
|
+
Zo as AppSnackbar,
|
|
162
|
+
$o as AppToast,
|
|
161
163
|
q as Auth,
|
|
162
164
|
tt as AutocompleteInput,
|
|
163
165
|
Oa as CSVLinter,
|
|
164
|
-
|
|
166
|
+
Co as CatalogDetailsFacet,
|
|
165
167
|
G as CatalogPage,
|
|
166
168
|
ft as CatalogueMQA,
|
|
167
169
|
Ft as CatalogueOverview,
|
|
@@ -174,7 +176,7 @@ export {
|
|
|
174
176
|
Wa as DataserviceDetailsProperty,
|
|
175
177
|
Y as DatasetCitationModal,
|
|
176
178
|
_ as DatasetCitationTable,
|
|
177
|
-
|
|
179
|
+
io as DatasetDate,
|
|
178
180
|
ya as DatasetDetails,
|
|
179
181
|
Aa as DatasetDetailsActivityStream,
|
|
180
182
|
ka as DatasetDetailsBanners,
|
|
@@ -196,28 +198,30 @@ export {
|
|
|
196
198
|
We as DatasetDetailsMap,
|
|
197
199
|
ca as DatasetDetailsNavigation,
|
|
198
200
|
va as DatasetDetailsNavigationLinks,
|
|
199
|
-
|
|
201
|
+
ba as DatasetDetailsNavigationPage,
|
|
200
202
|
Fa as DatasetDetailsNavigationPages,
|
|
201
203
|
Ye as DatasetDetailsPages,
|
|
202
204
|
Qa as DatasetDetailsProperties,
|
|
203
|
-
|
|
205
|
+
to as DatasetDetailsQuality,
|
|
204
206
|
_e as DatasetDetailsRelations,
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
207
|
+
ao as DatasetDetailsShareButton,
|
|
208
|
+
ro as DatasetDetailsSimilarDatasets,
|
|
209
|
+
fo as DatasetDetailsSkeleton,
|
|
208
210
|
ta as DatasetDetailsSubject,
|
|
209
211
|
aa as DatasetDetailsVisualisations,
|
|
210
|
-
|
|
212
|
+
xo as DatasetList,
|
|
211
213
|
wt as DatasetOverview,
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
214
|
+
po as Datasets,
|
|
215
|
+
Bo as DatasetsFacets,
|
|
216
|
+
Io as DatasetsFacetsItem,
|
|
217
|
+
no as DatasetsFilters,
|
|
218
|
+
go as DatasetsFiltersTabs,
|
|
219
|
+
Mo as DatasetsMapFacet,
|
|
220
|
+
Po as DatasetsTopControls,
|
|
221
|
+
Ya as DatasetseriesDetailsProperties,
|
|
222
|
+
_a as DatasetseriesDetailsProperty,
|
|
219
223
|
kt as DistOverview,
|
|
220
|
-
|
|
224
|
+
be as Distribution,
|
|
221
225
|
Wt as DistributionActions,
|
|
222
226
|
Fe as DistributionAdded,
|
|
223
227
|
pe as DistributionDescription,
|
|
@@ -239,63 +243,63 @@ export {
|
|
|
239
243
|
he as DownloadAllDistributions,
|
|
240
244
|
Gt as DpiMenu,
|
|
241
245
|
ht as DraftsPage,
|
|
242
|
-
|
|
246
|
+
Cr as Dropdown,
|
|
243
247
|
it as Dropup,
|
|
244
248
|
fa as EmbedDataset,
|
|
245
249
|
ia as EmbedDatasetSnippet,
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
250
|
+
Lo as ExpandableSelectFacet,
|
|
251
|
+
Ro as Facet,
|
|
252
|
+
No as FacetTitle,
|
|
249
253
|
Oe as FadingDistributionOverlay,
|
|
250
254
|
pt as FileUpload,
|
|
251
|
-
|
|
255
|
+
or as Imprint,
|
|
252
256
|
mt as InfoSlot,
|
|
253
257
|
Ot as InputPage,
|
|
254
258
|
Dt as LanguageSelector,
|
|
255
259
|
fe as LinkedDataButtonsDropdown,
|
|
256
260
|
Et as LinkedDataViewer,
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
261
|
+
zo as MapBasic,
|
|
262
|
+
jo as MapBoundsReceiver,
|
|
263
|
+
Jo as MapBoundsSender,
|
|
260
264
|
ct as Navigation,
|
|
261
|
-
|
|
265
|
+
sr as NotFound,
|
|
262
266
|
Ht as OverviewPage,
|
|
263
|
-
|
|
264
|
-
|
|
267
|
+
Br as Pagination,
|
|
268
|
+
lr as PrivacyPolicy,
|
|
265
269
|
At as PropertyEntry,
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
270
|
+
Ir as PropertyValue,
|
|
271
|
+
dr as PvBadge,
|
|
272
|
+
Mr as PvBanner,
|
|
273
|
+
Tr as PvButton,
|
|
274
|
+
xr as PvDataInfoBox,
|
|
275
|
+
nr as PvDataInfoBoxDescription,
|
|
276
|
+
gr as PvDataInfoBoxFooter,
|
|
277
|
+
Pr as PvDataInfoBoxFormats,
|
|
278
|
+
Lr as PvShowMore,
|
|
279
|
+
Ko as RadioFacet,
|
|
280
|
+
Rr as ResourceAccessPopup,
|
|
281
|
+
Nr as ResourceDetailsLinkedDataButton,
|
|
282
|
+
So as Search,
|
|
283
|
+
Uo as SelectedFacetsOverview,
|
|
284
|
+
To as SettingsFacet,
|
|
285
|
+
ur as SparqlSearch,
|
|
286
|
+
er as SubNavigation,
|
|
287
|
+
Ur as Tooltip,
|
|
284
288
|
vt as UniqueIdentifierInput,
|
|
285
289
|
Vt as UserCataloguesPage,
|
|
286
290
|
qt as UserProfilePage,
|
|
287
291
|
l as bulkDownloadCorsProxyService,
|
|
288
292
|
v as catalogService,
|
|
289
|
-
|
|
293
|
+
jr as configSchema,
|
|
290
294
|
V as configureModules,
|
|
291
295
|
u as corsProxyService,
|
|
292
296
|
n as datasetService,
|
|
293
297
|
O as dateFilters,
|
|
294
298
|
w as decode,
|
|
295
|
-
|
|
299
|
+
Kr as defineUserConfig,
|
|
296
300
|
a as dpi,
|
|
297
301
|
h as fileTypes,
|
|
298
|
-
|
|
302
|
+
b as gazetteerService,
|
|
299
303
|
y as getCountryFlagImg,
|
|
300
304
|
I as getFacetTranslation,
|
|
301
305
|
A as getImg,
|
|
@@ -303,14 +307,14 @@ export {
|
|
|
303
307
|
M as getTranslationFor,
|
|
304
308
|
e as head,
|
|
305
309
|
t as helpers,
|
|
306
|
-
|
|
310
|
+
bt as inputDefinitions,
|
|
307
311
|
x as runtimeConfigurationService,
|
|
308
312
|
F as store,
|
|
309
313
|
k as truncate,
|
|
310
314
|
d as uploadService,
|
|
311
315
|
E as usePiwikSuspendFilter,
|
|
312
316
|
H as useRouteMetaBreadcrumbs,
|
|
313
|
-
|
|
317
|
+
zr as useRuntimeEnv,
|
|
314
318
|
s as vueKeycloak
|
|
315
319
|
};
|
|
316
320
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|