@vaadin/confirm-dialog 23.1.2 → 23.1.5

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/confirm-dialog",
3
- "version": "23.1.2",
3
+ "version": "23.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,19 +35,19 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@polymer/polymer": "^3.0.0",
38
- "@vaadin/button": "^23.1.2",
39
- "@vaadin/component-base": "^23.1.2",
40
- "@vaadin/dialog": "^23.1.2",
38
+ "@vaadin/button": "^23.1.5",
39
+ "@vaadin/component-base": "^23.1.5",
40
+ "@vaadin/dialog": "^23.1.5",
41
41
  "@vaadin/vaadin-license-checker": "^2.1.0",
42
- "@vaadin/vaadin-lumo-styles": "^23.1.2",
43
- "@vaadin/vaadin-material-styles": "^23.1.2",
44
- "@vaadin/vaadin-overlay": "^23.1.2",
45
- "@vaadin/vaadin-themable-mixin": "^23.1.2"
42
+ "@vaadin/vaadin-lumo-styles": "^23.1.5",
43
+ "@vaadin/vaadin-material-styles": "^23.1.5",
44
+ "@vaadin/vaadin-overlay": "^23.1.5",
45
+ "@vaadin/vaadin-themable-mixin": "^23.1.5"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@esm-bundle/chai": "^4.3.4",
49
49
  "@vaadin/testing-helpers": "^0.3.2",
50
50
  "sinon": "^13.0.2"
51
51
  },
52
- "gitHead": "6fb205c6e9a761feadfb779dd5d7af96d3102e56"
52
+ "gitHead": "326938919a54353231af25d341ba6076c249afee"
53
53
  }
@@ -22,7 +22,7 @@ export interface ConfirmDialogCustomEventMap {
22
22
  reject: Event;
23
23
  }
24
24
 
25
- export type ConfirmDialogEventMap = HTMLElementEventMap & ConfirmDialogCustomEventMap;
25
+ export type ConfirmDialogEventMap = ConfirmDialogCustomEventMap & HTMLElementEventMap;
26
26
 
27
27
  /**
28
28
  * `<vaadin-confirm-dialog>` is a Web Component for showing alerts and asking for user confirmation.
@@ -149,13 +149,13 @@ declare class ConfirmDialog extends SlotMixin(ElementMixin(ThemePropertyMixin(HT
149
149
  addEventListener<K extends keyof ConfirmDialogEventMap>(
150
150
  type: K,
151
151
  listener: (this: ConfirmDialog, ev: ConfirmDialogEventMap[K]) => void,
152
- options?: boolean | AddEventListenerOptions,
152
+ options?: AddEventListenerOptions | boolean,
153
153
  ): void;
154
154
 
155
155
  removeEventListener<K extends keyof ConfirmDialogEventMap>(
156
156
  type: K,
157
157
  listener: (this: ConfirmDialog, ev: ConfirmDialogEventMap[K]) => void,
158
- options?: boolean | EventListenerOptions,
158
+ options?: EventListenerOptions | boolean,
159
159
  ): void;
160
160
  }
161
161