hds-web 1.18.9 → 1.19.1

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.18.9",
3
+ "version": "1.19.1",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -1,3 +1,3 @@
1
1
  <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M12.9999 2L4.09332 12.6879C3.74451 13.1064 3.57011 13.3157 3.56744 13.4925C3.56512 13.6461 3.63359 13.7923 3.75312 13.8889C3.89061 14 4.16304 14 4.7079 14H11.9999L10.9999 22L19.9064 11.3121C20.2552 10.8936 20.4296 10.6843 20.4323 10.5075C20.4346 10.3539 20.3661 10.2077 20.2466 10.1111C20.1091 10 19.8367 10 19.2918 10H11.9999L12.9999 2Z" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
2
+ <path d="M12.9999 2L4.09332 12.6879C3.74451 13.1064 3.57011 13.3157 3.56744 13.4925C3.56512 13.6461 3.63359 13.7923 3.75312 13.8889C3.89061 14 4.16304 14 4.7079 14H11.9999L10.9999 22L19.9064 11.3121C20.2552 10.8936 20.4296 10.6843 20.4323 10.5075C20.4346 10.3539 20.3661 10.2077 20.2466 10.1111C20.1091 10 19.8367 10 19.2918 10H11.9999L12.9999 2Z" stroke-linecap="round" stroke-linejoin="round"/>
3
3
  </svg>
@@ -19,29 +19,31 @@ export default function AnnouncementMd(props) {
19
19
  const tagClass = props.tagColor ? props.tagColor : 'purple';
20
20
  if (isBannerActive) {
21
21
  return (
22
- <div className={`${bgClass} flex my-6 justify-between relative rounded-2xl tb:rounded-full shadow p-4 tb:justify-center items-center`}>
23
- <div className="block items-center tb:flex tb:justify-center">
24
- {
25
- props.brandImg && (
26
- <div className="pl-3 tb:pl-14">
27
- <img className="max-h-[34px]" src={props.brandImg} alt={props.brandImgAlt} />
28
- </div>
29
- )
30
- }
31
- {
32
- props.tagText && (
33
- <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>
34
- )
35
- }
36
- <a href={props.linkUrl} className="px-3 block tb:px-0 pb-1 tb:pb-0">
37
- <Typography textStyle="body2-medium" className={`${linkTextClass} group flex items-center [&>div]:inline-block`}>
38
- {props.linkText}
39
- <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' />
40
- </Typography>
41
- </a>
42
- </div>
43
- <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)}>
44
- <Icon height={'block w-6 h-6 stroke-[2px] transition ease-in-out'} variant='xclose' strokeClass='stroke-neutral-800' />
22
+ <div className="py-6">
23
+ <div className={`${bgClass} flex justify-between relative rounded-2xl tb:rounded-full shadow p-4 tb:justify-center items-center`}>
24
+ <div className="block items-center tb:flex tb:justify-center">
25
+ {
26
+ props.brandImg && (
27
+ <div className="pl-3 tb:pl-14">
28
+ <img className="max-h-[34px]" src={props.brandImg} alt={props.brandImgAlt} />
29
+ </div>
30
+ )
31
+ }
32
+ {
33
+ props.tagText && (
34
+ <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>
35
+ )
36
+ }
37
+ <a href={props.linkUrl} className="px-3 block tb:px-0 pb-1 tb:pb-0">
38
+ <Typography textStyle="body2-medium" className={`${linkTextClass} group flex items-center [&>div]:inline-block`}>
39
+ {props.linkText}
40
+ <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' />
41
+ </Typography>
42
+ </a>
43
+ </div>
44
+ <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)}>
45
+ <Icon height={'block w-6 h-6 stroke-[2px] transition ease-in-out'} variant='xclose' strokeClass='stroke-neutral-800' />
46
+ </div>
45
47
  </div>
46
48
  </div>
47
49
  )
@@ -31,11 +31,11 @@ export default function FeedbackCard(props) {
31
31
  <div className={`${HDSColor(props.dividerClass)} mb-2`}></div>
32
32
  )
33
33
  }
34
- <div className={"mb-s:flex items-start" + ((props.dividerClass) ? " pt-6" : "mt-0")}>
34
+ <div className={"tb:flex pt-1 tb:pt-0 items-start" + ((props.dividerClass) ? " pt-6" : "mt-0")}>
35
35
  <div className={"border border-neutral-150 p-2 flex items-center justify-center rounded-2xl " + logoBg + ((props.dividerClass) ? " w-[72px] h-[56px] min-w-[72px]" : " w-[112px] h-[90px] min-w-[112px] ")}>
36
36
  <img className="max-h-[20px]" src={props.brandImgUrl} alt={props.brandImgAlt}/>
37
37
  </div>
38
- <div className={"pt-4 mb-s:pt-0 " + ((props.dividerClass) ? "mb-s:pl-6" : "mb-s:pl-8")}>
38
+ <div className={"pt-4 tb:pt-0 " + ((props.dividerClass) ? "tb:pl-6" : "tb:pl-8")}>
39
39
  <Typography textStyle={((props.dividerClass) ? "body2" : "body1")} className='text-neutral-600 pb-1'>{props.blurb}</Typography>
40
40
  <div className="flex">
41
41
  <HDSButton
@@ -18,7 +18,8 @@ export default function FlyoutB(props) {
18
18
  { cta_leftVariantIcon: 'home03', cta_leftVariantIconColor: '#6C737F', cta_text: 'Button 1' },
19
19
 
20
20
 
21
- ]
21
+ ],
22
+ tertiaryBtn
22
23
  } = props;
23
24
 
