hds-web 1.2.1 → 1.2.3
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 +6 -6
- package/dist/index.js +6 -6
- package/package.json +1 -1
- package/src/HDS/assets/icons/hasura-1.svg +3 -0
- package/src/HDS/assets/icons/hasura-2.svg +3 -0
- package/src/HDS/assets/icons/hasura-3.svg +3 -0
- package/src/HDS/components/Buttons/button.js +1 -1
- package/src/HDS/components/Cards/Misc/iconCard.js +68 -59
- package/src/HDS/components/Cards/Misc/talkCard.js +41 -35
- package/src/HDS/components/Headers/v3Header.js +2 -2
- package/src/HDS/components/Hero/h2.js +7 -5
- package/src/HDS/components/Tabs/tab.js +1 -1
- package/src/HDS/components/common-components/Icon/IconMap.js +6 -0
- package/src/HDS/foundation/Typography/Typography.js +1 -1
- package/src/HDS/helpers/Media/index.js +1 -0
- package/src/HDS/helpers/Media/mediabox.js +76 -0
- package/src/HDS/modules/index.js +2 -1
- package/src/HDS/modules/navCard/index.js +1 -0
- package/src/HDS/modules/navCard/navCard.js +106 -0
- package/src/styles/tailwind.css +87 -68
- package/tailwind.config.js +1 -0
package/src/styles/tailwind.css
CHANGED
@@ -879,6 +879,10 @@ select {
|
|
879
879
|
left: 50%;
|
880
880
|
}
|
881
881
|
|
882
|
+
.left-14 {
|
883
|
+
left: 3.5rem;
|
884
|
+
}
|
885
|
+
|
882
886
|
.left-2 {
|
883
887
|
left: 0.5rem;
|
884
888
|
}
|
@@ -891,6 +895,10 @@ select {
|
|
891
895
|
left: 17.6%;
|
892
896
|
}
|
893
897
|
|
898
|
+
.left-\[45\%\] {
|
899
|
+
left: 45%;
|
900
|
+
}
|
901
|
+
|
894
902
|
.left-\[82\.3\%\] {
|
895
903
|
left: 82.3%;
|
896
904
|
}
|
@@ -915,8 +923,8 @@ select {
|
|
915
923
|
top: 0px;
|
916
924
|
}
|
917
925
|
|
918
|
-
.
|
919
|
-
|
926
|
+
.top-2 {
|
927
|
+
top: 0.5rem;
|
920
928
|
}
|
921
929
|
|
922
930
|
.isolate {
|
@@ -1097,10 +1105,6 @@ select {
|
|
1097
1105
|
margin-left: -1px;
|
1098
1106
|
}
|
1099
1107
|
|
1100
|
-
.-mr-2 {
|
1101
|
-
margin-right: -0.5rem;
|
1102
|
-
}
|
1103
|
-
|
1104
1108
|
.-mt-5 {
|
1105
1109
|
margin-top: -1.25rem;
|
1106
1110
|
}
|
@@ -1245,6 +1249,13 @@ select {
|
|
1245
1249
|
margin-top: 2.25rem;
|
1246
1250
|
}
|
1247
1251
|
|
1252
|
+
.line-clamp-3 {
|
1253
|
+
overflow: hidden;
|
1254
|
+
display: -webkit-box;
|
1255
|
+
-webkit-box-orient: vertical;
|
1256
|
+
-webkit-line-clamp: 3;
|
1257
|
+
}
|
1258
|
+
|
1248
1259
|
.block {
|
1249
1260
|
display: block;
|
1250
1261
|
}
|
@@ -1357,6 +1368,10 @@ select {
|
|
1357
1368
|
height: 130px;
|
1358
1369
|
}
|
1359
1370
|
|
1371
|
+
.h-\[33px\] {
|
1372
|
+
height: 33px;
|
1373
|
+
}
|
1374
|
+
|
1360
1375
|
.h-\[60px\] {
|
1361
1376
|
height: 60px;
|
1362
1377
|
}
|
@@ -1369,14 +1384,18 @@ select {
|
|
1369
1384
|
height: 100%;
|
1370
1385
|
}
|
1371
1386
|
|
1372
|
-
.h
|
1373
|
-
height:
|
1387
|
+
.h-screen {
|
1388
|
+
height: 100vh;
|
1374
1389
|
}
|
1375
1390
|
|
1376
1391
|
.max-h-\[26\.25\] {
|
1377
1392
|
max-height: 26.25;
|
1378
1393
|
}
|
1379
1394
|
|
1395
|
+
.max-h-full {
|
1396
|
+
max-height: 100%;
|
1397
|
+
}
|
1398
|
+
|
1380
1399
|
.w-1\/2 {
|
1381
1400
|
width: 50%;
|
1382
1401
|
}
|
@@ -1445,6 +1464,10 @@ select {
|
|
1445
1464
|
width: 24rem;
|
1446
1465
|
}
|
1447
1466
|
|
1467
|
+
.w-\[103px\] {
|
1468
|
+
width: 103px;
|
1469
|
+
}
|
1470
|
+
|
1448
1471
|
.w-\[22\.5rem\] {
|
1449
1472
|
width: 22.5rem;
|
1450
1473
|
}
|
@@ -1499,14 +1522,6 @@ select {
|
|
1499
1522
|
width: 100vw;
|
1500
1523
|
}
|
1501
1524
|
|
1502
|
-
.w-\[104px\] {
|
1503
|
-
width: 104px;
|
1504
|
-
}
|
1505
|
-
|
1506
|
-
.w-\[103px\] {
|
1507
|
-
width: 103px;
|
1508
|
-
}
|
1509
|
-
|
1510
1525
|
.min-w-\[15rem\] {
|
1511
1526
|
min-width: 15rem;
|
1512
1527
|
}
|
@@ -1553,6 +1568,14 @@ select {
|
|
1553
1568
|
max-width: 22rem;
|
1554
1569
|
}
|
1555
1570
|
|
1571
|
+
.max-w-\[29\.18rem\] {
|
1572
|
+
max-width: 29.18rem;
|
1573
|
+
}
|
1574
|
+
|
1575
|
+
.max-w-\[44\.44rem\] {
|
1576
|
+
max-width: 44.44rem;
|
1577
|
+
}
|
1578
|
+
|
1556
1579
|
.max-w-\[6rem\] {
|
1557
1580
|
max-width: 6rem;
|
1558
1581
|
}
|
@@ -1561,6 +1584,10 @@ select {
|
|
1561
1584
|
max-width: 882px;
|
1562
1585
|
}
|
1563
1586
|
|
1587
|
+
.max-w-full {
|
1588
|
+
max-width: 100%;
|
1589
|
+
}
|
1590
|
+
|
1564
1591
|
.max-w-max {
|
1565
1592
|
max-width: -webkit-max-content;
|
1566
1593
|
max-width: max-content;
|
@@ -1575,10 +1602,6 @@ select {
|
|
1575
1602
|
max-width: min-content;
|
1576
1603
|
}
|
1577
1604
|
|
1578
|
-
.max-w-\[29\.18rem\] {
|
1579
|
-
max-width: 29.18rem;
|
1580
|
-
}
|
1581
|
-
|
1582
1605
|
.flex-1 {
|
1583
1606
|
flex: 1 1 0%;
|
1584
1607
|
}
|
@@ -1817,6 +1840,10 @@ select {
|
|
1817
1840
|
gap: 3rem;
|
1818
1841
|
}
|
1819
1842
|
|
1843
|
+
.gap-16 {
|
1844
|
+
gap: 4rem;
|
1845
|
+
}
|
1846
|
+
|
1820
1847
|
.gap-2 {
|
1821
1848
|
gap: 0.5rem;
|
1822
1849
|
}
|
@@ -1849,10 +1876,6 @@ select {
|
|
1849
1876
|
gap: 25rem;
|
1850
1877
|
}
|
1851
1878
|
|
1852
|
-
.gap-16 {
|
1853
|
-
gap: 4rem;
|
1854
|
-
}
|
1855
|
-
|
1856
1879
|
.gap-x-1 {
|
1857
1880
|
-webkit-column-gap: 0.25rem;
|
1858
1881
|
column-gap: 0.25rem;
|
@@ -1989,6 +2012,14 @@ select {
|
|
1989
2012
|
border-color: rgb(229 231 235 / var(--tw-divide-opacity));
|
1990
2013
|
}
|
1991
2014
|
|
2015
|
+
.self-start {
|
2016
|
+
align-self: flex-start;
|
2017
|
+
}
|
2018
|
+
|
2019
|
+
.self-end {
|
2020
|
+
align-self: flex-end;
|
2021
|
+
}
|
2022
|
+
|
1992
2023
|
.overflow-auto {
|
1993
2024
|
overflow: auto;
|
1994
2025
|
}
|
@@ -5088,6 +5119,10 @@ select {
|
|
5088
5119
|
padding: 2.5rem;
|
5089
5120
|
}
|
5090
5121
|
|
5122
|
+
.p-16 {
|
5123
|
+
padding: 4rem;
|
5124
|
+
}
|
5125
|
+
|
5091
5126
|
.p-2 {
|
5092
5127
|
padding: 0.5rem;
|
5093
5128
|
}
|
@@ -5264,10 +5299,6 @@ select {
|
|
5264
5299
|
padding-bottom: 2.5rem;
|
5265
5300
|
}
|
5266
5301
|
|
5267
|
-
.pb-14 {
|
5268
|
-
padding-bottom: 3.5rem;
|
5269
|
-
}
|
5270
|
-
|
5271
5302
|
.pb-16 {
|
5272
5303
|
padding-bottom: 4rem;
|
5273
5304
|
}
|
@@ -5400,6 +5431,10 @@ select {
|
|
5400
5431
|
text-align: right;
|
5401
5432
|
}
|
5402
5433
|
|
5434
|
+
.font-petrona {
|
5435
|
+
font-family: Petrona, sans;
|
5436
|
+
}
|
5437
|
+
|
5403
5438
|
.text-2xl {
|
5404
5439
|
font-size: 1.5rem;
|
5405
5440
|
line-height: 2rem;
|
@@ -6373,6 +6408,10 @@ select {
|
|
6373
6408
|
transition-duration: 100ms;
|
6374
6409
|
}
|
6375
6410
|
|
6411
|
+
.duration-1000 {
|
6412
|
+
transition-duration: 1000ms;
|
6413
|
+
}
|
6414
|
+
|
6376
6415
|
.duration-150 {
|
6377
6416
|
transition-duration: 150ms;
|
6378
6417
|
}
|
@@ -7894,6 +7933,10 @@ select {
|
|
7894
7933
|
stroke: #FFFFFF;
|
7895
7934
|
}
|
7896
7935
|
|
7936
|
+
.group:hover .group-hover\:stroke-neutral-900 {
|
7937
|
+
stroke: #111927;
|
7938
|
+
}
|
7939
|
+
|
7897
7940
|
.group:hover .group-hover\:opacity-30 {
|
7898
7941
|
opacity: 0.3;
|
7899
7942
|
}
|
@@ -8132,6 +8175,10 @@ select {
|
|
8132
8175
|
padding-right: 2rem;
|
8133
8176
|
}
|
8134
8177
|
|
8178
|
+
.tb\:pb-14 {
|
8179
|
+
padding-bottom: 3.5rem;
|
8180
|
+
}
|
8181
|
+
|
8135
8182
|
.tb\:pb-8 {
|
8136
8183
|
padding-bottom: 2rem;
|
8137
8184
|
}
|
@@ -8148,10 +8195,6 @@ select {
|
|
8148
8195
|
padding-top: 2.875rem;
|
8149
8196
|
}
|
8150
8197
|
|
8151
|
-
.tb\:pb-14 {
|
8152
|
-
padding-bottom: 3.5rem;
|
8153
|
-
}
|
8154
|
-
|
8155
8198
|
.tb\:text-left {
|
8156
8199
|
text-align: left;
|
8157
8200
|
}
|
@@ -8512,30 +8555,14 @@ select {
|
|
8512
8555
|
margin-left: 3rem;
|
8513
8556
|
}
|
8514
8557
|
|
8515
|
-
.md\:flex {
|
8516
|
-
display: flex;
|
8517
|
-
}
|
8518
|
-
|
8519
8558
|
.md\:hidden {
|
8520
8559
|
display: none;
|
8521
8560
|
}
|
8522
8561
|
|
8523
|
-
.md\:flex-1 {
|
8524
|
-
flex: 1 1 0%;
|
8525
|
-
}
|
8526
|
-
|
8527
|
-
.md\:items-center {
|
8528
|
-
align-items: center;
|
8529
|
-
}
|
8530
|
-
|
8531
8562
|
.md\:justify-start {
|
8532
8563
|
justify-content: flex-start;
|
8533
8564
|
}
|
8534
8565
|
|
8535
|
-
.md\:justify-between {
|
8536
|
-
justify-content: space-between;
|
8537
|
-
}
|
8538
|
-
|
8539
8566
|
.md\:space-x-6 > :not([hidden]) ~ :not([hidden]) {
|
8540
8567
|
--tw-space-x-reverse: 0;
|
8541
8568
|
margin-right: calc(1.5rem * var(--tw-space-x-reverse));
|
@@ -8572,14 +8599,6 @@ select {
|
|
8572
8599
|
width: 50%;
|
8573
8600
|
}
|
8574
8601
|
|
8575
|
-
.tb-l\:w-\[70\%\] {
|
8576
|
-
width: 70%;
|
8577
|
-
}
|
8578
|
-
|
8579
|
-
.tb-l\:w-full {
|
8580
|
-
width: 100%;
|
8581
|
-
}
|
8582
|
-
|
8583
8602
|
.tb-l\:w-\[38\%\] {
|
8584
8603
|
width: 38%;
|
8585
8604
|
}
|
@@ -8588,6 +8607,14 @@ select {
|
|
8588
8607
|
width: 62%;
|
8589
8608
|
}
|
8590
8609
|
|
8610
|
+
.tb-l\:w-\[70\%\] {
|
8611
|
+
width: 70%;
|
8612
|
+
}
|
8613
|
+
|
8614
|
+
.tb-l\:w-full {
|
8615
|
+
width: 100%;
|
8616
|
+
}
|
8617
|
+
|
8591
8618
|
.tb-l\:min-w-\[400px\] {
|
8592
8619
|
min-width: 400px;
|
8593
8620
|
}
|
@@ -8608,10 +8635,6 @@ select {
|
|
8608
8635
|
justify-content: flex-start;
|
8609
8636
|
}
|
8610
8637
|
|
8611
|
-
.tb-l\:justify-end {
|
8612
|
-
justify-content: flex-end;
|
8613
|
-
}
|
8614
|
-
|
8615
8638
|
.tb-l\:justify-between {
|
8616
8639
|
justify-content: space-between;
|
8617
8640
|
}
|
@@ -8761,14 +8784,14 @@ select {
|
|
8761
8784
|
gap: 0px;
|
8762
8785
|
}
|
8763
8786
|
|
8764
|
-
.db\:gap-36 {
|
8765
|
-
gap: 9rem;
|
8766
|
-
}
|
8767
|
-
|
8768
8787
|
.db\:gap-28 {
|
8769
8788
|
gap: 7rem;
|
8770
8789
|
}
|
8771
8790
|
|
8791
|
+
.db\:gap-36 {
|
8792
|
+
gap: 9rem;
|
8793
|
+
}
|
8794
|
+
|
8772
8795
|
.db\:gap-x-10 {
|
8773
8796
|
-webkit-column-gap: 2.5rem;
|
8774
8797
|
column-gap: 2.5rem;
|
@@ -9100,10 +9123,6 @@ select {
|
|
9100
9123
|
padding-bottom: 0.5rem;
|
9101
9124
|
}
|
9102
9125
|
|
9103
|
-
.\[\&\>p\]\:last\:pb-0:last-child>p {
|
9104
|
-
padding-bottom: 0px;
|
9105
|
-
}
|
9106
|
-
|
9107
9126
|
.last\:\[\&\>p\]\:pb-0>p:last-child {
|
9108
9127
|
padding-bottom: 0px;
|
9109
9128
|
}
|