hds-web 1.27.7 → 1.27.9

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.27.7",
3
+ "version": "1.27.9",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -1,3 +1,3 @@
1
1
  <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M21 10H3M16 2V6M8 2V6M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
2
+ <path d="M21 10H3M16 2V6M8 2V6M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z" stroke-linecap="round" stroke-linejoin="round"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M12 6V12L16 14M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
2
+ <path d="M12 6V12L16 14M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke-linecap="round" stroke-linejoin="round"/>
3
3
  </svg>
@@ -1,4 +1,4 @@
1
1
  <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M12 22C13 17 20 16.4183 20 10C20 5.58172 16.4183 2 12 2C7.58172 2 4 5.58172 4 10C4 16.4183 11 17 12 22Z" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M12 13C13.6569 13 15 11.6569 15 10C15 8.34315 13.6569 7 12 7C10.3431 7 9 8.34315 9 10C9 11.6569 10.3431 13 12 13Z" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
2
+ <path d="M12 22C13 17 20 16.4183 20 10C20 5.58172 16.4183 2 12 2C7.58172 2 4 5.58172 4 10C4 16.4183 11 17 12 22Z" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M12 13C13.6569 13 15 11.6569 15 10C15 8.34315 13.6569 7 12 7C10.3431 7 9 8.34315 9 10C9 11.6569 10.3431 13 12 13Z" stroke-linecap="round" stroke-linejoin="round"/>
4
4
  </svg>
@@ -12,8 +12,8 @@ export default function EventScheduleCard(props) {
12
12
  const scheduleSection = () => (
13
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
- <div className="flex gap-2">
16
- <Icon height='h-[18px] w-[18px]' variant='calendar' strokeClass='stroke-neutral-600' />
15
+ <div className="flex gap-2 items-center">
16
+ <Icon height='h-[18px] w-[18px]' variant='calendar' strokeClass='stroke-neutral-600 stroke-[1.5px]' />
17
17
  <Typography textStyle='h6' className='capitalize text-neutral-600' >WHEN</Typography>
18
18
  </div>
19
19
  <div className='text-neutral-700 text-hds-m-sub2'>
@@ -21,8 +21,8 @@ export default function EventScheduleCard(props) {
21
21
  </div>
22
22
  </div>}
23
23
  {props.eventTime && <div className="flex flex-col tb:px-6 py-4 tb:py-0 gap-1">
24
- <div className="flex gap-2">
25
- <Icon height='h-[18px] w-[18px]' variant='clock' strokeClass='stroke-neutral-600' />
24
+ <div className="flex gap-2 items-center">
25
+ <Icon height='h-[18px] w-[18px]' variant='clock' strokeClass='stroke-neutral-600 stroke-[1.5px]' />
26
26
  <Typography textStyle='h6' className='capitalize text-neutral-600' >TIME</Typography>
27
27
  </div>
28
28
  <div className='text-neutral-700 text-hds-m-sub2'>
@@ -30,8 +30,8 @@ export default function EventScheduleCard(props) {
30
30
  </div>
31
31
  </div>}
32
32
  {props.eventLocation && <div className="flex flex-col tb:px-6 py-4 tb:py-0 gap-1 ">
33
- <div className="flex gap-2">
34
- <Icon height='h-[18px] w-[18px]' variant='markerpin03' strokeClass='stroke-neutral-600' />
33
+ <div className="flex gap-2 items-center">
34
+ <Icon height='h-[18px] w-[18px]' variant='markerpin03' strokeClass='stroke-neutral-600 stroke-[1.5px]' />
35
35
  <Typography textStyle='h6' className='capitalize text-neutral-600' >WHERE</Typography>
36
36
  </div>
37
37
  <div className='text-neutral-700 text-hds-m-sub2'>
@@ -5,7 +5,7 @@ import { Badges } from "../../components/BadgesCaption";
5
5
 
6
6
  export default function EventListingCard(props) {
7
7
  return (
8
- <div className="group/eventListing hover:shadow-xl rounded-3xl transition-all duration-300">
8
+ <div className="group/eventListing rounded-3xl transition-all duration-300">
9
9
  <div className="self-start rounded-t-3xl">
10
10
  {
11
11
  props.eventListingImg && (
@@ -10435,6 +10435,10 @@ select{
10435
10435
  visibility: visible;
10436
10436
  }
10437
10437
 
10438
+ .group\/eventListing:hover .group-hover\/eventListing\:visible{
10439
+ visibility: visible;
10440
+ }
10441
+
10438
10442
  .group\/sc:hover .group-hover\/sc\:block{
10439
10443
  display: block;
10440
10444
  }
@@ -10497,6 +10501,12 @@ select{
10497
10501
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
10498
10502
  }
10499
10503
 
10504
+ .group\/eventListing:hover .group-hover\/eventListing\:translate-x-\[0\.15rem\]{
10505
+ --tw-translate-x: 0.15rem;
10506
+ -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
10507
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
10508
+ }
10509
+
10500
10510
  .group\/eventListing:hover .group-hover\/eventListing\:border-opacity-0{
10501
10511
  --tw-border-opacity: 0;
10502
10512
  }
@@ -10662,10 +10672,20 @@ select{
10662
10672
  transition-duration: 150ms;
10663
10673
  }
10664
10674
 
10675
+ .group\/eventListing:hover .group-hover\/eventListing\:transition-all{
10676
+ transition-property: all;
10677
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
10678
+ transition-duration: 150ms;
10679
+ }
10680
+
10665
10681
  .group:hover .group-hover\:delay-100{
10666
10682
  transition-delay: 100ms;
10667
10683
  }
10668
10684
 
10685
+ .group\/eventListing:hover .group-hover\/eventListing\:delay-100{
10686
+ transition-delay: 100ms;
10687
+ }
10688
+
10669
10689
  .group:hover .group-hover\:duration-100{
10670
10690
  transition-duration: 100ms;
10671
10691
  }
@@ -10674,6 +10694,10 @@ select{
10674
10694
  transition-duration: 300ms;
10675
10695
  }
10676
10696
 
10697
+ .group\/eventListing:hover .group-hover\/eventListing\:duration-300{
10698
+ transition-duration: 300ms;
10699
+ }
10700
+
10677
10701
  .group:hover .group-hover\:ease-in-out{
10678
10702
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
10679
10703
  }