@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.mjs CHANGED
@@ -1608,8 +1608,7 @@ var TextFieldBase = React15.forwardRef(
1608
1608
  }
1609
1609
  };
1610
1610
  const isFloating = labelVariant === "floating";
1611
- const hasPlaceholder = placeholder != null && String(placeholder).trim() !== "";
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
  );