UNPKG

@types/carbon-components-react

Version:
65 lines (56 loc) 2.27 kB
import * as React from "react"; import { ReactLIAttr } from "../../../typings/shared"; type ExcludedAttributes = "aria-controls" | "aria-selected" | "aria-disabled" | "role" | "tabIndex"; export interface TabCustomButtonProvidedProps { "aria-controls": string, "aria-disabled": boolean | undefined, "aria-selected": boolean, className: string, href: string | undefined, id: string | undefined ref(element: any): void; tabIndex: number, } /** * @deprecated use TabCustomButtonProvidedProps */ export interface TabCustomAnchorProviderProps extends TabCustomButtonProvidedProps { } export interface TabStandaloneProps extends Omit<ReactLIAttr, ExcludedAttributes> { disabled?: boolean | undefined; handleTabClick?(index: TabStandaloneProps["index"], event: React.MouseEvent<HTMLLIElement>): void, handleTabKeyDown?(index: TabStandaloneProps["index"], event: React.KeyboardEvent<HTMLLIElement>): void, /** * @deprecated */ href?: string | undefined, index?: number | undefined, label?: React.ReactNode | undefined, /** * @deprecated */ renderAnchor?: ((props: TabCustomButtonProvidedProps) => React.ReactNode) | undefined; renderButton?: ((props: TabCustomButtonProvidedProps) => React.ReactNode) | undefined; /** * @deprecated */ role?: string | undefined, // marked as required, but render code overwrites it currently, also has default selected: boolean, } export interface TabCustomContentProvidedProps { "aria-hidden": boolean; "aria-labelledby": string | undefined; className: string; hidden: boolean; id: string | undefined; selected: boolean; } // see Tabs.js type TabsProvidedPropKeys = "index" | "handleTabClick" | "handleTabKeyDown" | "ref" | "selected" | "tabIndex"; export interface TabProps extends Omit<TabStandaloneProps, TabsProvidedPropKeys> { // only props that are used only by the parent "Tabs" component should go here // otherwise they should go in TabStandaloneProps interface // 7.23: doesn't look like this is used anymore renderContent?: React.ComponentType<TabCustomContentProvidedProps> | undefined; } declare class Tab extends React.Component<TabProps> { } export default Tab;