myoperator-mcp 0.2.97 → 0.2.99

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 +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3429,7 +3429,7 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
3429
3429
  key={option.value}
3430
3430
  value={option.value}
3431
3431
  disabled={option.disabled}
3432
- onClick={() => handleItemClick(option)}
3432
+ onPointerUp={() => handleItemClick(option)}
3433
3433
  >
3434
3434
  {option.label}
3435
3435
  </SelectItem>
@@ -3446,7 +3446,7 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
3446
3446
  key={option.value}
3447
3447
  value={option.value}
3448
3448
  disabled={option.disabled}
3449
- onClick={() => handleItemClick(option)}
3449
+ onPointerUp={() => handleItemClick(option)}
3450
3450
  >
3451
3451
  {option.label}
3452
3452
  </SelectItem>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-mcp",
3
- "version": "0.2.97",
3
+ "version": "0.2.99",
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",