@piveau/dpi 0.1.0-beta.7 → 0.1.0-beta.70

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.
Files changed (62) hide show
  1. package/dist/assets/dpi.css +1 -1
  2. package/dist/data-provider-interface/DPIMenu.vue.js +2 -2
  3. package/dist/data-provider-interface/HappyFlowComponents/ComponentLibrary.vue.js +1 -1
  4. package/dist/data-provider-interface/HappyFlowComponents/HomeTable.vue.js +58 -53
  5. package/dist/data-provider-interface/HappyFlowComponents/services/dpiV3_apis.js +88 -68
  6. package/dist/data-provider-interface/HappyFlowComponents/ui/CloseOpenButtonV3.vue.js +11 -10
  7. package/dist/data-provider-interface/HappyFlowComponents/ui/DpiModalBase.vue.js +2 -2
  8. package/dist/data-provider-interface/HappyFlowComponents/ui/Dropdown.vue.js +101 -76
  9. package/dist/data-provider-interface/HappyFlowComponents/ui/InputField.vue.js +1 -1
  10. package/dist/data-provider-interface/HappyFlowComponents/ui/ModalSimpleV3.vue.js +11 -11
  11. package/dist/data-provider-interface/HappyFlowComponents/ui/ModalV3.vue.js +444 -355
  12. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/AccessRightsV3.vue.js +64 -28
  13. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/AccessServiceV3.vue.js +108 -74
  14. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/AvailabilityV3.vue.js +17 -22
  15. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/ChangeLicenseV3.vue.js +130 -77
  16. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/ChecksumV3.vue.js +122 -85
  17. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/ConformsToV3.vue.js +111 -74
  18. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/DocumentationsV3.vue.js +170 -99
  19. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/FileFormatV3.vue.js +7 -10
  20. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/LanguageV3.vue.js +110 -52
  21. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/PolicyV3.vue.js +65 -86
  22. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/StatusV3.vue.js +29 -28
  23. package/dist/data-provider-interface/HappyFlowComponents/ui/RapModal.vue.js +159 -103
  24. package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/AdditionalsModal.vue.js +48 -48
  25. package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/AdditionalsSubModal.vue.js +566 -207
  26. package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/CoverageModal.vue.js +100 -53
  27. package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/DistributionModal.vue.js +43 -89
  28. package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/EssentialsModal.vue.js +329 -100
  29. package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/FindabilityChips.vue.js +43 -26
  30. package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/HVDSwitch.vue.js +70 -38
  31. package/dist/data-provider-interface/HappyFlowComponents/ui/TableRowV3.vue.js +181 -107
  32. package/dist/data-provider-interface/HappyFlowComponents/ui/TextAreaV3.vue.js +19 -14
  33. package/dist/data-provider-interface/HappyFlowComponents/ui/TextButtonSmall.vue.js +1 -1
  34. package/dist/data-provider-interface/HappyFlowComponents/ui/Toast.vue.js +30 -29
  35. package/dist/data-provider-interface/components/ContactPage.vue.js +148 -100
  36. package/dist/data-provider-interface/components/DiscoverabilityPage.vue.js +32 -32
  37. package/dist/data-provider-interface/components/DistLicense.vue.js +198 -99
  38. package/dist/data-provider-interface/components/DistributionSimplePage.vue.js +950 -833
  39. package/dist/data-provider-interface/components/Dropup.vue.js +6 -6
  40. package/dist/data-provider-interface/components/HVDPage.vue.js +107 -85
  41. package/dist/data-provider-interface/components/InfoSlot.vue.js +5 -5
  42. package/dist/data-provider-interface/components/PolGeoUriPage.vue.js +89 -46
  43. package/dist/data-provider-interface/components/PublisherPage.vue.js +111 -81
  44. package/dist/data-provider-interface/components/ReviewAndPublishPage.vue.js +314 -260
  45. package/dist/data-provider-interface/components/TempResPage.vue.js +267 -187
  46. package/dist/data-provider-interface/components/TempResPageInModal.vue.js +392 -0
  47. package/dist/data-provider-interface/components/TitelPage.vue.js +4 -4
  48. package/dist/data-provider-interface/components/UpdateDate.vue.js +33 -29
  49. package/dist/data-provider-interface/components/dpiV3Description.vue.js +7 -6
  50. package/dist/data-provider-interface/composables/useDpiSimpleLoader.js +397 -244
  51. package/dist/data-provider-interface/config/dcatapde/vocab-prefixes.js +1 -1
  52. package/dist/data-provider-interface/config/dcatapdeHappyFlow/converter.js +477 -96
  53. package/dist/data-provider-interface/config/dcatapdeHappyFlow/input-definition.js +104 -152
  54. package/dist/data-provider-interface/config/dcatapdeHappyFlow/page-content-config.js +9 -2
  55. package/dist/data-provider-interface/store/modules/authStore.js +11 -11
  56. package/dist/data-provider-interface/views/DraftsPage.vue.js +3 -3
  57. package/dist/data-provider-interface/views/InputPage.vue.js +389 -760
  58. package/dist/styles/_dpi.scss +1614 -0
  59. package/dist/styles/_maps.scss +24 -0
  60. package/dist/styles/_variables.scss +973 -0
  61. package/package.json +28 -19
  62. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/LicenseAttributionByText.vue.js +0 -46
