@piveau/dpi 0.2.0-alpha.3 → 0.2.0-alpha.4
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/DPIHome.vue.js +27 -24
- package/dist/data-provider-interface/HappyFlowComponents/HomeTable.vue.js +17 -17
- package/dist/data-provider-interface/HappyFlowComponents/ProjectTable.vue.js +94 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/BasicInfosStep/ProjectStatusStep.vue.js +38 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/LandingProjectStep/LandingProjectStep.vue.js +2 -2
- package/dist/data-provider-interface/HappyFlowComponents/ui/LandingProjectStep/LandingProjectStep.vue2.js +19 -18
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalDataStep/OptionalDataStep.vue.js +2 -2
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalDataStep/OptionalDataStep.vue2.js +27 -27
- package/dist/data-provider-interface/HappyFlowComponents/ui/Projektphasen/PlanenStep.vue.js +64 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/Projektphasen/ProjektPhasenOverviewStep.vue.js +48 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/Projektphasen/UmstezenStep.vue.js +64 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/Projektphasen/WeiterdenkenStep.vue.js +64 -0
- package/dist/data-provider-interface/views/InputPageProject.vue.js +246 -221
- package/dist/stories/components/DemoStepper.vue.js +2 -2
- package/dist/stories/components/DemoStepper.vue2.js +134 -102
- package/dist/stories/components/LinkCard.vue.js +3 -3
- package/dist/stories/components/LinkCard.vue2.js +17 -17
- package/dist/stories/components/PartnerCard.vue.js +2 -2
- package/dist/stories/components/PartnerCard.vue2.js +9 -8
- package/dist/stories/components/ScreenshotCard.vue.js +2 -2
- package/dist/stories/components/ScreenshotCard.vue2.js +6 -7
- package/package.json +1 -1
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { createElementBlock as t, openBlock as i, createElementVNode as e, createVNode as p, Fragment as c, renderList as d, createTextVNode as l, toDisplayString as s } from "vue";
|
|
2
|
+
import u from "../../../components/StepActionsSection.vue.js";
|
|
3
|
+
/* empty css */
|
|
4
|
+
import h from "../../../../_virtual/_plugin-vue_export-helper.js";
|
|
5
|
+
const v = { class: "project-phasen-overview" }, m = { class: "project-phasen-overview-content" }, g = { class: "project-phasen-overview-content" }, j = {
|
|
6
|
+
__name: "ProjektPhasenOverviewStep",
|
|
7
|
+
setup(k) {
|
|
8
|
+
const o = [
|
|
9
|
+
{
|
|
10
|
+
title: "Initiieren",
|
|
11
|
+
description: "Von der Projektidee bis zum Projektplan."
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
title: "Planen",
|
|
15
|
+
description: "Von der Ausschreibung bis zur Vergabe."
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
title: "Umsetzen",
|
|
19
|
+
description: "Von der Dienstleistersteuerung bis zur Meilensteinerreichung."
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
title: "Weiterdenken",
|
|
23
|
+
description: "Von den Learnings bis zur Skalierung der Projektergebnisse."
|
|
24
|
+
}
|
|
25
|
+
];
|
|
26
|
+
return (_, n) => (i(), t("div", v, [
|
|
27
|
+
n[1] || (n[1] = e("div", { class: "project-phasen-overview-header" }, [
|
|
28
|
+
e("h4", null, "Geben Sie die Projektphasen Ihres Projekts an (optional)")
|
|
29
|
+
], -1)),
|
|
30
|
+
e("div", m, [
|
|
31
|
+
n[0] || (n[0] = e("p", { class: "project-phasen-overview-description" }, "Helfen Sie anderen Kommunen Ihr Projekt noch besser zu verstehen, indem Sie Ihre organisatorischen Herausforderungen und Lösungswege beschreiben. Um Sie bei der Dokumentation zu unterstützen, leiten wir Sie anhand von Interviewfragen durch die folgenden vier Phasen:", -1)),
|
|
32
|
+
e("ul", g, [
|
|
33
|
+
(i(), t(c, null, d(o, (r, a) => e("li", {
|
|
34
|
+
key: a,
|
|
35
|
+
class: "project-phasen-phase"
|
|
36
|
+
}, [
|
|
37
|
+
l(s(r.title) + ": ", 1),
|
|
38
|
+
e("span", null, s(r.description), 1)
|
|
39
|
+
])), 64))
|
|
40
|
+
]),
|
|
41
|
+
p(u)
|
|
42
|
+
])
|
|
43
|
+
]));
|
|
44
|
+
}
|
|
45
|
+
}, w = /* @__PURE__ */ h(j, [["__scopeId", "data-v-3bfd4517"]]);
|
|
46
|
+
export {
|
|
47
|
+
w as default
|
|
48
|
+
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { reactive as c, createElementBlock as l, openBlock as o, createElementVNode as r, createVNode as p, Fragment as h, renderList as g, unref as i, createBlock as _ } from "vue";
|
|
2
|
+
import { FormKit as f } from "@formkit/vue";
|
|
3
|
+
import w from "../../../components/StepActionsSection.vue.js";
|
|
4
|
+
import b from "../TextArea/TextAreaDefinition.js";
|
|
5
|
+
/* empty css */
|
|
6
|
+
import z from "../../../../_virtual/_plugin-vue_export-helper.js";
|
|
7
|
+
const v = { class: "project-phasen-umstezen" }, S = { class: "project-phasen-umstezen-content" }, u = 1e3, V = {
|
|
8
|
+
__name: "UmstezenStep",
|
|
9
|
+
setup(k) {
|
|
10
|
+
const n = c({
|
|
11
|
+
questions: {
|
|
12
|
+
project_triggers: {
|
|
13
|
+
question: "Wie haben Sie die Zusammenarbeit mit den Dienstleistern organisiert und wie wurden relevante Stakeholder in Entscheidungsprozesse eingebunden (z.B. Meetingstruktur oder Frameworks)?",
|
|
14
|
+
answer: ""
|
|
15
|
+
},
|
|
16
|
+
involved_stakeholders: {
|
|
17
|
+
question: "Gab es Verzögerungen und wenn ja, was waren die Gründe?",
|
|
18
|
+
answer: ""
|
|
19
|
+
},
|
|
20
|
+
data_collection_method: {
|
|
21
|
+
question: "Welche Schnittstellen wurden genutzt und traten technische Herausforderungen auf?",
|
|
22
|
+
answer: ""
|
|
23
|
+
},
|
|
24
|
+
budget_planning: {
|
|
25
|
+
question: "Welche Überlegungen sind in Ihre Entscheidung für eine Open-Source-Lösung geflossen und welche Erfahrungen haben Sie bisher damit gemacht?",
|
|
26
|
+
answer: ""
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}), m = Object.keys(n.questions).map((s) => ({
|
|
30
|
+
name: s,
|
|
31
|
+
text: n.questions[s].question
|
|
32
|
+
}));
|
|
33
|
+
function d(s, t) {
|
|
34
|
+
n.questions[s].answer = t.slice(0, u);
|
|
35
|
+
}
|
|
36
|
+
return (s, t) => (o(), l("div", v, [
|
|
37
|
+
t[1] || (t[1] = r("div", { class: "project-phasen-umstezen-header" }, [
|
|
38
|
+
r("h4", null, "Umstezen")
|
|
39
|
+
], -1)),
|
|
40
|
+
r("div", S, [
|
|
41
|
+
t[0] || (t[0] = r("p", { class: "project-phasen-umstezen-description" }, " Von der Dienstleistersteuerung bis zur Meilensteinerreichung. ", -1)),
|
|
42
|
+
(o(!0), l(h, null, g(i(m), (e) => (o(), _(i(f), {
|
|
43
|
+
key: e.name,
|
|
44
|
+
id: e.name,
|
|
45
|
+
modelValue: n.questions[e.name].answer,
|
|
46
|
+
"onUpdate:modelValue": (a) => n.questions[e.name].answer = a,
|
|
47
|
+
label: e.text,
|
|
48
|
+
type: i(b),
|
|
49
|
+
name: e.name,
|
|
50
|
+
validation: "length:0,1000",
|
|
51
|
+
hint: "true",
|
|
52
|
+
help: `${n.questions[e.name].answer.length || 0} von ${u} Zeichen`,
|
|
53
|
+
"count-hint": !0,
|
|
54
|
+
onInput: (a) => d(e.name, a),
|
|
55
|
+
maxlength: u
|
|
56
|
+
}, null, 8, ["id", "modelValue", "onUpdate:modelValue", "label", "type", "name", "help", "onInput"]))), 128)),
|
|
57
|
+
p(w)
|
|
58
|
+
])
|
|
59
|
+
]));
|
|
60
|
+
}
|
|
61
|
+
}, B = /* @__PURE__ */ z(V, [["__scopeId", "data-v-b35066b7"]]);
|
|
62
|
+
export {
|
|
63
|
+
B as default
|
|
64
|
+
};
|
package/dist/data-provider-interface/HappyFlowComponents/ui/Projektphasen/WeiterdenkenStep.vue.js
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { reactive as c, createElementBlock as l, openBlock as a, createElementVNode as s, createVNode as p, Fragment as h, renderList as g, unref as o, createBlock as k } from "vue";
|
|
2
|
+
import { FormKit as w } from "@formkit/vue";
|
|
3
|
+
import f from "../../../components/StepActionsSection.vue.js";
|
|
4
|
+
import _ from "../TextArea/TextAreaDefinition.js";
|
|
5
|
+
/* empty css */
|
|
6
|
+
import b from "../../../../_virtual/_plugin-vue_export-helper.js";
|
|
7
|
+
const j = { class: "project-phasen-weiterdenken" }, v = { class: "project-phasen-weiterdenken-content" }, d = 1e3, z = {
|
|
8
|
+
__name: "WeiterdenkenStep",
|
|
9
|
+
setup(S) {
|
|
10
|
+
const n = c({
|
|
11
|
+
questions: {
|
|
12
|
+
project_triggers: {
|
|
13
|
+
question: "Was sind Ihre wichtigsten Learnings aus dem Projekt? Was würden Sie beim nächsten Use Case anders machen?",
|
|
14
|
+
answer: ""
|
|
15
|
+
},
|
|
16
|
+
involved_stakeholders: {
|
|
17
|
+
question: "Wird die Wirksamkeit Ihres Projekts überwacht und wenn ja, wie? Ist der erwartete Nutzen eingetreten (z.B. ökologisch, sozial oder monetär)?",
|
|
18
|
+
answer: ""
|
|
19
|
+
},
|
|
20
|
+
data_collection_method: {
|
|
21
|
+
question: "Gibt es Pläne für eine Skalierung oder Weiterentwicklung? Wenn ja, wie sichern Sie die Finanzierung dafür?",
|
|
22
|
+
answer: ""
|
|
23
|
+
},
|
|
24
|
+
budget_planning: {
|
|
25
|
+
question: "Besonders wichtig für uns waren Förderprogramme, wie das Landesprogramm zur Digitalisierung im Bevölkerungsschutz. Dadurch konnten wir einen Großteil der Kosten für Software, Sensorik und externe Beratung abdecken. Gefehlt haben uns regelmäßige, themenspezifische Austauschformate oder Workshops mit anderen Kommunen, um voneinander zu lernen und Synergien besser nutzen zu können.",
|
|
26
|
+
answer: ""
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}), u = Object.keys(n.questions).map((r) => ({
|
|
30
|
+
name: r,
|
|
31
|
+
text: n.questions[r].question
|
|
32
|
+
}));
|
|
33
|
+
function m(r, t) {
|
|
34
|
+
n.questions[r].answer = t.slice(0, d);
|
|
35
|
+
}
|
|
36
|
+
return (r, t) => (a(), l("div", j, [
|
|
37
|
+
t[1] || (t[1] = s("div", { class: "project-phasen-weiterdenken-header" }, [
|
|
38
|
+
s("h4", null, "Weiterdenken")
|
|
39
|
+
], -1)),
|
|
40
|
+
s("div", v, [
|
|
41
|
+
t[0] || (t[0] = s("p", { class: "project-phasen-weiterdenken-description" }, " Von den Learnings bis zur Skalierung der Projektergebnisse. ", -1)),
|
|
42
|
+
(a(!0), l(h, null, g(o(u), (e) => (a(), k(o(w), {
|
|
43
|
+
key: e.name,
|
|
44
|
+
id: e.name,
|
|
45
|
+
modelValue: n.questions[e.name].answer,
|
|
46
|
+
"onUpdate:modelValue": (i) => n.questions[e.name].answer = i,
|
|
47
|
+
label: e.text,
|
|
48
|
+
type: o(_),
|
|
49
|
+
name: e.name,
|
|
50
|
+
validation: "length:0,1000",
|
|
51
|
+
hint: "true",
|
|
52
|
+
help: `${n.questions[e.name].answer.length || 0} von ${d} Zeichen`,
|
|
53
|
+
"count-hint": !0,
|
|
54
|
+
onInput: (i) => m(e.name, i),
|
|
55
|
+
maxlength: d
|
|
56
|
+
}, null, 8, ["id", "modelValue", "onUpdate:modelValue", "label", "type", "name", "help", "onInput"]))), 128)),
|
|
57
|
+
p(f)
|
|
58
|
+
])
|
|
59
|
+
]));
|
|
60
|
+
}
|
|
61
|
+
}, y = /* @__PURE__ */ b(z, [["__scopeId", "data-v-407407f4"]]);
|
|
62
|
+
export {
|
|
63
|
+
y as default
|
|
64
|
+
};
|