@vaadin/upload 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/upload",
3
- "version": "23.1.2",
3
+ "version": "23.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,18 +34,18 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@polymer/polymer": "^3.0.0",
37
- "@vaadin/button": "^23.1.2",
38
- "@vaadin/component-base": "^23.1.2",
39
- "@vaadin/progress-bar": "^23.1.2",
40
- "@vaadin/vaadin-lumo-styles": "^23.1.2",
41
- "@vaadin/vaadin-material-styles": "^23.1.2",
42
- "@vaadin/vaadin-themable-mixin": "^23.1.2"
37
+ "@vaadin/button": "^23.1.3",
38
+ "@vaadin/component-base": "^23.1.3",
39
+ "@vaadin/progress-bar": "^23.1.3",
40
+ "@vaadin/vaadin-lumo-styles": "^23.1.3",
41
+ "@vaadin/vaadin-material-styles": "^23.1.3",
42
+ "@vaadin/vaadin-themable-mixin": "^23.1.3"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@esm-bundle/chai": "^4.3.4",
46
- "@vaadin/form-layout": "^23.1.2",
46
+ "@vaadin/form-layout": "^23.1.3",
47
47
  "@vaadin/testing-helpers": "^0.3.2",
48
48
  "sinon": "^13.0.2"
49
49
  },
50
- "gitHead": "6fb205c6e9a761feadfb779dd5d7af96d3102e56"
50
+ "gitHead": "3066c296ad0ef652bc49417005523398199f1bf2"
51
51
  }
@@ -401,13 +401,13 @@ declare class Upload extends ThemableMixin(ElementMixin(HTMLElement)) {
401
401
  addEventListener<K extends keyof UploadEventMap>(
402
402
  type: K,
403
403
  listener: (this: Upload, ev: UploadEventMap[K]) => void,
404
- options?: boolean | AddEventListenerOptions,
404
+ options?: AddEventListenerOptions | boolean,
405
405
  ): void;
406
406
 
407
407
  removeEventListener<K extends keyof UploadEventMap>(
408
408
  type: K,
409
409
  listener: (this: Upload, ev: UploadEventMap[K]) => void,
410
- options?: boolean | EventListenerOptions,
410
+ options?: EventListenerOptions | boolean,
411
411
  ): void;
412
412
  }
413
413