hds-web 1.16.8 → 1.17.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/Cards/Misc/talkcard2.js +1 -1
- package/src/HDS/components/Cards/TalkDetailCard/talkDetailCard.js +19 -20
- package/src/styles/tailwind.css +32 -0
package/package.json
CHANGED
@@ -37,27 +37,26 @@ export default function TalkDetailCard(props) {
|
|
37
37
|
}
|
38
38
|
}, []);
|
39
39
|
return (
|
40
|
-
<div className="grid grid-cols-1 tb:grid-cols-2 gap-6 db:gap-28 tb:gap-16">
|
41
|
-
<div>
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
40
|
+
<div className="grid grid-cols-1 tb-m:grid-cols-2 gap-6 db:gap-28 tb-m:gap-16">
|
41
|
+
<div className="tb-m:sticky tb-m:self-start tb-m:top-36">
|
42
|
+
<div className="flex flex-row flex-wrap tb:gap-3 gap-2">
|
43
|
+
{props.badges &&
|
44
|
+
props.badges.map((value, index) => (
|
45
|
+
<div key={index} className='flex whitespace-nowrap'>
|
46
|
+
<Badges
|
47
|
+
size={value.size}
|
48
|
+
color={value.color}
|
49
|
+
leftIconVariant={value.leftIconVariant}
|
50
|
+
leftIconColor={value.leftIconColor}
|
51
|
+
leftIconColorClass={HDSColor(value.leftIconColorClass)}
|
52
|
+
children={value.label}
|
53
53
|
|
54
|
-
|
54
|
+
/>
|
55
55
|
|
56
|
-
|
57
|
-
|
58
|
-
|
56
|
+
</div>
|
57
|
+
))
|
58
|
+
}
|
59
59
|
</div>
|
60
|
-
|
61
60
|
{
|
62
61
|
props.tag_line && (<Typography textStyle='h6' className='text-blue-600 uppercase pt-4 pb-2'>{props.tag_line}</Typography>)
|
63
62
|
}
|
@@ -120,7 +119,7 @@ export default function TalkDetailCard(props) {
|
|
120
119
|
</div>
|
121
120
|
</>
|
122
121
|
) : (
|
123
|
-
|
122
|
+
<div className="p-5 md:pt-10 md:px-6 lg:px-9 rounded-3xl border border-neutral-200">
|
124
123
|
<Typography textStyle="h6" as="h6" className="text-neutral-800 uppercase flex items-center">
|
125
124
|
<Icon height="w-6 h-6 mr-3 stroke-neutral-800 stroke-[1.5px]" variant="ticket01" strokeColor="#1F2A37" />
|
126
125
|
{props.formTitle}
|
@@ -130,7 +129,7 @@ export default function TalkDetailCard(props) {
|
|
130
129
|
formId={props.paperformId}
|
131
130
|
styleClass="paper-form-wrapper"
|
132
131
|
/>
|
133
|
-
|
132
|
+
</div>
|
134
133
|
)
|
135
134
|
}
|
136
135
|
</div>
|
package/src/styles/tailwind.css
CHANGED
@@ -10513,6 +10513,17 @@ select{
|
|
10513
10513
|
}
|
10514
10514
|
}
|
10515
10515
|
|
10516
|
+
@media (min-width: 768px){
|
10517
|
+
.md\:px-6{
|
10518
|
+
padding-left: 1.5rem;
|
10519
|
+
padding-right: 1.5rem;
|
10520
|
+
}
|
10521
|
+
|
10522
|
+
.md\:pt-10{
|
10523
|
+
padding-top: 2.5rem;
|
10524
|
+
}
|
10525
|
+
}
|
10526
|
+
|
10516
10527
|
@media (min-width: 800px){
|
10517
10528
|
.tb-m\:sticky{
|
10518
10529
|
position: -webkit-sticky;
|
@@ -10523,6 +10534,10 @@ select{
|
|
10523
10534
|
top: -5rem;
|
10524
10535
|
}
|
10525
10536
|
|
10537
|
+
.tb-m\:top-36{
|
10538
|
+
top: 9rem;
|
10539
|
+
}
|
10540
|
+
|
10526
10541
|
.tb-m\:mr-0{
|
10527
10542
|
margin-right: 0px;
|
10528
10543
|
}
|
@@ -10547,6 +10562,10 @@ select{
|
|
10547
10562
|
scroll-snap-align: start;
|
10548
10563
|
}
|
10549
10564
|
|
10565
|
+
.tb-m\:grid-cols-2{
|
10566
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
10567
|
+
}
|
10568
|
+
|
10550
10569
|
.tb-m\:flex-row{
|
10551
10570
|
flex-direction: row;
|
10552
10571
|
}
|
@@ -10555,6 +10574,14 @@ select{
|
|
10555
10574
|
justify-content: flex-start;
|
10556
10575
|
}
|
10557
10576
|
|
10577
|
+
.tb-m\:gap-16{
|
10578
|
+
gap: 4rem;
|
10579
|
+
}
|
10580
|
+
|
10581
|
+
.tb-m\:self-start{
|
10582
|
+
align-self: flex-start;
|
10583
|
+
}
|
10584
|
+
|
10558
10585
|
.tb-m\:border-t-0{
|
10559
10586
|
border-top-width: 0px;
|
10560
10587
|
}
|
@@ -10841,6 +10868,11 @@ select{
|
|
10841
10868
|
padding-right: 2rem;
|
10842
10869
|
}
|
10843
10870
|
|
10871
|
+
.lg\:px-9{
|
10872
|
+
padding-left: 2.25rem;
|
10873
|
+
padding-right: 2.25rem;
|
10874
|
+
}
|
10875
|
+
|
10844
10876
|
.db-s\:mb-0{
|
10845
10877
|
margin-bottom: 0px;
|
10846
10878
|
}
|