Skip to content

Commit 292c155

Browse files
committed
fix: adapting Nicos solution regarding Angular consumption
1 parent e132e58 commit 292c155

File tree

4 files changed

+45
-40
lines changed

4 files changed

+45
-40
lines changed

packages/db-ui-elements-stencil/src/components/db-breadcrumb/__tests__/db-breadcrumb.spec.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ describe('db-breadcrumb', () => {
2121
const page = await newSpecPage({
2222
components: [DbBreadcrumb],
2323
html: `
24-
<db-breadcrumb aria-label='Aria-Breadcrumb'>
24+
<db-breadcrumb arialabel='Aria-Breadcrumb'>
2525
<db-link href='http://db.test/link1'>Link 1</db-link>
2626
<db-link href='//db.test/link2'>Link 2</db-link>
2727
<db-link href='#link3' aria-current='location'>Link 3</db-link>
2828
</db-breadcrumb>
2929
`
3030
});
3131
expect(page.root).toEqualHtml(`
32-
<db-breadcrumb aria-label='Aria-Breadcrumb' >
32+
<db-breadcrumb arialabel='Aria-Breadcrumb' >
3333
<nav class='cmp-breadcrumb' aria-label='Aria-Breadcrumb'>
3434
<ol>
3535
<li><db-link href='http://db.test/link1'>Link 1</db-link></li>

packages/db-ui-elements-stencil/src/components/db-breadcrumb/db-breadcrumb.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class DbBreadcrumb {
2424
/**
2525
* an optional [`aria-label`-attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label)
2626
*/
27-
@Prop({ reflect: true, attribute: 'aria-label' }) ariaLabel: string;
27+
@Prop({ reflect: true }) arialabel: string;
2828
private compData: DbLinkType[];
2929

3030
private hasItemsWrapper: boolean;
@@ -55,7 +55,7 @@ export class DbBreadcrumb {
5555

5656
render() {
5757
return (
58-
<nav class="cmp-breadcrumb" aria-label={this.ariaLabel}>
58+
<nav class="cmp-breadcrumb" aria-label={this.arialabel}>
5959
{this.compData && <ol innerHTML={getCompDataHtml(this.compData)} />}
6060
{!this.compData && (
6161
<ol>

packages/db-ui-elements-stencil/src/components/db-breadcrumb/readme.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77

88
## Properties
99

10-
| Property | Attribute | Description | Type | Default |
11-
| ----------- | ------------ | --------------------------------------------------------------------------------------------------------------------------- | -------- | ----------- |
12-
| `ariaLabel` | `aria-label` | an optional [`aria-label`-attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) | `string` | `undefined` |
13-
| `data` | `data` | The data attribute can be used to generate breadcrumb by data. | `string` | `undefined` |
10+
| Property | Attribute | Description | Type | Default |
11+
| ----------- | ----------- | --------------------------------------------------------------------------------------------------------------------------- | -------- | ----------- |
12+
| `arialabel` | `arialabel` | an optional [`aria-label`-attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) | `string` | `undefined` |
13+
| `data` | `data` | The data attribute can be used to generate breadcrumb by data. | `string` | `undefined` |
1414

1515

1616
----------------------------------------------

showcase/angular-showcase/package-lock.json

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

0 commit comments

Comments
 (0)