hds-web 1.40.3 → 1.40.5
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.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/HDS/components/Headers/v3Header.js +11 -2
package/package.json
CHANGED
@@ -456,7 +456,11 @@ export default function V3Header(props) {
|
|
456
456
|
{!props.hideSearch && (
|
457
457
|
<AlgoliaSearch isDarkMode={isDarkMode} {...props} />
|
458
458
|
)}
|
459
|
-
<a
|
459
|
+
<a
|
460
|
+
href="/contact-us"
|
461
|
+
className="hds-hidden db:flex"
|
462
|
+
data-testid={`${props?.website_key}-contact-us`}
|
463
|
+
>
|
460
464
|
<Typography
|
461
465
|
textStyle="body3c-medium"
|
462
466
|
className={
|
@@ -481,6 +485,7 @@ export default function V3Header(props) {
|
|
481
485
|
rightAnimatedArrowColor="#3970FD"
|
482
486
|
animatedHoverStroke="group-hover:stroke-neutral-0"
|
483
487
|
className="hds-hidden tb-l:flex"
|
488
|
+
data-testid={`${props?.website_key}-log-in`}
|
484
489
|
/>
|
485
490
|
</a>
|
486
491
|
)}
|
@@ -496,6 +501,7 @@ export default function V3Header(props) {
|
|
496
501
|
rightAnimatedArrowColor="#ffffff"
|
497
502
|
animatedHoverStroke="group-hover:stroke-neutral-0"
|
498
503
|
className="hds-hidden tb:flex"
|
504
|
+
data-testid={`${props?.website_key}-get-started`}
|
499
505
|
/>
|
500
506
|
</a>
|
501
507
|
</div>
|
@@ -654,7 +660,10 @@ export default function V3Header(props) {
|
|
654
660
|
/>
|
655
661
|
</div>
|
656
662
|
</a>
|
657
|
-
<a
|
663
|
+
<a
|
664
|
+
href="https://hasura.io/contact-us"
|
665
|
+
data-testid={`${props?.website_key}-contact-us`}
|
666
|
+
>
|
658
667
|
<div
|
659
668
|
key={`Contact`}
|
660
669
|
className="flex justify-between items-center p-4 cursor-pointer group"
|