@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-alpha15",
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-alpha15",
39
- "@vaadin/component-base": "25.0.0-alpha15",
40
- "@vaadin/confirm-dialog": "25.0.0-alpha15",
41
- "@vaadin/overlay": "25.0.0-alpha15",
42
- "@vaadin/text-field": "25.0.0-alpha15",
43
- "@vaadin/tooltip": "25.0.0-alpha15",
44
- "@vaadin/vaadin-themable-mixin": "25.0.0-alpha15",
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-alpha15",
49
- "@vaadin/chai-plugins": "25.0.0-alpha15",
50
- "@vaadin/test-runner-commands": "25.0.0-alpha15",
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-alpha15",
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": "1ad98437e7600769bf66f870929feefbeef16edf"
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
- // Create dummy aria target, as toolbar buttons already have aria-label, and also cannot be linked with the
416
- // tooltip being in the light DOM
417
- this._tooltip.ariaTarget = document.createElement('div');
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 modal root
177
+ * Override method from OverlayFocusMixin to use owner as focus trap root
178
178
  * @protected
179
179
  * @override
180
180
  */
181
- get _modalRoot() {
181
+ get _focusTrapRoot() {
182
182
  return this.owner;
183
183
  }
184
184
  }
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.0.0-alpha15",
4
+ "version": "25.0.0-alpha16",
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.0.0-alpha15",
4
+ "version": "25.0.0-alpha16",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {