hds-web 1.19.5 → 1.19.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/dist/index.css +2 -2
- package/dist/index.es.css +2 -2
- package/dist/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/HDS/components/Cards/Announcement/announcementMd.js +5 -5
- package/src/HDS/components/Headers/v3Header.js +1 -1
- package/src/styles/tailwind.css +10 -14
package/package.json
CHANGED
@@ -25,7 +25,7 @@ export default function AnnouncementMd(props) {
|
|
25
25
|
<div className="block items-center tb:flex tb:justify-center">
|
26
26
|
{
|
27
27
|
props.brandImg && (
|
28
|
-
<div className="
|
28
|
+
<div className="pb-1 tb:pb-0 tb:pl-14 tb:pr-2">
|
29
29
|
<img className="max-h-[32px]" src={props.brandImg} alt={props.brandImgAlt} />
|
30
30
|
</div>
|
31
31
|
)
|
@@ -39,17 +39,17 @@ export default function AnnouncementMd(props) {
|
|
39
39
|
}
|
40
40
|
{
|
41
41
|
props.tagText && (
|
42
|
-
<Typography textStyle="body2-medium" className={`inline-flex py-1 px-3 ml-0 tb:ml-14 tb-m:ml-6 rounded-full mr-4 min-w-fit ${tagColorVariants[tagClass]}`}>{props.tagText}</Typography>
|
42
|
+
<Typography textStyle="body2-medium" className={`inline-flex py-1 px-0 tb:px-3 ml-0 tb:ml-14 tb-m:ml-6 rounded-full mr-4 min-w-fit ${tagColorVariants[tagClass]}`}>{props.tagText}</Typography>
|
43
43
|
)
|
44
44
|
}
|
45
|
-
<a href={props.linkUrl} className="
|
45
|
+
<a href={props.linkUrl} className="block pb-1 tb:pb-0">
|
46
46
|
<Typography textStyle="body2-medium" className={`${linkTextClass} group flex items-center [&>div]:inline-block`}>
|
47
47
|
{props.linkText}
|
48
|
-
<Icon height={'block w-6 h-6 stroke-[2px] ml-3 transition ease-in-out group-hover:translate-x-[5px]'} variant='arrownarrowright' strokeClass='stroke-blue-500' />
|
48
|
+
<Icon height={' hidden tb:block w-6 h-6 stroke-[2px] ml-3 transition ease-in-out group-hover:translate-x-[5px]'} variant='arrownarrowright' strokeClass='stroke-blue-500' />
|
49
49
|
</Typography>
|
50
50
|
</a>
|
51
51
|
</div>
|
52
|
-
<div className="
|
52
|
+
<div className="static ml-3 tb:absolute top-1/2 tb:-translate-y-1/2 tb:left-6 cursor-pointer w-8 min-w-[32px] h-8 rounded-full bg-neutral-100 flex items-center justify-center" onClick={()=>toggleBanner(false)}>
|
53
53
|
<Icon height={'block w-6 h-6 stroke-[2px] transition ease-in-out'} variant='xclose' strokeClass='stroke-neutral-800' />
|
54
54
|
</div>
|
55
55
|
</div>
|
@@ -414,7 +414,7 @@ export default function V3Header(props) {
|
|
414
414
|
className="flex justify-between items-center p-4 cursor-pointer group"
|
415
415
|
>
|
416
416
|
<div className="flex items-center justify-center gap-2">
|
417
|
-
<Icon height="h-5 w-5" variant="home03" strokeColor="#3970FD" />
|
417
|
+
{/* <Icon height="h-5 w-5" variant="home03" strokeColor="#3970FD" /> */}
|
418
418
|
<Typography textStyle="body3c-medium" className="text-neutral-700 hover:text-neutral-1000 transition-all duration-300 ease-in-out">
|
419
419
|
{`${item['title']}`}
|
420
420
|
</Typography>
|
package/src/styles/tailwind.css
CHANGED
@@ -1670,8 +1670,8 @@ select{
|
|
1670
1670
|
max-height: 26.25;
|
1671
1671
|
}
|
1672
1672
|
|
1673
|
-
.max-h-\[
|
1674
|
-
max-height:
|
1673
|
+
.max-h-\[32px\]{
|
1674
|
+
max-height: 32px;
|
1675
1675
|
}
|
1676
1676
|
|
1677
1677
|
.max-h-\[530px\]{
|
@@ -1686,10 +1686,6 @@ select{
|
|
1686
1686
|
max-height: 100vh;
|
1687
1687
|
}
|
1688
1688
|
|
1689
|
-
.max-h-\[32px\]{
|
1690
|
-
max-height: 32px;
|
1691
|
-
}
|
1692
|
-
|
1693
1689
|
.min-h-\[12px\]{
|
1694
1690
|
min-height: 12px;
|
1695
1691
|
}
|
@@ -10328,6 +10324,10 @@ select{
|
|
10328
10324
|
margin-left: 3.5rem;
|
10329
10325
|
}
|
10330
10326
|
|
10327
|
+
.tb\:mr-2{
|
10328
|
+
margin-right: 0.5rem;
|
10329
|
+
}
|
10330
|
+
|
10331
10331
|
.tb\:mr-4{
|
10332
10332
|
margin-right: 1rem;
|
10333
10333
|
}
|
@@ -10360,10 +10360,6 @@ select{
|
|
10360
10360
|
margin-top: -4px;
|
10361
10361
|
}
|
10362
10362
|
|
10363
|
-
.tb\:mr-2{
|
10364
|
-
margin-right: 0.5rem;
|
10365
|
-
}
|
10366
|
-
|
10367
10363
|
.tb\:block{
|
10368
10364
|
display: block;
|
10369
10365
|
}
|
@@ -10708,6 +10704,10 @@ select{
|
|
10708
10704
|
padding-right: 0px;
|
10709
10705
|
}
|
10710
10706
|
|
10707
|
+
.tb\:pr-2{
|
10708
|
+
padding-right: 0.5rem;
|
10709
|
+
}
|
10710
|
+
|
10711
10711
|
.tb\:pr-4{
|
10712
10712
|
padding-right: 1rem;
|
10713
10713
|
}
|
@@ -10740,10 +10740,6 @@ select{
|
|
10740
10740
|
padding-top: 2.875rem;
|
10741
10741
|
}
|
10742
10742
|
|
10743
|
-
.tb\:pr-2{
|
10744
|
-
padding-right: 0.5rem;
|
10745
|
-
}
|
10746
|
-
|
10747
10743
|
.tb\:text-left{
|
10748
10744
|
text-align: left;
|
10749
10745
|
}
|