shadowContents
Breadcrumbs are navigation items that are used to indicate where a user is on an app or site. They should be used for large sites and apps with hierarchically arranged pages. Breadcrumbs can be collapsed based on the maximum number that can show, and the collapsed indicator can be clicked on to present a popover with more information or expand the collapsed breadcrumbs.
If there are more items than the value of maxItems
, the breadcrumbs will be collapsed. By default, only the first and last items will be shown.
Once the items are collapsed, the number of items to show can be controlled by the itemsBeforeCollapse
and itemsAfterCollapse
properties.
Clicking the collapsed indicator will fire the ionCollapsedClick
event. This can be used to, for example, expand the breadcrumbs.
The ionCollapsedClick
event can also be used to present an overlay (in this case, an ion-popover
) showing the hidden breadcrumbs.
Description | The color to use from your application's color palette. Default options are: "primary" , "secondary" , "tertiary" , "success" , "warning" , "danger" , "light" , "medium" , and "dark" . For more information on colors, see theming. |
Attribute | color |
Type | "danger" ๏ฝ "dark" ๏ฝ "light" ๏ฝ "medium" ๏ฝ "primary" ๏ฝ "secondary" ๏ฝ "success" ๏ฝ "tertiary" ๏ฝ "warning" ๏ฝ string & Record<never, never> ๏ฝ undefined |
Default | undefined |
Description | The number of breadcrumbs to show after the collapsed indicator. If itemsBeforeCollapse + itemsAfterCollapse is greater than maxItems , the breadcrumbs will not be collapsed. |
Attribute | items-after-collapse |
Type | number |
Default | 1 |
Description | The number of breadcrumbs to show before the collapsed indicator. If itemsBeforeCollapse + itemsAfterCollapse is greater than maxItems , the breadcrumbs will not be collapsed. |
Attribute | items-before-collapse |
Type | number |
Default | 1 |
Description | The maximum number of breadcrumbs to show before collapsing. |
Attribute | max-items |
Type | number ๏ฝ undefined |
Default | undefined |
Description | The mode determines which platform styles to use. |
Attribute | mode |
Type | "ios" ๏ฝ "md" |
Default | undefined |
Name | Description |
---|
ionCollapsedClick | Emitted when the collapsed indicator is clicked on. |
Name | Description |
---|
--background | Background of the breadcrumbs |
--color | Text color of the breadcrumbs |