@vaadin/rich-text-editor 25.3.0-alpha6 → 25.3.0-dev.1fa5a51482
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": "25.3.0-
|
|
3
|
+
"version": "25.3.0-dev.1fa5a51482",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,22 +35,22 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/a11y-base": "25.3.0-
|
|
39
|
-
"@vaadin/button": "25.3.0-
|
|
40
|
-
"@vaadin/component-base": "25.3.0-
|
|
41
|
-
"@vaadin/confirm-dialog": "25.3.0-
|
|
42
|
-
"@vaadin/overlay": "25.3.0-
|
|
43
|
-
"@vaadin/text-field": "25.3.0-
|
|
44
|
-
"@vaadin/tooltip": "25.3.0-
|
|
45
|
-
"@vaadin/vaadin-themable-mixin": "25.3.0-
|
|
38
|
+
"@vaadin/a11y-base": "25.3.0-dev.1fa5a51482",
|
|
39
|
+
"@vaadin/button": "25.3.0-dev.1fa5a51482",
|
|
40
|
+
"@vaadin/component-base": "25.3.0-dev.1fa5a51482",
|
|
41
|
+
"@vaadin/confirm-dialog": "25.3.0-dev.1fa5a51482",
|
|
42
|
+
"@vaadin/overlay": "25.3.0-dev.1fa5a51482",
|
|
43
|
+
"@vaadin/text-field": "25.3.0-dev.1fa5a51482",
|
|
44
|
+
"@vaadin/tooltip": "25.3.0-dev.1fa5a51482",
|
|
45
|
+
"@vaadin/vaadin-themable-mixin": "25.3.0-dev.1fa5a51482",
|
|
46
46
|
"lit": "^3.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@vaadin/aura": "25.3.0-
|
|
50
|
-
"@vaadin/chai-plugins": "25.3.0-
|
|
51
|
-
"@vaadin/test-runner-commands": "25.3.0-
|
|
49
|
+
"@vaadin/aura": "25.3.0-dev.1fa5a51482",
|
|
50
|
+
"@vaadin/chai-plugins": "25.3.0-dev.1fa5a51482",
|
|
51
|
+
"@vaadin/test-runner-commands": "25.3.0-dev.1fa5a51482",
|
|
52
52
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
53
|
-
"@vaadin/vaadin-lumo-styles": "25.3.0-
|
|
53
|
+
"@vaadin/vaadin-lumo-styles": "25.3.0-dev.1fa5a51482",
|
|
54
54
|
"sinon": "^22.0.0"
|
|
55
55
|
},
|
|
56
56
|
"cvdlName": "vaadin-rich-text-editor",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"web-types.json",
|
|
60
60
|
"web-types.lit.json"
|
|
61
61
|
],
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "1cd5964b758ffbce3ddb6248a1997f55f8e0ebf6"
|
|
63
63
|
}
|
|
@@ -134,6 +134,7 @@ export { RichTextEditorPopup };
|
|
|
134
134
|
/**
|
|
135
135
|
* An element used internally by `<vaadin-rich-text-editor>`. Not intended to be used separately.
|
|
136
136
|
*
|
|
137
|
+
* @attr {string} theme - The theme variants to apply to the component.
|
|
137
138
|
* @customElement vaadin-rich-text-editor-popup-overlay
|
|
138
139
|
* @extends HTMLElement
|
|
139
140
|
* @private
|
|
@@ -170,11 +171,11 @@ class RichTextEditorPopupOverlay extends PositionMixin(
|
|
|
170
171
|
}
|
|
171
172
|
|
|
172
173
|
/**
|
|
173
|
-
* Override method from OverlayFocusMixin to use owner as focus
|
|
174
|
+
* Override method from OverlayFocusMixin to use owner as focus root
|
|
174
175
|
* @protected
|
|
175
176
|
* @override
|
|
176
177
|
*/
|
|
177
|
-
get
|
|
178
|
+
get _focusRoot() {
|
|
178
179
|
return this.owner;
|
|
179
180
|
}
|
|
180
181
|
}
|
|
@@ -115,6 +115,7 @@ import { RichTextEditorMixin } from './vaadin-rich-text-editor-mixin.js';
|
|
|
115
115
|
* @fires {CustomEvent} html-value-changed - Fired when the `htmlValue` property changes.
|
|
116
116
|
* @fires {CustomEvent} value-changed - Fired when the `value` property changes.
|
|
117
117
|
*
|
|
118
|
+
* @attr {string} theme - The theme variants to apply to the component.
|
|
118
119
|
* @customElement vaadin-rich-text-editor
|
|
119
120
|
* @extends HTMLElement
|
|
120
121
|
*/
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/rich-text-editor",
|
|
4
|
-
"version": "25.3.0-
|
|
4
|
+
"version": "25.3.0-dev.1fa5a51482",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -33,9 +33,7 @@
|
|
|
33
33
|
"description": "The theme variants to apply to the component.",
|
|
34
34
|
"value": {
|
|
35
35
|
"type": [
|
|
36
|
-
"string"
|
|
37
|
-
"null",
|
|
38
|
-
"undefined"
|
|
36
|
+
"string"
|
|
39
37
|
]
|
|
40
38
|
}
|
|
41
39
|
},
|
package/web-types.lit.json
CHANGED