@vaadin/overlay 25.2.0-alpha1 → 25.2.0-alpha10
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 +9 -9
- package/src/vaadin-overlay-utils.js +1 -1
- package/src/vaadin-overlay.js +0 -34
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/overlay",
|
|
3
|
-
"version": "25.2.0-
|
|
3
|
+
"version": "25.2.0-alpha10",
|
|
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.0-
|
|
38
|
-
"@vaadin/component-base": "25.2.0-
|
|
39
|
-
"@vaadin/vaadin-themable-mixin": "25.2.0-
|
|
37
|
+
"@vaadin/a11y-base": "25.2.0-alpha10",
|
|
38
|
+
"@vaadin/component-base": "25.2.0-alpha10",
|
|
39
|
+
"@vaadin/vaadin-themable-mixin": "25.2.0-alpha10",
|
|
40
40
|
"lit": "^3.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@vaadin/aura": "25.2.0-
|
|
44
|
-
"@vaadin/chai-plugins": "25.2.0-
|
|
45
|
-
"@vaadin/test-runner-commands": "25.2.0-
|
|
43
|
+
"@vaadin/aura": "25.2.0-alpha10",
|
|
44
|
+
"@vaadin/chai-plugins": "25.2.0-alpha10",
|
|
45
|
+
"@vaadin/test-runner-commands": "25.2.0-alpha10",
|
|
46
46
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
47
|
-
"@vaadin/vaadin-lumo-styles": "25.2.0-
|
|
47
|
+
"@vaadin/vaadin-lumo-styles": "25.2.0-alpha10",
|
|
48
48
|
"sinon": "^21.0.2"
|
|
49
49
|
},
|
|
50
50
|
"customElements": "custom-elements.json",
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "1303b6a3eeecb44a9d26f2b53cb56d9e906febdf"
|
|
52
52
|
}
|
package/src/vaadin-overlay.js
CHANGED
|
@@ -97,40 +97,6 @@ class Overlay extends OverlayMixin(DirMixin(ThemableMixin(PolylitMixin(LumoInjec
|
|
|
97
97
|
</div>
|
|
98
98
|
`;
|
|
99
99
|
}
|
|
100
|
-
|
|
101
|
-
/**
|
|
102
|
-
* @event vaadin-overlay-open
|
|
103
|
-
* Fired after the overlay is opened.
|
|
104
|
-
*/
|
|
105
|
-
|
|
106
|
-
/**
|
|
107
|
-
* @event vaadin-overlay-close
|
|
108
|
-
* Fired when the opened overlay is about to be closed.
|
|
109
|
-
* Calling `preventDefault()` on the event cancels the closing.
|
|
110
|
-
*/
|
|
111
|
-
|
|
112
|
-
/**
|
|
113
|
-
* @event vaadin-overlay-closing
|
|
114
|
-
* Fired when the overlay starts to close.
|
|
115
|
-
* Closing the overlay can be asynchronous depending on the animation.
|
|
116
|
-
*/
|
|
117
|
-
|
|
118
|
-
/**
|
|
119
|
-
* @event vaadin-overlay-closed
|
|
120
|
-
* Fired after the overlay is closed.
|
|
121
|
-
*/
|
|
122
|
-
|
|
123
|
-
/**
|
|
124
|
-
* @event vaadin-overlay-escape-press
|
|
125
|
-
* Fired before the overlay is closed on Escape key press.
|
|
126
|
-
* Calling `preventDefault()` on the event cancels the closing.
|
|
127
|
-
*/
|
|
128
|
-
|
|
129
|
-
/**
|
|
130
|
-
* @event vaadin-overlay-outside-click
|
|
131
|
-
* Fired before the overlay is closed on outside click.
|
|
132
|
-
* Calling `preventDefault()` on the event cancels the closing.
|
|
133
|
-
*/
|
|
134
100
|
}
|
|
135
101
|
|
|
136
102
|
defineCustomElement(Overlay);
|