@icvdeveloper/common-module 0.0.67 → 0.0.68
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/module.json
CHANGED
|
@@ -72,19 +72,24 @@ const presentersToComposables = (presenters: Presenter[]) => {
|
|
|
72
72
|
</div>
|
|
73
73
|
</template>
|
|
74
74
|
<template #body>
|
|
75
|
-
<div class="
|
|
76
|
-
|
|
77
|
-
<
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
75
|
+
<div class="flex flex-row">
|
|
76
|
+
<!-- left margin element -->
|
|
77
|
+
<span class="text-lg hidden md:block md:flex-initial time-width md:mr-8" />
|
|
78
|
+
|
|
79
|
+
<div class="flex-1 my-3">
|
|
80
|
+
<h3 class="font-bold text-lg">Presenters</h3>
|
|
81
|
+
<div class="flex flex-col space-y-3">
|
|
82
|
+
<div
|
|
83
|
+
v-for="presenter in presentersToComposables(
|
|
84
|
+
presentation.presenters
|
|
85
|
+
)"
|
|
86
|
+
:key="presenter.presenter.id"
|
|
87
|
+
>
|
|
88
|
+
<p class="text-lg pb-0 mb-0">{{ presenter.fullName.value }}</p>
|
|
89
|
+
<p v-if="presenter.titleCompany.value" class="text-sm pt-0 mb-1">
|
|
90
|
+
{{ presenter.titleCompany.value }}
|
|
91
|
+
</p>
|
|
92
|
+
</div>
|
|
88
93
|
</div>
|
|
89
94
|
</div>
|
|
90
95
|
</div>
|