@vaadin/tooltip 25.3.0-alpha8 → 25.3.0-beta1

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/tooltip",
3
- "version": "25.3.0-alpha8",
3
+ "version": "25.3.0-beta1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,20 +35,20 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
- "@vaadin/a11y-base": "25.3.0-alpha8",
39
- "@vaadin/component-base": "25.3.0-alpha8",
40
- "@vaadin/markdown": "25.3.0-alpha8",
41
- "@vaadin/overlay": "25.3.0-alpha8",
42
- "@vaadin/popover": "25.3.0-alpha8",
43
- "@vaadin/vaadin-themable-mixin": "25.3.0-alpha8",
38
+ "@vaadin/a11y-base": "25.3.0-beta1",
39
+ "@vaadin/component-base": "25.3.0-beta1",
40
+ "@vaadin/markdown": "25.3.0-beta1",
41
+ "@vaadin/overlay": "25.3.0-beta1",
42
+ "@vaadin/popover": "25.3.0-beta1",
43
+ "@vaadin/vaadin-themable-mixin": "25.3.0-beta1",
44
44
  "lit": "^3.0.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@vaadin/aura": "25.3.0-alpha8",
48
- "@vaadin/chai-plugins": "25.3.0-alpha8",
49
- "@vaadin/test-runner-commands": "25.3.0-alpha8",
47
+ "@vaadin/aura": "25.3.0-beta1",
48
+ "@vaadin/chai-plugins": "25.3.0-beta1",
49
+ "@vaadin/test-runner-commands": "25.3.0-beta1",
50
50
  "@vaadin/testing-helpers": "^2.0.0",
51
- "@vaadin/vaadin-lumo-styles": "25.3.0-alpha8",
51
+ "@vaadin/vaadin-lumo-styles": "25.3.0-beta1",
52
52
  "sinon": "^22.0.0"
53
53
  },
54
54
  "customElements": "custom-elements.json",
@@ -56,5 +56,5 @@
56
56
  "web-types.json",
57
57
  "web-types.lit.json"
58
58
  ],
59
- "gitHead": "ccbb4aaffb63c745c6da0426b532d4d05e47af29"
59
+ "gitHead": "295432e44a6967e1aff36462b2e3e1d0e64eb8cc"
60
60
  }
@@ -4,7 +4,7 @@
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { addAriaElementReference, removeAriaElementReference } from '@vaadin/a11y-base/src/aria-element-reference.js';
7
- import { addValueToAttribute, removeValueFromAttribute } from '@vaadin/component-base/src/dom-utils.js';
7
+ import { addValuesToAttribute, removeValuesFromAttribute } from '@vaadin/component-base/src/dom-utils.js';
8
8
 
9
9
  /**
10
10
  * A mixin providing linking of the tooltip content to the tooltip target
@@ -92,7 +92,7 @@ export const TooltipAriaMixin = (superClass) =>
92
92
  if (byReference) {
93
93
  addAriaElementReference(target, mode, contentNode);
94
94
  } else {
95
- addValueToAttribute(target, mode, contentNode.id);
95
+ addValuesToAttribute(target, mode, contentNode.id);
96
96
  }
97
97
 
98
98
  this.#ariaReferences.push({ target, mode, byReference });
@@ -106,7 +106,7 @@ export const TooltipAriaMixin = (superClass) =>
106
106
  if (byReference) {
107
107
  removeAriaElementReference(target, mode, contentNode);
108
108
  } else {
109
- removeValueFromAttribute(target, mode, contentNode.id);
109
+ removeValuesFromAttribute(target, mode, contentNode.id);
110
110
  }
111
111
  });
112
112
  this.#ariaReferences = [];
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/tooltip",
4
- "version": "25.3.0-alpha8",
4
+ "version": "25.3.0-beta1",
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/tooltip",
4
- "version": "25.3.0-alpha8",
4
+ "version": "25.3.0-beta1",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {