@piveau/dpi 0.1.0-beta.8 → 0.1.0-beta.80

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 +56 -51
  5. package/dist/data-provider-interface/HappyFlowComponents/services/dpiV3_apis.js +96 -76
  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 +441 -353
  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 +118 -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 +573 -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 +957 -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 +107 -77
  44. package/dist/data-provider-interface/components/ReviewAndPublishPage.vue.js +315 -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 +408 -246
  51. package/dist/data-provider-interface/config/dcatapde/vocab-prefixes.js +1 -1
  52. package/dist/data-provider-interface/config/dcatapdeHappyFlow/converter.js +496 -98
  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 +366 -737
  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,46 +1,46 @@
1
- import { getNode as B } from "@formkit/core";
1
+ import { getNode as K } from "@formkit/core";
2
2
  import "@formkit/vue";
3
- import { PhNumberCircleFive as Z, PhCheckCircle as G, PhLightbulb as X } from "@phosphor-icons/vue";
4
- import { useWindowScroll as Y } from "@vueuse/core";
5
- import J from "jquery";
6
- import { has as _, isNil as F } from "lodash-es";
7
- import { defineComponent as N, resolveComponent as g, createElementBlock as o, openBlock as s, createCommentVNode as n, createElementVNode as a, createVNode as h, createBlock as S, withModifiers as Q, withCtx as U, Fragment as V, renderList as k, withDirectives as O, normalizeClass as C, toDisplayString as u, vShow as z, createTextVNode as M, ref as j, markRaw as x, getCurrentInstance as ee } from "vue";
3
+ import { PhNumberCircleFive as Z, PhCheckCircle as G, PhLightbulb as J } from "@phosphor-icons/vue";
4
+ import { useWindowScroll as Q } from "@vueuse/core";
5
+ import X from "jquery";
6
+ import { has as I, isNil as E } from "lodash-es";
7
+ import { defineComponent as Y, resolveComponent as g, createElementBlock as r, openBlock as s, createCommentVNode as p, createElementVNode as o, createVNode as v, createBlock as b, withModifiers as N, withCtx as j, Fragment as V, renderList as _, withDirectives as z, normalizeClass as y, toDisplayString as c, vShow as H, createTextVNode as M, ref as R, markRaw as x, getCurrentInstance as ee } from "vue";
8
8
  import { useI18n as te } from "vue-i18n";
9
- import { mapActions as H, mapGetters as W } from "vuex";
9
+ import { mapActions as B, mapGetters as W } from "vuex";
10
10
  import ie from "../components/InputPageStep.vue.js";
11
11
  import se from "../components/Navigation.vue.js";
12
- import { useFormValues as ae } from "../composables/useDpiFormValues.js";
13
- import { useDpiStepper as oe } from "../composables/useDpiStepper.js";
14
- import q from "../config/dcatapdeHappyFlow/converter.js";
12
+ import { useFormValues as oe } from "../composables/useDpiFormValues.js";
13
+ import { useDpiStepper as ae } from "../composables/useDpiStepper.js";
14
+ import O from "../config/dcatapdeHappyFlow/converter.js";
15
15
  import re from "../HappyFlowComponents/img/Circle.svg.js";
16
16
  import le from "../HappyFlowComponents/img/CircleFill.svg.js";
17
- import de from "../HappyFlowComponents/img/Selected1.svg.js";
18
- import ne from "../HappyFlowComponents/img/Selected1_2.svg.js";
19
- import ce from "../HappyFlowComponents/img/Selected2.svg.js";
20
- import pe from "../HappyFlowComponents/img/Selected2_2.svg.js";
21
- import ue from "../HappyFlowComponents/img/Selected3.svg.js";
17
+ import ne from "../HappyFlowComponents/img/Selected1.svg.js";
18
+ import de from "../HappyFlowComponents/img/Selected1_2.svg.js";
19
+ import pe from "../HappyFlowComponents/img/Selected2.svg.js";
20
+ import ue from "../HappyFlowComponents/img/Selected2_2.svg.js";
21
+ import ce from "../HappyFlowComponents/img/Selected3.svg.js";
22
22
  import he from "../HappyFlowComponents/img/Selected3_2.svg.js";
23
- import me from "../HappyFlowComponents/img/Selected4.svg.js";
24
- import ge from "../HappyFlowComponents/img/Selected4_2.svg.js";
25
- import fe from "../HappyFlowComponents/img/Selected5.svg.js";
26
- import ve from "../HappyFlowComponents/img/Selected5_2.svg.js";
23
+ import ve from "../HappyFlowComponents/img/Selected4.svg.js";
24
+ import me from "../HappyFlowComponents/img/Selected4_2.svg.js";
25
+ import ge from "../HappyFlowComponents/img/Selected5.svg.js";
26
+ import fe from "../HappyFlowComponents/img/Selected5_2.svg.js";
27
27
  import { eventBus as be } from "../HappyFlowComponents/services/eventBus.js";
28
28
  import Se from "../HappyFlowComponents/ui/ButtonV3.vue.js";
29
- import ye from "../HappyFlowComponents/ui/Illustration.vue.js";
30
- import Ce from "../HappyFlowComponents/ui/LogoV3.vue.js";
29
+ import Ce from "../HappyFlowComponents/ui/Illustration.vue.js";
30
+ import ye from "../HappyFlowComponents/ui/LogoV3.vue.js";
31
31
  import Ve from "../HappyFlowComponents/ui/ModalSimpleV3.vue.js";
32
- import ke from "../HappyFlowComponents/ui/TextButtonSmall.vue.js";
33
- import De from "./DistributionInputPage.vue.js";
34
- import Ie from "./OverviewPage.vue.js";
35
- import _e from "./PropertyChooser.vue.js";
32
+ import _e from "../HappyFlowComponents/ui/TextButtonSmall.vue.js";
33
+ import ke from "./DistributionInputPage.vue.js";
34
+ import $e from "./OverviewPage.vue.js";
35
+ import Ie from "./PropertyChooser.vue.js";
36
36
  /* empty css */
37
37
  /* empty css */
38
38
  /* empty css */
39
39
  import Te from "../../_virtual/_plugin-vue_export-helper.js";
40
- import { useDpiContext as Le } from "../composables/useDpiContext.js";
40
+ import { useDpiContext as De } from "../composables/useDpiContext.js";
41
41
  import { useEditModeInfo as Pe } from "../composables/useDpiEditMode.js";
42
42
  import { useFormSchema as we } from "../composables/useFormSchema.js";
43
- const Ae = N({
43
+ const Fe = Y({
44
44
  props: {
45
45
  property: {
46
46
  required: !0,
@@ -54,15 +54,14 @@ const Ae = N({
54
54
  data() {
55
55
  return {
56
56
  circles: [re, le],
57
- images: [de, ce, ue, me, fe],
57
+ images: [ne, pe, ce, ve, ge],
58
58
  selectedImages: [
59
- ne,
60
- pe,
59
+ de,
60
+ ue,
61
61
  he,
62
- ge,
63
- ve
62
+ me,
63
+ fe
64
64
  ],
65
- instance: ee(),
66
65
  heightActiveSec: "10vh",
67
66
  // formValues: {},
68
67
  offsetTopStepper: "60px",
@@ -85,14 +84,14 @@ const Ae = N({
85
84
  },
86
85
  components: {
87
86
  InputPageStep: ie,
88
- DistributionInputPage: De,
89
- PropertyChooser: _e,
87
+ DistributionInputPage: ke,
88
+ PropertyChooser: Ie,
90
89
  Navigation: se,
91
- LogoV3: Ce,
90
+ LogoV3: ye,
92
91
  ButtonV3: Se,
93
- TextButtonSmall: ke,
94
- Illustration: ye,
95
- PhLightbulb: X,
92
+ TextButtonSmall: _e,
93
+ Illustration: Ce,
94
+ PhLightbulb: J,
96
95
  PhCheckCircle: G,
97
96
  PhNumberCircleFive: Z,
98
97
  ModalSimpleV3: Ve
@@ -106,7 +105,7 @@ const Ae = N({
106
105
  ...W("dpiStore", ["getNavSteps", "getDeleteDistributionInline"]),
107
106
  getTitleStep() {
108
107
  return Object.keys(this.formValues).filter(
109
- (e) => _(this.formValues[e], "dct:title")
108
+ (e) => I(this.formValues[e], "dct:title")
110
109
  )[0];
111
110
  },
112
111
  createIDFromTitle() {
@@ -117,7 +116,7 @@ const Ae = N({
117
116
  getFirstTitleFromForm() {
118
117
  try {
119
118
  const e = this.formValues[this.getTitleStep];
120
- return _(e, "dct:title") && e["dct:title"].length > 0 && _(e["dct:title"][0], "@value") && !F(e["dct:title"][0], "@value") ? e["dct:title"][0]["@value"] : "";
119
+ return I(e, "dct:title") && e["dct:title"].length > 0 && I(e["dct:title"][0], "@value") && !E(e["dct:title"][0], "@value") ? e["dct:title"][0]["@value"] : "";
121
120
  } catch {
122
121
  }
123
122
  },
@@ -126,8 +125,8 @@ const Ae = N({
126
125
  }
127
126
  },
128
127
  methods: {
129
- ...H("auth", ["setIsEditMode", "setIsDraft"]),
130
- ...H("dpiStore", [
128
+ ...B("auth", ["setIsEditMode", "setIsDraft"]),
129
+ ...B("dpiStore", [
131
130
  "saveFormValues",
132
131
  "saveLocalstorageValues",
133
132
  "clearAll"
@@ -137,417 +136,15 @@ const Ae = N({
137
136
  },
138
137
  // Route to the RAP Page
139
138
  goToRAP() {
140
- this.fillData(), this.activeStep = "ReviewAndPublish", this.activeSubStep = Object.keys(B(this.activeStep).value)[0];
141
- },
142
- // Remove after DPI development is finished - just fills all fields with dummy Data
143
- fillData() {
144
- this.formValues = {
145
- Landing: { happyFlowLandingPage: {} },
146
- Discoverability: {
147
- discoverabilityPage: [
148
- { isValid: !0 },
149
- {
150
- id: "SOCI",
151
- uri: "http://publications.europa.eu/resource/authority/data-theme/SOCI",
152
- label: "Bevölkerung und Gesellschaft"
153
- },
154
- {
155
- id: "EDUC",
156
- uri: "http://publications.europa.eu/resource/authority/data-theme/EDUC",
157
- label: "Bildung, Kultur und Sport"
158
- }
159
- ],
160
- hvdPage: [
161
- {
162
- isValid: !0,
163
- label: "Erdbeobachtung und Umwelt",
164
- uri: "http://data.europa.eu/bna/c_dd313021"
165
- }
166
- ]
167
- },
168
- BasicInfos: {
169
- "dct:title": [
170
- {
171
- isValid: !0,
172
- "@value": "Datensatz mit allen Props neu! Micha",
173
- "@language": "de"
174
- }
175
- ],
176
- "dct:description": [
177
- {
178
- isValid: !0,
179
- "@value": "Description Datensatz",
180
- "@language": "de"
181
- }
182
- ],
183
- "dct:modified": [
184
- {
185
- isValid: !0,
186
- "@type": "http://www.w3.org/2001/XMLSchema#date",
187
- "@value": "2025-07-01"
188
- }
189
- ],
190
- "dct:publisher": [
191
- {
192
- isValid: !0,
193
- "foaf:name": "OrgaName",
194
- "foaf:mbox": "emailOrga@mail.de",
195
- "foaf:homepage": "orgawebseite.de"
196
- }
197
- ],
198
- "dcat:contactPoint": [
199
- {
200
- isValid: !0,
201
- "vcard:fn": "Mobilitätsreferat - Verkehrs- und Verhaltensdaten",
202
- "vcard:hasEmail": "verkehrsdaten.mor@muenchen.de",
203
- "vcard:hasTelephone": "0158727522505"
204
- }
205
- ]
206
- },
207
- Covering: {
208
- "dcatde:politicalGeocodingURI": [{ isValid: !0 }],
209
- "dcat:temporalResolution": [
210
- {
211
- isValid: !0,
212
- type: "dct:PeriodOfTime",
213
- "dct:temporal": [
214
- {
215
- dataType: "dateTime",
216
- "dcat:startDate": "2025-07-03",
217
- "dcat:endDate": "2025-07-18",
218
- startTime: "12:08",
219
- endTime: "12:08"
220
- }
221
- ]
222
- }
223
- ]
224
- },
225
- DistributionSimple: {
226
- "dcat:distribution": [
227
- {
228
- isValid: !0,
229
- id: 1,
230
- "dcat:accessURL": "https://linkzudaten.de",
231
- "dct:format": {
232
- label: "GDB",
233
- uri: "http://publications.europa.eu/resource/authority/file-type/GDB"
234
- },
235
- "dct:title": "Dist Titel",
236
- documentations: [
237
- {
238
- id: 1,
239
- "dcat:accessURL": "",
240
- "dct:format": "STL",
241
- "dct:title": "Dokumentation Titel",
242
- "dct:description": "Dokumentation Description",
243
- "dcat:downloadURL": "https://dloadURL.de"
244
- }
245
- ],
246
- conformsToItems: [
247
- {
248
- id: 1,
249
- "dcat:accessURL": "",
250
- "dct:title": "Conforms To Titel",
251
- "dcat:downloadURL": "https://konformsto.de"
252
- }
253
- ],
254
- policyItems: [
255
- {
256
- id: 1,
257
- "dcat:accessURL": "",
258
- "dcat:downloadURL": "Https://regelwerk.de"
259
- }
260
- ],
261
- accessServices: [
262
- {
263
- id: 1,
264
- "dcat:accessURL": "",
265
- "dct:title": "Ausliefernder Datenservice Titel",
266
- "dct:description": "Ausliefernder Datenservice Beschreibung",
267
- "dcat:downloadURL": "https://ausliefernderDatenservice.de"
268
- }
269
- ],
270
- "dct:modified": "2025-07-03",
271
- "dct:issued": "2025-07-01",
272
- "dct:description": "Dist Beschreibung",
273
- "dcatde:licenseAttributionByText": "Namensnennungstext für By-Clauses",
274
- "dct:accessRights": "https://zugaenglichkeit.url",
275
- "dcatap:availability": {
276
- label: "AVAILABLE",
277
- uri: "http://publications.europa.eu/resource/authority/planned-availability/AVAILABLE"
278
- },
279
- "dct:language": {
280
- label: "ABK (ABK)",
281
- uri: "http://publications.europa.eu/resource/authority/language/ABK"
282
- },
283
- "dcat:byteSize": "51",
284
- "dcat:mediaType": {
285
- label: "CSS",
286
- uri: "http://publications.europa.eu/resource/authority/file-type/CSS"
287
- },
288
- "dcat:compressFormat": {
289
- label: "DOC",
290
- uri: "http://publications.europa.eu/resource/authority/file-type/DOC"
291
- },
292
- "dcat:packageFormat": {
293
- label: "FMX4_ZIP",
294
- uri: "http://publications.europa.eu/resource/authority/file-type/FMX4_ZIP"
295
- },
296
- "adms:status": "",
297
- checksum: {
298
- title: "31",
299
- "spdx:checksum": "sha384",
300
- uri: "http://spdx.org/rdf/terms#checksumAlgorithm_sha384"
301
- },
302
- changeLicense: { title: "", "dcterms:license": "" },
303
- showErrorFormat: !1,
304
- formatErrorMessage: "",
305
- showErrorDownloadURL: !1
306
- },
307
- {
308
- isValid: !0,
309
- id: 1,
310
- "dcat:accessURL": "https://linkzudatenZWEI.de",
311
- "dct:format": {
312
- label: "GDB",
313
- uri: "http://publications.europa.eu/resource/authority/file-type/GDB"
314
- },
315
- "dct:title": "Dist Titel ZWEI",
316
- documentations: [
317
- {
318
- id: 1,
319
- "dcat:accessURL": "",
320
- "dct:format": "STL",
321
- "dct:title": "Dokumentation Titel ZWEI",
322
- "dct:description": "Dokumentation Description",
323
- "dcat:downloadURL": "https://dloadURL.de"
324
- }
325
- ],
326
- conformsToItems: [
327
- {
328
- id: 1,
329
- "dcat:accessURL": "",
330
- "dct:title": "Conforms To Titel",
331
- "dcat:downloadURL": "https://konformsto.de"
332
- }
333
- ],
334
- policyItems: [
335
- {
336
- id: 1,
337
- "dcat:accessURL": "",
338
- "dcat:downloadURL": "Https://regelwerk.de"
339
- }
340
- ],
341
- accessServices: [
342
- {
343
- id: 1,
344
- "dcat:accessURL": "",
345
- "dct:title": "Ausliefernder Datenservice Titel",
346
- "dct:description": "Ausliefernder Datenservice Beschreibung",
347
- "dcat:downloadURL": "https://ausliefernderDatenservice.de"
348
- }
349
- ],
350
- "dct:modified": "2025-07-03",
351
- "dct:issued": "2025-07-01",
352
- "dct:description": "Dist BeschreibungZWEI",
353
- "dcatde:licenseAttributionByText": "Namensnennungstext für By-Clauses ZWEI",
354
- "dct:accessRights": "https://zugaenglichkeitZWEI.url",
355
- "dcatap:availability": {
356
- label: "AVAILABLE",
357
- uri: "http://publications.europa.eu/resource/authority/planned-availability/AVAILABLE"
358
- },
359
- "dct:language": {
360
- label: "ABK (ABK)",
361
- uri: "http://publications.europa.eu/resource/authority/language/ABK"
362
- },
363
- "dcat:byteSize": "51",
364
- "dcat:mediaType": {
365
- label: "CSS",
366
- uri: "http://publications.europa.eu/resource/authority/file-type/CSS"
367
- },
368
- "dcat:compressFormat": {
369
- label: "DOC",
370
- uri: "http://publications.europa.eu/resource/authority/file-type/DOC"
371
- },
372
- "dcat:packageFormat": {
373
- label: "FMX4_ZIP",
374
- uri: "http://publications.europa.eu/resource/authority/file-type/FMX4_ZIP"
375
- },
376
- "adms:status": "",
377
- checksum: {
378
- title: "31",
379
- "spdx:checksum": "sha384",
380
- uri: "http://spdx.org/rdf/terms#checksumAlgorithm_sha384"
381
- },
382
- changeLicense: { title: "", "dcterms:license": "" },
383
- showErrorFormat: !1,
384
- formatErrorMessage: "",
385
- showErrorDownloadURL: !1
386
- },
387
- {
388
- isValid: !0,
389
- id: 1,
390
- "dcat:accessURL": "https://linkzudatenDREI.de",
391
- "dct:format": {
392
- label: "GDB",
393
- uri: "http://publications.europa.eu/resource/authority/file-type/GDB"
394
- },
395
- "dct:title": "Dist Titel DREI",
396
- documentations: [
397
- {
398
- id: 1,
399
- "dcat:accessURL": "",
400
- "dct:format": "STL",
401
- "dct:title": "Dokumentation Titel DREI",
402
- "dct:description": "Dokumentation Description",
403
- "dcat:downloadURL": "https://dloadURL.de"
404
- }
405
- ],
406
- conformsToItems: [
407
- {
408
- id: 1,
409
- "dcat:accessURL": "",
410
- "dct:title": "Conforms To Titel",
411
- "dcat:downloadURL": "https://konformsto.de"
412
- }
413
- ],
414
- policyItems: [
415
- {
416
- id: 1,
417
- "dcat:accessURL": "",
418
- "dcat:downloadURL": "Https://regelwerk.de"
419
- }
420
- ],
421
- accessServices: [
422
- {
423
- id: 1,
424
- "dcat:accessURL": "",
425
- "dct:title": "Ausliefernder Datenservice Titel",
426
- "dct:description": "Ausliefernder Datenservice Beschreibung",
427
- "dcat:downloadURL": "https://ausliefernderDatenservice.de"
428
- }
429
- ],
430
- "dct:modified": "2025-07-03",
431
- "dct:issued": "2025-07-01",
432
- "dct:description": "Dist BeschreibungDREI",
433
- "dcatde:licenseAttributionByText": "Namensnennungstext für By-Clauses DREI",
434
- "dct:accessRights": "https://zugaenglichkeitDREI.url",
435
- "dcatap:availability": {
436
- label: "AVAILABLE",
437
- uri: "http://publications.europa.eu/resource/authority/planned-availability/AVAILABLE"
438
- },
439
- "dct:language": {
440
- label: "ABK (ABK)",
441
- uri: "http://publications.europa.eu/resource/authority/language/ABK"
442
- },
443
- "dcat:byteSize": "51",
444
- "dcat:mediaType": {
445
- label: "CSS",
446
- uri: "http://publications.europa.eu/resource/authority/file-type/CSS"
447
- },
448
- "dcat:compressFormat": {
449
- label: "DOC",
450
- uri: "http://publications.europa.eu/resource/authority/file-type/DOC"
451
- },
452
- "dcat:packageFormat": {
453
- label: "FMX4_ZIP",
454
- uri: "http://publications.europa.eu/resource/authority/file-type/FMX4_ZIP"
455
- },
456
- "adms:status": "",
457
- checksum: {
458
- title: "31",
459
- "spdx:checksum": "sha384",
460
- uri: "http://spdx.org/rdf/terms#checksumAlgorithm_sha384"
461
- },
462
- changeLicense: { title: "", "dcterms:license": "" },
463
- showErrorFormat: !1,
464
- formatErrorMessage: "",
465
- showErrorDownloadURL: !1
466
- }
467
- ],
468
- "dct:license": [
469
- {
470
- isValid: !0,
471
- "dcterms:license": "CC_BY_3_0",
472
- title: "Datenbereitsteller Lizenz",
473
- uri: "http://publications.europa.eu/resource/authority/licence/CC_BY_3_0"
474
- }
475
- ]
476
- },
477
- ReviewAndPublish: { reviewAndPublishPage: [{ isValid: !0 }] },
478
- Additionals: {
479
- "dcatde:geocodingDescription": [{ "@value": "Geocoding Desc" }],
480
- "dct:identifier": [{ "@value": "Identifier" }],
481
- "adms:versionNotes": [{ "@value": "sadsds" }],
482
- "dcatde:legalBasis": [{ "@value": "sdfsdf" }],
483
- "dct:relation": [{ "@id": "https://sdsdfljn.de" }],
484
- "dcat:landingPage": [{ "@id": "https://dfdfgdfg.de" }],
485
- "dct:language": [
486
- {
487
- "@value": "Rarotonganisch",
488
- uri: "http://publications.europa.eu/resource/authority/language/RAR"
489
- }
490
- ],
491
- "dct:conformsTo": [
492
- { "rdfs:label": "relatesto", "@id": "https://realtes.to" }
493
- ],
494
- "dct:accessRights": [
495
- {
496
- "@value": "sensibel",
497
- uri: "http://publications.europa.eu/resource/authority/access-right/SENSITIVE"
498
- }
499
- ],
500
- "dct:provenance": [{ "rdfs:label": "fdgfgd" }],
501
- "dct:accrualPeriodicity": [
502
- {
503
- "@value": "niemals",
504
- uri: "http://publications.europa.eu/resource/authority/frequency/NEVER"
505
- }
506
- ],
507
- "dct:type": [
508
- {
509
- "@value": "Geodaten",
510
- uri: "http://publications.europa.eu/resource/authority/dataset-type/GEOSPATIAL"
511
- }
512
- ],
513
- "prov:wasGeneratedBy": [{ "@id": "https://dfdfgdfg.gr" }],
514
- "dcat:spatialResolutionInMeters": [{ "@value": "121351" }],
515
- "dcat:temporalResolution": [
516
- {
517
- Year: "2025",
518
- Month: "11",
519
- Day: "11",
520
- Hour: "11",
521
- Minute: "11",
522
- Second: "1"
523
- }
524
- ],
525
- "prov:qualifiedAttribution": [{ "@id": "https://sdfsdf.de" }],
526
- "dcat:qualifiedRelation": [{ "@id": "https://sdfsdfs.de" }],
527
- "dct:isReferencedBy": [{ "@id": "https://asdasda.de" }],
528
- "dct:source": [{ "@id": "https://asdijhdf.de" }],
529
- "dct:hasVersion": [{ "@id": "https://asdasda.de" }],
530
- "dct:isVersionOf": [{ "@id": "https://asdasd.de" }],
531
- "dct:creator": [
532
- {
533
- "foaf:name": "asdasd",
534
- "foaf:mbox": "asdasd@mail.de",
535
- "foaf:homepage": "homepage.de"
536
- }
537
- ],
538
- "dct:contributor": [
539
- {
540
- "foaf:mbox": "asdasdasd@mail.de",
541
- "foaf:name": "kjabskdjabs",
542
- "foaf:homepage": "kahsbdkhasbd.de"
543
- }
544
- ]
545
- }
546
- }, console.log(this.$formkit.get("dpiForm"));
139
+ this.fillData(), this.activeStep = "ReviewAndPublish", this.activeSubStep = Object.keys(K(this.activeStep).value)[0];
547
140
  },
548
141
  getCircles(e) {
549
142
  return e === this.substepCounter ? this.circles[1] : this.circles[0];
550
143
  },
144
+ validateStep() {
145
+ var e, t, i, l, a;
146
+ ((i = (t = (e = this.formValues[this.activeStep]) == null ? void 0 : e[this.activeSubStep]) == null ? void 0 : t[0]) == null ? void 0 : i.isValid) === !0 || ((l = this.formValues[this.activeStep][this.activeSubStep]) == null ? void 0 : l.isValid) === !0 ? this.navTrigger("next") : ((a = this.formValues[this.activeStep][this.activeSubStep]) != null && a[0] ? this.formValues[this.activeStep][this.activeSubStep][0].isValid = !1 : this.formValues[this.activeStep][this.activeSubStep].isValid = !1, this.handleDistributionsValidation(this.activeSubStep));
147
+ },
551
148
  handleDistributionsValidation(e) {
552
149
  be.emit("nextClicked", e);
553
150
  },
@@ -559,18 +156,20 @@ const Ae = N({
559
156
  navTrigger(e, t) {
560
157
  try {
561
158
  let i = [];
562
- if (Object.keys(this.steps).forEach((d, p) => {
563
- let b = {
564
- step: d,
565
- substeps: this.subSteps[p],
566
- substepCount: Object.keys(this.subSteps[p]).length
159
+ if (Object.keys(this.steps).forEach((l, a) => {
160
+ let m = {
161
+ step: l,
162
+ substeps: this.subSteps[a],
163
+ substepCount: Object.keys(this.subSteps[a]).length
567
164
  };
568
- i.push(b);
165
+ i.push(m);
569
166
  }), e === "next" && (i[this.stepCounter].substepCount > 1 ? (this.substepCounter + 1 === i[this.stepCounter].substepCount ? (this.stepCounter++, this.activeStep = i[this.stepCounter].step, this.activeSubStep = Object.keys(
570
167
  i[this.stepCounter].substeps
571
168
  )[0], this.substepCounter = 0) : (this.substepCounter++, this.activeSubStep = Object.keys(
572
169
  i[this.stepCounter].substeps
573
- )[this.substepCounter]), this.handleDistributionsValidation(this.activeSubStep), this.activeStep === "ReviewAndPublish" && (B(this.activeStep).value[this.activeSubStep][0].isValid = !0)) : this.stepCounter != i.length - 1 && (this.stepCounter++, this.activeSubStep = Object.keys(
170
+ )[this.substepCounter]), this.handleDistributionsValidation(this.activeSubStep), this.activeStep === "ReviewAndPublish" && (this.formValues.ReviewAndPublish.reviewAndPublishPage = [
171
+ { isValid: !0 }
172
+ ])) : this.stepCounter != i.length - 1 && (this.stepCounter++, this.activeSubStep = Object.keys(
574
173
  i[this.stepCounter].substeps
575
174
  )[0], this.activeStep = i[this.stepCounter].step)), e === "prev" && (i[this.stepCounter].substepCount > 1 ? this.substepCounter > 0 ? (this.substepCounter--, this.activeSubStep = Object.keys(
576
175
  i[this.stepCounter].substeps
@@ -579,21 +178,43 @@ const Ae = N({
579
178
  )[this.substepCounter]) : (this.substepCounter = Object.keys(i[this.stepCounter - 1].substeps).length - 1, this.stepCounter--, this.activeSubStep = Object.keys(
580
179
  i[this.stepCounter].substeps
581
180
  )[this.substepCounter], this.activeStep = i[this.stepCounter].step)), e === "publish") {
582
- let d = "auth/createDataset";
583
- q(
181
+ let l = "auth/createDataset";
182
+ O(
584
183
  this.formValues,
585
184
  this.dpiContext,
586
185
  this.getUserData,
587
186
  this.$env.api.hubUrl
588
- ).then((p) => {
187
+ ).then((a) => {
589
188
  this.dispatchDataToDPI(
590
- p.body,
591
- d,
592
- p.actionParams,
189
+ a.body,
190
+ l,
191
+ a.actionParams,
593
192
  "publish"
594
193
  );
595
- }).catch((p) => {
596
- console.error("Fehler beim Senden der Daten:", p);
194
+ }).catch((a) => {
195
+ console.error("Fehler beim Senden der Daten:", a);
196
+ }), setTimeout(() => {
197
+ window.location.href = this.$router.resolve({
198
+ name: "DPI-Home-HappyFlow"
199
+ }).href;
200
+ }, 1e3);
201
+ }
202
+ if (e === "depublish") {
203
+ let l = "auth/depublishById";
204
+ O(
205
+ this.formValues,
206
+ this.dpiContext,
207
+ this.getUserData,
208
+ this.$env.api.hubUrl
209
+ ).then((a) => {
210
+ this.dispatchDataToDPI(
211
+ a.body,
212
+ l,
213
+ a.actionParams,
214
+ "depublish"
215
+ );
216
+ }).catch((a) => {
217
+ console.error("Fehler beim Senden der Daten:", a);
597
218
  }), setTimeout(() => {
598
219
  window.location.href = this.$router.resolve({
599
220
  name: "DPI-Home-HappyFlow"
@@ -601,21 +222,21 @@ const Ae = N({
601
222
  }, 1e3);
602
223
  }
603
224
  if (e === "draft") {
604
- let d = "auth/createUserDraft";
605
- q(
225
+ let l = "auth/createUserDraft";
226
+ O(
606
227
  this.formValues,
607
228
  this.dpiContext,
608
229
  this.getUserData,
609
230
  this.$env.api.hubUrl
610
- ).then((p) => {
231
+ ).then((a) => {
611
232
  this.dispatchDataToDPI(
612
- p.body,
613
- d,
614
- p.actionParams,
233
+ a.body,
234
+ l,
235
+ a.actionParams,
615
236
  "draft"
616
237
  );
617
- }).catch((p) => {
618
- console.error("Fehler beim Senden der Daten:", p);
238
+ }).catch((a) => {
239
+ console.error("Fehler beim Senden der Daten:", a);
619
240
  }), setTimeout(() => {
620
241
  window.location.href = this.$router.resolve({
621
242
  name: "DPI-Home-HappyFlow"
@@ -626,13 +247,17 @@ const Ae = N({
626
247
  console.log(i);
627
248
  }
628
249
  },
629
- async dispatchDataToDPI(e, t, i, d) {
630
- var p, b;
631
- console.log("body:", e, t, "params:", i, d);
250
+ async dispatchDataToDPI(e, t, i, l) {
251
+ var a, m;
632
252
  try {
633
- d === "publish" && (i.token = this.getUserData.rtpToken, console.log(i.token), i.url = `${this.$env.api.hubUrl}catalogues/${i.catalog}/datasets/origin?originalId=${i.id}`, await this.$store.dispatch(t, i)), d === "draft" && await this.$store.dispatch(t, i), (p = this.$Progress) == null || p.finish(), this.clearAll();
634
- } catch (y) {
635
- console.error(y), (b = this.$Progress) == null || b.fail();
253
+ l === "publish" && (i.token = this.getUserData.rtpToken, localStorage.getItem("dpi_draftmode") === "true" && localStorage.getItem("dpi_editmode") === "true" ? (i.url = `${this.$env.api.hubUrl}catalogues/${i.catalog}/datasets/origin?originalId=${i.id}`, await this.$store.dispatch("auth/createUserDraft", i), i.url = `${this.$env.api.hubUrl}drafts/datasets/publish/${i.id}?catalogue=${i.catalog}`) : i.url = `${this.$env.api.hubUrl}catalogues/${i.catalog}/datasets/origin?originalId=${i.id}`, await this.$store.dispatch(t, i)), l === "draft" && await this.$store.dispatch(t, i), l === "depublish" && (await this.$store.dispatch("auth/putDatasetToDraft", {
254
+ id: i.id,
255
+ catalog: i.catalog,
256
+ title: i.title,
257
+ description: i.description
258
+ }), i.url = `${this.$env.api.hubUrl}catalogues/${i.catalog}/datasets/origin?originalId=${i.id}`, await this.$store.dispatch("auth/createUserDraft", i)), (a = this.$Progress) == null || a.finish(), this.clearAll();
259
+ } catch (C) {
260
+ console.error(C), (m = this.$Progress) == null || m.fail();
636
261
  }
637
262
  },
638
263
  dropdownCLick() {
@@ -650,29 +275,33 @@ const Ae = N({
650
275
  window.scrollTo(0, 0);
651
276
  },
652
277
  initInputPage() {
653
- this.activeSubStep = this.activeSubStep || "Landing";
654
- const e = this.getSchema(this.property).value, t = Object.keys(e).find(
655
- (i) => e[i].map((d) => d.name).includes("dct:issued") || e[i].map((d) => d.name).includes("dct:modified")
278
+ this.activeSubStep = this.activeSubStep || "Landing", ee().appContext.app.config.globalProperties.$env;
279
+ const t = this.getSchema(this.property).value, i = Object.keys(t).find(
280
+ (l) => t[l].map((a) => a.name).includes("dct:issued") || t[l].map((a) => a.name).includes("dct:modified")
656
281
  );
657
- this.$formkit.setLocale("de"), localStorage.getItem("dpi_editmode") === "true" && t != null && e[t].forEach((i) => {
658
- (i.identifier === "issued" || i.identifier === "modified") && (i.children[1].props.else.validation = "", i.children[1].props.else["validation-visibility"] = "", i.children[1].props.then.validation = "", i.children[1].props.then["validation-visibility"] = "", i.children[1].props.then.validation = "", i.children[1].props.then["validation-visibility"] = "");
282
+ this.$formkit.setLocale("de"), localStorage.getItem("dpi_editmode") === "true" && i != null && t[i].forEach((l) => {
283
+ (l.identifier === "issued" || l.identifier === "modified") && (l.children[1].props.else.validation = "", l.children[1].props.else["validation-visibility"] = "", l.children[1].props.then.validation = "", l.children[1].props.then["validation-visibility"] = "", l.children[1].props.then.validation = "", l.children[1].props.then["validation-visibility"] = "");
659
284
  }), localStorage.getItem("dpi_editmode") === "false" && (this.setIsDraft(!1), this.setIsEditMode(!1)), this.$nextTick(() => {
660
- J('[data-toggle="tooltip"]').tooltip({
285
+ X('[data-bs-toggle="tooltip"]').tooltip({
661
286
  container: "body"
662
287
  }), setTimeout(() => {
663
- document.querySelectorAll(".formkitProperty h4").forEach((d, p) => {
664
- d.parentElement.parentElement.classList.contains(
288
+ document.querySelectorAll(".formkitProperty h4").forEach((a, m) => {
289
+ a.parentElement.parentElement.classList.contains(
665
290
  "formkitWrapRepeatable"
666
- ) || (p != 0 && p != 1 && p != 2 && p != 3 && d.nextElementSibling.classList.toggle("d-none"), d.addEventListener("click", () => {
667
- d.classList.toggle("dpiChevUp"), d.nextElementSibling.classList.toggle("d-none");
291
+ ) || (m != 0 && m != 1 && m != 2 && m != 3 && a.nextElementSibling.classList.toggle("d-none"), a.addEventListener("click", () => {
292
+ a.classList.toggle("dpiChevUp"), a.nextElementSibling.classList.toggle("d-none");
668
293
  }));
669
294
  }), document.querySelectorAll(".formkitProperty");
670
295
  });
671
296
  });
672
297
  },
298
+ handlePublishedRoute() {
299
+ const e = this.formValues[this.getTitleStep].datasetID, t = new URL(this.$env.api.baseUrl).origin + "/";
300
+ window.location.href = t + "datasets/" + e + "?locale=de";
301
+ },
673
302
  createDatasetID() {
674
303
  const e = this.formValues[this.getTitleStep];
675
- !_(e, "datasetID") || F(e.datasetID) ? this.formValues[this.getTitleStep].datasetID = this.createIDFromTitle : (this.createIDFromTitle.startsWith(e.datasetID) || e.datasetID.startsWith(this.createIDFromTitle)) && (this.formValues[this.getTitleStep].datasetID = this.createIDFromTitle);
304
+ !I(e, "datasetID") || E(e.datasetID) ? this.formValues[this.getTitleStep].datasetID = this.createIDFromTitle : (this.createIDFromTitle.startsWith(e.datasetID) || e.datasetID.startsWith(this.createIDFromTitle)) && (this.formValues[this.getTitleStep].datasetID = this.createIDFromTitle);
676
305
  },
677
306
  generateandTranslateSchema(e) {
678
307
  for (let t = 0; t < this.getNavSteps(this.$env.content.dataProviderInterface.specification)[e].length; t++)
@@ -715,466 +344,466 @@ const Ae = N({
715
344
  }
716
345
  },
717
346
  beforeRouteEnter(e, t, i) {
718
- i((d) => {
719
- t.name && !t.name.startsWith("DataProviderInterface") && d.clearAll();
347
+ i((l) => {
348
+ t.name && !t.name.startsWith("DataProviderInterface") && l.clearAll();
720
349
  });
721
350
  },
722
351
  setup() {
723
- const e = Le(), { isEditMode: t } = Pe(), {
352
+ const e = De(), { isEditMode: t } = Pe(), {
724
353
  steps: i,
725
- activeStep: d,
726
- subSteps: p,
727
- visitedSteps: b,
728
- previousStep: y,
729
- nextStep: m,
730
- stepPlugin: D,
354
+ activeStep: l,
355
+ subSteps: a,
356
+ visitedSteps: m,
357
+ previousStep: C,
358
+ nextStep: h,
359
+ stepPlugin: k,
731
360
  goToNextStep: T,
732
- goToPreviousStep: I
733
- } = oe(), { formValues: L } = ae(), { t: P, te: w } = te(), A = j(!1), { translateSchema: $, createSchema: R, getSchema: E } = we({
361
+ goToPreviousStep: $
362
+ } = ae(), { formValues: D } = oe(), { t: P, te: w } = te(), F = R(!1), { translateSchema: A, createSchema: L, getSchema: U } = we({
734
363
  t: P,
735
364
  te: w
736
- }), r = () => {
737
- let { x: f, y: K } = Y({ behavior: "smooth" });
738
- K.value = 0;
739
- }, c = (f) => (i[f].errorCount > 0 || i[f].blockingCount > 0) && b.value.includes(f), l = x({ OverviewPage: Ie }), v = j("");
740
- return t.value && (d.value = "ReviewAndPublish", v.value = "reviewAndPublishPage"), {
365
+ }), n = () => {
366
+ let { x: f, y: q } = Q({ behavior: "smooth" });
367
+ q.value = 0;
368
+ }, u = (f) => (i[f].errorCount > 0 || i[f].blockingCount > 0) && m.value.includes(f), d = x({ OverviewPage: $e }), S = R("");
369
+ return t.value && (l.value = "ReviewAndPublish", S.value = "reviewAndPublishPage"), {
741
370
  steps: i,
742
- visitedSteps: b,
743
- activeStep: d,
744
- activeSubStep: v,
745
- subSteps: p,
746
- previousStep: y,
747
- nextStep: m,
748
- stepPlugin: D,
749
- checkStepValidity: c,
371
+ visitedSteps: m,
372
+ activeStep: l,
373
+ activeSubStep: S,
374
+ subSteps: a,
375
+ previousStep: C,
376
+ nextStep: h,
377
+ stepPlugin: k,
378
+ checkStepValidity: u,
750
379
  goToNextStep: T,
751
- goToPreviousStep: I,
752
- scrollToTop: r,
753
- library: l,
380
+ goToPreviousStep: $,
381
+ scrollToTop: n,
382
+ library: d,
754
383
  isEditMode: t,
755
- translateSchema: $,
756
- createSchema: R,
757
- getSchema: E,
384
+ translateSchema: A,
385
+ createSchema: L,
386
+ getSchema: U,
758
387
  dpiContext: e,
759
- formValues: L,
760
- activeSimpleModal: A
388
+ formValues: D,
389
+ activeSimpleModal: F
761
390
  };
762
391
  }
763
- }), $e = { class: "form-container V3-typography" }, Re = {
392
+ }), Ae = { class: "form-container V3-typography" }, Le = {
764
393
  key: 0,
765
394
  ref: "fkInputContainer",
766
395
  class: "inputContainer"
767
- }, Ee = { class: "formContainer formkit" }, Be = { key: 0 }, Fe = { class: "dpiV3_stepper draftStepper" }, Ue = {
396
+ }, Ue = { class: "formContainer formkit" }, Oe = { key: 0 }, Ee = { class: "dpiV3_stepper draftStepper" }, je = {
768
397
  key: 0,
769
398
  class: "draftCTA"
770
- }, Oe = {
399
+ }, ze = {
771
400
  key: 1,
772
401
  class: "draftCTA"
773
- }, ze = { key: 1 }, Me = {
402
+ }, He = { key: 1 }, Me = {
774
403
  key: 0,
775
404
  class: "dpiV3_stepper"
776
- }, je = { class: "dpiV3_steps" }, He = ["data-step-active", "data-step-valid"], We = { class: "dpiV3_stepBubbleWrap" }, qe = ["src"], Ke = ["src"], Ze = ["textContent"], Ge = { style: { "vertical-align": "middle" } }, Xe = { class: "dpiV3_subStepWrapper" }, Ye = {
405
+ }, Re = { class: "dpiV3_steps" }, Be = ["data-step-active", "data-step-valid"], We = { class: "dpiV3_stepBubbleWrap" }, qe = ["src"], Ke = ["src"], Ze = ["textContent"], Ge = { style: { "vertical-align": "middle" } }, Je = { class: "dpiV3_subStepWrapper" }, Qe = {
777
406
  key: 0,
778
407
  class: "dpiV3_seperatorHorizontalStepper"
779
- }, Je = {
408
+ }, Xe = {
780
409
  key: 1,
781
410
  class: "dpiV3_seperatorHorizontalStepperFat"
782
- }, Ne = {
411
+ }, Ye = {
783
412
  key: 2,
784
413
  class: "dpiV3_subStep"
785
- }, Qe = { class: "dpiV3_subStepInner" }, xe = { class: "dpiV3_subStepCircleWrap" }, et = ["src"], tt = { style: { height: "20px", display: "flex", "align-items": "center" } }, it = {
414
+ }, Ne = { class: "dpiV3_subStepInner" }, xe = { class: "dpiV3_subStepCircleWrap" }, et = ["src"], tt = { style: { height: "20px", display: "flex", "align-items": "center" } }, it = {
786
415
  key: 0,
787
416
  class: "dpiV3_step dpiV3_inactiveStep"
788
417
  }, st = {
789
418
  key: 1,
790
419
  class: "dpiV3_stepperLanding"
791
- }, at = { class: "dpiV3_bydata_logo_wordmark" }, ot = { class: "dpiV3_Illustration-Start" }, rt = {
420
+ }, ot = { class: "dpiV3_bydata_logo_wordmark" }, at = { class: "dpiV3_Illustration-Start" }, rt = {
792
421
  key: 2,
793
422
  class: "steps"
794
- }, lt = ["data-step-active", "data-step-valid", "onClick"], dt = { class: "stepBubbleWrap" }, nt = { class: "circle stepCircle" }, ct = ["textContent"], pt = {
423
+ }, lt = ["data-step-active", "data-step-valid", "onClick"], nt = { class: "stepBubbleWrap" }, dt = { class: "circle stepCircle" }, pt = ["textContent"], ut = {
795
424
  key: 0,
796
425
  class: "seperatorHorizontalStepper"
797
- }, ut = {
426
+ }, ct = {
798
427
  key: 0,
799
428
  class: "step inactiveStep"
800
- }, ht = { style: { width: "100%" } }, mt = {
429
+ }, ht = { style: { width: "100%" } }, vt = {
801
430
  key: 0,
802
431
  class: "dpiV3_CTALanding"
803
- }, gt = {
432
+ }, mt = {
804
433
  key: 1,
805
434
  class: "dpiV3_CTA_RaP"
806
- }, ft = { class: "dpiV3_CTANav" }, vt = { class: "dpiV3_CTANav" }, bt = {
435
+ }, gt = { class: "dpiV3_CTANav" }, ft = { class: "dpiV3_CTANav" }, bt = {
807
436
  key: 3,
808
437
  class: "dpiV3_Content_InputPage"
809
- }, St = { class: "dpiV3_Card_Tips" }, yt = { class: "dpiV3_Icon_Title" }, Ct = { class: "dpiV3_Info-Text dpiV3_activeStepName" }, Vt = { class: "dpiV3_CT-Content" }, kt = { class: "dpiV3_copy_large_regular dpiV3_hvd_frame3846" }, Dt = { class: "dpiV3_hvd_frame3846" }, It = { class: "dpiV3_copy_large_semi_bold" }, _t = { class: "dpiV3_copy_large_regular" }, Tt = { class: "dpiV3_hvd_frame3846" }, Lt = { class: "dpiV3_copy_large_semi_bold" }, Pt = { class: "dpiV3_copy_large_regular" }, wt = { class: "dpiV3_hvd_frame3846" }, At = { class: "dpiV3_copy_large_semi_bold" }, $t = { class: "dpiV3_copy_large_regular" }, Rt = { class: "dpiV3_hvd_frame3846" }, Et = { class: "dpiV3_copy_large_semi_bold" }, Bt = { class: "dpiV3_copy_large_regular" }, Ft = {
438
+ }, St = { class: "dpiV3_Card_Tips" }, Ct = { class: "dpiV3_Icon_Title" }, yt = { class: "dpiV3_Info-Text dpiV3_activeStepName" }, Vt = { class: "dpiV3_CT-Content" }, _t = { class: "dpiV3_copy_large_regular dpiV3_hvd_frame3846" }, kt = { class: "dpiV3_hvd_frame3846" }, $t = { class: "dpiV3_copy_large_semi_bold" }, It = { class: "dpiV3_copy_large_regular" }, Tt = { class: "dpiV3_hvd_frame3846" }, Dt = { class: "dpiV3_copy_large_semi_bold" }, Pt = { class: "dpiV3_copy_large_regular compact_margin_bottom" }, wt = { class: "dpiV3_hvd_frame3846" }, Ft = { class: "dpiV3_copy_large_semi_bold" }, At = { class: "dpiV3_copy_large_regular compact_margin_bottom" }, Lt = { class: "dpiV3_hvd_frame3846" }, Ut = { class: "dpiV3_copy_large_semi_bold" }, Ot = { class: "dpiV3_copy_large_regular" }, Et = {
810
439
  key: 5,
811
440
  class: "p-1"
812
441
  };
813
- function Ut(e, t, i, d, p, b) {
814
- const y = g("TextButtonSmall"), m = g("ButtonV3"), D = g("LogoV3"), T = g("PhNumberCircleFive"), I = g("PhCheckCircle"), L = g("Illustration"), P = g("FormKitSchema"), w = g("PhLightbulb"), A = g("DistributionInputPage"), $ = g("InputPageStep"), R = g("FormKit"), E = g("ModalSimpleV3");
815
- return s(), o("div", $e, [
816
- e.isInput ? (s(), o("div", Re, [
817
- a("div", Ee, [
818
- h(R, {
442
+ function jt(e, t, i, l, a, m) {
443
+ const C = g("TextButtonSmall"), h = g("ButtonV3"), k = g("LogoV3"), T = g("PhNumberCircleFive"), $ = g("PhCheckCircle"), D = g("Illustration"), P = g("FormKitSchema"), w = g("PhLightbulb"), F = g("DistributionInputPage"), A = g("InputPageStep"), L = g("FormKit"), U = g("ModalSimpleV3");
444
+ return s(), r("div", Ae, [
445
+ e.isInput ? (s(), r("div", Le, [
446
+ o("div", Ue, [
447
+ v(L, {
819
448
  id: "dpiForm",
820
449
  modelValue: e.formValues,
821
- "onUpdate:modelValue": t[7] || (t[7] = (r) => e.formValues = r),
450
+ "onUpdate:modelValue": t[11] || (t[11] = (n) => e.formValues = n),
822
451
  type: "form",
823
452
  actions: !1,
824
453
  plugins: [e.stepPlugin],
825
454
  class: "d-flex",
826
- onChange: t[8] || (t[8] = (r) => e.saveFormValues({
827
- property: e.property,
828
- page: e.page,
829
- distid: e.id,
830
- values: e.formValues
831
- })),
832
- onClick: t[9] || (t[9] = (r) => e.saveFormValues({
833
- property: e.property,
834
- page: e.page,
835
- distid: e.id,
836
- values: e.formValues
837
- })),
838
- onSubmit: t[10] || (t[10] = Q(() => {
455
+ onSubmit: t[12] || (t[12] = N(() => {
839
456
  }, ["prevent"]))
840
457
  }, {
841
- default: U(() => [
842
- e.dpiContext.edit.fromDraft || e.dpiContext.edit.enabled ? (s(), o("div", Be, [
843
- a("div", Fe, [
844
- h(y, {
458
+ default: j(() => [
459
+ e.dpiContext.edit.fromDraft || e.dpiContext.edit.enabled ? (s(), r("div", Oe, [
460
+ o("div", Ee, [
461
+ v(C, {
845
462
  "button-text": "Übersicht",
846
463
  "icon-start": "CaretLeft",
847
464
  "icon-name": "caretLeft",
848
465
  onClick: e.gotToHome
849
466
  }, null, 8, ["onClick"]),
850
- a("div", null, [
851
- e.dpiContext.edit.enabled && !e.dpiContext.edit.fromDraft ? (s(), o("div", Ue, [
852
- h(m, {
467
+ o("div", null, [
468
+ e.dpiContext.edit.enabled && !e.dpiContext.edit.fromDraft ? (s(), r("div", je, [
469
+ v(h, {
853
470
  "button-text": "Veröffentlichung aufheben",
854
471
  size: "large",
855
- onClick: e.todoHandler
856
- }, null, 8, ["onClick"]),
857
- h(m, {
472
+ onClick: t[0] || (t[0] = (n) => e.navTrigger("depublish"))
473
+ }),
474
+ v(h, {
858
475
  "button-text": "Veröffentlicht ansehen",
859
476
  variant: "secondary",
860
477
  size: "large",
861
478
  "icon-end": "Out",
862
- onClick: e.todoHandler
863
- }, null, 8, ["onClick"])
864
- ])) : (s(), o("div", Oe, [
865
- h(m, {
479
+ onClick: t[1] || (t[1] = (n) => e.handlePublishedRoute())
480
+ })
481
+ ])) : (s(), r("div", ze, [
482
+ v(h, {
866
483
  "button-text": "Veröffentlichen",
867
484
  size: "large",
868
- onClick: t[0] || (t[0] = (r) => e.navTrigger("publish"))
485
+ onClick: t[2] || (t[2] = (n) => e.navTrigger("publish"))
869
486
  })
870
487
  ]))
871
488
  ])
872
489
  ])
873
- ])) : (s(), o("div", ze, [
874
- e.$env.content.dataProviderInterface.specification === "dcatapdeHappyFlow" && e.activeStep !== "Landing" ? (s(), o("div", Me, [
875
- h(D),
876
- a("ul", je, [
877
- (s(!0), o(V, null, k(e.steps, (r, c, l) => O((s(), o("li", {
878
- key: r,
879
- class: C(["dpiV3_step", {
880
- dpiV3_activeItem: e.activeStep === c,
881
- inactiveStep: c != e.activeStep,
882
- "has-errors": e.checkStepValidity(c)
490
+ ])) : (s(), r("div", He, [
491
+ e.$env.content.dataProviderInterface.specification === "dcatapdeHappyFlow" && e.activeStep !== "Landing" ? (s(), r("div", Me, [
492
+ v(k),
493
+ o("ul", Re, [
494
+ (s(!0), r(V, null, _(e.steps, (n, u, d) => z((s(), r("li", {
495
+ key: n,
496
+ class: y(["dpiV3_step", {
497
+ dpiV3_activeItem: e.activeStep === u,
498
+ inactiveStep: u != e.activeStep,
499
+ "has-errors": e.checkStepValidity(u)
883
500
  }]),
884
- "data-step-active": e.activeStep === c,
885
- "data-step-valid": r.valid && r.errorCount === 0
501
+ "data-step-active": e.activeStep === u,
502
+ "data-step-valid": n.valid && n.errorCount === 0
886
503
  }, [
887
- a("div", We, [
888
- a("div", {
889
- class: C({
890
- dpiV3_activeStepName: c === e.activeStep,
891
- formerlyVisitedStep: e.stepCounter > l,
892
- "copy-small-regular": e.stepCounter > l
893
- })
504
+ o("div", We, [
505
+ o("div", {
506
+ class: y(["firstRowWrapper", {
507
+ dpiV3_activeStepName: u === e.activeStep,
508
+ formerlyVisitedStep: e.stepCounter > d,
509
+ "copy-small-regular": e.stepCounter > d
510
+ }])
894
511
  }, [
895
- e.activeStep === c && l < 5 ? (s(), o("img", {
512
+ e.activeStep === u && d < 5 ? (s(), r("img", {
896
513
  key: 0,
897
514
  class: "dpiV3_circle dpiV3_stepCircle",
898
- src: e.selectedImages[l - 1],
515
+ src: e.selectedImages[d - 1],
899
516
  alt: "Selected Icon"
900
- }, null, 8, qe)) : n("", !0),
901
- e.activeStep === c && l === 5 ? (s(), S(T, {
517
+ }, null, 8, qe)) : p("", !0),
518
+ e.activeStep === u && d === 5 ? (s(), b(T, {
902
519
  key: 1,
903
520
  size: 28,
904
521
  color: "#009FE3",
905
522
  weight: "fill"
906
- })) : n("", !0),
907
- l < e.stepCounter ? (s(), S(I, {
523
+ })) : p("", !0),
524
+ d < e.stepCounter ? (s(), b($, {
908
525
  key: 2,
909
526
  size: 28,
910
527
  color: "#70CC44",
911
528
  weight: "fill"
912
- })) : n("", !0),
913
- l > e.stepCounter ? (s(), o("img", {
529
+ })) : p("", !0),
530
+ d > e.stepCounter ? (s(), r("img", {
914
531
  key: 3,
915
532
  class: "dpiV3_circle dpiV3_stepCircle",
916
- src: e.images[l - 1],
533
+ src: e.images[d - 1],
917
534
  alt: "Selected Icon"
918
- }, null, 8, Ke)) : n("", !0),
919
- e.checkStepValidity(c) ? (s(), o("span", {
535
+ }, null, 8, Ke)) : p("", !0),
536
+ e.checkStepValidity(u) ? (s(), r("span", {
920
537
  key: 4,
921
538
  class: "dpiV3_step--errors",
922
- textContent: u(r.errorCount + r.blockingCount)
923
- }, null, 8, Ze)) : n("", !0),
924
- a("span", Ge, u(e.$t(`message.dataupload.steps.${c}Step`)), 1)
539
+ textContent: c(n.errorCount + n.blockingCount)
540
+ }, null, 8, Ze)) : p("", !0),
541
+ o("span", Ge, c(e.$t(`message.dataupload.steps.${u}Step`)), 1)
925
542
  ], 2),
926
- a("div", Xe, [
927
- l + 1 != Object.keys(e.steps).length - 1 && l >= e.stepCounter ? (s(), o("div", Ye)) : n("", !0),
928
- l + 1 != Object.keys(e.steps).length - 1 && l < e.stepCounter ? (s(), o("div", Je)) : n("", !0),
929
- e.activeStep === c ? (s(), o("div", Ne, [
930
- e.stepCounter < 5 ? (s(!0), o(V, { key: 0 }, k(Object.keys(
931
- e.subSteps[l]
932
- ), (v, f) => (s(), o("div", Qe, [
933
- a("div", xe, [
934
- e.substepCounter > f ? (s(), S(I, {
543
+ o("div", Je, [
544
+ d + 1 != Object.keys(e.steps).length - 1 && d >= e.stepCounter ? (s(), r("div", Qe)) : p("", !0),
545
+ d + 1 != Object.keys(e.steps).length - 1 && d < e.stepCounter ? (s(), r("div", Xe)) : p("", !0),
546
+ e.activeStep === u ? (s(), r("div", Ye, [
547
+ e.stepCounter < 5 ? (s(!0), r(V, { key: 0 }, _(Object.keys(
548
+ e.subSteps[d]
549
+ ), (S, f) => (s(), r("div", Ne, [
550
+ o("div", xe, [
551
+ e.substepCounter > f ? (s(), b($, {
935
552
  key: 0,
936
553
  size: 20,
937
554
  color: "#009FE3"
938
- })) : (s(), o("img", {
555
+ })) : (s(), r("img", {
939
556
  key: 1,
940
557
  src: e.getCircles(f),
941
558
  alt: "circle"
942
559
  }, null, 8, et)),
943
- f != Object.keys(e.subSteps[l]).length - 1 ? (s(), o("div", {
560
+ f != Object.keys(e.subSteps[d]).length - 1 ? (s(), r("div", {
944
561
  key: 2,
945
- class: C(["dpiV3_seperatorHorizontalStepperInner", {
562
+ class: y(["dpiV3_seperatorHorizontalStepperInner", {
946
563
  dpiV3_seperatorHorizontalStepperInnerVisited: e.substepCounter > f
947
564
  }])
948
- }, null, 2)) : n("", !0)
565
+ }, null, 2)) : p("", !0)
949
566
  ]),
950
- a("div", tt, [
951
- a("span", {
952
- class: C(["large-regular dpiV3_substepText", {
953
- dpiV3_activeStepDesc: v === e.activeSubStep,
567
+ o("div", tt, [
568
+ o("span", {
569
+ class: y(["large-regular dpiV3_substepText", {
570
+ dpiV3_activeStepDesc: S === e.activeSubStep,
954
571
  formerlyVisitedStep: e.substepCounter > f
955
572
  }])
956
- }, u(e.$t(
957
- `message.dataupload.steps.${v.replace(/_\d+$/, "")}`
573
+ }, c(e.$t(
574
+ `message.dataupload.steps.${S.replace(
575
+ /_\d+$/,
576
+ ""
577
+ )}`
958
578
  )), 3)
959
579
  ])
960
- ]))), 256)) : n("", !0)
961
- ])) : n("", !0)
580
+ ]))), 256)) : p("", !0)
581
+ ])) : p("", !0)
962
582
  ])
963
583
  ])
964
- ], 10, He)), [
965
- [z, c !== "Landing" && c !== "Additionals"]
584
+ ], 10, Be)), [
585
+ [H, u !== "Landing" && u !== "Additionals"]
966
586
  ])), 128)),
967
- e.activeStep === "Overview" ? (s(), o("li", it, t[13] || (t[13] = [
968
- a("div", { class: "dpiV3_circle dpiV3_stepCircle" }, null, -1)
969
- ]))) : n("", !0)
587
+ e.activeStep === "Overview" ? (s(), r("li", it, t[15] || (t[15] = [
588
+ o("div", { class: "dpiV3_circle dpiV3_stepCircle" }, null, -1)
589
+ ]))) : p("", !0)
970
590
  ])
971
- ])) : (s(), o("div", st, [
972
- a("div", at, [
973
- h(D)
591
+ ])) : (s(), r("div", st, [
592
+ o("div", ot, [
593
+ v(k)
974
594
  ]),
975
- a("div", ot, [
976
- h(L, { "illustration-name": "start" })
595
+ o("div", at, [
596
+ v(D, { "illustration-name": "start" })
977
597
  ])
978
598
  ]))
979
599
  ])),
980
- e.$env.content.dataProviderInterface.specification != "dcatapdeHappyFlow" ? (s(), o("ul", rt, [
981
- (s(!0), o(V, null, k(e.steps, (r, c, l) => (s(), o("li", {
982
- key: r,
983
- class: C(["step", {
984
- activeItem: e.activeStep === c,
985
- inactiveStep: c != e.activeStep,
986
- "has-errors": e.checkStepValidity(c)
600
+ e.$env.content.dataProviderInterface.specification != "dcatapdeHappyFlow" ? (s(), r("ul", rt, [
601
+ (s(!0), r(V, null, _(e.steps, (n, u, d) => (s(), r("li", {
602
+ key: n,
603
+ class: y(["step", {
604
+ activeItem: e.activeStep === u,
605
+ inactiveStep: u != e.activeStep,
606
+ "has-errors": e.checkStepValidity(u)
987
607
  }]),
988
- "data-step-active": e.activeStep === c,
989
- "data-step-valid": r.valid && r.errorCount === 0,
990
- onClick: (v) => {
991
- e.activeStep = c, e.update(), e.scrollToTop();
608
+ "data-step-active": e.activeStep === u,
609
+ "data-step-valid": n.valid && n.errorCount === 0,
610
+ onClick: (S) => {
611
+ e.activeStep = u, e.update(), e.scrollToTop();
992
612
  }
993
613
  }, [
994
- a("div", dt, [
995
- a("div", nt, u(l + 1), 1),
996
- e.checkStepValidity(c) ? (s(), o("span", {
614
+ o("div", nt, [
615
+ o("div", dt, c(d + 1), 1),
616
+ e.checkStepValidity(u) ? (s(), r("span", {
997
617
  key: 0,
998
618
  class: "step--errors",
999
- textContent: u(r.errorCount + r.blockingCount)
1000
- }, null, 8, ct)) : n("", !0),
1001
- M(u(e.$t(`message.dataupload.steps.${c}Step`)), 1)
619
+ textContent: c(n.errorCount + n.blockingCount)
620
+ }, null, 8, pt)) : p("", !0),
621
+ M(c(e.$t(`message.dataupload.steps.${u}Step`)), 1)
1002
622
  ]),
1003
- l != Object.keys(e.steps).length ? (s(), o("div", pt)) : n("", !0)
623
+ d != Object.keys(e.steps).length ? (s(), r("div", ut)) : p("", !0)
1004
624
  ], 10, lt))), 128)),
1005
- e.activeStep === "Overview" ? (s(), o("li", ut, t[14] || (t[14] = [
1006
- a("div", { class: "circle stepCircle" }, null, -1)
1007
- ]))) : n("", !0)
1008
- ])) : n("", !0),
1009
- (s(!0), o(V, null, k(e.getNavSteps(
625
+ e.activeStep === "Overview" ? (s(), r("li", ct, t[16] || (t[16] = [
626
+ o("div", { class: "circle stepCircle" }, null, -1)
627
+ ]))) : p("", !0)
628
+ ])) : p("", !0),
629
+ (s(!0), r(V, null, _(e.getNavSteps(
1010
630
  e.$env.content.dataProviderInterface.specification
1011
- )[e.property], (r, c) => (s(), S($, {
1012
- key: c,
1013
- name: r
631
+ )[e.property], (n, u) => (s(), b(A, {
632
+ key: u,
633
+ name: n
1014
634
  }, {
1015
- default: U(() => [
1016
- (s(!0), o(V, null, k(Object.keys(
1017
- e.getSchema(e.property).value[r]
1018
- ).length, (l, v) => O((s(), o("div", ht, [
1019
- r !== "Distributions" && r !== "Additionals" ? (s(), S(P, {
635
+ default: j(() => [
636
+ (s(!0), r(V, null, _(Object.keys(
637
+ e.getSchema(e.property).value[n]
638
+ ).length, (d, S) => z((s(), r("div", ht, [
639
+ n !== "Distributions" && n !== "Additionals" ? (s(), b(P, {
1020
640
  key: 0,
1021
- schema: e.getSchema(e.property).value[r][v],
641
+ schema: e.getSchema(e.property).value[n][S],
1022
642
  library: e.library,
1023
643
  "final-values": e.formValues,
1024
644
  onHandleNav: () => {
1025
645
  }
1026
- }, null, 8, ["schema", "library", "final-values"])) : n("", !0)
646
+ }, null, 8, ["schema", "library", "final-values"])) : p("", !0)
1027
647
  ], 512)), [
1028
648
  [
1029
- z,
649
+ H,
1030
650
  Object.values(
1031
- e.getSchema(e.property).value[r][v]
1032
- )[0] === e.activeSubStep.replace(/_\d+$/, "") || r === "Landing"
651
+ e.getSchema(e.property).value[n][S]
652
+ )[0] === e.activeSubStep.replace(/_\d+$/, "") || n === "Landing"
1033
653
  ]
1034
654
  ])), 256)),
1035
- e.activeStep === "Landing" ? (s(), o("div", mt, [
1036
- h(m, {
655
+ e.activeStep === "Landing" ? (s(), r("div", vt, [
656
+ v(h, {
1037
657
  "button-text": "Abbrechen",
1038
658
  size: "large",
1039
659
  variant: "tertiary",
1040
- onClick: t[1] || (t[1] = (l) => e.activeSimpleModal = !0)
660
+ onClick: t[3] || (t[3] = (d) => {
661
+ e.activeSimpleModal = !0, console.log(e.activeSimpleModal);
662
+ })
1041
663
  }),
1042
- h(m, {
664
+ v(h, {
1043
665
  "button-text": "Datenbereitstellung starten",
1044
666
  size: "large",
1045
- onClick: t[2] || (t[2] = (l) => e.navTrigger("next"))
667
+ onClick: t[4] || (t[4] = (d) => e.navTrigger("next"))
1046
668
  })
1047
- ])) : n("", !0),
1048
- e.activeStep === "ReviewAndPublish" ? (s(), o("div", gt, [
1049
- a("div", ft, [
1050
- h(m, {
669
+ ])) : p("", !0),
670
+ e.activeStep === "ReviewAndPublish" ? (s(), r("div", mt, [
671
+ o("div", gt, [
672
+ e.dpiContext.edit.enabled && !e.dpiContext.edit.fromDraft ? (s(), b(h, {
673
+ key: 0,
674
+ "button-text": "Veröffentlichung aufheben",
675
+ size: "large",
676
+ variant: "secondary",
677
+ onClick: t[5] || (t[5] = (d) => e.navTrigger("depublish"))
678
+ })) : (s(), b(h, {
679
+ key: 1,
1051
680
  "button-text": "Als Entwurf speichern",
1052
681
  size: "large",
1053
682
  variant: "secondary",
1054
- onClick: t[3] || (t[3] = (l) => e.navTrigger("draft"))
1055
- }),
1056
- h(m, {
683
+ onClick: t[6] || (t[6] = (d) => e.navTrigger("draft"))
684
+ })),
685
+ v(h, {
1057
686
  "button-text": "Veröffentlichen",
1058
687
  size: "large",
1059
- onClick: t[4] || (t[4] = (l) => e.formValues[e.activeStep][e.activeSubStep][0].isValid === !0 ? e.navTrigger("publish") : e.formValues[e.activeStep][e.activeSubStep][0].isValid = !1)
688
+ onClick: t[7] || (t[7] = (d) => e.formValues[e.activeStep][e.activeSubStep][0].isValid === !0 ? e.navTrigger("publish") : e.formValues[e.activeStep][e.activeSubStep][0].isValid = !1)
1060
689
  })
1061
690
  ])
1062
- ])) : n("", !0),
1063
- e.activeStep !== "Landing" && e.activeStep !== "ReviewAndPublish" ? (s(), o("div", {
691
+ ])) : p("", !0),
692
+ e.activeStep !== "Landing" && e.activeStep !== "ReviewAndPublish" ? (s(), r("div", {
1064
693
  key: 2,
1065
- class: C(["dpiV3_CTA", {
694
+ class: y(["dpiV3_CTA", {
1066
695
  dpiV3_activeInfobox: e.activeSubStep.includes("hvdPage")
1067
696
  }])
1068
697
  }, [
1069
- h(m, {
698
+ v(h, {
1070
699
  "button-text": "Abbrechen",
1071
700
  size: "large",
1072
701
  variant: "tertiary",
1073
- onClick: e.cancelWizard
1074
- }, null, 8, ["onClick"]),
1075
- a("div", vt, [
1076
- e.activeStep !== "Landing" ? (s(), S(m, {
702
+ onClick: t[8] || (t[8] = (d) => e.activeSimpleModal = !0)
703
+ }),
704
+ o("div", ft, [
705
+ e.activeStep !== "Landing" ? (s(), b(h, {
1077
706
  key: 0,
1078
707
  "icon-start": "CaretLeft",
1079
708
  "button-text": "Zurück",
1080
709
  size: "large",
1081
710
  variant: "secondary",
1082
- onClick: t[5] || (t[5] = (l) => e.navTrigger("prev"))
1083
- })) : n("", !0),
1084
- h(m, {
711
+ onClick: t[9] || (t[9] = (d) => e.navTrigger("prev"))
712
+ })) : p("", !0),
713
+ v(h, {
1085
714
  "icon-end": "CaretRight",
1086
715
  "button-text": "Weiter",
1087
716
  size: "large",
1088
- onClick: t[6] || (t[6] = (l) => e.formValues[e.activeStep][e.activeSubStep][0].isValid === !0 ? e.navTrigger("next") : (e.formValues[e.activeStep][e.activeSubStep][0].isValid = !1, e.handleDistributionsValidation(e.activeSubStep)))
717
+ onClick: t[10] || (t[10] = (d) => e.validateStep())
1089
718
  })
1090
719
  ])
1091
- ], 2)) : n("", !0),
1092
- e.activeSubStep.includes("hvdPage") ? (s(), o("div", bt, [
1093
- a("div", St, [
1094
- a("div", yt, [
1095
- h(w, {
720
+ ], 2)) : p("", !0),
721
+ e.activeSubStep.includes("hvdPage") ? (s(), r("div", bt, [
722
+ o("div", St, [
723
+ o("div", Ct, [
724
+ v(w, {
1096
725
  size: 32,
1097
726
  color: "#009fe3"
1098
727
  }),
1099
- a("div", Ct, u(e.$t("message.dataupload.datasets.hvdPage.tips-hvd")), 1)
728
+ o("div", yt, c(e.$t("message.dataupload.datasets.hvdPage.tips-hvd")), 1)
1100
729
  ]),
1101
- a("div", Vt, [
1102
- a("div", kt, u(e.$t("message.dataupload.datasets.hvdPage.tips-text")), 1),
1103
- a("div", Dt, [
1104
- a("div", It, " 1. " + u(e.$t(
730
+ o("div", Vt, [
731
+ o("div", _t, c(e.$t("message.dataupload.datasets.hvdPage.tips-text")), 1),
732
+ o("div", kt, [
733
+ o("div", $t, " 1. " + c(e.$t(
1105
734
  "message.dataupload.datasets.hvdPage.tips-question-1"
1106
735
  )), 1),
1107
- a("ul", _t, [
1108
- a("li", null, u(e.$t(
736
+ o("ul", It, [
737
+ o("li", null, c(e.$t(
1109
738
  "message.dataupload.datasets.hvdPage.hvd-category-1"
1110
739
  )), 1),
1111
- a("li", null, u(e.$t(
740
+ o("li", null, c(e.$t(
1112
741
  "message.dataupload.datasets.hvdPage.hvd-category-2"
1113
742
  )), 1),
1114
- a("li", null, u(e.$t(
743
+ o("li", null, c(e.$t(
1115
744
  "message.dataupload.datasets.hvdPage.hvd-category-3"
1116
745
  )), 1),
1117
- a("li", null, u(e.$t(
746
+ o("li", null, c(e.$t(
1118
747
  "message.dataupload.datasets.hvdPage.hvd-category-4"
1119
748
  )), 1),
1120
- a("li", null, u(e.$t(
749
+ o("li", null, c(e.$t(
1121
750
  "message.dataupload.datasets.hvdPage.hvd-category-5"
1122
751
  )), 1),
1123
- a("li", null, u(e.$t(
752
+ o("li", null, c(e.$t(
1124
753
  "message.dataupload.datasets.hvdPage.hvd-category-6"
1125
754
  )), 1)
1126
755
  ])
1127
756
  ]),
1128
- a("div", Tt, [
1129
- a("div", Lt, " 2. " + u(e.$t(
757
+ o("div", Tt, [
758
+ o("div", Dt, " 2. " + c(e.$t(
1130
759
  "message.dataupload.datasets.hvdPage.tips-question-2"
1131
760
  )), 1),
1132
- a("p", Pt, u(e.$t("message.dataupload.datasets.hvdPage.tips-example-2")), 1)
761
+ o("p", Pt, c(e.$t("message.dataupload.datasets.hvdPage.tips-example-2")), 1)
1133
762
  ]),
1134
- a("div", wt, [
1135
- a("div", At, " 3. " + u(e.$t(
763
+ o("div", wt, [
764
+ o("div", Ft, " 3. " + c(e.$t(
1136
765
  "message.dataupload.datasets.hvdPage.tips-question-3"
1137
766
  )), 1),
1138
- a("p", $t, u(e.$t("message.dataupload.datasets.hvdPage.tips-example-3")), 1)
767
+ o("p", At, c(e.$t("message.dataupload.datasets.hvdPage.tips-example-3")), 1)
1139
768
  ]),
1140
- a("div", Rt, [
1141
- a("div", Et, " 4. " + u(e.$t(
769
+ o("div", Lt, [
770
+ o("div", Ut, " 4. " + c(e.$t(
1142
771
  "message.dataupload.datasets.hvdPage.tips-question-4"
1143
772
  )), 1),
1144
- a("p", Bt, u(e.$t("message.dataupload.datasets.hvdPage.tips-example-4")), 1)
773
+ o("p", Ot, c(e.$t("message.dataupload.datasets.hvdPage.tips-example-4")), 1)
1145
774
  ])
1146
775
  ])
1147
776
  ])
1148
- ])) : n("", !0),
1149
- r === "Distributions" ? (s(), S(A, {
777
+ ])) : p("", !0),
778
+ n === "Distributions" ? (s(), b(F, {
1150
779
  key: 4,
1151
780
  schema: e.getSchema("distributions"),
1152
781
  values: e.formValues
1153
- }, null, 8, ["schema", "values"])) : n("", !0),
1154
- r === "Mandatory" ? (s(), o("p", Ft, [
1155
- t[15] || (t[15] = a("b", null, "*", -1)),
1156
- M(" " + u(e.$t("message.dataupload.info.mandatory")), 1)
1157
- ])) : n("", !0)
782
+ }, null, 8, ["schema", "values"])) : p("", !0),
783
+ n === "Mandatory" ? (s(), r("p", Et, [
784
+ t[17] || (t[17] = o("b", null, "*", -1)),
785
+ M(" " + c(e.$t("message.dataupload.info.mandatory")), 1)
786
+ ])) : p("", !0)
1158
787
  ]),
1159
788
  _: 2
1160
789
  }, 1032, ["name"]))), 128))
1161
790
  ]),
1162
791
  _: 1
1163
792
  }, 8, ["modelValue", "plugins"]),
1164
- e.activeSimpleModal ? (s(), S(E, {
793
+ e.activeSimpleModal ? (s(), b(U, {
1165
794
  key: 0,
1166
795
  buttons: e.modalSimpleConf.button,
1167
796
  "header-text": e.modalSimpleConf.header,
1168
797
  text: e.modalSimpleConf.text,
1169
798
  action: e.modalSimpleConf.action,
1170
- onClose: t[11] || (t[11] = (r) => e.activeSimpleModal = !1),
1171
- onActionHandling: t[12] || (t[12] = (r) => e.gotToHome())
1172
- }, null, 8, ["buttons", "header-text", "text", "action"])) : n("", !0)
799
+ onClose: t[13] || (t[13] = (n) => e.activeSimpleModal = !1),
800
+ onActionHandling: t[14] || (t[14] = (n) => e.gotToHome())
801
+ }, null, 8, ["buttons", "header-text", "text", "action"])) : p("", !0)
1173
802
  ])
1174
- ], 512)) : n("", !0)
803
+ ], 512)) : p("", !0)
1175
804
  ]);
1176
805
  }
1177
- const _i = /* @__PURE__ */ Te(Ae, [["render", Ut]]);
806
+ const Ii = /* @__PURE__ */ Te(Fe, [["render", jt]]);
1178
807
  export {
1179
- _i as default
808
+ Ii as default
1180
809
  };