myoperator-ui 0.0.177 → 0.0.178

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
@@ -2315,7 +2315,7 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
2315
2315
  key={option.value}
2316
2316
  value={option.value}
2317
2317
  disabled={option.disabled}
2318
- onPointerUp={() => handleItemSelect(option)}
2318
+ onSelect={() => handleItemSelect(option)}
2319
2319
  >
2320
2320
  {option.label}
2321
2321
  </SelectItem>
@@ -2332,7 +2332,7 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
2332
2332
  key={option.value}
2333
2333
  value={option.value}
2334
2334
  disabled={option.disabled}
2335
- onPointerUp={() => handleItemSelect(option)}
2335
+ onSelect={() => handleItemSelect(option)}
2336
2336
  >
2337
2337
  {option.label}
2338
2338
  </SelectItem>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-ui",
3
- "version": "0.0.177",
3
+ "version": "0.0.178",
4
4
  "description": "CLI for adding myOperator UI components to your project",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",