@mui/base
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
37 lines (36 loc) • 1.15 kB
TypeScript
/// <reference types="react" />
export interface UseTabPanelParameters {
/**
* The id of the TabPanel.
*/
id?: string;
/**
* The ref of the TabPanel.
*/
rootRef?: React.Ref<HTMLElement>;
/**
* The value of the TabPanel. It will be shown when the Tab with the corresponding value is selected.
*/
value?: number | string;
}
interface UseTabPanelRootSlotOwnProps {
'aria-labelledby'?: string;
hidden?: boolean;
id?: string;
ref: React.Ref<HTMLElement>;
}
export type UseTabPanelRootSlotProps<ExternalProps = {}> = ExternalProps & UseTabPanelRootSlotOwnProps;
export interface UseTabPanelReturnValue {
/**
* If `true`, it indicates that the tab panel will be hidden.
*/
hidden: boolean;
/**
* Resolver for the root slot's props.
* @param externalProps additional props for the root slot
* @returns props that should be spread on the root slot
*/
getRootProps: <ExternalProps extends Record<string, unknown> = {}>(externalProps?: ExternalProps) => UseTabPanelRootSlotProps<ExternalProps>;
rootRef: React.Ref<HTMLElement>;
}
export {};