@piveau/dpi 0.2.0-alpha.12 → 0.2.0-alpha.14

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 (52) hide show
  1. package/dist/assets/dpi.css +1 -1
  2. package/dist/packages/dpi/src/data-provider-interface/DataProviderInterface.vue2.js +48 -47
  3. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/HomeTable.vue.js +74 -71
  4. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ProjectTable.vue.js +4 -94
  5. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ProjectTable.vue2.js +104 -0
  6. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/services/dpiV3_apis.js +1 -1
  7. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/Autocomplete/AutocompleteVocab.vue.js +2 -2
  8. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/Autocomplete/AutocompleteVocab.vue2.js +64 -52
  9. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/BasicInfosStep/ProjectNameStep.vue.js +8 -8
  10. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/DpiModalBase.vue.js +2 -2
  11. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/DpiModalBase.vue2.js +1 -1
  12. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/Findability/CategoriesStep.vue.js +2 -2
  13. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/Findability/CategoriesStep.vue2.js +4 -4
  14. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/OptionalDataStep/OptionalDataStep.vue.js +2 -2
  15. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/OptionalDataStep/OptionalDataStep.vue2.js +21 -21
  16. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/DatasetStep.vue.js +2 -2
  17. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/DatasetStep.vue2.js +73 -71
  18. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/GetResource.vue.js +4 -4
  19. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/HardwareForm.vue.js +2 -2
  20. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/HardwareStep.vue.js +2 -2
  21. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/HardwareStep.vue2.js +133 -131
  22. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/SoftwareStep.vue.js +2 -2
  23. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/SoftwareStep.vue2.js +85 -83
  24. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ReviewStep/ReviewStep.vue.js +2 -2
  25. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ReviewStep/ReviewStep.vue2.js +4 -4
  26. package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/TableRowV3.vue.js +179 -133
  27. package/dist/packages/dpi/src/data-provider-interface/components/DistLicense.vue.js +224 -133
  28. package/dist/packages/dpi/src/data-provider-interface/components/StepActionsSection.vue.js +2 -2
  29. package/dist/packages/dpi/src/data-provider-interface/components/StepActionsSection.vue2.js +111 -91
  30. package/dist/packages/dpi/src/data-provider-interface/components/TheCancelConfirmationDialog.vue.js +3 -3
  31. package/dist/packages/dpi/src/data-provider-interface/components/TheCancelConfirmationDialog.vue2.js +24 -19
  32. package/dist/packages/dpi/src/data-provider-interface/components/VisibilityPage.vue.js +106 -0
  33. package/dist/packages/dpi/src/data-provider-interface/components/dev-tools/ProjectDpiDevTools.vue.js +2 -2
  34. package/dist/packages/dpi/src/data-provider-interface/components/dev-tools/ProjectDpiDevTools.vue2.js +137 -94
  35. package/dist/packages/dpi/src/data-provider-interface/composables/project-transformer/decodeProject.js +152 -135
  36. package/dist/packages/dpi/src/data-provider-interface/composables/project-transformer/encodeProject.js +201 -164
  37. package/dist/packages/dpi/src/data-provider-interface/composables/useDpiContext.js +9 -10
  38. package/dist/packages/dpi/src/data-provider-interface/composables/useDpiEditMode.js +88 -66
  39. package/dist/packages/dpi/src/data-provider-interface/composables/useDpiSimpleLoader.js +274 -273
  40. package/dist/packages/dpi/src/data-provider-interface/composables/useDpiStepper.js +33 -32
  41. package/dist/packages/dpi/src/data-provider-interface/composables/useDpiUtils.js +18 -9
  42. package/dist/packages/dpi/src/data-provider-interface/composables/useProjectActions.js +65 -0
  43. package/dist/packages/dpi/src/data-provider-interface/composables/useTwinbyHome.js +50 -0
  44. package/dist/packages/dpi/src/data-provider-interface/config/dcatapdeHappyFlow/input-definition.js +4 -0
  45. package/dist/packages/dpi/src/data-provider-interface/config/dcatapdeHappyFlow/page-content-config.js +1 -1
  46. package/dist/packages/dpi/src/data-provider-interface/schema/projectLdSchema.js +48 -45
  47. package/dist/packages/dpi/src/data-provider-interface/views/InputPage.vue.js +276 -251
  48. package/dist/packages/dpi/src/data-provider-interface/views/InputPageProject.vue.js +386 -397
  49. package/dist/packages/dpi/src/form/inputDefinitions.js +15 -10
  50. package/dist/packages/dpi/src/utils/schema/schemaProject.js +210 -0
  51. package/dist/packages/dpi/src/utils/schema/shared.js +23 -0
  52. package/package.json +3 -3
