@platformatic/ui-components 0.1.153 → 0.1.154

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@platformatic/ui-components",
3
3
  "description": "Platformatic UI Components",
4
- "version": "0.1.153",
4
+ "version": "0.1.154",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
@@ -24,8 +24,8 @@ function Input ({
24
24
  dataAttrValue,
25
25
  readOnly
26
26
  }) {
27
- let baseInputClassName = `${commonStyles.fullWidth} ${styles.input} ${inputTextClassName}`
28
- baseInputClassName += verticalPaddingClassName || `${styles.inputDefaultVerticalPadding}`
27
+ let baseInputClassName = `${commonStyles.fullWidth} ${styles.input} ${inputTextClassName} `
28
+ baseInputClassName += verticalPaddingClassName || ` ${styles.inputDefaultVerticalPadding} `
29
29
  baseInputClassName += ' ' + commonStyles[`text--${borderColor}`] + ' ' + commonStyles[`background-color-${backgroundColor}`]
30
30
 
31
31
  const showError = errorMessage.length > 0