@rehagro/ui 1.0.26 → 1.0.27

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
@@ -1057,6 +1057,7 @@ var TextInput = forwardRef(function TextInput2({
1057
1057
  "rh-flex rh-items-center rh-gap-2",
1058
1058
  "rh-border rh-bg-surface rh-font-body",
1059
1059
  "rh-transition-colors rh-duration-150",
1060
+ "rh-overflow-hidden",
1060
1061
  statusClasses[status],
1061
1062
  radiusClasses3[radius],
1062
1063
  sizeClasses3[size],
@@ -1084,7 +1085,7 @@ var TextInput = forwardRef(function TextInput2({
1084
1085
  "aria-invalid": status === "error" || void 0,
1085
1086
  "aria-describedby": helperText ? `${inputId}-helper` : void 0,
1086
1087
  className: [
1087
- "rh-flex-1 rh-bg-transparent rh-outline-none",
1088
+ "rh-flex-1 rh-min-w-0 rh-bg-transparent rh-outline-none",
1088
1089
  "rh-text-text placeholder:rh-text-text-muted",
1089
1090
  disabled ? "rh-cursor-not-allowed" : ""
1090
1091
  ].filter(Boolean).join(" "),