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

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 +384 -758
  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,211 +1,239 @@
1
- import { computed as v, ref as h, onMounted as ve, resolveComponent as fe, createElementBlock as n, openBlock as o, Fragment as k, createCommentVNode as c, createBlock as B, createElementVNode as a, unref as u, toDisplayString as s, createVNode as _, renderList as M, createTextVNode as w, withCtx as _e, isRef as te } from "vue";
1
+ import { computed as f, ref as g, onMounted as ze, resolveComponent as Ee, createElementBlock as l, openBlock as i, Fragment as S, createCommentVNode as u, createBlock as V, createElementVNode as a, unref as p, toDisplayString as s, createVNode as _, renderList as w, createTextVNode as P, withCtx as Le, isRef as ye } from "vue";
2
2
  import "@formkit/core";
3
- import { useFormKitNodeById as he } from "@formkit/vue";
3
+ import { useFormKitNodeById as Ne } from "@formkit/vue";
4
4
  import "@phosphor-icons/vue";
5
- import { useI18n as ge } from "vue-i18n";
5
+ import { useI18n as Fe } from "vue-i18n";
6
6
  import "vue-router";
7
- import { useStore as ye } from "vuex";
8
- import { useFormValues as me } from "../composables/useDpiFormValues.js";
9
- import C from "../HappyFlowComponents/ui/ButtonV3.vue.js";
10
- import be from "../HappyFlowComponents/ui/Chip.vue.js";
11
- import ae from "../HappyFlowComponents/ui/ModalSimpleV3.vue.js";
12
- import ke from "../HappyFlowComponents/ui/RapModal.vue.js";
13
- import se from "../HappyFlowComponents/ui/StateTag.vue.js";
14
- import Se from "../HappyFlowComponents/ui/TableRowV3.vue.js";
15
- import E from "../HappyFlowComponents/ui/TextButtonSmall.vue.js";
7
+ import { useStore as Oe } from "vuex";
8
+ import { useFormValues as Ue } from "../composables/useDpiFormValues.js";
9
+ import D from "../HappyFlowComponents/ui/ButtonV3.vue.js";
10
+ import We from "../HappyFlowComponents/ui/Chip.vue.js";
11
+ import me from "../HappyFlowComponents/ui/ModalSimpleV3.vue.js";
12
+ import Ge from "../HappyFlowComponents/ui/RapModal.vue.js";
13
+ import be from "../HappyFlowComponents/ui/StateTag.vue.js";
14
+ import Ye from "../HappyFlowComponents/ui/TableRowV3.vue.js";
15
+ import z from "../HappyFlowComponents/ui/TextButtonSmall.vue.js";
16
16
  /* empty css */
17
17
  /* empty css */
18
18
  /* empty css */
