myoperator-ui 0.0.185 → 0.0.186

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
@@ -2356,7 +2356,7 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
2356
2356
  key={option.value}
2357
2357
  value={option.value}
2358
2358
  disabled={option.disabled}
2359
- onClick={() => handleItemClick(option)}
2359
+ onPointerUp={() => handleItemClick(option)}
2360
2360
  >
2361
2361
  {option.label}
2362
2362
  </SelectItem>
@@ -2373,7 +2373,7 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
2373
2373
  key={option.value}
2374
2374
  value={option.value}
2375
2375
  disabled={option.disabled}
2376
- onClick={() => handleItemClick(option)}
2376
+ onPointerUp={() => handleItemClick(option)}
2377
2377
  >
2378
2378
  {option.label}
2379
2379
  </SelectItem>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-ui",
3
- "version": "0.0.185",
3
+ "version": "0.0.186",
4
4
  "description": "CLI for adding myOperator UI components to your project",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",