hds-web 1.22.7 → 1.22.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.22.7",
3
+ "version": "1.22.9",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -16,16 +16,16 @@ export default function StoryCardXL(props) {
16
16
  }
17
17
  {props.brandImageURL &&
18
18
  props.brandImageAlt && (
19
- <div className="tb-l:flex hidden justify-start">
20
- <img src={props.brandImageURL} alt={props.brandImageAlt} className=" " />
19
+ <div className="tb-l:flex hidden -ml-2 justify-start">
20
+ <img src={props.brandImageURL} alt={props.brandImageAlt} className="max-h-[64px]" />
21
21
  </div>
22
22
  )
23
23
 
24
24
  }
25
25
  {props.title &&
26
26
  (
27
- <div className="flex pt-3 flex-col gap-6 tb-l:max-w-[547px] ">
28
- <Typography textStyle='h3' className='text-neutral-1000 tb-l:block hidden min-h-[144px] overflow-clip'>{props.title}</Typography>
27
+ <div className="flex pt-6 flex-col gap-6 tb-l:max-w-[547px] ">
28
+ <Typography textStyle='h3' className='text-neutral-1000 tb-l:block hidden min-h-[144px] overflow-clip'>{props.title}</Typography>
29
29
  {props.heroList &&
30
30
  (
31
31
  <div>
@@ -33,10 +33,10 @@ export default function StoryCardXL(props) {
33
33
  {props.heroList.map((value, index) => (
34
34
  <div key={index} className='flex gap-5'>
35
35
  <Icon
36
- height='tb:h-8 tb:w-8 h-6 w-6'
37
- variant={value.iconVariant}
38
- strokeClass={value.strokeClass ?? 'stroke-neutral-800'}
39
- />
36
+ height='tb:h-8 tb:w-8 h-6 w-6'
37
+ variant={value.iconVariant}
38
+ strokeClass={value.strokeClass ?? 'stroke-neutral-800'}
39
+ />
40
40
  <Typography
41
41
  textStyle='sub2' className='text-neutral-700' >
42
42
  {value.title}
@@ -95,8 +95,8 @@ export default function StoryCardXL(props) {
95
95
  <div className="tb-l:hidden pb-6">
96
96
  {props.brandImageURL &&
97
97
  props.brandImageAlt && (
98
- <div className="pb-1 ">
99
- <img src={props.brandImageURL} alt={props.brandImageAlt} className="max-h-[64px]" />
98
+ <div className="pb-1 -ml-1 ">
99
+ <img src={props.brandImageURL} alt={props.brandImageAlt} className="max-h-[40px]" />
100
100
  </div>
101
101
  )
102
102
  }
@@ -565,18 +565,18 @@ V3Header.defaultProps = {
565
565
  description: '',
566
566
  href: '/graphql/database',
567
567
  icon: 'database01',
568
- name: 'All DBs',
568
+ name: 'All databases',
569
569
  strokeClass: 'stroke-neutral-500'
570
570
  },
571
571
  {
572
572
  description: '',
573
573
  href: '/graphql/database?category=planned',
574
574
  icon: 'checksquare',
575
- name: 'Planned DBs',
575
+ name: 'Planned databases',
576
576
  strokeClass: 'stroke-neutral-500'
577
577
  },
578
578
  ],
579
- label: 'Integrations'
579
+ label: 'Data sources'
580
580
  }
581
581
  ]
582
582
  },
@@ -1493,6 +1493,10 @@ select{
1493
1493
  margin-top: 70px;
1494
1494
  }
1495
1495
 
1496
+ .-ml-2{
1497
+ margin-left: -0.5rem;
1498
+ }
1499
+
1496
1500
  .line-clamp-3{
1497
1501
  overflow: hidden;
1498
1502
  display: -webkit-box;