hds-web 1.37.0 → 1.37.2
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.css +1 -1
- package/dist/index.es.css +1 -1
- 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 +8 -7
- package/src/styles/tailwind.css +8 -12
package/package.json
CHANGED
@@ -51,12 +51,12 @@ export default function V3Header(props) {
|
|
51
51
|
};
|
52
52
|
|
53
53
|
const handleDropdownLeave = (index) => {
|
54
|
-
return null;
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
54
|
+
// return null;
|
55
|
+
setDropdownVisibility((prevVisibility) => {
|
56
|
+
const updatedVisibility = [...prevVisibility];
|
57
|
+
updatedVisibility[index] = false;
|
58
|
+
return updatedVisibility;
|
59
|
+
});
|
60
60
|
};
|
61
61
|
|
62
62
|
const renderDropdown = (
|
@@ -580,7 +580,8 @@ V3Header.defaultProps = {
|
|
580
580
|
cta_leftVariantIcon: "zap",
|
581
581
|
cta_leftVariantIconColor: "#6C737F",
|
582
582
|
cta_text: "Get Started",
|
583
|
-
cta_link:
|
583
|
+
cta_link:
|
584
|
+
"https://cloud.hasura.io/signup?pg=nav&plcmt=product-dropdown&cta=get-started",
|
584
585
|
},
|
585
586
|
],
|
586
587
|
},
|
package/src/styles/tailwind.css
CHANGED
@@ -11147,10 +11147,6 @@ select{
|
|
11147
11147
|
min-width: 500px;
|
11148
11148
|
}
|
11149
11149
|
|
11150
|
-
.tb\:min-w-\[130px\]{
|
11151
|
-
min-width: 130px;
|
11152
|
-
}
|
11153
|
-
|
11154
11150
|
.tb\:max-w-\[17rem\]{
|
11155
11151
|
max-width: 17rem;
|
11156
11152
|
}
|
@@ -12011,6 +12007,14 @@ select{
|
|
12011
12007
|
margin-right: 1rem;
|
12012
12008
|
}
|
12013
12009
|
|
12010
|
+
.tb-l\:-ml-1{
|
12011
|
+
margin-left: -0.25rem;
|
12012
|
+
}
|
12013
|
+
|
12014
|
+
.tb-l\:-ml-6{
|
12015
|
+
margin-left: -1.5rem;
|
12016
|
+
}
|
12017
|
+
|
12014
12018
|
.tb-l\:mb-0{
|
12015
12019
|
margin-bottom: 0px;
|
12016
12020
|
}
|
@@ -12023,14 +12027,6 @@ select{
|
|
12023
12027
|
margin-top: 0px;
|
12024
12028
|
}
|
12025
12029
|
|
12026
|
-
.tb-l\:-ml-6{
|
12027
|
-
margin-left: -1.5rem;
|
12028
|
-
}
|
12029
|
-
|
12030
|
-
.tb-l\:-ml-1{
|
12031
|
-
margin-left: -0.25rem;
|
12032
|
-
}
|
12033
|
-
|
12034
12030
|
.tb-l\:block{
|
12035
12031
|
display: block;
|
12036
12032
|
}
|