Skip to content

Commit

Permalink
releases 4.3.26
Browse files Browse the repository at this point in the history
  • Loading branch information
xuliangzhan committed Dec 11, 2024
1 parent 2a763cb commit d26768b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vxe-pc-ui",
"version": "4.3.25",
"version": "4.3.26",
"description": "A vue based PC component library",
"scripts": {
"update": "npm install --legacy-peer-deps",
Expand Down
5 changes: 5 additions & 0 deletions types/components/table.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,10 @@ export namespace VxeTablePropTypes {
* 只对 tree-config 启用有效,是否跨节点拖拽,用于树结构,启用后允许拖拽到其他的子节点,除自身节点之外
*/
isCrossDrag?: boolean
/**
* 只对 tree-config 启用有效,是否允许拖拽成目标节点的子级
*/
isToChildDrag?: boolean
/**
* 只对 tree-config 启用有效,是否允许将自己拖拽到子孙节点中
*/
Expand Down Expand Up @@ -2801,6 +2805,7 @@ export interface TableInternalData<D = any> {
prevDragRow?: any
// 上一个拖动的列
prevDragCol?: VxeTableDefines.ColumnInfo
prevDragToChild?: boolean
prevDragPos?: 'top' | 'bottom' | 'left' | 'right' | ''

// 特殊标识
Expand Down
1 change: 1 addition & 0 deletions types/ui/global-icon.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ declare module '@vxe-ui/core' {
TABLE_DRAG_ROW?: string
TABLE_DRAG_COLUMN?: string
TABLE_DRAG_STATUS_ROW?: string
TABLE_DRAG_STATUS_SUB_ROW?: string
TABLE_DRAG_STATUS_COLUMN?: string
TABLE_DRAG_DISABLED?: string

Expand Down

0 comments on commit d26768b

Please sign in to comment.