@piveau/dpi 0.1.0-beta.5 → 0.1.0-beta.51
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/DataProviderInterface.vue2.js +45 -40
- 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 +100 -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 +153 -102
- 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 +34 -56
- 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 +70 -39
- 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 +153 -105
- 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 +856 -790
- package/dist/data-provider-interface/components/Dropup.vue.js +6 -6
- package/dist/data-provider-interface/components/HVDPage.vue.js +105 -82
- 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 +302 -251
- 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/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/useDpiEditMode.js +15 -13
- 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/index.js +32 -0
- package/dist/data-provider-interface/store/modules/authStore.js +301 -0
- package/dist/data-provider-interface/store/modules/catalogueDetailsStore.js +34 -0
- package/dist/data-provider-interface/store/modules/cataloguesStore.js +256 -0
- package/dist/data-provider-interface/store/modules/datasetDetailsStore.js +644 -0
- package/dist/data-provider-interface/store/modules/datasetsStore.js +361 -0
- package/dist/data-provider-interface/store/{dpiStore.js → modules/dpiStore.js} +11 -12
- package/dist/data-provider-interface/store/modules/snackbarStore.js +45 -0
- package/dist/data-provider-interface/views/DraftsPage.vue.js +3 -3
- package/dist/data-provider-interface/views/InputPage.vue.js +378 -752
- package/dist/index.js +4 -4
- package/dist/styles/_dpi.scss +1614 -0
- package/dist/styles/_maps.scss +24 -0
- package/dist/styles/_variables.scss +973 -0
- package/dist/utils/draftApi.js +33 -0
- package/dist/utils/helpers.js +36 -22
- package/dist/utils/identifiersApi.js +16 -0
- package/dist/utils/jwt.js +7 -0
- package/package.json +12 -7
- 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
- package/dist/data-provider-interface/store/modules/formSchemaStore.js +0 -94
|
@@ -1,71 +1,148 @@
|
|
|
1
|
-
import { ref as
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import {
|
|
5
|
-
import { getLicenses as
|
|
6
|
-
import { useEditModeInfo as
|
|
1
|
+
import { ref as p, watch as C, onMounted as x, getCurrentInstance as q, onUnmounted as O, createElementBlock as w, openBlock as b, createElementVNode as l, createVNode as V, createCommentVNode as T, toDisplayString as o, unref as u, isRef as W, createBlock as U, createTextVNode as k } from "vue";
|
|
2
|
+
import H from "../HappyFlowComponents/ui/InputField.vue.js";
|
|
3
|
+
import j from "../HappyFlowComponents/ui/Dropdown.vue.js";
|
|
4
|
+
import { PhWarning as B, PhLightbulb as R, PhArrowSquareOut as G } from "@phosphor-icons/vue";
|
|
5
|
+
import { getLicenses as J } from "../HappyFlowComponents/services/dpiV3_apis.js";
|
|
6
|
+
import { useEditModeInfo as K } from "../composables/useDpiEditMode.js";
|
|
7
|
+
import { useFormValues as Q } from "../composables/useDpiFormValues.js";
|
|
7
8
|
/* empty css */
|
|
8
|
-
import
|
|
9
|
-
const
|
|
9
|
+
import X from "../../_virtual/_plugin-vue_export-helper.js";
|
|
10
|
+
const Y = { class: "dpiV3InnerComponentWrap" }, Z = { class: "copy-large-regular" }, ee = {
|
|
10
11
|
key: 0,
|
|
11
12
|
class: "validation-error"
|
|
12
|
-
},
|
|
13
|
+
}, te = { class: "copy-mini-regular" }, se = { class: "input-container" }, ie = {
|
|
14
|
+
key: 1,
|
|
15
|
+
class: "dpiV3_errormsgWrapper"
|
|
16
|
+
}, ae = { class: "copy-mini-regular" }, le = { class: "dpiV3_Content_InputPage" }, ne = { class: "dpiV3_Card_Tips" }, oe = { class: "dpiV3_Icon_Title" }, de = { class: "dpiV3_Info-Text dpiV3_activeStepName" }, re = { class: "dpiV3_CT-Content" }, ue = { class: "dpiV3_copy_large_regular dpiV3_hvd_frame3846" }, ce = { class: "dpiV3_hvd_frame3846" }, pe = { class: "dpiV3_dots dpiV3_copy_large_semi_bold" }, ve = { class: "dpiV3_normal" }, fe = { class: "dpiV3_dots dpiV3_copy_large_semi_bold" }, me = { class: "dpiV3_normal" }, _e = { class: "dpiV3_dots dpiV3_copy_large_semi_bold" }, ge = { class: "dpiV3_normal" }, he = {
|
|
17
|
+
href: "https://oc.bydata.de/sharing/articles/licenses",
|
|
18
|
+
target: "_blank",
|
|
19
|
+
rel: "noopener noreferrer",
|
|
20
|
+
class: "dpiV3_link"
|
|
21
|
+
}, Ve = { class: "end_container" }, be = {
|
|
22
|
+
key: 0,
|
|
23
|
+
class: "form-error-message"
|
|
24
|
+
}, ye = {
|
|
13
25
|
__name: "DistLicense",
|
|
14
26
|
props: {
|
|
15
27
|
context: Object,
|
|
16
28
|
changeLicenseText: { type: String, default: "" },
|
|
17
29
|
changeLicenseDropdownText: { type: String, default: "" }
|
|
18
30
|
},
|
|
19
|
-
setup(
|
|
20
|
-
const { isEditMode:
|
|
21
|
-
let
|
|
22
|
-
const
|
|
23
|
-
let
|
|
24
|
-
const i =
|
|
31
|
+
setup(S) {
|
|
32
|
+
const { isEditMode: D } = K(), { formValues: Le } = Q();
|
|
33
|
+
let I = p(!1), v = p([]), g = p(""), m = p(null);
|
|
34
|
+
const r = p(""), y = S;
|
|
35
|
+
let d = p({ 1: "unset", 2: "unset" });
|
|
36
|
+
const i = p([
|
|
25
37
|
{ isValid: "unset", "dcterms:license": "", title: "", uri: "" }
|
|
26
|
-
])
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
},
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
38
|
+
]), c = p({
|
|
39
|
+
2: {
|
|
40
|
+
show: !1,
|
|
41
|
+
message: "Namensnennungstext ist für diese Lizenz erforderlich"
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
D.value || y.context.node.input(i);
|
|
45
|
+
const $ = (e, t, s) => {
|
|
46
|
+
L(e, t, s);
|
|
47
|
+
}, A = (e) => {
|
|
48
|
+
const t = typeof e == "object" && e.target ? e.target.value : e;
|
|
49
|
+
m.value && clearTimeout(m.value), M(t, "dcterms:license", 1), m.value = setTimeout(() => {
|
|
50
|
+
N(t, "dcterms:license", 1);
|
|
51
|
+
}, 800);
|
|
52
|
+
}, M = (e, t, s) => {
|
|
53
|
+
r.value = "";
|
|
54
|
+
const a = v.value.find(
|
|
55
|
+
(n) => n["@value"] === e
|
|
56
|
+
);
|
|
57
|
+
a ? L(e, t, s, a.uri) : e === "" ? (d.value[s] = !1, i.value[0].isValid = "unset", I.value = !1, c.value[2].show = !1, i.value = i.value.map((n) => t in n ? { ...n, [t]: "", uri: "", title: "" } : n), y.context.node.input(i.value)) : (d.value[s] = "unset", i.value[0].isValid = "unset");
|
|
58
|
+
}, N = (e, t, s) => {
|
|
59
|
+
if (e === "") {
|
|
60
|
+
r.value = "";
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
const a = v.value.find(
|
|
64
|
+
(n) => n["@value"] === e
|
|
65
|
+
);
|
|
66
|
+
a ? L(e, t, s, a.uri) : (r.value = "Bitte wählen Sie eine gültige Lizenz aus der Liste", d.value[s] = !1, i.value[0].isValid = "unset");
|
|
67
|
+
}, F = (e) => {
|
|
68
|
+
m.value && clearTimeout(m.value);
|
|
69
|
+
const t = e.target.value;
|
|
70
|
+
N(t, "dcterms:license", 1);
|
|
71
|
+
}, P = (e, t, s) => {
|
|
72
|
+
var a;
|
|
73
|
+
i.value = i.value.map((n) => t in n ? { ...n, [t]: e } : n);
|
|
74
|
+
{
|
|
75
|
+
const n = ((a = i.value[0]) == null ? void 0 : a["dcterms:license"]) || "";
|
|
76
|
+
if (n !== "" && (n.includes("cc-by") || n.includes("dl-by-de"))) {
|
|
77
|
+
const f = e && e.trim() !== "";
|
|
78
|
+
c.value[2].show = !f, d.value[2] = f, d.value[1] === !0 && f ? i.value[0].isValid = !0 : i.value[0].isValid = "unset";
|
|
79
|
+
} else
|
|
80
|
+
c.value[2].show = !1, d.value[2] = "unset";
|
|
81
|
+
}
|
|
82
|
+
y.context.node.input(i.value);
|
|
83
|
+
}, L = (e, t, s, a) => {
|
|
84
|
+
var f;
|
|
85
|
+
const n = e === "" || v.value.some((h) => h["@value"] === e);
|
|
86
|
+
let z = p();
|
|
87
|
+
if (!n && e !== "")
|
|
88
|
+
r.value = "Bitte wählen Sie eine gültige Lizenz aus der Liste", d.value[s] = !1, i.value[0].isValid = "unset";
|
|
89
|
+
else {
|
|
90
|
+
r.value = "";
|
|
91
|
+
const h = e !== "" && (e.includes("cc-by") || e.includes("dl-by-de"));
|
|
92
|
+
if (I.value = h, e !== "") {
|
|
93
|
+
d.value[s] = !0;
|
|
94
|
+
const _ = ((f = i.value[0]) == null ? void 0 : f.title) || "", E = !h || h && _.trim() !== "";
|
|
95
|
+
i.value[0].isValid = E ? !0 : "unset", h ? (c.value[2].show = _.trim() === "", d.value[2] = _.trim() !== "") : (c.value[2].show = !1, d.value[2] = "unset");
|
|
96
|
+
} else
|
|
97
|
+
d.value[s] = !1, i.value[0].isValid = "unset", c.value[2].show = !1;
|
|
98
|
+
i.value = i.value.map((_) => t in _ ? { ..._, [t]: e, uri: a, title: z } : _);
|
|
99
|
+
}
|
|
100
|
+
y.context.node.input(i.value);
|
|
39
101
|
};
|
|
40
|
-
return
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
102
|
+
return C(g, (e) => {
|
|
103
|
+
var s;
|
|
104
|
+
let t = (s = v.value.find(
|
|
105
|
+
(a) => a["@value"] === e
|
|
106
|
+
)) == null ? void 0 : s.uri;
|
|
107
|
+
e !== void 0 && L(e, "dcterms:license", 1, t);
|
|
108
|
+
}), C(
|
|
109
|
+
() => i.value[0].isValid,
|
|
110
|
+
(e) => {
|
|
111
|
+
var t, s;
|
|
112
|
+
if (e === !1) {
|
|
113
|
+
const a = ((t = i.value[0]) == null ? void 0 : t["dcterms:license"]) || "";
|
|
114
|
+
a === "" ? r.value = "Bitte wählen Sie eine Lizenz aus." : v.value.find(
|
|
115
|
+
(f) => f["@value"] === a
|
|
116
|
+
) || (r.value = "Bitte wählen Sie eine gültige Lizenz aus der Liste"), a !== "" && (a.includes("cc-by") || a.includes("dl-by-de")) && (((s = i.value[0]) == null ? void 0 : s.title) || "").trim() === "" && (c.value[2].show = !0);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
), x(async () => {
|
|
120
|
+
const t = q().appContext.app.config.globalProperties.$env;
|
|
47
121
|
try {
|
|
48
|
-
const
|
|
49
|
-
|
|
50
|
-
"@value":
|
|
51
|
-
label:
|
|
52
|
-
uri:
|
|
53
|
-
}));
|
|
54
|
-
} catch (
|
|
55
|
-
console.error("Failed to load licenses",
|
|
122
|
+
const s = await J(t.api.baseUrl);
|
|
123
|
+
v.value = s.map((a) => ({
|
|
124
|
+
"@value": a.value,
|
|
125
|
+
label: a.label,
|
|
126
|
+
uri: a.uri
|
|
127
|
+
})), v.value.sort((a, n) => a["@value"].localeCompare(n["@value"]));
|
|
128
|
+
} catch (s) {
|
|
129
|
+
console.error("Failed to load licenses", s);
|
|
56
130
|
}
|
|
57
|
-
}), (
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
131
|
+
}), O(() => {
|
|
132
|
+
m.value && clearTimeout(m.value);
|
|
133
|
+
}), (e, t) => (b(), w("div", Y, [
|
|
134
|
+
l("h4", null, o(e.$t("message.dataupload.datasets.dct:license.title")), 1),
|
|
135
|
+
l("div", Z, o(e.$t("message.dataupload.datasets.dct:license.description")), 1),
|
|
136
|
+
V(j, {
|
|
61
137
|
"onUpdate:modelValue": [
|
|
62
|
-
|
|
63
|
-
|
|
138
|
+
t[0] || (t[0] = (s) => $(s, "dcterms:license", 1)),
|
|
139
|
+
t[1] || (t[1] = (s) => W(g) ? g.value = s : g = s)
|
|
64
140
|
],
|
|
65
|
-
onInput:
|
|
141
|
+
onInput: A,
|
|
142
|
+
onBlur: F,
|
|
66
143
|
dropdownWidth: "large",
|
|
67
144
|
type: "inputField",
|
|
68
|
-
modelValue:
|
|
145
|
+
modelValue: u(g),
|
|
69
146
|
inputFieldProps: {
|
|
70
147
|
addOnText: !1,
|
|
71
148
|
initialHintText: !1,
|
|
@@ -76,74 +153,87 @@ const x = { class: "dpiV3InnerComponentWrap" }, H = { class: "copy-large-regular
|
|
|
76
153
|
dropdown_dpiV3: !0,
|
|
77
154
|
placeholder: "Lizenz wählen...",
|
|
78
155
|
inputFieldSize: "large",
|
|
79
|
-
modelValue:
|
|
156
|
+
modelValue: u(g),
|
|
80
157
|
defaultInput: !0,
|
|
81
|
-
showError:
|
|
158
|
+
showError: r.value !== "" || i.value[0].isValid === "unset" && u(d)[1] === !1
|
|
82
159
|
},
|
|
83
|
-
data:
|
|
84
|
-
autocomplete: !0,
|
|
160
|
+
data: u(v),
|
|
85
161
|
onDeleteButtonClicked: e.deleteModifiedField
|
|
86
162
|
}, null, 8, ["modelValue", "inputFieldProps", "data", "onDeleteButtonClicked"]),
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
163
|
+
r.value ? (b(), w("div", ee, [
|
|
164
|
+
V(u(B), {
|
|
165
|
+
size: 16,
|
|
166
|
+
weight: "fill"
|
|
167
|
+
}),
|
|
168
|
+
l("span", te, o(r.value), 1)
|
|
169
|
+
])) : T("", !0),
|
|
170
|
+
l("div", se, [
|
|
171
|
+
u(I) ? (b(), U(H, {
|
|
172
|
+
key: 0,
|
|
173
|
+
modelValue: i.value[0].title,
|
|
174
|
+
"onUpdate:modelValue": t[2] || (t[2] = (s) => P(s, "title")),
|
|
175
|
+
addOnText: !1,
|
|
176
|
+
datePicker: !1,
|
|
177
|
+
infoIcon: !1,
|
|
178
|
+
placeholder: "Geben Sie den Namensnennungstext für Ihre Lizenz an...",
|
|
179
|
+
preIcon: !1,
|
|
180
|
+
inputFieldSize: "large",
|
|
181
|
+
initialHintText: !0,
|
|
182
|
+
label: e.$t(
|
|
183
|
+
"message.dataupload.datasets.dcat:distribution.advanced.dcatde:licenseAttributionByText"
|
|
184
|
+
),
|
|
185
|
+
showEndIcon: !1,
|
|
186
|
+
defaultInput: !0,
|
|
187
|
+
onDeleteButtonClicked: e.deleteModifiedField,
|
|
188
|
+
supportingHintMessage: "Dieser Namensnennungstext stellt sicher, dass die Lizenzbedingungen eingehalten werden."
|
|
189
|
+
}, null, 8, ["modelValue", "label", "onDeleteButtonClicked"])) : T("", !0),
|
|
190
|
+
i.value[0].isValid == !1 && c.value[2].show ? (b(), w("div", ie, [
|
|
191
|
+
V(u(B), {
|
|
192
|
+
size: 16,
|
|
193
|
+
weight: "fill"
|
|
194
|
+
}),
|
|
195
|
+
l("span", ae, o(c.value[2].message), 1)
|
|
196
|
+
])) : T("", !0)
|
|
197
|
+
]),
|
|
198
|
+
l("div", le, [
|
|
199
|
+
l("div", ne, [
|
|
200
|
+
l("div", oe, [
|
|
201
|
+
V(u(R), {
|
|
112
202
|
size: 32,
|
|
113
203
|
color: "#009fe3"
|
|
114
204
|
}),
|
|
115
|
-
|
|
205
|
+
l("div", de, o(e.$t("message.dataupload.datasets.dct:license.advices.title")), 1)
|
|
116
206
|
]),
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
207
|
+
l("div", re, [
|
|
208
|
+
l("div", ue, o(e.$t("message.dataupload.datasets.dct:license.advices.description")), 1),
|
|
209
|
+
l("div", ce, [
|
|
210
|
+
l("div", pe, [
|
|
211
|
+
k(o(e.$t(
|
|
122
212
|
"message.dataupload.datasets.dct:license.advices.licenseName1"
|
|
123
213
|
)) + " ", 1),
|
|
124
|
-
|
|
214
|
+
l("span", ve, o(e.$t(
|
|
125
215
|
"message.dataupload.datasets.dct:license.advices.licenseName1_desc"
|
|
126
216
|
)), 1)
|
|
127
217
|
]),
|
|
128
|
-
|
|
129
|
-
|
|
218
|
+
l("div", fe, [
|
|
219
|
+
k(o(e.$t(
|
|
130
220
|
"message.dataupload.datasets.dct:license.advices.licenseName2"
|
|
131
221
|
)) + " ", 1),
|
|
132
|
-
|
|
222
|
+
l("span", me, o(e.$t(
|
|
133
223
|
"message.dataupload.datasets.dct:license.advices.licenseName2_desc"
|
|
134
224
|
)), 1)
|
|
135
225
|
]),
|
|
136
|
-
|
|
137
|
-
|
|
226
|
+
l("div", _e, [
|
|
227
|
+
k(o(e.$t(
|
|
138
228
|
"message.dataupload.datasets.dct:license.advices.licenseName3"
|
|
139
229
|
)) + " ", 1),
|
|
140
|
-
|
|
230
|
+
l("span", ge, o(e.$t(
|
|
141
231
|
"message.dataupload.datasets.dct:license.advices.licenseName3_desc"
|
|
142
232
|
)), 1)
|
|
143
233
|
]),
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
234
|
+
l("a", he, [
|
|
235
|
+
V(u(G), { size: 24 }),
|
|
236
|
+
k(" " + o(e.$t(
|
|
147
237
|
"message.dataupload.datasets.dct:license.advices.linkToLicenses"
|
|
148
238
|
)), 1)
|
|
149
239
|
])
|
|
@@ -151,10 +241,19 @@ const x = { class: "dpiV3InnerComponentWrap" }, H = { class: "copy-large-regular
|
|
|
151
241
|
])
|
|
152
242
|
])
|
|
153
243
|
]),
|
|
154
|
-
|
|
244
|
+
l("div", Ve, [
|
|
245
|
+
t[4] || (t[4] = l("span", { class: "copy-large-regular" }, " Die Wahl der Lizenz spielt eine wichtige Rolle für den korrekten Umgang mit Ihrem Datensatz. ", -1)),
|
|
246
|
+
i.value.find((s) => s.isValid === !1) ? (b(), w("div", be, [
|
|
247
|
+
V(u(B), {
|
|
248
|
+
size: 16,
|
|
249
|
+
weight: "fill"
|
|
250
|
+
}),
|
|
251
|
+
t[3] || (t[3] = l("span", { class: "copy-mini-regular" }, "Bitte füllen Sie alle Pflichtfelder aus, bevor Sie fortfahren.", -1))
|
|
252
|
+
])) : T("", !0)
|
|
253
|
+
])
|
|
155
254
|
]));
|
|
156
255
|
}
|
|
157
|
-
},
|
|
256
|
+
}, De = /* @__PURE__ */ X(ye, [["__scopeId", "data-v-59209c92"]]);
|
|
158
257
|
export {
|
|
159
|
-
|
|
258
|
+
De as default
|
|
160
259
|
};
|