@vaadin/master-detail-layout 24.8.6 → 24.8.8
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/master-detail-layout",
|
|
3
|
-
"version": "24.8.
|
|
3
|
+
"version": "24.8.8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"web-component"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@vaadin/a11y-base": "~24.8.
|
|
38
|
-
"@vaadin/component-base": "~24.8.
|
|
39
|
-
"@vaadin/vaadin-lumo-styles": "~24.8.
|
|
40
|
-
"@vaadin/vaadin-material-styles": "~24.8.
|
|
41
|
-
"@vaadin/vaadin-themable-mixin": "~24.8.
|
|
37
|
+
"@vaadin/a11y-base": "~24.8.8",
|
|
38
|
+
"@vaadin/component-base": "~24.8.8",
|
|
39
|
+
"@vaadin/vaadin-lumo-styles": "~24.8.8",
|
|
40
|
+
"@vaadin/vaadin-material-styles": "~24.8.8",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "~24.8.8",
|
|
42
42
|
"lit": "^3.0.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@vaadin/chai-plugins": "~24.8.
|
|
45
|
+
"@vaadin/chai-plugins": "~24.8.8",
|
|
46
46
|
"@vaadin/testing-helpers": "^1.1.0",
|
|
47
47
|
"sinon": "^18.0.0"
|
|
48
48
|
},
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"web-types.json",
|
|
51
51
|
"web-types.lit.json"
|
|
52
52
|
],
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "992c7e745638819544e6814dd54d108c15f8163b"
|
|
54
54
|
}
|
|
@@ -441,9 +441,9 @@ class MasterDetailLayout extends SlotStylesMixin(ResizeMixin(ElementMixin(Themab
|
|
|
441
441
|
|
|
442
442
|
/** @private */
|
|
443
443
|
__onDetailKeydown(event) {
|
|
444
|
-
if (event.key === 'Escape') {
|
|
444
|
+
if (event.key === 'Escape' && !event.defaultPrevented) {
|
|
445
445
|
// Prevent firing on parent layout when using nested layouts
|
|
446
|
-
event.
|
|
446
|
+
event.preventDefault();
|
|
447
447
|
this.dispatchEvent(new CustomEvent('detail-escape-press'));
|
|
448
448
|
}
|
|
449
449
|
}
|
package/web-types.json
CHANGED