myoperator-ui 0.0.174 → 0.0.175

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 +0 -10
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2316,11 +2316,6 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
2316
2316
  value={option.value}
2317
2317
  disabled={option.disabled}
2318
2318
  onPointerUp={() => handleItemSelect(option)}
2319
- onKeyDown={(e) => {
2320
- if (e.key === "Enter" || e.key === " ") {
2321
- handleItemSelect(option);
2322
- }
2323
- }}
2324
2319
  >
2325
2320
  {option.label}
2326
2321
  </SelectItem>
@@ -2338,11 +2333,6 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
2338
2333
  value={option.value}
2339
2334
  disabled={option.disabled}
2340
2335
  onPointerUp={() => handleItemSelect(option)}
2341
- onKeyDown={(e) => {
2342
- if (e.key === "Enter" || e.key === " ") {
2343
- handleItemSelect(option);
2344
- }
2345
- }}
2346
2336
  >
2347
2337
  {option.label}
2348
2338
  </SelectItem>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-ui",
3
- "version": "0.0.174",
3
+ "version": "0.0.175",
4
4
  "description": "CLI for adding myOperator UI components to your project",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",