@zebra-fed/zeta-web
    Preparing search index...

    Class ZetaBreadcrumb

    The breadcrumb is a secondary navigation patten that helps a user understand the hierarchy among levels and navigate back through them.

    Hierarchy

    • ContourableInterface<this> & LitElement<this> & InteractiveInterface<this>
      • ZetaBreadcrumb
    Index

    Other

    • Returns ZetaBreadcrumb

    disabled: boolean
    items: HTMLElement[]
    itemsTruncated: (HTMLElement | TemplateResult)[] = []
    maxItems: number = 0

    The maximum number of items to display in the breadcrumb. For example, if the value is 3 and there are 5 items in the breadcrumb:

    • The first item will always be displayed.
    • The last 2 items will always be displayed.
    • The rest of the items will be truncated and displayed in a more menu.
    rounded: boolean
    styles: CSSResultGroup[] = ...

    rendering

    • Invoked on each update to perform rendering tasks. This method may return any value renderable by lit-html's ChildPart - typically a TemplateResult. Setting properties inside this method will not trigger the element to update.

      Returns TemplateResult<1>