@breakaway/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
18 lines • 852 B
TypeScript
import React from 'react';
import { TabProps } from './Tab';
export interface OverflowTabProps extends React.HTMLProps<HTMLLIElement> {
/** Additional classes added to the overflow tab */
className?: string;
/** The tabs that should be displayed in the menu */
overflowingTabs?: TabProps[];
/** Flag which shows the count of overflowing tabs when enabled */
showTabCount?: boolean;
/** The text which displays when an overflowing tab isn't selected */
defaultTitleText?: string;
/** The aria label applied to the button which toggles the tab overflow menu */
toggleAriaLabel?: string;
/** @beta Opt-in for updated popper that does not use findDOMNode. */
removeFindDomNode?: boolean;
}
export declare const OverflowTab: React.FunctionComponent<OverflowTabProps>;
//# sourceMappingURL=OverflowTab.d.ts.map