@hoddy-ui/next 2.5.93 → 2.5.94
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/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1608,8 +1608,7 @@ var TextFieldBase = React15.forwardRef(
|
|
|
1608
1608
|
}
|
|
1609
1609
|
};
|
|
1610
1610
|
const isFloating = labelVariant === "floating";
|
|
1611
|
-
const
|
|
1612
|
-
const labelOpen = labelAlwaysOpen || focused || value || isFloating && hasPlaceholder;
|
|
1611
|
+
const labelOpen = labelAlwaysOpen || focused || value;
|
|
1613
1612
|
const baseHeight = moderateScale2(
|
|
1614
1613
|
multiline ? 50 + (props.numberOfLines || 1) * 18 : 50
|
|
1615
1614
|
);
|