Browse Source

TableAction确认框增加placement属性 (#1335)

* chore: table size放到settings

* chore(TableAction): 操作确认框增加placement属性支持
pull/1341/head
Joyboo 5 years ago
committed by GitHub
parent
commit
c8dd3b6c14
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      src/components/Table/src/types/tableAction.ts

13
src/components/Table/src/types/tableAction.ts

@ -23,4 +23,17 @@ export interface PopConfirm {
confirm: Fn;
cancel?: Fn;
icon?: string;
placement?:
| 'top'
| 'left'
| 'right'
| 'bottom'
| 'topLeft'
| 'topRight'
| 'leftTop'
| 'leftBottom'
| 'rightTop'
| 'rightBottom'
| 'bottomLeft'
| 'bottomRight';
}

Loading…
Cancel
Save