@vaadin/popover 25.1.5 → 25.1.6
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 +11 -11
- package/src/vaadin-popover.js +2 -5
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/popover",
|
|
3
|
-
"version": "25.1.
|
|
3
|
+
"version": "25.1.6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -37,19 +37,19 @@
|
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
40
|
-
"@vaadin/a11y-base": "~25.1.
|
|
41
|
-
"@vaadin/component-base": "~25.1.
|
|
42
|
-
"@vaadin/lit-renderer": "~25.1.
|
|
43
|
-
"@vaadin/overlay": "~25.1.
|
|
44
|
-
"@vaadin/vaadin-themable-mixin": "~25.1.
|
|
40
|
+
"@vaadin/a11y-base": "~25.1.6",
|
|
41
|
+
"@vaadin/component-base": "~25.1.6",
|
|
42
|
+
"@vaadin/lit-renderer": "~25.1.6",
|
|
43
|
+
"@vaadin/overlay": "~25.1.6",
|
|
44
|
+
"@vaadin/vaadin-themable-mixin": "~25.1.6",
|
|
45
45
|
"lit": "^3.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@vaadin/aura": "~25.1.
|
|
49
|
-
"@vaadin/chai-plugins": "~25.1.
|
|
50
|
-
"@vaadin/test-runner-commands": "~25.1.
|
|
48
|
+
"@vaadin/aura": "~25.1.6",
|
|
49
|
+
"@vaadin/chai-plugins": "~25.1.6",
|
|
50
|
+
"@vaadin/test-runner-commands": "~25.1.6",
|
|
51
51
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
52
|
-
"@vaadin/vaadin-lumo-styles": "~25.1.
|
|
52
|
+
"@vaadin/vaadin-lumo-styles": "~25.1.6",
|
|
53
53
|
"sinon": "^21.0.2"
|
|
54
54
|
},
|
|
55
55
|
"customElements": "custom-elements.json",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"web-types.json",
|
|
58
58
|
"web-types.lit.json"
|
|
59
59
|
],
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "75fe4575b9210768058cd6994ea00066e408d4a6"
|
|
61
61
|
}
|
package/src/vaadin-popover.js
CHANGED
|
@@ -685,11 +685,8 @@ class Popover extends PopoverPositionMixin(
|
|
|
685
685
|
|
|
686
686
|
effectiveTarget.setAttribute('aria-expanded', opened ? 'true' : 'false');
|
|
687
687
|
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
} else {
|
|
691
|
-
effectiveTarget.removeAttribute('aria-controls');
|
|
692
|
-
}
|
|
688
|
+
// Always set aria-controls to make VoiceOver + Chrome announce it.
|
|
689
|
+
effectiveTarget.setAttribute('aria-controls', this.id);
|
|
693
690
|
|
|
694
691
|
this.__oldTarget = target;
|
|
695
692
|
}
|
package/web-types.json
CHANGED