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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. 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
- event: React.InputEvent<HTMLInputElement>
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-mcp",
3
- "version": "0.2.311",
3
+ "version": "0.2.313",
4
4
  "description": "MCP server for myOperator UI components - enables AI assistants to access component metadata, examples, and design tokens",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.js",