@vaadin/accordion 23.1.0-beta1 → 23.1.0-beta4
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 +8 -8
- package/src/vaadin-accordion.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/accordion",
|
|
3
|
-
"version": "23.1.0-
|
|
3
|
+
"version": "23.1.0-beta4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,17 +34,17 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@polymer/polymer": "^3.0.0",
|
|
37
|
-
"@vaadin/component-base": "23.1.0-
|
|
38
|
-
"@vaadin/details": "23.1.0-
|
|
39
|
-
"@vaadin/vaadin-lumo-styles": "23.1.0-
|
|
40
|
-
"@vaadin/vaadin-material-styles": "23.1.0-
|
|
41
|
-
"@vaadin/vaadin-themable-mixin": "23.1.0-
|
|
37
|
+
"@vaadin/component-base": "23.1.0-beta4",
|
|
38
|
+
"@vaadin/details": "23.1.0-beta4",
|
|
39
|
+
"@vaadin/vaadin-lumo-styles": "23.1.0-beta4",
|
|
40
|
+
"@vaadin/vaadin-material-styles": "23.1.0-beta4",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "23.1.0-beta4"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@esm-bundle/chai": "^4.3.4",
|
|
45
|
-
"@vaadin/dialog": "23.1.0-
|
|
45
|
+
"@vaadin/dialog": "23.1.0-beta4",
|
|
46
46
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
47
47
|
"sinon": "^13.0.2"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "06e283473964ecb3085aacf3eddb5333d052a045"
|
|
50
50
|
}
|
package/src/vaadin-accordion.js
CHANGED
|
@@ -176,7 +176,7 @@ class Accordion extends ThemableMixin(ElementMixin(PolymerElement)) {
|
|
|
176
176
|
* @protected
|
|
177
177
|
*/
|
|
178
178
|
_onKeydown(event) {
|
|
179
|
-
//
|
|
179
|
+
// Only check keyboard events on details toggle buttons
|
|
180
180
|
const item = event.composedPath()[0];
|
|
181
181
|
if (!this.items.some((el) => el.focusElement === item)) {
|
|
182
182
|
return;
|
|
@@ -204,7 +204,7 @@ class Accordion extends ThemableMixin(ElementMixin(PolymerElement)) {
|
|
|
204
204
|
idx = this.items.length - 1;
|
|
205
205
|
break;
|
|
206
206
|
default:
|
|
207
|
-
//
|
|
207
|
+
// Do nothing.
|
|
208
208
|
}
|
|
209
209
|
|
|
210
210
|
idx = this._getAvailableIndex(idx, increment);
|