@@ -1,12 +1,16 @@
1
- import { defineComponent as z, inject as E, ref as d, watch as D, toRef as L, computed as M, createElementBlock as f, openBlock as r, normalizeClass as A, createElementVNode as v, createBlock as F, createCommentVNode as I, createVNode as i, renderSlot as x, normalizeStyle as R, withDirectives as C, vShow as y, withCtx as m, Fragment as j, renderList as K, toDisplayString as $, createTextVNode as U, unref as W, nextTick as Z } from "vue";
2
- import { getNode as q, isNode as G } from "@formkit/core";
3
- import { getValidationMessages as H } from "@formkit/validation";
4
- import { PhExclamationMark as J } from "@phosphor-icons/vue";
5
- import h from "../HappyFlowComponents/ui/ButtonV3.vue.js";
6
- import O from "../HappyFlowComponents/ui/Card.vue.js";
1
+ import { defineComponent as W, inject as j, ref as v, watch as F, computed as I, createElementBlock as r, openBlock as o, normalizeClass as $, createElementVNode as m, createBlock as p, createCommentVNode as V, createVNode as s, renderSlot as w, unref as N, normalizeStyle as K, withDirectives as h, vShow as y, Fragment as E, withCtx as g, renderList as R, toDisplayString as O, nextTick as U } from "vue";
2
+ import { getNode as Z, isNode as q } from "@formkit/core";
3
+ import { getValidationMessages as G } from "@formkit/validation";
4
+ import { PhExclamationMark as H } from "@phosphor-icons/vue";
5
+ import l from "../HappyFlowComponents/ui/ButtonV3.vue.js";
6
+ import J from "../HappyFlowComponents/ui/Card.vue.js";
7
7
  import { dpiStepperKey as Q } from "../utils/injectionKeys.js";
8
8
  import X from "./TheCancelConfirmationDialog.vue.js";
