@pnkx-lib/ui 1.9.259 → 1.9.260
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/es/fields/Input.js +0 -2
- package/package.json +1 -1
package/es/fields/Input.js
CHANGED
|
@@ -1264,14 +1264,12 @@ const Input = (props) => {
|
|
|
1264
1264
|
const handleCompositionEnd = useCallback(
|
|
1265
1265
|
(e) => {
|
|
1266
1266
|
setIsComposing(false);
|
|
1267
|
-
console.log("vvvvv", e.currentTarget.value);
|
|
1268
1267
|
const syntheticEvent = {
|
|
1269
1268
|
target: {
|
|
1270
1269
|
value: e.currentTarget.value,
|
|
1271
1270
|
name
|
|
1272
1271
|
}
|
|
1273
1272
|
};
|
|
1274
|
-
console.log(" syntheticEvent:", syntheticEvent);
|
|
1275
1273
|
setTimeout(() => {
|
|
1276
1274
|
handleChange(syntheticEvent);
|
|
1277
1275
|
}, 0);
|