hds-web 1.27.5 → 1.27.7

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.27.5",
3
+ "version": "1.27.7",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -10,7 +10,7 @@ import { Icon } from "../../common-components";
10
10
  export default function EventScheduleCard(props) {
11
11
 
12
12
  const scheduleSection = () => (
13
- <div className="flex tb:divide-x divide-y tb:divide-y-0 divide-neutral-200 py-6 tb:flex-row flex-col">
13
+ <div className="flex tb:divide-x divide-y tb:divide-y-0 divide-neutral-200 pb-6 tb:flex-row flex-col">
14
14
  {props.eventDate && <div className="flex flex-col tb:pr-6 pb-4 tb:pb-0 gap-1">
15
15
  <div className="flex gap-2">
16
16
  <Icon height='h-[18px] w-[18px]' variant='calendar' strokeClass='stroke-neutral-600' />
@@ -38,14 +38,14 @@ export default function EventScheduleCard(props) {
38
38
  {props.eventLocation}
39
39
  </div>
40
40
  </div>}
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}>
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 && <a href={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 && <a href={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>}
@@ -75,10 +75,15 @@ export default function EventScheduleCard(props) {
75
75
  {props.title &&
76
76
  <Typography
77
77
  textStyle='h3'
78
- className={HDSColor(props.titleTextColor)}>
78
+ as='h3'
79
+ className={HDSColor(props.titleTextColor) + ' pb-6'}>
79
80
  {props.title}
80
81
  </Typography>}
81
- {scheduleSection(props)}
82
+ {
83
+ (props.eventDate || props.eventTime || props.eventLocation || props.social)
84
+ &&
85
+ scheduleSection(props)
86
+ }
82
87
  {props.subtitle &&
83
88
  <Typography
84
89
  textStyle='h5'
@@ -1636,6 +1636,10 @@ select{
1636
1636
  height: 130px;
1637
1637
  }
1638
1638
 
1639
+ .h-\[179px\]{
1640
+ height: 179px;
1641
+ }
1642
+
1639
1643
  .h-\[18px\]{
1640
1644
  height: 18px;
1641
1645
  }
@@ -1728,10 +1732,6 @@ select{
1728
1732
  max-height: 144px;
1729
1733
  }
1730
1734
 
1731
- .max-h-\[179px\]{
1732
- max-height: 179px;
1733
- }
1734
-
1735
1735
  .max-h-\[181px\]{
1736
1736
  max-height: 181px;
1737
1737
  }
@@ -10860,6 +10860,10 @@ select{
10860
10860
  margin-top: 2.5rem;
10861
10861
  }
10862
10862
 
10863
+ .tb\:mt-12{
10864
+ margin-top: 3rem;
10865
+ }
10866
+
10863
10867
  .tb\:mt-4{
10864
10868
  margin-top: 1rem;
10865
10869
  }
@@ -10876,10 +10880,6 @@ select{
10876
10880
  margin-top: -4px;
10877
10881
  }
10878
10882
 
10879
- .tb\:mt-12{
10880
- margin-top: 3rem;
10881
- }
10882
-
10883
10883
  .tb\:block{
10884
10884
  display: block;
10885
10885
  }
@@ -12381,10 +12381,6 @@ select{
12381
12381
  max-width: 500px;
12382
12382
  }
12383
12383
 
12384
- .db\:max-w-\[535px\]{
12385
- max-width: 535px;
12386
- }
12387
-
12388
12384
  .db\:max-w-\[540px\]{
12389
12385
  max-width: 540px;
12390
12386
  }