myoperator-mcp 0.2.311 → 0.2.313
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 +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6008,9 +6008,9 @@ const PhoneInput = React.forwardRef(
|
|
|
6008
6008
|
}
|
|
6009
6009
|
};
|
|
6010
6010
|
|
|
6011
|
-
const handleBeforeInput
|
|
6012
|
-
|
|
6013
|
-
) => {
|
|
6011
|
+
const handleBeforeInput: NonNullable<
|
|
6012
|
+
React.DOMAttributes<HTMLInputElement>["onBeforeInput"]
|
|
6013
|
+
> = (event) => {
|
|
6014
6014
|
onBeforeInput?.(event);
|
|
6015
6015
|
if (event.defaultPrevented) return;
|
|
6016
6016
|
|
package/package.json
CHANGED