@@ -1,19 +1,22 @@
1
- import { ref as v, computed as n, watch as _, createElementBlock as r, openBlock as a, createElementVNode as o, createCommentVNode as B, unref as u, createTextVNode as h, createVNode as D, withCtx as L, createStaticVNode as N, Fragment as b, renderList as V, createBlock as k } from "vue";
2
- import { useAsyncState as U, useDebounce as z } from "@vueuse/core";
3
- import C from "axios";
1
+ import { ref as v, computed as c, watch as f, createElementBlock as o, openBlock as s, createElementVNode as r, createCommentVNode as b, unref as u, createTextVNode as _, createVNode as h, withCtx as B, createStaticVNode as L, Fragment as D, renderList as y, createBlock as k } from "vue";
2
+ import { useAsyncState as N, useDebounce as U } from "@vueuse/core";
3
+ import z from "axios";
4
4
  import "jquery";
5
- import { useRouter as E } from "vue-router";
6
- import { useStore as W } from "vuex";
7
- import { useRuntimeEnv as R } from "../../composables/useRuntimeEnv.js";
5
+ import { useRouter as R } from "vue-router";
6
+ import { useStore as E } from "vuex";
7
+ import { useRuntimeEnv as W } from "../../composables/useRuntimeEnv.js";
8
8
  import A from "../../widgets/AppLink.vue.js";
9
9
  import $ from "./ui/ButtonV3.vue.js";
10
- import y from "./ui/TableRowV3.vue.js";
10
+ import V from "./ui/TableRowV3.vue.js";
11
11
  /* empty css */
12
12
  import q from "../../_virtual/_plugin-vue_export-helper.js";
