@icvdeveloper/common-module 0.0.66 → 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
|
@@ -35,14 +35,14 @@ const presentersToComposables = (presenters: Presenter[]) => {
|
|
|
35
35
|
</script>
|
|
36
36
|
|
|
37
37
|
<template>
|
|
38
|
-
<div class="flex flex-col space-y-5 text-neutral-
|
|
38
|
+
<div class="flex flex-col space-y-5 text-neutral-700">
|
|
39
39
|
<template v-for="day in days">
|
|
40
40
|
<template v-for="track in getCombinedTrackList(day)">
|
|
41
41
|
<div v-for="presentation in track.presentations" :key="presentation.id">
|
|
42
42
|
<AgendaAccordion>
|
|
43
43
|
<template #header="isExpanded">
|
|
44
44
|
<div class="text-left text-xl flex-col md:flex-row flex">
|
|
45
|
-
<span>
|
|
45
|
+
<span class="time-width">
|
|
46
46
|
{{
|
|
47
47
|
formatTimezoneToLocal(
|
|
48
48
|
presentation.date,
|
|
@@ -63,7 +63,7 @@ const presentersToComposables = (presenters: Presenter[]) => {
|
|
|
63
63
|
</span>
|
|
64
64
|
<span class="flex flex-row md:ml-5">
|
|
65
65
|
<CommonSvgIcon
|
|
66
|
-
:class-object="{ svgElement: 'fill-neutral-
|
|
66
|
+
:class-object="{ svgElement: 'fill-neutral-700' }"
|
|
67
67
|
class="mr-1 pt-1"
|
|
68
68
|
icon="circlePlus"
|
|
69
69
|
/>
|
|
@@ -72,23 +72,23 @@ 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
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
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
92
|
</div>
|
|
93
93
|
</div>
|
|
94
94
|
</div>
|
|
@@ -105,4 +105,8 @@ const presentersToComposables = (presenters: Presenter[]) => {
|
|
|
105
105
|
.accord {
|
|
106
106
|
transition: height var(--vc-auto-duration) ease-out;
|
|
107
107
|
}
|
|
108
|
+
|
|
109
|
+
.time-width {
|
|
110
|
+
min-width: 10ch;
|
|
111
|
+
}
|
|
108
112
|
</style>
|