@dazhicheng/ui 1.5.35 → 1.5.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -673,6 +673,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
673
673
  };
674
674
  showCheckbox: any;
675
675
  showRadio: any;
676
+ showExpand: any;
676
677
  showIndex: any;
677
678
  isCellResize: any;
678
679
  isColumnsDrag: any;
@@ -693,7 +694,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
693
694
  type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
694
695
  default: () => {};
695
696
  };
696
- rowDragColumnProps: {
697
+ expandColumnProps: {
697
698
  type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
698
699
  default: () => {};
699
700
  };
@@ -763,7 +764,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
763
764
  type: import('vue').PropType<string[]>;
764
765
  default: () => string[] | undefined;
765
766
  };
766
- isRowDrag: any;
767
767
  treeNode: any;
768
768
  getSyncSlotComponent: {
769
769
  type: import('vue').PropType<(column: any, row: any, type: "default" | "edit") => import('vue').VNode | import('vue').VNode[] | string>;
@@ -951,6 +951,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
951
951
  };
952
952
  showCheckbox: any;
953
953
  showRadio: any;
954
+ showExpand: any;
954
955
  showIndex: any;
955
956
  isCellResize: any;
956
957
  isColumnsDrag: any;
@@ -971,7 +972,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
971
972
  type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
972
973
  default: () => {};
973
974
  };
974
- rowDragColumnProps: {
975
+ expandColumnProps: {
975
976
  type: import('vue').PropType<VxeTableDefines.ColumnOptions>;
976
977
  default: () => {};
977
978
  };
@@ -1041,7 +1042,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1041
1042
  type: import('vue').PropType<string[]>;
1042
1043
  default: () => string[] | undefined;
1043
1044
  };
1044
- isRowDrag: any;
1045
1045
  treeNode: any;
1046
1046
  getSyncSlotComponent: {
1047
1047
  type: import('vue').PropType<(column: any, row: any, type: "default" | "edit") => import('vue').VNode | import('vue').VNode[] | string>;
@@ -1096,6 +1096,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1096
1096
  showSetting: boolean;
1097
1097
  showRefresh: boolean;
1098
1098
  columnsKey: any;
1099
+ showExpand: any;
1099
1100
  showRadio: any;
1100
1101
  showIndex: any;
1101
1102
  isCellResize: any;
@@ -1107,7 +1108,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1107
1108
  actionProps: VxeTableDefines.ColumnOptions<any>;
1108
1109
  indexColumnProps: VxeTableDefines.ColumnOptions<any>;
1109
1110
  checkboxColumnProps: VxeTableDefines.ColumnOptions<any>;
1110
- rowDragColumnProps: VxeTableDefines.ColumnOptions<any>;
1111
+ expandColumnProps: VxeTableDefines.ColumnOptions<any>;
1111
1112
  radioColumnProps: VxeTableDefines.ColumnOptions<any>;
1112
1113
  searchInfo: Record<string, any>;
1113
1114
  showToolbar: any;
@@ -1116,7 +1117,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1116
1117
  notSetColumnField: any;
1117
1118
  filterNoVisibleField: any;
1118
1119
  showTableAlert: any;
1119
- isRowDrag: any;
1120
1120
  treeNode: any;
1121
1121
  isScrollFetch: boolean;
1122
1122
  showScrollFetchLoading: boolean;
@@ -87,6 +87,8 @@ export declare const tableProps: {
87
87
  showCheckbox: any;
88
88
  /** 是否显示单选框 */
89
89
  showRadio: any;
90
+ /** 是否显示展开列 */
91
+ showExpand: any;
90
92
  /** 是否显示序号 */
91
93
  showIndex: any;
92
94
  /** 是否需要列拖拽 */
@@ -125,8 +127,8 @@ export declare const tableProps: {
125
127
  type: PropType<VxeTableDefines.ColumnOptions>;
126
128
  default: () => {};
127
129
  };
128
- /** 拖拽 */
129
- rowDragColumnProps: {
130
+ /** 展开行props */
131
+ expandColumnProps: {
130
132
  type: PropType<VxeTableDefines.ColumnOptions>;
131
133
  default: () => {};
132
134
  };
@@ -226,12 +228,6 @@ export declare const tableProps: {
226
228
  type: PropType<string[]>;
227
229
  default: () => string[] | undefined;
228
230
  };
229
- /**
230
- * 是否需要行拖拽
231
- * @deprecated 请使用 row-config drag 配合row-drag-config配置 支持的版本看官方文档,后续不在维护行拖拽
232
- * @default false
233
- */
234
- isRowDrag: any;
235
231
  /**
236
232
  * 是否需要行拖拽-树形表格
237
233
  * @deprecated 请使用 row-config drag 配合row-drag-config配置 支持的版本看官方文档,后续不在维护行拖拽
@@ -19,6 +19,8 @@ export type TtTablePagerProps = {
19
19
  export type TtTableColumnsProps = {
20
20
  /** 是否显示复选框 */
21
21
  showCheckbox?: boolean;
22
+ /** 是否显示展开列 */
23
+ showExpand?: boolean;
22
24
  /** 是否显示单选框 */
23
25
  showRadio?: boolean;
24
26
  /** 是否显示序号 */
@@ -54,18 +56,12 @@ export type TtTableColumnsProps = {
54
56
  indexColumnProps?: VxeTableDefines.ColumnOptions;
55
57
  /** 复选框列Props */
56
58
  checkboxColumnProps?: VxeTableDefines.ColumnOptions;
57
- /** 拖拽 */
58
- rowDragColumnProps?: VxeTableDefines.ColumnOptions;
59
+ /** 展开行props */
60
+ expandColumnProps?: VxeTableDefines.ColumnOptions;
59
61
  /** 单选框列Props */
60
62
  radioColumnProps?: VxeTableDefines.ColumnOptions;
61
63
  /** 表格行id */
62
64
  tableRowId?: string;
63
- /**
64
- * 是否需要行拖拽
65
- * @deprecated 请使用 row-config drag 配合row-drag-config配置 支持的版本看官方文档,后续不在维护行拖拽
66
- * @default false
67
- */
68
- isRowDrag?: boolean;
69
65
  /**
70
66
  * 是否需要行拖拽-树形表格
71
67
  * @deprecated 请使用 row-config drag 配合row-drag-config配置 支持的版本看官方文档,后续不在维护行拖拽