@vaadin/rich-text-editor 23.1.1 → 23.1.4
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.
|
|
3
|
+
"version": "23.1.4",
|
|
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.
|
|
43
|
-
"@vaadin/component-base": "^23.1.
|
|
44
|
-
"@vaadin/confirm-dialog": "^23.1.
|
|
45
|
-
"@vaadin/text-field": "^23.1.
|
|
42
|
+
"@vaadin/button": "^23.1.4",
|
|
43
|
+
"@vaadin/component-base": "^23.1.4",
|
|
44
|
+
"@vaadin/confirm-dialog": "^23.1.4",
|
|
45
|
+
"@vaadin/text-field": "^23.1.4",
|
|
46
46
|
"@vaadin/vaadin-license-checker": "^2.1.0",
|
|
47
|
-
"@vaadin/vaadin-lumo-styles": "^23.1.
|
|
48
|
-
"@vaadin/vaadin-material-styles": "^23.1.
|
|
49
|
-
"@vaadin/vaadin-themable-mixin": "^23.1.
|
|
47
|
+
"@vaadin/vaadin-lumo-styles": "^23.1.4",
|
|
48
|
+
"@vaadin/vaadin-material-styles": "^23.1.4",
|
|
49
|
+
"@vaadin/vaadin-themable-mixin": "^23.1.4"
|
|
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": "
|
|
59
|
+
"gitHead": "0a82302064f1276a000f0cbd810076539407d133"
|
|
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?:
|
|
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?:
|
|
190
|
+
options?: EventListenerOptions | boolean,
|
|
191
191
|
): void;
|
|
192
192
|
}
|
|
193
193
|
|