hds-web 1.27.5 → 1.27.6
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/package.json
CHANGED
@@ -38,14 +38,14 @@ export default function EventScheduleCard(props) {
|
|
38
38
|
{props.eventLocation}
|
39
39
|
</div>
|
40
40
|
</div>}
|
41
|
-
{props.social
|
42
|
-
{props.social && props.social.twitter &&
|
41
|
+
{props.social && <div className="px-6 flex flex-wrap gap-4 items-center">
|
42
|
+
{props.social && props.social.twitter && <a href={props.social.twitter}>
|
43
43
|
<Icon variant='twitter' className='brightness-0 hover:brightness-100 cursor-pointer transition-all duration-300' />
|
44
44
|
</a>}
|
45
|
-
{props.social && props.social.linkedin &&
|
45
|
+
{props.social && props.social.linkedin && <a href={props.social.linkedin}>
|
46
46
|
<Icon variant='linkedin' className='brightness-0 hover:brightness-100 cursor-pointer transition-all duration-300' />
|
47
47
|
</a>}
|
48
|
-
{props.social && props.social.facebook &&
|
48
|
+
{props.social && props.social.facebook && <a href={props.social.facebook}>
|
49
49
|
<Icon variant='facebookBlue' className='brightness-0 hover:brightness-100 cursor-pointer transition-all duration-300' />
|
50
50
|
</a>}
|
51
51
|
</div>}
|
@@ -78,7 +78,10 @@ export default function EventScheduleCard(props) {
|
|
78
78
|
className={HDSColor(props.titleTextColor)}>
|
79
79
|
{props.title}
|
80
80
|
</Typography>}
|
81
|
-
{
|
81
|
+
{(props.eventDate || props.eventTime || props.eventLocation || props.social)
|
82
|
+
&&
|
83
|
+
scheduleSection(props)
|
84
|
+
}
|
82
85
|
{props.subtitle &&
|
83
86
|
<Typography
|
84
87
|
textStyle='h5'
|