hds-web 1.38.8 → 1.39.0
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 +2 -2
- package/dist/index.es.css +2 -2
- package/dist/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/HDS/components/Footers/v3Footer.js +30 -28
- package/src/styles/tailwind.css +58 -22
package/package.json
CHANGED
@@ -131,7 +131,7 @@ export default function V3Footer(props) {
|
|
131
131
|
/>
|
132
132
|
</a>
|
133
133
|
</div>
|
134
|
-
<div className="flex justify-between px-4 tb:px-0 tb:justify-start tb-l:justify-between flex-1 flex-wrap gap-y-10 tb:gap-y-16">
|
134
|
+
<div className="flex justify-between px-4 tb:px-0 tb:justify-start tb-l:justify-between flex-1 flex-wrap gap-y-10 tb:gap-y-16 lg:max-w-[712px] 2xl:max-w-[756px]">
|
135
135
|
{props.footerLinks.map((footerLink, index) => (
|
136
136
|
<div key={index} className="min-w-[130px] db-s:min-w-fit">
|
137
137
|
<Typography
|
@@ -141,7 +141,7 @@ export default function V3Footer(props) {
|
|
141
141
|
{footerLink.title}
|
142
142
|
</Typography>
|
143
143
|
{footerLink.links.map((link, subIndex) => (
|
144
|
-
<a href={link.linkUrl}>
|
144
|
+
<a href={link.linkUrl} key={subIndex}>
|
145
145
|
<Typography
|
146
146
|
textStyle="body3"
|
147
147
|
className={
|
@@ -173,29 +173,31 @@ export default function V3Footer(props) {
|
|
173
173
|
</a>
|
174
174
|
))}
|
175
175
|
</div>
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
<
|
180
|
-
<div className="
|
181
|
-
|
182
|
-
{
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
<
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
176
|
+
<div className="flex flex-col md:flex-row justify-between items-center w-full lg:max-w-[716px] 2xl:max-w-[756px]">
|
177
|
+
{isItems && !isError && (
|
178
|
+
<>
|
179
|
+
<a href="https://status.hasura.io/" className="">
|
180
|
+
<div className=" bg-neutral-0 rounded-full shadow hover:shadow-lg transition-all duration-300 px-4 py-2 inline-flex justify-center items-center md:ml-16 lg:ml-0">
|
181
|
+
<div className="w-4 h-4 bg-green-400 rounded-full mr-2"></div>
|
182
|
+
<Typography textStyle="body3" className={"text-neutral-1000"}>
|
183
|
+
{isItems?.status.description}
|
184
|
+
</Typography>
|
185
|
+
</div>
|
186
|
+
</a>
|
187
|
+
</>
|
188
|
+
)}
|
189
|
+
<div>
|
190
|
+
<Typography
|
191
|
+
textStyle="body3c"
|
192
|
+
className={
|
193
|
+
isDarkMode
|
194
|
+
? "text-neutral-400 pt-4 tb-m:pt-0"
|
195
|
+
: "text-neutral-600 pt-4 tb-m:pt-0"
|
196
|
+
}
|
197
|
+
>
|
198
|
+
© {new Date().getFullYear()} Hasura Inc. All rights reserved
|
199
|
+
</Typography>
|
200
|
+
</div>
|
199
201
|
</div>
|
200
202
|
</div>
|
201
203
|
</div>
|
@@ -301,11 +303,11 @@ V3Footer.defaultProps = {
|
|
301
303
|
},
|
302
304
|
{
|
303
305
|
linkText: "Forum",
|
304
|
-
linkUrl: "",
|
306
|
+
linkUrl: "https://github.com/hasura/graphql-engine/discussions",
|
305
307
|
},
|
306
308
|
{
|
307
309
|
linkText: "Meetups",
|
308
|
-
linkUrl: "",
|
310
|
+
linkUrl: "https://www.meetup.com/pro/hasura/",
|
309
311
|
},
|
310
312
|
{
|
311
313
|
linkText: "Monthly call",
|
@@ -313,7 +315,7 @@ V3Footer.defaultProps = {
|
|
313
315
|
},
|
314
316
|
{
|
315
317
|
linkText: "Support",
|
316
|
-
linkUrl: "https://hasura.io/support
|
318
|
+
linkUrl: "https://hasura.io/support",
|
317
319
|
},
|
318
320
|
{
|
319
321
|
linkText: "Contact Us",
|
package/src/styles/tailwind.css
CHANGED
@@ -1527,6 +1527,10 @@ select{
|
|
1527
1527
|
margin-top: 70px;
|
1528
1528
|
}
|
1529
1529
|
|
1530
|
+
.ml-10{
|
1531
|
+
margin-left: 2.5rem;
|
1532
|
+
}
|
1533
|
+
|
1530
1534
|
.line-clamp-3{
|
1531
1535
|
overflow: hidden;
|
1532
1536
|
display: -webkit-box;
|
@@ -11156,6 +11160,10 @@ select{
|
|
11156
11160
|
min-width: 18rem;
|
11157
11161
|
}
|
11158
11162
|
|
11163
|
+
.tb\:min-w-\[200px\]{
|
11164
|
+
min-width: 200px;
|
11165
|
+
}
|
11166
|
+
|
11159
11167
|
.tb\:min-w-\[310px\]{
|
11160
11168
|
min-width: 310px;
|
11161
11169
|
}
|
@@ -11172,28 +11180,6 @@ select{
|
|
11172
11180
|
min-width: 500px;
|
11173
11181
|
}
|
11174
11182
|
|
11175
|
-
.tb\:min-w-\[190px\]{
|
11176
|
-
min-width: 190px;
|
11177
|
-
}
|
11178
|
-
|
11179
|
-
.tb\:min-w-\[170px\]{
|
11180
|
-
min-width: 170px;
|
11181
|
-
}
|
11182
|
-
|
11183
|
-
.tb\:min-w-\[180px\]{
|
11184
|
-
min-width: 180px;
|
11185
|
-
}
|
11186
|
-
|
11187
|
-
.tb\:min-w-\[200px\]{
|
11188
|
-
min-width: 200px;
|
11189
|
-
}
|
11190
|
-
|
11191
|
-
.tb\:min-w-fit{
|
11192
|
-
min-width: -webkit-fit-content;
|
11193
|
-
min-width: -moz-fit-content;
|
11194
|
-
min-width: fit-content;
|
11195
|
-
}
|
11196
|
-
|
11197
11183
|
.tb\:max-w-\[17rem\]{
|
11198
11184
|
max-width: 17rem;
|
11199
11185
|
}
|
@@ -11925,6 +11911,18 @@ select{
|
|
11925
11911
|
}
|
11926
11912
|
|
11927
11913
|
@media (min-width: 768px){
|
11914
|
+
.md\:ml-10{
|
11915
|
+
margin-left: 2.5rem;
|
11916
|
+
}
|
11917
|
+
|
11918
|
+
.md\:ml-16{
|
11919
|
+
margin-left: 4rem;
|
11920
|
+
}
|
11921
|
+
|
11922
|
+
.md\:flex-row{
|
11923
|
+
flex-direction: row;
|
11924
|
+
}
|
11925
|
+
|
11928
11926
|
.md\:px-6{
|
11929
11927
|
padding-left: 1.5rem;
|
11930
11928
|
padding-right: 1.5rem;
|
@@ -12351,6 +12349,10 @@ select{
|
|
12351
12349
|
}
|
12352
12350
|
|
12353
12351
|
@media (min-width: 1024px){
|
12352
|
+
.lg\:ml-0{
|
12353
|
+
margin-left: 0px;
|
12354
|
+
}
|
12355
|
+
|
12354
12356
|
.lg\:flex{
|
12355
12357
|
display: flex;
|
12356
12358
|
}
|
@@ -12363,6 +12365,18 @@ select{
|
|
12363
12365
|
height: auto;
|
12364
12366
|
}
|
12365
12367
|
|
12368
|
+
.lg\:max-w-\[716px\]{
|
12369
|
+
max-width: 716px;
|
12370
|
+
}
|
12371
|
+
|
12372
|
+
.lg\:max-w-\[714px\]{
|
12373
|
+
max-width: 714px;
|
12374
|
+
}
|
12375
|
+
|
12376
|
+
.lg\:max-w-\[712px\]{
|
12377
|
+
max-width: 712px;
|
12378
|
+
}
|
12379
|
+
|
12366
12380
|
.lg\:grid-cols-2{
|
12367
12381
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
12368
12382
|
}
|
@@ -12394,6 +12408,10 @@ select{
|
|
12394
12408
|
padding-top: 0.5rem;
|
12395
12409
|
}
|
12396
12410
|
|
12411
|
+
.lg\:pl-0{
|
12412
|
+
padding-left: 0px;
|
12413
|
+
}
|
12414
|
+
|
12397
12415
|
.db-s\:mb-0{
|
12398
12416
|
margin-bottom: 0px;
|
12399
12417
|
}
|
@@ -12584,6 +12602,14 @@ select{
|
|
12584
12602
|
max-width: 625px;
|
12585
12603
|
}
|
12586
12604
|
|
12605
|
+
.db\:max-w-\[716px\]{
|
12606
|
+
max-width: 716px;
|
12607
|
+
}
|
12608
|
+
|
12609
|
+
.db\:max-w-\[714px\]{
|
12610
|
+
max-width: 714px;
|
12611
|
+
}
|
12612
|
+
|
12587
12613
|
.db\:snap-center{
|
12588
12614
|
scroll-snap-align: center;
|
12589
12615
|
}
|
@@ -13015,6 +13041,16 @@ select{
|
|
13015
13041
|
}
|
13016
13042
|
}
|
13017
13043
|
|
13044
|
+
@media (min-width: 1536px){
|
13045
|
+
.\32xl\:max-w-\[914px\]{
|
13046
|
+
max-width: 914px;
|
13047
|
+
}
|
13048
|
+
|
13049
|
+
.\32xl\:max-w-\[916px\]{
|
13050
|
+
max-width: 916px;
|
13051
|
+
}
|
13052
|
+
}
|
13053
|
+
|
13018
13054
|
.\[\&\>\*\]\:mb-8>*{
|
13019
13055
|
margin-bottom: 2rem;
|
13020
13056
|
}
|