@vaadin/overlay 25.2.7 → 25.2.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/overlay",
|
|
3
|
-
"version": "25.2.
|
|
3
|
+
"version": "25.2.8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,19 +34,19 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
37
|
-
"@vaadin/a11y-base": "~25.2.
|
|
38
|
-
"@vaadin/component-base": "~25.2.
|
|
39
|
-
"@vaadin/vaadin-themable-mixin": "~25.2.
|
|
37
|
+
"@vaadin/a11y-base": "~25.2.8",
|
|
38
|
+
"@vaadin/component-base": "~25.2.8",
|
|
39
|
+
"@vaadin/vaadin-themable-mixin": "~25.2.8",
|
|
40
40
|
"lit": "^3.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@vaadin/aura": "~25.2.
|
|
44
|
-
"@vaadin/chai-plugins": "~25.2.
|
|
45
|
-
"@vaadin/test-runner-commands": "~25.2.
|
|
43
|
+
"@vaadin/aura": "~25.2.8",
|
|
44
|
+
"@vaadin/chai-plugins": "~25.2.8",
|
|
45
|
+
"@vaadin/test-runner-commands": "~25.2.8",
|
|
46
46
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
47
|
-
"@vaadin/vaadin-lumo-styles": "~25.2.
|
|
47
|
+
"@vaadin/vaadin-lumo-styles": "~25.2.8",
|
|
48
48
|
"sinon": "^22.0.0"
|
|
49
49
|
},
|
|
50
50
|
"customElements": "custom-elements.json",
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "46ec4be23967061d203ca4dad6e7b8291d4edd9c"
|
|
52
52
|
}
|
|
@@ -557,6 +557,11 @@ export const OverlayMixin = (superClass) =>
|
|
|
557
557
|
|
|
558
558
|
if (this.opened && !evt.defaultPrevented) {
|
|
559
559
|
this.close(event);
|
|
560
|
+
|
|
561
|
+
// Only for modal overlays which make underlying content non-interactive.
|
|
562
|
+
if (!this.opened && !this.modeless) {
|
|
563
|
+
event.preventDefault();
|
|
564
|
+
}
|
|
560
565
|
}
|
|
561
566
|
}
|
|
562
567
|
|