13
13
  const F = { class: "dpiV3_dpiHome V3-typography" }, K = { class: "dpiV3_homeHeadWrap" }, M = {
14
14
  key: 0,
15
- class: "copy-large-semi-bold"
16
- }, j = { class: "interactionButtonsDPIHome" }, G = { class: "dpiV3_table" }, J = {
15
+ class: "copy-large-semi-bold landingText"
16
+ }, j = { class: "interactionButtonsDPIHome" }, G = {
17
+ key: 0,
18
+ class: "dpiV3_table"
19
+ }, J = {
17
20
  key: 0,
18
21
  class: "loading-screen"
19
22
  }, O = {
@@ -22,49 +25,51 @@ const F = { class: "dpiV3_dpiHome V3-typography" }, K = { class: "dpiV3_homeHead
22
25
  }, Q = {
23
26
  __name: "HomeTable",
24
27
  setup(X) {
25
- const x = R(), i = W();
26
- E(), localStorage.getItem("dpi_duplicate"), v("");
27
- let l = n(() => i.getters["auth/getUserCatalogIds"]);
28
+ const x = W(), l = E();
29
+ R(), localStorage.getItem("dpi_duplicate"), v("");
30
+ let m = c(() => l.getters["auth/getUserCatalogIds"]);
28
31
  v({
29
32
  loading: !1,
30
33
  message: "",
31
34
  confirm: () => null
32
35
  });
33
- const m = n(() => i.getters["auth/getUserDrafts"]), I = n(() => i.getters["auth/getUserData"]);
34
- n(() => I.value.rtpToken);
35
- const S = (s) => i.dispatch("snackbar/showSnackbar", s);
36
- async function w(s) {
37
- const t = s.map((d) => C.get(`${x.api.baseUrl}search?facets={%22catalog%22:[%22${d}%22]}&filters=dataset&includes=title,modified,id,description,catalog`));
38
- return (await Promise.all(t)).flatMap((d) => d.data.result.results);
36
+ const n = c(() => l.getters["auth/getUserDrafts"].sort((a, t) => (a.id ?? "").localeCompare(t.id ?? "", "de", { sensitivity: "base", numeric: !0 })));
37
+ console.log(n);
38
+ const I = c(() => l.getters["auth/getUserData"]);
39
+ c(() => I.value.rtpToken);
40
+ const S = (a) => l.dispatch("snackbar/showSnackbar", a);
41
+ async function w(a) {
42
+ const t = a.map((i) => z.get(`${x.api.baseUrl}search?facets={%22catalog%22:[%22${i}%22]}&filters=dataset&includes=title,modified,id,description,catalog&limit=1000`));
43
+ return (await Promise.all(t)).flatMap((i) => i.data.result.results).sort((i, d) => (i.id ?? "").localeCompare(d.id ?? "", "de", { sensitivity: "base", numeric: !0 }));
39
44
  }
40
45
  const {
41
46
  state: p,
42
47
  execute: H,
43
- isLoading: P,
44
- error: c
45
- } = U(async () => w(l.value), [], { immediate: !1 });
46
- _(l, () => {
47
- var s;
48
- ((s = l.value) == null ? void 0 : s.length) > 0 && H();
49
- }, { immediate: !0 }), _(c, () => {
50
- console.error(c), S({
51
- message: c.message,
48
+ isLoading: T,
49
+ error: g
50
+ } = N(async () => w(m.value), [], { immediate: !1 });
51
+ f(m, () => {
52
+ var a;
53
+ ((a = m.value) == null ? void 0 : a.length) > 0 && H();
54
+ }, { immediate: !0 }), f(g, () => {
55
+ console.error(g), S({
56
+ message: g.message,
52
57
  color: "error"
53
58
  });
54
59
  });
55
- const T = z(P, 500);
56
- return (s, t) => (a(), r("div", F, [
57
- o("div", K, [
58
- t[1] || (t[1] = o("h2", { class: "dpiV3_tableHeader" }, " Ihre Datensätze ", -1)),
59
- u(p).length === 0 && m.value.length === 0 ? (a(), r("p", M, t[0] || (t[0] = [
60
- h(" Willkommen im Data Provider Interface ✨ ", -1),
61
- o("br", null, null, -1),
62
- h("Beginnen Sie mit der Erstellung Ihres ersten Datensatzes! ", -1)
63
- ]))) : B("", !0),
64
- o("div", j, [
65
- D(A, { to: { name: "DataProviderInterface-Input", query: { locale: "de", edit: !1 }, params: { property: "datasets" } } }, {
66
- default: L(() => [
67
- D($, {
60
+ const C = U(T, 500);
61
+ return (a, t) => (s(), o("div", F, [
62
+ r("div", K, [
63
+ t[1] || (t[1] = r("h2", { class: "dpiV3_tableHeader" }, " Ihre Datensätze ", -1)),
64
+ u(p).length === 0 && n.value.length === 0 ? (s(), o("p", M, t[0] || (t[0] = [
65
+ _(" Willkommen im Data Provider Interface ✨ ", -1),
66
+ r("br", null, null, -1),
67
+ _("Beginnen Sie mit der Erstellung Ihres ersten Datensatzes! ", -1)
68
+ ]))) : b("", !0),
69
+ r("div", j, [
70
+ h(A, { to: { name: "DataProviderInterface-Input", query: { locale: "de", edit: !1 }, params: { property: "datasets" } } }, {
71
+ default: B(() => [
72
+ h($, {
68
73
  "button-text": "Neuen Datensatz erstellen",
69
74
  size: "large"
70
75
  })
@@ -73,13 +78,13 @@ const F = { class: "dpiV3_dpiHome V3-typography" }, K = { class: "dpiV3_homeHead
73
78
  })
74
79
  ])
75
80
  ]),
76
- o("div", G, [
77
- u(T) ? (a(), r("div", J, t[2] || (t[2] = [
78
- o("p", null, "Lädt Daten...", -1)
79
- ]))) : (a(), r("div", O, [
80
- t[3] || (t[3] = N('<div class="dpiV3_tableHeadWrap" data-v-e3ec9dd2><div class="dpiV3_thWrap" data-v-e3ec9dd2><div scope="col" data-v-e3ec9dd2><span data-v-e3ec9dd2>Datensätze</span></div><div scope="col" class="dpiV3_statusHead" data-v-e3ec9dd2><span data-v-e3ec9dd2>Status</span></div></div><div class="dpiV3_blankCell" data-v-e3ec9dd2></div></div>', 1)),
81
- o("div", null, [
82
- (a(!0), r(b, null, V(m.value, (e) => (a(), k(y, {
81
+ u(p).length > 0 || n.value.length > 0 ? (s(), o("div", G, [
82
+ u(C) ? (s(), o("div", J, t[2] || (t[2] = [
83
+ r("p", null, "Lädt Daten...", -1)
84
+ ]))) : (s(), o("div", O, [
85
+ t[3] || (t[3] = L('<div class="dpiV3_tableHeadWrap" data-v-2cb4e971><div class="dpiV3_thWrap" data-v-2cb4e971><div scope="col" data-v-2cb4e971><span data-v-2cb4e971>Datensätze</span></div><div scope="col" class="dpiV3_statusHead" data-v-2cb4e971><span data-v-2cb4e971>Status</span></div></div><div class="dpiV3_blankCell" data-v-2cb4e971></div></div>', 1)),
86
+ r("div", null, [
87
+ (s(!0), o(D, null, y(n.value, (e) => (s(), k(V, {
83
88
  id: e.id,
84
89
  key: e.id,
85
90
  "data-cy": e,
@@ -89,21 +94,21 @@ const F = { class: "dpiV3_dpiHome V3-typography" }, K = { class: "dpiV3_homeHead
89
94
  draft: "true",
90
95
  dataset: e
91
96
  }, null, 8, ["id", "data-cy", "catalogue", "text", "date", "dataset"]))), 128)),
92
- (a(!0), r(b, null, V(u(p), (e, d) => {
93
- var g, f;
94
- return a(), k(y, {
97
+ (s(!0), o(D, null, y(u(p), (e, P) => {
98
+ var i, d;
99
+ return s(), k(V, {
95
100
  key: e.id,
96
- text: ((g = e.title) == null ? void 0 : g.de) || ((f = e.title) == null ? void 0 : f.en) || "Kein Titel in englisch oder deutsch vohanden",
101
+ text: ((i = e.title) == null ? void 0 : i.de) || ((d = e.title) == null ? void 0 : d.en) || "Kein Titel in englisch oder deutsch vohanden",
97
102
  date: e.modified ? new Date(e.modified).toDateString() : "-",
98
103
  dataset: e
99
104
  }, null, 8, ["text", "date", "dataset"]);
100
105
  }), 128))
101
106
  ])
102
107
  ]))
103
- ])
108
+ ])) : b("", !0)
104
109
  ]));
105
110
  }
106
- }, ce = /* @__PURE__ */ q(Q, [["__scopeId", "data-v-e3ec9dd2"]]);
111
+ }, ce = /* @__PURE__ */ q(Q, [["__scopeId", "data-v-2cb4e971"]]);
107
112
  export {
108
113
  ce as default
109
114
  };
@@ -13,7 +13,23 @@ const u = async (a) => {
13
13
  } catch (e) {
14
14
  throw console.error("Error fetching Dataset categories:", e), e;
15
15
  }
16
+ }, h = async (a) => {
17
+ try {
18
+ let e = `${a}vocabularies/access-right`;
19
+ return (await c.get(e)).data.result.results;
20
+ } catch (e) {
21
+ throw console.error("Error fetching Dataset categories:", e), e;
22
+ }
16
23
  }, d = async (a) => {
24
+ try {
25
+ let e = `${a}vocabularies/iana-media-types`;
26
+ return (await c.get(e, {
27
+ headers: { Accept: "application/json" }
28
+ })).data.result;
29
+ } catch (e) {
30
+ throw console.error("Error fetching file types:", e), e;
31
+ }
32
+ }, p = async (a) => {
17
33
  try {
18
34
  let e = `${a}vocabularies/file-type`;
19
35
  return (await c.get(e, {
@@ -30,106 +46,110 @@ const u = async (a) => {
30
46
  "municipality-key",
31
47
  "regional-key",
32
48
  "state-key"
33
- ], t = [], l = [];
49
+ ], r = [], o = [];
34
50
  try {
35
- let s = `${a}vocabularies/political-geocoding-level`;
36
- const r = await c.get(s);
37
- for (let o = 0; o < r.data.result.results.length; o++)
38
- l.push(
51
+ let l = `${a}vocabularies/political-geocoding-level`;
52
+ const t = await c.get(l);
53
+ for (let s = 0; s < t.data.result.results.length; s++)
54
+ o.push(
39
55
  await c.get(
40
- `${a}vocabularies/political-geocoding-` + e[o]
56
+ `${a}vocabularies/political-geocoding-` + e[s]
41
57
  )
42
- ), t.push({
43
- headers: e[o],
44
- list: l[o].data.result.results
58
+ ), r.push({
59
+ headers: e[s],
60
+ list: o[s].data.result.results
45
61
  });
46
- return t;
47
- } catch (s) {
48
- throw console.error("Error fetching Dataset categories:", s), s;
62
+ return r;
63
+ } catch (l) {
64
+ throw console.error("Error fetching Dataset categories:", l), l;
49
65
  }
50
- }, h = async (a, e) => (await n(e)).map((s) => {
51
- const r = s.list.filter(
52
- (o) => o.alt_label && o.alt_label.de && o.alt_label.de.includes(a)
66
+ }, y = async (a, e) => (await n(e)).map((l) => {
67
+ const t = l.list.filter(
68
+ (s) => s.alt_label && s.alt_label.de && s.alt_label.de.includes(a)
53
69
  );
54
- return { ...s, list: r };
55
- }).filter((s) => s.list.length > 0), p = async (a, e, t) => {
56
- let l = [];
70
+ return { ...l, list: t };
71
+ }).filter((l) => l.list.length > 0), f = async (a, e, r) => {
72
+ let o = [];
57
73
  try {
58
- let s = `${e}vocabularies/${t}`;
59
- return l = (await c.get(s)).data.result.results, l;
60
- } catch (s) {
61
- throw console.error("Error fetching Dataset categories:", s), s;
74
+ let l = `${e}vocabularies/${r}`;
75
+ return o = (await c.get(l)).data.result.results, o;
76
+ } catch (l) {
77
+ throw console.error("Error fetching Dataset categories:", l), l;
62
78
  }
63
- }, y = async (a) => {
79
+ }, b = async (a) => {
64
80
  try {
65
81
  let e = `${a}vocabularies/planned-availability`;
66
- return (await c.get(e)).data.result.results.map((l) => ({
67
- value: l.id,
68
- label: l.pref_label.de,
69
- uri: l.resource
82
+ return (await c.get(e)).data.result.results.map((o) => ({
83
+ value: o.id,
84
+ label: o.pref_label.de,
85
+ uri: o.resource
70
86
  }));
71
87
  } catch (e) {
72
88
  throw console.error("Error fetching planned availability:", e), e;
73
89
  }
74
- }, b = async (a, e = "de") => {
90
+ }, v = async (a, e = "de") => {
75
91
  try {
76
- let t = `${a}vocabularies/language`, s = (await c.get(t)).data.result.results.map((r) => ({
77
- value: r.id,
78
- label: `${r.pref_label[e] || r.pref_label.en || r.id} (${r.id})`,
79
- uri: r.resource
92
+ let r = `${a}vocabularies/language`, l = (await c.get(r)).data.result.results.map((t) => ({
93
+ value: t.id,
94
+ label: `${t.pref_label[e] || t.pref_label.en || t.id} (${t.id})`,
95
+ uri: t.resource
80
96
  }));
81
- return s.sort((r, o) => r.label.localeCompare(o.label, e)), s;
82
- } catch (t) {
83
- throw console.error("Error fetching languages:", t), t;
97
+ return l.sort((t, s) => t.label.localeCompare(s.label, e)), l;
98
+ } catch (r) {
99
+ throw console.error("Error fetching languages:", r), r;
84
100
  }
85
- }, f = async (a, e = "de") => {
101
+ }, w = async (a, e = "de") => {
86
102
  try {
87
- let t = `${a}vocabularies/licence`;
88
- return (await c.get(t)).data.result.results.map((r) => {
89
- var o;
103
+ let r = `${a}vocabularies/licence`;
104
+ return (await c.get(r)).data.result.results.map((t) => {
105
+ var s;
90
106
  return {
91
- value: r.id,
92
- label: r.pref_label[e] || r.pref_label.en || r.id,
93
- homepage: ((o = r.extensions) == null ? void 0 : o.foaf_homepage) || null,
94
- uri: r.resource
107
+ value: t.id,
108
+ label: t.pref_label[e] || t.pref_label.en || t.id,
109
+ homepage: ((s = t.extensions) == null ? void 0 : s.foaf_homepage) || null,
110
+ uri: t.resource
95
111
  };
96
112
  });
97
- } catch (t) {
98
- throw console.error("Error fetching licenses:", t), t;
113
+ } catch (r) {
114
+ throw console.error("Error fetching licenses:", r), r;
99
115
  }
100
- }, v = async (a, e = "de") => {
116
+ }, $ = async (a, e = "de") => {
101
117
  try {
102
- let t = `${a}vocabularies/dataset-status`;
103
- return (await c.get(t)).data.result.results.map((r) => ({
104
- value: r.id,
105
- label: r.pref_label[e] || r.pref_label.en || r.id,
106
- resource: r.resource || null
118
+ let r = `${a}vocabularies/adms`;
119
+ return (await c.get(r)).data.result.results.filter(
120
+ (s) => s.in_scheme === "http://purl.org/adms/status/1.0" && s.resource !== "http://purl.org/adms/status/UnderDevelopment"
121
+ ).map((s) => ({
122
+ value: s.id,
123
+ label: s.pref_label[e] || s.pref_label.en || s.id,
124
+ resource: s.resource || null
107
125
  }));
108
- } catch (t) {
109
- throw console.error("Error fetching dataset status:", t), t;
126
+ } catch (r) {
127
+ throw console.error("Error fetching dataset status:", r), r;
110
128
  }
111
- }, w = async (a, e = "en") => {
129
+ }, m = async (a, e = "en") => {
112
130
  try {
113
- let t = `${a}vocabularies/spdx-checksum-algorithm`;
114
- return (await c.get(t)).data.result.results.map((r) => ({
115
- value: r.id,
116
- label: r.pref_label[e] || r.pref_label.en || r.id,
117
- resource: r.resource || null
131
+ let r = `${a}vocabularies/spdx-checksum-algorithm`;
132
+ return (await c.get(r)).data.result.results.map((t) => ({
133
+ value: t.id,
134
+ label: t.pref_label[e] || t.pref_label.en || t.id,
135
+ resource: t.resource || null
118
136
  }));
119
- } catch (t) {
120
- throw console.error("Error fetching checksum algorithms:", t), t;
137
+ } catch (r) {
138
+ throw console.error("Error fetching checksum algorithms:", r), r;
121
139
  }
122
140
  };
123
141
  export {
124
- h as filterGeocodingURIs,
125
- w as getChecksumAlgorithms,
142
+ y as filterGeocodingURIs,
143
+ h as getAccessRights,
144
+ m as getChecksumAlgorithms,
126
145
  g as getDatasetCategories,
127
- v as getDatasetStatus,
146
+ $ as getDatasetStatus,
128
147
  d as getFileTypes,
148
+ p as getFormatTypes,
129
149
  n as getGeocodingURIs,
130
150
  u as getHvdCategories,
131
- b as getLanguages,
132
- f as getLicenses,
133
- p as getOptionalURIs,
134
- y as getPlannedAvailability
151
+ v as getLanguages,
152
+ w as getLicenses,
153
+ f as getOptionalURIs,
154
+ b as getPlannedAvailability
135
155
  };
@@ -1,13 +1,13 @@
1
1
  /* empty css */
2
- import { PhCaretUp as c, PhCaretDown as a } from "@phosphor-icons/vue";
3
- import { resolveComponent as u, createElementBlock as f, openBlock as s, withKeys as r, normalizeClass as C, withModifiers as k, createBlock as p, createCommentVNode as m } from "vue";
2
+ import { PhCaretUp as c, PhCaretDown as f } from "@phosphor-icons/vue";
3
+ import { resolveComponent as u, createElementBlock as a, openBlock as s, withKeys as r, normalizeClass as C, withModifiers as k, createBlock as p, createCommentVNode as m } from "vue";
4
4
  /* empty css */
5
5
  import w from "../../../_virtual/_plugin-vue_export-helper.js";
6
6
  const x = {
7
7
  name: "CloseOpenButtonV3",
8
8
  emits: ["click"],
9
9
  components: {
10
- PhCaretDown: a,
10
+ PhCaretDown: f,
11
11
  PhCaretUp: c
12
12
  },
13
13
  data() {
@@ -31,9 +31,10 @@ const x = {
31
31
  }
32
32
  }
33
33
  };
34
- function B(i, e, l, F, o, n) {
35
- const d = u("PhCaretDown"), v = u("PhCaretUp");
36
- return s(), f("button", {
34
+ function y(i, e, l, B, o, n) {
35
+ const v = u("PhCaretDown"), d = u("PhCaretUp");
36
+ return s(), a("button", {
37
+ type: "button",
37
38
  tabindex: "0",
38
39
  onMousedown: e[0] || (e[0] = (...t) => n.removeFocus && n.removeFocus(...t)),
39
40
  class: C(["dpiV3_open-close-button", [{ dpiV3_activeState: o.isActive }]]),
@@ -49,19 +50,19 @@ function B(i, e, l, F, o, n) {
49
50
  e[7] || (e[7] = r((t) => o.isActive = !1, ["space"]))
50
51
  ]
51
52
  }, [
52
- l.expanded ? m("", !0) : (s(), p(d, {
53
+ l.expanded ? m("", !0) : (s(), p(v, {
53
54
  key: 0,
54
55
  color: "var(--neutral-60, #3D4952)",
55
56
  size: 32
56
57
  })),
57
- l.expanded ? (s(), p(v, {
58
+ l.expanded ? (s(), p(d, {
58
59
  key: 1,
59
60
  color: "var(--neutral-60, #3D4952)",
60
61
  size: 32
61
62
  })) : m("", !0)
62
63
  ], 34);
63
64
  }
64
- const b = /* @__PURE__ */ w(x, [["render", B], ["__scopeId", "data-v-d10a315d"]]);
65
+ const V = /* @__PURE__ */ w(x, [["render", y], ["__scopeId", "data-v-fb00123e"]]);
65
66
  export {
66
- b as default
67
+ V as default
67
68
  };
@@ -1,7 +1,7 @@
1
1
  import o from "./DpiModalBase.vue2.js";
2
2
  /* empty css */
3
3
  import t from "../../../_virtual/_plugin-vue_export-helper.js";
4
- const f = /* @__PURE__ */ t(o, [["__scopeId", "data-v-d7f3463b"]]);
4
+ const c = /* @__PURE__ */ t(o, [["__scopeId", "data-v-7c0bce2d"]]);
5
5
  export {
6
- f as default
6
+ c as default
7
7
  };