hds-web 1.10.8 → 1.11.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 +4 -4
- package/dist/index.js +6 -6
- package/package.json +1 -1
- package/src/HDS/components/Buttons/button.js +1 -1
- package/src/HDS/components/Cards/Misc/iconCard.js +172 -73
- package/src/HDS/components/Cards/Misc/imageBadgeCard.js +226 -22
- package/src/HDS/components/Cards/VideoCard/homeVC.js +2 -2
- package/src/HDS/components/Carousels/customCarousel.js +1 -1
- package/src/HDS/components/Carousels/homeCarousel.js +2 -1
- package/src/HDS/components/Footers/v3Footer.js +5 -5
- package/src/HDS/modules/TextCard/textIconCard.js +44 -37
- package/src/styles/tailwind.css +6 -82
@@ -7,43 +7,50 @@ import { Icon } from '../../components/common-components/Icon';
|
|
7
7
|
export default function TextIconCard(props) {
|
8
8
|
return (
|
9
9
|
<div className="tb-m:flex gap-14 gap-y-14 gap-x-14 tb:gap-12 db-s:gap-20 db:gap-24">
|
10
|
-
<div className="pb-10 tb-m:pb-0 db-s:max-w-[524px] tb-m:w-1/2 w-full">
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
10
|
+
<div className="pb-10 tb-m:pb-0 db-s:max-w-[524px] tb-m:w-1/2 w-full flex flex-col justify-between">
|
11
|
+
<div>
|
12
|
+
{
|
13
|
+
props.tagline && (
|
14
|
+
<Typography textStyle="h6" as="h6" className="pb-2 uppercase text-blue-400">{props.tagline}</Typography>
|
15
|
+
)
|
16
|
+
}
|
17
|
+
{
|
18
|
+
props.title && (
|
19
|
+
<Typography textStyle="h3" as="h3" className="pb-2 text-neutral-1000">{props.title}</Typography>
|
20
|
+
)
|
21
|
+
}
|
22
|
+
{
|
23
|
+
props.description && (
|
24
|
+
<Typography textStyle="sub2" className="pb-6 text-neutral-600">{props.description}</Typography>
|
25
|
+
)
|
26
|
+
}
|
27
|
+
</div>
|
28
|
+
<div>
|
29
|
+
{
|
30
|
+
props.imgUrl && (
|
31
|
+
<div className="pb-4 pt-2">
|
32
|
+
<img className="max-w-[210px]" src={props.imgUrl} alt={((props.title) ? props.title : "Illu")} />
|
33
|
+
</div>
|
34
|
+
)
|
35
|
+
}
|
36
|
+
{props.button &&
|
37
|
+
<a href={props.button.cta_link} className="inline-flex " download target="_blank">
|
38
|
+
<HDSButton
|
39
|
+
label={props.button.cta_text}
|
40
|
+
type={props.button.cta_type || 'secondary'}
|
41
|
+
leftIconVariant='none'
|
42
|
+
rightIconVariant='none'
|
43
|
+
state='default'
|
44
|
+
size='md'
|
45
|
+
rightAnimatedArrow={true}
|
46
|
+
rightAnimatedArrowColor={props.button.rightAnimatedArrowColor || '#3970FD'}
|
47
|
+
animatedHoverStroke="group-hover:stroke-blue-600"
|
48
|
+
btnTextHoverClass="hover:text-blue-600"
|
49
|
+
btnTextColorClass="text-blue-500"
|
50
|
+
/>
|
51
|
+
</a>
|
52
|
+
}
|
53
|
+
</div>
|
47
54
|
</div>
|
48
55
|
{
|
49
56
|
props.iconCards && (
|
package/src/styles/tailwind.css
CHANGED
@@ -839,11 +839,6 @@ select{
|
|
839
839
|
position: relative;
|
840
840
|
}
|
841
841
|
|
842
|
-
.sticky{
|
843
|
-
position: -webkit-sticky;
|
844
|
-
position: sticky;
|
845
|
-
}
|
846
|
-
|
847
842
|
.inset-0{
|
848
843
|
inset: 0px;
|
849
844
|
}
|
@@ -1778,8 +1773,8 @@ select{
|
|
1778
1773
|
min-width: 112px;
|
1779
1774
|
}
|
1780
1775
|
|
1781
|
-
.min-w-\[
|
1782
|
-
min-width:
|
1776
|
+
.min-w-\[130px\]{
|
1777
|
+
min-width: 130px;
|
1783
1778
|
}
|
1784
1779
|
|
1785
1780
|
.min-w-\[169px\]{
|
@@ -9310,6 +9305,10 @@ select{
|
|
9310
9305
|
transition-duration: 150ms;
|
9311
9306
|
}
|
9312
9307
|
|
9308
|
+
.hover\:duration-200:hover{
|
9309
|
+
transition-duration: 200ms;
|
9310
|
+
}
|
9311
|
+
|
9313
9312
|
.hover\:duration-300:hover{
|
9314
9313
|
transition-duration: 300ms;
|
9315
9314
|
}
|
@@ -9712,23 +9711,6 @@ select{
|
|
9712
9711
|
}
|
9713
9712
|
}
|
9714
9713
|
|
9715
|
-
@media (max-width: 699px){
|
9716
|
-
.max-\[699px\]\:w-screen{
|
9717
|
-
width: 100vw;
|
9718
|
-
}
|
9719
|
-
}
|
9720
|
-
|
9721
|
-
@media (max-width: 399px){
|
9722
|
-
.max-\[399px\]\:rounded-full{
|
9723
|
-
border-radius: 9999px;
|
9724
|
-
}
|
9725
|
-
|
9726
|
-
.max-\[399px\]\:bg-blue-300{
|
9727
|
-
--tw-bg-opacity: 1;
|
9728
|
-
background-color: rgb(198 214 255 / var(--tw-bg-opacity));
|
9729
|
-
}
|
9730
|
-
}
|
9731
|
-
|
9732
9714
|
@media (max-width: 369px){
|
9733
9715
|
.max-\[369px\]\:mt-8{
|
9734
9716
|
margin-top: 2rem;
|
@@ -9830,10 +9812,6 @@ select{
|
|
9830
9812
|
.mb-m\:pt-0{
|
9831
9813
|
padding-top: 0px;
|
9832
9814
|
}
|
9833
|
-
|
9834
|
-
.min-\[400px\]\:-mt-20{
|
9835
|
-
margin-top: -5rem;
|
9836
|
-
}
|
9837
9815
|
}
|
9838
9816
|
|
9839
9817
|
@media (min-width: 600px){
|
@@ -10554,39 +10532,6 @@ select{
|
|
10554
10532
|
}
|
10555
10533
|
}
|
10556
10534
|
|
10557
|
-
@media (min-width: 699px){
|
10558
|
-
.min-\[699px\]\:absolute{
|
10559
|
-
position: absolute;
|
10560
|
-
}
|
10561
|
-
|
10562
|
-
.min-\[699px\]\:relative{
|
10563
|
-
position: relative;
|
10564
|
-
}
|
10565
|
-
|
10566
|
-
.min-\[699px\]\:mt-\[70px\]{
|
10567
|
-
margin-top: 70px;
|
10568
|
-
}
|
10569
|
-
|
10570
|
-
.min-\[699px\]\:block{
|
10571
|
-
display: block;
|
10572
|
-
}
|
10573
|
-
|
10574
|
-
.min-\[699px\]\:flex{
|
10575
|
-
display: flex;
|
10576
|
-
}
|
10577
|
-
|
10578
|
-
.min-\[699px\]\:hidden{
|
10579
|
-
display: none;
|
10580
|
-
}
|
10581
|
-
|
10582
|
-
.min-\[699px\]\:scale-\[1\.7\]{
|
10583
|
-
--tw-scale-x: 1.7;
|
10584
|
-
--tw-scale-y: 1.7;
|
10585
|
-
-webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
10586
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
10587
|
-
}
|
10588
|
-
}
|
10589
|
-
|
10590
10535
|
@media (min-width: 800px){
|
10591
10536
|
.tb-m\:flex{
|
10592
10537
|
display: flex;
|
@@ -11166,10 +11111,6 @@ select{
|
|
11166
11111
|
padding-right: 0px;
|
11167
11112
|
}
|
11168
11113
|
|
11169
|
-
.db\:pt-12{
|
11170
|
-
padding-top: 3rem;
|
11171
|
-
}
|
11172
|
-
|
11173
11114
|
.db\:pt-20{
|
11174
11115
|
padding-top: 5rem;
|
11175
11116
|
}
|
@@ -11443,23 +11384,6 @@ select{
|
|
11443
11384
|
}
|
11444
11385
|
}
|
11445
11386
|
|
11446
|
-
@media (min-width: 1300px){
|
11447
|
-
.min-\[1300px\]\:flex{
|
11448
|
-
display: flex;
|
11449
|
-
}
|
11450
|
-
|
11451
|
-
.min-\[1300px\]\:max-w-7xl{
|
11452
|
-
max-width: 80rem;
|
11453
|
-
}
|
11454
|
-
}
|
11455
|
-
|
11456
|
-
@media (min-width: 1880px){
|
11457
|
-
.min-\[1880px\]\:gap-x-72{
|
11458
|
-
-webkit-column-gap: 18rem;
|
11459
|
-
column-gap: 18rem;
|
11460
|
-
}
|
11461
|
-
}
|
11462
|
-
|
11463
11387
|
.\[\&\>\*\]\:mb-8>*{
|
11464
11388
|
margin-bottom: 2rem;
|
11465
11389
|
}
|