@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.
- package/dist/assets/dpi.css +1 -1
- package/dist/packages/dpi/src/data-provider-interface/DataProviderInterface.vue2.js +48 -47
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/HomeTable.vue.js +74 -71
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ProjectTable.vue.js +4 -94
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ProjectTable.vue2.js +104 -0
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/services/dpiV3_apis.js +1 -1
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/Autocomplete/AutocompleteVocab.vue.js +2 -2
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/Autocomplete/AutocompleteVocab.vue2.js +64 -52
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/BasicInfosStep/ProjectNameStep.vue.js +8 -8
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/DpiModalBase.vue.js +2 -2
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/DpiModalBase.vue2.js +1 -1
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/Findability/CategoriesStep.vue.js +2 -2
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/Findability/CategoriesStep.vue2.js +4 -4
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/OptionalDataStep/OptionalDataStep.vue.js +2 -2
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/OptionalDataStep/OptionalDataStep.vue2.js +21 -21
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/DatasetStep.vue.js +2 -2
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/DatasetStep.vue2.js +73 -71
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/GetResource.vue.js +4 -4
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/HardwareForm.vue.js +2 -2
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/HardwareStep.vue.js +2 -2
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/HardwareStep.vue2.js +133 -131
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/SoftwareStep.vue.js +2 -2
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/SoftwareStep.vue2.js +85 -83
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ReviewStep/ReviewStep.vue.js +2 -2
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ReviewStep/ReviewStep.vue2.js +4 -4
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/TableRowV3.vue.js +179 -133
- package/dist/packages/dpi/src/data-provider-interface/components/DistLicense.vue.js +224 -133
- package/dist/packages/dpi/src/data-provider-interface/components/StepActionsSection.vue.js +2 -2
- package/dist/packages/dpi/src/data-provider-interface/components/StepActionsSection.vue2.js +111 -91
- package/dist/packages/dpi/src/data-provider-interface/components/TheCancelConfirmationDialog.vue.js +3 -3
- package/dist/packages/dpi/src/data-provider-interface/components/TheCancelConfirmationDialog.vue2.js +24 -19
- package/dist/packages/dpi/src/data-provider-interface/components/VisibilityPage.vue.js +106 -0
- package/dist/packages/dpi/src/data-provider-interface/components/dev-tools/ProjectDpiDevTools.vue.js +2 -2
- package/dist/packages/dpi/src/data-provider-interface/components/dev-tools/ProjectDpiDevTools.vue2.js +137 -94
- package/dist/packages/dpi/src/data-provider-interface/composables/project-transformer/decodeProject.js +152 -135
- package/dist/packages/dpi/src/data-provider-interface/composables/project-transformer/encodeProject.js +201 -164
- package/dist/packages/dpi/src/data-provider-interface/composables/useDpiContext.js +9 -10
- package/dist/packages/dpi/src/data-provider-interface/composables/useDpiEditMode.js +88 -66
- package/dist/packages/dpi/src/data-provider-interface/composables/useDpiSimpleLoader.js +274 -273
- package/dist/packages/dpi/src/data-provider-interface/composables/useDpiStepper.js +33 -32
- package/dist/packages/dpi/src/data-provider-interface/composables/useDpiUtils.js +18 -9
- package/dist/packages/dpi/src/data-provider-interface/composables/useProjectActions.js +65 -0
- package/dist/packages/dpi/src/data-provider-interface/composables/useTwinbyHome.js +50 -0
- package/dist/packages/dpi/src/data-provider-interface/config/dcatapdeHappyFlow/input-definition.js +4 -0
- package/dist/packages/dpi/src/data-provider-interface/config/dcatapdeHappyFlow/page-content-config.js +1 -1
- package/dist/packages/dpi/src/data-provider-interface/schema/projectLdSchema.js +48 -45
- package/dist/packages/dpi/src/data-provider-interface/views/InputPage.vue.js +276 -251
- package/dist/packages/dpi/src/data-provider-interface/views/InputPageProject.vue.js +386 -397
- package/dist/packages/dpi/src/form/inputDefinitions.js +15 -10
- package/dist/packages/dpi/src/utils/schema/schemaProject.js +210 -0
- package/dist/packages/dpi/src/utils/schema/shared.js +23 -0
- package/package.json +3 -3
|
@@ -1,143 +1,144 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { FormKit as
|
|
1
|
+
import { defineComponent as X, ref as x, computed as H, watch as Y, toRef as ee, createBlock as d, openBlock as i, withCtx as u, createVNode as c, createElementBlock as o, createElementVNode as S, unref as _, isRef as te, Fragment as f, renderList as v, createCommentVNode as m, createTextVNode as B, toDisplayString as y, nextTick as ne } from "vue";
|
|
2
|
+
import { FormKit as U } from "@formkit/vue";
|
|
3
3
|
import { defineHubSearch as ie } from "@piveau/sdk-vue";
|
|
4
4
|
import le from "zod";
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
5
|
+
import re from "../../../components/StepActionsSection.vue.js";
|
|
6
|
+
import oe from "../ActionCard.vue.js";
|
|
7
|
+
import ae from "../Card.vue.js";
|
|
8
|
+
import ue from "../Chip.vue.js";
|
|
9
|
+
import se from "../DpiModalBase.vue.js";
|
|
10
10
|
import p from "../SummaryBox.vue.js";
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
11
|
+
import de from "./AreYouSureToSkipCard.vue.js";
|
|
12
|
+
import $ from "./HardwareForm.vue.js";
|
|
13
|
+
import me from "./ProcessStepBase.vue.js";
|
|
14
14
|
/* empty css */
|
|
15
|
-
import { looseRenderable as h, useProcessStepResources as
|
|
16
|
-
const
|
|
15
|
+
import { looseRenderable as h, useProcessStepResources as pe, ensureHasOneResource as ce } from "./utils.js";
|
|
16
|
+
const fe = {
|
|
17
17
|
key: 0,
|
|
18
18
|
class: "software-step__card-list--empty"
|
|
19
|
-
},
|
|
19
|
+
}, ve = {
|
|
20
20
|
key: 1,
|
|
21
21
|
class: "software-step__card-list"
|
|
22
|
-
},
|
|
22
|
+
}, ye = { class: "step-section step-section--lg" }, he = { class: "functionalities" }, Te = /* @__PURE__ */ X({
|
|
23
23
|
__name: "HardwareStep",
|
|
24
24
|
props: {
|
|
25
25
|
stepGroup: {},
|
|
26
26
|
edit: { type: Boolean }
|
|
27
27
|
},
|
|
28
|
-
setup(
|
|
29
|
-
const z =
|
|
28
|
+
setup(O) {
|
|
29
|
+
const z = O, k = x(!1), a = x([]), { useResources: F } = ie({
|
|
30
30
|
baseUrl: "https://twin.bydata.de/api/hub/search",
|
|
31
31
|
index: "resource",
|
|
32
32
|
indexDetails: "resources/hardware",
|
|
33
33
|
schema: le.any()
|
|
34
34
|
}, (e) => {
|
|
35
|
-
var P, T, E, N, G
|
|
36
|
-
const
|
|
35
|
+
var C, P, T, E, N, G;
|
|
36
|
+
const n = String((e == null ? void 0 : e.id) || ""), r = String(((C = e == null ? void 0 : e.name) == null ? void 0 : C.de) || ((P = e == null ? void 0 : e.name) == null ? void 0 : P.en) || ""), t = (e == null ? void 0 : e.functionalities) || [], V = String(((E = (T = e == null ? void 0 : e.manufacturer) == null ? void 0 : T[0]) == null ? void 0 : E.label) || ""), l = String(((N = e == null ? void 0 : e.description) == null ? void 0 : N.de) || ((G = e == null ? void 0 : e.description) == null ? void 0 : G.en) || ""), s = String((e == null ? void 0 : e.version) || "");
|
|
37
37
|
return {
|
|
38
|
-
id:
|
|
39
|
-
name:
|
|
40
|
-
functionalities:
|
|
38
|
+
id: n,
|
|
39
|
+
name: r,
|
|
40
|
+
functionalities: t,
|
|
41
41
|
manufacturer: V,
|
|
42
42
|
description: l,
|
|
43
|
-
version:
|
|
43
|
+
version: s
|
|
44
44
|
};
|
|
45
|
-
}),
|
|
45
|
+
}), A = F(H(() => a.value.map((e) => ({
|
|
46
46
|
resourceId: e.id
|
|
47
|
-
})))),
|
|
48
|
-
|
|
47
|
+
})))), I = H(() => a.value.map((e, n) => {
|
|
48
|
+
var t;
|
|
49
|
+
const r = (t = A.value[n]) == null ? void 0 : t.resultEnhanced;
|
|
49
50
|
return {
|
|
50
51
|
// The ones that come from API
|
|
51
|
-
id:
|
|
52
|
-
name: (
|
|
53
|
-
manufacturer:
|
|
54
|
-
version:
|
|
52
|
+
id: e.id || (r == null ? void 0 : r.id),
|
|
53
|
+
name: (r == null ? void 0 : r.name) || e.id,
|
|
54
|
+
manufacturer: r == null ? void 0 : r.manufacturer,
|
|
55
|
+
version: r == null ? void 0 : r.version,
|
|
55
56
|
// Comes from API as well? Todo
|
|
56
57
|
// description: enhanced?.description,
|
|
57
58
|
// The ones that have been submitted by user
|
|
58
|
-
forProperty: h(
|
|
59
|
-
description: h(
|
|
60
|
-
functionalities: h(
|
|
61
|
-
locations: h(
|
|
62
|
-
depictions: h(
|
|
63
|
-
references: h(
|
|
64
|
-
isHostedByItems: h(
|
|
65
|
-
hosts: h(
|
|
59
|
+
forProperty: h(e == null ? void 0 : e.forProperty),
|
|
60
|
+
description: h(e == null ? void 0 : e.description),
|
|
61
|
+
functionalities: h(e == null ? void 0 : e.functionalities),
|
|
62
|
+
locations: h(e == null ? void 0 : e.locations),
|
|
63
|
+
depictions: h(e == null ? void 0 : e.depictions),
|
|
64
|
+
references: h(e == null ? void 0 : e.references),
|
|
65
|
+
isHostedByItems: h(e == null ? void 0 : e.isHostedBy),
|
|
66
|
+
hosts: h(e == null ? void 0 : e.hosts)
|
|
66
67
|
};
|
|
67
|
-
})
|
|
68
|
-
|
|
69
|
-
!e &&
|
|
68
|
+
})), w = x(""), W = H(() => a.value.find((e) => e.id === w.value)), b = x(0);
|
|
69
|
+
Y(k, (e, n) => {
|
|
70
|
+
!e && n && b.value++;
|
|
70
71
|
});
|
|
71
|
-
function
|
|
72
|
-
return
|
|
72
|
+
function L(e) {
|
|
73
|
+
return a.value.find((n) => n.id === e);
|
|
73
74
|
}
|
|
74
|
-
function
|
|
75
|
-
return
|
|
75
|
+
function D(e) {
|
|
76
|
+
return a.value.findIndex((n) => n.id === e);
|
|
76
77
|
}
|
|
77
|
-
function
|
|
78
|
-
const
|
|
79
|
-
|
|
78
|
+
function M(e) {
|
|
79
|
+
const n = D(e);
|
|
80
|
+
n !== -1 && a.value.splice(n, 1);
|
|
80
81
|
}
|
|
81
|
-
async function
|
|
82
|
-
|
|
82
|
+
async function K(e) {
|
|
83
|
+
L(e) && (w.value = e, b.value++, await ne(), k.value = !0);
|
|
83
84
|
}
|
|
84
|
-
function
|
|
85
|
-
|
|
85
|
+
function R(e) {
|
|
86
|
+
a.value.push(e), k.value = !1, w.value = "";
|
|
86
87
|
}
|
|
87
|
-
function
|
|
88
|
-
const
|
|
89
|
-
|
|
88
|
+
function Z(e) {
|
|
89
|
+
const n = D(e.id);
|
|
90
|
+
n !== -1 && (a.value.splice(n, 1), a.value.splice(n, 0, e.hardware), w.value = "", k.value = !1);
|
|
90
91
|
}
|
|
91
|
-
function
|
|
92
|
+
function j() {
|
|
92
93
|
k.value = !1;
|
|
93
94
|
}
|
|
94
|
-
const
|
|
95
|
-
return (e,
|
|
95
|
+
const q = H(() => a.value.length > 0 ? "Weiter" : "Weiter ohne Hardware"), J = H(() => a.value.length > 0 ? "primary" : "secondary"), { count: g, realCount: Q } = pe(z.stepGroup || "", ee(z.edit));
|
|
96
|
+
return (e, n) => (i(), d(me, {
|
|
96
97
|
title: "Geben Sie Informationen zur verwendeten Hardware an",
|
|
97
98
|
subtitle: "Die Hardware wird zentral von uns verwaltet. Sie können in diesem Schritt auswählen, welche Hardware Sie verwendet haben. Sobald Sie eine Hardware zugeordnet haben, geben Sie bitte an, wie die Hardware in diesem Schritt eingesetzt wurde."
|
|
98
99
|
}, {
|
|
99
|
-
default:
|
|
100
|
-
|
|
101
|
-
modelValue:
|
|
102
|
-
"onUpdate:modelValue":
|
|
100
|
+
default: u(({ confirm: r }) => [
|
|
101
|
+
c(_(U), {
|
|
102
|
+
modelValue: _(g),
|
|
103
|
+
"onUpdate:modelValue": n[0] || (n[0] = (t) => te(g) ? g.value = t : null),
|
|
103
104
|
type: "hidden",
|
|
104
105
|
name: "__resourceCount",
|
|
105
106
|
hidden: "",
|
|
106
107
|
"aria-hidden": "",
|
|
107
|
-
"validation-rules": { ensureHasOneResource:
|
|
108
|
+
"validation-rules": { ensureHasOneResource: _(ce) },
|
|
108
109
|
validation: "+ensureHasOneResource",
|
|
109
110
|
"validation-visibility": "live",
|
|
110
111
|
"validation-messages": { ensureHasOneResource: "Sie müssen pro Schritt mindestens eine Software, einen Datensatz oder eine Hardware zuordnen, um fortfahren zu können." }
|
|
111
112
|
}, null, 8, ["modelValue", "validation-rules"]),
|
|
112
|
-
|
|
113
|
-
modelValue:
|
|
114
|
-
"onUpdate:modelValue":
|
|
113
|
+
c(_(U), {
|
|
114
|
+
modelValue: a.value,
|
|
115
|
+
"onUpdate:modelValue": n[1] || (n[1] = (t) => a.value = t),
|
|
115
116
|
name: "selected",
|
|
116
117
|
type: "list",
|
|
117
118
|
hidden: ""
|
|
118
119
|
}, null, 8, ["modelValue"]),
|
|
119
|
-
|
|
120
|
-
(i(!0), o(f, null, v(
|
|
120
|
+
I.value.length ? (i(), o("section", ve, [
|
|
121
|
+
(i(!0), o(f, null, v(I.value, (t, V) => (i(), d(oe, {
|
|
121
122
|
key: V,
|
|
122
123
|
class: "software-card",
|
|
123
|
-
onEdit: (l) =>
|
|
124
|
-
onDelete: (l) =>
|
|
124
|
+
onEdit: (l) => K(t.id),
|
|
125
|
+
onDelete: (l) => r({ id: t.id || "", resourceType: "Hardware", resource: t.name, callback: M })
|
|
125
126
|
}, {
|
|
126
|
-
"standalone-name":
|
|
127
|
+
"standalone-name": u(() => n[5] || (n[5] = [
|
|
127
128
|
B(" Hardware ", -1)
|
|
128
129
|
])),
|
|
129
|
-
default:
|
|
130
|
-
S("div",
|
|
131
|
-
|
|
132
|
-
default:
|
|
133
|
-
B(y(
|
|
130
|
+
default: u(() => [
|
|
131
|
+
S("div", ye, [
|
|
132
|
+
c(p, { title: "Name" }, {
|
|
133
|
+
default: u(() => [
|
|
134
|
+
B(y(t.name), 1)
|
|
134
135
|
]),
|
|
135
136
|
_: 2
|
|
136
137
|
}, 1024),
|
|
137
|
-
|
|
138
|
-
default:
|
|
139
|
-
S("div",
|
|
140
|
-
(i(!0), o(f, null, v(
|
|
138
|
+
c(p, { title: "Genutzte Funktionalitäten" }, {
|
|
139
|
+
default: u(() => [
|
|
140
|
+
S("div", he, [
|
|
141
|
+
(i(!0), o(f, null, v(t.functionalities, (l) => (i(), d(ue, {
|
|
141
142
|
key: l,
|
|
142
143
|
text: l,
|
|
143
144
|
data: { "@value": "", URI: "" },
|
|
@@ -147,117 +148,118 @@ const ve = {
|
|
|
147
148
|
]),
|
|
148
149
|
_: 2
|
|
149
150
|
}, 1024),
|
|
150
|
-
|
|
151
|
+
t.description ? (i(), d(p, {
|
|
151
152
|
key: 0,
|
|
152
153
|
title: "Beschreibung der Nutzung (optional)"
|
|
153
154
|
}, {
|
|
154
|
-
default:
|
|
155
|
-
B(y(
|
|
155
|
+
default: u(() => [
|
|
156
|
+
B(y(t.description), 1)
|
|
156
157
|
]),
|
|
157
158
|
_: 2
|
|
158
|
-
}, 1024)) :
|
|
159
|
-
|
|
159
|
+
}, 1024)) : m("", !0),
|
|
160
|
+
t.isHostedByItems ? (i(), d(p, {
|
|
160
161
|
key: 1,
|
|
161
162
|
title: "Host-Plattform (optional)"
|
|
162
163
|
}, {
|
|
163
|
-
default:
|
|
164
|
-
(i(!0), o(f, null, v(
|
|
164
|
+
default: u(() => [
|
|
165
|
+
(i(!0), o(f, null, v(t.isHostedByItems, (l, s) => (i(), o("div", { key: s }, y(l), 1))), 128))
|
|
165
166
|
]),
|
|
166
167
|
_: 2
|
|
167
|
-
}, 1024)) :
|
|
168
|
-
|
|
168
|
+
}, 1024)) : m("", !0),
|
|
169
|
+
t.hosts ? (i(), d(p, {
|
|
169
170
|
key: 2,
|
|
170
171
|
title: "Gehostete Geräte (optional)"
|
|
171
172
|
}, {
|
|
172
|
-
default:
|
|
173
|
-
(i(!0), o(f, null, v(
|
|
173
|
+
default: u(() => [
|
|
174
|
+
(i(!0), o(f, null, v(t.hosts, (l, s) => (i(), o("div", { key: s }, y(l), 1))), 128))
|
|
174
175
|
]),
|
|
175
176
|
_: 2
|
|
176
|
-
}, 1024)) :
|
|
177
|
-
|
|
177
|
+
}, 1024)) : m("", !0),
|
|
178
|
+
t.forProperty ? (i(), d(p, {
|
|
178
179
|
key: 3,
|
|
179
180
|
title: "Zweck (optional)"
|
|
180
181
|
}, {
|
|
181
|
-
default:
|
|
182
|
-
(i(!0), o(f, null, v(
|
|
182
|
+
default: u(() => [
|
|
183
|
+
(i(!0), o(f, null, v(t.forProperty, (l, s) => (i(), o("div", { key: s }, y(l), 1))), 128))
|
|
183
184
|
]),
|
|
184
185
|
_: 2
|
|
185
|
-
}, 1024)) :
|
|
186
|
-
|
|
186
|
+
}, 1024)) : m("", !0),
|
|
187
|
+
t.locations ? (i(), d(p, {
|
|
187
188
|
key: 4,
|
|
188
189
|
title: "Standort (optional)"
|
|
189
190
|
}, {
|
|
190
|
-
default:
|
|
191
|
-
(i(!0), o(f, null, v(
|
|
191
|
+
default: u(() => [
|
|
192
|
+
(i(!0), o(f, null, v(t.locations, (l, s) => (i(), o("div", { key: s }, y(`${l.lat} ${l.lng}`), 1))), 128))
|
|
192
193
|
]),
|
|
193
194
|
_: 2
|
|
194
|
-
}, 1024)) :
|
|
195
|
-
|
|
195
|
+
}, 1024)) : m("", !0),
|
|
196
|
+
t.depictions ? (i(), d(p, {
|
|
196
197
|
key: 5,
|
|
197
198
|
title: "Darstellungen (optional)"
|
|
198
199
|
}, {
|
|
199
|
-
default:
|
|
200
|
-
(i(!0), o(f, null, v(
|
|
200
|
+
default: u(() => [
|
|
201
|
+
(i(!0), o(f, null, v(t.depictions, (l, s) => (i(), o("div", { key: s }, y(l), 1))), 128))
|
|
201
202
|
]),
|
|
202
203
|
_: 2
|
|
203
|
-
}, 1024)) :
|
|
204
|
-
|
|
204
|
+
}, 1024)) : m("", !0),
|
|
205
|
+
t.references ? (i(), d(p, {
|
|
205
206
|
key: 6,
|
|
206
207
|
title: "Weiterführende Links (optional)"
|
|
207
208
|
}, {
|
|
208
|
-
default:
|
|
209
|
-
(i(!0), o(f, null, v(
|
|
209
|
+
default: u(() => [
|
|
210
|
+
(i(!0), o(f, null, v(t.references, (l, s) => (i(), o("div", { key: s }, y(l.name), 1))), 128))
|
|
210
211
|
]),
|
|
211
212
|
_: 2
|
|
212
|
-
}, 1024)) :
|
|
213
|
+
}, 1024)) : m("", !0)
|
|
213
214
|
])
|
|
214
215
|
]),
|
|
215
216
|
_: 2
|
|
216
217
|
}, 1032, ["onEdit", "onDelete"]))), 128))
|
|
217
|
-
])) : (i(), o("section",
|
|
218
|
-
|
|
218
|
+
])) : (i(), o("section", fe, [
|
|
219
|
+
c(ae, {
|
|
219
220
|
small: "",
|
|
220
221
|
class: "empty-card"
|
|
221
222
|
}, {
|
|
222
|
-
default:
|
|
223
|
+
default: u(() => n[4] || (n[4] = [
|
|
223
224
|
S("p", { class: "copy-large-regular empty-card-text" }, " Aktuell haben Sie noch keine Hardware im Prozessschritt hinterlegt. ", -1)
|
|
224
225
|
])),
|
|
225
226
|
_: 1,
|
|
226
227
|
__: [4]
|
|
227
228
|
})
|
|
228
229
|
])),
|
|
229
|
-
|
|
230
|
-
exclude:
|
|
231
|
-
onSubmit:
|
|
230
|
+
c($, {
|
|
231
|
+
exclude: a.value.map((t) => t.id),
|
|
232
|
+
onSubmit: R
|
|
232
233
|
}, null, 8, ["exclude"]),
|
|
233
234
|
S("section", null, [
|
|
234
|
-
|
|
235
|
-
"next-text":
|
|
236
|
-
"next-variant":
|
|
235
|
+
c(re, {
|
|
236
|
+
"next-text": q.value,
|
|
237
|
+
"next-variant": J.value,
|
|
238
|
+
"show-detailed-error-summary": ""
|
|
237
239
|
}, null, 8, ["next-text", "next-variant"]),
|
|
238
|
-
|
|
240
|
+
_(Q) === 0 ? (i(), d(de, {
|
|
239
241
|
key: 0,
|
|
240
242
|
"resource-label": "Hardware"
|
|
241
|
-
})) :
|
|
243
|
+
})) : m("", !0)
|
|
242
244
|
]),
|
|
243
|
-
|
|
245
|
+
c(se, {
|
|
244
246
|
modelValue: k.value,
|
|
245
|
-
"onUpdate:modelValue":
|
|
247
|
+
"onUpdate:modelValue": n[3] || (n[3] = (t) => k.value = t),
|
|
246
248
|
"hide-close-btn": !0,
|
|
247
249
|
"compact-layout": !0,
|
|
248
250
|
title: "Hardware"
|
|
249
251
|
}, {
|
|
250
|
-
default:
|
|
251
|
-
|
|
252
|
+
default: u(() => [
|
|
253
|
+
w.value ? (i(), d($, {
|
|
252
254
|
key: b.value,
|
|
253
|
-
modelValue:
|
|
254
|
-
"onUpdate:modelValue":
|
|
255
|
-
"initialize-with":
|
|
256
|
-
exclude:
|
|
257
|
-
onSubmit:
|
|
258
|
-
onPatch:
|
|
259
|
-
onClose:
|
|
260
|
-
}, null, 8, ["modelValue", "initialize-with", "exclude"])) :
|
|
255
|
+
modelValue: w.value,
|
|
256
|
+
"onUpdate:modelValue": n[2] || (n[2] = (t) => w.value = t),
|
|
257
|
+
"initialize-with": W.value,
|
|
258
|
+
exclude: a.value.map((t) => t.id),
|
|
259
|
+
onSubmit: R,
|
|
260
|
+
onPatch: Z,
|
|
261
|
+
onClose: j
|
|
262
|
+
}, null, 8, ["modelValue", "initialize-with", "exclude"])) : m("", !0)
|
|
261
263
|
]),
|
|
262
264
|
_: 1
|
|
263
265
|
}, 8, ["modelValue"])
|
|
@@ -267,5 +269,5 @@ const ve = {
|
|
|
267
269
|
}
|
|
268
270
|
});
|
|
269
271
|
export {
|
|
270
|
-
|
|
272
|
+
Te as default
|
|
271
273
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./SoftwareStep.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import t from "../../../../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const e = /* @__PURE__ */ t(o, [["__scopeId", "data-v-8bdca471"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
e as default
|
|
7
7
|
};
|