34 lines
1.4 KiB
TypeScript
34 lines
1.4 KiB
TypeScript
import * as React from 'react';
|
|
import type { AnimatedConfig, EditableConfig, OnTabScroll, RenderTabBar, Tab, TabBarExtraContent, TabPosition, TabsLocale } from './interface';
|
|
import type { GetIndicatorSize } from './hooks/useIndicator';
|
|
export interface TabsProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'children'> {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
id?: string;
|
|
items?: Tab[];
|
|
activeKey?: string;
|
|
defaultActiveKey?: string;
|
|
direction?: 'ltr' | 'rtl';
|
|
animated?: boolean | AnimatedConfig;
|
|
renderTabBar?: RenderTabBar;
|
|
tabBarExtraContent?: TabBarExtraContent;
|
|
tabBarGutter?: number;
|
|
tabBarStyle?: React.CSSProperties;
|
|
tabPosition?: TabPosition;
|
|
destroyInactiveTabPane?: boolean;
|
|
onChange?: (activeKey: string) => void;
|
|
onTabClick?: (activeKey: string, e: React.KeyboardEvent | React.MouseEvent) => void;
|
|
onTabScroll?: OnTabScroll;
|
|
editable?: EditableConfig;
|
|
getPopupContainer?: (node: HTMLElement) => HTMLElement;
|
|
locale?: TabsLocale;
|
|
moreIcon?: React.ReactNode;
|
|
/** @private Internal usage. Not promise will rename in future */
|
|
moreTransitionName?: string;
|
|
popupClassName?: string;
|
|
indicatorSize?: GetIndicatorSize;
|
|
}
|
|
declare const ForwardTabs: React.ForwardRefExoticComponent<TabsProps & React.RefAttributes<HTMLDivElement>>;
|
|
export default ForwardTabs;
|