Breadcrumbs are a secondary navigation that displays a user's location within a website or application.
Breadcrumbs are a visual representation of the site's navigational hierarchy. They indicate the current page's location and allows users to easily move up to a parent level. It's required for breadcrumbs to be used with the native HTML <ol>
element, and for each item to be an <li>
. This offers additional context for assistive technology.
To use breadcrumb in a standalone component, import it directly into your custom component:
@Component({
selector: 'custom-component',
templateUrl: './custom-component.component.html',
standalone: true,
imports: [
DAFF_BREADCRUMB_COMPONENTS,
],
})
export class CustomComponent {}
To use breadcrumb in a module, import DaffBreadcrumbModule
into your custom module:
import { NgModule } from '@angular/core';
import { DaffBreadcrumbModule } from '@daffodil/design/breadcrumb';
@NgModule({
declarations: [
CustomComponent,
],
exports: [
CustomComponent,
],
imports: [
DaffBreadcrumbModule,
],
})
export class CustomComponentModule { }
This method is deprecated. It's recommended to update all custom components to standalone.
Breadcrumbs should be wrapped in a native HTML <nav>
element so that assistive technologies can present the breadcrumbs as a navigational element on the page. Use aria-label="Breadcrumbs"
on the nav
element to provide more context. aria-current="page"
is added to a breadcrumb item when it's the current page, and aria-current="false"
on all other items.