@piveau/dpi 0.2.0-alpha.67 → 0.2.0-alpha.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/dpi.css +1 -1
- package/dist/packages/dpi/src/composables/useRuntimeEnv.js +3 -3
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/AboutProject.vue.js +1 -1
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/AboutProject.vue2.js +80 -73
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/HomeTable.vue.js +39 -39
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/Autocomplete/AutocompleteVocab.vue.js +1 -1
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/Autocomplete/AutocompleteVocab.vue2.js +15 -10
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/DatasetForm.vue.js +2 -2
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/DatasetForm.vue2.js +90 -86
- 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 +51 -49
- 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/HardwareForm.vue2.js +549 -542
- 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 +69 -67
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/SoftwareForm.vue.js +2 -2
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/ui/ProcessSteps/SoftwareForm.vue2.js +152 -145
- 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 +62 -60
- 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 +559 -522
- package/dist/packages/dpi/src/data-provider-interface/components/Spatial.vue.js +2 -2
- package/dist/packages/dpi/src/data-provider-interface/components/Spatial.vue2.js +69 -65
- package/dist/packages/dpi/src/data-provider-interface/composables/useProjectActions.js +29 -29
- package/dist/packages/dpi/src/data-provider-interface/plugins/userConfigShimPlugin.js +2 -3
- package/package.json +5 -1
|
@@ -1,103 +1,107 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { toTypedSchema as
|
|
3
|
-
import { useForm as
|
|
4
|
-
import { useRouter as
|
|
5
|
-
import { useStore as
|
|
1
|
+
import { defineComponent as U, watch as j, computed as g, createElementBlock as A, openBlock as C, createElementVNode as t, createVNode as u, mergeProps as N, unref as m, isRef as P, withCtx as a, toDisplayString as W } from "vue";
|
|
2
|
+
import { toTypedSchema as H } from "../../../../../../../node_modules/.pnpm/@vee-validate_zod@4.15.1_vue@3.5.18_typescript@5.8.3__zod@3.25.76/node_modules/@vee-validate/zod/dist/vee-validate-zod.js";
|
|
3
|
+
import { useForm as K } from "vee-validate";
|
|
4
|
+
import { useRouter as L } from "vue-router";
|
|
5
|
+
import { useStore as O } from "vuex";
|
|
6
6
|
import * as S from "zod";
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
|
|
7
|
+
import { useRuntimeEnv as Z } from "../../../../composables/useRuntimeEnv.js";
|
|
8
|
+
import q from "../Autocomplete/AutocompleteVocab.vue.js";
|
|
9
|
+
import G from "../ButtonV3.vue.js";
|
|
10
|
+
import J from "./RichOption.vue.js";
|
|
11
|
+
const M = { class: "dpi-project-process-step V3-typography" }, Q = { class: "step-section" }, X = { class: "step-section-actions" }, Y = ["href"], ue = /* @__PURE__ */ U({
|
|
11
12
|
__name: "DatasetForm",
|
|
12
13
|
props: {
|
|
13
14
|
exclude: { default: () => [] }
|
|
14
15
|
},
|
|
15
16
|
emits: ["submit"],
|
|
16
|
-
setup(
|
|
17
|
-
const
|
|
18
|
-
validationSchema:
|
|
17
|
+
setup(y, { emit: z }) {
|
|
18
|
+
const k = y, V = z, w = S.object({ id: S.string() }), { defineField: x } = K({
|
|
19
|
+
validationSchema: H(w),
|
|
19
20
|
initialValues: { id: "" },
|
|
20
21
|
name: "datasetForm"
|
|
21
|
-
}), [s,
|
|
22
|
+
}), [s, F] = x("id");
|
|
22
23
|
j(s, (o) => {
|
|
23
24
|
const n = String(o || "").trim();
|
|
24
|
-
n && (
|
|
25
|
+
n && (V("submit", { id: n }), s.value = void 0);
|
|
25
26
|
});
|
|
26
|
-
const
|
|
27
|
-
() =>
|
|
28
|
-
),
|
|
27
|
+
const _ = L(), I = g(
|
|
28
|
+
() => _.resolve({ name: "DataProviderInterface-Input", params: { property: "datasets" } }).href
|
|
29
|
+
), R = O(), B = g(() => {
|
|
29
30
|
var o, n;
|
|
30
|
-
return ((n = (o =
|
|
31
|
-
});
|
|
32
|
-
return (o, n) =>
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
r =
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
t("
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
31
|
+
return ((n = (o = R.getters) == null ? void 0 : o["auth/getUserData"]) == null ? void 0 : n.authToken) || "";
|
|
32
|
+
}), E = Z();
|
|
33
|
+
return (o, n) => {
|
|
34
|
+
var p;
|
|
35
|
+
return C(), A("div", M, [
|
|
36
|
+
t("section", Q, [
|
|
37
|
+
n[1] || (n[1] = t("h5", null, "Wählen Sie einen bestehenden Datensatz", -1)),
|
|
38
|
+
n[2] || (n[2] = t("p", null, "Falls der Datensatz schon in unserem System existiert, können Sie ihn hier auswählen.", -1)),
|
|
39
|
+
u(q, N({
|
|
40
|
+
modelValue: m(s),
|
|
41
|
+
"onUpdate:modelValue": n[0] || (n[0] = (e) => P(s) ? s.value = e : null)
|
|
42
|
+
}, m(F), {
|
|
43
|
+
"base-url": ((p = m(E).api) == null ? void 0 : p.baseUrl) ?? "https://twin.bydata.de/api/hub/search",
|
|
44
|
+
resource: "dataset",
|
|
45
|
+
label: "",
|
|
46
|
+
placeholder: "Wählen Sie einen Datensatz.",
|
|
47
|
+
name: "dataset",
|
|
48
|
+
"setup-fn": (e) => {
|
|
49
|
+
var i, l, c, f, h, b, v, D, d;
|
|
50
|
+
let r = (e == null ? void 0 : e.modified) || (e == null ? void 0 : e.issued);
|
|
51
|
+
try {
|
|
52
|
+
r = r ? new Date(r).toLocaleDateString() : "";
|
|
53
|
+
} catch (T) {
|
|
54
|
+
console.error(T), r = "";
|
|
55
|
+
}
|
|
56
|
+
return {
|
|
57
|
+
id: e == null ? void 0 : e.id,
|
|
58
|
+
name: ((i = e == null ? void 0 : e.title) == null ? void 0 : i.de) || ((l = e == null ? void 0 : e.title) == null ? void 0 : l.en) || (e == null ? void 0 : e.id),
|
|
59
|
+
description: ((c = e == null ? void 0 : e.description) == null ? void 0 : c.de) || ((f = e == null ? void 0 : e.description) == null ? void 0 : f.en),
|
|
60
|
+
manufacturer: ((b = (h = e == null ? void 0 : e.publisher) == null ? void 0 : h.name) == null ? void 0 : b.de) || ((D = (v = e == null ? void 0 : e.publisher) == null ? void 0 : v.name) == null ? void 0 : D.en) || ((d = e == null ? void 0 : e.publisher) == null ? void 0 : d.name),
|
|
61
|
+
unavailable: k.exclude.includes(e == null ? void 0 : e.id),
|
|
62
|
+
date: r
|
|
63
|
+
};
|
|
64
|
+
},
|
|
65
|
+
"auth-token": B.value
|
|
66
|
+
}), {
|
|
67
|
+
option: a(({ option: e, active: r, selected: i, disabled: l }) => [
|
|
68
|
+
u(J, {
|
|
69
|
+
name: e.name,
|
|
70
|
+
manufacturer: e.manufacturer,
|
|
71
|
+
description: e.description,
|
|
72
|
+
active: r,
|
|
73
|
+
selected: i,
|
|
74
|
+
disabled: l,
|
|
75
|
+
date: e.date
|
|
76
|
+
}, {
|
|
77
|
+
meta: a(() => [
|
|
78
|
+
t("p", null, W(e.manufacturer), 1)
|
|
79
|
+
]),
|
|
80
|
+
_: 2
|
|
81
|
+
}, 1032, ["name", "manufacturer", "description", "active", "selected", "disabled", "date"])
|
|
82
|
+
]),
|
|
83
|
+
_: 1
|
|
84
|
+
}, 16, ["modelValue", "base-url", "setup-fn", "auth-token"]),
|
|
85
|
+
n[3] || (n[3] = t("h5", null, "oder", -1)),
|
|
86
|
+
n[4] || (n[4] = t("p", null, " Sollte der verwendete Datensatz noch nicht im Katalog verfügbar sein, legen Sie einen neuen Datensatz an. Der Datensatz kann zugeordnet werden, sobald er veröffentlicht ist. ", -1)),
|
|
87
|
+
t("div", X, [
|
|
88
|
+
t("a", {
|
|
89
|
+
href: I.value,
|
|
90
|
+
target: "_blank",
|
|
91
|
+
rel: "noopener noreferrer"
|
|
92
|
+
}, [
|
|
93
|
+
u(G, {
|
|
94
|
+
"button-text": "Zur Datensatzanlage",
|
|
95
|
+
size: "medium",
|
|
96
|
+
variant: "secondary"
|
|
97
|
+
})
|
|
98
|
+
], 8, Y)
|
|
99
|
+
])
|
|
96
100
|
])
|
|
97
|
-
])
|
|
98
|
-
|
|
101
|
+
]);
|
|
102
|
+
};
|
|
99
103
|
}
|
|
100
104
|
});
|
|
101
105
|
export {
|
|
102
|
-
|
|
106
|
+
ue as default
|
|
103
107
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import t from "./DatasetStep.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import o from "../../../../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const r = /* @__PURE__ */ o(t, [["__scopeId", "data-v-11408dee"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
r as default
|
|
7
7
|
};
|
|
@@ -1,65 +1,67 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as T, ref as $, computed as d, toRef as E, createBlock as l, openBlock as r, withCtx as i, createVNode as o, createElementBlock as v, createElementVNode as D, unref as u, isRef as G, Fragment as O, renderList as U, createCommentVNode as h, createTextVNode as m, toDisplayString as _ } from "vue";
|
|
2
2
|
import { FormKit as S } from "@formkit/vue";
|
|
3
|
-
import { schemaDataset as
|
|
4
|
-
import { defineHubSearch as
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
3
|
+
import { schemaDataset as F } from "@piveau/sdk-core";
|
|
4
|
+
import { defineHubSearch as P, dcatApDataset as W } from "@piveau/sdk-vue";
|
|
5
|
+
import { useRuntimeEnv as L } from "../../../../composables/useRuntimeEnv.js";
|
|
6
|
+
import K from "../../../components/StepActionsSection.vue.js";
|
|
7
|
+
import j from "../ActionCard.vue.js";
|
|
8
|
+
import q from "../Card.vue.js";
|
|
8
9
|
import x from "../SummaryBox.vue.js";
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
10
|
+
import J from "./AreYouSureToSkipCard.vue.js";
|
|
11
|
+
import Q from "./DatasetForm.vue.js";
|
|
12
|
+
import X from "./ProcessStepBase.vue.js";
|
|
12
13
|
/* empty css */
|
|
13
|
-
import { useProcessStepResources as
|
|
14
|
-
const
|
|
14
|
+
import { useProcessStepResources as Y } from "./utils.js";
|
|
15
|
+
const Z = {
|
|
15
16
|
key: 0,
|
|
16
17
|
class: "software-step__card-list--empty"
|
|
17
|
-
},
|
|
18
|
+
}, ee = {
|
|
18
19
|
key: 1,
|
|
19
20
|
class: "software-step__card-list"
|
|
20
|
-
},
|
|
21
|
+
}, te = { class: "step-section step-section--lg" }, ne = { class: "" }, he = /* @__PURE__ */ T({
|
|
21
22
|
__name: "DatasetStep",
|
|
22
23
|
props: {
|
|
23
24
|
stepGroup: {},
|
|
24
25
|
edit: { type: Boolean }
|
|
25
26
|
},
|
|
26
|
-
setup(
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
setup(k) {
|
|
28
|
+
var g;
|
|
29
|
+
const y = k, s = $([]), V = L(), { useResources: w } = P({
|
|
30
|
+
baseUrl: ((g = V.api) == null ? void 0 : g.baseUrl) ?? "https://twin.bydata.de/api/hub/search",
|
|
29
31
|
index: "dataset",
|
|
30
32
|
indexDetails: "datasets",
|
|
31
|
-
schema:
|
|
33
|
+
schema: F
|
|
32
34
|
}, (a, t) => {
|
|
33
|
-
const { setup: e } =
|
|
35
|
+
const { setup: e } = W({});
|
|
34
36
|
return e(a, {
|
|
35
37
|
...t,
|
|
36
38
|
currentLocale: "de"
|
|
37
39
|
});
|
|
38
|
-
}),
|
|
40
|
+
}), R = w(d(() => s.value.map((a) => ({
|
|
39
41
|
resourceId: a.id
|
|
40
|
-
})))),
|
|
42
|
+
})))), c = d(() => s.value.map((a, t) => {
|
|
41
43
|
var z;
|
|
42
|
-
const e = (z =
|
|
44
|
+
const e = (z = R.value[t]) == null ? void 0 : z.resultEnhanced, n = e == null ? void 0 : e.getPublisher, f = e == null ? void 0 : e.getModified, b = `${n == null ? void 0 : n.name}, ${f}`;
|
|
43
45
|
return {
|
|
44
46
|
// The ones that come from API
|
|
45
47
|
id: (a == null ? void 0 : a.id) || (e == null ? void 0 : e.getId),
|
|
46
48
|
name: (e == null ? void 0 : e.getTitle) || a.id,
|
|
47
49
|
description: (e == null ? void 0 : e.getDescription) || "",
|
|
48
|
-
manufacturer:
|
|
50
|
+
manufacturer: b
|
|
49
51
|
};
|
|
50
52
|
}));
|
|
51
|
-
function
|
|
53
|
+
function B(a) {
|
|
52
54
|
return s.value.findIndex((t) => t.id === a);
|
|
53
55
|
}
|
|
54
|
-
function
|
|
55
|
-
const t =
|
|
56
|
+
function I(a) {
|
|
57
|
+
const t = B(a);
|
|
56
58
|
t !== -1 && s.value.splice(t, 1);
|
|
57
59
|
}
|
|
58
|
-
function
|
|
60
|
+
function A(a) {
|
|
59
61
|
s.value.push(a);
|
|
60
62
|
}
|
|
61
|
-
const
|
|
62
|
-
return (a, t) => (r(), l(
|
|
63
|
+
const C = E(y, "edit"), { count: p, ensureHasOneResource: H } = Y(y.stepGroup || "", C), M = d(() => s.value.length > 0 ? "Weiter" : "Weiter ohne Datensätze"), N = d(() => "primary");
|
|
64
|
+
return (a, t) => (r(), l(X, {
|
|
63
65
|
title: "Geben Sie Informationen zu verwendeten Datensätzen an",
|
|
64
66
|
subtitle: "Geben Sie an, welche Datensätze Sie für diesen Prozessschritt verwendet haben. Sie können entweder einen bestehenden Datensatz auswählen oder einen Datensatz neu anlegen. Wenn Sie einen Datensatz neu anlegen, haben Sie die Möglichkeit die Sichtbarkeit des Datensatzes einzuschränken.",
|
|
65
67
|
"remove-dialog-title": "Verwendeten Datensatz löschen?",
|
|
@@ -68,12 +70,12 @@ const Q = {
|
|
|
68
70
|
default: i(({ confirm: e }) => [
|
|
69
71
|
o(u(S), {
|
|
70
72
|
modelValue: u(p),
|
|
71
|
-
"onUpdate:modelValue": t[0] || (t[0] = (n) =>
|
|
73
|
+
"onUpdate:modelValue": t[0] || (t[0] = (n) => G(p) ? p.value = n : null),
|
|
72
74
|
type: "hidden",
|
|
73
75
|
name: "__resourceCount",
|
|
74
76
|
hidden: "",
|
|
75
77
|
"aria-hidden": "",
|
|
76
|
-
"validation-rules": { ensureHasOneResource: u(
|
|
78
|
+
"validation-rules": { ensureHasOneResource: u(H) },
|
|
77
79
|
validation: "+ensureHasOneResource",
|
|
78
80
|
"validation-visibility": "live",
|
|
79
81
|
"validation-messages": { ensureHasOneResource: "Sie müssen pro Schritt mindestens eine Software, einen Datensatz oder eine Hardware zuordnen, um fortfahren zu können." }
|
|
@@ -86,27 +88,27 @@ const Q = {
|
|
|
86
88
|
hidden: "",
|
|
87
89
|
"aria-hidden": ""
|
|
88
90
|
}, null, 8, ["modelValue"]),
|
|
89
|
-
|
|
90
|
-
(r(!0), v(
|
|
91
|
+
c.value.length ? (r(), v("section", ee, [
|
|
92
|
+
(r(!0), v(O, null, U(c.value, (n, f) => (r(), l(j, {
|
|
91
93
|
key: f,
|
|
92
94
|
spaced: "",
|
|
93
95
|
class: "software-card",
|
|
94
96
|
"no-edit": !0,
|
|
95
|
-
onDelete: (
|
|
97
|
+
onDelete: (b) => e({
|
|
96
98
|
id: n.id || "",
|
|
97
99
|
resourceType: "Datensatz",
|
|
98
100
|
resource: n.name,
|
|
99
|
-
callback:
|
|
101
|
+
callback: I
|
|
100
102
|
})
|
|
101
103
|
}, {
|
|
102
104
|
"standalone-name": i(() => t[3] || (t[3] = [
|
|
103
|
-
|
|
105
|
+
m(" Datensatz ", -1)
|
|
104
106
|
])),
|
|
105
107
|
default: i(() => [
|
|
106
|
-
D("div",
|
|
108
|
+
D("div", te, [
|
|
107
109
|
o(x, { title: "Name" }, {
|
|
108
110
|
default: i(() => [
|
|
109
|
-
|
|
111
|
+
m(_(n.name), 1)
|
|
110
112
|
]),
|
|
111
113
|
_: 2
|
|
112
114
|
}, 1024),
|
|
@@ -115,7 +117,7 @@ const Q = {
|
|
|
115
117
|
title: "Datenbereitsteller, Aktualisiert"
|
|
116
118
|
}, {
|
|
117
119
|
default: i(() => [
|
|
118
|
-
|
|
120
|
+
m(_(n.manufacturer), 1)
|
|
119
121
|
]),
|
|
120
122
|
_: 2
|
|
121
123
|
}, 1024)) : h("", !0),
|
|
@@ -124,7 +126,7 @@ const Q = {
|
|
|
124
126
|
title: "Beschreibung"
|
|
125
127
|
}, {
|
|
126
128
|
default: i(() => [
|
|
127
|
-
|
|
129
|
+
m(_(n.description), 1)
|
|
128
130
|
]),
|
|
129
131
|
_: 2
|
|
130
132
|
}, 1024)) : h("", !0)
|
|
@@ -132,8 +134,8 @@ const Q = {
|
|
|
132
134
|
]),
|
|
133
135
|
_: 2
|
|
134
136
|
}, 1032, ["onDelete"]))), 128))
|
|
135
|
-
])) : (r(), v("section",
|
|
136
|
-
o(
|
|
137
|
+
])) : (r(), v("section", Z, [
|
|
138
|
+
o(q, {
|
|
137
139
|
small: "",
|
|
138
140
|
class: "empty-card"
|
|
139
141
|
}, {
|
|
@@ -144,18 +146,18 @@ const Q = {
|
|
|
144
146
|
__: [2]
|
|
145
147
|
})
|
|
146
148
|
])),
|
|
147
|
-
o(
|
|
149
|
+
o(Q, {
|
|
148
150
|
exclude: s.value.map((n) => n.id),
|
|
149
|
-
onSubmit:
|
|
151
|
+
onSubmit: A
|
|
150
152
|
}, null, 8, ["exclude"]),
|
|
151
|
-
D("section",
|
|
152
|
-
o(
|
|
153
|
+
D("section", ne, [
|
|
154
|
+
o(K, {
|
|
153
155
|
class: "software-step-actions",
|
|
154
|
-
"next-text":
|
|
155
|
-
"next-variant":
|
|
156
|
+
"next-text": M.value,
|
|
157
|
+
"next-variant": N.value,
|
|
156
158
|
"show-detailed-error-summary": ""
|
|
157
159
|
}, null, 8, ["next-text", "next-variant"]),
|
|
158
|
-
|
|
160
|
+
c.value.length === 0 ? (r(), l(J, {
|
|
159
161
|
key: 0,
|
|
160
162
|
"resource-label": "Datensätze"
|
|
161
163
|
})) : h("", !0)
|
|
@@ -166,5 +168,5 @@ const Q = {
|
|
|
166
168
|
}
|
|
167
169
|
});
|
|
168
170
|
export {
|
|
169
|
-
|
|
171
|
+
he as default
|
|
170
172
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./HardwareForm.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import r from "../../../../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const p = /* @__PURE__ */ r(o, [["__scopeId", "data-v-366b3965"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
p as default
|
|
7
7
|
};
|