9
- const Y = { class: "step-actions" }, _ = { class: "step-actions__prev-and-next" }, ee = { class: "validation-errors" }, ce = /* @__PURE__ */ z({
9
+ import { useEditModeInfo as Y } from "../composables/useDpiEditMode.js";
10
+ const _ = { class: "step-actions" }, ee = { class: "step-actions__prev-and-next" }, te = {
11
+ key: 0,
12
+ class: "validation-errors"
13
+ }, me = /* @__PURE__ */ W({
10
14
  __name: "StepActionsSection",
11
15
  props: {
12
16
  hideCancel: { type: Boolean, default: !1 },
@@ -17,132 +21,148 @@ const Y = { class: "step-actions" }, _ = { class: "step-actions__prev-and-next"
17
21
  previousText: { default: "Zurück" },
18
22
  nextText: { default: "Weiter" },
19
23
  nextVariant: { default: "primary" },
20
- classList: {}
24
+ classList: {},
25
+ showDetailedErrorSummary: { type: Boolean, default: !1 }
21
26
  },
22
- emits: ["submit"],
23
- setup(te, { emit: T }) {
24
- const V = T, e = E(Q);
25
- e || console.warn("dpiStepper is not provided. Please use StepActionsSection inside InputPage");
26
- function S(t) {
27
- return t !== void 0;
27
+ emits: ["submit", "closeWithSaving"],
28
+ setup(ne, { emit: B }) {
29
+ const x = B, t = j(Q);
30
+ t || console.warn("dpiStepper is not provided. Please use StepActionsSection inside InputPage");
31
+ function C(e) {
32
+ return e !== void 0;
28
33
  }
29
- const l = d(!1), s = d(!1), a = d([]);
30
- function N(t) {
31
- if (!t)
32
- return;
33
- const n = H(t);
34
- !n || n.size === 0 || (a.value = [...n.entries()].flatMap(([o, w]) => w.map((B) => String(B.value))));
35
- }
36
- e && D(e.activeStep, () => {
37
- a.value.splice(0, a.value.length), s.value = !1;
34
+ const c = v(!1), u = v(!1), i = v([]);
35
+ t && F(t.activeStep, () => {
36
+ i.value.splice(0, i.value.length), u.value = !1;
38
37
  });
39
- const b = L(e == null ? void 0 : e.steps);
40
- function p(t) {
41
- var o;
42
- const n = (o = b.value) == null ? void 0 : o[t];
43
- return n ? n.valid : !1;
38
+ function S() {
39
+ c.value = !0;
44
40
  }
45
- function k() {
46
- p((e == null ? void 0 : e.activeStep.value) || "") && (e == null || e.goToNextStep());
41
+ function f() {
42
+ t == null || t.goToPreviousStep();
47
43
  }
48
- function g() {
49
- l.value = !0;
44
+ async function b() {
45
+ var k, T;
46
+ if (!C(t))
47
+ return !1;
48
+ t.triggerValidationCurrentStep(), await U();
49
+ const e = t.activeStep.value;
50
+ if (!e)
51
+ return !1;
52
+ const n = Z(e);
53
+ if (!q(n))
54
+ return console.error("Current step node is not a FormKitNode", n), !1;
55
+ const a = G(n), D = !!((T = (k = t.steps) == null ? void 0 : k[e]) != null && T.valid);
56
+ return a && a.size > 0 || !D ? (i.value = [...a.entries()].flatMap(([oe, M]) => M.map((A) => String(A.value))), u.value = !0, !1) : (i.value.splice(0, i.value.length), u.value = !1, !0);
50
57
  }
51
- function u() {
52
- e == null || e.goToPreviousStep();
58
+ async function d() {
59
+ !C(t) || !await b() || (t != null && t.isLast.value ? x("submit") : t == null || t.goToNextStep());
53
60
  }
54
- const P = M(() => e != null && e.activeStep.value ? q(e == null ? void 0 : e.activeStep.value) : null);
55
- async function c() {
56
- if (!S(e))
57
- return;
58
- e.triggerValidationCurrentStep(), await Z();
59
- const t = P.value;
60
- if (t ? !p((e == null ? void 0 : e.activeStep.value) || "") : !1) {
61
- if (!G(t)) {
62
- console.error("Current step node is not a FormKitNode", t);
63
- return;
64
- }
65
- N(t), s.value = !0;
66
- }
67
- e != null && e.isLast.value ? V("submit") : k();
61
+ const { isEditMode: P } = Y();
62
+ async function z() {
63
+ !t || !await b() || t == null || t.goToStep(Object.keys(t.steps).pop() || "");
68
64
  }
69
- return (t, n) => (r(), f("div", {
70
- class: A([t.classList, "step-actions-container"])
65
+ const L = I(() => t == null ? void 0 : t.isLast.value);
66
+ return (e, n) => (o(), r("div", {
67
+ class: $([e.classList, "step-actions-container"])
71
68
  }, [
72
- v("div", Y, [
73
- x(t.$slots, "default", {
74
- handleCancel: g,
75
- handlePrevious: u,
76
- handleSubmit: c
69
+ m("div", _, [
70
+ N(P) ? (o(), r(E, { key: 1 }, [
71
+ L.value ? h((o(), p(l, {
72
+ key: 1,
73
+ class: "edit-save-button",
74
+ size: "large",
75
+ variant: e.nextVariant,
76
+ type: "button",
77
+ "button-text": e.nextText,
78
+ "icon-end": e.nextText === "Als Entwurf Speichern" ? null : "CaretRight",
79
+ onClick: d
80
+ }, null, 8, ["variant", "button-text", "icon-end"])), [
81
+ [y, !e.hideNext]
82
+ ]) : (o(), p(l, {
83
+ key: 0,
84
+ class: "edit-save-button",
85
+ size: "large",
86
+ variant: "primary",
87
+ type: "button",
88
+ "button-text": "Speichern",
89
+ onClick: z
90
+ }))
91
+ ], 64)) : w(e.$slots, "default", {
92
+ key: 0,
93
+ handleCancel: S,
94
+ handlePrevious: f,
95
+ handleSubmit: d
77
96
  }, () => [
78
- i(h, {
79
- style: R({ opacity: t.hideCancel ? 0 : 1 }),
97
+ s(l, {
98
+ style: K({ opacity: e.hideCancel ? 0 : 1 }),
80
99
  variant: "tertiary",
81
100
  size: "large",
82
101
  type: "button",
83
- "button-text": t.cancelText,
84
- onClick: g
102
+ "button-text": e.cancelText,
103
+ onClick: S
85
104
  }, null, 8, ["style", "button-text"]),
86
- v("div", _, [
87
- x(t.$slots, "prev-and-next", {
88
- hidePrevious: t.hidePrevious,
89
- hideNext: t.hideNext,
90
- previousText: t.previousText,
91
- nextText: t.nextText,
92
- handlePrevious: u,
93
- handleSubmit: c
105
+ m("div", ee, [
106
+ w(e.$slots, "prev-and-next", {
107
+ hidePrevious: e.hidePrevious,
108
+ hideNext: e.hideNext,
109
+ previousText: e.previousText,
110
+ nextText: e.nextText,
111
+ handlePrevious: f,
112
+ handleSubmit: d
94
113
  }, () => [
95
- C(i(h, {
114
+ h(s(l, {
96
115
  variant: "secondary",
97
116
  size: "large",
98
117
  type: "button",
99
- "button-text": t.previousText,
118
+ "button-text": e.previousText,
100
119
  "icon-start": "CaretLeft",
101
- onClick: u
120
+ onClick: f
102
121
  }, null, 8, ["button-text"]), [
103
- [y, !t.hidePrevious]
122
+ [y, !e.hidePrevious]
104
123
  ]),
105
- C(i(h, {
124
+ h(s(l, {
106
125
  size: "large",
107
- variant: t.nextVariant,
126
+ variant: e.nextVariant,
108
127
  type: "button",
109
- "button-text": t.nextText,
110
- "icon-end": t.nextText === "Als Entwurf Speichern" || t.nextText === "Projektanlage starten" ? null : "CaretRight",
111
- onClick: c
128
+ "button-text": e.nextText,
129
+ "icon-end": e.nextText === "Als Entwurf Speichern" || e.nextText === "Projektanlage starten" ? null : "CaretRight",
130
+ onClick: d
112
131
  }, null, 8, ["variant", "button-text", "icon-end"]), [
113
- [y, !t.hideNext]
132
+ [y, !e.hideNext]
114
133
  ])
115
134
  ], !0)
116
135
  ])
117
136
  ], !0)
118
137
  ]),
119
- s.value && a.value.length ? (r(), F(O, {
138
+ u.value && i.value.length ? (o(), p(J, {
120
139
  key: 0,
121
140
  variant: "error"
122
141
  }, {
123
- icon: m(() => [
124
- i(W(J), {
142
+ icon: g(() => [
143
+ s(N(H), {
125
144
  size: 32,
126
145
  color: "currentColor"
127
146
  })
128
147
  ]),
129
- title: m(() => n[1] || (n[1] = [
130
- U(" Bitte korrigieren Sie die folgenden Fehler ", -1)
148
+ title: g(() => n[2] || (n[2] = [
149
+ m("p", null, "Bitte korrigieren Sie die folgenden Fehler", -1)
131
150
  ])),
132
- default: m(() => [
133
- v("ul", ee, [
134
- (r(!0), f(j, null, K(a.value, (o) => (r(), f("li", { key: o }, $(o), 1))), 128))
135
- ])
151
+ default: g(() => [
152
+ e.showDetailedErrorSummary ? (o(), r("ul", te, [
153
+ (o(!0), r(E, null, R(i.value, (a) => (o(), r("li", { key: a }, O(a), 1))), 128))
154
+ ])) : V("", !0)
136
155
  ]),
137
156
  _: 1
138
- })) : I("", !0),
139
- i(X, {
140
- modelValue: l.value,
141
- "onUpdate:modelValue": n[0] || (n[0] = (o) => l.value = o)
157
+ })) : V("", !0),
158
+ s(X, {
159
+ modelValue: c.value,
160
+ "onUpdate:modelValue": n[0] || (n[0] = (a) => c.value = a),
161
+ onCloseWithSaving: n[1] || (n[1] = (a) => x("closeWithSaving"))
142
162
  }, null, 8, ["modelValue"])
143
163
  ], 2));
144
164
  }
145
165
  });
146
166
  export {
147
- ce as default
167
+ me as default
148
168
  };
@@ -1,7 +1,7 @@
1
1
  import o from "./TheCancelConfirmationDialog.vue2.js";
2
2
  /* empty css */
3
- import a from "../../../../../_virtual/_plugin-vue_export-helper.js";
4
- const m = /* @__PURE__ */ a(o, [["__scopeId", "data-v-22b07a20"]]);
3
+ import t from "../../../../../_virtual/_plugin-vue_export-helper.js";
4
+ const i = /* @__PURE__ */ t(o, [["__scopeId", "data-v-0b6e98c6"]]);
5
5
  export {
6
- m as default
6
+ i as default
7
7
  };
@@ -1,42 +1,47 @@
1
- import { defineComponent as s, mergeModels as m, useModel as p, createBlock as f, openBlock as v, withCtx as o, createElementVNode as l, createVNode as i } from "vue";
2
- import a from "../HappyFlowComponents/ui/ButtonV3.vue.js";
3
- import g from "../HappyFlowComponents/ui/DpiModalBase.vue.js";
4
- const B = /* @__PURE__ */ s({
1
+ import { defineComponent as d, mergeModels as f, useModel as p, createBlock as c, openBlock as v, withCtx as o, createElementVNode as n, createVNode as a } from "vue";
2
+ import { useRouter as V } from "vue-router";
3
+ import { useProjectActions as g } from "../composables/useProjectActions.js";
4
+ import i from "../HappyFlowComponents/ui/ButtonV3.vue.js";
5
+ import h from "../HappyFlowComponents/ui/DpiModalBase.vue.js";
6
+ const y = /* @__PURE__ */ d({
5
7
  __name: "TheCancelConfirmationDialog",
6
8
  props: {
7
9
  modelValue: { type: Boolean },
8
10
  modelModifiers: {}
9
11
  },
10
- emits: /* @__PURE__ */ m(["closeWithoutSaving", "closeWithSaving"], ["update:modelValue"]),
11
- setup(u, { emit: d }) {
12
- const n = d, r = p(u, "modelValue");
13
- return (V, e) => (v(), f(g, {
14
- modelValue: r.value,
15
- "onUpdate:modelValue": e[2] || (e[2] = (t) => r.value = t)
12
+ emits: /* @__PURE__ */ f(["closeWithoutSaving", "closeWithSaving"], ["update:modelValue"]),
13
+ setup(l, { emit: k }) {
14
+ const s = V(), t = p(l, "modelValue"), { submitDraft: u } = g();
15
+ async function m() {
16
+ await u.execute(), s.push({ name: "DPI-Home-HappyFlow" });
17
+ }
18
+ return (w, e) => (v(), c(h, {
19
+ modelValue: t.value,
20
+ "onUpdate:modelValue": e[1] || (e[1] = (r) => t.value = r)
16
21
  }, {
17
- header: o(() => e[3] || (e[3] = [
18
- l("h4", null, "Projektanlage später fortführen", -1)
22
+ header: o(() => e[2] || (e[2] = [
23
+ n("h4", { class: "cancel-header" }, " Projektanlage später fortführen ", -1)
19
24
  ])),
20
25
  footer: o(() => [
21
- i(a, {
26
+ a(i, {
22
27
  "button-text": "Bearbeitung verwerfen",
23
28
  variant: "secondary",
24
- onClick: e[0] || (e[0] = (t) => n("closeWithoutSaving"))
29
+ onClick: e[0] || (e[0] = (r) => t.value = !1)
25
30
  }),
26
- i(a, {
31
+ a(i, {
27
32
  "button-text": "Projekt als Entwurf speichern",
28
33
  variant: "primary",
29
- onClick: e[1] || (e[1] = (t) => n("closeWithSaving"))
34
+ onClick: m
30
35
  })
31
36
  ]),
32
37
  default: o(() => [
33
- e[4] || (e[4] = l("div", null, " Sie können die Projektanlage später fortführen und Ihren bisherigen Fortschritt entweder verwerfen oder als Entwurf speichern. ", -1))
38
+ e[3] || (e[3] = n("div", null, " Sie können die Projektanlage später fortführen und Ihren bisherigen Fortschritt entweder verwerfen oder als Entwurf speichern. ", -1))
34
39
  ]),
35
40
  _: 1,
36
- __: [4]
41
+ __: [3]
37
42
  }, 8, ["modelValue"]));
38
43
  }
39
44
  });
40
45
  export {
41
- B as default
46
+ y as default
42
47
  };
@@ -0,0 +1,106 @@
1
+ import { ref as m, watch as k, computed as w, createElementBlock as f, openBlock as P, createElementVNode as e, createCommentVNode as E, createVNode as V, toDisplayString as t, createTextVNode as o, unref as d } from "vue";
2
+ import { useI18n as F } from "vue-i18n";
3
+ import S from "../HappyFlowComponents/ui/Dropdown.vue.js";
4
+ import { PhWarning as N } from "@phosphor-icons/vue";
5
+ import { useEditModeInfo as O } from "../composables/useDpiEditMode.js";
6
+ import { useFormValues as W } from "../composables/useDpiFormValues.js";
7
+ /* empty css */
8
+ import C from "../../../../../_virtual/_plugin-vue_export-helper.js";
9
+ const T = { class: "dpiV3InnerComponentWrap" }, j = { class: "dpiV3_Frame_840" }, z = { class: "copy-large-regular description-text" }, B = { class: "visibility-options-description" }, M = { class: "visibility-option" }, q = { class: "option-title" }, H = { class: "visibility-option" }, U = { class: "option-title" }, A = { class: "visibility-option" }, G = { class: "option-title" }, J = {
10
+ key: 0,
11
+ class: "dpiV3_errormsgWrapper"
12
+ }, K = { class: "copy-mini-regular" }, L = {
13
+ __name: "VisibilityPage",
14
+ props: {
15
+ context: Object
16
+ },
17
+ setup(Q, { expose: h }) {
18
+ const { t: R } = F(), { isEditMode: X } = O(), { formValues: s } = W(), a = m(""), _ = m([
19
+ { "@value": "public", label: "Öffentlich" },
20
+ { "@value": "restricted", label: "Eingeschränkt" },
21
+ { "@value": "internal", label: "Intern" }
22
+ ]);
23
+ Object.keys(s.value.Discoverability.visibilityPage).length === 0 && (s.value.Discoverability.visibilityPage = [{ isValid: "unset" }]);
24
+ const $ = (i) => {
25
+ a.value = i, n(i);
26
+ }, n = (i) => {
27
+ i && i !== "" ? s.value.Discoverability.visibilityPage = [
28
+ { isValid: !0, visibility: i }
29
+ ] : s.value.Discoverability.visibilityPage = [
30
+ { isValid: !1, visibility: "" }
31
+ ], console.log("Visibility validation state:", s.value.Discoverability.visibilityPage);
32
+ };
33
+ k(a, (i) => {
34
+ i !== void 0 && n(i);
35
+ });
36
+ const D = w(() => {
37
+ var i, l;
38
+ return ((l = (i = s.value.Discoverability.visibilityPage) == null ? void 0 : i[0]) == null ? void 0 : l.isValid) === !0;
39
+ });
40
+ return h({
41
+ validateVisibilitySelection: () => a.value !== "" ? (s.value.Discoverability.visibilityPage[0].isValid = !0, !0) : (s.value.Discoverability.visibilityPage = [{ isValid: !1 }], !1),
42
+ canProceed: D
43
+ }), (i, l) => {
44
+ var r, p, c, u, v, b, y, g;
45
+ return P(), f("div", T, [
46
+ e("div", j, [
47
+ e("h4", null, t(i.$t("message.dataupload.datasets.visibilityPage.title")), 1),
48
+ e("div", z, [
49
+ e("p", null, t(i.$t("message.dataupload.datasets.visibilityPage.intro-text")), 1),
50
+ e("p", null, t(i.$t("message.dataupload.datasets.visibilityPage.recommendation-text")), 1),
51
+ e("ul", B, [
52
+ e("li", M, [
53
+ e("span", q, '"' + t(i.$t("message.dataupload.datasets.visibilityPage.visibility-option-public")) + '":', 1),
54
+ o(" " + t(i.$t("message.dataupload.datasets.visibilityPage.visibility-option-public-desc")), 1)
55
+ ]),
56
+ e("li", H, [
57
+ e("span", U, '"' + t(i.$t("message.dataupload.datasets.visibilityPage.visibility-option-restricted")) + '":', 1),
58
+ o(" " + t(i.$t("message.dataupload.datasets.visibilityPage.visibility-option-restricted-desc")), 1)
59
+ ]),
60
+ e("li", A, [
61
+ e("span", G, '"' + t(i.$t("message.dataupload.datasets.visibilityPage.visibility-option-internal")) + '":', 1),
62
+ o(" " + t(i.$t("message.dataupload.datasets.visibilityPage.visibility-option-internal-desc")), 1)
63
+ ])
64
+ ]),
65
+ e("p", null, t(i.$t("message.dataupload.datasets.visibilityPage.registration-note")), 1)
66
+ ]),
67
+ V(S, {
68
+ "onUpdate:modelValue": [
69
+ $,
70
+ l[0] || (l[0] = (I) => a.value = I)
71
+ ],
72
+ dropdownWidth: "large",
73
+ type: "inputField",
74
+ modelValue: a.value,
75
+ inputFieldProps: {
76
+ addOnText: !1,
77
+ initialHintText: !1,
78
+ datePicker: !1,
79
+ infoIcon: !1,
80
+ preIcon: !1,
81
+ label: i.$t("message.dataupload.datasets.visibilityPage.dropdown-label"),
82
+ dropdown_dpiV3: !0,
83
+ placeholder: i.$t("message.dataupload.datasets.visibilityPage.dropdown-placeholder"),
84
+ inputFieldSize: "large",
85
+ modelValue: a.value,
86
+ defaultInput: !0,
87
+ showError: ((u = (c = (p = (r = d(s)) == null ? void 0 : r.Discoverability) == null ? void 0 : p.visibilityPage) == null ? void 0 : c[0]) == null ? void 0 : u.isValid) === !1,
88
+ required: !0
89
+ },
90
+ data: _.value
91
+ }, null, 8, ["modelValue", "inputFieldProps", "data"])
92
+ ]),
93
+ ((g = (y = (b = (v = d(s)) == null ? void 0 : v.Discoverability) == null ? void 0 : b.visibilityPage) == null ? void 0 : y[0]) == null ? void 0 : g.isValid) === !1 ? (P(), f("div", J, [
94
+ V(d(N), {
95
+ size: 16,
96
+ weight: "fill"
97
+ }),
98
+ e("span", K, t(i.$t("message.dataupload.datasets.visibilityPage.error-message")), 1)
99
+ ])) : E("", !0)
100
+ ]);
101
+ };
102
+ }
103
+ }, oi = /* @__PURE__ */ C(L, [["__scopeId", "data-v-8ffc7cf5"]]);
104
+ export {
105
+ oi as default
106
+ };
@@ -1,7 +1,7 @@
1
1
  import o from "./ProjectDpiDevTools.vue2.js";
2
2
  /* empty css */
3
3
  import t from "../../../../../../_virtual/_plugin-vue_export-helper.js";
4
- const c = /* @__PURE__ */ t(o, [["__scopeId", "data-v-c3b54f7a"]]);
4
+ const p = /* @__PURE__ */ t(o, [["__scopeId", "data-v-fd08af1e"]]);
5
5
  export {
6
- c as default
6
+ p as default
7
7
  };