@startlibs/form 1.0.9 → 1.0.10

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.
Binary file
package/.yarnrc.yml ADDED
@@ -0,0 +1 @@
1
+ nodeLinker: node-modules
package/lib/index.js CHANGED
@@ -3385,6 +3385,9 @@ var AutoComplete = React.forwardRef(function (_ref, outerRef) {
3385
3385
  };
3386
3386
 
3387
3387
  var input = React.createElement(React.Fragment, null, React.createElement(AutoCompleteInput, {
3388
+ onKeyDown: function onKeyDown(e) {
3389
+ return e.key === ' ' && e.stopPropagation();
3390
+ },
3388
3391
  className: className,
3389
3392
  ref: ref,
3390
3393
  onFocus: autoCompleteList.length ? autoCompleteBox.open : undefined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startlibs/form",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Startlibs Form",
5
5
  "main": "lib/index.js",
6
6
  "sideEffects": false,
@@ -63,5 +63,6 @@
63
63
  "dependencies": {
64
64
  "react-window": "^1.8.6",
65
65
  "styled-components": "5.1.1"
66
- }
66
+ },
67
+ "packageManager": "yarn@4.11.0+sha512.4e54aeace9141df2f0177c266b05ec50dc044638157dae128c471ba65994ac802122d7ab35bcd9e81641228b7dcf24867d28e750e0bcae8a05277d600008ad54"
67
68
  }