forstok-ui-lib 5.2.5 → 5.2.6

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": "forstok-ui-lib",
3
- "version": "5.2.5",
3
+ "version": "5.2.6",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -27,8 +27,8 @@ const getInputModifiedStyled = ({ width, height, $iconLeft, $iconRight, $isError
27
27
  }
28
28
  if (height) {
29
29
  style += `
30
- height: ${height}px
31
- max-height: ${height}px
30
+ height: ${height}px;
31
+ max-height: ${height}px;
32
32
  `
33
33
  }
34
34
  if ($mode === 'search') {
@@ -58,11 +58,11 @@ const getInputModifiedStyled = ({ width, height, $iconLeft, $iconRight, $isError
58
58
  }
59
59
  if (width) {
60
60
  style += `
61
- width: ${width}px
61
+ width: ${width}px;
62
62
  `
63
63
  }
64
64
  if (type === 'submit') {
65
- style += SubmitStyles
65
+ style += SubmitStyles;
66
66
  }
67
67
  return style;
68
68
  }