hds-web 1.3.8 → 1.3.9

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.3.9",
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>
@@ -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
  });