2017-10-17 16:36:12 +08:00
|
|
|
import { ElementUIComponent } from './component'
|
|
|
|
|
|
|
|
export type TabType = 'card' | 'border-card'
|
2017-10-18 18:31:03 +08:00
|
|
|
export type TabPosition = 'top' | 'right' | 'bottom' | 'left'
|
2017-10-17 16:36:12 +08:00
|
|
|
|
|
|
|
/** Divide data collections which are related yet belong to different types */
|
|
|
|
export declare class ElTabs extends ElementUIComponent {
|
|
|
|
/** Type of Tab */
|
|
|
|
type: TabType
|
|
|
|
|
|
|
|
/** Whether Tab is closable */
|
|
|
|
closable: boolean
|
|
|
|
|
|
|
|
/** Whether Tab is addable */
|
|
|
|
addable: boolean
|
|
|
|
|
|
|
|
/** Whether Tab is addable and closable */
|
|
|
|
editable: boolean
|
|
|
|
|
|
|
|
/** Name of the selected tab */
|
|
|
|
value: string
|
2017-10-18 18:31:03 +08:00
|
|
|
|
|
|
|
/** Position of tabs */
|
|
|
|
tabPosition: TabPosition
|
2018-05-21 19:10:49 +08:00
|
|
|
|
2018-06-07 11:18:57 +08:00
|
|
|
/** Whether width of tab automatically fits its container */
|
|
|
|
stretch: Boolean
|
|
|
|
|
2018-05-21 19:10:49 +08:00
|
|
|
/** Hook function before switching tab. If false or a Promise is returned and then is rejected, switching will be prevented */
|
2018-06-25 15:59:49 +08:00
|
|
|
beforeLeave: (activeName: string, oldActiveName: string) => boolean | Promise<any>
|
2017-10-17 16:36:12 +08:00
|
|
|
}
|