@vaadin/rich-text-editor 25.2.0-beta1 → 25.2.0-beta2

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.2.0-beta1",
3
+ "version": "25.2.0-beta2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,23 +35,23 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
- "@vaadin/a11y-base": "25.2.0-beta1",
39
- "@vaadin/button": "25.2.0-beta1",
40
- "@vaadin/component-base": "25.2.0-beta1",
41
- "@vaadin/confirm-dialog": "25.2.0-beta1",
42
- "@vaadin/overlay": "25.2.0-beta1",
43
- "@vaadin/text-field": "25.2.0-beta1",
44
- "@vaadin/tooltip": "25.2.0-beta1",
45
- "@vaadin/vaadin-themable-mixin": "25.2.0-beta1",
38
+ "@vaadin/a11y-base": "25.2.0-beta2",
39
+ "@vaadin/button": "25.2.0-beta2",
40
+ "@vaadin/component-base": "25.2.0-beta2",
41
+ "@vaadin/confirm-dialog": "25.2.0-beta2",
42
+ "@vaadin/overlay": "25.2.0-beta2",
43
+ "@vaadin/text-field": "25.2.0-beta2",
44
+ "@vaadin/tooltip": "25.2.0-beta2",
45
+ "@vaadin/vaadin-themable-mixin": "25.2.0-beta2",
46
46
  "lit": "^3.0.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@vaadin/aura": "25.2.0-beta1",
50
- "@vaadin/chai-plugins": "25.2.0-beta1",
51
- "@vaadin/test-runner-commands": "25.2.0-beta1",
49
+ "@vaadin/aura": "25.2.0-beta2",
50
+ "@vaadin/chai-plugins": "25.2.0-beta2",
51
+ "@vaadin/test-runner-commands": "25.2.0-beta2",
52
52
  "@vaadin/testing-helpers": "^2.0.0",
53
- "@vaadin/vaadin-lumo-styles": "25.2.0-beta1",
54
- "sinon": "^21.0.2"
53
+ "@vaadin/vaadin-lumo-styles": "25.2.0-beta2",
54
+ "sinon": "^22.0.0"
55
55
  },
56
56
  "cvdlName": "vaadin-rich-text-editor",
57
57
  "customElements": "custom-elements.json",
@@ -59,5 +59,5 @@
59
59
  "web-types.json",
60
60
  "web-types.lit.json"
61
61
  ],
62
- "gitHead": "471a23f60d1eb725f98a33f62cb9664d9c0a4163"
62
+ "gitHead": "9e18feb8057baf278b72fec4e42657b19e48f499"
63
63
  }
@@ -429,9 +429,9 @@ export const RichTextEditorMixin = (superClass) =>
429
429
  // Set up tooltip to show when hovering or focusing toolbar buttons
430
430
  this._tooltip = document.createElement('vaadin-tooltip');
431
431
  this._tooltip.slot = 'tooltip';
432
- // Set ariaTarget to null, as toolbar buttons already have aria-label,
433
- // and also cannot be linked with the tooltip being in the light DOM
434
- this._tooltip.ariaTarget = null;
432
+ // Toolbar buttons already have aria-label and cannot be linked with the
433
+ // tooltip in the light DOM, so disable ARIA linking entirely.
434
+ this._tooltip.ariaLinkMode = 'none';
435
435
  this.append(this._tooltip);
436
436
 
437
437
  const buttons = this.shadowRoot.querySelectorAll('[part~="toolbar-button"]');
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.2.0-beta1",
4
+ "version": "25.2.0-beta2",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -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.2.0-beta1",
4
+ "version": "25.2.0-beta2",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {