hds-web 1.31.7 → 1.31.9
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
@@ -26,7 +26,7 @@ const colorVariants = {
|
|
26
26
|
purple500: 'bg-purple-500 shadow-sm',
|
27
27
|
blue500:'bg-blue-500 shadow-sm',
|
28
28
|
green500:'bg-green-500 shadow-sm',
|
29
|
-
borderN400:'border border-neutral-400'
|
29
|
+
borderN400: 'border border-neutral-400 group-hover/badge:bg-blue-500 group-hover/badge:text-neutral-0 group-hover/badge:border-opacity-0 transition-all duration-100 ease-in-out'
|
30
30
|
|
31
31
|
}
|
32
32
|
|
@@ -12,7 +12,7 @@ export default function EventListingCard(props) {
|
|
12
12
|
props.eventListingImg && (
|
13
13
|
<div className="relative">
|
14
14
|
<div>
|
15
|
-
<img src={props.eventListingImg} alt={props.title} className={` rounded-t-3xl h-[179px] object-cover ${props.imgBG}`} />
|
15
|
+
<img src={props.eventListingImg} alt={props.title} className={` rounded-t-3xl h-[179px] object-cover ${props.imgBG}`} loading="lazy" />
|
16
16
|
{props.imgTagText && <div className=" scale-75 absolute top-2 -right-1">
|
17
17
|
<LiveStatus
|
18
18
|
statusCircleBgClass={props.circleBG ?? 'bg-red-400'}
|
package/src/styles/tailwind.css
CHANGED
@@ -2411,14 +2411,14 @@ select{
|
|
2411
2411
|
animation: bounce 1s infinite;
|
2412
2412
|
}
|
2413
2413
|
|
2414
|
-
.cursor-pointer{
|
2415
|
-
cursor: pointer;
|
2416
|
-
}
|
2417
|
-
|
2418
2414
|
.cursor-default{
|
2419
2415
|
cursor: default;
|
2420
2416
|
}
|
2421
2417
|
|
2418
|
+
.cursor-pointer{
|
2419
|
+
cursor: pointer;
|
2420
|
+
}
|
2421
|
+
|
2422
2422
|
.select-none{
|
2423
2423
|
-webkit-user-select: none;
|
2424
2424
|
user-select: none;
|
@@ -7832,6 +7832,10 @@ select{
|
|
7832
7832
|
transition-duration: 350ms;
|
7833
7833
|
}
|
7834
7834
|
|
7835
|
+
.duration-100{
|
7836
|
+
transition-duration: 100ms;
|
7837
|
+
}
|
7838
|
+
|
7835
7839
|
.ease-in{
|
7836
7840
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
7837
7841
|
}
|
@@ -10570,6 +10574,10 @@ select{
|
|
10570
10574
|
--tw-border-opacity: 0;
|
10571
10575
|
}
|
10572
10576
|
|
10577
|
+
.group\/badge:hover .group-hover\/badge\:border-opacity-0{
|
10578
|
+
--tw-border-opacity: 0;
|
10579
|
+
}
|
10580
|
+
|
10573
10581
|
.group\/card:hover .group-hover\/card\:bg-blue-200{
|
10574
10582
|
--tw-bg-opacity: 1;
|
10575
10583
|
background-color: rgb(223 232 255 / var(--tw-bg-opacity));
|
@@ -10620,6 +10628,16 @@ select{
|
|
10620
10628
|
background-color: rgb(219 198 255 / var(--tw-bg-opacity));
|
10621
10629
|
}
|
10622
10630
|
|
10631
|
+
.group\/badge:hover .group-hover\/badge\:bg-neutral-100{
|
10632
|
+
--tw-bg-opacity: 1;
|
10633
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
10634
|
+
}
|
10635
|
+
|
10636
|
+
.group\/badge:hover .group-hover\/badge\:bg-blue-500{
|
10637
|
+
--tw-bg-opacity: 1;
|
10638
|
+
background-color: rgb(57 112 253 / var(--tw-bg-opacity));
|
10639
|
+
}
|
10640
|
+
|
10623
10641
|
.group:hover .group-hover\:bg-gradient-to-t{
|
10624
10642
|
background-image: linear-gradient(to top, var(--tw-gradient-stops));
|
10625
10643
|
}
|
@@ -10706,6 +10724,11 @@ select{
|
|
10706
10724
|
color: rgb(0 6 21 / var(--tw-text-opacity));
|
10707
10725
|
}
|
10708
10726
|
|
10727
|
+
.group\/badge:hover .group-hover\/badge\:text-neutral-0{
|
10728
|
+
--tw-text-opacity: 1;
|
10729
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
10730
|
+
}
|
10731
|
+
|
10709
10732
|
.group\/img:hover .group-hover\/img\:opacity-0{
|
10710
10733
|
opacity: 0;
|
10711
10734
|
}
|