hds-web 1.4.3 → 1.4.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.css +2 -2
- package/dist/index.es.css +2 -2
- package/dist/index.es.js +4 -4
- package/dist/index.js +4 -4
- package/package.json +1 -1
- package/src/HDS/components/Avatars/hasConAv.js +6 -6
- package/src/HDS/components/Avatars/profileAvatar.js +1 -1
- package/src/HDS/components/Cards/Misc/talkcard2.js +6 -6
- package/src/HDS/components/Carousels/carousel.js +1 -1
- package/src/HDS/components/Tables/tableD.js +87 -133
- package/src/HDS/components/Tabs/tab.js +2 -2
- package/src/styles/tailwind.css +159 -15
- package/tailwind.config.js +1 -0
package/src/styles/tailwind.css
CHANGED
@@ -735,6 +735,12 @@ select {
|
|
735
735
|
}
|
736
736
|
}
|
737
737
|
|
738
|
+
@media (min-width: 420px) {
|
739
|
+
.container {
|
740
|
+
max-width: 420px;
|
741
|
+
}
|
742
|
+
}
|
743
|
+
|
738
744
|
@media (min-width: 600px) {
|
739
745
|
.container {
|
740
746
|
max-width: 600px;
|
@@ -1410,10 +1416,6 @@ select {
|
|
1410
1416
|
max-height: 100%;
|
1411
1417
|
}
|
1412
1418
|
|
1413
|
-
.min-h-\[116px\] {
|
1414
|
-
min-height: 116px;
|
1415
|
-
}
|
1416
|
-
|
1417
1419
|
.min-h-\[120px\] {
|
1418
1420
|
min-height: 120px;
|
1419
1421
|
}
|
@@ -1544,6 +1546,10 @@ select {
|
|
1544
1546
|
width: 100vw;
|
1545
1547
|
}
|
1546
1548
|
|
1549
|
+
.w-16 {
|
1550
|
+
width: 4rem;
|
1551
|
+
}
|
1552
|
+
|
1547
1553
|
.min-w-\[11\.5rem\] {
|
1548
1554
|
min-width: 11.5rem;
|
1549
1555
|
}
|
@@ -2025,6 +2031,18 @@ select {
|
|
2025
2031
|
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
2026
2032
|
}
|
2027
2033
|
|
2034
|
+
.divide-x-2 > :not([hidden]) ~ :not([hidden]) {
|
2035
|
+
--tw-divide-x-reverse: 0;
|
2036
|
+
border-right-width: calc(2px * var(--tw-divide-x-reverse));
|
2037
|
+
border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse)));
|
2038
|
+
}
|
2039
|
+
|
2040
|
+
.divide-y-2 > :not([hidden]) ~ :not([hidden]) {
|
2041
|
+
--tw-divide-y-reverse: 0;
|
2042
|
+
border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse)));
|
2043
|
+
border-bottom-width: calc(2px * var(--tw-divide-y-reverse));
|
2044
|
+
}
|
2045
|
+
|
2028
2046
|
.divide-blue-600\/10 > :not([hidden]) ~ :not([hidden]) {
|
2029
2047
|
border-color: rgb(30 86 227 / 0.1);
|
2030
2048
|
}
|
@@ -2170,6 +2188,16 @@ select {
|
|
2170
2188
|
border-top-right-radius: 0.375rem;
|
2171
2189
|
}
|
2172
2190
|
|
2191
|
+
.rounded-l-xl {
|
2192
|
+
border-top-left-radius: 0.75rem;
|
2193
|
+
border-bottom-left-radius: 0.75rem;
|
2194
|
+
}
|
2195
|
+
|
2196
|
+
.rounded-r-xl {
|
2197
|
+
border-top-right-radius: 0.75rem;
|
2198
|
+
border-bottom-right-radius: 0.75rem;
|
2199
|
+
}
|
2200
|
+
|
2173
2201
|
.rounded-tl-2xl {
|
2174
2202
|
border-top-left-radius: 1rem;
|
2175
2203
|
}
|
@@ -2341,6 +2369,11 @@ select {
|
|
2341
2369
|
border-top-color: rgb(236 237 240 / var(--tw-border-opacity));
|
2342
2370
|
}
|
2343
2371
|
|
2372
|
+
.border-b-neutral-200 {
|
2373
|
+
--tw-border-opacity: 1;
|
2374
|
+
border-bottom-color: rgb(229 231 235 / var(--tw-border-opacity));
|
2375
|
+
}
|
2376
|
+
|
2344
2377
|
.bg-amber-100 {
|
2345
2378
|
--tw-bg-opacity: 1;
|
2346
2379
|
background-color: rgb(255 243 212 / var(--tw-bg-opacity));
|
@@ -5478,6 +5511,10 @@ select {
|
|
5478
5511
|
padding-top: 2rem;
|
5479
5512
|
}
|
5480
5513
|
|
5514
|
+
.pt-3 {
|
5515
|
+
padding-top: 0.75rem;
|
5516
|
+
}
|
5517
|
+
|
5481
5518
|
.text-left {
|
5482
5519
|
text-align: left;
|
5483
5520
|
}
|
@@ -5801,6 +5838,10 @@ select {
|
|
5801
5838
|
text-transform: uppercase;
|
5802
5839
|
}
|
5803
5840
|
|
5841
|
+
.capitalize {
|
5842
|
+
text-transform: capitalize;
|
5843
|
+
}
|
5844
|
+
|
5804
5845
|
.italic {
|
5805
5846
|
font-style: italic;
|
5806
5847
|
}
|
@@ -8050,15 +8091,110 @@ select {
|
|
8050
8091
|
flex-shrink: 0;
|
8051
8092
|
}
|
8052
8093
|
|
8053
|
-
.max-\[1140px\]\:snap-end {
|
8054
|
-
scroll-snap-align: end;
|
8055
|
-
}
|
8056
|
-
|
8057
8094
|
.max-\[1140px\]\:snap-always {
|
8058
8095
|
scroll-snap-stop: always;
|
8059
8096
|
}
|
8060
8097
|
}
|
8061
8098
|
|
8099
|
+
@media (max-width: 450px) {
|
8100
|
+
.max-\[450px\]\:rounded-full {
|
8101
|
+
border-radius: 9999px;
|
8102
|
+
}
|
8103
|
+
}
|
8104
|
+
|
8105
|
+
@media (max-width: 420px) {
|
8106
|
+
.max-\[420px\]\:rounded-full {
|
8107
|
+
border-radius: 9999px;
|
8108
|
+
}
|
8109
|
+
|
8110
|
+
.max-\[420px\]\:bg-blue-400 {
|
8111
|
+
--tw-bg-opacity: 1;
|
8112
|
+
background-color: rgb(128 163 255 / var(--tw-bg-opacity));
|
8113
|
+
}
|
8114
|
+
}
|
8115
|
+
|
8116
|
+
@media (min-width: 420px) {
|
8117
|
+
.mb-m\:flex {
|
8118
|
+
display: flex;
|
8119
|
+
}
|
8120
|
+
|
8121
|
+
.mb-m\:min-h-\[120px\] {
|
8122
|
+
min-height: 120px;
|
8123
|
+
}
|
8124
|
+
|
8125
|
+
.mb-m\:w-\[9rem\] {
|
8126
|
+
width: 9rem;
|
8127
|
+
}
|
8128
|
+
|
8129
|
+
.mb-m\:min-w-\[144px\] {
|
8130
|
+
min-width: 144px;
|
8131
|
+
}
|
8132
|
+
|
8133
|
+
.mb-m\:flex-row {
|
8134
|
+
flex-direction: row;
|
8135
|
+
}
|
8136
|
+
|
8137
|
+
.mb-m\:items-center {
|
8138
|
+
align-items: center;
|
8139
|
+
}
|
8140
|
+
|
8141
|
+
.mb-m\:justify-between {
|
8142
|
+
justify-content: space-between;
|
8143
|
+
}
|
8144
|
+
|
8145
|
+
.mb-m\:self-center {
|
8146
|
+
align-self: center;
|
8147
|
+
}
|
8148
|
+
|
8149
|
+
.mb-m\:rounded {
|
8150
|
+
border-radius: 0.25rem;
|
8151
|
+
}
|
8152
|
+
|
8153
|
+
.mb-m\:rounded-l-2xl {
|
8154
|
+
border-top-left-radius: 1rem;
|
8155
|
+
border-bottom-left-radius: 1rem;
|
8156
|
+
}
|
8157
|
+
|
8158
|
+
.mb-m\:rounded-r-2xl {
|
8159
|
+
border-top-right-radius: 1rem;
|
8160
|
+
border-bottom-right-radius: 1rem;
|
8161
|
+
}
|
8162
|
+
|
8163
|
+
.mb-m\:rounded-r-xl {
|
8164
|
+
border-top-right-radius: 0.75rem;
|
8165
|
+
border-bottom-right-radius: 0.75rem;
|
8166
|
+
}
|
8167
|
+
|
8168
|
+
.mb-m\:rounded-l-xl {
|
8169
|
+
border-top-left-radius: 0.75rem;
|
8170
|
+
border-bottom-left-radius: 0.75rem;
|
8171
|
+
}
|
8172
|
+
|
8173
|
+
.mb-m\:px-5 {
|
8174
|
+
padding-left: 1.25rem;
|
8175
|
+
padding-right: 1.25rem;
|
8176
|
+
}
|
8177
|
+
|
8178
|
+
.mb-m\:py-\[30px\] {
|
8179
|
+
padding-top: 30px;
|
8180
|
+
padding-bottom: 30px;
|
8181
|
+
}
|
8182
|
+
|
8183
|
+
.mb-m\:pl-0 {
|
8184
|
+
padding-left: 0px;
|
8185
|
+
}
|
8186
|
+
|
8187
|
+
.mb-m\:pt-0 {
|
8188
|
+
padding-top: 0px;
|
8189
|
+
}
|
8190
|
+
}
|
8191
|
+
|
8192
|
+
@media (min-width: 450px) {
|
8193
|
+
.min-\[450px\]\:rounded-full {
|
8194
|
+
border-radius: 9999px;
|
8195
|
+
}
|
8196
|
+
}
|
8197
|
+
|
8062
8198
|
@media (min-width: 600px) {
|
8063
8199
|
.tb\:mb-16 {
|
8064
8200
|
margin-bottom: 4rem;
|
@@ -8227,10 +8363,6 @@ select {
|
|
8227
8363
|
column-gap: 4rem;
|
8228
8364
|
}
|
8229
8365
|
|
8230
|
-
.tb\:rounded {
|
8231
|
-
border-radius: 0.25rem;
|
8232
|
-
}
|
8233
|
-
|
8234
8366
|
.tb\:rounded-3xl {
|
8235
8367
|
border-radius: 1.5rem;
|
8236
8368
|
}
|
@@ -8568,6 +8700,10 @@ select {
|
|
8568
8700
|
letter-spacing: -0.01em;
|
8569
8701
|
font-weight: 400;
|
8570
8702
|
}
|
8703
|
+
|
8704
|
+
.tb\:uppercase {
|
8705
|
+
text-transform: uppercase;
|
8706
|
+
}
|
8571
8707
|
}
|
8572
8708
|
|
8573
8709
|
@media (min-width: 640px) {
|
@@ -8785,9 +8921,8 @@ select {
|
|
8785
8921
|
border-bottom-left-radius: 1.5rem;
|
8786
8922
|
}
|
8787
8923
|
|
8788
|
-
.tb-l\:
|
8789
|
-
border-
|
8790
|
-
border-bottom-right-radius: 1rem;
|
8924
|
+
.tb-l\:border-0 {
|
8925
|
+
border-width: 0px;
|
8791
8926
|
}
|
8792
8927
|
|
8793
8928
|
.tb-l\:border-r {
|
@@ -8812,6 +8947,11 @@ select {
|
|
8812
8947
|
padding-bottom: 3rem;
|
8813
8948
|
}
|
8814
8949
|
|
8950
|
+
.tb-l\:px-8 {
|
8951
|
+
padding-left: 2rem;
|
8952
|
+
padding-right: 2rem;
|
8953
|
+
}
|
8954
|
+
|
8815
8955
|
.tb-l\:pb-12 {
|
8816
8956
|
padding-bottom: 3rem;
|
8817
8957
|
}
|
@@ -8824,6 +8964,10 @@ select {
|
|
8824
8964
|
padding-top: 3rem;
|
8825
8965
|
}
|
8826
8966
|
|
8967
|
+
.tb-l\:pb-6 {
|
8968
|
+
padding-bottom: 1.5rem;
|
8969
|
+
}
|
8970
|
+
|
8827
8971
|
.tb-l\:text-left {
|
8828
8972
|
text-align: left;
|
8829
8973
|
}
|