mirror of
https://github.com/ElemeFE/element.git
synced 2025-12-16 11:44:01 +08:00
Popconfirm: Add popconfirm component (#17548)
* init * init * init docs * init docs2 * init type * update test * update naming
This commit is contained in:
29
types/popconfirm.d.ts
vendored
Normal file
29
types/popconfirm.d.ts
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
import { ElementUIComponent } from './component'
|
||||
import { ElPopover } from './popover'
|
||||
|
||||
/** Popconfirm Component */
|
||||
export declare class ElPopconfirm extends ElPopover {
|
||||
/** Popconfirm title */
|
||||
title: string
|
||||
|
||||
/** Popconfirm ok text */
|
||||
confirmButtonText: string
|
||||
|
||||
/** Popconfirm cancel text */
|
||||
cancelButtonText: string
|
||||
|
||||
/** Popconfirm ok type */
|
||||
confirmButtonType: string
|
||||
|
||||
/** Popconfirm cancal type */
|
||||
cancelButtonType: string
|
||||
|
||||
/** Popconfirm icon */
|
||||
icon: string
|
||||
|
||||
/** Popconfirm icon color */
|
||||
iconColor: string
|
||||
|
||||
/** Popconfirm hide icon */
|
||||
hideIcon: boolean
|
||||
}
|
||||
Reference in New Issue
Block a user