@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,10 +1,17 @@
1
- import { ref as s, onMounted as b, getCurrentInstance as x, watch as c, createElementBlock as p, openBlock as f, Fragment as z, createCommentVNode as I, createVNode as g, normalizeClass as D, unref as C } from "vue";
2
- import { getLicenses as V } from "../../services/dpiV3_apis.js";
3
- import T from "../Dropdown.vue.js";
4
- import B from "../InputField.vue.js";
1
+ import { ref as s, onMounted as _, getCurrentInstance as N, watch as y, createElementBlock as f, openBlock as d, Fragment as S, createCommentVNode as g, createElementVNode as b, createVNode as w, createBlock as E, normalizeClass as M, unref as m, toDisplayString as x } from "vue";
2
+ import { getLicenses as P } from "../../services/dpiV3_apis.js";
3
+ import O from "../Dropdown.vue.js";
4
+ import U from "../InputField.vue.js";
5
+ import { PhWarning as D } from "@phosphor-icons/vue";
5
6
  /* empty css */
6
- import F from "../../../../_virtual/_plugin-vue_export-helper.js";
7
- const k = { key: 0 }, y = {
7
+ import A from "../../../../_virtual/_plugin-vue_export-helper.js";
8
+ const H = { key: 0 }, W = { class: "dpiV3_LinkAndMetadata" }, q = {
9
+ key: 0,
10
+ class: "dpiV3_errorMessage"
11
+ }, j = { class: "copy-mini-regular" }, G = {
12
+ key: 2,
13
+ class: "dpiV3_errorMessage"
14
+ }, J = { class: "copy-mini-regular" }, $ = {
8
15
  __name: "ChangeLicenseV3",
9
16
  props: {
10
17
  distributionId: { type: Number, required: !1 },
@@ -14,100 +21,146 @@ const k = { key: 0 }, y = {
14
21
  asCard: { type: Boolean, default: !1 }
15
22
  },
16
23
  emits: ["addChangeLicense", "deleteButtonClicked"],
17
- setup(o, { emit: m }) {
18
- let d = s([]);
19
- b(async () => {
20
- const n = x().appContext.app.config.globalProperties.$env;
24
+ setup(r, { expose: T, emit: V }) {
25
+ let h = s([]);
26
+ const c = s(null), p = s(null);
27
+ _(async () => {
28
+ const t = N().appContext.app.config.globalProperties.$env;
21
29
  try {
22
- const e = await V(n.api.baseUrl);
23
- d.value = e.map((u) => ({
24
- "@value": u.value,
25
- label: u.label
30
+ a.changeLicenseText !== "" && (v.value = !0);
31
+ const e = await P(t.api.baseUrl);
32
+ h.value = e.map((o) => ({
33
+ uri: o.uri,
34
+ "@value": o.value,
35
+ label: o.label
26
36
  }));
27
37
  } catch (e) {
28
38
  console.error("Failed to load licenses", e);
29
39
  }
30
40
  });
31
- const i = o, l = s(i.changeLicenseText);
41
+ const a = r;
42
+ let v = s(!1);
43
+ const l = s(a.changeLicenseText);
32
44
  s([]);
33
- const a = s(i.changeLicenseDropdownText), r = m, h = (t) => {
34
- l.value = t.target.value, r(
45
+ const i = s(a.changeLicenseDropdownText), z = V, u = (n, t) => {
46
+ const e = typeof i.value == "string" ? i.value.trim() : "", o = typeof l.value == "string" ? l.value.trim() : "";
47
+ let L = !1;
48
+ if (t) {
49
+ const F = n !== "" && (n.includes("cc-by") || n.includes("dl-by-de"));
50
+ v.value = F;
51
+ }
52
+ return c.value = null, p.value = null, e && (e.toLowerCase().includes("cc-by") || e.toLowerCase().includes("cc by")) && (o || (p.value = "Nennung des Datenbereitstellers ist erforderlich für diese Lizenz", L = !0)), o && !e && (c.value = "Lizenz ist erforderlich wenn Nennung des Datenbereitstellers ausgefüllt ist", L = !0), L;
53
+ }, I = (n) => {
54
+ var e;
55
+ const t = typeof n == "string" ? n : ((e = n == null ? void 0 : n.target) == null ? void 0 : e.value) ?? "";
56
+ l.value = t, z(
35
57
  "addChangeLicense",
36
58
  l.value,
37
- a.value,
38
- i.distributionId
59
+ i.value,
60
+ a.distributionId
61
+ ), setTimeout(() => {
62
+ u(n, !1);
63
+ }, 0);
64
+ }, C = (n) => {
65
+ let t = h.value.find(
66
+ (e) => e["@value"] === n
39
67
  );
40
- }, v = (t) => {
41
- a.value = t, r(
68
+ i.value = n, l.value = "", z(
42
69
  "addChangeLicense",
43
70
  l.value,
44
- a.value,
45
- i.distributionId
46
- );
71
+ i.value,
72
+ a.distributionId,
73
+ t.uri
74
+ ), setTimeout(() => {
75
+ u(n, !0);
76
+ }, 0);
47
77
  };
48
- c(
49
- () => i.changeLicenseDropdownText,
50
- (t) => {
51
- a.value = t;
78
+ y(
79
+ () => a.changeLicenseDropdownText,
80
+ (n) => {
81
+ i.value = n;
52
82
  }
53
- ), c(
54
- () => i.changeLicenseText,
55
- (t) => {
56
- l.value = t;
83
+ ), y(
84
+ () => a.changeLicenseText,
85
+ (n) => {
86
+ l.value = n;
57
87
  }
58
88
  );
59
- const L = () => {
60
- a.value = "";
61
- }, w = () => {
62
- l.value = "";
89
+ const k = () => {
90
+ i.value = "", setTimeout(() => {
91
+ u();
92
+ }, 0);
93
+ }, B = () => {
94
+ l.value = "", setTimeout(() => {
95
+ u();
96
+ }, 0);
63
97
  };
64
- return (t, n) => (f(), p(z, null, [
65
- o.asCard ? I("", !0) : (f(), p("p", k, " Die von Ihnen gewählte Lizenz bestimmt, wie andere Ihre Daten verwenden und teilen können. Je einfacher die Lizenz, desto besser. Um eine Wiederverwendung zu erleichtern, ist die Auswahl eines bereits verbreiteten Lizenzstandards zu empfehlen. ")),
66
- g(T, {
67
- "onUpdate:modelValue": [
68
- n[0] || (n[0] = (e) => v(e)),
69
- n[1] || (n[1] = (e) => a.value = e)
70
- ],
71
- dropdownWidth: "large",
72
- type: "inputField",
73
- modelValue: a.value,
74
- inputFieldProps: {
98
+ return T({
99
+ validate: u
100
+ }), (n, t) => (d(), f(S, null, [
101
+ r.asCard ? g("", !0) : (d(), f("p", H, " Die von Ihnen gewählte Lizenz bestimmt, wie andere Ihre Daten verwenden und teilen können. Je einfacher die Lizenz, desto besser. Um eine Wiederverwendung zu erleichtern, ist die Auswahl eines bereits verbreiteten Lizenzstandards zu empfehlen. ")),
102
+ b("div", W, [
103
+ w(O, {
104
+ "onUpdate:modelValue": [
105
+ t[0] || (t[0] = (e) => C(e)),
106
+ t[1] || (t[1] = (e) => i.value = e)
107
+ ],
108
+ dropdownWidth: "large",
109
+ type: "inputField",
110
+ modelValue: i.value,
111
+ inputFieldProps: {
112
+ addOnText: !1,
113
+ initialHintText: !1,
114
+ datePicker: !1,
115
+ infoIcon: !1,
116
+ preIcon: !1,
117
+ label: "Lizenz nur für diesen Link",
118
+ dropdown_dpiV3: !0,
119
+ placeholder: "Geben Sie die Lizenz ein...",
120
+ inputFieldSize: "large",
121
+ modelValue: i.value,
122
+ defaultInput: !r.showDeleteButton
123
+ },
124
+ data: m(h),
125
+ onDeleteDropdownField: k,
126
+ class: M({ dpiV3_Space3: r.showDeleteButton })
127
+ }, null, 8, ["modelValue", "inputFieldProps", "data", "class"]),
128
+ c.value ? (d(), f("div", q, [
129
+ w(m(D), {
130
+ size: 16,
131
+ weight: "fill"
132
+ }),
133
+ b("span", j, x(c.value), 1)
134
+ ])) : g("", !0),
135
+ m(v) ? (d(), E(U, {
136
+ key: 1,
137
+ onInput: t[2] || (t[2] = (e) => I(e)),
138
+ modelValue: l.value,
139
+ "onUpdate:modelValue": t[3] || (t[3] = (e) => l.value = e),
75
140
  addOnText: !1,
76
- initialHintText: !1,
77
141
  datePicker: !1,
78
142
  infoIcon: !1,
143
+ placeholder: "Bitte Namensnennungstext eingeben...",
79
144
  preIcon: !1,
80
- label: "Lizenz nur für diesen Link",
81
- dropdown_dpiV3: !0,
82
- placeholder: "Geben Sie die Lizenz ein...",
83
145
  inputFieldSize: "large",
84
- modelValue: a.value,
85
- defaultInput: !o.showDeleteButton
86
- },
87
- data: C(d),
88
- onDeleteDropdownField: L,
89
- class: D({ dpiV3_Space3: o.showDeleteButton })
90
- }, null, 8, ["modelValue", "inputFieldProps", "data", "class"]),
91
- g(B, {
92
- onInput: n[2] || (n[2] = (e) => h(e)),
93
- modelValue: l.value,
94
- "onUpdate:modelValue": n[3] || (n[3] = (e) => l.value = e),
95
- addOnText: !1,
96
- datePicker: !1,
97
- infoIcon: !1,
98
- placeholder: "Bitte Namensnennungstext eingeben...",
99
- preIcon: !1,
100
- inputFieldSize: "large",
101
- initialHintText: !0,
102
- label: "Nennung des Datenbereitstellers",
103
- showEndIcon: !1,
104
- defaultInput: !o.showDeleteButton,
105
- onDeleteButtonClicked: w,
106
- supportingHintMessage: "Dieser Namensnennungstext stellt sicher, dass die Lizenzbedingungen eingehalten werden."
107
- }, null, 8, ["modelValue", "defaultInput"])
146
+ initialHintText: !0,
147
+ label: "Nennung des Datenbereitstellers",
148
+ showEndIcon: !1,
149
+ defaultInput: !r.showDeleteButton,
150
+ onDeleteButtonClicked: B,
151
+ supportingHintMessage: "Dieser Namensnennungstext stellt sicher, dass die Lizenzbedingungen eingehalten werden."
152
+ }, null, 8, ["modelValue", "defaultInput"])) : g("", !0),
153
+ p.value ? (d(), f("div", G, [
154
+ w(m(D), {
155
+ size: 16,
156
+ weight: "fill"
157
+ }),
158
+ b("span", J, x(p.value), 1)
159
+ ])) : g("", !0)
160
+ ])
108
161
  ], 64));
109
162
  }
110
- }, O = /* @__PURE__ */ F(y, [["__scopeId", "data-v-1896a82d"]]);
163
+ }, ne = /* @__PURE__ */ A($, [["__scopeId", "data-v-65faf32f"]]);
111
164
  export {
112
- O as default
165
+ ne as default
113
166
  };
@@ -1,116 +1,153 @@
1
- import { ref as s, onMounted as w, getCurrentInstance as x, watch as p, createElementBlock as I, openBlock as T, Fragment as V, createVNode as m, normalizeClass as C } from "vue";
2
- import { getChecksumAlgorithms as b } from "../../services/dpiV3_apis.js";
3
- import D from "../Dropdown.vue.js";
4
- import F from "../InputField.vue.js";
1
+ import { ref as r, onMounted as P, getCurrentInstance as E, watch as C, createElementBlock as v, openBlock as h, normalizeClass as k, createElementVNode as g, createCommentVNode as b, createVNode as d, unref as I, toDisplayString as w } from "vue";
2
+ import { useFormValues as z } from "../../../composables/useDpiFormValues.js";
3
+ import { getChecksumAlgorithms as M } from "../../services/dpiV3_apis.js";
4
+ import N from "../Dropdown.vue.js";
5
+ import q from "../InputField.vue.js";
6
+ import { PhWarning as y } from "@phosphor-icons/vue";
5
7
  /* empty css */
6
- import B from "../../../../_virtual/_plugin-vue_export-helper.js";
7
- const y = {
8
+ import O from "../../../../_virtual/_plugin-vue_export-helper.js";
9
+ const U = {
10
+ key: 0,
11
+ class: "dpiV3_errorMessage"
12
+ }, W = { class: "copy-mini-regular" }, H = {
13
+ key: 0,
14
+ class: "dpiV3_errorMessage"
15
+ }, G = { class: "copy-mini-regular" }, L = {
8
16
  __name: "ChecksumV3",
9
17
  props: {
10
18
  distributionId: { type: Number, required: !1 },
11
19
  showDeleteButton: { type: Boolean, default: !1 },
12
20
  checksumText: { type: String, default: "" },
13
21
  checksumDropdownText: { type: String, default: "" },
14
- uri: { type: String, default: "" }
22
+ uri: { type: String, default: "" },
23
+ distIndex: { type: Number, required: !1 },
24
+ asCard: { type: Boolean, required: !1, default: !1 }
15
25
  },
16
26
  emits: ["addChecksum", "deleteButtonClicked"],
17
- setup(u, { emit: f }) {
18
- const d = s([]);
19
- w(async () => {
20
- const e = x().appContext.app.config.globalProperties.$env;
27
+ setup(n, { expose: T, emit: D }) {
28
+ const c = r([]), { formValues: m } = z(), o = r(null), u = r(null);
29
+ P(async () => {
30
+ const l = E().appContext.app.config.globalProperties.$env;
21
31
  try {
22
- const t = await b(e.api.baseUrl);
23
- d.value = t.map((i) => ({
24
- "@value": i.value,
25
- label: i.label,
32
+ const e = await M(l.api.baseUrl);
33
+ c.value = e.map((f) => ({
34
+ "@value": f.value,
35
+ label: f.label,
26
36
  selected: !1,
27
- uri: i.resource
37
+ uri: f.resource
28
38
  }));
29
- } catch (t) {
30
- console.error("Failed to load checksum algorithms:", t);
39
+ } catch (e) {
40
+ console.error("Failed to load checksum algorithms:", e);
31
41
  }
32
42
  });
33
- const n = u, a = s(n.checksumText);
34
- s([]);
35
- const o = s(n.checksumDropdownText), r = f;
36
- let c = "";
37
- const h = (l) => {
38
- a.value = l.target.value, r(
43
+ const s = n, i = r(s.checksumText);
44
+ r([]);
45
+ const a = r(s.checksumDropdownText), V = D;
46
+ let x = "";
47
+ const p = () => {
48
+ const t = i.value && i.value.trim() !== "", l = a.value && a.value.trim() !== "";
49
+ let e = !1;
50
+ return t || l ? (t ? u.value = null : (u.value = "Prüfsumme ist erforderlich", e = !0), l ? o.value = null : (o.value = "Algorithmus ist erforderlich", e = !0)) : (u.value = null, o.value = null), !e;
51
+ }, F = () => !p(), S = (t) => {
52
+ i.value = t.target.value, V(
39
53
  "addChecksum",
54
+ i.value,
40
55
  a.value,
41
- o.value,
42
- n.distributionId
43
- );
44
- }, k = (l) => {
45
- o.value = l, c = d.value.find((e) => e["@value"] === l).uri || "", r(
56
+ s.distributionId
57
+ ), p();
58
+ }, A = (t) => {
59
+ var l;
60
+ a.value = t, x = ((l = c.value.find((e) => e["@value"] === t)) == null ? void 0 : l.uri) || "", V(
46
61
  "addChecksum",
62
+ i.value,
47
63
  a.value,
48
- o.value,
49
- n.distributionId,
50
- c
51
- );
64
+ s.distributionId,
65
+ x
66
+ ), p();
52
67
  };
53
- p(
54
- () => n.checksumDropdownText,
55
- (l) => {
56
- o.value = l;
68
+ C(
69
+ () => s.checksumDropdownText,
70
+ (t) => {
71
+ a.value = t;
57
72
  }
58
- ), p(
59
- () => n.checksumText,
60
- (l) => {
61
- a.value = l;
73
+ ), C(
74
+ () => s.checksumText,
75
+ (t) => {
76
+ i.value = t;
62
77
  }
63
78
  );
64
- const v = () => {
65
- console.log("delete clicked"), o.value = "";
66
- }, g = () => {
67
- a.value = "";
79
+ const _ = () => {
80
+ m.value.DistributionSimple["dcat:distribution"][s.distIndex].checksum.uri = "", m.value.DistributionSimple["dcat:distribution"][s.distIndex].checksum["spdx:checksum"] = "", a.value = "", o.value = null;
81
+ }, B = () => {
82
+ m.value.DistributionSimple["dcat:distribution"][s.distIndex].checksum.title = "", i.value = "", u.value = null;
68
83
  };
69
- return (l, e) => (T(), I(V, null, [
70
- m(F, {
71
- onInput: e[0] || (e[0] = (t) => h(t)),
72
- modelValue: a.value,
73
- "onUpdate:modelValue": e[1] || (e[1] = (t) => a.value = t),
74
- addOnText: !1,
75
- datePicker: !1,
76
- infoIcon: !1,
77
- placeholder: "Bitte Prüfsumme eingeben...",
78
- preIcon: !1,
79
- inputFieldSize: "large",
80
- initialHintText: !1,
81
- label: "Prüfsumme",
82
- showEndIcon: !1,
83
- defaultInput: !u.showDeleteButton,
84
- onDeleteButtonClicked: g,
85
- class: C({ dpiV3_Space3: u.showDeleteButton })
86
- }, null, 8, ["modelValue", "defaultInput", "class"]),
87
- m(D, {
88
- "onUpdate:modelValue": [
89
- e[2] || (e[2] = (t) => k(t)),
90
- e[3] || (e[3] = (t) => o.value = t)
91
- ],
92
- dropdownWidth: "large",
93
- type: "inputField",
94
- modelValue: o.value,
95
- inputFieldProps: {
84
+ return T({
85
+ validateAllItems: F
86
+ }), (t, l) => (h(), v("div", {
87
+ class: k(["dpiV3_LinkAndMetadata", { dpiV3_docAllAsCard: n.asCard }])
88
+ }, [
89
+ g("div", {
90
+ class: k(["dpiV3AutoCompleteWrap", { dpiV3_docAsCard: n.asCard }])
91
+ }, [
92
+ d(q, {
93
+ onInput: l[0] || (l[0] = (e) => S(e)),
94
+ modelValue: i.value,
95
+ "onUpdate:modelValue": l[1] || (l[1] = (e) => i.value = e),
96
96
  addOnText: !1,
97
- initialHintText: !1,
98
97
  datePicker: !1,
99
98
  infoIcon: !1,
99
+ placeholder: "Bitte Prüfsumme eingeben...",
100
100
  preIcon: !1,
101
- label: "Algorithmus",
102
- dropdown_dpiV3: !0,
103
- placeholder: "Geben Sie den Algorithmus ein...",
104
101
  inputFieldSize: "large",
105
- modelValue: o.value,
106
- defaultInput: !u.showDeleteButton
107
- },
108
- data: d.value,
109
- onDeleteDropdownField: v
110
- }, null, 8, ["modelValue", "inputFieldProps", "data"])
111
- ], 64));
102
+ initialHintText: !1,
103
+ label: "Prüfsumme",
104
+ showEndIcon: !1,
105
+ defaultInput: !0,
106
+ onDeleteButtonClicked: B,
107
+ class: k({ dpiV3_Space3: n.showDeleteButton })
108
+ }, null, 8, ["modelValue", "class"]),
109
+ u.value ? (h(), v("div", U, [
110
+ d(I(y), {
111
+ size: 16,
112
+ weight: "fill"
113
+ }),
114
+ g("span", W, w(u.value), 1)
115
+ ])) : b("", !0),
116
+ d(N, {
117
+ "onUpdate:modelValue": [
118
+ l[2] || (l[2] = (e) => A(e)),
119
+ l[3] || (l[3] = (e) => a.value = e)
120
+ ],
121
+ dropdownWidth: "large",
122
+ type: "inputField",
123
+ modelValue: a.value,
124
+ inputFieldProps: {
125
+ addOnText: !1,
126
+ initialHintText: !1,
127
+ datePicker: !1,
128
+ infoIcon: !1,
129
+ preIcon: !1,
130
+ label: "Algorithmus",
131
+ dropdown_dpiV3: !0,
132
+ placeholder: "Geben Sie den Algorithmus ein...",
133
+ inputFieldSize: "large",
134
+ modelValue: a.value,
135
+ defaultInput: !0
136
+ },
137
+ data: c.value,
138
+ onDeleteDropdownField: _
139
+ }, null, 8, ["modelValue", "inputFieldProps", "data"])
140
+ ], 2),
141
+ o.value ? (h(), v("div", H, [
142
+ d(I(y), {
143
+ size: 16,
144
+ weight: "fill"
145
+ }),
146
+ g("span", G, w(o.value), 1)
147
+ ])) : b("", !0)
148
+ ], 2));
112
149
  }
113
- }, E = /* @__PURE__ */ B(y, [["__scopeId", "data-v-057ec666"]]);
150
+ }, Z = /* @__PURE__ */ O(L, [["__scopeId", "data-v-a3888031"]]);
114
151
  export {
115
- E as default
152
+ Z as default
116
153
  };