@vaadin/vaadin-overlay 23.1.2 → 23.1.3

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/vaadin-overlay",
3
- "version": "23.1.2",
3
+ "version": "23.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,20 +35,20 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@polymer/polymer": "^3.0.0",
38
- "@vaadin/component-base": "^23.1.2",
39
- "@vaadin/vaadin-lumo-styles": "^23.1.2",
40
- "@vaadin/vaadin-material-styles": "^23.1.2",
41
- "@vaadin/vaadin-themable-mixin": "^23.1.2"
38
+ "@vaadin/component-base": "^23.1.3",
39
+ "@vaadin/vaadin-lumo-styles": "^23.1.3",
40
+ "@vaadin/vaadin-material-styles": "^23.1.3",
41
+ "@vaadin/vaadin-themable-mixin": "^23.1.3"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@esm-bundle/chai": "^4.3.4",
45
45
  "@polymer/iron-overlay-behavior": "^3.0.0",
46
- "@vaadin/button": "^23.1.2",
47
- "@vaadin/radio-group": "^23.1.2",
46
+ "@vaadin/button": "^23.1.3",
47
+ "@vaadin/radio-group": "^23.1.3",
48
48
  "@vaadin/testing-helpers": "^0.3.2",
49
- "@vaadin/text-field": "^23.1.2",
49
+ "@vaadin/text-field": "^23.1.3",
50
50
  "lit": "^2.0.0",
51
51
  "sinon": "^13.0.2"
52
52
  },
53
- "gitHead": "6fb205c6e9a761feadfb779dd5d7af96d3102e56"
53
+ "gitHead": "3066c296ad0ef652bc49417005523398199f1bf2"
54
54
  }
@@ -232,13 +232,13 @@ declare class OverlayElement extends ThemableMixin(DirMixin(ControllerMixin(HTML
232
232
  addEventListener<K extends keyof OverlayEventMap>(
233
233
  type: K,
234
234
  listener: (this: OverlayElement, ev: OverlayEventMap[K]) => void,
235
- options?: boolean | AddEventListenerOptions,
235
+ options?: AddEventListenerOptions | boolean,
236
236
  ): void;
237
237
 
238
238
  removeEventListener<K extends keyof OverlayEventMap>(
239
239
  type: K,
240
240
  listener: (this: OverlayElement, ev: OverlayEventMap[K]) => void,
241
- options?: boolean | EventListenerOptions,
241
+ options?: EventListenerOptions | boolean,
242
242
  ): void;
243
243
  }
244
244