You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
942 B
26 lines
942 B
import * as React from 'react';
|
|
import { TabPosition, RenderTabBar, TabsLocale, EditableConfig, AnimatedConfig, OnTabScroll } from '../interface';
|
|
export interface TabNavListProps {
|
|
id: string;
|
|
tabPosition: TabPosition;
|
|
activeKey: string;
|
|
rtl: boolean;
|
|
panes: React.ReactNode;
|
|
animated?: AnimatedConfig;
|
|
extra?: React.ReactNode;
|
|
editable?: EditableConfig;
|
|
moreIcon?: React.ReactNode;
|
|
moreTransitionName?: string;
|
|
mobile: boolean;
|
|
tabBarGutter?: number;
|
|
renderTabBar?: RenderTabBar;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
locale?: TabsLocale;
|
|
onTabClick: (activeKey: React.Key, e: React.MouseEvent | React.KeyboardEvent) => void;
|
|
onTabScroll?: OnTabScroll;
|
|
children?: (node: React.ReactElement) => React.ReactElement;
|
|
}
|
|
declare const _default: React.ForwardRefExoticComponent<TabNavListProps & React.RefAttributes<HTMLDivElement>>;
|
|
export default _default;
|