49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import type { Key, VueNode } from '../../_util/type';
|
|
import type { TabPaneProps } from './TabPanelList/TabPane';
|
|
|
|
export type TabSizeMap = Map<Key, { width: number; height: number; left: number; top: number }>;
|
|
|
|
export interface TabOffset {
|
|
width: number;
|
|
height: number;
|
|
left: number;
|
|
right: number;
|
|
top: number;
|
|
}
|
|
export type TabOffsetMap = Map<Key, TabOffset>;
|
|
|
|
export type TabPosition = 'left' | 'right' | 'top' | 'bottom';
|
|
|
|
export interface Tab extends TabPaneProps {
|
|
key: Key;
|
|
node: VueNode;
|
|
}
|
|
|
|
export type RenderTabBar = (props: { DefaultTabBar: any; [key: string]: any }) => VueNode;
|
|
|
|
export interface TabsLocale {
|
|
dropdownAriaLabel?: string;
|
|
removeAriaLabel?: string;
|
|
addAriaLabel?: string;
|
|
}
|
|
|
|
export interface EditableConfig {
|
|
onEdit: (type: 'add' | 'remove', info: { key?: Key; event: MouseEvent | KeyboardEvent }) => void;
|
|
showAdd?: boolean;
|
|
removeIcon?: () => VueNode;
|
|
addIcon?: () => VueNode;
|
|
}
|
|
|
|
export interface AnimatedConfig {
|
|
inkBar?: boolean;
|
|
tabPane?: boolean;
|
|
}
|
|
|
|
export type OnTabScroll = (info: { direction: 'left' | 'right' | 'top' | 'bottom' }) => void;
|
|
|
|
export type TabBarExtraPosition = 'left' | 'right';
|
|
|
|
export type TabBarExtraMap = Partial<Record<TabBarExtraPosition, any>>;
|
|
|
|
export type TabBarExtraContent = VueNode;
|