24
25
  return (
@@ -51,41 +52,75 @@ export default function FlyoutB(props) {
51
52
  <Typography className='mt-2 text-neutral-600 relative z-[2]' textStyle='body3'>{mainDescription}</Typography>
52
53
  </div>
53
54
  </a>
55
+ <div className="flex flex-col gap-2">
56
+ {secondaryBtn.map((btn, index) => (
57
+ <a key={index} href={btn.cta_link} className="group/btn justify-around cursor-pointer px-2 ">
54
58
 
55
- {secondaryBtn.map((btn, index) => (
56
- <a key={index} href={btn.cta_link} className="group/btn justify-around cursor-pointer border-t border-neutral-150 p-2 ">
57
-
58
- <div className=" flex items-center p-4 hover:bg-neutral-150 rounded-xl ">
59
- <div className="flex w-full justify-between items-center z-[2]">
60
- <div
61
- className="flex rounded-lg gap-2 items-center ">
62
- {btn.cta_leftVariantIcon && (
59
+ <div className=" flex items-center p-4 hover:bg-neutral-150 rounded-xl ">
60
+ <div className="flex w-full justify-between items-center z-[2]">
61
+ <div
62
+ className="flex rounded-lg gap-2 items-center ">
63
+ {btn.cta_leftVariantIcon && (
64
+ <Icon
65
+ height={'h-5 w-5 group-hover/btn:stroke-blue-500 stroke-2 '}
66
+ variant={btn.cta_leftVariantIcon}
67
+ strokeClass='stroke-neutral-500'
68
+ />
69
+ )}
70
+
71
+ <Typography
72
+ textStyle='body3c-medium'
73
+ className='text-neutral-900 group-hover/btn:text-blue-600 hover:transition-all hover:duration-300 hover:ease-in-out whitespace-nowrap overflow-clip'>
74
+ {btn.cta_text}
75
+ </Typography>
76
+ </div>
77
+ <div className="flex group-hover/btn:translate-x-1 transform transition-all duration-200 ease-in-out ">
63
78
  <Icon
64
- height={'h-5 w-5 group-hover/btn:stroke-blue-500 stroke-2 '}
65
- variant={btn.cta_leftVariantIcon}
66
- strokeClass='stroke-neutral-500'
79
+ height={'h-4 w-4 stroke-2 invisible group-hover/btn:visible transition-all ease-in-out '}
80
+ variant={'chevronright'}
81
+ strokeClass={'stroke-blue-500'}
67
82
  />
68
- )}
69
-
70
- <Typography
71
- textStyle='body3c-medium'
72
- className='text-neutral-900 group-hover/btn:text-blue-600 hover:transition-all hover:duration-300 hover:ease-in-out whitespace-nowrap overflow-clip'>
73
- {btn.cta_text}
74
- </Typography>
75
- </div>
76
- <div className="flex group-hover/btn:translate-x-1 transform transition-all duration-200 ease-in-out ">
77
- <Icon
78
- height={'h-4 w-4 stroke-2 invisible group-hover/btn:visible transition-all ease-in-out '}
79
- variant={'chevronright'}
80
- strokeClass={'stroke-blue-500'}
81
- />
83
+ </div>
84
+ </div>
85
+ </div>
86
+
87
+
88
+ </a>))}
89
+
90
+ {tertiaryBtn && tertiaryBtn.map((t, index) => (
91
+ <a key={index} href={t.cta_link} className="group/btn justify-around cursor-pointer px-2 pb-2 ">
92
+
93
+ <div className=" flex items-center p-4 hover:bg-neutral-150 rounded-xl ">
94
+ <div className="flex w-full justify-between items-center z-[2]">
95
+ <div
96
+ className="flex rounded-lg gap-2 items-center ">
97
+ {t.cta_leftVariantIcon && (
98
+ <Icon
99
+ height={'h-5 w-5 group-hover/btn:stroke-blue-500 stroke-2 '}
100
+ variant={t.cta_leftVariantIcon}
101
+ strokeClass='stroke-neutral-500'
102
+ />
103
+ )}
104
+
105
+ <Typography
106
+ textStyle='body3c-medium'
107
+ className='text-neutral-900 group-hover/btn:text-blue-600 hover:transition-all hover:duration-300 hover:ease-in-out whitespace-nowrap overflow-clip'>
108
+ {t.cta_text}
109
+ </Typography>
110
+ </div>
111
+ <div className="flex group-hover/btn:translate-x-1 transform transition-all duration-200 ease-in-out ">
112
+ <Icon
113
+ height={'h-4 w-4 stroke-2 invisible group-hover/btn:visible transition-all ease-in-out '}
114
+ variant={'chevronright'}
115
+ strokeClass={'stroke-blue-500'}
116
+ />
117
+ </div>
82
118
  </div>
83
119
  </div>
84
- </div>
85
120
 
86
-
87
- </a>))}
88
121
 
122
+ </a>))}
123
+ </div>
89
124
  </div>
90
125
 
91
126
  );
@@ -8,33 +8,10 @@ import { motion } from "framer-motion"
8
8
  import { AnimatePresence } from 'framer-motion';
9
9
  // import { AlgoliaSearch } from '../../helpers/AlgoliaSearch';
10
10
 
11
- const solutions = [
12
- {
13
- name: 'Analytics',
14
- description: 'Get a better understanding of where your traffic is coming from.',
15
- href: '#',
16
- icon: 'home03',
17
- },
18
- {
19
- name: 'Engagement',
20
- description: 'Speak directly to your customers in a more meaningful way.',
21
- href: '#',
22
- icon: 'home03',
23
- },
24
- {
25
- name: 'Security',
26
- description: 'Your customers’ data will be safe and secure.',
27
- href: '#',
28
- icon: 'home03'
29
- },
30
- ]
31
-
32
11
  function classNames(...classes) {
33
12
  return classes.filter(Boolean).join(' ')
34
13
  }
35
14
 
36
-
37
-
38
15
  export default function V3Header(props) {
39
16
  const listSize = props.HEADER_LIST.length;
40
17
  const [mobileNavOpen, setmobileNavOpen] = useState(false);
@@ -277,7 +254,7 @@ export default function V3Header(props) {
277
254
 
278
255
  return (
279
256
  <div className="relative mx-auto">
280
- <div className={`flex items-center ${HDSColor(props.headerBg)} justify-between py-4 db:py-6 tb-l:justify-start`}>
257
+ <div className={`flex items-center ${HDSColor(props.headerBg)} justify-between py-4 db:py-3 tb-l:justify-start`}>
281
258
  <div className='flex flex-row justify-between items-center w-full tb-l:w-fit'>
282
259
  <div>
283
260
 
@@ -505,8 +482,11 @@ V3Header.defaultProps = {
505
482
  primaryBtnLabel: 'Hasura Platform',
506
483
  primaryBtnCTA:'/products',
507
484
  strokeClass: 'stroke-neutral-800',
485
+ tertiaryBtn: [
486
+ { cta_leftVariantIcon: 'checksquarebroken', cta_leftVariantIconColor: '#6C737F', cta_text: 'Compare Plans', cta_link:'/pricing' }
487
+ ],
508
488
  secondaryBtn: [
509
- { cta_leftVariantIcon: 'checksquarebroken', cta_leftVariantIconColor: '#6C737F', cta_text: 'Compare plans', cta_link:'/pricing' }
489
+ { cta_leftVariantIcon: 'zap', cta_leftVariantIconColor: '#6C737F', cta_text: 'Deployment Options', cta_link: '/products/deployment' }
510
490
  ],
511
491
  },
512
492
  secondaryCardArr:
@@ -43,7 +43,7 @@ export default function Typography(props) {
43
43
  'body3c-medium': 'text-hds-m-body3c-medium tb:text-hds-t-body3c-medium db:text-hds-d-body3c-medium',
44
44
  'body3c-semi-bold': 'text-hds-m-body3c-semi-bold tb:text-hds-t-body3c-semi-bold db:text-hds-d-body3c-semi-bold',
45
45
  'body3c-bold': 'text-hds-m-body3c-bold tb:text-hds-t-body3c-bold db:text-hds-d-body3c-bold',
46
- 'quote': 'font-petrona font-normal italic text-hds-m-quote tb:text-hds-t-quote db:text-hds-d-quote',
46
+ 'quote': 'font-petrona italic text-hds-m-quote tb:text-hds-t-quote db:text-hds-d-quote',
47
47
  'code1': 'text-hds-m-code1 tb:text-hds-t-code1 db:text-hds-d-code1',
48
48
  'code2': 'text-hds-m-code2 tb:text-hds-t-code2 db:text-hds-d-code2',
49
49
  }
@@ -15,9 +15,9 @@ export default function NavCard(props) {
15
15
  return (
16
16
  <>
17
17
  <div className=''>
18
- {tabContent.title && <Typography textStyle='body1' className={HDSColor(tabContent.title_color)}>{tabContent.title}</Typography>}
18
+ {tabContent.title && <Typography textStyle='h4' className={HDSColor(tabContent.title_color)}>{tabContent.title}</Typography>}
19
19
 
20
- {tabContent.subTitle && <Typography textStyle='body1c' className={HDSColor(tabContent.sub_title_color)}>{tabContent.subTitle}</Typography>}
20
+ {tabContent.subTitle && <Typography textStyle='body1' className={ 'mt-2 ' + HDSColor(tabContent.sub_title_color)}>{tabContent.subTitle}</Typography>}
21
21
  {tabContent.readMore_cta && <div className="flex">
22
22
  <a href={tabContent.readMore_cta_link ?? ''} >
23
23
  <HDSButton
@@ -1323,6 +1323,10 @@ select{
1323
1323
  margin-bottom: 1px;
1324
1324
  }
1325
1325
 
1326
+ .ml-0{
1327
+ margin-left: 0px;
1328
+ }
1329
+
1326
1330
  .ml-1{
1327
1331
  margin-left: 0.25rem;
1328
1332
  }
@@ -1666,6 +1670,10 @@ select{
1666
1670
  max-height: 26.25;
1667
1671
  }
1668
1672
 
1673
+ .max-h-\[34px\]{
1674
+ max-height: 34px;
1675
+ }
1676
+
1669
1677
  .max-h-\[530px\]{
1670
1678
  max-height: 530px;
1671
1679
  }
@@ -1912,6 +1920,10 @@ select{
1912
1920
  min-width: 312px;
1913
1921
  }
1914
1922
 
1923
+ .min-w-\[32px\]{
1924
+ min-width: 32px;
1925
+ }
1926
+
1915
1927
  .min-w-\[48px\]{
1916
1928
  min-width: 48px;
1917
1929
  }
@@ -6452,6 +6464,10 @@ select{
6452
6464
  padding-top: 0px;
6453
6465
  }
6454
6466
 
6467
+ .pt-1{
6468
+ padding-top: 0.25rem;
6469
+ }
6470
+
6455
6471
  .pt-10{
6456
6472
  padding-top: 2.5rem;
6457
6473
  }
@@ -6777,8 +6793,8 @@ select{
6777
6793
 
6778
6794
  .text-hds-m-quote{
6779
6795
  font-size: 1.125rem;
6780
- line-height: 1.75rem;
6781
- letter-spacing: -0.01em;
6796
+ line-height: 1.5;
6797
+ letter-spacing: -0.016em;
6782
6798
  font-weight: 400;
6783
6799
  }
6784
6800
 
@@ -9083,6 +9099,10 @@ select{
9083
9099
  animation: spin 1s linear infinite;
9084
9100
  }
9085
9101
 
9102
+ .hover\:cursor-default:hover{
9103
+ cursor: default;
9104
+ }
9105
+
9086
9106
  .hover\:rounded-3xl:hover{
9087
9107
  border-radius: 1.5rem;
9088
9108
  }
@@ -10204,18 +10224,6 @@ select{
10204
10224
  .mb-s\:rounded-tr-none{
10205
10225
  border-top-right-radius: 0px;
10206
10226
  }
10207
-
10208
- .mb-s\:pl-6{
10209
- padding-left: 1.5rem;
10210
- }
10211
-
10212
- .mb-s\:pl-8{
10213
- padding-left: 2rem;
10214
- }
10215
-
10216
- .mb-s\:pt-0{
10217
- padding-top: 0px;
10218
- }
10219
10227
  }
10220
10228
 
10221
10229
  @media (min-width: 400px){
@@ -10275,6 +10283,14 @@ select{
10275
10283
  }
10276
10284
 
10277
10285
  @media (min-width: 600px){
10286
+ .tb\:absolute{
10287
+ position: absolute;
10288
+ }
10289
+
10290
+ .tb\:left-6{
10291
+ left: 1.5rem;
10292
+ }
10293
+
10278
10294
  .tb\:left-auto{
10279
10295
  left: auto;
10280
10296
  }
@@ -10283,6 +10299,11 @@ select{
10283
10299
  right: 0px;
10284
10300
  }
10285
10301
 
10302
+ .tb\:mx-0{
10303
+ margin-left: 0px;
10304
+ margin-right: 0px;
10305
+ }
10306
+
10286
10307
  .tb\:mb-16{
10287
10308
  margin-bottom: 4rem;
10288
10309
  }
@@ -10291,6 +10312,10 @@ select{
10291
10312
  margin-left: 0px;
10292
10313
  }
10293
10314
 
10315
+ .tb\:ml-14{
10316
+ margin-left: 3.5rem;
10317
+ }
10318
+
10294
10319
  .tb\:mr-4{
10295
10320
  margin-right: 1rem;
10296
10321
  }
@@ -10443,6 +10468,12 @@ select{
10443
10468
  max-width: 763px;
10444
10469
  }
10445
10470
 
10471
+ .tb\:-translate-y-1\/2{
10472
+ --tw-translate-y: -50%;
10473
+ -webkit-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));
10474
+ 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));
10475
+ }
10476
+
10446
10477
  .tb\:snap-always{
10447
10478
  scroll-snap-stop: always;
10448
10479
  }
@@ -10535,6 +10566,10 @@ select{
10535
10566
  border-radius: 1.5rem;
10536
10567
  }
10537
10568
 
10569
+ .tb\:rounded-full{
10570
+ border-radius: 9999px;
10571
+ }
10572
+
10538
10573
  .tb\:border{
10539
10574
  border-width: 1px;
10540
10575
  }
@@ -10649,6 +10684,18 @@ select{
10649
10684
  padding-bottom: 2rem;
10650
10685
  }
10651
10686
 
10687
+ .tb\:pl-14{
10688
+ padding-left: 3.5rem;
10689
+ }
10690
+
10691
+ .tb\:pl-6{
10692
+ padding-left: 1.5rem;
10693
+ }
10694
+
10695
+ .tb\:pl-8{
10696
+ padding-left: 2rem;
10697
+ }
10698
+
10652
10699
  .tb\:pr-0{
10653
10700
  padding-right: 0px;
10654
10701
  }
@@ -10926,8 +10973,8 @@ select{
10926
10973
 
10927
10974
  .tb\:text-hds-t-quote{
10928
10975
  font-size: 1.125rem;
10929
- line-height: 1.75rem;
10930
- letter-spacing: -0.01em;
10976
+ line-height: 1.5;
10977
+ letter-spacing: -0.016em;
10931
10978
  font-weight: 400;
10932
10979
  }
10933
10980
 
@@ -11087,6 +11134,10 @@ select{
11087
11134
  top: 9rem;
11088
11135
  }
11089
11136
 
11137
+ .tb-m\:ml-6{
11138
+ margin-left: 1.5rem;
11139
+ }
11140
+
11090
11141
  .tb-m\:mr-0{
11091
11142
  margin-right: 0px;
11092
11143
  }
@@ -11697,9 +11748,9 @@ select{
11697
11748
  padding-bottom: 5rem;
11698
11749
  }
11699
11750
 
11700
- .db\:py-6{
11701
- padding-top: 1.5rem;
11702
- padding-bottom: 1.5rem;
11751
+ .db\:py-3{
11752
+ padding-top: 0.75rem;
11753
+ padding-bottom: 0.75rem;
11703
11754
  }
11704
11755
 
11705
11756
  .db\:pb-0{
@@ -11983,8 +12034,8 @@ select{
11983
12034
 
11984
12035
  .db\:text-hds-d-quote{
11985
12036
  font-size: 1.5rem;
11986
- line-height: 2.25rem;
11987
- letter-spacing: -0.01em;
12037
+ line-height: 1.5;
12038
+ letter-spacing: -0.016em;
11988
12039
  font-weight: 400;
11989
12040
  }
11990
12041
 
@@ -12011,6 +12062,10 @@ select{
12011
12062
  margin-bottom: 0px;
12012
12063
  }
12013
12064
 
12065
+ .\[\&\>div\]\:inline-block>div{
12066
+ display: inline-block;
12067
+ }
12068
+
12014
12069
  .\[\&\>p\>a\]\:text-blue-600>p>a{
12015
12070
  --tw-text-opacity: 1;
12016
12071
  color: rgb(30 86 227 / var(--tw-text-opacity));
@@ -155,6 +155,7 @@ module.exports = {
155
155
  },
156
156
  letterSpacing: {
157
157
  tightest: '-.02em',
158
+ tighter2: '-0.016em',
158
159
  tighter: '-.015em',
159
160
  tight: '-.01em',
160
161
  normal: '0',
@@ -794,20 +795,20 @@ module.exports = {
794
795
 
795
796
  // quote-style
796
797
  'hds-m-quote': ['1.125rem', {
797
- lineHeight: '1.75rem',
798
- letterSpacing: '-0.01em',
798
+ lineHeight: '1.5',
799
+ letterSpacing: '-0.016em',
799
800
  fontWeight: '400',
800
801
  fontStyle: 'italic',
801
802
  }],
802
803
  'hds-t-quote': ['1.125rem', {
803
- lineHeight: '1.75rem',
804
- letterSpacing: '-0.01em',
804
+ lineHeight: '1.5',
805
+ letterSpacing: '-0.016em',
805
806
  fontWeight: '400',
806
807
  fontStyle: 'italic',
807
808
  }],
808
809
  'hds-d-quote': ['1.5rem', {
809
- lineHeight: '2.25rem',
810
- letterSpacing: '-0.01em',
810
+ lineHeight: '1.5',
811
+ letterSpacing: '-0.016em',
811
812
  fontWeight: '400',
812
813
  fontStyle: 'italic',
813
814
  }],