Skip to content

Commit 68d2ba6

Browse files
build(deps): bump @db-ui/core from 2.9.0 to 2.10.2 (#1367)
Bumps [@db-ui/core](https://github.com/db-ui/core) from 2.9.0 to 2.10.2. - [Release notes](https://github.com/db-ui/core/releases) - [Changelog](https://github.com/db-ui/core/blob/main/CHANGELOG.md) - [Commits](db-ui/core@v2.9.0...v2.10.2) --- updated-dependencies: - dependency-name: "@db-ui/core" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 41eed7f commit 68d2ba6

File tree

3 files changed

+19
-21
lines changed

3 files changed

+19
-21
lines changed

package-lock.json

+16-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/db-ui-elements-stencil/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"jest-junit": "16.0.0"
4848
},
4949
"dependencies": {
50-
"@db-ui/core": "^2.9.0"
50+
"@db-ui/core": "^2.10.2"
5151
},
5252
"license": "Apache-2.0",
5353
"publishConfig": {

packages/db-ui-elements-stencil/src/components/db-language-switcher/db-language-switcher.tsx

+2-4
Original file line numberDiff line numberDiff line change
@@ -74,18 +74,16 @@ export class DbLanguageSwitcher {
7474
{this.compData && (
7575
<ul
7676
class="cmp-language-switcher"
77-
role="listbox"
7877
innerHTML={getCompDataHtml(this.compData, this.ariaSelectedIndex)}
7978
/>
8079
)}
8180
{!this.compData && (
82-
<ul class="cmp-language-switcher" role="listbox">
81+
<ul class="cmp-language-switcher">
8382
{!this.hasItemsWrapper &&
8483
this._children.map((child, index) => (
8584
<li
8685
key={`cmp-language-switcher-item-${index}`}
87-
role="option"
88-
aria-selected={index === this.ariaSelectedIndex}
86+
aria-current={index === this.ariaSelectedIndex}
8987
innerHTML={child.outerHTML}
9088
/>
9189
))}

0 commit comments

Comments
 (0)