@piveau/dpi 0.1.0-beta.46 → 0.1.0-beta.47
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/HappyFlowComponents/services/dpiV3_apis.js +4 -6
- package/dist/data-provider-interface/HappyFlowComponents/ui/ModalV3.vue.js +316 -302
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/AccessServiceV3.vue.js +32 -36
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/ChangeLicenseV3.vue.js +120 -105
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/ChecksumV3.vue.js +40 -40
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/ConformsToV3.vue.js +44 -48
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/DocumentationsV3.vue.js +57 -61
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/PolicyV3.vue.js +61 -45
- package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/AdditionalsSubModal.vue.js +394 -378
- package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/DistributionModal.vue.js +31 -92
- package/dist/data-provider-interface/components/DistLicense.vue.js +107 -96
- package/dist/data-provider-interface/components/DistributionSimplePage.vue.js +286 -267
- package/dist/data-provider-interface/components/ReviewAndPublishPage.vue.js +2 -2
- package/dist/data-provider-interface/composables/useDpiSimpleLoader.js +174 -177
- package/dist/data-provider-interface/config/dcatapdeHappyFlow/converter.js +196 -192
- package/dist/data-provider-interface/config/dcatapdeHappyFlow/input-definition.js +5 -5
- package/dist/data-provider-interface/views/InputPage.vue.js +95 -96
- package/package.json +1 -1
|
@@ -714,6 +714,11 @@ const a = {
|
|
|
714
714
|
$formkit: "text",
|
|
715
715
|
name: "dct:title"
|
|
716
716
|
},
|
|
717
|
+
{
|
|
718
|
+
$formkit: "url",
|
|
719
|
+
name: "foaf:homepage",
|
|
720
|
+
validation: "optional|url"
|
|
721
|
+
},
|
|
717
722
|
{
|
|
718
723
|
identifier: "pageDescription",
|
|
719
724
|
$formkit: "textarea",
|
|
@@ -723,11 +728,6 @@ const a = {
|
|
|
723
728
|
$formkit: "auto",
|
|
724
729
|
identifier: "pageFormat",
|
|
725
730
|
name: "dct:format"
|
|
726
|
-
},
|
|
727
|
-
{
|
|
728
|
-
$formkit: "url",
|
|
729
|
-
name: "foaf:homepage",
|
|
730
|
-
validation: "optional|url"
|
|
731
731
|
}
|
|
732
732
|
]
|
|
733
733
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { getNode as K } from "@formkit/core";
|
|
2
2
|
import "@formkit/vue";
|
|
3
|
-
import { PhNumberCircleFive as
|
|
3
|
+
import { PhNumberCircleFive as J, PhCheckCircle as Z, PhLightbulb as G } from "@phosphor-icons/vue";
|
|
4
4
|
import { useWindowScroll as Q } from "@vueuse/core";
|
|
5
5
|
import X from "jquery";
|
|
6
6
|
import { has as I, isNil as j } from "lodash-es";
|
|
7
|
-
import { defineComponent as Y, resolveComponent as g, createElementBlock as r, openBlock as
|
|
7
|
+
import { defineComponent as Y, resolveComponent as g, createElementBlock as r, openBlock as o, createCommentVNode as p, createElementVNode as s, createVNode as h, createBlock as b, toDisplayString as c, withModifiers as N, withCtx as U, Fragment as V, renderList as _, withDirectives as z, normalizeClass as y, 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
9
|
import { mapActions as B, mapGetters as W } from "vuex";
|
|
10
10
|
import ie from "../components/InputPageStep.vue.js";
|
|
@@ -91,9 +91,9 @@ const Fe = Y({
|
|
|
91
91
|
ButtonV3: be,
|
|
92
92
|
TextButtonSmall: _e,
|
|
93
93
|
Illustration: Ce,
|
|
94
|
-
PhLightbulb:
|
|
95
|
-
PhCheckCircle:
|
|
96
|
-
PhNumberCircleFive:
|
|
94
|
+
PhLightbulb: G,
|
|
95
|
+
PhCheckCircle: Z,
|
|
96
|
+
PhNumberCircleFive: J,
|
|
97
97
|
ModalSimpleV3: Ve
|
|
98
98
|
},
|
|
99
99
|
computed: {
|
|
@@ -237,11 +237,7 @@ const Fe = Y({
|
|
|
237
237
|
);
|
|
238
238
|
}).catch((a) => {
|
|
239
239
|
console.error("Fehler beim Senden der Daten:", a);
|
|
240
|
-
})
|
|
241
|
-
window.location.href = this.$router.resolve({
|
|
242
|
-
name: "DPI-Home-HappyFlow"
|
|
243
|
-
}).href;
|
|
244
|
-
}, 1e3);
|
|
240
|
+
});
|
|
245
241
|
}
|
|
246
242
|
} catch (i) {
|
|
247
243
|
console.log(i);
|
|
@@ -402,7 +398,7 @@ const Fe = Y({
|
|
|
402
398
|
}, He = { key: 1 }, Me = {
|
|
403
399
|
key: 0,
|
|
404
400
|
class: "dpiV3_stepper"
|
|
405
|
-
}, Re = { class: "dpiV3_steps" }, Be = ["data-step-active", "data-step-valid"], We = { class: "dpiV3_stepBubbleWrap" }, qe = ["src"], Ke = ["src"],
|
|
401
|
+
}, Re = { class: "dpiV3_steps" }, Be = ["data-step-active", "data-step-valid"], We = { class: "dpiV3_stepBubbleWrap" }, qe = ["src"], Ke = ["src"], Je = ["textContent"], Ze = { style: { "vertical-align": "middle" } }, Ge = { class: "dpiV3_subStepWrapper" }, Qe = {
|
|
406
402
|
key: 0,
|
|
407
403
|
class: "dpiV3_seperatorHorizontalStepper"
|
|
408
404
|
}, Xe = {
|
|
@@ -441,9 +437,12 @@ const Fe = Y({
|
|
|
441
437
|
};
|
|
442
438
|
function Ut(e, t, i, n, a, v) {
|
|
443
439
|
const C = g("TextButtonSmall"), m = g("ButtonV3"), k = g("LogoV3"), P = g("PhNumberCircleFive"), $ = g("PhCheckCircle"), T = g("Illustration"), D = g("FormKitSchema"), w = g("PhLightbulb"), F = g("DistributionInputPage"), A = g("InputPageStep"), L = g("FormKit"), O = g("ModalSimpleV3");
|
|
444
|
-
return
|
|
445
|
-
e.isInput ? (
|
|
446
|
-
|
|
440
|
+
return o(), r("div", Ae, [
|
|
441
|
+
e.isInput ? (o(), r("div", Le, [
|
|
442
|
+
s("div", Oe, [
|
|
443
|
+
s("details", null, [
|
|
444
|
+
s("pre", null, c(JSON.stringify(e.formValues, null, 2)), 1)
|
|
445
|
+
]),
|
|
447
446
|
h(L, {
|
|
448
447
|
id: "dpiForm",
|
|
449
448
|
modelValue: e.formValues,
|
|
@@ -456,16 +455,16 @@ function Ut(e, t, i, n, a, v) {
|
|
|
456
455
|
}, ["prevent"]))
|
|
457
456
|
}, {
|
|
458
457
|
default: U(() => [
|
|
459
|
-
e.dpiContext.edit.fromDraft || e.dpiContext.edit.enabled ? (
|
|
460
|
-
|
|
458
|
+
e.dpiContext.edit.fromDraft || e.dpiContext.edit.enabled ? (o(), r("div", Ee, [
|
|
459
|
+
s("div", je, [
|
|
461
460
|
h(C, {
|
|
462
461
|
"button-text": "Übersicht",
|
|
463
462
|
"icon-start": "CaretLeft",
|
|
464
463
|
"icon-name": "caretLeft",
|
|
465
464
|
onClick: e.gotToHome
|
|
466
465
|
}, null, 8, ["onClick"]),
|
|
467
|
-
|
|
468
|
-
e.dpiContext.edit.enabled && !e.dpiContext.edit.fromDraft ? (
|
|
466
|
+
s("div", null, [
|
|
467
|
+
e.dpiContext.edit.enabled && !e.dpiContext.edit.fromDraft ? (o(), r("div", Ue, [
|
|
469
468
|
h(m, {
|
|
470
469
|
"button-text": "Veröffentlichung aufheben",
|
|
471
470
|
size: "large",
|
|
@@ -478,7 +477,7 @@ function Ut(e, t, i, n, a, v) {
|
|
|
478
477
|
"icon-end": "Out",
|
|
479
478
|
onClick: t[1] || (t[1] = (l) => e.handlePublishedRoute())
|
|
480
479
|
})
|
|
481
|
-
])) : (
|
|
480
|
+
])) : (o(), r("div", ze, [
|
|
482
481
|
h(m, {
|
|
483
482
|
"button-text": "Veröffentlichen",
|
|
484
483
|
size: "large",
|
|
@@ -487,11 +486,11 @@ function Ut(e, t, i, n, a, v) {
|
|
|
487
486
|
]))
|
|
488
487
|
])
|
|
489
488
|
])
|
|
490
|
-
])) : (
|
|
491
|
-
e.$env.content.dataProviderInterface.specification === "dcatapdeHappyFlow" && e.activeStep !== "Landing" ? (
|
|
489
|
+
])) : (o(), r("div", He, [
|
|
490
|
+
e.$env.content.dataProviderInterface.specification === "dcatapdeHappyFlow" && e.activeStep !== "Landing" ? (o(), r("div", Me, [
|
|
492
491
|
h(k),
|
|
493
|
-
|
|
494
|
-
(
|
|
492
|
+
s("ul", Re, [
|
|
493
|
+
(o(!0), r(V, null, _(e.steps, (l, u, d) => z((o(), r("li", {
|
|
495
494
|
key: l,
|
|
496
495
|
class: y(["dpiV3_step", {
|
|
497
496
|
dpiV3_activeItem: e.activeStep === u,
|
|
@@ -501,71 +500,71 @@ function Ut(e, t, i, n, a, v) {
|
|
|
501
500
|
"data-step-active": e.activeStep === u,
|
|
502
501
|
"data-step-valid": l.valid && l.errorCount === 0
|
|
503
502
|
}, [
|
|
504
|
-
|
|
505
|
-
|
|
503
|
+
s("div", We, [
|
|
504
|
+
s("div", {
|
|
506
505
|
class: y(["firstRowWrapper", {
|
|
507
506
|
dpiV3_activeStepName: u === e.activeStep,
|
|
508
507
|
formerlyVisitedStep: e.stepCounter > d,
|
|
509
508
|
"copy-small-regular": e.stepCounter > d
|
|
510
509
|
}])
|
|
511
510
|
}, [
|
|
512
|
-
e.activeStep === u && d < 5 ? (
|
|
511
|
+
e.activeStep === u && d < 5 ? (o(), r("img", {
|
|
513
512
|
key: 0,
|
|
514
513
|
class: "dpiV3_circle dpiV3_stepCircle",
|
|
515
514
|
src: e.selectedImages[d - 1],
|
|
516
515
|
alt: "Selected Icon"
|
|
517
516
|
}, null, 8, qe)) : p("", !0),
|
|
518
|
-
e.activeStep === u && d === 5 ? (
|
|
517
|
+
e.activeStep === u && d === 5 ? (o(), b(P, {
|
|
519
518
|
key: 1,
|
|
520
519
|
size: 28,
|
|
521
520
|
color: "#009FE3",
|
|
522
521
|
weight: "fill"
|
|
523
522
|
})) : p("", !0),
|
|
524
|
-
d < e.stepCounter ? (
|
|
523
|
+
d < e.stepCounter ? (o(), b($, {
|
|
525
524
|
key: 2,
|
|
526
525
|
size: 28,
|
|
527
526
|
color: "#70CC44",
|
|
528
527
|
weight: "fill"
|
|
529
528
|
})) : p("", !0),
|
|
530
|
-
d > e.stepCounter ? (
|
|
529
|
+
d > e.stepCounter ? (o(), r("img", {
|
|
531
530
|
key: 3,
|
|
532
531
|
class: "dpiV3_circle dpiV3_stepCircle",
|
|
533
532
|
src: e.images[d - 1],
|
|
534
533
|
alt: "Selected Icon"
|
|
535
534
|
}, null, 8, Ke)) : p("", !0),
|
|
536
|
-
e.checkStepValidity(u) ? (
|
|
535
|
+
e.checkStepValidity(u) ? (o(), r("span", {
|
|
537
536
|
key: 4,
|
|
538
537
|
class: "dpiV3_step--errors",
|
|
539
538
|
textContent: c(l.errorCount + l.blockingCount)
|
|
540
|
-
}, null, 8,
|
|
541
|
-
|
|
539
|
+
}, null, 8, Je)) : p("", !0),
|
|
540
|
+
s("span", Ze, c(e.$t(`message.dataupload.steps.${u}Step`)), 1)
|
|
542
541
|
], 2),
|
|
543
|
-
|
|
544
|
-
d + 1 != Object.keys(e.steps).length - 1 && d >= e.stepCounter ? (
|
|
545
|
-
d + 1 != Object.keys(e.steps).length - 1 && d < e.stepCounter ? (
|
|
546
|
-
e.activeStep === u ? (
|
|
547
|
-
e.stepCounter < 5 ? (
|
|
542
|
+
s("div", Ge, [
|
|
543
|
+
d + 1 != Object.keys(e.steps).length - 1 && d >= e.stepCounter ? (o(), r("div", Qe)) : p("", !0),
|
|
544
|
+
d + 1 != Object.keys(e.steps).length - 1 && d < e.stepCounter ? (o(), r("div", Xe)) : p("", !0),
|
|
545
|
+
e.activeStep === u ? (o(), r("div", Ye, [
|
|
546
|
+
e.stepCounter < 5 ? (o(!0), r(V, { key: 0 }, _(Object.keys(
|
|
548
547
|
e.subSteps[d]
|
|
549
|
-
), (S, f) => (
|
|
550
|
-
|
|
551
|
-
e.substepCounter > f ? (
|
|
548
|
+
), (S, f) => (o(), r("div", Ne, [
|
|
549
|
+
s("div", xe, [
|
|
550
|
+
e.substepCounter > f ? (o(), b($, {
|
|
552
551
|
key: 0,
|
|
553
552
|
size: 20,
|
|
554
553
|
color: "#009FE3"
|
|
555
|
-
})) : (
|
|
554
|
+
})) : (o(), r("img", {
|
|
556
555
|
key: 1,
|
|
557
556
|
src: e.getCircles(f),
|
|
558
557
|
alt: "circle"
|
|
559
558
|
}, null, 8, et)),
|
|
560
|
-
f != Object.keys(e.subSteps[d]).length - 1 ? (
|
|
559
|
+
f != Object.keys(e.subSteps[d]).length - 1 ? (o(), r("div", {
|
|
561
560
|
key: 2,
|
|
562
561
|
class: y(["dpiV3_seperatorHorizontalStepperInner", {
|
|
563
562
|
dpiV3_seperatorHorizontalStepperInnerVisited: e.substepCounter > f
|
|
564
563
|
}])
|
|
565
564
|
}, null, 2)) : p("", !0)
|
|
566
565
|
]),
|
|
567
|
-
|
|
568
|
-
|
|
566
|
+
s("div", tt, [
|
|
567
|
+
s("span", {
|
|
569
568
|
class: y(["large-regular dpiV3_substepText", {
|
|
570
569
|
dpiV3_activeStepDesc: S === e.activeSubStep,
|
|
571
570
|
formerlyVisitedStep: e.substepCounter > f
|
|
@@ -584,21 +583,21 @@ function Ut(e, t, i, n, a, v) {
|
|
|
584
583
|
], 10, Be)), [
|
|
585
584
|
[H, u !== "Landing" && u !== "Additionals"]
|
|
586
585
|
])), 128)),
|
|
587
|
-
e.activeStep === "Overview" ? (
|
|
588
|
-
|
|
586
|
+
e.activeStep === "Overview" ? (o(), r("li", it, t[14] || (t[14] = [
|
|
587
|
+
s("div", { class: "dpiV3_circle dpiV3_stepCircle" }, null, -1)
|
|
589
588
|
]))) : p("", !0)
|
|
590
589
|
])
|
|
591
|
-
])) : (
|
|
592
|
-
|
|
590
|
+
])) : (o(), r("div", st, [
|
|
591
|
+
s("div", ot, [
|
|
593
592
|
h(k)
|
|
594
593
|
]),
|
|
595
|
-
|
|
594
|
+
s("div", at, [
|
|
596
595
|
h(T, { "illustration-name": "start" })
|
|
597
596
|
])
|
|
598
597
|
]))
|
|
599
598
|
])),
|
|
600
|
-
e.$env.content.dataProviderInterface.specification != "dcatapdeHappyFlow" ? (
|
|
601
|
-
(
|
|
599
|
+
e.$env.content.dataProviderInterface.specification != "dcatapdeHappyFlow" ? (o(), r("ul", rt, [
|
|
600
|
+
(o(!0), r(V, null, _(e.steps, (l, u, d) => (o(), r("li", {
|
|
602
601
|
key: l,
|
|
603
602
|
class: y(["step", {
|
|
604
603
|
activeItem: e.activeStep === u,
|
|
@@ -611,32 +610,32 @@ function Ut(e, t, i, n, a, v) {
|
|
|
611
610
|
e.activeStep = u, e.update(), e.scrollToTop();
|
|
612
611
|
}
|
|
613
612
|
}, [
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
e.checkStepValidity(u) ? (
|
|
613
|
+
s("div", lt, [
|
|
614
|
+
s("div", dt, c(d + 1), 1),
|
|
615
|
+
e.checkStepValidity(u) ? (o(), r("span", {
|
|
617
616
|
key: 0,
|
|
618
617
|
class: "step--errors",
|
|
619
618
|
textContent: c(l.errorCount + l.blockingCount)
|
|
620
619
|
}, null, 8, pt)) : p("", !0),
|
|
621
620
|
M(c(e.$t(`message.dataupload.steps.${u}Step`)), 1)
|
|
622
621
|
]),
|
|
623
|
-
d != Object.keys(e.steps).length ? (
|
|
622
|
+
d != Object.keys(e.steps).length ? (o(), r("div", ut)) : p("", !0)
|
|
624
623
|
], 10, nt))), 128)),
|
|
625
|
-
e.activeStep === "Overview" ? (
|
|
626
|
-
|
|
624
|
+
e.activeStep === "Overview" ? (o(), r("li", ct, t[15] || (t[15] = [
|
|
625
|
+
s("div", { class: "circle stepCircle" }, null, -1)
|
|
627
626
|
]))) : p("", !0)
|
|
628
627
|
])) : p("", !0),
|
|
629
|
-
(
|
|
628
|
+
(o(!0), r(V, null, _(e.getNavSteps(
|
|
630
629
|
e.$env.content.dataProviderInterface.specification
|
|
631
|
-
)[e.property], (l, u) => (
|
|
630
|
+
)[e.property], (l, u) => (o(), b(A, {
|
|
632
631
|
key: u,
|
|
633
632
|
name: l
|
|
634
633
|
}, {
|
|
635
634
|
default: U(() => [
|
|
636
|
-
(
|
|
635
|
+
(o(!0), r(V, null, _(Object.keys(
|
|
637
636
|
e.getSchema(e.property).value[l]
|
|
638
|
-
).length, (d, S) => z((
|
|
639
|
-
l !== "Distributions" && l !== "Additionals" ? (
|
|
637
|
+
).length, (d, S) => z((o(), r("div", ht, [
|
|
638
|
+
l !== "Distributions" && l !== "Additionals" ? (o(), b(D, {
|
|
640
639
|
key: 0,
|
|
641
640
|
schema: e.getSchema(e.property).value[l][S],
|
|
642
641
|
library: e.library,
|
|
@@ -652,7 +651,7 @@ function Ut(e, t, i, n, a, v) {
|
|
|
652
651
|
)[0] === e.activeSubStep.replace(/_\d+$/, "") || l === "Landing"
|
|
653
652
|
]
|
|
654
653
|
])), 256)),
|
|
655
|
-
e.activeStep === "Landing" ? (
|
|
654
|
+
e.activeStep === "Landing" ? (o(), r("div", vt, [
|
|
656
655
|
h(m, {
|
|
657
656
|
"button-text": "Abbrechen",
|
|
658
657
|
size: "large",
|
|
@@ -667,8 +666,8 @@ function Ut(e, t, i, n, a, v) {
|
|
|
667
666
|
onClick: t[4] || (t[4] = (d) => e.navTrigger("next"))
|
|
668
667
|
})
|
|
669
668
|
])) : p("", !0),
|
|
670
|
-
e.activeStep === "ReviewAndPublish" ? (
|
|
671
|
-
|
|
669
|
+
e.activeStep === "ReviewAndPublish" ? (o(), r("div", mt, [
|
|
670
|
+
s("div", gt, [
|
|
672
671
|
h(m, {
|
|
673
672
|
"button-text": "Als Entwurf speichern",
|
|
674
673
|
size: "large",
|
|
@@ -682,7 +681,7 @@ function Ut(e, t, i, n, a, v) {
|
|
|
682
681
|
})
|
|
683
682
|
])
|
|
684
683
|
])) : p("", !0),
|
|
685
|
-
e.activeStep !== "Landing" && e.activeStep !== "ReviewAndPublish" ? (
|
|
684
|
+
e.activeStep !== "Landing" && e.activeStep !== "ReviewAndPublish" ? (o(), r("div", {
|
|
686
685
|
key: 2,
|
|
687
686
|
class: y(["dpiV3_CTA", {
|
|
688
687
|
dpiV3_activeInfobox: e.activeSubStep.includes("hvdPage")
|
|
@@ -694,8 +693,8 @@ function Ut(e, t, i, n, a, v) {
|
|
|
694
693
|
variant: "tertiary",
|
|
695
694
|
onClick: t[7] || (t[7] = (d) => e.activeSimpleModal = !0)
|
|
696
695
|
}),
|
|
697
|
-
|
|
698
|
-
e.activeStep !== "Landing" ? (
|
|
696
|
+
s("div", ft, [
|
|
697
|
+
e.activeStep !== "Landing" ? (o(), b(m, {
|
|
699
698
|
key: 0,
|
|
700
699
|
"icon-start": "CaretLeft",
|
|
701
700
|
"button-text": "Zurück",
|
|
@@ -711,70 +710,70 @@ function Ut(e, t, i, n, a, v) {
|
|
|
711
710
|
})
|
|
712
711
|
])
|
|
713
712
|
], 2)) : p("", !0),
|
|
714
|
-
e.activeSubStep.includes("hvdPage") ? (
|
|
715
|
-
|
|
716
|
-
|
|
713
|
+
e.activeSubStep.includes("hvdPage") ? (o(), r("div", St, [
|
|
714
|
+
s("div", bt, [
|
|
715
|
+
s("div", Ct, [
|
|
717
716
|
h(w, {
|
|
718
717
|
size: 32,
|
|
719
718
|
color: "#009fe3"
|
|
720
719
|
}),
|
|
721
|
-
|
|
720
|
+
s("div", yt, c(e.$t("message.dataupload.datasets.hvdPage.tips-hvd")), 1)
|
|
722
721
|
]),
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
722
|
+
s("div", Vt, [
|
|
723
|
+
s("div", _t, c(e.$t("message.dataupload.datasets.hvdPage.tips-text")), 1),
|
|
724
|
+
s("div", kt, [
|
|
725
|
+
s("div", $t, " 1. " + c(e.$t(
|
|
727
726
|
"message.dataupload.datasets.hvdPage.tips-question-1"
|
|
728
727
|
)), 1),
|
|
729
|
-
|
|
730
|
-
|
|
728
|
+
s("ul", It, [
|
|
729
|
+
s("li", null, c(e.$t(
|
|
731
730
|
"message.dataupload.datasets.hvdPage.hvd-category-1"
|
|
732
731
|
)), 1),
|
|
733
|
-
|
|
732
|
+
s("li", null, c(e.$t(
|
|
734
733
|
"message.dataupload.datasets.hvdPage.hvd-category-2"
|
|
735
734
|
)), 1),
|
|
736
|
-
|
|
735
|
+
s("li", null, c(e.$t(
|
|
737
736
|
"message.dataupload.datasets.hvdPage.hvd-category-3"
|
|
738
737
|
)), 1),
|
|
739
|
-
|
|
738
|
+
s("li", null, c(e.$t(
|
|
740
739
|
"message.dataupload.datasets.hvdPage.hvd-category-4"
|
|
741
740
|
)), 1),
|
|
742
|
-
|
|
741
|
+
s("li", null, c(e.$t(
|
|
743
742
|
"message.dataupload.datasets.hvdPage.hvd-category-5"
|
|
744
743
|
)), 1),
|
|
745
|
-
|
|
744
|
+
s("li", null, c(e.$t(
|
|
746
745
|
"message.dataupload.datasets.hvdPage.hvd-category-6"
|
|
747
746
|
)), 1)
|
|
748
747
|
])
|
|
749
748
|
]),
|
|
750
|
-
|
|
751
|
-
|
|
749
|
+
s("div", Pt, [
|
|
750
|
+
s("div", Tt, " 2. " + c(e.$t(
|
|
752
751
|
"message.dataupload.datasets.hvdPage.tips-question-2"
|
|
753
752
|
)), 1),
|
|
754
|
-
|
|
753
|
+
s("p", Dt, c(e.$t("message.dataupload.datasets.hvdPage.tips-example-2")), 1)
|
|
755
754
|
]),
|
|
756
|
-
|
|
757
|
-
|
|
755
|
+
s("div", wt, [
|
|
756
|
+
s("div", Ft, " 3. " + c(e.$t(
|
|
758
757
|
"message.dataupload.datasets.hvdPage.tips-question-3"
|
|
759
758
|
)), 1),
|
|
760
|
-
|
|
759
|
+
s("p", At, c(e.$t("message.dataupload.datasets.hvdPage.tips-example-3")), 1)
|
|
761
760
|
]),
|
|
762
|
-
|
|
763
|
-
|
|
761
|
+
s("div", Lt, [
|
|
762
|
+
s("div", Ot, " 4. " + c(e.$t(
|
|
764
763
|
"message.dataupload.datasets.hvdPage.tips-question-4"
|
|
765
764
|
)), 1),
|
|
766
|
-
|
|
765
|
+
s("p", Et, c(e.$t("message.dataupload.datasets.hvdPage.tips-example-4")), 1)
|
|
767
766
|
])
|
|
768
767
|
])
|
|
769
768
|
])
|
|
770
769
|
])) : p("", !0),
|
|
771
|
-
l === "Distributions" ? (
|
|
770
|
+
l === "Distributions" ? (o(), b(F, {
|
|
772
771
|
key: 4,
|
|
773
772
|
schema: e.getSchema("distributions"),
|
|
774
773
|
values: e.formValues
|
|
775
774
|
}, null, 8, ["schema", "values"])) : p("", !0),
|
|
776
|
-
l === "Mandatory" ? (
|
|
777
|
-
t[16] || (t[16] =
|
|
775
|
+
l === "Mandatory" ? (o(), r("p", jt, [
|
|
776
|
+
t[16] || (t[16] = s("b", null, "*", -1)),
|
|
778
777
|
M(" " + c(e.$t("message.dataupload.info.mandatory")), 1)
|
|
779
778
|
])) : p("", !0)
|
|
780
779
|
]),
|
|
@@ -783,7 +782,7 @@ function Ut(e, t, i, n, a, v) {
|
|
|
783
782
|
]),
|
|
784
783
|
_: 1
|
|
785
784
|
}, 8, ["modelValue", "plugins"]),
|
|
786
|
-
e.activeSimpleModal ? (
|
|
785
|
+
e.activeSimpleModal ? (o(), b(O, {
|
|
787
786
|
key: 0,
|
|
788
787
|
buttons: e.modalSimpleConf.button,
|
|
789
788
|
"header-text": e.modalSimpleConf.header,
|