@porsche-design-system/components-react
Version:
Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.
48 lines (47 loc) • 1.6 kB
TypeScript
import type { BaseProps } from '../../BaseProps';
export type PFlyoutMultilevelItemProps = BaseProps & {
/**
* Private property set by the component itself.
*/
cascade?: boolean;
/**
* Unique identifier which controls if this item should be shown when the active-identifier on the flyout-multilevel is set to this value.
*/
identifier: string;
/**
* Label of the item.
*/
label?: string;
/**
* Private property set by the component itself.
*/
primary?: boolean;
/**
* Private property set by the component itself.
*/
secondary?: boolean;
};
export declare const PFlyoutMultilevelItem: import("react").ForwardRefExoticComponent<import("react").DOMAttributes<{}> & Pick<import("react").HTMLAttributes<{}>, "suppressHydrationWarning" | "autoFocus" | "className" | "dir" | "hidden" | "id" | "inert" | "lang" | "slot" | "style" | "tabIndex" | "title" | "translate" | "role"> & {
/**
* Private property set by the component itself.
*/
cascade?: boolean;
/**
* Unique identifier which controls if this item should be shown when the active-identifier on the flyout-multilevel is set to this value.
*/
identifier: string;
/**
* Label of the item.
*/
label?: string;
/**
* Private property set by the component itself.
*/
primary?: boolean;
/**
* Private property set by the component itself.
*/
secondary?: boolean;
} & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLElement>>;