@vaadin/rich-text-editor 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/rich-text-editor",
3
- "version": "23.1.2",
3
+ "version": "23.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -39,14 +39,14 @@
39
39
  ],
40
40
  "dependencies": {
41
41
  "@polymer/polymer": "^3.0.0",
42
- "@vaadin/button": "^23.1.2",
43
- "@vaadin/component-base": "^23.1.2",
44
- "@vaadin/confirm-dialog": "^23.1.2",
45
- "@vaadin/text-field": "^23.1.2",
42
+ "@vaadin/button": "^23.1.3",
43
+ "@vaadin/component-base": "^23.1.3",
44
+ "@vaadin/confirm-dialog": "^23.1.3",
45
+ "@vaadin/text-field": "^23.1.3",
46
46
  "@vaadin/vaadin-license-checker": "^2.1.0",
47
- "@vaadin/vaadin-lumo-styles": "^23.1.2",
48
- "@vaadin/vaadin-material-styles": "^23.1.2",
49
- "@vaadin/vaadin-themable-mixin": "^23.1.2"
47
+ "@vaadin/vaadin-lumo-styles": "^23.1.3",
48
+ "@vaadin/vaadin-material-styles": "^23.1.3",
49
+ "@vaadin/vaadin-themable-mixin": "^23.1.3"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@esm-bundle/chai": "^4.3.4",
@@ -56,5 +56,5 @@
56
56
  "gulp-iconfont": "^11.0.0",
57
57
  "sinon": "^13.0.2"
58
58
  },
59
- "gitHead": "6fb205c6e9a761feadfb779dd5d7af96d3102e56"
59
+ "gitHead": "3066c296ad0ef652bc49417005523398199f1bf2"
60
60
  }
@@ -181,13 +181,13 @@ declare class RichTextEditor extends ElementMixin(ThemableMixin(HTMLElement)) {
181
181
  addEventListener<K extends keyof RichTextEditorEventMap>(
182
182
  type: K,
183
183
  listener: (this: RichTextEditor, ev: RichTextEditorEventMap[K]) => void,
184
- options?: boolean | AddEventListenerOptions,
184
+ options?: AddEventListenerOptions | boolean,
185
185
  ): void;
186
186
 
187
187
  removeEventListener<K extends keyof RichTextEditorEventMap>(
188
188
  type: K,
189
189
  listener: (this: RichTextEditor, ev: RichTextEditorEventMap[K]) => void,
190
- options?: boolean | EventListenerOptions,
190
+ options?: EventListenerOptions | boolean,
191
191
  ): void;
192
192
  }
193
193