hds-web 1.4.8 → 1.5.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.4.8",
3
+ "version": "1.5.1",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -40,10 +40,10 @@ export default function TalkCard2(props) {
40
40
  </div>
41
41
  <div className="tb-l:w-[380px] db:w-[520px] flex flex-col tb:justify-between">
42
42
  <div>
43
- <Typography className='my-2 text-blue-800' textStyle='h5'>{props.title}</Typography>
43
+ <Typography className='mt-2 text-blue-800' textStyle='h5'>{props.title}</Typography>
44
44
  {props.para &&
45
45
  <Typography
46
- className='line-clamp-3 text-neutral-700'
46
+ className='line-clamp-3 mt-2 text-neutral-700'
47
47
  textStyle='body1c'>
48
48
  {props.para}
49
49
  </Typography>
@@ -12,6 +12,7 @@ export default function TalkDetailCard(props) {
12
12
  return (
13
13
  <div className="grid grid-cols-1 tb:grid-cols-2 gap-16 db:gap-28 tb:gap-16">
14
14
  <div>
15
+ <div className="flex flex-row flex-wrap tb:gap-3 gap-2">
15
16
  {props.badges &&
16
17
  props.badges.map((value, index) => (
17
18
  <div key={index} className='flex whitespace-nowrap'>
@@ -24,9 +25,11 @@ export default function TalkDetailCard(props) {
24
25
  children={value.label}
25
26
 
26
27
  />
28
+
27
29
  </div>
28
30
  ))
29
31
  }
32
+ </div>
30
33
 
31
34
  {
32
35
  props.tag_line && (<Typography textStyle='h6' className='text-blue-600 uppercase pt-4 pb-2'>{props.tag_line}</Typography>)
@@ -51,7 +54,7 @@ export default function TalkDetailCard(props) {
51
54
  props.speaker_card && (
52
55
  <div>
53
56
  <Typography textStyle='h6' as='h6' className='uppercase text-neutral-500 pb-6 pt-8 tb:pt-14'>speakers</Typography>
54
- <div className="flex flex-row flex-wrap tb:gap-3 gap-2">
57
+
55
58
  {
56
59
  props.speaker_card.map((speaker, i) => (
57
60
  <div key={i} className='pb-4 last:pb-0'>
@@ -66,7 +69,7 @@ export default function TalkDetailCard(props) {
66
69
  </div>
67
70
  ))
68
71
  }
69
- </div>
72
+
70
73
  </div>
71
74
  )
72
75
  }
@@ -2015,12 +2015,6 @@ select {
2015
2015
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
2016
2016
  }
2017
2017
 
2018
- .divide-y-2 > :not([hidden]) ~ :not([hidden]) {
2019
- --tw-divide-y-reverse: 0;
2020
- border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse)));
2021
- border-bottom-width: calc(2px * var(--tw-divide-y-reverse));
2022
- }
2023
-
2024
2018
  .divide-blue-600\/10 > :not([hidden]) ~ :not([hidden]) {
2025
2019
  border-color: rgb(30 86 227 / 0.1);
2026
2020
  }
@@ -8873,13 +8867,8 @@ select {
8873
8867
  padding-bottom: 3rem;
8874
8868
  }
8875
8869
 
8876
- .tb-l\:px-6 {
8877
- padding-left: 1.5rem;
8878
- padding-right: 1.5rem;
8879
- }
8880
-
8881
- .tb-l\:pb-12 {
8882
- padding-bottom: 3rem;
8870
+ .tb-l\:pb-0 {
8871
+ padding-bottom: 0px;
8883
8872
  }
8884
8873
 
8885
8874
  .tb-l\:pb-6 {
@@ -8890,22 +8879,6 @@ select {
8890
8879
  padding-left: 2rem;
8891
8880
  }
8892
8881
 
8893
- .tb-l\:pt-12 {
8894
- padding-top: 3rem;
8895
- }
8896
-
8897
- .tb-l\:pb-8 {
8898
- padding-bottom: 2rem;
8899
- }
8900
-
8901
- .tb-l\:pt-8 {
8902
- padding-top: 2rem;
8903
- }
8904
-
8905
- .tb-l\:pb-0 {
8906
- padding-bottom: 0px;
8907
- }
8908
-
8909
8882
  .tb-l\:text-left {
8910
8883
  text-align: left;
8911
8884
  }