@piveau/piveau-hub-ui-modules 4.5.7 → 4.5.8
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/composables/useDataInfoBox.mjs +21 -20
- package/dist/composables/useDataInfoBox.mjs.map +1 -1
- package/dist/configurations/configureModules.d.ts +4 -0
- package/dist/configurations/configureModules.mjs +6 -4
- package/dist/configurations/configureModules.mjs.map +1 -1
- package/dist/data-provider-interface/DPIMenu.vue.d.ts +2 -2
- package/dist/datasetDetails/DatasetDetailsDescription.vue.d.ts +1 -1
- package/dist/datasetDetails/distributions/DistributionFormat.vue.d.ts +2 -2
- package/dist/datasetDetails/distributions/DownloadAllDistributions.vue.d.ts +2 -2
- package/dist/datasetDetails/distributions/distributionActions/DistributionDownload.vue.d.ts +2 -2
- package/dist/datasetDetails/header/DatasetDetailsHeaderTitle.vue.d.ts +1 -1
- package/dist/datasetDetails/navigation/DatasetDetailsNavigation.vue.d.ts +1 -1
- package/dist/datasetDetails/navigation/DatasetDetailsNavigationLinks.vue.d.ts +1 -1
- package/dist/datasets/Datasets.vue.mjs +80 -80
- package/dist/datasets/Datasets.vue.mjs.map +1 -1
- package/dist/facets_2.0/Facets.vue.d.ts +19 -0
- package/dist/facets_2.0/Facets.vue.mjs +31 -0
- package/dist/facets_2.0/Facets.vue.mjs.map +1 -0
- package/dist/facets_2.0/Facets.vue2.mjs +5 -0
- package/dist/facets_2.0/Facets.vue2.mjs.map +1 -0
- package/dist/facets_2.0/facets/DataServicesFacet.vue.d.ts +75 -0
- package/dist/facets_2.0/facets/DataServicesFacet.vue.mjs +49 -0
- package/dist/facets_2.0/facets/DataServicesFacet.vue.mjs.map +1 -0
- package/dist/facets_2.0/facets/ExpandableSelectFacet.vue.d.ts +93 -0
- package/dist/facets_2.0/facets/ExpandableSelectFacet.vue.mjs +143 -0
- package/dist/facets_2.0/facets/ExpandableSelectFacet.vue.mjs.map +1 -0
- package/dist/facets_2.0/facets/ExpandableSelectFacet.vue2.mjs +5 -0
- package/dist/facets_2.0/facets/ExpandableSelectFacet.vue2.mjs.map +1 -0
- package/dist/facets_2.0/facets/FacetTitle.vue.d.ts +18 -0
- package/dist/facets_2.0/facets/FacetTitle.vue.mjs +38 -0
- package/dist/facets_2.0/facets/FacetTitle.vue.mjs.map +1 -0
- package/dist/facets_2.0/facets/FacetTitle.vue2.mjs +5 -0
- package/dist/facets_2.0/facets/FacetTitle.vue2.mjs.map +1 -0
- package/dist/facets_2.0/facets/RadioFacet.vue.d.ts +58 -0
- package/dist/facets_2.0/facets/RadioFacet.vue.mjs +92 -0
- package/dist/facets_2.0/facets/RadioFacet.vue.mjs.map +1 -0
- package/dist/facets_2.0/facets/SelectFacetsItem.vue.d.ts +34 -0
- package/dist/facets_2.0/facets/SelectFacetsItem.vue.mjs +45 -0
- package/dist/facets_2.0/facets/SelectFacetsItem.vue.mjs.map +1 -0
- package/dist/facets_2.0/getFacet.d.ts +3 -0
- package/dist/facets_2.0/getFacet.mjs +20 -0
- package/dist/facets_2.0/getFacet.mjs.map +1 -0
- package/dist/facets_2.0/toggleQueryParam.d.ts +9 -0
- package/dist/facets_2.0/toggleQueryParam.mjs +11 -0
- package/dist/facets_2.0/toggleQueryParam.mjs.map +1 -0
- package/dist/facets_2.0/types.d.ts +9 -0
- package/dist/facets_2.0/useFacets.d.ts +5 -0
- package/dist/facets_2.0/useFacets.mjs +14 -0
- package/dist/facets_2.0/useFacets.mjs.map +1 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.mjs +276 -273
- package/dist/index.mjs.map +1 -1
- package/dist/piveau-hub-ui-modules.css +1 -1
- package/dist/search/Search.vue.d.ts +2 -0
- package/dist/search/Search.vue.mjs +20 -0
- package/dist/search/Search.vue.mjs.map +1 -0
- package/dist/services/datasetService.d.ts +5 -0
- package/dist/services/datasetService.mjs +2 -1
- package/dist/services/datasetService.mjs.map +1 -1
- package/dist/store/modules/cataloguesStore.d.ts +6 -0
- package/dist/store/modules/cataloguesStore.mjs +10 -4
- package/dist/store/modules/cataloguesStore.mjs.map +1 -1
- package/dist/store/modules/datasetsStore.d.ts +12 -0
- package/dist/store/modules/datasetsStore.mjs +26 -14
- package/dist/store/modules/datasetsStore.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { openBlock as o, createElementBlock as i, createElementVNode as l, toDisplayString as n, createTextVNode as a, createCommentVNode as c } from "vue";
|
|
2
|
+
import "./FacetTitle.vue2.mjs";
|
|
3
|
+
import r from "../../_virtual/_plugin-vue_export-helper.mjs";
|
|
4
|
+
const d = {
|
|
5
|
+
name: "FacetTitle",
|
|
6
|
+
props: {
|
|
7
|
+
title: String,
|
|
8
|
+
tooltip: String,
|
|
9
|
+
titleId: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: null
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}, s = { class: "d-none d-md-block list-group-item facet-title" }, m = ["id"], p = ["title"];
|
|
15
|
+
function _(f, e, t, g, u, h) {
|
|
16
|
+
return o(), i("div", s, [
|
|
17
|
+
l("h2", {
|
|
18
|
+
class: "h5 mb-0 float-left",
|
|
19
|
+
id: t.titleId
|
|
20
|
+
}, n(t.title), 9, m),
|
|
21
|
+
e[0] || (e[0] = a()),
|
|
22
|
+
t.tooltip ? (o(), i("i", {
|
|
23
|
+
key: 0,
|
|
24
|
+
class: "tooltip-icon material-icons small-icon align-right text-dark pl-1",
|
|
25
|
+
ref: "tooltip-icon",
|
|
26
|
+
"data-toggle": "tooltip",
|
|
27
|
+
"data-placement": "right",
|
|
28
|
+
title: t.tooltip
|
|
29
|
+
}, `
|
|
30
|
+
help_outline
|
|
31
|
+
`, 8, p)) : c("", !0)
|
|
32
|
+
]);
|
|
33
|
+
}
|
|
34
|
+
const y = /* @__PURE__ */ r(d, [["render", _], ["__scopeId", "data-v-03a41f42"]]);
|
|
35
|
+
export {
|
|
36
|
+
y as default
|
|
37
|
+
};
|
|
38
|
+
//# sourceMappingURL=FacetTitle.vue.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FacetTitle.vue.mjs","sources":["../../../lib/facets_2.0/facets/FacetTitle.vue"],"sourcesContent":["<template>\n <div class=\"d-none d-md-block list-group-item facet-title\">\n <h2 class=\"h5 mb-0 float-left\" :id=\"titleId\">{{ title }}</h2>\n <i v-if=\"tooltip\"\n class=\"tooltip-icon material-icons small-icon align-right text-dark pl-1\"\n ref=\"tooltip-icon\"\n data-toggle=\"tooltip\"\n data-placement=\"right\"\n :title=\"tooltip\">\n help_outline\n </i>\n </div>\n</template>\n\n<script>\n\n\nexport default {\n name: \"FacetTitle\",\n props: {\n title: String,\n tooltip: String,\n titleId: {\n type: String,\n default: null,\n },\n }\n}\n</script>\n\n<style scoped lang=\"scss\">\n.facet-title {\n background-color: rgba(0, 29, 133,0.05);\n}\n\n.tooltip-icon {\n font-size: 15px;\n}\n</style>\n"],"names":["_sfc_main","_hoisted_1","_hoisted_2","_hoisted_3","_openBlock","_createElementBlock","_createElementVNode","$props","_toDisplayString","_cache","_createTextVNode","_createCommentVNode"],"mappings":";;;AAiBA,MAAKA,IAAU;AAAA,EACb,MAAM;AAAA,EACN,OAAO;AAAA,IACL,OAAO;AAAA,IACP,SAAS;AAAA,IACT,SAAS;AAAA,MACP,MAAM;AAAA,MACN,SAAS;AAAA,IACV;AAAA,EACH;AACF,GA1BOC,IAAA,EAAA,OAAM,gDAA+C,GAD5DC,IAAA,CAAA,IAAA,GAAAC,IAAA,CAAA,OAAA;;AACE,SAAAC,EAAA,GAAAC,EAUM,OAVNJ,GAUM;AAAA,IATJK,EAA6D,MAAA;AAAA,MAAzD,OAAM;AAAA,MAAsB,IAAIC,EAAO;AAAA,IAAK,GAAAC,EAAAD,EAAA,KAAK,GAFzD,GAAAL,CAAA;AAAA,IAAAO,EAAA,CAAA,MAAAA,EAAA,CAAA,IAAAC,EAAA;AAAA,IAGaH,EAAO,gBAAhBF,EAOI,KAAA;AAAA,MAVR,KAAA;AAAA,MAIO,OAAM;AAAA,MACN,KAAI;AAAA,MACJ,eAAY;AAAA,MACZ,kBAAe;AAAA,MACd,OAAOE,EAAO;AAAA,IAAE,GAAA;AAAA;AAAA,OARxB,GAAAJ,CAAA,KAAAQ,EAAA,IAAA,EAAA;AAAA;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FacetTitle.vue2.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
config: ObjectConstructor;
|
|
3
|
+
property: StringConstructor;
|
|
4
|
+
optionIds: {
|
|
5
|
+
type: ArrayConstructor;
|
|
6
|
+
default: string[];
|
|
7
|
+
};
|
|
8
|
+
optionLabels: {
|
|
9
|
+
type: ArrayConstructor;
|
|
10
|
+
};
|
|
11
|
+
initialOption: StringConstructor;
|
|
12
|
+
change: FunctionConstructor;
|
|
13
|
+
}>, {}, {
|
|
14
|
+
id: string;
|
|
15
|
+
option: string | undefined;
|
|
16
|
+
header: any;
|
|
17
|
+
toolTipTitle: any;
|
|
18
|
+
yes: any;
|
|
19
|
+
no: any;
|
|
20
|
+
}, {
|
|
21
|
+
myId(): string;
|
|
22
|
+
myTitleId(): string;
|
|
23
|
+
}, {
|
|
24
|
+
onChange(id: any): void;
|
|
25
|
+
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
26
|
+
config: ObjectConstructor;
|
|
27
|
+
property: StringConstructor;
|
|
28
|
+
optionIds: {
|
|
29
|
+
type: ArrayConstructor;
|
|
30
|
+
default: string[];
|
|
31
|
+
};
|
|
32
|
+
optionLabels: {
|
|
33
|
+
type: ArrayConstructor;
|
|
34
|
+
};
|
|
35
|
+
initialOption: StringConstructor;
|
|
36
|
+
change: FunctionConstructor;
|
|
37
|
+
}>> & Readonly<{}>, {
|
|
38
|
+
optionIds: unknown[];
|
|
39
|
+
}, {}, {
|
|
40
|
+
FacetTitle: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
41
|
+
title: StringConstructor;
|
|
42
|
+
tooltip: StringConstructor;
|
|
43
|
+
titleId: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
default: null;
|
|
46
|
+
};
|
|
47
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
48
|
+
title: StringConstructor;
|
|
49
|
+
tooltip: StringConstructor;
|
|
50
|
+
titleId: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
default: null;
|
|
53
|
+
};
|
|
54
|
+
}>> & Readonly<{}>, {
|
|
55
|
+
titleId: string;
|
|
56
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
57
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
58
|
+
export default _default;
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import h from "./FacetTitle.vue.mjs";
|
|
2
|
+
import { resolveComponent as u, openBlock as a, createElementBlock as r, createVNode as g, createTextVNode as c, createElementVNode as n, toDisplayString as d, Fragment as f, renderList as _ } from "vue";
|
|
3
|
+
import y from "../../_virtual/_plugin-vue_export-helper.mjs";
|
|
4
|
+
const b = {
|
|
5
|
+
name: "RadioFacet",
|
|
6
|
+
components: { FacetTitle: h },
|
|
7
|
+
props: {
|
|
8
|
+
config: Object,
|
|
9
|
+
property: String,
|
|
10
|
+
optionIds: {
|
|
11
|
+
type: Array,
|
|
12
|
+
default: ["true", "false"]
|
|
13
|
+
},
|
|
14
|
+
optionLabels: {
|
|
15
|
+
type: Array
|
|
16
|
+
},
|
|
17
|
+
initialOption: String,
|
|
18
|
+
change: Function
|
|
19
|
+
},
|
|
20
|
+
data() {
|
|
21
|
+
return {
|
|
22
|
+
id: "",
|
|
23
|
+
option: this.initialOption,
|
|
24
|
+
header: this.i18n.global.t(`message.datasetFacets.facets.${this.config.id.toLowerCase()}`),
|
|
25
|
+
toolTipTitle: this.i18n.global.t(`message.helpIcon.${this.config.id.toLowerCase()}`),
|
|
26
|
+
yes: this.i18n.global.t("message.metadata.yes"),
|
|
27
|
+
no: this.i18n.global.t("message.metadata.no")
|
|
28
|
+
};
|
|
29
|
+
},
|
|
30
|
+
computed: {
|
|
31
|
+
myId() {
|
|
32
|
+
return `facet-${this.id}`;
|
|
33
|
+
},
|
|
34
|
+
myTitleId() {
|
|
35
|
+
return `facet-title-${this.id}`;
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
methods: {
|
|
39
|
+
onChange(t) {
|
|
40
|
+
this.option = t, console.log("onChange", t), this.change(t);
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
watch: {
|
|
44
|
+
initialOption(t) {
|
|
45
|
+
this.option = t;
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
mounted() {
|
|
49
|
+
this.id = this._uid;
|
|
50
|
+
}
|
|
51
|
+
}, T = ["aria-labelledby"], C = { class: "list-group-item list-group-item-action d-flex justify-content-between align-items-center" }, v = { class: "ml-2 d-flex flex-wrap" }, x = { class: "custom-control custom-radio" }, I = ["id", "value", "name", "onClick", "checked"], k = ["for"];
|
|
52
|
+
function w(t, i, l, F, e, s) {
|
|
53
|
+
const p = u("facet-title");
|
|
54
|
+
return a(), r("div", {
|
|
55
|
+
class: "list-group w-100 radio-facet",
|
|
56
|
+
role: "group",
|
|
57
|
+
"aria-labelledby": s.myTitleId
|
|
58
|
+
}, [
|
|
59
|
+
g(p, {
|
|
60
|
+
title: e.header,
|
|
61
|
+
tooltip: e.toolTipTitle,
|
|
62
|
+
"title-id": s.myTitleId
|
|
63
|
+
}, null, 8, ["title", "tooltip", "title-id"]),
|
|
64
|
+
i[1] || (i[1] = c()),
|
|
65
|
+
n("div", C, [
|
|
66
|
+
c(d(l.property) + " ", 1),
|
|
67
|
+
n("span", v, [
|
|
68
|
+
(a(!0), r(f, null, _(l.optionIds, (o, m) => (a(), r("div", x, [
|
|
69
|
+
n("input", {
|
|
70
|
+
type: "radio",
|
|
71
|
+
id: `${e.header}_${o}`,
|
|
72
|
+
value: o,
|
|
73
|
+
name: e.header,
|
|
74
|
+
class: "custom-control-input",
|
|
75
|
+
onClick: (L) => s.onChange(o),
|
|
76
|
+
checked: e.option === o
|
|
77
|
+
}, null, 8, I),
|
|
78
|
+
i[0] || (i[0] = c()),
|
|
79
|
+
n("label", {
|
|
80
|
+
class: "custom-control-label",
|
|
81
|
+
for: `${e.header}_${o}`
|
|
82
|
+
}, d(l.optionLabels[m]), 9, k)
|
|
83
|
+
]))), 256))
|
|
84
|
+
])
|
|
85
|
+
])
|
|
86
|
+
], 8, T);
|
|
87
|
+
}
|
|
88
|
+
const V = /* @__PURE__ */ y(b, [["render", w]]);
|
|
89
|
+
export {
|
|
90
|
+
V as default
|
|
91
|
+
};
|
|
92
|
+
//# sourceMappingURL=RadioFacet.vue.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RadioFacet.vue.mjs","sources":["../../../lib/facets_2.0/facets/RadioFacet.vue"],"sourcesContent":["<template>\n <div class=\"list-group w-100 radio-facet\" role=\"group\" :aria-labelledby=\"myTitleId\">\n <facet-title\n :title=\"header\"\n :tooltip=\"toolTipTitle\"\n :title-id=\"myTitleId\"\n />\n <div class=\"list-group-item list-group-item-action d-flex justify-content-between align-items-center\">\n {{ property }}\n <span class=\"ml-2 d-flex flex-wrap\">\n <div class=\"custom-control custom-radio\" v-for=\"(id, index) in optionIds\">\n <input type=\"radio\" :id=\"`${header}_${id}`\" :value=\"id\" :name=\"header\" class=\"custom-control-input\" @click=\"onChange(id)\" :checked=\"option === id\">\n <label class=\"custom-control-label\" :for=\"`${header}_${id}`\">{{ optionLabels[index] }}</label>\n </div>\n </span>\n </div>\n </div>\n</template>\n\n<script>\nimport FacetTitle from \"../facets/FacetTitle.vue\";\nexport default {\n name: \"RadioFacet\",\n components: {FacetTitle},\n props: {\n config: Object,\n property: String,\n optionIds: {\n type: Array,\n default: ['true', 'false']\n },\n optionLabels: {\n type: Array\n },\n initialOption: String,\n change: Function\n },\n data() {\n return {\n id: '',\n option: this.initialOption,\n header: this.i18n.global.t(`message.datasetFacets.facets.${this.config.id.toLowerCase()}`),\n toolTipTitle: this.i18n.global.t(`message.helpIcon.${this.config.id.toLowerCase()}`),\n yes: this.i18n.global.t('message.metadata.yes'),\n no: this.i18n.global.t('message.metadata.no')\n };\n },\n computed: {\n myId() {\n // Use Vue generated uid to give each facet a unique id\n return `facet-${this.id}`;\n },\n myTitleId() {\n // Use Vue generated uid to give each facet a unique id\n return `facet-title-${this.id}`;\n }\n },\n methods: {\n onChange(id) {\n this.option = id;\n console.log(\"onChange\", id)\n this.change(id);\n }\n },\n watch: {\n initialOption(value) {\n this.option = value;\n }\n },\n mounted() {\n this.id = this._uid; // eslint-disable-line\n },\n}\n</script>\n\n"],"names":["_sfc_main","FacetTitle","id","value","_hoisted_1","_hoisted_2","_hoisted_3","_hoisted_4","_hoisted_5","_hoisted_6","_createElementBlock","$options","_createVNode","_component_facet_title","$data","_cache","_createTextVNode","_createElementVNode","_toDisplayString","$props","_openBlock","_Fragment","_renderList","index","$event"],"mappings":";;;AAqBA,MAAKA,IAAU;AAAA,EACb,MAAM;AAAA,EACN,YAAY,EAAC,YAAAC,EAAU;AAAA,EACvB,OAAO;AAAA,IACL,QAAQ;AAAA,IACR,UAAU;AAAA,IACV,WAAW;AAAA,MACT,MAAM;AAAA,MACN,SAAS,CAAC,QAAQ,OAAO;AAAA,IAC1B;AAAA,IACD,cAAc;AAAA,MACZ,MAAM;AAAA,IACP;AAAA,IACD,eAAe;AAAA,IACf,QAAQ;AAAA,EACT;AAAA,EACD,OAAO;AACL,WAAO;AAAA,MACL,IAAI;AAAA,MACJ,QAAQ,KAAK;AAAA,MACb,QAAQ,KAAK,KAAK,OAAO,EAAE,gCAAgC,KAAK,OAAO,GAAG,YAAW,CAAE,EAAE;AAAA,MACzF,cAAc,KAAK,KAAK,OAAO,EAAE,oBAAoB,KAAK,OAAO,GAAG,YAAW,CAAE,EAAE;AAAA,MACnF,KAAK,KAAK,KAAK,OAAO,EAAE,sBAAsB;AAAA,MAC9C,IAAI,KAAK,KAAK,OAAO,EAAE,qBAAqB;AAAA;EAE/C;AAAA,EACD,UAAU;AAAA,IACR,OAAO;AAEL,aAAO,SAAS,KAAK,EAAE;AAAA,IACxB;AAAA,IACD,YAAY;AAEV,aAAO,eAAe,KAAK,EAAE;AAAA,IAC/B;AAAA,EACD;AAAA,EACD,SAAS;AAAA,IACP,SAASC,GAAI;AACX,WAAK,SAASA,GACd,QAAQ,IAAI,YAAYA,CAAE,GAC1B,KAAK,OAAOA,CAAE;AAAA,IAChB;AAAA,EACD;AAAA,EACD,OAAO;AAAA,IACL,cAAcC,GAAO;AACnB,WAAK,SAASA;AAAA,IAChB;AAAA,EACD;AAAA,EACD,UAAU;AACR,SAAK,KAAK,KAAK;AAAA,EAChB;AACH,GAxEAC,IAAA,CAAA,iBAAA,GAOSC,IAAA,EAAA,OAAM,2FAA0F,GAE7FC,IAAA,EAAA,OAAM,wBAAuB,GAC5BC,IAAA,EAAA,OAAM,8BAA6B,GAVhDC,IAAA,CAAA,MAAA,SAAA,QAAA,WAAA,SAAA,GAAAC,IAAA,CAAA,KAAA;;;cACEC,EAeM,OAAA;AAAA,IAfD,OAAM;AAAA,IAA+B,MAAK;AAAA,IAAS,mBAAiBC,EAAS;AAAA;IAChFC,EAIEC,GAAA;AAAA,MAHC,OAAOC,EAAM;AAAA,MACb,SAASA,EAAY;AAAA,MACrB,YAAUH,EAAS;AAAA;IAL1BI,EAAA,CAAA,MAAAA,EAAA,CAAA,IAAAC,EAAA;AAAA,IAOIC,EAQM,OARNZ,GAQM;AAAA,MAfVW,EAQSE,EAAAC,EAAA,QAAQ,IAAG,KACd,CAAA;AAAA,MAAAF,EAKO,QALPX,GAKO;AAAA,SAJLc,EAAA,EAAA,GAAAV,EAGMW,SAbdC,EAUuEH,EAAA,WAVvE,CAUyDjB,GAAIqB,OAArDH,EAAA,GAAAV,EAGM,OAHNH,GAGM;AAAA,UAFJU,EAAmJ,SAAA;AAAA,YAA5I,MAAK;AAAA,YAAS,IAAE,GAAKH,EAAM,MAAA,IAAIZ,CAAE;AAAA,YAAK,OAAOA;AAAA,YAAK,MAAMY,EAAM;AAAA,YAAE,OAAM;AAAA,YAAwB,SAAK,CAAAU,MAAEb,EAAQ,SAACT,CAAE;AAAA,YAAI,SAASY,EAAM,WAAKZ;AAAA,UAXzJ,GAAA,MAAA,GAAAM,CAAA;AAAA,UAAAO,EAAA,CAAA,MAAAA,EAAA,CAAA,IAAAC,EAAA;AAAA,UAYUC,EAA8F,SAAA;AAAA,YAAvF,OAAM;AAAA,YAAwB,KAAG,GAAKH,EAAM,MAAA,IAAIZ,CAAE;AAAA,eAAOiB,EAAY,aAACI,CAAK,CAZ5F,GAAA,GAAAd,CAAA;AAAA;;;EAAA,GAAA,GAAAL,CAAA;;;"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
title: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
count: {
|
|
7
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
8
|
+
default: number;
|
|
9
|
+
};
|
|
10
|
+
hideCount: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}>, {}, {
|
|
15
|
+
tooltip: string;
|
|
16
|
+
}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
17
|
+
title: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
count: {
|
|
22
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
23
|
+
default: number;
|
|
24
|
+
};
|
|
25
|
+
hideCount: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
title: string;
|
|
31
|
+
count: string | number;
|
|
32
|
+
hideCount: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default _default;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { openBlock as o, createElementBlock as n, createElementVNode as i, toDisplayString as s, createTextVNode as c, createCommentVNode as r } from "vue";
|
|
2
|
+
import l from "../../_virtual/_plugin-vue_export-helper.mjs";
|
|
3
|
+
const f = {
|
|
4
|
+
name: "DatasetsFacetsItem",
|
|
5
|
+
data() {
|
|
6
|
+
return {
|
|
7
|
+
tooltip: ""
|
|
8
|
+
};
|
|
9
|
+
},
|
|
10
|
+
props: {
|
|
11
|
+
title: {
|
|
12
|
+
type: String,
|
|
13
|
+
default: ""
|
|
14
|
+
},
|
|
15
|
+
count: {
|
|
16
|
+
type: [Number, String],
|
|
17
|
+
default: 0
|
|
18
|
+
},
|
|
19
|
+
hideCount: {
|
|
20
|
+
type: Boolean,
|
|
21
|
+
default: !1
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
mounted() {
|
|
25
|
+
this.tooltip = this.$refs.facetBtn.offsetWidth < this.$refs.facetBtn.scrollWidth ? this.title : "";
|
|
26
|
+
}
|
|
27
|
+
}, d = ["title"], u = {
|
|
28
|
+
key: 0,
|
|
29
|
+
class: "facet-count badge"
|
|
30
|
+
};
|
|
31
|
+
function m(p, e, t, _, a, h) {
|
|
32
|
+
return o(), n("button", { title: a.tooltip }, [
|
|
33
|
+
i("span", {
|
|
34
|
+
ref: "facetBtn",
|
|
35
|
+
class: "text-truncate"
|
|
36
|
+
}, s(t.title), 513),
|
|
37
|
+
e[0] || (e[0] = c()),
|
|
38
|
+
t.hideCount ? r("", !0) : (o(), n("span", u, s(t.count.toLocaleString("fi")), 1))
|
|
39
|
+
], 8, d);
|
|
40
|
+
}
|
|
41
|
+
const x = /* @__PURE__ */ l(f, [["render", m]]);
|
|
42
|
+
export {
|
|
43
|
+
x as default
|
|
44
|
+
};
|
|
45
|
+
//# sourceMappingURL=SelectFacetsItem.vue.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SelectFacetsItem.vue.mjs","sources":["../../../lib/facets_2.0/facets/SelectFacetsItem.vue"],"sourcesContent":["<template>\n <button\n :title=\"tooltip\"\n >\n <span ref=\"facetBtn\" class=\"text-truncate\">{{ title }}</span>\n <span v-if=\"!hideCount\" class=\"facet-count badge\">{{ count.toLocaleString('fi') }}</span>\n </button>\n</template>\n\n<script>\n\nexport default {\n name: 'DatasetsFacetsItem',\n data() {\n return {\n tooltip: '',\n };\n },\n props: {\n title: {\n type: String,\n default: '',\n },\n count: {\n type: [Number, String],\n default: 0,\n },\n hideCount: {\n type: Boolean,\n default: false,\n },\n },\n mounted() {\n // Sets tooltip text to title when title itself is rendered truncated\n this.tooltip = this.$refs.facetBtn.offsetWidth < this.$refs.facetBtn.scrollWidth\n ? this.title\n : '';\n },\n};\n</script>\n"],"names":["_sfc_main","_hoisted_1","_createElementBlock","$data","_createElementVNode","$props","_cache","_createTextVNode","_createCommentVNode","_openBlock","_hoisted_2","_toDisplayString"],"mappings":";;AAWA,MAAKA,IAAU;AAAA,EACb,MAAM;AAAA,EACN,OAAO;AACL,WAAO;AAAA,MACL,SAAS;AAAA;EAEZ;AAAA,EACD,OAAO;AAAA,IACL,OAAO;AAAA,MACL,MAAM;AAAA,MACN,SAAS;AAAA,IACV;AAAA,IACD,OAAO;AAAA,MACL,MAAM,CAAC,QAAQ,MAAM;AAAA,MACrB,SAAS;AAAA,IACV;AAAA,IACD,WAAW;AAAA,MACT,MAAM;AAAA,MACN,SAAS;AAAA,IACV;AAAA,EACF;AAAA,EACD,UAAU;AAER,SAAK,UAAU,KAAK,MAAM,SAAS,cAAc,KAAK,MAAM,SAAS,cACjE,KAAK,QACL;AAAA,EACL;AACH,GAtCAC,IAAA,CAAA,OAAA;EAAA,KAAA;AAAA,EAK8B,OAAM;;;cAJlCC,EAKS,UAAA,EAJN,OAAOC,EAAO,WAAA;AAAA,IAEbC,EAA6D,QAAA;AAAA,MAAvD,KAAI;AAAA,MAAW,OAAM;AAAA,SAAmBC,EAAK,KAAA,GAAA,GAAA;AAAA,IAJzDC,EAAA,CAAA,MAAAA,EAAA,CAAA,IAAAC,EAAA;AAAA,IAKmBF,EAAS,YAL5BG,EAAA,IAAA,EAAA,KAKMC,KAAAP,EAAyF,QAAzFQ,GAAqDC,EAAAN,EAAA,MAAM,eAAc,IAAA,CAAA,GAAA,CAAA;AAAA,EAL/E,GAAA,GAAAJ,CAAA;;;"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { extras as r } from "../configurations/configureModules.mjs";
|
|
2
|
+
import a from "./facets/ExpandableSelectFacet.vue.mjs";
|
|
3
|
+
import c from "./facets/DataServicesFacet.vue.mjs";
|
|
4
|
+
import o from "./facets/RadioFacet.vue.mjs";
|
|
5
|
+
const p = (t) => {
|
|
6
|
+
const e = r.customFacets;
|
|
7
|
+
if (e && e[t])
|
|
8
|
+
return e[t];
|
|
9
|
+
switch (t) {
|
|
10
|
+
case "dataServices":
|
|
11
|
+
return c;
|
|
12
|
+
case "superCatalog":
|
|
13
|
+
return o;
|
|
14
|
+
}
|
|
15
|
+
return a;
|
|
16
|
+
};
|
|
17
|
+
export {
|
|
18
|
+
p as getFacet
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=getFacet.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getFacet.mjs","sources":["../../lib/facets_2.0/getFacet.ts"],"sourcesContent":["import {Component} from \"vue\";\nimport {extras} from \"../configurations/configureModules\";\nimport ExpandableSelectFacet from \"./facets/ExpandableSelectFacet.vue\";\nimport DataServicesFacet from \"./facets/DataServicesFacet.vue\";\nimport RadioFacet from \"./facets/RadioFacet.vue\";\n\nexport const getFacet = (id: string): Component => {\n const custom = extras.customFacets;\n if (custom && custom[id]) { // custom\n return custom[id];\n } else { // defaults\n switch (id) {\n case \"dataServices\": return DataServicesFacet;\n case \"superCatalog\": return RadioFacet;\n // case \"dataServices\":case \"superCatalog\": return InfoFacet;\n }\n return ExpandableSelectFacet;\n }\n}\n"],"names":["getFacet","id","custom","extras","DataServicesFacet","RadioFacet","ExpandableSelectFacet"],"mappings":";;;;AAMa,MAAAA,IAAW,CAACC,MAA0B;AAC/C,QAAMC,IAASC,EAAO;AAClB,MAAAD,KAAUA,EAAOD,CAAE;AACnB,WAAOC,EAAOD,CAAE;AAEhB,UAAQA,GAAI;AAAA,IACR,KAAK;AAAuB,aAAAG;AAAA,IAC5B,KAAK;AAAuB,aAAAC;AAAA,EAEhC;AACO,SAAAC;AAEf;"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Uses the vue router to perform the action of selecting a query param key-value pair.
|
|
3
|
+
* If it already exists in the route it is removed, else it is added.
|
|
4
|
+
* @param key
|
|
5
|
+
* @param value
|
|
6
|
+
* @param router
|
|
7
|
+
* @param route
|
|
8
|
+
*/
|
|
9
|
+
export declare function toggleQueryParam(key: any, value: any, router: any, route: any): void;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
function y(f, i, s, r) {
|
|
2
|
+
let e = r.query[f];
|
|
3
|
+
console.log("QUERY", e, typeof e), e ? typeof e == "string" ? e === i ? e = void 0 : e = [e, i] : Array.isArray(e) && (e.includes(i) ? e = e.filter((t) => t !== i) : e = [...e, i]) : e = i, s.push({
|
|
4
|
+
path: r.path,
|
|
5
|
+
query: { ...r.query, [f]: e }
|
|
6
|
+
});
|
|
7
|
+
}
|
|
8
|
+
export {
|
|
9
|
+
y as toggleQueryParam
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=toggleQueryParam.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toggleQueryParam.mjs","sources":["../../lib/facets_2.0/toggleQueryParam.ts"],"sourcesContent":["/**\n * Uses the vue router to perform the action of selecting a query param key-value pair.\n * If it already exists in the route it is removed, else it is added.\n * @param key\n * @param value\n * @param router\n * @param route\n */\nexport function toggleQueryParam(key, value, router, route) {\n let query: any = route.query[key];\n console.log(\"QUERY\", query, typeof query)\n if ( ! query) {\n query = value;\n } else if (typeof query === 'string') {\n if (query === value) {\n query = undefined;\n } else {\n query = [query, value];\n }\n } else if (Array.isArray(query)) {\n if (query.includes(value)) {\n query = query.filter(element => element !== value);\n } else {\n query = [...query, value];\n }\n }\n router.push({\n path: route.path,\n query: {...route.query, [key]: query}\n });\n}\n"],"names":["toggleQueryParam","key","value","router","route","query","element"],"mappings":"AAQO,SAASA,EAAiBC,GAAKC,GAAOC,GAAQC,GAAO;AACpD,MAAAC,IAAaD,EAAM,MAAMH,CAAG;AAChC,UAAQ,IAAI,SAASI,GAAO,OAAOA,CAAK,GACjCA,IAEI,OAAOA,KAAU,WACpBA,MAAUH,IACFG,IAAA,SAEAA,IAAA,CAACA,GAAOH,CAAK,IAElB,MAAM,QAAQG,CAAK,MACtBA,EAAM,SAASH,CAAK,IACpBG,IAAQA,EAAM,OAAO,CAAWC,MAAAA,MAAYJ,CAAK,IAEzCG,IAAA,CAAC,GAAGA,GAAOH,CAAK,KAXpBG,IAAAH,GAcZC,EAAO,KAAK;AAAA,IACR,MAAMC,EAAM;AAAA,IACZ,OAAO,EAAC,GAAGA,EAAM,OAAO,CAACH,CAAG,GAAGI,EAAK;AAAA,EAAA,CACvC;AACL;"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
import { LocationQueryValue } from 'vue-router';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export type FacetsConfigItem = {title: String, id: String, items: [], selected: string | null | LocationQueryValue[]};
|
|
6
|
+
export type FacetsConfig = [FacetsConfigItem];
|
|
7
|
+
|
|
8
|
+
export type FacetState = {config:FacetsConfigItem, selection:unknown};
|
|
9
|
+
export type FacetsState = [FacetState];
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { FacetsConfig } from './types';
|
|
2
|
+
import { Ref } from 'vue';
|
|
3
|
+
import { RouteLocationNormalizedLoadedGeneric } from 'vue-router';
|
|
4
|
+
|
|
5
|
+
export declare function useFacets(facetsConfig: Ref<FacetsConfig>, facetsIds: any, route: RouteLocationNormalizedLoadedGeneric): Ref<null, null>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ref as f, watchEffect as s, toValue as a } from "vue";
|
|
2
|
+
function m(c, n, i) {
|
|
3
|
+
const t = f(null);
|
|
4
|
+
return s(() => {
|
|
5
|
+
t.value = (n || []).reduce((e, u) => {
|
|
6
|
+
const r = a(c).find((o) => o.id === u);
|
|
7
|
+
return r && e.push(r), e;
|
|
8
|
+
}, []);
|
|
9
|
+
}), t;
|
|
10
|
+
}
|
|
11
|
+
export {
|
|
12
|
+
m as useFacets
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=useFacets.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useFacets.mjs","sources":["../../lib/facets_2.0/useFacets.ts"],"sourcesContent":["import {FacetsConfig, FacetsConfigItem} from \"./types\";\nimport {Ref, ref, toValue, watchEffect} from \"vue\";\nimport {RouteLocationNormalizedLoadedGeneric} from \"vue-router\";\n\nexport function useFacets(facetsConfig: Ref<FacetsConfig>, facetsIds, route: RouteLocationNormalizedLoadedGeneric) {\n const facets = ref(null);\n const currentFacets = () => {\n facets.value = (facetsIds || []).reduce((acc, curr) => {\n const configItem: FacetsConfigItem = toValue(facetsConfig).find(c => c.id === curr);\n if (configItem) {\n // configItem.selected = route.query[configItem.id];\n acc.push(configItem);\n }\n return acc;\n }, []);\n };\n watchEffect(currentFacets);\n return facets;\n}\n"],"names":["useFacets","facetsConfig","facetsIds","route","facets","ref","watchEffect","acc","curr","configItem","toValue","c"],"mappings":";AAIgB,SAAAA,EAAUC,GAAiCC,GAAWC,GAA6C;AACzG,QAAAC,IAASC,EAAI,IAAI;AAWvB,SAAAC,EAVsB,MAAM;AACxB,IAAAF,EAAO,SAASF,KAAa,IAAI,OAAO,CAACK,GAAKC,MAAS;AAC7C,YAAAC,IAA+BC,EAAQT,CAAY,EAAE,KAAK,CAAKU,MAAAA,EAAE,OAAOH,CAAI;AAClF,aAAIC,KAEAF,EAAI,KAAKE,CAAU,GAEhBF;AAAA,IACX,GAAG,CAAE,CAAA;AAAA,EAAA,CAEgB,GAClBH;AACX;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { default as bulkDownloadCorsProxyService } from './services/bulkDownload
|
|
|
3
3
|
import { default as corsProxyService } from './services/corsProxyService';
|
|
4
4
|
import { default as uploadService } from './services/uploadService';
|
|
5
5
|
import { default as runtimeConfigurationService } from './services/runtimeConfigurationService';
|
|
6
|
-
import { default as datasetService } from './services/datasetService';
|
|
6
|
+
import { default as datasetService, getResponseData } from './services/datasetService';
|
|
7
7
|
import { default as catalogService } from './services/catalogService';
|
|
8
8
|
import { default as gazetteerService } from './services/gazetteerService';
|
|
9
9
|
import { default as store } from './store';
|
|
@@ -106,6 +106,7 @@ import { default as DatasetList } from './datasets/DatasetList';
|
|
|
106
106
|
import { default as DatasetsFilters } from './datasets/DatasetsFilters';
|
|
107
107
|
import { default as DatasetsFiltersTabs } from './datasets/DatasetsFiltersTabs';
|
|
108
108
|
import { default as DatasetsTopControls } from './datasets/DatasetsTopControls';
|
|
109
|
+
import { default as Search } from './search/Search.vue';
|
|
109
110
|
import { default as CatalogDetailsFacet } from './facets/CatalogDetailsFacet';
|
|
110
111
|
import { default as DatasetsFacets } from './datasets/datasetsFacets/DatasetsFacets';
|
|
111
112
|
import { default as DatasetsFacetsItem } from './datasets/datasetsFacets/DatasetsFacetsItem';
|
|
@@ -144,7 +145,7 @@ import { default as ResourceDetailsLinkedDataButton } from './widgets/ResourceDe
|
|
|
144
145
|
import { default as Tooltip } from './widgets/Tooltip';
|
|
145
146
|
import { configSchema } from './configurations/config-schema';
|
|
146
147
|
|
|
147
|
-
export { inputDefinitions, configSchema, vueKeycloak, bulkDownloadCorsProxyService, corsProxyService, uploadService, runtimeConfigurationService, datasetService, catalogService, gazetteerService, 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, 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, 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, };
|
|
148
|
+
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, 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, 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, };
|
|
148
149
|
export * as helpers from './utils/helpers';
|
|
149
150
|
export { defineUserConfig, type Config, type ResolvedConfig } from './configurations/config-schema';
|
|
150
151
|
export { useRuntimeEnv } from './composables/useRuntimeEnv';
|