Skip to content

fix(docs): leftovers of attribute changes from last major release #4681

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 12, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { DBTooltip } from '@db-ux/ngx-core-components';

```html app.component.html
<!-- app.component.html -->
<db-button describedbyid="tooltip-01">
<db-button aria-describedby="tooltip-01">
Hover on me to open Tooltip
<db-tooltip id="tooltip-01">Tooltip</db-tooltip>
</db-button>
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/components/tooltip/docs/React.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ For general installation and configuration take a look at the [react-core-compon
import { DBTooltip, DBButton } from "@db-ux/react-core-components";

const App = () => (
<DBButton describedbyid="tooltip-01">
<DBButton aria-describedby="tooltip-01">
Hover on me to open Tooltip
<DBTooltip id="tooltip-01">Tooltip</DBTooltip>
</DBButton>
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/components/tooltip/docs/Vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { DBTooltip, DBButton } from "@db-ux/v-core-components";
</script>

<template>
<DBButton describedbyid="tooltip-01">
<DBButton aria-describedby="tooltip-01">
Hover on me to open Tooltip
<DBTooltip id="tooltip-01">Tooltip</DBTooltip>
</DBButton>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { DBButton } from '../button';

const comp: any = (
<div className="padding-box">
<DBButton describedbyid="tooltip" data-testid="button">
<DBButton aria-describedby="tooltip" data-testid="button">
Button
<DBTooltip animation="disabled" id="tooltip" data-testid="tooltip">
Test
Expand Down
Loading