Files
element-plus/packages/components/tabs/src/token.ts
三咲智子 55348b30b6 style: use prettier (#3228)
* style: use prettier

* style: just prettier format, no code changes

* style: eslint fix
object-shorthand, prefer-const

* style: fix no-void

* style: no-console
2021-09-04 19:29:28 +08:00

46 lines
1002 B
TypeScript

import type { ComponentInternalInstance, ComputedRef, Ref } from 'vue'
export type BeforeLeave = (
newTabName: string,
oldTabName: string
) => void | Promise<void> | boolean
export type ITabType = 'card' | 'border-card' | ''
export type ITabPosition = 'top' | 'right' | 'bottom' | 'left'
export type UpdatePaneStateCallback = (pane: Pane) => void
export interface IElTabsProps {
type: ITabType
activeName: string
closable: boolean
addable: boolean
modelValue: string
editable: boolean
tabPosition: ITabPosition
beforeLeave: BeforeLeave
stretch: boolean
}
export interface RootTabs {
props: IElTabsProps
currentName: Ref<string>
}
export interface IElPaneProps {
label: string
name: string
closable: boolean
disabled: boolean
lazy: boolean
}
export interface Pane {
uid: number
instance: ComponentInternalInstance
props: IElPaneProps
paneName: ComputedRef<string>
active: ComputedRef<boolean>
index: Ref<string>
isClosable: ComputedRef<boolean>
}