@piveau/dpi 0.1.0-beta.6 → 0.1.0-beta.60
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/assets/dpi.css +1 -1
- package/dist/data-provider-interface/DPIMenu.vue.js +2 -2
- package/dist/data-provider-interface/HappyFlowComponents/ComponentLibrary.vue.js +1 -1
- package/dist/data-provider-interface/HappyFlowComponents/HomeTable.vue.js +58 -53
- package/dist/data-provider-interface/HappyFlowComponents/services/dpiV3_apis.js +78 -66
- package/dist/data-provider-interface/HappyFlowComponents/ui/CloseOpenButtonV3.vue.js +11 -10
- package/dist/data-provider-interface/HappyFlowComponents/ui/Dropdown.vue.js +101 -76
- package/dist/data-provider-interface/HappyFlowComponents/ui/InputField.vue.js +1 -1
- package/dist/data-provider-interface/HappyFlowComponents/ui/ModalSimpleV3.vue.js +7 -7
- package/dist/data-provider-interface/HappyFlowComponents/ui/ModalV3.vue.js +434 -360
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/AccessServiceV3.vue.js +103 -71
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/AvailabilityV3.vue.js +17 -22
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/ChangeLicenseV3.vue.js +130 -77
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/ChecksumV3.vue.js +91 -61
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/ConformsToV3.vue.js +111 -74
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/DocumentationsV3.vue.js +170 -99
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/LanguageV3.vue.js +109 -52
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/PolicyV3.vue.js +65 -86
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/StatusV3.vue.js +29 -28
- package/dist/data-provider-interface/HappyFlowComponents/ui/RapModal.vue.js +159 -103
- package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/AdditionalsSubModal.vue.js +571 -207
- package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/CoverageModal.vue.js +100 -53
- package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/DistributionModal.vue.js +52 -57
- package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/EssentialsModal.vue.js +301 -100
- package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/FindabilityChips.vue.js +46 -27
- package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/HVDSwitch.vue.js +71 -38
- package/dist/data-provider-interface/HappyFlowComponents/ui/TableRowV3.vue.js +182 -105
- package/dist/data-provider-interface/HappyFlowComponents/ui/TextAreaV3.vue.js +19 -14
- package/dist/data-provider-interface/HappyFlowComponents/ui/TextButtonSmall.vue.js +1 -1
- package/dist/data-provider-interface/HappyFlowComponents/ui/Toast.vue.js +30 -29
- package/dist/data-provider-interface/components/ContactPage.vue.js +148 -100
- package/dist/data-provider-interface/components/DiscoverabilityPage.vue.js +32 -32
- package/dist/data-provider-interface/components/DistLicense.vue.js +198 -99
- package/dist/data-provider-interface/components/DistributionSimplePage.vue.js +879 -843
- package/dist/data-provider-interface/components/Dropup.vue.js +6 -6
- package/dist/data-provider-interface/components/HVDPage.vue.js +107 -85
- package/dist/data-provider-interface/components/InfoSlot.vue.js +5 -5
- package/dist/data-provider-interface/components/PolGeoUriPage.vue.js +89 -46
- package/dist/data-provider-interface/components/PublisherPage.vue.js +111 -81
- package/dist/data-provider-interface/components/ReviewAndPublishPage.vue.js +328 -265
- package/dist/data-provider-interface/components/TempResPage.vue.js +267 -187
- package/dist/data-provider-interface/components/TempResPageInModal.vue.js +395 -0
- package/dist/data-provider-interface/components/TitelPage.vue.js +4 -4
- package/dist/data-provider-interface/components/UpdateDate.vue.js +33 -29
- package/dist/data-provider-interface/components/dpiV3Description.vue.js +7 -6
- package/dist/data-provider-interface/composables/useDpiContext.js +5 -7
- package/dist/data-provider-interface/composables/useDpiSimpleLoader.js +397 -244
- package/dist/data-provider-interface/config/dcatapde/vocab-prefixes.js +1 -1
- package/dist/data-provider-interface/config/dcatapdeHappyFlow/converter.js +472 -95
- package/dist/data-provider-interface/config/dcatapdeHappyFlow/input-definition.js +104 -152
- package/dist/data-provider-interface/config/dcatapdeHappyFlow/page-content-config.js +10 -3
- package/dist/data-provider-interface/store/modules/authStore.js +11 -11
- package/dist/data-provider-interface/views/DraftsPage.vue.js +3 -3
- package/dist/data-provider-interface/views/InputPage.vue.js +381 -755
- package/dist/styles/_dpi.scss +1614 -0
- package/dist/styles/_maps.scss +24 -0
- package/dist/styles/_variables.scss +973 -0
- package/package.json +28 -19
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/AccessRightsV3.vue.js +0 -41
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/LicenseAttributionByText.vue.js +0 -46
|
@@ -1,202 +1,239 @@
|
|
|
1
|
-
import { computed as
|
|
2
|
-
import { useI18n as he } from "vue-i18n";
|
|
3
|
-
/* empty css */
|
|
4
|
-
/* empty css */
|
|
5
|
-
import C from "../HappyFlowComponents/ui/ButtonV3.vue.js";
|
|
6
|
-
import ge from "../HappyFlowComponents/ui/Chip.vue.js";
|
|
7
|
-
import "@phosphor-icons/vue";
|
|
1
|
+
import { computed as f, ref as g, onMounted as ze, resolveComponent as Ee, createElementBlock as i, openBlock as l, 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";
|
|
8
2
|
import "@formkit/core";
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import ye from "../HappyFlowComponents/ui/RapModal.vue.js";
|
|
13
|
-
import { useStore as me } from "vuex";
|
|
14
|
-
import { useFormKitNodeById as be } from "@formkit/vue";
|
|
15
|
-
import Se from "../HappyFlowComponents/ui/TableRowV3.vue.js";
|
|
3
|
+
import { useFormKitNodeById as Ne } from "@formkit/vue";
|
|
4
|
+
import "@phosphor-icons/vue";
|
|
5
|
+
import { useI18n as Fe } from "vue-i18n";
|
|
16
6
|
import "vue-router";
|
|
17
|
-
import {
|
|
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
|
+
/* empty css */
|
|
17
|
+
/* empty css */
|
|
18
18
|
/* empty css */
|
|
19
|
-
import
|
|
20
|
-
import { useDpiContext as
|
|
21
|
-
const
|
|
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
|
-
},
|
|
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
|
-
},
|
|
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
|
-
},
|
|
33
|
+
}, at = { class: "firstSec" }, st = { class: "secondSec" }, ot = {
|
|
31
34
|
class: "copy-large-regular",
|
|
32
35
|
style: { "margin-bottom": "4px" }
|
|
33
|
-
},
|
|
36
|
+
}, lt = {
|
|
37
|
+
key: 0,
|
|
38
|
+
class: "thirdSec"
|
|
39
|
+
}, it = { class: "headline-5" }, nt = {
|
|
34
40
|
key: 1,
|
|
35
41
|
class: "dpiV3Card rapEssentials"
|
|
36
|
-
},
|
|
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
|
-
},
|
|
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
|
-
},
|
|
46
|
-
key:
|
|
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
|
-
},
|
|
49
|
-
key:
|
|
54
|
+
}, ea = { class: "firstSec" }, ta = { class: "secondSec flexSec" }, aa = { class: "dpiV3_optionalSpanHeadWrap" }, sa = { class: "dpiV3_optionalSpan copy-large-regular" }, oa = { key: 0 }, la = { key: 0 }, ia = { 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
|
-
},
|
|
57
|
+
}, ga = {
|
|
52
58
|
__name: "ReviewAndPublishPage",
|
|
53
59
|
props: {
|
|
54
60
|
context: Object
|
|
55
61
|
},
|
|
56
|
-
setup(
|
|
57
|
-
const { t: E } =
|
|
58
|
-
|
|
62
|
+
setup(Se) {
|
|
63
|
+
const { t: E } = Fe(), C = Ke();
|
|
64
|
+
f(() => {
|
|
59
65
|
var e;
|
|
60
|
-
return !!((e =
|
|
66
|
+
return !!((e = C.value.edit) != null && e.enabled);
|
|
61
67
|
});
|
|
62
|
-
let
|
|
63
|
-
|
|
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);
|
|
64
75
|
let y = g(!1), m = g({});
|
|
65
|
-
const
|
|
66
|
-
|
|
67
|
-
|
|
76
|
+
const L = g(!1), { formValues: d } = Ue();
|
|
77
|
+
Ne("dpiForm", (e) => {
|
|
78
|
+
L.value = !0;
|
|
68
79
|
});
|
|
69
|
-
|
|
70
|
-
let t,
|
|
71
|
-
return e.forEach((
|
|
72
|
-
|
|
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
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
86
|
+
r || 0,
|
|
87
|
+
c || 1,
|
|
88
|
+
v || 0,
|
|
89
|
+
$ || 0,
|
|
90
|
+
x || 0
|
|
80
91
|
).toLocaleString("de", {
|
|
81
92
|
timeZone: "Europe/Berlin",
|
|
82
93
|
timeZoneName: "short"
|
|
83
94
|
});
|
|
84
|
-
}
|
|
85
|
-
|
|
95
|
+
}
|
|
96
|
+
const N = g(), M = g(!1);
|
|
97
|
+
function F(e) {
|
|
86
98
|
return !(Object.keys(e).includes("isValid") && Object.keys(e).length === 1);
|
|
87
99
|
}
|
|
88
|
-
const
|
|
89
|
-
var t,
|
|
90
|
-
const e = (
|
|
91
|
-
return Array.isArray(e) ? (e == null ? void 0 : e.filter(
|
|
92
|
-
}),
|
|
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(() => {
|
|
93
105
|
var e, t;
|
|
94
|
-
return ((t = (e =
|
|
95
|
-
}),
|
|
96
|
-
var
|
|
97
|
-
const e = (
|
|
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");
|
|
98
110
|
return t ? t["@value"] : null;
|
|
99
|
-
}),
|
|
100
|
-
var e, t,
|
|
101
|
-
return ((
|
|
102
|
-
}),
|
|
103
|
-
var t,
|
|
104
|
-
const e = (
|
|
105
|
-
return e ? new Date(e).toLocaleDateString("de-DE"
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
}), N = v(() => Object.keys(P.value).length > 1), W = v(() => Object.keys(w.value).length > 1 && w.value["dct:temporal"]), U = v(() => {
|
|
123
|
-
var e, t, i;
|
|
124
|
-
return ((i = (t = (e = u.value) == null ? void 0 : e.DistributionSimple) == null ? void 0 : t["dct:license"]) == null ? void 0 : i[0]) || {};
|
|
125
|
-
}), ce = v(() => {
|
|
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(() => {
|
|
126
134
|
var e, t;
|
|
127
|
-
return ((t = (e =
|
|
128
|
-
}),
|
|
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(() => {
|
|
129
139
|
var e;
|
|
130
|
-
return ((e =
|
|
131
|
-
})
|
|
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"] != "";
|
|
141
|
+
});
|
|
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(() => {
|
|
148
|
+
var e, t;
|
|
149
|
+
return ((t = (e = d.value) == null ? void 0 : e.DistributionSimple) == null ? void 0 : t["dcat:distribution"]) || [];
|
|
150
|
+
}), b = f(() => {
|
|
151
|
+
var e;
|
|
152
|
+
return ((e = d.value) == null ? void 0 : e.Additionals) || {};
|
|
153
|
+
}), G = f(() => (Object.keys(b.value).forEach((e) => {
|
|
132
154
|
if (b.value.hasOwnProperty(e)) {
|
|
133
155
|
const t = b.value[e];
|
|
134
156
|
(t === void 0 || Array.isArray(t) && t.length === 0) && delete b.value[e];
|
|
135
157
|
}
|
|
136
|
-
}), Object.keys(b.value))),
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
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";
|
|
169
|
+
}
|
|
170
|
+
function He() {
|
|
171
|
+
document.body.style.overflow = "", M.value = !1;
|
|
172
|
+
}
|
|
173
|
+
function j(e) {
|
|
174
|
+
delete d.value.Additionals[e];
|
|
175
|
+
}
|
|
176
|
+
function Pe(e, t) {
|
|
143
177
|
y.value = !0, m.value = {
|
|
144
178
|
button: "Löschen",
|
|
145
|
-
header: E(
|
|
146
|
-
text:
|
|
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?`,
|
|
147
183
|
action: e
|
|
148
184
|
};
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
|
|
185
|
+
}
|
|
186
|
+
const K = g(!1);
|
|
187
|
+
return ze(() => {
|
|
188
|
+
K.value = !0;
|
|
152
189
|
}), (e, t) => {
|
|
153
|
-
var
|
|
154
|
-
const
|
|
155
|
-
return
|
|
156
|
-
|
|
157
|
-
|
|
190
|
+
var c, v, $, x, h, X, Z, q, J, Q, I, A, ee, te, ae, se, oe, le, ie, ne, re, de, ce, ue, pe, ve, fe, he, _e, ge;
|
|
191
|
+
const r = Ee("formatbubble");
|
|
192
|
+
return l(), i(S, null, [
|
|
193
|
+
K.value && L.value ? (l(), i("div", Xe, [
|
|
194
|
+
M.value ? (l(), V(Ge, {
|
|
158
195
|
key: 0,
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
}, null, 8, ["context", "
|
|
163
|
-
(
|
|
164
|
-
a("div",
|
|
165
|
-
a("div",
|
|
166
|
-
p(
|
|
167
|
-
(
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
196
|
+
context: Se.context,
|
|
197
|
+
"active-section": N.value,
|
|
198
|
+
onClose: He
|
|
199
|
+
}, null, 8, ["context", "active-section"])) : u("", !0),
|
|
200
|
+
(l(), i("div", Ze, [
|
|
201
|
+
a("div", qe, [
|
|
202
|
+
a("div", Je, [
|
|
203
|
+
p(C).edit.fromDraft || p(C).edit.enabled ? (l(), i("div", Qe, [
|
|
204
|
+
(l(), 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,
|
|
171
208
|
catalogue: "test-catalog",
|
|
172
|
-
text: ((
|
|
173
|
-
date:
|
|
174
|
-
draft: !p(
|
|
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),
|
|
175
212
|
dataset: e.dataset,
|
|
176
|
-
|
|
177
|
-
}, null, 8, ["
|
|
178
|
-
])) : (
|
|
179
|
-
a("h4",
|
|
180
|
-
a("div",
|
|
213
|
+
"from-draft": "true"
|
|
214
|
+
}, null, 8, ["id", "data-cy", "text", "date", "draft", "dataset"]))
|
|
215
|
+
])) : (l(), i("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)
|
|
181
218
|
]))
|
|
182
219
|
])
|
|
183
220
|
]),
|
|
184
|
-
(
|
|
185
|
-
a("div",
|
|
221
|
+
(l(), i("div", tt, [
|
|
222
|
+
a("div", at, [
|
|
186
223
|
a("span", null, s(e.$t("message.dataupload.datasets.rap.findability.title")), 1),
|
|
187
|
-
_(
|
|
224
|
+
_(D, {
|
|
188
225
|
size: "large",
|
|
189
|
-
|
|
226
|
+
"icon-start": "pen",
|
|
190
227
|
variant: "secondary",
|
|
191
|
-
onClick: t[0] || (t[0] = (
|
|
228
|
+
onClick: t[0] || (t[0] = (n) => k("findabilityHvd"))
|
|
192
229
|
})
|
|
193
230
|
]),
|
|
194
|
-
a("div",
|
|
195
|
-
a("span",
|
|
196
|
-
(
|
|
197
|
-
key:
|
|
198
|
-
text:
|
|
199
|
-
data: { "@value":
|
|
231
|
+
a("div", st, [
|
|
232
|
+
a("span", ot, s(e.$t("message.dataupload.datasets.rap.findability.categoryHeader")), 1),
|
|
233
|
+
(l(!0), i(S, null, w($e.value, (n, o) => (l(), V(We, {
|
|
234
|
+
key: o,
|
|
235
|
+
text: n.label,
|
|
236
|
+
data: { "@value": n.value, URI: n.URI },
|
|
200
237
|
setup: {
|
|
201
238
|
"@type": "static",
|
|
202
239
|
"@inTable": !1,
|
|
@@ -204,132 +241,154 @@ const Ve = { key: 0 }, xe = {
|
|
|
204
241
|
}
|
|
205
242
|
}, null, 8, ["text", "data"]))), 128))
|
|
206
243
|
]),
|
|
207
|
-
|
|
208
|
-
_(
|
|
244
|
+
(Q = (J = O.value) == null ? void 0 : J[0]) != null && Q.label ? (l(), i("div", lt, [
|
|
245
|
+
_(be, {
|
|
209
246
|
label: "HVD",
|
|
210
247
|
state: "hvd",
|
|
211
248
|
size: "page"
|
|
212
249
|
}),
|
|
213
|
-
a("h5",
|
|
214
|
-
])
|
|
250
|
+
a("h5", it, s((A = (I = O.value) == null ? void 0 : I[0]) == null ? void 0 : A.label), 1)
|
|
251
|
+
])) : u("", !0)
|
|
215
252
|
])),
|
|
216
|
-
(
|
|
217
|
-
a("div",
|
|
253
|
+
(l(), i("div", nt, [
|
|
254
|
+
a("div", rt, [
|
|
218
255
|
a("span", null, s(e.$t("message.dataupload.datasets.rap.essentials.title")), 1),
|
|
219
|
-
_(
|
|
256
|
+
_(D, {
|
|
220
257
|
size: "large",
|
|
221
|
-
|
|
258
|
+
"icon-start": "pen",
|
|
222
259
|
variant: "secondary",
|
|
223
|
-
onClick: t[1] || (t[1] = (
|
|
260
|
+
onClick: t[1] || (t[1] = (n) => k("essentials"))
|
|
224
261
|
})
|
|
225
262
|
]),
|
|
226
|
-
a("div",
|
|
227
|
-
a("h3",
|
|
263
|
+
a("div", dt, [
|
|
264
|
+
a("h3", ct, s(xe.value), 1)
|
|
228
265
|
]),
|
|
229
|
-
a("div",
|
|
230
|
-
a("span", null, s(
|
|
266
|
+
a("div", ut, [
|
|
267
|
+
a("span", null, s(Ve.value), 1)
|
|
231
268
|
]),
|
|
232
|
-
a("div",
|
|
233
|
-
a("span",
|
|
234
|
-
a("span",
|
|
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)
|
|
235
272
|
]),
|
|
236
|
-
a("div",
|
|
237
|
-
a("span",
|
|
238
|
-
a("h5",
|
|
239
|
-
a("a",
|
|
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),
|
|
240
277
|
a("a", {
|
|
241
278
|
class: "copy-large-regular",
|
|
242
|
-
href:
|
|
243
|
-
}, s(
|
|
279
|
+
href: B.value["foaf:homepage"] || ""
|
|
280
|
+
}, s(B.value["foaf:homepage"] || ""), 9, mt)
|
|
244
281
|
]),
|
|
245
|
-
a("div",
|
|
246
|
-
a("span",
|
|
247
|
-
a("h5",
|
|
248
|
-
a("a",
|
|
249
|
-
a("span",
|
|
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)
|
|
250
287
|
])
|
|
251
288
|
])),
|
|
252
|
-
(
|
|
253
|
-
|
|
254
|
-
a("div",
|
|
289
|
+
(l(), i(S, { key: 2 }, [
|
|
290
|
+
a("div", $t, [
|
|
291
|
+
a("div", xt, [
|
|
255
292
|
a("span", null, s(e.$t("message.dataupload.datasets.rap.coverage.title")), 1),
|
|
256
|
-
_(
|
|
293
|
+
_(D, {
|
|
257
294
|
size: "large",
|
|
258
|
-
|
|
295
|
+
"icon-start": "pen",
|
|
259
296
|
variant: "secondary",
|
|
260
|
-
onClick: t[2] || (t[2] = (
|
|
297
|
+
onClick: t[2] || (t[2] = (n) => k("coverage"))
|
|
261
298
|
})
|
|
262
299
|
]),
|
|
263
|
-
|
|
264
|
-
a("div",
|
|
265
|
-
a("span",
|
|
266
|
-
_(
|
|
300
|
+
Be.value ? (l(), i("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
|
+
})
|
|
267
307
|
]),
|
|
268
|
-
a("div",
|
|
269
|
-
a("h5",
|
|
270
|
-
_(
|
|
271
|
-
label: ((ee =
|
|
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()) || "",
|
|
272
312
|
state: "geopolitical",
|
|
273
313
|
size: "page"
|
|
274
314
|
}, null, 8, ["label"])
|
|
275
315
|
])
|
|
276
|
-
])) :
|
|
277
|
-
|
|
278
|
-
a("div",
|
|
279
|
-
a("span",
|
|
280
|
-
_(
|
|
316
|
+
])) : u("", !0),
|
|
317
|
+
Te.value ? (l(), i("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
|
+
})
|
|
281
324
|
]),
|
|
282
|
-
a("div",
|
|
283
|
-
(
|
|
284
|
-
a("div",
|
|
285
|
-
t[10] || (t[10] =
|
|
325
|
+
a("div", zt, [
|
|
326
|
+
(l(!0), i(S, null, w(T.value["dct:temporal"] || [], (n) => (l(), i("div", Et, [
|
|
327
|
+
a("div", Lt, [
|
|
328
|
+
t[10] || (t[10] = P(" von ", -1)),
|
|
286
329
|
a("div", null, [
|
|
287
|
-
a("span", null, s(new Date(
|
|
288
|
-
"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
|
+
}
|
|
289
337
|
)), 1),
|
|
290
|
-
|
|
338
|
+
n.startTime != null ? (l(), i("span", Nt, s(n.startTime), 1)) : u("", !0)
|
|
291
339
|
])
|
|
292
340
|
]),
|
|
293
|
-
a("div",
|
|
294
|
-
t[11] || (t[11] =
|
|
341
|
+
a("div", Ft, [
|
|
342
|
+
t[11] || (t[11] = P(" bis ", -1)),
|
|
295
343
|
a("div", null, [
|
|
296
|
-
a("span", null, s(new Date(
|
|
297
|
-
"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
|
+
}
|
|
298
351
|
)), 1),
|
|
299
|
-
|
|
352
|
+
n.endTime != null ? (l(), i("span", Ot, s(n.endTime), 1)) : u("", !0)
|
|
300
353
|
])
|
|
301
354
|
])
|
|
302
355
|
]))), 256))
|
|
303
356
|
])
|
|
304
|
-
])) :
|
|
305
|
-
])
|
|
306
|
-
a("div",
|
|
307
|
-
a("div",
|
|
357
|
+
])) : u("", !0)
|
|
358
|
+
]),
|
|
359
|
+
a("div", Ut, [
|
|
360
|
+
a("div", Wt, [
|
|
308
361
|
a("span", null, s(e.$t("message.metadata.distributions")), 1),
|
|
309
|
-
_(
|
|
362
|
+
_(D, {
|
|
310
363
|
size: "large",
|
|
311
|
-
|
|
364
|
+
"icon-start": "pen",
|
|
312
365
|
variant: "secondary",
|
|
313
|
-
onClick: t[3] || (t[3] = (
|
|
366
|
+
onClick: t[3] || (t[3] = (n) => k("distributions"))
|
|
314
367
|
})
|
|
315
368
|
]),
|
|
316
|
-
a("div",
|
|
317
|
-
a("span",
|
|
318
|
-
a("h5",
|
|
319
|
-
]),
|
|
320
|
-
a("div", Dt, [
|
|
321
|
-
a("span", Vt, s(e.$t("message.dataupload.steps.dct:publisher")), 1),
|
|
322
|
-
a("h5", xt, s(U.value.title || ""), 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)
|
|
323
372
|
]),
|
|
324
|
-
|
|
325
|
-
a("span",
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
373
|
+
(ie = (le = (oe = p(d).DistributionSimple) == null ? void 0 : oe["dct:license"]) == null ? void 0 : le[0]) != null && ie.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"] ? (l(), i("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
|
+
(l(!0), i(S, null, w(Me.value, (n) => (l(), i("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;
|
|
331
390
|
return [
|
|
332
|
-
|
|
391
|
+
P(s(((o = n["dct:format"]) == null ? void 0 : o.label) || "Kein Format angegeben"), 1)
|
|
333
392
|
];
|
|
334
393
|
}),
|
|
335
394
|
_: 2
|
|
@@ -337,77 +396,81 @@ const Ve = { key: 0 }, xe = {
|
|
|
337
396
|
]))), 256))
|
|
338
397
|
])
|
|
339
398
|
]),
|
|
340
|
-
|
|
341
|
-
a("div",
|
|
399
|
+
Y.value ? (l(), i("div", At, [
|
|
400
|
+
a("div", ea, [
|
|
342
401
|
a("span", null, s(e.$t("message.metadata.additionals")), 1)
|
|
343
402
|
]),
|
|
344
|
-
(
|
|
345
|
-
a("div",
|
|
346
|
-
a("span",
|
|
347
|
-
_(
|
|
348
|
-
|
|
349
|
-
onClick: (
|
|
403
|
+
(l(!0), i(S, null, w(G.value, (n) => (l(), i("div", ta, [
|
|
404
|
+
a("div", aa, [
|
|
405
|
+
a("span", sa, s(e.$t(`message.dataupload.additionals.${n}`)) + " (optional)", 1),
|
|
406
|
+
_(z, {
|
|
407
|
+
"button-text": "löschen",
|
|
408
|
+
onClick: (o) => Pe(n)
|
|
350
409
|
}, null, 8, ["onClick"])
|
|
351
410
|
]),
|
|
352
|
-
|
|
353
|
-
a("span", null, s(
|
|
354
|
-
])) :
|
|
355
|
-
|
|
356
|
-
|
|
411
|
+
n === "dcat:temporalResolution" ? (l(), i("div", oa, [
|
|
412
|
+
a("span", null, s(Ce(b.value[n] || [])), 1)
|
|
413
|
+
])) : u("", !0),
|
|
414
|
+
n != "dcat:temporalResolution" ? (l(!0), i(S, { key: 1 }, w(b.value[n] || [], (o) => (l(), i("div", {
|
|
415
|
+
class: "additionalSubPropsWrapper",
|
|
416
|
+
key: o ? o["@id"] || o["@value"] || o["rdfs:label"] : null
|
|
357
417
|
}, [
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
418
|
+
o && o["rdf:type"] ? (l(), i("span", la, s(o["rdf:type"]), 1)) : u("", !0),
|
|
419
|
+
o && o["@type"] === "http://www.w3.org/2001/XMLSchema#date" ? (l(), i("span", ia, s(Re(o["@value"])), 1)) : u("", !0),
|
|
420
|
+
o && o["@value"] && o["@type"] !== "http://www.w3.org/2001/XMLSchema#date" ? (l(), i("span", na, s(o["@value"]), 1)) : u("", !0),
|
|
421
|
+
o && o["dct:title"] ? (l(), i("span", ra, s(o["dct:title"]), 1)) : u("", !0),
|
|
422
|
+
o && o["dct:description"] ? (l(), i("span", da, s(o["dct:description"]), 1)) : u("", !0),
|
|
423
|
+
o && o["@id"] ? (l(), i("span", ca, s(o["@id"]), 1)) : u("", !0),
|
|
424
|
+
o && o["rdfs:label"] ? (l(), i("span", ua, s(o["rdfs:label"]), 1)) : u("", !0),
|
|
425
|
+
o && o["foaf:name"] ? (l(), i("span", pa, s(o["foaf:name"]), 1)) : u("", !0),
|
|
426
|
+
o && o["foaf:homepage"] ? (l(), i("span", va, s(o["foaf:homepage"]), 1)) : u("", !0),
|
|
427
|
+
o && o["foaf:mbox"] ? (l(), i("span", fa, s(o["foaf:mbox"]), 1)) : u("", !0)
|
|
428
|
+
]))), 128)) : u("", !0)
|
|
366
429
|
]))), 256)),
|
|
367
|
-
a("div",
|
|
368
|
-
_(
|
|
369
|
-
|
|
430
|
+
a("div", ha, [
|
|
431
|
+
_(D, {
|
|
432
|
+
"button-text": "Optionale Informationen hinzufügen",
|
|
370
433
|
size: "large",
|
|
371
|
-
|
|
434
|
+
"icon-start": "plus",
|
|
372
435
|
variant: "tertiary",
|
|
373
|
-
onClick: t[4] || (t[4] = (
|
|
436
|
+
onClick: t[4] || (t[4] = (n) => k("additionals"))
|
|
374
437
|
})
|
|
375
438
|
])
|
|
376
|
-
])) :
|
|
377
|
-
|
|
378
|
-
_(
|
|
379
|
-
|
|
439
|
+
])) : u("", !0),
|
|
440
|
+
Y.value ? u("", !0) : (l(), i("div", _a, [
|
|
441
|
+
_(D, {
|
|
442
|
+
"button-text": "Optionale Informationen hinzufügen",
|
|
380
443
|
size: "large",
|
|
381
|
-
|
|
444
|
+
"icon-start": "plus",
|
|
382
445
|
variant: "tertiary",
|
|
383
|
-
onClick: t[5] || (t[5] = (
|
|
446
|
+
onClick: t[5] || (t[5] = (n) => k("additionals"))
|
|
384
447
|
})
|
|
385
448
|
]))
|
|
386
449
|
], 64))
|
|
387
450
|
])),
|
|
388
|
-
p(y) ? (
|
|
451
|
+
p(y) ? (l(), V(me, {
|
|
389
452
|
key: 2,
|
|
390
453
|
buttons: p(m).button,
|
|
391
|
-
|
|
454
|
+
"header-text": p(m).header,
|
|
392
455
|
text: p(m).text,
|
|
393
|
-
onClose: t[6] || (t[6] = (l) => te(y) ? y.value = !1 : y = !1),
|
|
394
456
|
action: p(m).action,
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
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) ? (l(), V(me, {
|
|
399
462
|
key: 1,
|
|
400
463
|
buttons: p(m).button,
|
|
401
|
-
|
|
464
|
+
"header-text": p(m).header,
|
|
402
465
|
text: p(m).text,
|
|
403
|
-
onClose: t[8] || (t[8] = (l) => te(y) ? y.value = !1 : y = !1),
|
|
404
466
|
action: p(m).action,
|
|
405
|
-
|
|
406
|
-
|
|
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)
|
|
407
470
|
], 64);
|
|
408
471
|
};
|
|
409
472
|
}
|
|
410
|
-
},
|
|
473
|
+
}, Na = /* @__PURE__ */ je(ga, [["__scopeId", "data-v-52ae5c56"]]);
|
|
411
474
|
export {
|
|
412
|
-
|
|
475
|
+
Na as default
|
|
413
476
|
};
|