hds-web 1.1.5 → 1.1.8
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 +13 -13
- package/dist/index.js +13 -13
- package/package.json +1 -1
- package/src/HDS/assets/icons/check-circle.svg +1 -1
- package/src/HDS/components/BadgesCaption/badges.js +8 -8
- package/src/HDS/components/Buttons/button.js +7 -3
- package/src/HDS/components/Cards/Dropdown/index.js +1 -0
- package/src/HDS/components/Cards/Dropdown/v3Dropdown.js +63 -0
- package/src/HDS/components/Cards/Menu/flyoutA.js +88 -0
- package/src/HDS/components/Cards/Menu/flyoutB.js +30 -28
- package/src/HDS/components/Cards/Menu/flyoutC.js +31 -0
- package/src/HDS/components/Cards/Menu/index.js +3 -2
- package/src/HDS/components/Cards/Misc/iconCard.js +81 -9
- package/src/HDS/components/Cards/Misc/talkCard.js +14 -12
- package/src/HDS/components/Headers/v3Header.js +91 -79
- package/src/HDS/components/Hero/h2.js +33 -17
- package/src/HDS/components/Snippet/CodeSnippet.js +1 -0
- package/src/HDS/components/Tables/index.js +2 -1
- package/src/HDS/components/Tables/tableA.js +6 -13
- package/src/HDS/components/Tables/tableC.js +71 -0
- package/src/index.css +1 -1
- package/src/styles/tailwind.css +96 -77
- package/tailwind.config.js +0 -3
package/src/styles/tailwind.css
CHANGED
@@ -1089,10 +1089,6 @@ select {
|
|
1089
1089
|
margin-left: -0.75rem;
|
1090
1090
|
}
|
1091
1091
|
|
1092
|
-
.-ml-4 {
|
1093
|
-
margin-left: -1rem;
|
1094
|
-
}
|
1095
|
-
|
1096
1092
|
.-ml-px {
|
1097
1093
|
margin-left: -1px;
|
1098
1094
|
}
|
@@ -1173,6 +1169,10 @@ select {
|
|
1173
1169
|
margin-left: 2rem;
|
1174
1170
|
}
|
1175
1171
|
|
1172
|
+
.ml-\[9\.55rem\] {
|
1173
|
+
margin-left: 9.55rem;
|
1174
|
+
}
|
1175
|
+
|
1176
1176
|
.mr-1 {
|
1177
1177
|
margin-right: 0.25rem;
|
1178
1178
|
}
|
@@ -1229,6 +1229,10 @@ select {
|
|
1229
1229
|
margin-top: 1.5rem;
|
1230
1230
|
}
|
1231
1231
|
|
1232
|
+
.mt-7 {
|
1233
|
+
margin-top: 1.75rem;
|
1234
|
+
}
|
1235
|
+
|
1232
1236
|
.mt-8 {
|
1233
1237
|
margin-top: 2rem;
|
1234
1238
|
}
|
@@ -1305,6 +1309,10 @@ select {
|
|
1305
1309
|
height: 0.625rem;
|
1306
1310
|
}
|
1307
1311
|
|
1312
|
+
.h-20 {
|
1313
|
+
height: 5rem;
|
1314
|
+
}
|
1315
|
+
|
1308
1316
|
.h-24 {
|
1309
1317
|
height: 6rem;
|
1310
1318
|
}
|
@@ -1345,14 +1353,14 @@ select {
|
|
1345
1353
|
height: 130px;
|
1346
1354
|
}
|
1347
1355
|
|
1348
|
-
.h-\[580px\] {
|
1349
|
-
height: 580px;
|
1350
|
-
}
|
1351
|
-
|
1352
1356
|
.h-\[60px\] {
|
1353
1357
|
height: 60px;
|
1354
1358
|
}
|
1355
1359
|
|
1360
|
+
.h-\[calc\(100\%-112px\)\] {
|
1361
|
+
height: calc(100% - 112px);
|
1362
|
+
}
|
1363
|
+
|
1356
1364
|
.h-full {
|
1357
1365
|
height: 100%;
|
1358
1366
|
}
|
@@ -1389,6 +1397,10 @@ select {
|
|
1389
1397
|
width: 0.625rem;
|
1390
1398
|
}
|
1391
1399
|
|
1400
|
+
.w-20 {
|
1401
|
+
width: 5rem;
|
1402
|
+
}
|
1403
|
+
|
1392
1404
|
.w-24 {
|
1393
1405
|
width: 6rem;
|
1394
1406
|
}
|
@@ -1437,10 +1449,6 @@ select {
|
|
1437
1449
|
width: 290px;
|
1438
1450
|
}
|
1439
1451
|
|
1440
|
-
.w-\[560px\] {
|
1441
|
-
width: 560px;
|
1442
|
-
}
|
1443
|
-
|
1444
1452
|
.w-\[60\%\] {
|
1445
1453
|
width: 60%;
|
1446
1454
|
}
|
@@ -1491,6 +1499,10 @@ select {
|
|
1491
1499
|
min-width: 18rem;
|
1492
1500
|
}
|
1493
1501
|
|
1502
|
+
.min-w-\[348px\] {
|
1503
|
+
min-width: 348px;
|
1504
|
+
}
|
1505
|
+
|
1494
1506
|
.min-w-fit {
|
1495
1507
|
min-width: -webkit-fit-content;
|
1496
1508
|
min-width: -moz-fit-content;
|
@@ -1809,10 +1821,6 @@ select {
|
|
1809
1821
|
gap: 1.5rem;
|
1810
1822
|
}
|
1811
1823
|
|
1812
|
-
.gap-8 {
|
1813
|
-
gap: 2rem;
|
1814
|
-
}
|
1815
|
-
|
1816
1824
|
.gap-\[14rem\] {
|
1817
1825
|
gap: 14rem;
|
1818
1826
|
}
|
@@ -1942,6 +1950,11 @@ select {
|
|
1942
1950
|
border-color: rgb(30 86 227 / 0.1);
|
1943
1951
|
}
|
1944
1952
|
|
1953
|
+
.divide-neutral-100 > :not([hidden]) ~ :not([hidden]) {
|
1954
|
+
--tw-divide-opacity: 1;
|
1955
|
+
border-color: rgb(243 244 246 / var(--tw-divide-opacity));
|
1956
|
+
}
|
1957
|
+
|
1945
1958
|
.divide-neutral-150 > :not([hidden]) ~ :not([hidden]) {
|
1946
1959
|
--tw-divide-opacity: 1;
|
1947
1960
|
border-color: rgb(236 237 240 / var(--tw-divide-opacity));
|
@@ -2141,11 +2154,6 @@ select {
|
|
2141
2154
|
border-style: none;
|
2142
2155
|
}
|
2143
2156
|
|
2144
|
-
.border-amber-400 {
|
2145
|
-
--tw-border-opacity: 1;
|
2146
|
-
border-color: rgb(255 168 27 / var(--tw-border-opacity));
|
2147
|
-
}
|
2148
|
-
|
2149
2157
|
.border-amber-600 {
|
2150
2158
|
--tw-border-opacity: 1;
|
2151
2159
|
border-color: rgb(184 88 0 / var(--tw-border-opacity));
|
@@ -2181,11 +2189,6 @@ select {
|
|
2181
2189
|
border-color: rgb(62 202 232 / var(--tw-border-opacity));
|
2182
2190
|
}
|
2183
2191
|
|
2184
|
-
.border-green-400 {
|
2185
|
-
--tw-border-opacity: 1;
|
2186
|
-
border-color: rgb(57 218 170 / var(--tw-border-opacity));
|
2187
|
-
}
|
2188
|
-
|
2189
2192
|
.border-neutral-0 {
|
2190
2193
|
--tw-border-opacity: 1;
|
2191
2194
|
border-color: rgb(255 255 255 / var(--tw-border-opacity));
|
@@ -2221,21 +2224,11 @@ select {
|
|
2221
2224
|
border-color: rgb(255 188 214 / var(--tw-border-opacity));
|
2222
2225
|
}
|
2223
2226
|
|
2224
|
-
.border-pink-400 {
|
2225
|
-
--tw-border-opacity: 1;
|
2226
|
-
border-color: rgb(246 119 170 / var(--tw-border-opacity));
|
2227
|
-
}
|
2228
|
-
|
2229
2227
|
.border-pink-500 {
|
2230
2228
|
--tw-border-opacity: 1;
|
2231
2229
|
border-color: rgb(225 58 124 / var(--tw-border-opacity));
|
2232
2230
|
}
|
2233
2231
|
|
2234
|
-
.border-purple-400 {
|
2235
|
-
--tw-border-opacity: 1;
|
2236
|
-
border-color: rgb(180 135 255 / var(--tw-border-opacity));
|
2237
|
-
}
|
2238
|
-
|
2239
2232
|
.border-b-neutral-150 {
|
2240
2233
|
--tw-border-opacity: 1;
|
2241
2234
|
border-bottom-color: rgb(236 237 240 / var(--tw-border-opacity));
|
@@ -4655,6 +4648,10 @@ select {
|
|
4655
4648
|
--tw-gradient-to-position: ;
|
4656
4649
|
}
|
4657
4650
|
|
4651
|
+
.fill-neutral-100 {
|
4652
|
+
fill: #F3F4F6;
|
4653
|
+
}
|
4654
|
+
|
4658
4655
|
.stroke-amber-100 {
|
4659
4656
|
stroke: #FFF3D4;
|
4660
4657
|
}
|
@@ -5063,6 +5060,10 @@ select {
|
|
5063
5060
|
padding: 0.375rem;
|
5064
5061
|
}
|
5065
5062
|
|
5063
|
+
.p-10 {
|
5064
|
+
padding: 2.5rem;
|
5065
|
+
}
|
5066
|
+
|
5066
5067
|
.p-2 {
|
5067
5068
|
padding: 0.5rem;
|
5068
5069
|
}
|
@@ -5195,6 +5196,11 @@ select {
|
|
5195
5196
|
padding-bottom: 0.625rem;
|
5196
5197
|
}
|
5197
5198
|
|
5199
|
+
.py-20 {
|
5200
|
+
padding-top: 5rem;
|
5201
|
+
padding-bottom: 5rem;
|
5202
|
+
}
|
5203
|
+
|
5198
5204
|
.py-3 {
|
5199
5205
|
padding-top: 0.75rem;
|
5200
5206
|
padding-bottom: 0.75rem;
|
@@ -5354,18 +5360,10 @@ select {
|
|
5354
5360
|
padding-top: 1rem;
|
5355
5361
|
}
|
5356
5362
|
|
5357
|
-
.pt-5 {
|
5358
|
-
padding-top: 1.25rem;
|
5359
|
-
}
|
5360
|
-
|
5361
5363
|
.pt-6 {
|
5362
5364
|
padding-top: 1.5rem;
|
5363
5365
|
}
|
5364
5366
|
|
5365
|
-
.pr-1 {
|
5366
|
-
padding-right: 0.25rem;
|
5367
|
-
}
|
5368
|
-
|
5369
5367
|
.text-left {
|
5370
5368
|
text-align: left;
|
5371
5369
|
}
|
@@ -6262,10 +6260,6 @@ select {
|
|
6262
6260
|
--tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity));
|
6263
6261
|
}
|
6264
6262
|
|
6265
|
-
.ring-opacity-5 {
|
6266
|
-
--tw-ring-opacity: 0.05;
|
6267
|
-
}
|
6268
|
-
|
6269
6263
|
.blur {
|
6270
6264
|
--tw-blur: blur(8px);
|
6271
6265
|
-webkit-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
@@ -7148,7 +7142,7 @@ select {
|
|
7148
7142
|
}
|
7149
7143
|
|
7150
7144
|
.bg-transparent{
|
7151
|
-
background-color: transparent;
|
7145
|
+
background-color: transparent !important;
|
7152
7146
|
}
|
7153
7147
|
|
7154
7148
|
.language-javascript {
|
@@ -7955,6 +7949,10 @@ select {
|
|
7955
7949
|
display: inline-flex;
|
7956
7950
|
}
|
7957
7951
|
|
7952
|
+
.tb\:grid {
|
7953
|
+
display: grid;
|
7954
|
+
}
|
7955
|
+
|
7958
7956
|
.tb\:hidden {
|
7959
7957
|
display: none;
|
7960
7958
|
}
|
@@ -7989,6 +7987,10 @@ select {
|
|
7989
7987
|
min-width: 18rem;
|
7990
7988
|
}
|
7991
7989
|
|
7990
|
+
.tb\:min-w-\[28\.063rem\] {
|
7991
|
+
min-width: 28.063rem;
|
7992
|
+
}
|
7993
|
+
|
7992
7994
|
.tb\:min-w-\[310px\] {
|
7993
7995
|
min-width: 310px;
|
7994
7996
|
}
|
@@ -8021,6 +8023,10 @@ select {
|
|
8021
8023
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
8022
8024
|
}
|
8023
8025
|
|
8026
|
+
.tb\:flex-row {
|
8027
|
+
flex-direction: row;
|
8028
|
+
}
|
8029
|
+
|
8024
8030
|
.tb\:flex-col {
|
8025
8031
|
flex-direction: column;
|
8026
8032
|
}
|
@@ -8049,6 +8055,11 @@ select {
|
|
8049
8055
|
gap: 31.5rem;
|
8050
8056
|
}
|
8051
8057
|
|
8058
|
+
.tb\:gap-x-16 {
|
8059
|
+
-webkit-column-gap: 4rem;
|
8060
|
+
column-gap: 4rem;
|
8061
|
+
}
|
8062
|
+
|
8052
8063
|
.tb\:rounded-2xl {
|
8053
8064
|
border-radius: 1rem;
|
8054
8065
|
}
|
@@ -8365,14 +8376,6 @@ select {
|
|
8365
8376
|
margin-right: -0px;
|
8366
8377
|
}
|
8367
8378
|
|
8368
|
-
.sm\:ml-16 {
|
8369
|
-
margin-left: 4rem;
|
8370
|
-
}
|
8371
|
-
|
8372
|
-
.sm\:mt-0 {
|
8373
|
-
margin-top: 0px;
|
8374
|
-
}
|
8375
|
-
|
8376
8379
|
.sm\:block {
|
8377
8380
|
display: block;
|
8378
8381
|
}
|
@@ -8393,26 +8396,14 @@ select {
|
|
8393
8396
|
aspect-ratio: 16/9;
|
8394
8397
|
}
|
8395
8398
|
|
8396
|
-
.sm\:h-12 {
|
8397
|
-
height: 3rem;
|
8398
|
-
}
|
8399
|
-
|
8400
8399
|
.sm\:h-32 {
|
8401
8400
|
height: 8rem;
|
8402
8401
|
}
|
8403
8402
|
|
8404
|
-
.sm\:w-12 {
|
8405
|
-
width: 3rem;
|
8406
|
-
}
|
8407
|
-
|
8408
8403
|
.sm\:flex-auto {
|
8409
8404
|
flex: 1 1 auto;
|
8410
8405
|
}
|
8411
8406
|
|
8412
|
-
.sm\:flex-none {
|
8413
|
-
flex: none;
|
8414
|
-
}
|
8415
|
-
|
8416
8407
|
.sm\:flex-row {
|
8417
8408
|
flex-direction: row;
|
8418
8409
|
}
|
@@ -8434,10 +8425,6 @@ select {
|
|
8434
8425
|
column-gap: 2rem;
|
8435
8426
|
}
|
8436
8427
|
|
8437
|
-
.sm\:p-8 {
|
8438
|
-
padding: 2rem;
|
8439
|
-
}
|
8440
|
-
|
8441
8428
|
.sm\:px-3 {
|
8442
8429
|
padding-left: 0.75rem;
|
8443
8430
|
padding-right: 0.75rem;
|
@@ -8553,10 +8540,26 @@ select {
|
|
8553
8540
|
width: 70%;
|
8554
8541
|
}
|
8555
8542
|
|
8543
|
+
.tb-l\:w-full {
|
8544
|
+
width: 100%;
|
8545
|
+
}
|
8546
|
+
|
8547
|
+
.tb-l\:w-\[38\%\] {
|
8548
|
+
width: 38%;
|
8549
|
+
}
|
8550
|
+
|
8551
|
+
.tb-l\:w-\[62\%\] {
|
8552
|
+
width: 62%;
|
8553
|
+
}
|
8554
|
+
|
8556
8555
|
.tb-l\:min-w-\[400px\] {
|
8557
8556
|
min-width: 400px;
|
8558
8557
|
}
|
8559
8558
|
|
8559
|
+
.tb-l\:flex-row {
|
8560
|
+
flex-direction: row;
|
8561
|
+
}
|
8562
|
+
|
8560
8563
|
.tb-l\:flex-col {
|
8561
8564
|
flex-direction: column;
|
8562
8565
|
}
|
@@ -8597,6 +8600,10 @@ select {
|
|
8597
8600
|
.tb-l\:text-left {
|
8598
8601
|
text-align: left;
|
8599
8602
|
}
|
8603
|
+
|
8604
|
+
.tb-l\:text-center {
|
8605
|
+
text-align: center;
|
8606
|
+
}
|
8600
8607
|
}
|
8601
8608
|
|
8602
8609
|
@media (min-width: 1024px) {
|
@@ -8612,10 +8619,6 @@ select {
|
|
8612
8619
|
height: auto;
|
8613
8620
|
}
|
8614
8621
|
|
8615
|
-
.lg\:max-w-3xl {
|
8616
|
-
max-width: 48rem;
|
8617
|
-
}
|
8618
|
-
|
8619
8622
|
.lg\:grid-cols-2 {
|
8620
8623
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
8621
8624
|
}
|
@@ -8718,6 +8721,11 @@ select {
|
|
8718
8721
|
gap: 9rem;
|
8719
8722
|
}
|
8720
8723
|
|
8724
|
+
.db\:gap-x-10 {
|
8725
|
+
-webkit-column-gap: 2.5rem;
|
8726
|
+
column-gap: 2.5rem;
|
8727
|
+
}
|
8728
|
+
|
8721
8729
|
.db\:gap-x-8 {
|
8722
8730
|
-webkit-column-gap: 2rem;
|
8723
8731
|
column-gap: 2rem;
|
@@ -9025,6 +9033,13 @@ select {
|
|
9025
9033
|
}
|
9026
9034
|
}
|
9027
9035
|
|
9036
|
+
@media (min-width: 1880px) {
|
9037
|
+
.min-\[1880px\]\:gap-x-72 {
|
9038
|
+
-webkit-column-gap: 18rem;
|
9039
|
+
column-gap: 18rem;
|
9040
|
+
}
|
9041
|
+
}
|
9042
|
+
|
9028
9043
|
.\[\&\>\*\]\:mb-8>* {
|
9029
9044
|
margin-bottom: 2rem;
|
9030
9045
|
}
|
@@ -9037,6 +9052,10 @@ select {
|
|
9037
9052
|
padding-bottom: 0.5rem;
|
9038
9053
|
}
|
9039
9054
|
|
9055
|
+
.\[\&\>p\]\:last\:pb-0:last-child>p {
|
9056
|
+
padding-bottom: 0px;
|
9057
|
+
}
|
9058
|
+
|
9040
9059
|
.\[\&\>span\]\:pb-2>span {
|
9041
9060
|
padding-bottom: 0.5rem;
|
9042
9061
|
}
|
package/tailwind.config.js
CHANGED
@@ -784,21 +784,18 @@ module.exports = {
|
|
784
784
|
letterSpacing: '-0.01em',
|
785
785
|
fontWeight: '400',
|
786
786
|
fontStyle: 'italic',
|
787
|
-
fontFamily: 'Petrona'
|
788
787
|
}],
|
789
788
|
'hds-t-quote': ['1.125rem', {
|
790
789
|
lineHeight: '1.75rem',
|
791
790
|
letterSpacing: '-0.01em',
|
792
791
|
fontWeight: '400',
|
793
792
|
fontStyle: 'italic',
|
794
|
-
fontFamily: 'Petrona'
|
795
793
|
}],
|
796
794
|
'hds-d-quote': ['1.5rem', {
|
797
795
|
lineHeight: '2.25rem',
|
798
796
|
letterSpacing: '-0.01em',
|
799
797
|
fontWeight: '400',
|
800
798
|
fontStyle: 'italic',
|
801
|
-
fontFamily: 'Petrona'
|
802
799
|
}],
|
803
800
|
// add more for more breakpoints
|
804
801
|
|