hds-web 1.19.6 → 1.19.8

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.19.6",
3
+ "version": "1.19.8",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -25,31 +25,31 @@ 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="pl-3 tb:pl-14 tb:pr-2">
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
  )
32
32
  }
33
33
  {
34
34
  props.iconBgColor && (
35
- <div className={`${iconBgClass} ml-3 tb:ml-14 tb:mr-2 w-8 h-8 min-w-[32px] rounded-full flex items-center justify-center`}>
35
+ <div className={`${iconBgClass} ml-0 mb-1 tb:mb-0 tb:ml-14 tb:mr-2 w-8 h-8 min-w-[32px] rounded-full flex items-center justify-center`}>
36
36
  <Icon height={'block w-5 h-5 stroke-[2px] transition ease-in-out'} variant={props.iconVariant} strokeClass='stroke-neutral-1000' />
37
37
  </div>
38
38
  )
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="px-3 block tb:px-0 pb-1 tb:pb-0">
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=" static mx-3 tb:mx-0 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)}>
52
+ <div className="static ml-3 tb:ml-0 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>
@@ -10307,11 +10307,6 @@ select{
10307
10307
  right: 0px;
10308
10308
  }
10309
10309
 
10310
- .tb\:mx-0{
10311
- margin-left: 0px;
10312
- margin-right: 0px;
10313
- }
10314
-
10315
10310
  .tb\:mb-16{
10316
10311
  margin-bottom: 4rem;
10317
10312
  }
@@ -10360,6 +10355,10 @@ select{
10360
10355
  margin-top: -4px;
10361
10356
  }
10362
10357
 
10358
+ .tb\:mb-0{
10359
+ margin-bottom: 0px;
10360
+ }
10361
+
10363
10362
  .tb\:block{
10364
10363
  display: block;
10365
10364
  }