@vaadin/rich-text-editor 25.0.0-alpha15 → 25.0.0-alpha16
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.0.0-
|
|
3
|
+
"version": "25.0.0-alpha16",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,21 +35,21 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/button": "25.0.0-
|
|
39
|
-
"@vaadin/component-base": "25.0.0-
|
|
40
|
-
"@vaadin/confirm-dialog": "25.0.0-
|
|
41
|
-
"@vaadin/overlay": "25.0.0-
|
|
42
|
-
"@vaadin/text-field": "25.0.0-
|
|
43
|
-
"@vaadin/tooltip": "25.0.0-
|
|
44
|
-
"@vaadin/vaadin-themable-mixin": "25.0.0-
|
|
38
|
+
"@vaadin/button": "25.0.0-alpha16",
|
|
39
|
+
"@vaadin/component-base": "25.0.0-alpha16",
|
|
40
|
+
"@vaadin/confirm-dialog": "25.0.0-alpha16",
|
|
41
|
+
"@vaadin/overlay": "25.0.0-alpha16",
|
|
42
|
+
"@vaadin/text-field": "25.0.0-alpha16",
|
|
43
|
+
"@vaadin/tooltip": "25.0.0-alpha16",
|
|
44
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-alpha16",
|
|
45
45
|
"lit": "^3.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@vaadin/a11y-base": "25.0.0-
|
|
49
|
-
"@vaadin/chai-plugins": "25.0.0-
|
|
50
|
-
"@vaadin/test-runner-commands": "25.0.0-
|
|
48
|
+
"@vaadin/a11y-base": "25.0.0-alpha16",
|
|
49
|
+
"@vaadin/chai-plugins": "25.0.0-alpha16",
|
|
50
|
+
"@vaadin/test-runner-commands": "25.0.0-alpha16",
|
|
51
51
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
52
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
52
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-alpha16",
|
|
53
53
|
"sinon": "^18.0.0"
|
|
54
54
|
},
|
|
55
55
|
"cvdlName": "vaadin-rich-text-editor",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"web-types.json",
|
|
58
58
|
"web-types.lit.json"
|
|
59
59
|
],
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "4b316158a4a4f702f032bc9940fc82f0faa840f4"
|
|
61
61
|
}
|
|
@@ -412,9 +412,9 @@ export const RichTextEditorMixin = (superClass) =>
|
|
|
412
412
|
// Set up tooltip to show when hovering or focusing toolbar buttons
|
|
413
413
|
this._tooltip = document.createElement('vaadin-tooltip');
|
|
414
414
|
this._tooltip.slot = 'tooltip';
|
|
415
|
-
//
|
|
416
|
-
// tooltip being in the light DOM
|
|
417
|
-
this._tooltip.ariaTarget =
|
|
415
|
+
// Set ariaTarget to null, as toolbar buttons already have aria-label,
|
|
416
|
+
// and also cannot be linked with the tooltip being in the light DOM
|
|
417
|
+
this._tooltip.ariaTarget = null;
|
|
418
418
|
this.append(this._tooltip);
|
|
419
419
|
|
|
420
420
|
const buttons = this.shadowRoot.querySelectorAll('[part~="toolbar-button"]');
|
|
@@ -174,11 +174,11 @@ class RichTextEditorPopupOverlay extends PositionMixin(
|
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
/**
|
|
177
|
-
* Override method from OverlayFocusMixin to use owner as
|
|
177
|
+
* Override method from OverlayFocusMixin to use owner as focus trap root
|
|
178
178
|
* @protected
|
|
179
179
|
* @override
|
|
180
180
|
*/
|
|
181
|
-
get
|
|
181
|
+
get _focusTrapRoot() {
|
|
182
182
|
return this.owner;
|
|
183
183
|
}
|
|
184
184
|
}
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED