mimir-ui-kit 0.0.17 → 0.0.19
Sign up to get free protection for your applications and to get access to all the features.
@@ -89,13 +89,14 @@ const Input = memo(
|
|
89
89
|
/* @__PURE__ */ jsx(
|
90
90
|
"input",
|
91
91
|
{
|
92
|
-
...otherProps,
|
93
92
|
ref,
|
94
93
|
type,
|
95
94
|
className: inputClassNames,
|
96
95
|
onFocus: handleFocus,
|
97
96
|
onBlur: handleBlur,
|
98
|
-
readOnly: readonly
|
97
|
+
readOnly: readonly,
|
98
|
+
value,
|
99
|
+
...otherProps
|
99
100
|
}
|
100
101
|
)
|
101
102
|
] });
|