@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/overlay",
3
- "version": "25.2.0-alpha1",
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-alpha1",
38
- "@vaadin/component-base": "25.2.0-alpha1",
39
- "@vaadin/vaadin-themable-mixin": "25.2.0-alpha1",
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-alpha1",
44
- "@vaadin/chai-plugins": "25.2.0-alpha1",
45
- "@vaadin/test-runner-commands": "25.2.0-alpha1",
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-alpha1",
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": "866f813f89655a351cbd25328eba1fcb317e267d"
51
+ "gitHead": "1303b6a3eeecb44a9d26f2b53cb56d9e906febdf"
52
52
  }
@@ -22,7 +22,7 @@ export function observeMove(element, callback) {
22
22
 
23
23
  function cleanup() {
24
24
  timeout && clearTimeout(timeout);
25
- io && io.disconnect();
25
+ io?.disconnect();
26
26
  io = null;
27
27
  }
28
28
 
@@ -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);