@icvdeveloper/common-module 0.0.66 → 0.0.67
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
|
/>
|
|
@@ -81,15 +81,10 @@ const presentersToComposables = (presenters: Presenter[]) => {
|
|
|
81
81
|
)"
|
|
82
82
|
:key="presenter.presenter.id"
|
|
83
83
|
>
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
>
|
|
89
|
-
</div>
|
|
90
|
-
<div>
|
|
91
|
-
{{ presenter.presenter.biography }}
|
|
92
|
-
</div>
|
|
84
|
+
<p class="text-lg pb-0 mb-0">{{ presenter.fullName.value }}</p>
|
|
85
|
+
<p v-if="presenter.titleCompany.value" class="text-sm pt-0">
|
|
86
|
+
{{ presenter.titleCompany.value }}
|
|
87
|
+
</p>
|
|
93
88
|
</div>
|
|
94
89
|
</div>
|
|
95
90
|
</div>
|
|
@@ -105,4 +100,8 @@ const presentersToComposables = (presenters: Presenter[]) => {
|
|
|
105
100
|
.accord {
|
|
106
101
|
transition: height var(--vc-auto-duration) ease-out;
|
|
107
102
|
}
|
|
103
|
+
|
|
104
|
+
.time-width {
|
|
105
|
+
min-width: 10ch;
|
|
106
|
+
}
|
|
108
107
|
</style>
|