myoperator-mcp 0.2.87 → 0.2.88
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 +0 -10
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3398,11 +3398,6 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
|
|
|
3398
3398
|
value={option.value}
|
|
3399
3399
|
disabled={option.disabled}
|
|
3400
3400
|
onPointerUp={() => handleItemSelect(option)}
|
|
3401
|
-
onKeyDown={(e) => {
|
|
3402
|
-
if (e.key === "Enter" || e.key === " ") {
|
|
3403
|
-
handleItemSelect(option);
|
|
3404
|
-
}
|
|
3405
|
-
}}
|
|
3406
3401
|
>
|
|
3407
3402
|
{option.label}
|
|
3408
3403
|
</SelectItem>
|
|
@@ -3420,11 +3415,6 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
|
|
|
3420
3415
|
value={option.value}
|
|
3421
3416
|
disabled={option.disabled}
|
|
3422
3417
|
onPointerUp={() => handleItemSelect(option)}
|
|
3423
|
-
onKeyDown={(e) => {
|
|
3424
|
-
if (e.key === "Enter" || e.key === " ") {
|
|
3425
|
-
handleItemSelect(option);
|
|
3426
|
-
}
|
|
3427
|
-
}}
|
|
3428
3418
|
>
|
|
3429
3419
|
{option.label}
|
|
3430
3420
|
</SelectItem>
|
package/package.json
CHANGED