hds-web 1.10.6 → 1.10.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.10.6",
3
+ "version": "1.10.7",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -1,11 +1,11 @@
1
1
  import React from "react";
2
2
  import { Typography } from '../../foundation/Typography'
3
- import { HDSButton} from '../../components/Buttons';
3
+ import { HDSButton } from '../../components/Buttons';
4
4
 
5
5
  export default function DataSourcesCard(props) {
6
6
  return (
7
- <>
8
- <a href={props.sliderLink ?? '#'}>
7
+ <>
8
+
9
9
  <div className="flex flex-col-reverse px-6 py-10 db:px-0 db:py-0 db:flex-row db:gap-[132px]">
10
10
 
11
11
  <div className="flex flex-col db:pl-20 db:pt-20 db:pb-[74px]">
@@ -40,7 +40,7 @@ export default function DataSourcesCard(props) {
40
40
  className=" rounded-xl db:rounded-none db:rounded-tl-3xl"
41
41
  />
42
42
  </div>}
43
-
43
+
44
44
  <div className="db:hidden pb-2">
45
45
  <Typography textStyle='h3' className='text-neutral-1000'>{props.title}</Typography>
46
46
  </div>
@@ -50,16 +50,16 @@ export default function DataSourcesCard(props) {
50
50
  )
51
51
  }
52
52
  </div>
53
- </a>
53
+
54
54
  </>
55
55
  )
56
56
  }
57
57
 
58
58
  DataSourcesCard.defaultProps = {
59
- title:'100+ Data Sources',
59
+ title: '100+ Data Sources',
60
60
  description: 'description1',
61
61
  CTA: {
62
- text:'Button Label',
62
+ text: 'Button Label',
63
63
  },
64
64
  video_url: 'https://res.cloudinary.com/dh8fp23nd/video/upload/v1654760488/samples/sea-turtle.mp4'
65
65
  }