hds-web 1.31.8 → 1.32.0
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
@@ -20,8 +20,8 @@ const Facebook = () => (
|
|
20
20
|
)
|
21
21
|
|
22
22
|
const Twitter = () => (
|
23
|
-
<svg width="
|
24
|
-
<path d="
|
23
|
+
<svg className="w-[21px] h-5" width="1200" height="1227" viewBox="0 0 1200 1227" fill="none" xmlns="http://www.w3.org/2000/svg">
|
24
|
+
<path d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z" fill="white"/>
|
25
25
|
</svg>
|
26
26
|
)
|
27
27
|
|
@@ -47,6 +47,7 @@ const socialShare = [
|
|
47
47
|
{
|
48
48
|
icon: <Twitter />,
|
49
49
|
linkUrl: 'https://twitter.com/hasurahq',
|
50
|
+
className:'py-1'
|
50
51
|
},
|
51
52
|
{
|
52
53
|
icon: <Instagram />,
|
@@ -99,7 +100,7 @@ export default function V3Footer(props) {
|
|
99
100
|
<div className='flex items-center justify-center pt-10 tb-m:pt-0 pb-4 tb-m:pb-0 tb-m:justify-start'>
|
100
101
|
{
|
101
102
|
socialShare.map((icon, index) => (
|
102
|
-
<a href={icon.linkUrl} className='mx-2 tb-l:mx-4 first:ml-0 last:mr-0 [&>svg>path]:fill-neutral-400 [&>svg>path]:hover:fill-neutral-600'>
|
103
|
+
<a href={icon.linkUrl} className={'mx-2 tb-l:mx-4 first:ml-0 last:mr-0 [&>svg>path]:fill-neutral-400 [&>svg>path]:hover:fill-neutral-600 ' + ((icon.className) ? icon.className : '')}>
|
103
104
|
{icon.icon}
|
104
105
|
</a>
|
105
106
|
))
|
@@ -264,7 +265,7 @@ V3Footer.defaultProps = {
|
|
264
265
|
// linkText: 'Brand',
|
265
266
|
// linkUrl: 'https://hasura.io/brand/',
|
266
267
|
// },
|
267
|
-
|
268
|
+
|
268
269
|
]
|
269
270
|
},
|
270
271
|
{
|
@@ -318,4 +319,4 @@ V3Footer.defaultProps = {
|
|
318
319
|
]
|
319
320
|
},
|
320
321
|
],
|
321
|
-
}
|
322
|
+
}
|
@@ -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
@@ -2031,6 +2031,10 @@ select{
|
|
2031
2031
|
width: 100vw;
|
2032
2032
|
}
|
2033
2033
|
|
2034
|
+
.w-\[21px\]{
|
2035
|
+
width: 21px;
|
2036
|
+
}
|
2037
|
+
|
2034
2038
|
.min-w-\[11\.5rem\]{
|
2035
2039
|
min-width: 11.5rem;
|
2036
2040
|
}
|
@@ -7800,6 +7804,10 @@ select{
|
|
7800
7804
|
transition-duration: 0s;
|
7801
7805
|
}
|
7802
7806
|
|
7807
|
+
.duration-100{
|
7808
|
+
transition-duration: 100ms;
|
7809
|
+
}
|
7810
|
+
|
7803
7811
|
.duration-1000{
|
7804
7812
|
transition-duration: 1000ms;
|
7805
7813
|
}
|
@@ -7832,10 +7840,6 @@ select{
|
|
7832
7840
|
transition-duration: 350ms;
|
7833
7841
|
}
|
7834
7842
|
|
7835
|
-
.duration-100{
|
7836
|
-
transition-duration: 100ms;
|
7837
|
-
}
|
7838
|
-
|
7839
7843
|
.ease-in{
|
7840
7844
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
7841
7845
|
}
|
@@ -10570,14 +10574,19 @@ select{
|
|
10570
10574
|
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));
|
10571
10575
|
}
|
10572
10576
|
|
10573
|
-
.group\/
|
10577
|
+
.group\/badge:hover .group-hover\/badge\:border-opacity-0{
|
10574
10578
|
--tw-border-opacity: 0;
|
10575
10579
|
}
|
10576
10580
|
|
10577
|
-
.group\/
|
10581
|
+
.group\/eventListing:hover .group-hover\/eventListing\:border-opacity-0{
|
10578
10582
|
--tw-border-opacity: 0;
|
10579
10583
|
}
|
10580
10584
|
|
10585
|
+
.group\/badge:hover .group-hover\/badge\:bg-blue-500{
|
10586
|
+
--tw-bg-opacity: 1;
|
10587
|
+
background-color: rgb(57 112 253 / var(--tw-bg-opacity));
|
10588
|
+
}
|
10589
|
+
|
10581
10590
|
.group\/card:hover .group-hover\/card\:bg-blue-200{
|
10582
10591
|
--tw-bg-opacity: 1;
|
10583
10592
|
background-color: rgb(223 232 255 / var(--tw-bg-opacity));
|
@@ -10628,16 +10637,6 @@ select{
|
|
10628
10637
|
background-color: rgb(219 198 255 / var(--tw-bg-opacity));
|
10629
10638
|
}
|
10630
10639
|
|
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
|
-
|
10641
10640
|
.group:hover .group-hover\:bg-gradient-to-t{
|
10642
10641
|
background-image: linear-gradient(to top, var(--tw-gradient-stops));
|
10643
10642
|
}
|
@@ -10694,6 +10693,11 @@ select{
|
|
10694
10693
|
stroke: #111927;
|
10695
10694
|
}
|
10696
10695
|
|
10696
|
+
.group\/badge:hover .group-hover\/badge\:text-neutral-0{
|
10697
|
+
--tw-text-opacity: 1;
|
10698
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
10699
|
+
}
|
10700
|
+
|
10697
10701
|
.group\/btn:hover .group-hover\/btn\:text-blue-600{
|
10698
10702
|
--tw-text-opacity: 1;
|
10699
10703
|
color: rgb(30 86 227 / var(--tw-text-opacity));
|
@@ -10724,11 +10728,6 @@ select{
|
|
10724
10728
|
color: rgb(0 6 21 / var(--tw-text-opacity));
|
10725
10729
|
}
|
10726
10730
|
|
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
|
-
|
10732
10731
|
.group\/img:hover .group-hover\/img\:opacity-0{
|
10733
10732
|
opacity: 0;
|
10734
10733
|
}
|