@designbasekorea/ui 0.2.39 → 0.2.41

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 CHANGED
@@ -4033,7 +4033,7 @@ const Input = React.forwardRef(({ type = 'text', label, placeholder, defaultValu
4033
4033
  const errorMessageId = React.useId();
4034
4034
  const [showPassword, setShowPassword] = React.useState(false);
4035
4035
  const handleChange = (e) => {
4036
- onChange?.(e.target.value);
4036
+ onChange?.(e);
4037
4037
  };
4038
4038
  const handlePasswordToggle = () => {
4039
4039
  setShowPassword(!showPassword);