@vaadin/vaadin-combo-box 5.4.8 → 5.4.9

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.
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "repository": "vaadin/vaadin-combo-box",
11
11
  "homepage": "https://vaadin.com/components",
12
12
  "name": "@vaadin/vaadin-combo-box",
13
- "version": "5.4.8",
13
+ "version": "5.4.9",
14
14
  "main": "vaadin-combo-box.js",
15
15
  "author": "Vaadin Ltd",
16
16
  "license": "Apache-2.0",
@@ -48,9 +48,9 @@
48
48
  "@vaadin/vaadin-element-mixin": "^2.4.1"
49
49
  },
50
50
  "scripts": {
51
- "generate-typings": "gen-typescript-declarations --outDir . --verify"
52
- },
53
- "devDependencies": {
51
+ "generate-typings": "gen-typescript-declarations --outDir . --verify"
52
+ },
53
+ "devDependencies": {
54
54
  "@polymer/iron-form": "^3.0.0",
55
55
  "@polymer/iron-component-page": "^4.0.0",
56
56
  "@polymer/iron-test-helpers": "^3.0.0",
@@ -23,6 +23,9 @@ $_documentContainer.innerHTML = `<dom-module id="vaadin-combo-box-overlay-styles
23
23
  </dom-module>`;
24
24
 
25
25
  document.head.appendChild($_documentContainer.content);
26
+ let memoizedTemplate;
27
+
28
+
26
29
  /**
27
30
  * The overlay element.
28
31
  *
@@ -41,6 +44,15 @@ class ComboBoxOverlayElement extends OverlayElement {
41
44
  return 'vaadin-combo-box-overlay';
42
45
  }
43
46
 
47
+ static get template() {
48
+ if (!memoizedTemplate) {
49
+ memoizedTemplate = super.template.cloneNode(true);
50
+ memoizedTemplate.content.querySelector('[part~="overlay"]').removeAttribute('tabindex');
51
+ }
52
+
53
+ return memoizedTemplate;
54
+ }
55
+
44
56
  connectedCallback() {
45
57
  super.connectedCallback();
46
58
 
@@ -229,7 +229,7 @@ class ComboBoxElement extends
229
229
  }
230
230
 
231
231
  static get version() {
232
- return '5.4.8';
232
+ return '5.4.9';
233
233
  }
234
234
 
235
235
  static get properties() {