hds-web 1.3.8 → 1.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.3.8",
3
+ "version": "1.4.0",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -55,14 +55,14 @@ export default function Badge({
55
55
  >
56
56
  {leftIconVariant && leftIconVariant !== 'none' && (
57
57
  <div className='mr-1'>
58
- <Icon height={'h-4 w-4'} variant={leftIconVariant} strokeColor={leftIconColor} strokeClass={HDSColor(leftIconColorClass)} />
58
+ <Icon height={'h-4 w-4 stroke-[1.5px]'} variant={leftIconVariant} strokeColor={leftIconColor} strokeClass={HDSColor(leftIconColorClass)} />
59
59
  </div>
60
60
  )}
61
61
  <Typography textStyle='body3c-medium'>{children}</Typography>
62
62
 
63
63
  {rightIconVariant && rightIconVariant !== 'none' && (
64
64
  <div className='ml-1'>
65
- <Icon height={'h-4'} variant={rightIconVariant} strokeColor={rightIconColor} rightIconColorClass={HDSColor(rightIconColorClass)} />
65
+ <Icon height={'h-4 w-4 stroke-[1.5px]'} variant={rightIconVariant} strokeColor={rightIconColor} rightIconColorClass={HDSColor(rightIconColorClass)} />
66
66
  </div>
67
67
  )}
68
68
  </button>
@@ -38,7 +38,7 @@ export default function TalkCard2(props) {
38
38
  }
39
39
 
40
40
  </div>
41
- <div className="tb-l:w-[520px] h-full flex flex-col tb:justify-between">
41
+ <div className="tb-l:w-[380px] db:w-[520px] h-full flex flex-col tb:justify-between">
42
42
  <div>
43
43
  <Typography className='my-2 text-blue-800' textStyle='h5'>{props.title}</Typography>
44
44
  {props.para &&
@@ -46,7 +46,7 @@ export default function Carouseltest(props) {
46
46
  // Defines the transition animation.
47
47
  behavior: 'smooth',
48
48
  // Defines vertical alignment.
49
- block: 'nearest',
49
+ block: 'start',
50
50
  // Defines horizontal alignment.
51
51
  inline: 'start',
52
52
  });
@@ -8798,6 +8798,14 @@ select {
8798
8798
  width: 100%;
8799
8799
  }
8800
8800
 
8801
+ .tb-l\:w-\[456px\] {
8802
+ width: 456px;
8803
+ }
8804
+
8805
+ .tb-l\:w-\[380px\] {
8806
+ width: 380px;
8807
+ }
8808
+
8801
8809
  .tb-l\:min-w-\[400px\] {
8802
8810
  min-width: 400px;
8803
8811
  }
@@ -8992,6 +9000,10 @@ select {
8992
9000
  width: 100%;
8993
9001
  }
8994
9002
 
9003
+ .db\:w-\[520px\] {
9004
+ width: 520px;
9005
+ }
9006
+
8995
9007
  .db\:min-w-\[625px\] {
8996
9008
  min-width: 625px;
8997
9009
  }