@shoper/phoenix_design_system 0.21.0-0 → 0.21.1
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.
|
@@ -24,7 +24,7 @@ exports.HDropdownContent = class HDropdownContent extends phoenix_light_lit_elem
|
|
|
24
24
|
super.render();
|
|
25
25
|
return lit.html `
|
|
26
26
|
<div role="dialog">${this.getSlot('content')}</div>
|
|
27
|
-
<div tabindex="0"></div>
|
|
27
|
+
<div tabindex="0" aria-hidden="true"></div>
|
|
28
28
|
`;
|
|
29
29
|
}
|
|
30
30
|
};
|
|
@@ -20,7 +20,7 @@ let HDropdownContent = class HDropdownContent extends PhoenixLightLitElement {
|
|
|
20
20
|
super.render();
|
|
21
21
|
return html `
|
|
22
22
|
<div role="dialog">${this.getSlot('content')}</div>
|
|
23
|
-
<div tabindex="0"></div>
|
|
23
|
+
<div tabindex="0" aria-hidden="true"></div>
|
|
24
24
|
`;
|
|
25
25
|
}
|
|
26
26
|
};
|