@piveau/dpi 0.1.0-twinby.0 → 0.2.0-alpha.0
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/ui/BasicInfosStep/ProjectDescriptionStep.vue.js +70 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/BasicInfosStep/ProjectNameStep.vue.js +44 -15
- package/dist/data-provider-interface/HappyFlowComponents/ui/BasicInfosStep/ProjectOrganisationStep.vue.js +2 -2
- package/dist/data-provider-interface/HappyFlowComponents/ui/BasicInfosStep/ProjectOrganisationStep.vue2.js +30 -28
- package/dist/data-provider-interface/HappyFlowComponents/ui/Card.vue.js +7 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/Card.vue2.js +36 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/TextArea/TextAreaDefinition.js +20 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/TextArea/TextAreaFormKit.vue.js +78 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/TextArea/TextAreaFormKit.vue2.js +4 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/TextAreaV3.vue.js +74 -55
- package/dist/data-provider-interface/components/HappyFlowLandingPage.vue.js +50 -43
- package/dist/data-provider-interface/components/InputPageStep.vue.js +3 -3
- package/dist/data-provider-interface/components/StepActionsSection.vue.js +7 -0
- package/dist/data-provider-interface/components/StepActionsSection.vue2.js +54 -0
- package/dist/data-provider-interface/composables/useDpiStepper.js +78 -68
- package/dist/data-provider-interface/utils/injectionKeys.js +0 -1
- package/dist/data-provider-interface/views/InputPageProject.vue.js +230 -218
- package/dist/stories/components/DemoStep.vue.js +36 -32
- package/dist/stories/components/DemoStepper.vue.js +1 -1
- package/dist/stories/components/DemoStepper.vue2.js +61 -54
- package/package.json +3 -1
|
@@ -1,27 +1,28 @@
|
|
|
1
1
|
import { ref as p, watch as $, createElementBlock as r, openBlock as i, createElementVNode as l, createVNode as n, unref as a, withCtx as m, Fragment as g, renderList as _, createBlock as U, createCommentVNode as F, withDirectives as w, vModelCheckbox as D, vShow as L } from "vue";
|
|
2
2
|
import { FormKit as o } from "@formkit/vue";
|
|
3
|
+
import T from "../../data-provider-interface/components/StepActionsSection.vue.js";
|
|
3
4
|
import V from "../../data-provider-interface/HappyFlowComponents/ui/Autocomplete/AutocompleteInputDefinition.js";
|
|
4
5
|
import h from "../../data-provider-interface/HappyFlowComponents/ui/ButtonV3.vue.js";
|
|
5
6
|
import E from "../../data-provider-interface/HappyFlowComponents/ui/Chip.vue.js";
|
|
6
|
-
import
|
|
7
|
-
import
|
|
7
|
+
import H from "../../data-provider-interface/HappyFlowComponents/ui/DpiModalBase.vue.js";
|
|
8
|
+
import M from "../../data-provider-interface/HappyFlowComponents/ui/InputField.vue.js";
|
|
8
9
|
import I from "../../data-provider-interface/HappyFlowComponents/ui/InputField/InputFieldDefinition.js";
|
|
9
|
-
import
|
|
10
|
+
import j from "../../data-provider-interface/HappyFlowComponents/ui/ListBox/Listbox.vue.js";
|
|
10
11
|
import P from "./PartnerCard.vue.js";
|
|
11
12
|
/* empty css */
|
|
12
|
-
import
|
|
13
|
-
const N = { class: "dpiV3_page V3-typography" },
|
|
13
|
+
import A from "../../_virtual/_plugin-vue_export-helper.js";
|
|
14
|
+
const N = { class: "dpiV3_page V3-typography" }, R = {
|
|
14
15
|
id: "partners-section",
|
|
15
16
|
class: "funny-section"
|
|
16
|
-
},
|
|
17
|
+
}, K = { class: "partner-cards-container" }, W = { class: "action-container" }, q = { class: "funny-section" }, G = { class: "start-and-end" }, J = { class: "funny-section" }, Q = {
|
|
17
18
|
key: 0,
|
|
18
19
|
class: "d-flex"
|
|
19
|
-
},
|
|
20
|
+
}, X = ["id", "value"], Y = ["for"], Z = { class: "funny-section" }, ee = {
|
|
20
21
|
key: 0,
|
|
21
22
|
class: "d-flex"
|
|
22
|
-
},
|
|
23
|
+
}, te = ["id", "value"], le = ["for"], ne = { class: "funny-section" }, ae = { class: "autocomplete-inputs-demo" }, oe = { class: "partner-cards-container" }, ie = { class: "action-container" }, se = { class: "funny-section" }, re = {
|
|
23
24
|
__name: "DemoStep",
|
|
24
|
-
setup(
|
|
25
|
+
setup(ue) {
|
|
25
26
|
const b = p([{}]), z = p([
|
|
26
27
|
{ id: "option-1", name: "Option 1" },
|
|
27
28
|
{ id: "option-2", name: "Option 2" },
|
|
@@ -43,10 +44,10 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
43
44
|
l("h4", null, " Fügen Sie optionale Daten hinzu "),
|
|
44
45
|
l("span", { class: "copy-large-regular" }, "Für viele Projekte sind weitere Informationen vorhanden und für lesende Personen hilfreich. Fügen Sie hier bei Bedarf weitere Informationen hinzu.")
|
|
45
46
|
], -1)),
|
|
46
|
-
l("section",
|
|
47
|
+
l("section", R, [
|
|
47
48
|
e[11] || (e[11] = l("h5", null, " Partner ", -1)),
|
|
48
49
|
e[12] || (e[12] = l("span", { class: "copy-large-regular" }, "Wenn Sie mit einem oder mehreren Partnern zusammengearbeitet haben, können Sie diese hier angeben.", -1)),
|
|
49
|
-
l("div",
|
|
50
|
+
l("div", K, [
|
|
50
51
|
n(a(o), {
|
|
51
52
|
modelValue: b.value,
|
|
52
53
|
"onUpdate:modelValue": e[0] || (e[0] = (t) => b.value = t),
|
|
@@ -75,7 +76,7 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
75
76
|
]),
|
|
76
77
|
_: 2
|
|
77
78
|
}, 1032, ["index"]))), 128)),
|
|
78
|
-
l("div",
|
|
79
|
+
l("div", W, [
|
|
79
80
|
n(h, {
|
|
80
81
|
"button-text": "Partner hinzufügen",
|
|
81
82
|
size: "small",
|
|
@@ -89,10 +90,10 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
89
90
|
}, 8, ["modelValue"])
|
|
90
91
|
])
|
|
91
92
|
]),
|
|
92
|
-
l("section",
|
|
93
|
+
l("section", q, [
|
|
93
94
|
e[13] || (e[13] = l("h5", null, " Projektzeitraum ", -1)),
|
|
94
95
|
e[14] || (e[14] = l("span", { class: "copy-large-regular" }, "Für Projekte, die noch nicht abgeschlossen sind, können Sie das Enddatum frei lassen.", -1)),
|
|
95
|
-
l("div",
|
|
96
|
+
l("div", G, [
|
|
96
97
|
n(a(o), {
|
|
97
98
|
type: a(I),
|
|
98
99
|
name: "startDate",
|
|
@@ -121,7 +122,7 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
121
122
|
}, null, 8, ["type"])
|
|
122
123
|
])
|
|
123
124
|
]),
|
|
124
|
-
l("section",
|
|
125
|
+
l("section", J, [
|
|
125
126
|
e[15] || (e[15] = l("h5", null, "Lorem Ipsum", -1)),
|
|
126
127
|
e[16] || (e[16] = l("div", null, "Funktionalitäten auswählen ", -1)),
|
|
127
128
|
n(a(o), {
|
|
@@ -130,7 +131,7 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
130
131
|
type: "hidden",
|
|
131
132
|
name: "demoSelectChecked"
|
|
132
133
|
}, null, 8, ["modelValue"]),
|
|
133
|
-
x.value ? (i(), r("div",
|
|
134
|
+
x.value ? (i(), r("div", Q, [
|
|
134
135
|
(i(!0), r(g, null, _(z.value, (t) => (i(), r("div", {
|
|
135
136
|
key: t.id,
|
|
136
137
|
class: "label-chip"
|
|
@@ -141,7 +142,7 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
141
142
|
class: "label-chip__input",
|
|
142
143
|
type: "checkbox",
|
|
143
144
|
value: t.id
|
|
144
|
-
}, null, 8,
|
|
145
|
+
}, null, 8, X), [
|
|
145
146
|
[D, c.value]
|
|
146
147
|
]),
|
|
147
148
|
w(l("label", {
|
|
@@ -160,12 +161,12 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
160
161
|
"@inTable": !1
|
|
161
162
|
}
|
|
162
163
|
}, null, 8, ["text", "data"])
|
|
163
|
-
], 8,
|
|
164
|
+
], 8, Y), [
|
|
164
165
|
[L, c.value.includes(t.id)]
|
|
165
166
|
])
|
|
166
167
|
]))), 128))
|
|
167
168
|
])) : F("", !0),
|
|
168
|
-
n(
|
|
169
|
+
n(j, {
|
|
169
170
|
modelValue: x.value,
|
|
170
171
|
"onUpdate:modelValue": e[3] || (e[3] = (t) => x.value = t),
|
|
171
172
|
options: z.value,
|
|
@@ -173,7 +174,7 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
173
174
|
name: "demo-select"
|
|
174
175
|
}, null, 8, ["modelValue", "options"])
|
|
175
176
|
]),
|
|
176
|
-
l("section",
|
|
177
|
+
l("section", Z, [
|
|
177
178
|
e[17] || (e[17] = l("h5", null, "Hardware", -1)),
|
|
178
179
|
e[18] || (e[18] = l("div", null, "Funktionalitäten nennen", -1)),
|
|
179
180
|
n(a(o), {
|
|
@@ -182,7 +183,7 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
182
183
|
type: "hidden",
|
|
183
184
|
name: "hardwareChecked"
|
|
184
185
|
}, null, 8, ["modelValue"]),
|
|
185
|
-
u.value.length > 0 ? (i(), r("div",
|
|
186
|
+
u.value.length > 0 ? (i(), r("div", ee, [
|
|
186
187
|
(i(!0), r(g, null, _(u.value, (t) => (i(), r("div", {
|
|
187
188
|
key: t,
|
|
188
189
|
class: "label-chip"
|
|
@@ -193,7 +194,7 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
193
194
|
class: "label-chip__input",
|
|
194
195
|
type: "checkbox",
|
|
195
196
|
value: t
|
|
196
|
-
}, null, 8,
|
|
197
|
+
}, null, 8, te), [
|
|
197
198
|
[D, u.value]
|
|
198
199
|
]),
|
|
199
200
|
l("label", {
|
|
@@ -213,10 +214,10 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
213
214
|
"@inTable": !1
|
|
214
215
|
}
|
|
215
216
|
}, null, 8, ["text", "data"])
|
|
216
|
-
], 8,
|
|
217
|
+
], 8, le)
|
|
217
218
|
]))), 128))
|
|
218
219
|
])) : F("", !0),
|
|
219
|
-
n(
|
|
220
|
+
n(M, {
|
|
220
221
|
modelValue: k.value,
|
|
221
222
|
"onUpdate:modelValue": e[6] || (e[6] = (t) => k.value = t),
|
|
222
223
|
label: "Hardware",
|
|
@@ -237,9 +238,9 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
237
238
|
onClick: e[7] || (e[7] = (t) => B(k.value))
|
|
238
239
|
})
|
|
239
240
|
]),
|
|
240
|
-
l("section",
|
|
241
|
+
l("section", ne, [
|
|
241
242
|
e[19] || (e[19] = l("h5", null, "Autocomplete Demo", -1)),
|
|
242
|
-
l("div",
|
|
243
|
+
l("div", ae, [
|
|
243
244
|
n(a(o), {
|
|
244
245
|
type: a(V),
|
|
245
246
|
name: "category",
|
|
@@ -273,12 +274,12 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
273
274
|
l("button", {
|
|
274
275
|
onClick: e[8] || (e[8] = (t) => C.value = !0)
|
|
275
276
|
}, " Open Modal "),
|
|
276
|
-
n(
|
|
277
|
+
n(H, {
|
|
277
278
|
modelValue: C.value,
|
|
278
279
|
"onUpdate:modelValue": e[10] || (e[10] = (t) => C.value = t)
|
|
279
280
|
}, {
|
|
280
281
|
default: m(() => [
|
|
281
|
-
l("div",
|
|
282
|
+
l("div", oe, [
|
|
282
283
|
n(a(o), {
|
|
283
284
|
modelValue: b.value,
|
|
284
285
|
"onUpdate:modelValue": e[9] || (e[9] = (t) => b.value = t),
|
|
@@ -307,7 +308,7 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
307
308
|
]),
|
|
308
309
|
_: 2
|
|
309
310
|
}, 1032, ["index"]))), 128)),
|
|
310
|
-
l("div",
|
|
311
|
+
l("div", ie, [
|
|
311
312
|
n(h, {
|
|
312
313
|
"button-text": "Partner hinzufügen",
|
|
313
314
|
size: "small",
|
|
@@ -322,10 +323,13 @@ const N = { class: "dpiV3_page V3-typography" }, A = {
|
|
|
322
323
|
])
|
|
323
324
|
]),
|
|
324
325
|
_: 1
|
|
325
|
-
}, 8, ["modelValue"])
|
|
326
|
+
}, 8, ["modelValue"]),
|
|
327
|
+
l("section", se, [
|
|
328
|
+
n(T, { class: "dev-actions" })
|
|
329
|
+
])
|
|
326
330
|
]));
|
|
327
331
|
}
|
|
328
|
-
},
|
|
332
|
+
}, Ve = /* @__PURE__ */ A(re, [["__scopeId", "data-v-4d6b6939"]]);
|
|
329
333
|
export {
|
|
330
|
-
|
|
334
|
+
Ve as default
|
|
331
335
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./DemoStepper.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import t from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-
|
|
4
|
+
const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-0c28ca05"]]);
|
|
5
5
|
export {
|
|
6
6
|
m as default
|
|
7
7
|
};
|
|
@@ -1,97 +1,104 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { FormKit as
|
|
1
|
+
import { defineComponent as F, ref as f, toRef as O, computed as b, watch as T, createElementBlock as E, openBlock as y, createElementVNode as s, createVNode as e, toDisplayString as U, unref as r, isRef as k, withCtx as i, createBlock as q, createCommentVNode as J, nextTick as K } from "vue";
|
|
2
|
+
import { FormKit as p } from "@formkit/vue";
|
|
3
3
|
import l from "../../data-provider-interface/components/InputPageStep.vue.js";
|
|
4
4
|
import L from "../../data-provider-interface/components/ProgressSteps.vue.js";
|
|
5
5
|
import { useDpiStepper as $ } from "../../data-provider-interface/composables/useDpiStepper.js";
|
|
6
|
-
import A from "../../data-provider-interface/HappyFlowComponents/ui/BasicInfosStep/
|
|
7
|
-
import H from "../../data-provider-interface/HappyFlowComponents/ui/BasicInfosStep/
|
|
6
|
+
import A from "../../data-provider-interface/HappyFlowComponents/ui/BasicInfosStep/ProjectDescriptionStep.vue.js";
|
|
7
|
+
import H from "../../data-provider-interface/HappyFlowComponents/ui/BasicInfosStep/ProjectNameStep.vue.js";
|
|
8
|
+
import I from "../../data-provider-interface/HappyFlowComponents/ui/BasicInfosStep/ProjectOrganisationStep.vue.js";
|
|
8
9
|
import V from "../../data-provider-interface/HappyFlowComponents/ui/ButtonV3.vue.js";
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
const
|
|
10
|
+
import M from "./DemoStep.vue.js";
|
|
11
|
+
import z from "./ReviewStepDemo.vue.js";
|
|
12
|
+
const G = { class: "demo-stepper" }, Q = { style: { "margin-bottom": "1rem", padding: "1rem", background: "#f5f5f5", "border-radius": "8px" } }, W = { class: "dev-actions" }, se = /* @__PURE__ */ F({
|
|
12
13
|
__name: "DemoStepper",
|
|
13
|
-
setup(
|
|
14
|
+
setup(X) {
|
|
14
15
|
const a = f({}), {
|
|
15
|
-
steps:
|
|
16
|
+
steps: _,
|
|
16
17
|
stepList: c,
|
|
17
|
-
visitedSteps:
|
|
18
|
-
stepPlugin:
|
|
18
|
+
visitedSteps: d,
|
|
19
|
+
stepPlugin: x,
|
|
19
20
|
goToNextStep: h,
|
|
20
21
|
goToPreviousStep: w,
|
|
21
22
|
current: u,
|
|
22
23
|
isLast: C,
|
|
23
24
|
triggerValidationCurrentStep: N
|
|
24
|
-
} = $(), D =
|
|
25
|
+
} = $(), D = O(_);
|
|
25
26
|
function P(n) {
|
|
26
27
|
var o;
|
|
27
|
-
const
|
|
28
|
-
return
|
|
28
|
+
const t = (o = D.value) == null ? void 0 : o[n];
|
|
29
|
+
return t ? t.valid : !1;
|
|
29
30
|
}
|
|
30
31
|
const v = b(() => {
|
|
31
32
|
const n = {};
|
|
32
|
-
return c.value.forEach((
|
|
33
|
-
const
|
|
34
|
-
n[
|
|
33
|
+
return c.value.forEach((t) => {
|
|
34
|
+
const m = t.split("/")[0];
|
|
35
|
+
n[m] || (n[m] = []), n[m].push(t);
|
|
35
36
|
}), n;
|
|
36
37
|
});
|
|
37
38
|
function R(n) {
|
|
38
|
-
const
|
|
39
|
-
return
|
|
39
|
+
const t = v.value[n] || [];
|
|
40
|
+
return t.length > 0 && t.every((o) => d.value.includes(o));
|
|
40
41
|
}
|
|
41
42
|
b(() => Object.keys(v.value).filter((n) => R(n)));
|
|
42
|
-
function
|
|
43
|
+
function j() {
|
|
43
44
|
P(u.value) && h();
|
|
44
45
|
}
|
|
45
|
-
async function
|
|
46
|
-
N(), await K(), C.value ? (console.log("Form submitted", a.value), window.alert(`Form submitted: ${JSON.stringify(a.value)}`)) :
|
|
46
|
+
async function B() {
|
|
47
|
+
N(), await K(), C.value ? (console.log("Form submitted", a.value), window.alert(`Form submitted: ${JSON.stringify(a.value)}`)) : j();
|
|
47
48
|
}
|
|
48
49
|
const g = f(!1), S = f(0);
|
|
49
|
-
return
|
|
50
|
+
return T(u, (n) => {
|
|
50
51
|
n === "review" && (g.value = !0, S.value++);
|
|
51
|
-
}), (n,
|
|
52
|
-
s("div",
|
|
53
|
-
|
|
52
|
+
}), (n, t) => (y(), E("div", G, [
|
|
53
|
+
s("div", Q, [
|
|
54
|
+
t[3] || (t[3] = s("strong", null, "Form Values:", -1)),
|
|
54
55
|
s("pre", null, U(JSON.stringify(a.value, null, 2)), 1)
|
|
55
56
|
]),
|
|
56
|
-
|
|
57
|
-
checked: r(
|
|
58
|
-
"onUpdate:checked":
|
|
57
|
+
e(L, {
|
|
58
|
+
checked: r(d),
|
|
59
|
+
"onUpdate:checked": t[0] || (t[0] = (o) => k(d) ? d.value = o : null),
|
|
59
60
|
current: r(u),
|
|
60
|
-
"onUpdate:current":
|
|
61
|
+
"onUpdate:current": t[1] || (t[1] = (o) => k(u) ? u.value = o : null),
|
|
61
62
|
steps: r(c) || []
|
|
62
63
|
}, null, 8, ["checked", "current", "steps"]),
|
|
63
|
-
|
|
64
|
+
e(r(p), {
|
|
64
65
|
id: "demo-stepper",
|
|
65
66
|
modelValue: a.value,
|
|
66
|
-
"onUpdate:modelValue":
|
|
67
|
+
"onUpdate:modelValue": t[2] || (t[2] = (o) => a.value = o),
|
|
67
68
|
type: "form",
|
|
68
|
-
plugins: [r(
|
|
69
|
+
plugins: [r(x)],
|
|
69
70
|
actions: !1,
|
|
70
71
|
onSubmit: () => {
|
|
71
72
|
}
|
|
72
73
|
}, {
|
|
73
74
|
default: i(() => [
|
|
74
|
-
|
|
75
|
+
e(l, { name: "auffindbarkeit" }, {
|
|
76
|
+
default: i(() => [
|
|
77
|
+
e(M)
|
|
78
|
+
]),
|
|
79
|
+
_: 1
|
|
80
|
+
}),
|
|
81
|
+
e(l, { name: "grundlegende-informationen/name" }, {
|
|
75
82
|
default: i(() => [
|
|
76
|
-
|
|
83
|
+
e(H)
|
|
77
84
|
]),
|
|
78
85
|
_: 1
|
|
79
86
|
}),
|
|
80
|
-
|
|
87
|
+
e(l, { name: "grundlegende-informationen/description" }, {
|
|
81
88
|
default: i(() => [
|
|
82
|
-
|
|
89
|
+
e(A)
|
|
83
90
|
]),
|
|
84
91
|
_: 1
|
|
85
92
|
}),
|
|
86
|
-
|
|
93
|
+
e(l, { name: "grundlegende-informationen/organisation" }, {
|
|
87
94
|
default: i(() => [
|
|
88
|
-
|
|
95
|
+
e(I)
|
|
89
96
|
]),
|
|
90
97
|
_: 1
|
|
91
98
|
}),
|
|
92
|
-
|
|
99
|
+
e(l, { name: "grundlegende-informationen/discoverability" }, {
|
|
93
100
|
default: i(() => [
|
|
94
|
-
|
|
101
|
+
e(r(p), {
|
|
95
102
|
type: "text",
|
|
96
103
|
label: "Name",
|
|
97
104
|
name: "name",
|
|
@@ -100,15 +107,15 @@ const z = { class: "demo-stepper" }, G = { style: { "margin-bottom": "1rem", pad
|
|
|
100
107
|
]),
|
|
101
108
|
_: 1
|
|
102
109
|
}),
|
|
103
|
-
|
|
110
|
+
e(l, { name: "grundlegende-informationen/essentials" }, {
|
|
104
111
|
default: i(() => [
|
|
105
|
-
|
|
112
|
+
e(r(p), {
|
|
106
113
|
type: "text",
|
|
107
114
|
label: "Mail",
|
|
108
115
|
name: "mail",
|
|
109
116
|
validation: "required|email"
|
|
110
117
|
}),
|
|
111
|
-
|
|
118
|
+
e(r(p), {
|
|
112
119
|
type: "text",
|
|
113
120
|
label: "Homepage",
|
|
114
121
|
name: "homepage",
|
|
@@ -117,9 +124,9 @@ const z = { class: "demo-stepper" }, G = { style: { "margin-bottom": "1rem", pad
|
|
|
117
124
|
]),
|
|
118
125
|
_: 1
|
|
119
126
|
}),
|
|
120
|
-
|
|
127
|
+
e(l, { name: "optinale-daten" }, {
|
|
121
128
|
default: i(() => [
|
|
122
|
-
|
|
129
|
+
e(r(p), {
|
|
123
130
|
type: "textarea",
|
|
124
131
|
label: "Description",
|
|
125
132
|
name: "description"
|
|
@@ -127,9 +134,9 @@ const z = { class: "demo-stepper" }, G = { style: { "margin-bottom": "1rem", pad
|
|
|
127
134
|
]),
|
|
128
135
|
_: 1
|
|
129
136
|
}),
|
|
130
|
-
|
|
137
|
+
e(l, { name: "review" }, {
|
|
131
138
|
default: i(() => [
|
|
132
|
-
g.value ? (y(), q(
|
|
139
|
+
g.value ? (y(), q(z, {
|
|
133
140
|
key: S.value,
|
|
134
141
|
values: a.value
|
|
135
142
|
}, null, 8, ["values"])) : J("", !0)
|
|
@@ -139,22 +146,22 @@ const z = { class: "demo-stepper" }, G = { style: { "margin-bottom": "1rem", pad
|
|
|
139
146
|
]),
|
|
140
147
|
_: 1
|
|
141
148
|
}, 8, ["modelValue", "plugins"]),
|
|
142
|
-
|
|
143
|
-
s("div",
|
|
144
|
-
|
|
149
|
+
t[4] || (t[4] = s("hr", null, null, -1)),
|
|
150
|
+
s("div", W, [
|
|
151
|
+
e(V, {
|
|
145
152
|
type: "button",
|
|
146
153
|
"button-text": "Previous",
|
|
147
154
|
onClick: r(w)
|
|
148
155
|
}, null, 8, ["onClick"]),
|
|
149
|
-
|
|
156
|
+
e(V, {
|
|
150
157
|
type: "button",
|
|
151
158
|
"button-text": "Next",
|
|
152
|
-
onClick:
|
|
159
|
+
onClick: B
|
|
153
160
|
})
|
|
154
161
|
])
|
|
155
162
|
]));
|
|
156
163
|
}
|
|
157
164
|
});
|
|
158
165
|
export {
|
|
159
|
-
|
|
166
|
+
se as default
|
|
160
167
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@piveau/dpi",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.2.0-alpha.0",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"*.css"
|
|
@@ -41,6 +41,8 @@
|
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@antfu/eslint-config": "^4.19.0",
|
|
44
|
+
"@fontsource-variable/inter": "^5.2.6",
|
|
45
|
+
"@fontsource/inter": "^5.2.6",
|
|
44
46
|
"@formkit/core": "^1.6.9",
|
|
45
47
|
"@formkit/themes": "^1.6.9",
|
|
46
48
|
"@formkit/utils": "^1.6.9",
|