@umbraco-ui/uui-combobox 1.17.1 → 1.17.3

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/lib/index.js +1 -6
  2. package/package.json +9 -9
package/lib/index.js CHANGED
@@ -103,14 +103,9 @@ let UUIComboboxElement = class extends UUIFormControlMixin(LitElement, "") {
103
103
  if (this.open === false && e.code === "Enter") {
104
104
  e.preventDefault();
105
105
  e.stopImmediatePropagation();
106
- }
107
- if (e.code === "ArrowUp" || e.code === "ArrowDown") {
108
106
  __privateGet(this, _onOpen).call(this);
109
107
  }
110
- if (e.code === "Space") {
111
- if (this._isOpen) return;
112
- e.preventDefault();
113
- e.stopImmediatePropagation();
108
+ if (e.code === "ArrowUp" || e.code === "ArrowDown") {
114
109
  __privateGet(this, _onOpen).call(this);
115
110
  }
116
111
  if (e.code === "Escape") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-combobox",
3
- "version": "1.17.1",
3
+ "version": "1.17.3",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -30,13 +30,13 @@
30
30
  "custom-elements.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@umbraco-ui/uui-base": "1.17.1",
34
- "@umbraco-ui/uui-button": "1.17.1",
35
- "@umbraco-ui/uui-combobox-list": "1.17.1",
36
- "@umbraco-ui/uui-icon": "1.17.1",
37
- "@umbraco-ui/uui-popover-container": "1.17.1",
38
- "@umbraco-ui/uui-scroll-container": "1.17.1",
39
- "@umbraco-ui/uui-symbol-expand": "1.17.1"
33
+ "@umbraco-ui/uui-base": "1.17.3",
34
+ "@umbraco-ui/uui-button": "1.17.3",
35
+ "@umbraco-ui/uui-combobox-list": "1.17.3",
36
+ "@umbraco-ui/uui-icon": "1.17.3",
37
+ "@umbraco-ui/uui-popover-container": "1.17.3",
38
+ "@umbraco-ui/uui-scroll-container": "1.17.3",
39
+ "@umbraco-ui/uui-symbol-expand": "1.17.3"
40
40
  },
41
41
  "scripts": {
42
42
  "build": "npm run analyze && tsc --build && rollup -c rollup.config.js",
@@ -47,5 +47,5 @@
47
47
  "access": "public"
48
48
  },
49
49
  "homepage": "https://uui.umbraco.com/?path=/story/uui-combobox",
50
- "gitHead": "066da7bddb2178bf21224f98c4b390d09773b896"
50
+ "gitHead": "6ace9a5889a8e18bc47404563b70b4d8b263aac9"
51
51
  }