19
- import Ce from "../../_virtual/_plugin-vue_export-helper.js";
20
- import { useDpiContext as De } from "../composables/useDpiContext.js";
21
- const $e = { key: 0 }, Ve = {
19
+ import je from "../../_virtual/_plugin-vue_export-helper.js";
20
+ import { useDpiContext as Ke } from "../composables/useDpiContext.js";
21
+ const Xe = { key: 0 }, Ze = {
22
22
  key: 1,
23
23
  class: "dpiV3InnerComponentWrap V3-typography"
24
- }, xe = { class: "w-100" }, Be = { class: "dpiV3_Frame_831" }, Me = { key: 0 }, Te = {
24
+ }, qe = { class: "w-100" }, Je = { class: "dpiV3_Frame_831" }, Qe = { key: 0 }, Ie = {
25
25
  key: 1,
26
26
  class: "dpiV3_Frame_840"
27
- }, He = { class: "dpiV3_title" }, ze = { class: "dpiV3_intro copy-large-regular" }, Re = {
27
+ }, Ae = {
28
+ class: "dpiV3_title",
29
+ style: { "margin-bottom": "32px" }
30
+ }, et = { class: "dpiV3_intro copy-large-regular" }, tt = {
28
31
  key: 0,
29
32
  class: "dpiV3Card rapFindability"
30
- }, Ne = { class: "firstSec" }, Pe = { class: "secondSec" }, we = {
33
+ }, at = { class: "firstSec" }, st = { class: "secondSec" }, ot = {
31
34
  class: "copy-large-regular",
32
- style: { "margin-bottom": "4px" }
33
- }, Ee = { class: "thirdSec" }, Oe = { class: "headline-5" }, Fe = {
35
+ style: { "margin-bottom": "5px" }
36
+ }, it = {
37
+ key: 0,
38
+ class: "thirdSec"
39
+ }, lt = { class: "headline-5" }, nt = {
34
40
  key: 1,
35
41
  class: "dpiV3Card rapEssentials"
36
- }, Le = { class: "firstSec" }, je = { class: "secondSec" }, Ie = { class: "heading-3" }, Ke = { class: "thirdSec" }, We = { class: "fourthSec flexSec" }, Ue = { class: "copy-large-regular" }, Ge = { class: "copy-large-semi-bold" }, Ye = { class: "fifthSec flexSec" }, Ze = { class: "copy-large-regular" }, qe = { class: "headline-5" }, Je = { class: "copy-large-regular" }, Qe = ["href"], Xe = { class: "sixthSec flexSec" }, Ae = { class: "copy-large-regular" }, et = { class: "headline-5" }, tt = { class: "copy-large-regular" }, at = { class: "copy-large-regular" }, st = {
37
- key: 0,
38
- class: "dpiV3Card rapCoverage"
39
- }, ot = { class: "firstSec" }, lt = {
42
+ }, rt = { class: "firstSec" }, dt = { class: "secondSec" }, ct = { class: "heading-3" }, ut = { class: "thirdSec" }, pt = { class: "fourthSec flexSec" }, vt = { class: "copy-large-regular" }, ft = { class: "copy-large-semi-bold" }, ht = { class: "fifthSec flexSec" }, _t = { class: "copy-large-regular" }, gt = { class: "headline-5" }, yt = { class: "copy-large-regular" }, mt = ["href"], bt = { class: "sixthSec flexSec" }, St = { class: "copy-large-regular" }, kt = { class: "headline-5" }, Dt = { class: "copy-large-regular" }, Ct = { class: "copy-large-regular" }, $t = { class: "dpiV3Card rapCoverage" }, xt = { class: "firstSec" }, Vt = {
40
43
  key: 0,
41
44
  class: "secondSec flexSec"
42
- }, nt = { class: "rapHeadWrap" }, it = { class: "copy-large-regular" }, rt = { class: "coveragePlaceWrap" }, dt = { class: "headline-5" }, ct = {
45
+ }, wt = { class: "rapHeadWrap" }, Bt = { class: "copy-large-regular" }, Tt = { class: "coveragePlaceWrap" }, Mt = { class: "headline-5" }, Rt = {
43
46
  key: 1,
44
47
  class: "thirdSec"
45
- }, ut = { class: "rapHeadWrap" }, pt = { class: "copy-large-regular" }, vt = { class: "dpiV3_RapInnerCardWrapper" }, ft = { class: "dpiV3_RapInnerCard" }, _t = { class: "copy-small-regular" }, ht = { key: 0 }, gt = { class: "copy-small-regular" }, yt = { key: 0 }, mt = { class: "dpiV3Card rapDistribution" }, bt = { class: "firstSec" }, kt = { class: "secondSec flexSec" }, St = { class: "copy-large-regular" }, Ct = { class: "headline-5" }, Dt = { class: "thirdSec flexSec" }, $t = { class: "copy-large-regular" }, Vt = { class: "headline-5" }, xt = { class: "fourthSec flexSec" }, Bt = { class: "copy-large-regular" }, Mt = { class: "dpiV3_distCard" }, Tt = { class: "copy-large-semi-bold" }, Ht = {
46
- key: 1,
48
+ }, Ht = { class: "rapHeadWrap" }, Pt = { class: "copy-large-regular" }, zt = { class: "dpiV3_RapInnerCardWrapper" }, Et = { class: "dpiV3_RapInnerCard" }, Lt = { class: "copy-small-regular" }, Nt = { key: 0 }, Ft = { class: "copy-small-regular" }, Ot = { key: 0 }, Ut = { class: "dpiV3Card rapDistribution" }, Wt = { class: "firstSec" }, Gt = { class: "secondSec flexSec" }, Yt = { class: "copy-large-regular" }, jt = { class: "headline-5" }, Kt = {
49
+ key: 0,
50
+ class: "thirdSec flexSec"
51
+ }, Xt = { class: "copy-large-regular" }, Zt = { class: "headline-5" }, qt = { class: "fourthSec flexSec" }, Jt = { class: "copy-large-regular" }, Qt = { class: "dpiV3_distCard" }, It = ["href"], At = {
52
+ key: 0,
47
53
  class: "dpiV3Card rapDistribution"
48
- }, zt = { class: "firstSec" }, Rt = { class: "secondSec flexSec" }, Nt = { class: "dpiV3_optionalSpanHeadWrap" }, Pt = { class: "dpiV3_optionalSpan copy-large-regular" }, wt = { key: 0 }, Et = { key: 0 }, Ot = { key: 1 }, Ft = { key: 2 }, Lt = { key: 3 }, jt = { key: 4 }, It = { key: 5 }, Kt = { key: 6 }, Wt = { class: "dpiV3_tempAddMore" }, Ut = {
49
- key: 2,
54
+ }, ea = { class: "firstSec" }, ta = { class: "secondSec flexSec" }, aa = { class: "dpiV3_optionalSpanHeadWrap" }, sa = { class: "dpiV3_optionalSpan copy-large-regular" }, oa = { key: 0 }, ia = { key: 0 }, la = { key: 1 }, na = { key: 2 }, ra = { key: 3 }, da = { key: 4 }, ca = { key: 5 }, ua = { key: 6 }, pa = { key: 7 }, va = { key: 8 }, fa = { key: 9 }, ha = { class: "dpiV3_tempAddMore" }, _a = {
55
+ key: 1,
50
56
  class: "dpiV3_tempAddMore"
51
- }, Gt = {
57
+ }, ga = {
52
58
  __name: "ReviewAndPublishPage",
53
59
  props: {
54
60
  context: Object
55
61
  },
56
- setup(oe) {
57
- const { t: O } = ge(), D = De();
58
- v(() => {
62
+ setup(Se) {
63
+ const { t: E } = Fe(), C = Ke();
64
+ f(() => {
59
65
  var e;
60
- return !!((e = D.value.edit) != null && e.enabled);
66
+ return !!((e = C.value.edit) != null && e.enabled);
61
67
  });
62
- let F = h(D.value.edit.enabled && !D.value.edit.fromDraft);
63
- console.log(F), h([{ isValid: !0 }]), h(!1), ye(), h(null);
64
- let y = h(!1), m = h({});
65
- const L = h(!1), { formValues: p } = me();
66
- he("dpiForm", (e) => {
68
+ let ke = g(
69
+ C.value.edit.enabled && !C.value.edit.fromDraft
70
+ );
71
+ const De = () => {
72
+ d.value.Covering["dcat:temporalResolution"] = {};
73
+ };
74
+ g([{ isValid: !0 }]), g(!1), Oe(), g(null);
75
+ let y = g(!1), m = g({});
76
+ const L = g(!1), { formValues: d } = Ue();
77
+ Ne("dpiForm", (e) => {
67
78
  L.value = !0;
68
79
  });
69
- function le(e) {
70
- let t, i, d, g, V, x;
71
- return e.forEach((f) => {
72
- f.Year && (t = Number.parseInt(f.Year)), f.Month && (i = Number.parseInt(f.Month) - 1), f.Day && (d = Number.parseInt(f.Day)), f.Hour && (g = Number.parseInt(f.Hour)), f.Minute && (V = Number.parseInt(f.Minute)), f.Second && (x = Number.parseInt(f.Second));
80
+ function Ce(e) {
81
+ let t, r, c, v, $, x;
82
+ return e.forEach((h) => {
83
+ h.Year && (t = Number.parseInt(h.Year)), h.Month && (r = Number.parseInt(h.Month) - 1), h.Day && (c = Number.parseInt(h.Day)), h.Hour && (v = Number.parseInt(h.Hour)), h.Minute && ($ = Number.parseInt(h.Minute)), h.Second && (x = Number.parseInt(h.Second));
73
84
  }), new Date(
74
85
  t || 2025,
75
- i || 0,
76
- d || 1,
77
- g || 0,
78
- V || 0,
86
+ r || 0,
87
+ c || 1,
88
+ v || 0,
89
+ $ || 0,
79
90
  x || 0
80
91
  ).toLocaleString("de", {
81
92
  timeZone: "Europe/Berlin",
82
93
  timeZoneName: "short"
83
94
  });
84
95
  }
85
- const j = h(), $ = h(!1);
86
- function H(e) {
96
+ const N = g(), M = g(!1);
97
+ function F(e) {
87
98
  return !(Object.keys(e).includes("isValid") && Object.keys(e).length === 1);
88
99
  }
89
- const ne = v(() => {
90
- var t, i;
91
- const e = (i = (t = p.value) == null ? void 0 : t.Discoverability) == null ? void 0 : i.discoverabilityPage;
92
- return Array.isArray(e) ? (e == null ? void 0 : e.filter(H)) || [] : [];
93
- }), ie = v(() => {
100
+ const $e = f(() => {
101
+ var t, r;
102
+ const e = (r = (t = d.value) == null ? void 0 : t.Discoverability) == null ? void 0 : r.discoverabilityPage;
103
+ return Array.isArray(e) ? (e == null ? void 0 : e.filter(F)) || [] : [];
104
+ }), O = f(() => {
94
105
  var e, t;
95
- return ((t = (e = p.value) == null ? void 0 : e.Discoverability) == null ? void 0 : t.hvdPage) || [];
96
- }), re = v(() => {
97
- var i, d;
98
- const e = (d = (i = p.value) == null ? void 0 : i.BasicInfos) == null ? void 0 : d["dct:title"], t = e == null ? void 0 : e.find((g) => g["@language"] === "de");
106
+ return ((t = (e = d.value) == null ? void 0 : e.Discoverability) == null ? void 0 : t.hvdPage) || [];
107
+ }), xe = f(() => {
108
+ var r, c;
109
+ const e = (c = (r = d.value) == null ? void 0 : r.BasicInfos) == null ? void 0 : c["dct:title"], t = e == null ? void 0 : e.find((v) => v["@language"] === "de");
99
110
  return t ? t["@value"] : null;
100
- }), de = v(() => {
101
- var e, t, i, d;
102
- return ((d = (i = (t = (e = p.value) == null ? void 0 : e.BasicInfos) == null ? void 0 : t["dct:description"]) == null ? void 0 : i[0]) == null ? void 0 : d["@value"]) || "";
103
- }), I = v(() => {
104
- var t, i, d, g;
105
- const e = (g = (d = (i = (t = p.value) == null ? void 0 : t.BasicInfos) == null ? void 0 : i["dct:modified"]) == null ? void 0 : d[0]) == null ? void 0 : g["@value"];
106
- return e ? new Date(e).toLocaleDateString("de-DE") : "";
107
- }), T = v(() => {
108
- var e, t, i;
109
- return ((i = (t = (e = p.value) == null ? void 0 : e.BasicInfos) == null ? void 0 : t["dct:publisher"]) == null ? void 0 : i[0]) || {};
110
- }), z = v(() => {
111
- var e, t, i;
112
- return ((i = (t = (e = p.value) == null ? void 0 : e.BasicInfos) == null ? void 0 : t["dcat:contactPoint"]) == null ? void 0 : i[0]) || {};
113
- }), R = v(() => {
114
- var e, t, i, d;
115
- return ((d = (i = (t = (e = p.value) == null ? void 0 : e.Covering) == null ? void 0 : t["dcatde:politicalGeocodingURI"]) == null ? void 0 : i.filter(
116
- H
117
- )) == null ? void 0 : d[0]) || {};
118
- }), N = v(() => {
119
- var e, t, i, d;
120
- return ((d = (i = (t = (e = p.value) == null ? void 0 : e.Covering) == null ? void 0 : t["dcat:temporalResolution"]) == null ? void 0 : i.filter(
121
- H
122
- )) == null ? void 0 : d[0]) || {};
123
- }), K = v(() => Object.keys(R.value).length > 1), W = v(() => Object.keys(N.value).length > 1 && N.value["dct:temporal"]);
124
- let P = h();
125
- P = v(() => {
126
- var e, t, i;
127
- return ((i = (t = (e = p.value) == null ? void 0 : e.DistributionSimple) == null ? void 0 : t["dct:license"]) == null ? void 0 : i[0]) || {};
111
+ }), Ve = f(() => {
112
+ var e, t, r, c;
113
+ return ((c = (r = (t = (e = d.value) == null ? void 0 : e.BasicInfos) == null ? void 0 : t["dct:description"]) == null ? void 0 : r[0]) == null ? void 0 : c["@value"]) || "";
114
+ }), U = f(() => {
115
+ var t, r, c, v;
116
+ const e = (v = (c = (r = (t = d.value) == null ? void 0 : t.BasicInfos) == null ? void 0 : r["dct:modified"]) == null ? void 0 : c[0]) == null ? void 0 : v["@value"];
117
+ return e ? new Date(e).toLocaleDateString("de-DE", {
118
+ day: "2-digit",
119
+ month: "2-digit",
120
+ year: "numeric"
121
+ }) : "";
122
+ }), B = f(() => {
123
+ var e, t, r;
124
+ return ((r = (t = (e = d.value) == null ? void 0 : e.BasicInfos) == null ? void 0 : t["dct:publisher"]) == null ? void 0 : r[0]) || {};
125
+ }), R = f(() => {
126
+ var e, t, r;
127
+ return ((r = (t = (e = d.value) == null ? void 0 : e.BasicInfos) == null ? void 0 : t["dcat:contactPoint"]) == null ? void 0 : r[0]) || {};
128
+ }), H = f(() => {
129
+ var e, t, r, c;
130
+ return ((c = (r = (t = (e = d.value) == null ? void 0 : e.Covering) == null ? void 0 : t["dcatde:politicalGeocodingURI"]) == null ? void 0 : r.filter(
131
+ F
132
+ )) == null ? void 0 : c[0]) || {};
133
+ }), T = f(() => {
134
+ var e, t;
135
+ return ((t = (e = d.value) == null ? void 0 : e.Covering) == null ? void 0 : t["dcat:temporalResolution"]) || {};
136
+ }), we = () => {
137
+ d.value.Covering["dcatde:politicalGeocodingURI"] = [{ isValid: !0 }];
138
+ }, Be = f(() => Object.keys(H.value).length > 1), Te = f(() => {
139
+ var e;
140
+ return ((e = T.value["dct:temporal"]) == null ? void 0 : e.length) > 0 && T.value["dct:temporal"][0]["dcat:startDate"] != "" && T.value["dct:temporal"][0]["dcat:endDate"] != "";
128
141
  });
129
- const ce = v(() => {
142
+ let W = g();
143
+ W = f(() => {
144
+ var e, t, r, c, v;
145
+ return ((v = (c = (r = (t = (e = d.value) == null ? void 0 : e.DistributionSimple) == null ? void 0 : t["dcat:distribution"]) == null ? void 0 : r[0]) == null ? void 0 : c["dct:license"]) == null ? void 0 : v[0]) || {};
146
+ });
147
+ const Me = f(() => {
130
148
  var e, t;
131
- return ((t = (e = p.value) == null ? void 0 : e.DistributionSimple) == null ? void 0 : t["dcat:distribution"]) || [];
132
- }), b = v(() => {
149
+ return ((t = (e = d.value) == null ? void 0 : e.DistributionSimple) == null ? void 0 : t["dcat:distribution"]) || [];
150
+ }), b = f(() => {
133
151
  var e;
134
- return ((e = p.value) == null ? void 0 : e.Additionals) || {};
135
- }), U = v(() => (Object.keys(b.value).forEach((e) => {
152
+ return ((e = d.value) == null ? void 0 : e.Additionals) || {};
153
+ }), G = f(() => (Object.keys(b.value).forEach((e) => {
136
154
  if (b.value.hasOwnProperty(e)) {
137
155
  const t = b.value[e];
138
156
  (t === void 0 || Array.isArray(t) && t.length === 0) && delete b.value[e];
139
157
  }
140
- }), Object.keys(b.value))), G = v(() => U.value.length > 0);
141
- function S(e) {
142
- j.value = e, $.value = !0, console.log("Modal sichtbar:", $.value);
158
+ }), Object.keys(b.value))), Re = (e) => {
159
+ const t = e.split("-");
160
+ if (t.length !== 3)
161
+ throw new Error("Ungültiges Format, erwartet YYYY-MM-DD");
162
+ let [r, c, v] = t;
163
+ if (v = v.padStart(2, "0"), c = c.padStart(2, "0"), !/^\d{4}$/.test(r) || !/^\d{2}$/.test(c) || !/^\d{2}$/.test(v))
164
+ throw new Error("Ungültige Datenteile");
165
+ return `${v}.${c}.${r}`;
166
+ }, Y = f(() => G.value.length > 0);
167
+ function k(e) {
168
+ N.value = e, M.value = !0, document.body.style.overflow = "hidden";
143
169
  }
144
- function ue() {
145
- $.value = !1, console.log("Modal unsichtbar:", $.value);
170
+ function He() {
171
+ document.body.style.overflow = "", M.value = !1;
146
172
  }
147
- function Y(e) {
148
- delete p.value.Additionals[e];
173
+ function j(e) {
174
+ delete d.value.Additionals[e];
149
175
  }
150
- function pe(e, t) {
176
+ function Pe(e, t) {
151
177
  y.value = !0, m.value = {
152
178
  button: "Löschen",
153
- header: `${O(`message.dataupload.additionals.${e}`)} löschen`,
154
- text: `Sind Sie sicher, dass Sie das optionale Feld ${O(`message.dataupload.additionals.${e}`)} löschen wollen?`,
179
+ header: `${E(`message.dataupload.additionals.${e}`)} löschen`,
180
+ text: `Sind Sie sicher, dass Sie das optionale Feld ${E(
181
+ `message.dataupload.additionals.${e}`
182
+ )} löschen wollen?`,
155
183
  action: e
156
184
  };
157
185
  }
158
- const Z = h(!1);
159
- return ve(() => {
160
- Z.value = !0;
186
+ const K = g(!1);
187
+ return ze(() => {
188
+ K.value = !0;
161
189
  }), (e, t) => {
162
- var d, g, V, x, f, q, J, Q, X, A, ee;
163
- const i = fe("formatbubble");
164
- return o(), n(k, null, [
165
- Z.value && L.value ? (o(), n("div", $e, [
166
- $.value ? (o(), B(ke, {
190
+ var c, v, $, x, h, X, Z, q, J, Q, I, A, ee, te, ae, se, oe, ie, le, ne, re, de, ce, ue, pe, ve, fe, he, _e, ge;
191
+ const r = Ee("formatbubble");
192
+ return i(), l(S, null, [
193
+ K.value && L.value ? (i(), l("div", Xe, [
194
+ M.value ? (i(), V(Ge, {
167
195
  key: 0,
168
- context: oe.context,
169
- "active-section": j.value,
170
- onClose: ue
171
- }, null, 8, ["context", "active-section"])) : c("", !0),
172
- (o(), n("div", Ve, [
173
- a("div", xe, [
174
- a("div", Be, [
175
- u(D).edit.fromDraft || u(D).edit.enabled ? (o(), n("div", Me, [
176
- (o(), B(Se, {
177
- id: (g = (d = u(p).value) == null ? void 0 : d.BasicInfos) == null ? void 0 : g.datasetID,
178
- key: (x = (V = u(p).value) == null ? void 0 : V.BasicInfos) == null ? void 0 : x.datasetID,
179
- "data-cy": u(p).value,
196
+ context: Se.context,
197
+ "active-section": N.value,
198
+ onClose: He
199
+ }, null, 8, ["context", "active-section"])) : u("", !0),
200
+ (i(), l("div", Ze, [
201
+ a("div", qe, [
202
+ a("div", Je, [
203
+ p(C).edit.fromDraft || p(C).edit.enabled ? (i(), l("div", Qe, [
204
+ (i(), V(Ye, {
205
+ id: (v = (c = p(d).value) == null ? void 0 : c.BasicInfos) == null ? void 0 : v.datasetID,
206
+ key: (x = ($ = p(d).value) == null ? void 0 : $.BasicInfos) == null ? void 0 : x.datasetID,
207
+ "data-cy": p(d).value,
180
208
  catalogue: "test-catalog",
181
- text: ((q = (f = u(p).value) == null ? void 0 : f.BasicInfos) == null ? void 0 : q.title.de) || ((Q = (J = u(p).value) == null ? void 0 : J.BasicInfos) == null ? void 0 : Q.title.en),
182
- date: I.value,
183
- draft: !u(F),
209
+ text: ((X = (h = p(d).value) == null ? void 0 : h.BasicInfos) == null ? void 0 : X.title.de) || ((q = (Z = p(d).value) == null ? void 0 : Z.BasicInfos) == null ? void 0 : q.title.en),
210
+ date: U.value,
211
+ draft: !p(ke),
184
212
  dataset: e.dataset,
185
213
  "from-draft": "true"
186
214
  }, null, 8, ["id", "data-cy", "text", "date", "draft", "dataset"]))
187
- ])) : (o(), n("div", Te, [
188
- a("h4", He, s(e.$t("message.dataupload.datasets.rap.title")), 1),
189
- a("div", ze, s(e.$t("message.dataupload.datasets.rap.intro-text")), 1)
215
+ ])) : (i(), l("div", Ie, [
216
+ a("h4", Ae, s(e.$t("message.dataupload.datasets.rap.title")), 1),
217
+ a("div", et, s(e.$t("message.dataupload.datasets.rap.intro-text")), 1)
190
218
  ]))
191
219
  ])
192
220
  ]),
193
- (o(), n("div", Re, [
194
- a("div", Ne, [
221
+ (i(), l("div", tt, [
222
+ a("div", at, [
195
223
  a("span", null, s(e.$t("message.dataupload.datasets.rap.findability.title")), 1),
196
- _(C, {
224
+ _(D, {
197
225
  size: "large",
198
226
  "icon-start": "pen",
199
227
  variant: "secondary",
200
- onClick: t[0] || (t[0] = (l) => S("findabilityHvd"))
228
+ onClick: t[0] || (t[0] = (n) => k("findabilityHvd"))
201
229
  })
202
230
  ]),
203
- a("div", Pe, [
204
- a("span", we, s(e.$t("message.dataupload.datasets.rap.findability.categoryHeader")), 1),
205
- (o(!0), n(k, null, M(ne.value, (l, r) => (o(), B(be, {
206
- key: r,
207
- text: l.label,
208
- data: { "@value": l.value, URI: l.URI },
231
+ a("div", st, [
232
+ a("div", ot, s(e.$t("message.dataupload.datasets.rap.findability.categoryHeader")), 1),
233
+ (i(!0), l(S, null, w($e.value, (n, o) => (i(), V(We, {
234
+ key: o,
235
+ text: n.label,
236
+ data: { "@value": n.value, URI: n.URI },
209
237
  setup: {
210
238
  "@type": "static",
211
239
  "@inTable": !1,
@@ -213,132 +241,154 @@ const $e = { key: 0 }, Ve = {
213
241
  }
214
242
  }, null, 8, ["text", "data"]))), 128))
215
243
  ]),
216
- a("div", Ee, [
217
- _(se, {
244
+ (Q = (J = O.value) == null ? void 0 : J[0]) != null && Q.label ? (i(), l("div", it, [
245
+ _(be, {
218
246
  label: "HVD",
219
247
  state: "hvd",
220
248
  size: "page"
221
249
  }),
222
- a("h5", Oe, s(((A = (X = ie.value) == null ? void 0 : X[0]) == null ? void 0 : A.label) || "Kein HVD Datensatz"), 1)
223
- ])
250
+ a("h5", lt, s((A = (I = O.value) == null ? void 0 : I[0]) == null ? void 0 : A.label), 1)
251
+ ])) : u("", !0)
224
252
  ])),
225
- (o(), n("div", Fe, [
226
- a("div", Le, [
253
+ (i(), l("div", nt, [
254
+ a("div", rt, [
227
255
  a("span", null, s(e.$t("message.dataupload.datasets.rap.essentials.title")), 1),
228
- _(C, {
256
+ _(D, {
229
257
  size: "large",
230
258
  "icon-start": "pen",
231
259
  variant: "secondary",
232
- onClick: t[1] || (t[1] = (l) => S("essentials"))
260
+ onClick: t[1] || (t[1] = (n) => k("essentials"))
233
261
  })
234
262
  ]),
235
- a("div", je, [
236
- a("h3", Ie, s(re.value), 1)
263
+ a("div", dt, [
264
+ a("h3", ct, s(xe.value), 1)
237
265
  ]),
238
- a("div", Ke, [
239
- a("span", null, s(de.value), 1)
266
+ a("div", ut, [
267
+ a("span", null, s(Ve.value), 1)
240
268
  ]),
241
- a("div", We, [
242
- a("span", Ue, s(e.$t("message.dataupload.datasets.rap.essentials.modifiedHeader")), 1),
243
- a("span", Ge, s(I.value), 1)
269
+ a("div", pt, [
270
+ a("span", vt, s(e.$t("message.dataupload.datasets.rap.essentials.modifiedHeader")), 1),
271
+ a("span", ft, s(U.value), 1)
244
272
  ]),
245
- a("div", Ye, [
246
- a("span", Ze, s(e.$t("message.dataupload.datasets.rap.essentials.publisherHeader")), 1),
247
- a("h5", qe, s(T.value["foaf:name"] || ""), 1),
248
- a("a", Je, s(T.value["foaf:mbox"] || ""), 1),
273
+ a("div", ht, [
274
+ a("span", _t, s(e.$t("message.dataupload.datasets.rap.essentials.publisherHeader")), 1),
275
+ a("h5", gt, s(B.value["foaf:name"] || ""), 1),
276
+ a("a", yt, s(B.value["foaf:mbox"] || ""), 1),
249
277
  a("a", {
250
278
  class: "copy-large-regular",
251
- href: T.value["foaf:homepage"] || ""
252
- }, s(T.value["foaf:homepage"] || ""), 9, Qe)
279
+ href: B.value["foaf:homepage"] || ""
280
+ }, s(B.value["foaf:homepage"] || ""), 9, mt)
253
281
  ]),
254
- a("div", Xe, [
255
- a("span", Ae, s(e.$t("message.dataupload.datasets.rap.essentials.contactHeader")), 1),
256
- a("h5", et, s(z.value["vcard:fn"] || ""), 1),
257
- a("a", tt, s(z.value["vcard:hasEmail"] || ""), 1),
258
- a("span", at, s(z.value["vcard:hasTelephone"] || ""), 1)
282
+ a("div", bt, [
283
+ a("span", St, s(e.$t("message.dataupload.datasets.rap.essentials.contactHeader")), 1),
284
+ a("h5", kt, s(R.value["vcard:fn"] || ""), 1),
285
+ a("a", Dt, s(R.value["vcard:hasEmail"] || ""), 1),
286
+ a("span", Ct, s(R.value["vcard:hasTelephone"] || ""), 1)
259
287
  ])
260
288
  ])),
261
- (o(), n(k, { key: 2 }, [
262
- K.value || W.value ? (o(), n("div", st, [
263
- a("div", ot, [
289
+ (i(), l(S, { key: 2 }, [
290
+ a("div", $t, [
291
+ a("div", xt, [
264
292
  a("span", null, s(e.$t("message.dataupload.datasets.rap.coverage.title")), 1),
265
- _(C, {
293
+ _(D, {
266
294
  size: "large",
267
295
  "icon-start": "pen",
268
296
  variant: "secondary",
269
- onClick: t[2] || (t[2] = (l) => S("coverage"))
297
+ onClick: t[2] || (t[2] = (n) => k("coverage"))
270
298
  })
271
299
  ]),
272
- K.value ? (o(), n("div", lt, [
273
- a("div", nt, [
274
- a("span", it, s(e.$t("message.dataupload.datasets.rap.coverage.geopolTitle")), 1),
275
- _(E, { "button-text": "löschen" })
300
+ Be.value ? (i(), l("div", Vt, [
301
+ a("div", wt, [
302
+ a("span", Bt, s(e.$t("message.dataupload.datasets.rap.coverage.geopolTitle")), 1),
303
+ _(z, {
304
+ "button-text": "löschen",
305
+ onClick: we
306
+ })
276
307
  ]),
277
- a("div", rt, [
278
- a("h5", dt, s(R.value.label || ""), 1),
279
- _(se, {
280
- label: ((ee = R.value.inVoc) == null ? void 0 : ee.toUpperCase()) || "",
308
+ a("div", Tt, [
309
+ a("h5", Mt, s(H.value.label || ""), 1),
310
+ _(be, {
311
+ label: ((ee = H.value.inVoc) == null ? void 0 : ee.toUpperCase()) || "",
281
312
  state: "geopolitical",
282
313
  size: "page"
283
314
  }, null, 8, ["label"])
284
315
  ])
285
- ])) : c("", !0),
286
- W.value ? (o(), n("div", ct, [
287
- a("div", ut, [
288
- a("span", pt, s(e.$t("message.dataupload.datasets.rap.coverage.tempCoverage")), 1),
289
- _(E, { "button-text": "löschen" })
316
+ ])) : u("", !0),
317
+ Te.value ? (i(), l("div", Rt, [
318
+ a("div", Ht, [
319
+ a("span", Pt, s(e.$t("message.dataupload.datasets.rap.coverage.tempCoverage")), 1),
320
+ _(z, {
321
+ "button-text": "löschen",
322
+ onClick: De
323
+ })
290
324
  ]),
291
- a("div", vt, [
292
- (o(!0), n(k, null, M(N.value["dct:temporal"] || [], (l) => (o(), n("div", ft, [
293
- a("div", _t, [
294
- t[10] || (t[10] = w(" von: ", -1)),
325
+ a("div", zt, [
326
+ (i(!0), l(S, null, w(T.value["dct:temporal"] || [], (n) => (i(), l("div", Et, [
327
+ a("div", Lt, [
328
+ t[10] || (t[10] = P(" Von ", -1)),
295
329
  a("div", null, [
296
- a("span", null, s(new Date(l["dcat:startDate"]).toLocaleDateString(
297
- "de-DE"
330
+ a("span", null, s(new Date(n["dcat:startDate"]).toLocaleDateString(
331
+ "de-DE",
332
+ {
333
+ day: "2-digit",
334
+ month: "2-digit",
335
+ year: "numeric"
336
+ }
298
337
  )), 1),
299
- l.startTime != null ? (o(), n("span", ht, s(l.startTime), 1)) : c("", !0)
338
+ n.startTime != null ? (i(), l("span", Nt, s(n.startTime), 1)) : u("", !0)
300
339
  ])
301
340
  ]),
302
- a("div", gt, [
303
- t[11] || (t[11] = w(" bis: ", -1)),
341
+ a("div", Ft, [
342
+ t[11] || (t[11] = P(" Bis ", -1)),
304
343
  a("div", null, [
305
- a("span", null, s(new Date(l["dcat:endDate"]).toLocaleDateString(
306
- "de-DE"
344
+ a("span", null, s(new Date(n["dcat:endDate"]).toLocaleDateString(
345
+ "de-DE",
346
+ {
347
+ day: "2-digit",
348
+ month: "2-digit",
349
+ year: "numeric"
350
+ }
307
351
  )), 1),
308
- l.endTime != null ? (o(), n("span", yt, s(l.endTime), 1)) : c("", !0)
352
+ n.endTime != null ? (i(), l("span", Ot, s(n.endTime), 1)) : u("", !0)
309
353
  ])
310
354
  ])
311
355
  ]))), 256))
312
356
  ])
313
- ])) : c("", !0)
314
- ])) : c("", !0),
315
- a("div", mt, [
316
- a("div", bt, [
357
+ ])) : u("", !0)
358
+ ]),
359
+ a("div", Ut, [
360
+ a("div", Wt, [
317
361
  a("span", null, s(e.$t("message.metadata.distributions")), 1),
318
- _(C, {
362
+ _(D, {
319
363
  size: "large",
320
364
  "icon-start": "pen",
321
365
  variant: "secondary",
322
- onClick: t[3] || (t[3] = (l) => S("distributions"))
366
+ onClick: t[3] || (t[3] = (n) => k("distributions"))
323
367
  })
324
368
  ]),
325
- a("div", kt, [
326
- a("span", St, s(e.$t("message.dataupload.steps.dct:license")), 1),
327
- a("h5", Ct, s(u(P)["dcterms:license"] || "Keine Lizenz angegeben"), 1)
328
- ]),
329
- a("div", Dt, [
330
- a("span", $t, s(e.$t("message.dataupload.steps.dct:publisher")), 1),
331
- a("h5", Vt, s(u(P).title || "Kein Titel angegeben"), 1)
369
+ a("div", Gt, [
370
+ a("span", Yt, s(e.$t("message.dataupload.steps.dct:license")), 1),
371
+ a("h5", jt, s(p(W)["dcterms:license"] || ((se = (ae = (te = p(d).DistributionSimple) == null ? void 0 : te["dct:license"]) == null ? void 0 : ae[0]) == null ? void 0 : se["dcterms:license"]) || "Keine Lizenz angegeben"), 1)
332
372
  ]),
333
- a("div", xt, [
334
- a("span", Bt, s(e.$t("message.dataupload.steps.dcat:distribution")), 1),
335
- (o(!0), n(k, null, M(ce.value, (l) => (o(), n("div", Mt, [
336
- a("span", Tt, s(l["dct:title"]), 1),
337
- _(i, null, {
338
- default: _e(() => {
339
- var r;
373
+ (le = (ie = (oe = p(d).DistributionSimple) == null ? void 0 : oe["dct:license"]) == null ? void 0 : ie[0]) != null && le.title || (ce = (de = (re = (ne = p(d)) == null ? void 0 : ne.DistributionSimple) == null ? void 0 : re["dcat:distribution"]) == null ? void 0 : de[0]) != null && ce["dcatde:licenseAttributionByText"] ? (i(), l("div", Kt, [
374
+ a("span", Xt, s(e.$t(
375
+ "message.dataupload.datasets.dcat:distribution.advanced.dcatde:licenseAttributionByText"
376
+ )), 1),
377
+ a("h5", Zt, s(((ve = (pe = (ue = p(d).DistributionSimple) == null ? void 0 : ue["dct:license"]) == null ? void 0 : pe[0]) == null ? void 0 : ve.title) || ((ge = (_e = (he = (fe = p(d)) == null ? void 0 : fe.DistributionSimple) == null ? void 0 : he["dcat:distribution"]) == null ? void 0 : _e[0]) == null ? void 0 : ge["dcatde:licenseAttributionByText"])), 1)
378
+ ])) : u("", !0),
379
+ a("div", qt, [
380
+ a("span", Jt, s(e.$t("message.dataupload.steps.dcat:distribution")), 1),
381
+ (i(!0), l(S, null, w(Me.value, (n) => (i(), l("div", Qt, [
382
+ a("a", {
383
+ class: "copy-large-semi-bold",
384
+ href: n["dcat:accessURL"],
385
+ target: "_blank"
386
+ }, s(n["dct:title"] || n["dcat:accessURL"]), 9, It),
387
+ _(r, null, {
388
+ default: Le(() => {
389
+ var o;
340
390
  return [
341
- w(s(((r = l["dct:format"]) == null ? void 0 : r.label) || "Kein Format angegeben"), 1)
391
+ P(s(((o = n["dct:format"]) == null ? void 0 : o.label) || "Kein Format angegeben"), 1)
342
392
  ];
343
393
  }),
344
394
  _: 2
@@ -346,77 +396,81 @@ const $e = { key: 0 }, Ve = {
346
396
  ]))), 256))
347
397
  ])
348
398
  ]),
349
- G.value ? (o(), n("div", Ht, [
350
- a("div", zt, [
399
+ Y.value ? (i(), l("div", At, [
400
+ a("div", ea, [
351
401
  a("span", null, s(e.$t("message.metadata.additionals")), 1)
352
402
  ]),
353
- (o(!0), n(k, null, M(U.value, (l) => (o(), n("div", Rt, [
354
- a("div", Nt, [
355
- a("span", Pt, s(e.$t(`message.dataupload.additionals.${l}`)) + " (optional)", 1),
356
- _(E, {
403
+ (i(!0), l(S, null, w(G.value, (n) => (i(), l("div", ta, [
404
+ a("div", aa, [
405
+ a("span", sa, s(e.$t(`message.dataupload.additionals.${n}`)) + " (optional)", 1),
406
+ _(z, {
357
407
  "button-text": "löschen",
358
- onClick: (r) => pe(l)
408
+ onClick: (o) => Pe(n)
359
409
  }, null, 8, ["onClick"])
360
410
  ]),
361
- l === "dcat:temporalResolution" ? (o(), n("div", wt, [
362
- a("span", null, s(le(b.value[l] || [])), 1)
363
- ])) : c("", !0),
364
- l != "dcat:temporalResolution" ? (o(!0), n(k, { key: 1 }, M(b.value[l] || [], (r) => (o(), n("div", {
365
- key: r ? r["@id"] || r["@value"] || r["rdfs:label"] : null
411
+ n === "dcat:temporalResolution" ? (i(), l("div", oa, [
412
+ a("span", null, s(Ce(b.value[n] || [])), 1)
413
+ ])) : u("", !0),
414
+ n != "dcat:temporalResolution" ? (i(!0), l(S, { key: 1 }, w(b.value[n] || [], (o) => (i(), l("div", {
415
+ class: "additionalSubPropsWrapper",
416
+ key: o ? o["@id"] || o["@value"] || o["rdfs:label"] : null
366
417
  }, [
367
- r && r["@value"] ? (o(), n("span", Et, s(r["@value"]), 1)) : c("", !0),
368
- r && r["@id"] ? (o(), n("span", Ot, s(r["@id"]), 1)) : c("", !0),
369
- r && r["rdfs:label"] ? (o(), n("span", Ft, s(r["rdfs:label"]), 1)) : c("", !0),
370
- r && r["foaf:name"] ? (o(), n("span", Lt, s(r["foaf:name"]), 1)) : c("", !0),
371
- r && r["foaf:homepage"] ? (o(), n("span", jt, s(r["foaf:homepage"]), 1)) : c("", !0),
372
- r && r["foaf:mbox"] ? (o(), n("span", It, s(r["foaf:mbox"]), 1)) : c("", !0),
373
- r && r["rdf:type"] ? (o(), n("span", Kt, s(r["rdf:type"]), 1)) : c("", !0)
374
- ]))), 128)) : c("", !0)
418
+ o && o["rdf:type"] ? (i(), l("span", ia, s(o["rdf:type"]), 1)) : u("", !0),
419
+ o && o["@type"] === "http://www.w3.org/2001/XMLSchema#date" ? (i(), l("span", la, s(Re(o["@value"])), 1)) : u("", !0),
420
+ o && o["@value"] && o["@type"] !== "http://www.w3.org/2001/XMLSchema#date" ? (i(), l("span", na, s(o["@value"]), 1)) : u("", !0),
421
+ o && o["dct:title"] ? (i(), l("span", ra, s(o["dct:title"]), 1)) : u("", !0),
422
+ o && o["dct:description"] ? (i(), l("span", da, s(o["dct:description"]), 1)) : u("", !0),
423
+ o && o["@id"] ? (i(), l("span", ca, s(o["@id"]), 1)) : u("", !0),
424
+ o && o["rdfs:label"] ? (i(), l("span", ua, s(o["rdfs:label"]), 1)) : u("", !0),
425
+ o && o["foaf:name"] ? (i(), l("span", pa, s(o["foaf:name"]), 1)) : u("", !0),
426
+ o && o["foaf:homepage"] ? (i(), l("span", va, s(o["foaf:homepage"]), 1)) : u("", !0),
427
+ o && o["foaf:mbox"] ? (i(), l("span", fa, s(o["foaf:mbox"]), 1)) : u("", !0)
428
+ ]))), 128)) : u("", !0)
375
429
  ]))), 256)),
376
- a("div", Wt, [
377
- _(C, {
430
+ a("div", ha, [
431
+ _(D, {
378
432
  "button-text": "Optionale Informationen hinzufügen",
379
433
  size: "large",
380
434
  "icon-start": "plus",
381
435
  variant: "tertiary",
382
- onClick: t[4] || (t[4] = (l) => S("additionals"))
436
+ onClick: t[4] || (t[4] = (n) => k("additionals"))
383
437
  })
384
438
  ])
385
- ])) : c("", !0),
386
- G.value ? c("", !0) : (o(), n("div", Ut, [
387
- _(C, {
439
+ ])) : u("", !0),
440
+ Y.value ? u("", !0) : (i(), l("div", _a, [
441
+ _(D, {
388
442
  "button-text": "Optionale Informationen hinzufügen",
389
443
  size: "large",
390
444
  "icon-start": "plus",
391
445
  variant: "tertiary",
392
- onClick: t[5] || (t[5] = (l) => S("additionals"))
446
+ onClick: t[5] || (t[5] = (n) => k("additionals"))
393
447
  })
394
448
  ]))
395
449
  ], 64))
396
450
  ])),
397
- u(y) ? (o(), B(ae, {
451
+ p(y) ? (i(), V(me, {
398
452
  key: 2,
399
- buttons: u(m).button,
400
- "header-text": u(m).header,
401
- text: u(m).text,
402
- action: u(m).action,
403
- onClose: t[6] || (t[6] = (l) => te(y) ? y.value = !1 : y = !1),
404
- onActionHandling: t[7] || (t[7] = (l) => Y(l))
405
- }, null, 8, ["buttons", "header-text", "text", "action"])) : c("", !0)
406
- ])) : c("", !0),
407
- u(y) ? (o(), B(ae, {
453
+ buttons: p(m).button,
454
+ "header-text": p(m).header,
455
+ text: p(m).text,
456
+ action: p(m).action,
457
+ onClose: t[6] || (t[6] = (n) => ye(y) ? y.value = !1 : y = !1),
458
+ onActionHandling: t[7] || (t[7] = (n) => j(n))
459
+ }, null, 8, ["buttons", "header-text", "text", "action"])) : u("", !0)
460
+ ])) : u("", !0),
461
+ p(y) ? (i(), V(me, {
408
462
  key: 1,
409
- buttons: u(m).button,
410
- "header-text": u(m).header,
411
- text: u(m).text,
412
- action: u(m).action,
413
- onClose: t[8] || (t[8] = (l) => te(y) ? y.value = !1 : y = !1),
414
- onActionHandling: t[9] || (t[9] = (l) => Y(l))
415
- }, null, 8, ["buttons", "header-text", "text", "action"])) : c("", !0)
463
+ buttons: p(m).button,
464
+ "header-text": p(m).header,
465
+ text: p(m).text,
466
+ action: p(m).action,
467
+ onClose: t[8] || (t[8] = (n) => ye(y) ? y.value = !1 : y = !1),
468
+ onActionHandling: t[9] || (t[9] = (n) => j(n))
469
+ }, null, 8, ["buttons", "header-text", "text", "action"])) : u("", !0)
416
470
  ], 64);
417
471
  };
418
472
  }
419
- }, va = /* @__PURE__ */ Ce(Gt, [["__scopeId", "data-v-fa2e727a"]]);
473
+ }, Na = /* @__PURE__ */ je(ga, [["__scopeId", "data-v-05db5cbd"]]);
420
474
  export {
421
- va as default
475
+ Na as default
422
476
  };