@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.d.ts +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +3 -3
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
|
|
4036
|
+
onChange?.(e);
|
|
4037
4037
|
};
|
|
4038
4038
|
const handlePasswordToggle = () => {
|
|
4039
4039
|
setShowPassword(!showPassword);
|