myoperator-mcp 0.2.347 → 0.2.348

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 +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -9825,7 +9825,7 @@ const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
9825
9825
  }: TextareaProps,
9826
9826
  ref
9827
9827
  ) => {
9828
- const textareaRef = React.useRef<HTMLTextAreaElement>(null);
9828
+ const textareaRef = React.useRef<HTMLTextAreaElement | null>(null);
9829
9829
  const pendingSelectionRef = React.useRef<[number, number] | null>(null);
9830
9830
 
9831
9831
  const setTextareaRef = React.useCallback(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-mcp",
3
- "version": "0.2.347",
3
+ "version": "0.2.348",
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",