@loadsmart/loadsmart-ui 6.0.10 → 6.0.11

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": "@loadsmart/loadsmart-ui",
3
- "version": "6.0.10",
3
+ "version": "6.0.11",
4
4
  "description": "Miranda UI, a React UI library",
5
5
  "main": "dist",
6
6
  "files": [
@@ -355,7 +355,12 @@ function Tag(props: TagProps): JSX.Element {
355
355
  {removable && !disabled && (
356
356
  <>
357
357
  <StyledSpacer aria-hidden="true" size={size} />
358
- <StyledCloseButton {...getRemoveButtonProps?.()} size={size} onClick={onRemove}>
358
+ <StyledCloseButton
359
+ type="button"
360
+ {...getRemoveButtonProps?.()}
361
+ size={size}
362
+ onClick={onRemove}
363
+ >
359
364
  <CloseIcon name="close" variant={variant} size={size} />
360
365
  </StyledCloseButton>
361
366
  </>