@piveau/piveau-hub-ui-modules 4.5.13 → 4.6.1
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/DPIMenu.vue.mjs +5 -5
- package/dist/data-provider-interface/DataProviderInterface.vue.d.ts +9 -4
- package/dist/data-provider-interface/components/Navigation.vue.mjs +57 -56
- package/dist/data-provider-interface/components/Navigation.vue.mjs.map +1 -1
- package/dist/data-provider-interface/components/SpatialInput.vue.mjs +23 -22
- package/dist/data-provider-interface/components/SpatialInput.vue.mjs.map +1 -1
- package/dist/data-provider-interface/components/UniqueIdentifierInput.vue.mjs +13 -13
- package/dist/data-provider-interface/components/UniqueIdentifierInput.vue.mjs.map +1 -1
- package/dist/data-provider-interface/composables/index.d.ts +1 -0
- package/dist/data-provider-interface/composables/useDpiEditMode.mjs +15 -16
- package/dist/data-provider-interface/composables/useDpiEditMode.mjs.map +1 -1
- package/dist/data-provider-interface/composables/useFormSchema.d.ts +13 -0
- package/dist/data-provider-interface/composables/useFormSchema.mjs +59 -0
- package/dist/data-provider-interface/composables/useFormSchema.mjs.map +1 -0
- package/dist/data-provider-interface/index.d.ts +33 -0
- package/dist/data-provider-interface/utils/translation-helper.mjs +23 -23
- package/dist/data-provider-interface/utils/translation-helper.mjs.map +1 -1
- package/dist/data-provider-interface/views/DistributionOverview.vue.d.ts +1 -1
- package/dist/data-provider-interface/views/InputPage.vue.d.ts +9 -4
- package/dist/data-provider-interface/views/InputPage.vue.mjs +110 -110
- package/dist/data-provider-interface/views/InputPage.vue.mjs.map +1 -1
- package/dist/dataProviderInterface.d.ts +1 -0
- package/dist/dataProviderInterface.mjs +71 -0
- package/dist/dataProviderInterface.mjs.map +1 -0
- package/dist/datasetDetails/distributions/distributionDetails/DistributionContent.vue.mjs +48 -48
- package/dist/datasetDetails/distributions/distributionDetails/DistributionContent.vue.mjs.map +1 -1
- package/dist/external/@vueuse/core/index +31 -31
- package/dist/external/@vueuse/shared/index +66 -63
- package/dist/external/@vueuse/shared/index.map +1 -1
- package/dist/form/FormKitGroup.vue.mjs.map +1 -1
- package/dist/index.mjs +54 -54
- 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/package.json +17 -1
- package/dist/data-provider-interface/index.mjs +0 -15
- package/dist/data-provider-interface/index.mjs.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormKitGroup.vue.mjs","sources":["../../lib/form/FormKitGroup.vue"],"sourcesContent":["<template>\n <div class=\"formkitProperty\" :class=\"[context.attrs.identifier]\" v-for=\"key in items\" :key=\"key\">\n <h4>{{ context.label }}</h4>\n \n <div class=\"horizontal-wrapper\">\n \n <div class=\"formkitCmpWrap w-100\">\n \n <div class=\"formkitWrapRepeatable\">\n <slot>\n <FormKit outer-class=\"w-100\" placeholder=\"Please provide a number\"/>\n </slot>\n </div>\n \n </div>\n \n </div>\n <!-- <div class=\"interactionWrapper\">\n <div class=\"formkit-remover ball\" @click=\"removeItem\" :data-key=\"key\">\n <span>x</span>\n </div>\n <div @click=\"addItem\" class=\"ball formkit-adder\"><span>+</span></div>\n </div> -->\n </div>\n \n </template>\n \n <script>\n import { token } from \"@formkit/utils\";\n \n export default {\n props: {\n name: String,\n children: Array,\n context: Object,\n \n },\n data() {\n return {\n values: [],\n items: [this.newId()],\n camel2title: (str) =>\n str\n .replace(/([A-Z])/g, (match) => ` ${match}`)\n .replace(/^./, (match) => match.toUpperCase())\n .trim(),\n }\n },\n methods: {\n newId() {\n return `${this.name}_${token()}`;\n },\n addItem() {\n this.items.push(this.newId());\n },\n removeItem(e) {\n const key = e.target.getAttribute('data-key');\n const index = this.items.indexOf(key);\n if (index >= 0) {\n this.items.splice(index, 1);\n }\n }\n }\n }\n </script>\n \n \n \n <style lang=\"scss\">\n .horizontal-wrapper {\n display: flex;\n flex-direction: row;\n width: 100%;\n }\n \n .interactionWrapper {\n width: 10%;\n display: flex;\n align-items: center;\n position: relative;\n \n }\n \n .ball {\n position: absolute;\n display: flex;\n text-align: center;\n flex-direction: column;\n justify-content: center;\n height: 1.5rem;\n width: 1.5rem;\n font-size: 1em;\n font-weight: bold;\n cursor: pointer;\n border-radius: 50%;\n margin: 5px;\n transition: all ease-in-out 200ms;\n }\n \n .formkit-remover {\n left: 30px;\n top: 22px;\n background-color: red;\n color: white;\n \n \n span {\n pointer-events: none;\n position: relative;\n bottom: 0.1rem;\n }\n \n &:hover {\n background-color: darkred;\n \n }\n }\n \n .formkit-adder {\n top: 22px;\n background-color: darkseagreen;\n color: white;\n \n span {\n position: relative;\n bottom: 0.13rem;\n }\n \n &:hover {\n background-color: darkgreen;\n \n }\n }\n \n button {\n align-self: flex-start;\n }\n </style>\n "],"names":["_sfc_main","str","match","token","e","key","index","_hoisted_1","_hoisted_2","_hoisted_3","_openBlock","_createElementBlock","_Fragment","_renderList","$data","_normalizeClass","$props","_createElementVNode","_toDisplayString","_cache","_createTextVNode","_renderSlot","_ctx","_createVNode","_component_FormKit"],"mappings":";;;;AA8BE,MAAKA,IAAU;AAAA,EACb,OAAO;AAAA,IACL,MAAM;AAAA,IACN,UAAU;AAAA,IACV,SAAS;AAAA,EAEV;AAAA,EACD,OAAO;AACL,WAAO;AAAA,MACL,QAAQ,CAAE;AAAA,MACV,OAAO,CAAC,KAAK,OAAO;AAAA,MACpB,aAAa,CAACC,MACZA,EACG,QAAQ,YAAY,CAACC,MAAU,IAAIA,CAAK,EAAE,EAC1C,QAAQ,MAAM,CAACA,MAAUA,EAAM,YAAW,CAAE,EAC5C,KAAM;AAAA,IACb;AAAA,EACD;AAAA,EACD,SAAS;AAAA,IACP,QAAQ;AACN,aAAO,GAAG,KAAK,IAAI,IAAIC,EAAO,CAAA;AAAA,IAC/B;AAAA,IACD,UAAU;AACR,WAAK,MAAM,KAAK,KAAK,MAAO,CAAA;AAAA,IAC7B;AAAA,IACD,WAAWC,GAAG;AACZ,YAAMC,IAAMD,EAAE,OAAO,aAAa,UAAU,GACtCE,IAAQ,KAAK,MAAM,QAAQD,CAAG;AACpC,MAAIC,KAAS,KACX,KAAK,MAAM,OAAOA,GAAO,CAAC;AAAA,IAE9B;AAAA,EACF;AACF,GA3DSC,IAAA,EAAA,OAAM,qBAAoB,GAExBC,IAAA,EAAA,OAAM,uBAAsB,GAE1BC,IAAA,EAAA,OAAM,wBAAuB;;;AAPxC,SAAAC,EAAA,EAAA,GAAAC,EAsBMC,GAvBV,MAAAC,EACmFC,EAAK,OADxF,CAC4ET,YAAxEM,EAsBM,OAAA;AAAA,IAtBD,OADTI,GACe,mBAAiB,CAAUC,UAAQ,MAAM,UAAU,CAAA,CAAA;AAAA,IAAyB,KAAKX;AAAA;IAC1FY,EAA4B,MAAA,MAAAC,EAArBF,EAAO,QAAC,KAAK,GAAA,CAAA;AAAA,IAF1BG,EAAA,CAAA,MAAAA,EAAA,CAAA,IAAAC,EAAA;AAAA,IAIMH,EAYM,OAZNV,GAYM;AAAA,MAVJU,EAQM,OARNT,GAQM;AAAA,QANJS,EAIM,OAJNR,GAIM;AAAA,UAHJY,EAEOC,yBAFP,MAEO;AAAA,YADLC,EAAoEC,GAAA;AAAA,cAA3D,eAAY;AAAA,cAAQ,aAAY;AAAA;;;;;;;;"}
|
|
1
|
+
{"version":3,"file":"FormKitGroup.vue.mjs","sources":["../../lib/form/FormKitGroup.vue"],"sourcesContent":["<template>\n <div class=\"formkitProperty\" :class=\"[context.attrs.identifier]\" v-for=\"key in items\" :key=\"key\">\n <h4>{{ context.label }}</h4>\n \n <div class=\"horizontal-wrapper\">\n \n <div class=\"formkitCmpWrap w-100\">\n \n <div class=\"formkitWrapRepeatable\">\n <slot>\n <FormKit outer-class=\"w-100\" placeholder=\"Please provide a number\"/>\n </slot>\n </div>\n \n </div>\n \n </div>\n <!-- <div class=\"interactionWrapper\">\n <div class=\"formkit-remover ball\" @click=\"removeItem\" :data-key=\"key\">\n <span>x</span>\n </div>\n <div @click=\"addItem\" class=\"ball formkit-adder\"><span>+</span></div>\n </div> -->\n </div>\n \n </template>\n \n <script>\n import { token } from \"@formkit/utils\";\n \n export default {\n props: {\n name: String,\n children: Array,\n context: Object,\n \n },\n data() {\n return {\n values: [],\n items: [this.newId()],\n camel2title: (str) =>\n str\n .replace(/([A-Z])/g, (match) => ` ${match}`)\n .replace(/^./, (match) => match.toUpperCase())\n .trim(),\n }\n },\n methods: {\n newId() {\n return `${this.name}_${token()}`;\n },\n addItem() {\n this.items.push(this.newId());\n },\n removeItem(e) {\n const key = e.target.getAttribute('data-key');\n const index = this.items.indexOf(key);\n if (index >= 0) {\n this.items.splice(index, 1);\n }\n }\n }\n }\n </script>\n \n \n \n <style lang=\"scss\">\n .horizontal-wrapper {\n display: flex;\n flex-direction: row;\n width: 100%;\n }\n \n .interactionWrapper {\n width: 10%;\n display: flex;\n align-items: center;\n position: relative;\n \n }\n \n .ball {\n position: absolute;\n display: flex;\n text-align: center;\n flex-direction: column;\n justify-content: center;\n height: 1.5rem;\n width: 1.5rem;\n font-size: 1em;\n font-weight: bold;\n cursor: pointer;\n border-radius: 50%;\n margin: 5px;\n transition: all ease-in-out 200ms;\n }\n \n .formkit-remover {\n left: 30px;\n top: 22px;\n background-color: red;\n color: white;\n \n \n span {\n pointer-events: none;\n position: relative;\n bottom: 0.1rem;\n }\n \n &:hover {\n background-color: darkred;\n \n }\n }\n \n .formkit-adder {\n top: 22px;\n background-color: darkseagreen;\n color: white;\n \n span {\n position: relative;\n bottom: 0.13rem;\n }\n \n &:hover {\n background-color: darkgreen;\n \n }\n }\n \n .dpi button {\n align-self: flex-start;\n }\n </style>\n "],"names":["_sfc_main","str","match","token","e","key","index","_hoisted_1","_hoisted_2","_hoisted_3","_openBlock","_createElementBlock","_Fragment","_renderList","$data","_normalizeClass","$props","_createElementVNode","_toDisplayString","_cache","_createTextVNode","_renderSlot","_ctx","_createVNode","_component_FormKit"],"mappings":";;;;AA8BE,MAAKA,IAAU;AAAA,EACb,OAAO;AAAA,IACL,MAAM;AAAA,IACN,UAAU;AAAA,IACV,SAAS;AAAA,EAEV;AAAA,EACD,OAAO;AACL,WAAO;AAAA,MACL,QAAQ,CAAE;AAAA,MACV,OAAO,CAAC,KAAK,OAAO;AAAA,MACpB,aAAa,CAACC,MACZA,EACG,QAAQ,YAAY,CAACC,MAAU,IAAIA,CAAK,EAAE,EAC1C,QAAQ,MAAM,CAACA,MAAUA,EAAM,YAAW,CAAE,EAC5C,KAAM;AAAA,IACb;AAAA,EACD;AAAA,EACD,SAAS;AAAA,IACP,QAAQ;AACN,aAAO,GAAG,KAAK,IAAI,IAAIC,EAAO,CAAA;AAAA,IAC/B;AAAA,IACD,UAAU;AACR,WAAK,MAAM,KAAK,KAAK,MAAO,CAAA;AAAA,IAC7B;AAAA,IACD,WAAWC,GAAG;AACZ,YAAMC,IAAMD,EAAE,OAAO,aAAa,UAAU,GACtCE,IAAQ,KAAK,MAAM,QAAQD,CAAG;AACpC,MAAIC,KAAS,KACX,KAAK,MAAM,OAAOA,GAAO,CAAC;AAAA,IAE9B;AAAA,EACF;AACF,GA3DSC,IAAA,EAAA,OAAM,qBAAoB,GAExBC,IAAA,EAAA,OAAM,uBAAsB,GAE1BC,IAAA,EAAA,OAAM,wBAAuB;;;AAPxC,SAAAC,EAAA,EAAA,GAAAC,EAsBMC,GAvBV,MAAAC,EACmFC,EAAK,OADxF,CAC4ET,YAAxEM,EAsBM,OAAA;AAAA,IAtBD,OADTI,GACe,mBAAiB,CAAUC,UAAQ,MAAM,UAAU,CAAA,CAAA;AAAA,IAAyB,KAAKX;AAAA;IAC1FY,EAA4B,MAAA,MAAAC,EAArBF,EAAO,QAAC,KAAK,GAAA,CAAA;AAAA,IAF1BG,EAAA,CAAA,MAAAA,EAAA,CAAA,IAAAC,EAAA;AAAA,IAIMH,EAYM,OAZNV,GAYM;AAAA,MAVJU,EAQM,OARNT,GAQM;AAAA,QANJS,EAIM,OAJNR,GAIM;AAAA,UAHJY,EAEOC,yBAFP,MAEO;AAAA,YADLC,EAAoEC,GAAA;AAAA,cAA3D,eAAY;AAAA,cAAQ,aAAY;AAAA;;;;;;;;"}
|
package/dist/index.mjs
CHANGED
|
@@ -9,7 +9,7 @@ import { default as P } 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";
|
|
12
|
-
import { getCountryFlagImg as
|
|
12
|
+
import { getCountryFlagImg as I, getFacetTranslation as y, getImg as A, getTranslationFor as M, truncate as k } from "./utils/helpers.mjs";
|
|
13
13
|
import { default as h } from "./utils/fileTypes.mjs";
|
|
14
14
|
import { default as O } from "./filters/dateFilters.mjs";
|
|
15
15
|
import { default as E } from "./mixins/usePiwikSuspendFilter.mjs";
|
|
@@ -17,10 +17,10 @@ import { default as H } from "./mixins/useRouteMetaBreadcrumbs.mjs";
|
|
|
17
17
|
import { configureModules as V } from "./configurations/configureModules.mjs";
|
|
18
18
|
import { default as q } from "./auth/Auth.vue.mjs";
|
|
19
19
|
import { default as j } from "./catalogues/cataloguesFacets/CataloguesFacets.vue.mjs";
|
|
20
|
-
import { default as
|
|
21
|
-
import { default as
|
|
22
|
-
import { default as
|
|
23
|
-
import { default as
|
|
20
|
+
import { default as G } from "./catalogues/CatalogPage.vue.mjs";
|
|
21
|
+
import { default as W } from "./catalogues/Catalogues.vue.mjs";
|
|
22
|
+
import { default as Y } from "./citation/DatasetCitationModal.vue.mjs";
|
|
23
|
+
import { default as _ } from "./citation/DatasetCitationTable.vue.mjs";
|
|
24
24
|
import { default as tt } from "./data-provider-interface/components/AutocompleteInput.vue.mjs";
|
|
25
25
|
import { default as at } from "./data-provider-interface/components/ConditionalInput.vue.mjs";
|
|
26
26
|
import { default as rt } from "./data-provider-interface/components/DataFetchingComponent.vue.mjs";
|
|
@@ -34,7 +34,7 @@ import { default as vt } from "./data-provider-interface/components/UniqueIdenti
|
|
|
34
34
|
import { default as Pt } 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
|
-
import { default as
|
|
37
|
+
import { default as It } from "./data-provider-interface/views/OverviewPage/DistributionOverview.vue.mjs";
|
|
38
38
|
import { default as At } from "./data-provider-interface/views/OverviewPage/PropertyEntry.vue.mjs";
|
|
39
39
|
import { default as kt } from "./data-provider-interface/views/DistributionOverview.vue.mjs";
|
|
40
40
|
import { default as ht } from "./data-provider-interface/views/DraftsPage.vue.mjs";
|
|
@@ -44,10 +44,10 @@ import { default as Ht } from "./data-provider-interface/views/OverviewPage.vue.
|
|
|
44
44
|
import { default as Vt } from "./data-provider-interface/views/UserCataloguesPage.vue.mjs";
|
|
45
45
|
import { default as qt } from "./data-provider-interface/views/UserProfilePage.vue.mjs";
|
|
46
46
|
import { default as jt } from "./data-provider-interface/DataProviderInterface.vue.mjs";
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
47
|
+
import { default as Gt } from "./data-provider-interface/DPIMenu.vue.mjs";
|
|
48
|
+
import { default as Wt } from "./datasetDetails/distributions/distributionActions/DistributionActions.vue.mjs";
|
|
49
|
+
import { default as Yt } from "./datasetDetails/distributions/distributionActions/DistributionDownload.vue.mjs";
|
|
50
|
+
import { default as _t } from "./datasetDetails/distributions/distributionActions/DistributionDownloadAs.vue.mjs";
|
|
51
51
|
import { default as te } from "./datasetDetails/distributions/distributionActions/DistributionDropdownDownload.vue.mjs";
|
|
52
52
|
import { default as ae } from "./datasetDetails/distributions/distributionActions/DistributionOptionsDropdown.vue.mjs";
|
|
53
53
|
import { default as re } from "./datasetDetails/distributions/distributionActions/DistributionPreview.vue.mjs";
|
|
@@ -61,7 +61,7 @@ import { default as ve } from "./datasetDetails/distributions/Distribution.vue.m
|
|
|
61
61
|
import { default as Pe } from "./datasetDetails/distributions/DistributionAdded.vue.mjs";
|
|
62
62
|
import { default as Fe } from "./datasetDetails/distributions/DistributionDownloadAsModal.vue.mjs";
|
|
63
63
|
import { default as we } from "./datasetDetails/distributions/DistributionFormat.vue.mjs";
|
|
64
|
-
import { default as
|
|
64
|
+
import { default as Ie } from "./datasetDetails/distributions/Distributions.vue.mjs";
|
|
65
65
|
import { default as Ae } from "./datasetDetails/distributions/DistributionsHeader.vue.mjs";
|
|
66
66
|
import { default as ke } from "./datasetDetails/distributions/DownloadAllDistributions.vue.mjs";
|
|
67
67
|
import { default as he } from "./datasetDetails/distributions/FadingDistributionOverlay.vue.mjs";
|
|
@@ -71,10 +71,10 @@ import { default as He } from "./datasetDetails/features/DatasetDetailsFeatureHe
|
|
|
71
71
|
import { default as Ve } from "./datasetDetails/features/DatasetDetailsFeatures.vue.mjs";
|
|
72
72
|
import { default as qe } from "./datasetDetails/features/DatasetDetailsIsUsedBy.vue.mjs";
|
|
73
73
|
import { default as je } from "./datasetDetails/features/DatasetDetailsKeywords.vue.mjs";
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
76
|
-
import { default as
|
|
77
|
-
import { default as
|
|
74
|
+
import { default as Ge } from "./datasetDetails/features/DatasetDetailsMap.vue.mjs";
|
|
75
|
+
import { default as We } from "./datasetDetails/features/DatasetDetailsPages.vue.mjs";
|
|
76
|
+
import { default as Ye } from "./datasetDetails/features/DatasetDetailsRelations.vue.mjs";
|
|
77
|
+
import { default as _e } from "./datasetDetails/features/DatasetDetailsSubject.vue.mjs";
|
|
78
78
|
import { default as ta } from "./datasetDetails/features/DatasetDetailsVisualisations.vue.mjs";
|
|
79
79
|
import { default as aa } from "./datasetDetails/features/DatasetDetailsHvdThemes.vue.mjs";
|
|
80
80
|
import { default as ra } from "./embed/EmbedDataset.vue.mjs";
|
|
@@ -88,7 +88,7 @@ import { default as va } from "./datasetDetails/navigation/DatasetDetailsNavigat
|
|
|
88
88
|
import { default as Pa } from "./datasetDetails/navigation/DatasetDetailsNavigationPages.vue.mjs";
|
|
89
89
|
import { default as Fa } from "./datasetDetails/AppMarkdownContent.vue.mjs";
|
|
90
90
|
import { default as wa } from "./datasetDetails/DatasetDetails.vue.mjs";
|
|
91
|
-
import { default as
|
|
91
|
+
import { default as Ia } from "./datasetDetails/DatasetDetailsActivityStream.vue.mjs";
|
|
92
92
|
import { default as Aa } from "./datasetDetails/DatasetDetailsBanners.vue.mjs";
|
|
93
93
|
import { default as ka } from "./datasetDetails/DatasetDetailsCategories.vue.mjs";
|
|
94
94
|
import { default as ha } from "./datasetDetails/DatasetDetailsCSVLinter.vue.mjs";
|
|
@@ -98,10 +98,10 @@ import { default as Ha } from "./datasetDetails/DatasetDetailsFeedbackButton.vue
|
|
|
98
98
|
import { default as Va } from "./datasetDetails/DatasetDetailsLinkedMetricsButton.vue.mjs";
|
|
99
99
|
import { default as qa } from "./datasetDetails/properties/DatasetDetailsProperties.vue.mjs";
|
|
100
100
|
import { default as ja } from "./datasetDetails/DatasetDetailsQuality.vue.mjs";
|
|
101
|
-
import { default as
|
|
102
|
-
import { default as
|
|
103
|
-
import { default as
|
|
104
|
-
import { default as
|
|
101
|
+
import { default as Ga } from "./datasetDetails/DatasetDetailsShareButton.vue.mjs";
|
|
102
|
+
import { default as Wa } from "./datasetDetails/DatasetDetailsSimilarDatasets.vue.mjs";
|
|
103
|
+
import { default as Ya } from "./datasetDetails/DatasetDetailsSkeleton.vue.mjs";
|
|
104
|
+
import { default as _a } from "./datasets/DatasetDate.vue.mjs";
|
|
105
105
|
import { default as to } from "./datasets/Datasets.vue.mjs";
|
|
106
106
|
import { default as ao } from "./datasets/DatasetList.vue.mjs";
|
|
107
107
|
import { default as ro } from "./datasets/DatasetsFilters.vue.mjs";
|
|
@@ -115,7 +115,7 @@ import { default as bo } from "./datasets/datasetsFacets/DatasetsMapFacet.vue.mj
|
|
|
115
115
|
import { default as So } from "./datasets/datasetsFacets/SettingsFacet.vue.mjs";
|
|
116
116
|
import { default as Co } from "./facets/ExpandableSelectFacet.vue.mjs";
|
|
117
117
|
import { default as Bo } from "./facets/Facet.vue.mjs";
|
|
118
|
-
import { default as
|
|
118
|
+
import { default as yo } from "./facets/FacetTitle.vue.mjs";
|
|
119
119
|
import { default as Mo } from "./facets/SelectedFacetsOverview.vue.mjs";
|
|
120
120
|
import { default as To } from "./facets/RadioFacet.vue.mjs";
|
|
121
121
|
import { default as Lo } from "./map/MapBasic.vue.mjs";
|
|
@@ -125,10 +125,10 @@ import { default as Uo } from "./modal/AppConfirmationDialog.vue.mjs";
|
|
|
125
125
|
import { default as Ko } from "./modal/AppSnackbar.vue.mjs";
|
|
126
126
|
import { default as Qo } from "./modal/AppToast.vue.mjs";
|
|
127
127
|
import { default as zo } from "./navigation/SubNavigation.vue.mjs";
|
|
128
|
-
import { default as
|
|
129
|
-
import { default as
|
|
130
|
-
import { default as
|
|
131
|
-
import { default as
|
|
128
|
+
import { default as Jo } from "./pages/Imprint.vue.mjs";
|
|
129
|
+
import { default as Xo } from "./pages/NotFound.vue.mjs";
|
|
130
|
+
import { default as Zo } from "./pages/PrivacyPolicy.vue.mjs";
|
|
131
|
+
import { default as $o } from "./pages/SparqlSearch.vue.mjs";
|
|
132
132
|
import { default as er } from "./PvBadge/PvBadge.vue.mjs";
|
|
133
133
|
import { default as or } from "./PvDataInfoBox/PvDataInfoBox.vue.mjs";
|
|
134
134
|
import { default as sr } from "./PvDataInfoBox/PvDataInfoBoxDescription.vue.mjs";
|
|
@@ -142,12 +142,12 @@ import { default as br } from "./widgets/PvBanner.vue.mjs";
|
|
|
142
142
|
import { default as Sr } from "./widgets/PvButton.vue.mjs";
|
|
143
143
|
import { default as Cr } from "./widgets/PvShowMore.vue.mjs";
|
|
144
144
|
import { default as Br } from "./widgets/ResourceAccessPopup.vue.mjs";
|
|
145
|
-
import { default as
|
|
145
|
+
import { default as yr } from "./widgets/ResourceDetailsLinkedDataButton.vue.mjs";
|
|
146
146
|
import { default as Mr } from "./widgets/Tooltip.vue.mjs";
|
|
147
147
|
import { defineUserConfig as Tr } from "./configSchema.mjs";
|
|
148
148
|
import { useRuntimeEnv as Lr } from "./composables/useRuntimeEnv.mjs";
|
|
149
149
|
import * as e from "./composables/head/index.mjs";
|
|
150
|
-
import * as a from "./
|
|
150
|
+
import * as a from "./dataProviderInterface.mjs";
|
|
151
151
|
import { configSchema as Rr } from "./configurations/config-schema/configSchema.mjs";
|
|
152
152
|
export {
|
|
153
153
|
Uo as AppConfirmationDialog,
|
|
@@ -159,19 +159,19 @@ export {
|
|
|
159
159
|
tt as AutocompleteInput,
|
|
160
160
|
ha as CSVLinter,
|
|
161
161
|
xo as CatalogDetailsFacet,
|
|
162
|
-
|
|
162
|
+
G as CatalogPage,
|
|
163
163
|
ft as CatalogueMQA,
|
|
164
164
|
Ft as CatalogueOverview,
|
|
165
|
-
|
|
165
|
+
W as Catalogues,
|
|
166
166
|
j as CataloguesFacets,
|
|
167
167
|
at as ConditionalInput,
|
|
168
168
|
rt as DataFetchingComponent,
|
|
169
169
|
jt as DataProviderInterface,
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
170
|
+
Y as DatasetCitationModal,
|
|
171
|
+
_ as DatasetCitationTable,
|
|
172
|
+
_a as DatasetDate,
|
|
173
173
|
wa as DatasetDetails,
|
|
174
|
-
|
|
174
|
+
Ia as DatasetDetailsActivityStream,
|
|
175
175
|
Aa as DatasetDetailsBanners,
|
|
176
176
|
ka as DatasetDetailsCategories,
|
|
177
177
|
Oe as DatasetDetailsCategoriesKey,
|
|
@@ -188,19 +188,19 @@ export {
|
|
|
188
188
|
qe as DatasetDetailsIsUsedBy,
|
|
189
189
|
je as DatasetDetailsKeywords,
|
|
190
190
|
Va as DatasetDetailsLinkedMetricsButton,
|
|
191
|
-
|
|
191
|
+
Ge as DatasetDetailsMap,
|
|
192
192
|
Da as DatasetDetailsNavigation,
|
|
193
193
|
ca as DatasetDetailsNavigationLinks,
|
|
194
194
|
va as DatasetDetailsNavigationPage,
|
|
195
195
|
Pa as DatasetDetailsNavigationPages,
|
|
196
|
-
|
|
196
|
+
We as DatasetDetailsPages,
|
|
197
197
|
qa as DatasetDetailsProperties,
|
|
198
198
|
ja as DatasetDetailsQuality,
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
199
|
+
Ye as DatasetDetailsRelations,
|
|
200
|
+
Ga as DatasetDetailsShareButton,
|
|
201
|
+
Wa as DatasetDetailsSimilarDatasets,
|
|
202
|
+
Ya as DatasetDetailsSkeleton,
|
|
203
|
+
_e as DatasetDetailsSubject,
|
|
204
204
|
ta as DatasetDetailsVisualisations,
|
|
205
205
|
ao as DatasetList,
|
|
206
206
|
wt as DatasetOverview,
|
|
@@ -213,25 +213,25 @@ export {
|
|
|
213
213
|
uo as DatasetsTopControls,
|
|
214
214
|
kt as DistOverview,
|
|
215
215
|
ve as Distribution,
|
|
216
|
-
|
|
216
|
+
Wt as DistributionActions,
|
|
217
217
|
Pe as DistributionAdded,
|
|
218
218
|
ue as DistributionDescription,
|
|
219
219
|
pe as DistributionDetails,
|
|
220
|
-
|
|
221
|
-
|
|
220
|
+
Yt as DistributionDownload,
|
|
221
|
+
_t as DistributionDownloadAs,
|
|
222
222
|
Fe as DistributionDownloadAsModal,
|
|
223
223
|
te as DistributionDropdownDownload,
|
|
224
224
|
me as DistributionExpand,
|
|
225
225
|
De as DistributionExpandedContent,
|
|
226
226
|
we as DistributionFormat,
|
|
227
227
|
ae as DistributionOptionsDropdown,
|
|
228
|
-
|
|
228
|
+
It as DistributionOverview,
|
|
229
229
|
re as DistributionPreview,
|
|
230
230
|
ce as DistributionVisibleContent,
|
|
231
|
-
|
|
231
|
+
Ie as Distributions,
|
|
232
232
|
Ae as DistributionsHeader,
|
|
233
233
|
ke as DownloadAllDistributions,
|
|
234
|
-
|
|
234
|
+
Gt as DpiMenu,
|
|
235
235
|
ht as DraftsPage,
|
|
236
236
|
xr as Dropdown,
|
|
237
237
|
ut as Dropup,
|
|
@@ -239,10 +239,10 @@ export {
|
|
|
239
239
|
fa as EmbedDatasetSnippet,
|
|
240
240
|
Co as ExpandableSelectFacet,
|
|
241
241
|
Bo as Facet,
|
|
242
|
-
|
|
242
|
+
yo as FacetTitle,
|
|
243
243
|
he as FadingDistributionOverlay,
|
|
244
244
|
pt as FileUpload,
|
|
245
|
-
|
|
245
|
+
Jo as Imprint,
|
|
246
246
|
mt as InfoSlot,
|
|
247
247
|
Ot as InputPage,
|
|
248
248
|
Dt as LanguageSelector,
|
|
@@ -252,10 +252,10 @@ export {
|
|
|
252
252
|
Ro as MapBoundsReceiver,
|
|
253
253
|
No as MapBoundsSender,
|
|
254
254
|
ct as Navigation,
|
|
255
|
-
|
|
255
|
+
Xo as NotFound,
|
|
256
256
|
Ht as OverviewPage,
|
|
257
257
|
nr as Pagination,
|
|
258
|
-
|
|
258
|
+
Zo as PrivacyPolicy,
|
|
259
259
|
At as PropertyEntry,
|
|
260
260
|
gr as PropertyValue,
|
|
261
261
|
er as PvBadge,
|
|
@@ -268,11 +268,11 @@ export {
|
|
|
268
268
|
Cr as PvShowMore,
|
|
269
269
|
To as RadioFacet,
|
|
270
270
|
Br as ResourceAccessPopup,
|
|
271
|
-
|
|
271
|
+
yr as ResourceDetailsLinkedDataButton,
|
|
272
272
|
po as Search,
|
|
273
273
|
Mo as SelectedFacetsOverview,
|
|
274
274
|
So as SettingsFacet,
|
|
275
|
-
|
|
275
|
+
$o as SparqlSearch,
|
|
276
276
|
zo as SubNavigation,
|
|
277
277
|
Mr as Tooltip,
|
|
278
278
|
vt as UniqueIdentifierInput,
|
|
@@ -290,8 +290,8 @@ export {
|
|
|
290
290
|
a as dpi,
|
|
291
291
|
h as fileTypes,
|
|
292
292
|
P as gazetteerService,
|
|
293
|
-
|
|
294
|
-
|
|
293
|
+
I as getCountryFlagImg,
|
|
294
|
+
y as getFacetTranslation,
|
|
295
295
|
A as getImg,
|
|
296
296
|
c as getResponseData,
|
|
297
297
|
M as getTranslationFor,
|