Porsche Design SystemSearchNavigate to GitHub repository of Porsche Design SystemOpen sidebar
ConfiguratorExamplesUsageAccessibilityAPI
Drilldown 🧪 Table of Contents Drilldown PropertiesPropertyAttributeDescriptionTypeDefaultactiveIdentifier active-identifierDefines which drilldown-item to be visualized as opened.string | undefinedundefinedaria ariaAdd ARIA attributes.type DrilldownAriaAttribute = {
  'aria-label'?: string;
}
undefined
open openIf true, the drilldown is visualized as opened.booleanfalsetheme themeAdapts the drilldown color depending on the theme.type Theme =
'light'
'dark'
'auto'
'light'
EventsEventDescriptionTypedismiss Emitted when the component requests to be dismissed.CustomEvent<void>update Emitted when activeIdentifier is changed.type DrilldownUpdateEventDetail = {
  activeIdentifier: string | undefined;
}
CustomEvent<DrilldownUpdateEventDetail>
SlotsSlotDescriptionisRequiredaltPropallowedTagNames<slot> Default slot to render p-drilldown items. Drilldown Item PropertiesPropertyAttributeDescriptionTypeDefaultcascade cascadePrivate property set by the component itself.booleanfalseidentifier identifierUnique identifier which controls if this item should be shown when the active-identifier on the drilldown is set to this value.stringundefinedlabel labelRenders back button, header section on mobile view and cascade button to reach a deeper level of the navigation structure.stringundefinedprimary primaryPrivate property set by the component itself.booleanfalsesecondary secondaryPrivate property set by the component itself.booleanfalseSlotsSlotDescriptionisRequiredaltPropallowedTagNames<slot> Default slot for the main content.<slot name="button"> Shows a custom button to reach a deeper level of the navigation structure.<slot name="header"> Shows a custom header section on mobile view Drilldown Link PropertiesPropertyAttributeDescriptionTypeDefaultactive activeDisplay link in active state.booleanfalsearia ariaAdd ARIA attributes (only has effect when href is defined and no slotted anchor is used).type DrilldownLinkAriaAttribute = {
  'aria-label'?: string;
  'aria-current'?: string;
  'aria-haspopup'?: string;
}
undefined
download downloadSpecial download attribute to open native browser download dialog if target url points to a downloadable file (only has effect when href is defined and no slotted anchor is used).stringundefinedhref hrefWhen providing an url then the component will be rendered as <a> otherwise the component expects a slotted anchor.stringundefinedrel relSpecifies the relationship of the target object to the link object (only has effect when href is defined and no slotted anchor is used).stringundefinedtarget targetTarget attribute where the link should be opened (only has effect when href is defined and no slotted anchor is used).type DrilldownLinkTarget =
'_self'
'_blank'
'_parent'
'_top'
string
'_self'
SlotsSlotDescriptionisRequiredaltPropallowedTagNames<slot> Default slot to render the link label.
Global settingsThemeChanges the theme of the application and any Porsche Design System component. It's possible to choose between forced theme light and dark. It's also possible to use auto, which applies light or dark theme depending on the operating system settings automatically.LightDarkAuto (sync with operating system)DirectionChanges the direction of HTML elements, mostly used on<html> tag to support languages which are read from right to left like e.g. Arabic.LTR (left-to-right)RTL (right-to-left)AutoText ZoomChanges the text size and values with unit rem or em relatively. This setting can be defined in browser settings for any website or by an application itself on<html> tag. To achieve WCAG 2.2 AA compliance it's obligatory to support text zoom up to at least 200%.100%130%150%200%