hds-web 1.30.6 → 1.30.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.30.6",
3
+ "version": "1.30.8",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -16,27 +16,27 @@ export default function EventScheduleCard(props) {
16
16
  <Icon height='h-[18px] w-[18px]' variant='calendar' strokeClass='stroke-neutral-600 stroke-2' />
17
17
  <Typography textStyle='h6' className='capitalize text-neutral-600' >WHEN</Typography>
18
18
  </div>
19
- <div className='text-neutral-700 text-hds-m-sub2'>
19
+ <Typography textStyle='sub2' className='text-neutral-700'>
20
20
  {props.eventDate}
21
- </div>
21
+ </Typography>
22
22
  </div>}
23
23
  {props.eventTime && <div className="flex flex-col tb:px-6 py-4 tb:py-0 gap-1">
24
24
  <div className="flex gap-2 items-center">
25
25
  <Icon height='h-[18px] w-[18px]' variant='clock' strokeClass='stroke-neutral-600 stroke-2' />
26
26
  <Typography textStyle='h6' className='capitalize text-neutral-600' >TIME</Typography>
27
27
  </div>
28
- <div className='text-neutral-700 text-hds-m-sub2'>
28
+ <Typography textStyle='sub2' className='text-neutral-700'>
29
29
  {props.eventTime}
30
- </div>
30
+ </Typography>
31
31
  </div>}
32
32
  {props.eventLocation && <div className="flex flex-col tb:px-6 py-4 tb:py-0 gap-1 ">
33
33
  <div className="flex gap-2 items-center">
34
34
  <Icon height='h-[18px] w-[18px]' variant='markerpin03' strokeClass='stroke-neutral-600 stroke-2' />
35
35
  <Typography textStyle='h6' className='capitalize text-neutral-600' >WHERE</Typography>
36
36
  </div>
37
- <div className='text-neutral-700 text-hds-m-sub2'>
37
+ <Typography textStyle='sub2' className='text-neutral-700'>
38
38
  {props.eventLocation}
39
- </div>
39
+ </Typography>
40
40
  </div>}
41
41
  {props.social && <div className="px-6 flex flex-wrap gap-4 items-center">
42
42
  {props.social && props.social.twitter && <a href={props.social.twitter}>
@@ -36,7 +36,7 @@ function DefaultAccordion(props) {
36
36
  {props.accordionData && props.accordionData.map((item, index) => (
37
37
  <div
38
38
  key={index}
39
- className="py-6 flex cursor-pointer"
39
+ className=" first:pt-0 last:pb-0 py-6 flex cursor-pointer"
40
40
  onClick={() => handleOpen(index)}
41
41
  >
42
42
  {/* <div
@@ -2351,6 +2351,12 @@ select{
2351
2351
  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));
2352
2352
  }
2353
2353
 
2354
+ .rotate-0{
2355
+ --tw-rotate: 0deg;
2356
+ -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));
2357
+ 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));
2358
+ }
2359
+
2354
2360
  .scale-150{
2355
2361
  --tw-scale-x: 1.5;
2356
2362
  --tw-scale-y: 1.5;
@@ -9396,6 +9402,10 @@ select{
9396
9402
  border-bottom-left-radius: 9999px;
9397
9403
  }
9398
9404
 
9405
+ .first\:pt-0:first-child{
9406
+ padding-top: 0px;
9407
+ }
9408
+
9399
9409
  .last\:mb-0:last-child{
9400
9410
  margin-bottom: 0px;
9401
9411
  }
@@ -12927,6 +12937,22 @@ select{
12927
12937
  color: rgb(30 86 227 / var(--tw-text-opacity));
12928
12938
  }
12929
12939
 
12940
+ .\[\&\>p\>img\:nth-child\(2\)\]\:max-w-\[140px\]>p>img:nth-child(2){
12941
+ max-width: 140px;
12942
+ }
12943
+
12944
+ .\[\&\>p\>img\]\:mt-4>p>img{
12945
+ margin-top: 1rem;
12946
+ }
12947
+
12948
+ .\[\&\>p\>img\]\:w-full>p>img{
12949
+ width: 100%;
12950
+ }
12951
+
12952
+ .\[\&\>p\>img\]\:max-w-\[420px\]>p>img{
12953
+ max-width: 420px;
12954
+ }
12955
+
12930
12956
  .\[\&\>p\]\:pb-1>p{
12931
12957
  padding-bottom: 0.25rem;
12932
12958
  }