vxe-gantt 4.0.0-beta.1 → 4.0.0-beta.2
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.
- package/es/components.js +3 -2
- package/es/gantt/src/gantt-body.js +3 -3
- package/es/gantt/src/gantt-chart.js +3 -3
- package/es/gantt/src/gantt-header.js +15 -1
- package/es/gantt/src/gantt.js +7 -4
- package/es/gantt/src/util.js +6 -0
- package/es/gantt/style.css +0 -8
- package/es/gantt/style.min.css +1 -1
- package/es/index.esm.js +2 -2
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/ui/index.js +1 -2
- package/es/ui/src/log.js +1 -1
- package/es/vxe-gantt/style.css +0 -8
- package/es/vxe-gantt/style.min.css +1 -1
- package/lib/components.js +14 -15
- package/lib/components.min.js +1 -1
- package/lib/gantt/src/gantt-body.js +3 -5
- package/lib/gantt/src/gantt-body.min.js +1 -1
- package/lib/gantt/src/gantt-chart.js +3 -5
- package/lib/gantt/src/gantt-chart.min.js +1 -1
- package/lib/gantt/src/gantt-header.js +18 -1
- package/lib/gantt/src/gantt-header.min.js +1 -1
- package/lib/gantt/src/gantt.js +21 -5
- package/lib/gantt/src/gantt.min.js +1 -1
- package/lib/gantt/src/util.js +7 -0
- package/lib/gantt/src/util.min.js +1 -1
- package/lib/gantt/style/style.css +0 -8
- package/lib/gantt/style/style.min.css +1 -1
- package/lib/index.common.js +5 -5
- package/lib/index.umd.js +25480 -6376
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/ui/index.js +1 -13
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/lib/vxe-gantt/style/style.css +0 -8
- package/lib/vxe-gantt/style/style.min.css +1 -1
- package/package.json +1 -1
- package/packages/components.ts +6 -3
- package/packages/gantt/src/gantt-body.ts +4 -4
- package/packages/gantt/src/gantt-chart.ts +5 -5
- package/packages/gantt/src/gantt-header.ts +19 -1
- package/packages/gantt/src/gantt-view.ts +1 -0
- package/packages/gantt/src/gantt.ts +45 -9
- package/packages/gantt/src/util.ts +7 -0
- package/packages/index.ts +2 -2
- package/packages/ui/index.ts +0 -2
- package/styles/components/gantt.scss +0 -6
- package/es/gantt/src/grid-props.js +0 -7
- package/es/gantt/src/props.js +0 -2
- package/es/gantt/src/table-props.js +0 -298
- package/lib/gantt/src/grid-props.js +0 -24
- package/lib/gantt/src/grid-props.min.js +0 -1
- package/lib/gantt/src/props.js +0 -14
- package/lib/gantt/src/props.min.js +0 -1
- package/lib/gantt/src/table-props.js +0 -306
- package/lib/gantt/src/table-props.min.js +0 -1
- package/packages/gantt/src/grid-props.ts +0 -23
- package/packages/gantt/src/props.ts +0 -14
- package/packages/gantt/src/table-props.ts +0 -304
package/es/gantt/src/props.js
DELETED
|
@@ -1,298 +0,0 @@
|
|
|
1
|
-
import { VxeUI } from '@vxe-ui/core';
|
|
2
|
-
const { getConfig } = VxeUI;
|
|
3
|
-
export const tableProps = {
|
|
4
|
-
/** 基本属性 */
|
|
5
|
-
id: [String, Function],
|
|
6
|
-
// 数据
|
|
7
|
-
data: Array,
|
|
8
|
-
// 表格的高度
|
|
9
|
-
height: [Number, String],
|
|
10
|
-
// 表格的最小高度
|
|
11
|
-
minHeight: {
|
|
12
|
-
type: [Number, String],
|
|
13
|
-
default: () => getConfig().table.minHeight
|
|
14
|
-
},
|
|
15
|
-
// 表格的最大高度
|
|
16
|
-
maxHeight: [Number, String],
|
|
17
|
-
// 已废弃,被 column-config.resizable 替换
|
|
18
|
-
resizable: {
|
|
19
|
-
type: Boolean,
|
|
20
|
-
default: () => getConfig().table.resizable
|
|
21
|
-
},
|
|
22
|
-
// 是否带有斑马纹
|
|
23
|
-
stripe: {
|
|
24
|
-
type: Boolean,
|
|
25
|
-
default: () => getConfig().table.stripe
|
|
26
|
-
},
|
|
27
|
-
// 是否带有边框
|
|
28
|
-
border: {
|
|
29
|
-
type: [Boolean, String],
|
|
30
|
-
default: () => getConfig().table.border
|
|
31
|
-
},
|
|
32
|
-
// 已废弃,被 cell-config.padding 替换
|
|
33
|
-
padding: {
|
|
34
|
-
type: Boolean,
|
|
35
|
-
default: null
|
|
36
|
-
},
|
|
37
|
-
// 是否圆角边框
|
|
38
|
-
round: {
|
|
39
|
-
type: Boolean,
|
|
40
|
-
default: () => getConfig().table.round
|
|
41
|
-
},
|
|
42
|
-
// 表格的尺寸
|
|
43
|
-
size: {
|
|
44
|
-
type: String,
|
|
45
|
-
default: () => getConfig().table.size || getConfig().size
|
|
46
|
-
},
|
|
47
|
-
// 列的宽度是否自撑开(可能会被废弃的参数,不要使用)
|
|
48
|
-
fit: {
|
|
49
|
-
type: Boolean,
|
|
50
|
-
default: () => getConfig().table.fit
|
|
51
|
-
},
|
|
52
|
-
// 表格是否加载中
|
|
53
|
-
loading: Boolean,
|
|
54
|
-
// 所有的列对其方式
|
|
55
|
-
align: {
|
|
56
|
-
type: String,
|
|
57
|
-
default: () => getConfig().table.align
|
|
58
|
-
},
|
|
59
|
-
// 所有的表头列的对齐方式
|
|
60
|
-
headerAlign: {
|
|
61
|
-
type: String,
|
|
62
|
-
default: () => getConfig().table.headerAlign
|
|
63
|
-
},
|
|
64
|
-
// 所有的表尾列的对齐方式
|
|
65
|
-
footerAlign: {
|
|
66
|
-
type: String,
|
|
67
|
-
default: () => getConfig().table.footerAlign
|
|
68
|
-
},
|
|
69
|
-
// 是否显示表头
|
|
70
|
-
showHeader: {
|
|
71
|
-
type: Boolean,
|
|
72
|
-
default: () => getConfig().table.showHeader
|
|
73
|
-
},
|
|
74
|
-
// (即将废弃)是否要高亮当前选中行
|
|
75
|
-
highlightCurrentRow: {
|
|
76
|
-
type: Boolean,
|
|
77
|
-
default: () => getConfig().table.highlightCurrentRow
|
|
78
|
-
},
|
|
79
|
-
// (即将废弃)鼠标移到行是否要高亮显示
|
|
80
|
-
highlightHoverRow: {
|
|
81
|
-
type: Boolean,
|
|
82
|
-
default: () => getConfig().table.highlightHoverRow
|
|
83
|
-
},
|
|
84
|
-
/**
|
|
85
|
-
* (即将废弃)是否要高亮当前选中列
|
|
86
|
-
* @deprecated
|
|
87
|
-
*/
|
|
88
|
-
highlightCurrentColumn: {
|
|
89
|
-
type: Boolean,
|
|
90
|
-
default: () => getConfig().table.highlightCurrentColumn
|
|
91
|
-
},
|
|
92
|
-
/**
|
|
93
|
-
* (即将废弃)鼠标移到列是否要高亮显示
|
|
94
|
-
* @deprecated
|
|
95
|
-
*/
|
|
96
|
-
highlightHoverColumn: {
|
|
97
|
-
type: Boolean,
|
|
98
|
-
default: () => getConfig().table.highlightHoverColumn
|
|
99
|
-
},
|
|
100
|
-
// (即将废弃)激活单元格编辑时是否高亮显示
|
|
101
|
-
highlightCell: Boolean,
|
|
102
|
-
// 是否显示表尾合计
|
|
103
|
-
showFooter: Boolean,
|
|
104
|
-
// 表尾数据
|
|
105
|
-
footerData: Array,
|
|
106
|
-
// 表尾合计的计算方法
|
|
107
|
-
footerMethod: Function,
|
|
108
|
-
// 给行附加 className
|
|
109
|
-
rowClassName: [String, Function],
|
|
110
|
-
// 给单元格附加 className
|
|
111
|
-
cellClassName: [String, Function],
|
|
112
|
-
// 给表头的行附加 className
|
|
113
|
-
headerRowClassName: [String, Function],
|
|
114
|
-
// 给表头的单元格附加 className
|
|
115
|
-
headerCellClassName: [String, Function],
|
|
116
|
-
// 给表尾的行附加 className
|
|
117
|
-
footerRowClassName: [String, Function],
|
|
118
|
-
// 给表尾的单元格附加 className
|
|
119
|
-
footerCellClassName: [String, Function],
|
|
120
|
-
// 给单元格附加样式
|
|
121
|
-
cellStyle: [Object, Function],
|
|
122
|
-
// 给表头单元格附加样式
|
|
123
|
-
headerCellStyle: [Object, Function],
|
|
124
|
-
// 给表尾单元格附加样式
|
|
125
|
-
footerCellStyle: [Object, Function],
|
|
126
|
-
// 给行附加样式
|
|
127
|
-
rowStyle: [Object, Function],
|
|
128
|
-
// 给表头行附加样式
|
|
129
|
-
headerRowStyle: [Object, Function],
|
|
130
|
-
// 给表尾行附加样式
|
|
131
|
-
footerRowStyle: [Object, Function],
|
|
132
|
-
// 合并指定单元格
|
|
133
|
-
mergeCells: Array,
|
|
134
|
-
// 合并指定的表尾
|
|
135
|
-
mergeFooterItems: Array,
|
|
136
|
-
// 自定义合并行或列的方法
|
|
137
|
-
spanMethod: Function,
|
|
138
|
-
// 表尾合并行或列
|
|
139
|
-
footerSpanMethod: Function,
|
|
140
|
-
// 设置所有内容过长时显示为省略号
|
|
141
|
-
showOverflow: {
|
|
142
|
-
type: [Boolean, String],
|
|
143
|
-
default: () => getConfig().table.showOverflow
|
|
144
|
-
},
|
|
145
|
-
// 设置表头所有内容过长时显示为省略号
|
|
146
|
-
showHeaderOverflow: {
|
|
147
|
-
type: [Boolean, String],
|
|
148
|
-
default: () => getConfig().table.showHeaderOverflow
|
|
149
|
-
},
|
|
150
|
-
// 设置表尾所有内容过长时显示为省略号
|
|
151
|
-
showFooterOverflow: {
|
|
152
|
-
type: [Boolean, String],
|
|
153
|
-
default: () => getConfig().table.showFooterOverflow
|
|
154
|
-
},
|
|
155
|
-
/** 高级属性 */
|
|
156
|
-
/**
|
|
157
|
-
* (即将废弃)columnKey 已废弃,被 column-config.useKey 替换
|
|
158
|
-
* @deprecated
|
|
159
|
-
*/
|
|
160
|
-
columnKey: Boolean,
|
|
161
|
-
/**
|
|
162
|
-
* (即将废弃)rowKey 已废弃,被 row-config.useKey 替换
|
|
163
|
-
* @deprecated
|
|
164
|
-
*/
|
|
165
|
-
rowKey: Boolean,
|
|
166
|
-
/**
|
|
167
|
-
* (即将废弃)rowId 已废弃,被 row-config.keyField 替换
|
|
168
|
-
* @deprecated
|
|
169
|
-
*/
|
|
170
|
-
rowId: {
|
|
171
|
-
type: String,
|
|
172
|
-
default: () => getConfig().table.rowId
|
|
173
|
-
},
|
|
174
|
-
zIndex: Number,
|
|
175
|
-
emptyText: {
|
|
176
|
-
type: String,
|
|
177
|
-
default: () => getConfig().table.emptyText
|
|
178
|
-
},
|
|
179
|
-
keepSource: {
|
|
180
|
-
type: Boolean,
|
|
181
|
-
default: () => getConfig().table.keepSource
|
|
182
|
-
},
|
|
183
|
-
// 是否自动监听父容器变化去更新响应式表格宽高
|
|
184
|
-
autoResize: {
|
|
185
|
-
type: Boolean,
|
|
186
|
-
default: () => getConfig().table.autoResize
|
|
187
|
-
},
|
|
188
|
-
// 是否自动根据状态属性去更新响应式表格宽高
|
|
189
|
-
syncResize: [Boolean, String, Number],
|
|
190
|
-
// 响应式布局配置项
|
|
191
|
-
resizeConfig: Object,
|
|
192
|
-
// 列配置项
|
|
193
|
-
columnConfig: Object,
|
|
194
|
-
// 当前列配置项
|
|
195
|
-
currentColumnConfig: Object,
|
|
196
|
-
// 单元格配置项
|
|
197
|
-
cellConfig: Object,
|
|
198
|
-
// 表头单元格配置项
|
|
199
|
-
headerCellConfig: Object,
|
|
200
|
-
// 表尾单元格配置项
|
|
201
|
-
footerCellConfig: Object,
|
|
202
|
-
// 行配置项
|
|
203
|
-
rowConfig: Object,
|
|
204
|
-
// 数据聚合配置项
|
|
205
|
-
aggregateConfig: Object,
|
|
206
|
-
/**
|
|
207
|
-
* 已废弃,被 aggregateConfig 替换
|
|
208
|
-
* @deprecated
|
|
209
|
-
*/
|
|
210
|
-
rowGroupConfig: Object,
|
|
211
|
-
// 当前行配置项
|
|
212
|
-
currentRowConfig: Object,
|
|
213
|
-
/**
|
|
214
|
-
* 已废弃,被 rowDragConfig 替换
|
|
215
|
-
* @deprecated
|
|
216
|
-
*/
|
|
217
|
-
dragConfig: Object,
|
|
218
|
-
// 行拖拽排序配置项
|
|
219
|
-
rowDragConfig: Object,
|
|
220
|
-
// 列拖拽排序配置项
|
|
221
|
-
columnDragConfig: Object,
|
|
222
|
-
// 列调整配置项
|
|
223
|
-
resizableConfig: Object,
|
|
224
|
-
// 序号配置项
|
|
225
|
-
seqConfig: Object,
|
|
226
|
-
// 排序配置项
|
|
227
|
-
sortConfig: Object,
|
|
228
|
-
// 筛选配置项
|
|
229
|
-
filterConfig: Object,
|
|
230
|
-
// 单选框配置
|
|
231
|
-
radioConfig: Object,
|
|
232
|
-
// 复选框配置项
|
|
233
|
-
checkboxConfig: Object,
|
|
234
|
-
// tooltip 配置项
|
|
235
|
-
tooltipConfig: Object,
|
|
236
|
-
// 导出配置项
|
|
237
|
-
exportConfig: Object,
|
|
238
|
-
// 导入配置项
|
|
239
|
-
importConfig: Object,
|
|
240
|
-
// 打印配置项
|
|
241
|
-
printConfig: Object,
|
|
242
|
-
// 展开行配置项
|
|
243
|
-
expandConfig: Object,
|
|
244
|
-
// 树形结构配置项
|
|
245
|
-
treeConfig: Object,
|
|
246
|
-
// 快捷菜单配置项
|
|
247
|
-
menuConfig: Object,
|
|
248
|
-
// 鼠标配置项
|
|
249
|
-
mouseConfig: Object,
|
|
250
|
-
// 区域配置项
|
|
251
|
-
areaConfig: Object,
|
|
252
|
-
// 按键配置项
|
|
253
|
-
keyboardConfig: Object,
|
|
254
|
-
// 复制粘/贴配置项
|
|
255
|
-
clipConfig: Object,
|
|
256
|
-
// 查找/替换配置项
|
|
257
|
-
fnrConfig: Object,
|
|
258
|
-
// 编辑配置项
|
|
259
|
-
editConfig: Object,
|
|
260
|
-
// 校验配置项
|
|
261
|
-
validConfig: Object,
|
|
262
|
-
// 校验规则配置项
|
|
263
|
-
editRules: Object,
|
|
264
|
-
// 加载中配置项
|
|
265
|
-
loadingConfig: Object,
|
|
266
|
-
// 空内容渲染配置项
|
|
267
|
-
emptyRender: Object,
|
|
268
|
-
// 自定义列配置项
|
|
269
|
-
customConfig: Object,
|
|
270
|
-
/**
|
|
271
|
-
* (即将废弃)横向虚拟滚动配置项
|
|
272
|
-
* @deprecated
|
|
273
|
-
*/
|
|
274
|
-
scrollX: Object,
|
|
275
|
-
/**
|
|
276
|
-
* (即将废弃)纵向虚拟滚动配置项
|
|
277
|
-
* @deprecated
|
|
278
|
-
*/
|
|
279
|
-
scrollY: Object,
|
|
280
|
-
// 横向虚拟滚动配置项
|
|
281
|
-
virtualXConfig: Object,
|
|
282
|
-
// 纵向虚拟滚动配置项
|
|
283
|
-
virtualYConfig: Object,
|
|
284
|
-
// 滚动条配置项
|
|
285
|
-
scrollbarConfig: Object,
|
|
286
|
-
// (即将废弃)优化相关
|
|
287
|
-
animat: {
|
|
288
|
-
type: Boolean,
|
|
289
|
-
default: () => getConfig().table.animat
|
|
290
|
-
},
|
|
291
|
-
// (可能会被废弃的参数,不要使用)
|
|
292
|
-
delayHover: {
|
|
293
|
-
type: Number,
|
|
294
|
-
default: () => getConfig().table.delayHover
|
|
295
|
-
},
|
|
296
|
-
// 额外的参数
|
|
297
|
-
params: Object
|
|
298
|
-
};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.gridProps = void 0;
|
|
7
|
-
var _core = require("@vxe-ui/core");
|
|
8
|
-
var _tableProps = require("./table-props");
|
|
9
|
-
const {
|
|
10
|
-
getConfig
|
|
11
|
-
} = _core.VxeUI;
|
|
12
|
-
const gridProps = exports.gridProps = Object.assign(Object.assign({}, _tableProps.tableProps), {
|
|
13
|
-
layouts: Array,
|
|
14
|
-
columns: Array,
|
|
15
|
-
pagerConfig: Object,
|
|
16
|
-
proxyConfig: Object,
|
|
17
|
-
toolbarConfig: Object,
|
|
18
|
-
formConfig: Object,
|
|
19
|
-
zoomConfig: Object,
|
|
20
|
-
size: {
|
|
21
|
-
type: String,
|
|
22
|
-
default: () => getConfig().gantt.size || getConfig().size
|
|
23
|
-
}
|
|
24
|
-
});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Object.defineProperty(exports,"__esModule",{value:!0}),exports.gridProps=void 0;var _core=require("@vxe-ui/core"),_tableProps=require("./table-props");let getConfig=_core.VxeUI.getConfig,gridProps=exports.gridProps=Object.assign(Object.assign({},_tableProps.tableProps),{layouts:Array,columns:Array,pagerConfig:Object,proxyConfig:Object,toolbarConfig:Object,formConfig:Object,zoomConfig:Object,size:{type:String,default:()=>getConfig().gantt.size||getConfig().size}});
|
package/lib/gantt/src/props.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.ganttProps = void 0;
|
|
7
|
-
var _gridProps = require("./grid-props");
|
|
8
|
-
const ganttProps = exports.ganttProps = Object.assign(Object.assign({}, _gridProps.gridProps), {
|
|
9
|
-
layouts: Array,
|
|
10
|
-
taskConfig: Object,
|
|
11
|
-
taskViewConfig: Object,
|
|
12
|
-
taskBarConfig: Object,
|
|
13
|
-
taskSplitConfig: Object
|
|
14
|
-
});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Object.defineProperty(exports,"__esModule",{value:!0}),exports.ganttProps=void 0;var _gridProps=require("./grid-props");let ganttProps=exports.ganttProps=Object.assign(Object.assign({},_gridProps.gridProps),{layouts:Array,taskConfig:Object,taskViewConfig:Object,taskBarConfig:Object,taskSplitConfig:Object});
|
|
@@ -1,306 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.tableProps = void 0;
|
|
7
|
-
var _core = require("@vxe-ui/core");
|
|
8
|
-
const {
|
|
9
|
-
getConfig
|
|
10
|
-
} = _core.VxeUI;
|
|
11
|
-
const tableProps = exports.tableProps = {
|
|
12
|
-
/** 基本属性 */
|
|
13
|
-
id: [String, Function],
|
|
14
|
-
// 数据
|
|
15
|
-
data: Array,
|
|
16
|
-
// 表格的高度
|
|
17
|
-
height: [Number, String],
|
|
18
|
-
// 表格的最小高度
|
|
19
|
-
minHeight: {
|
|
20
|
-
type: [Number, String],
|
|
21
|
-
default: () => getConfig().table.minHeight
|
|
22
|
-
},
|
|
23
|
-
// 表格的最大高度
|
|
24
|
-
maxHeight: [Number, String],
|
|
25
|
-
// 已废弃,被 column-config.resizable 替换
|
|
26
|
-
resizable: {
|
|
27
|
-
type: Boolean,
|
|
28
|
-
default: () => getConfig().table.resizable
|
|
29
|
-
},
|
|
30
|
-
// 是否带有斑马纹
|
|
31
|
-
stripe: {
|
|
32
|
-
type: Boolean,
|
|
33
|
-
default: () => getConfig().table.stripe
|
|
34
|
-
},
|
|
35
|
-
// 是否带有边框
|
|
36
|
-
border: {
|
|
37
|
-
type: [Boolean, String],
|
|
38
|
-
default: () => getConfig().table.border
|
|
39
|
-
},
|
|
40
|
-
// 已废弃,被 cell-config.padding 替换
|
|
41
|
-
padding: {
|
|
42
|
-
type: Boolean,
|
|
43
|
-
default: null
|
|
44
|
-
},
|
|
45
|
-
// 是否圆角边框
|
|
46
|
-
round: {
|
|
47
|
-
type: Boolean,
|
|
48
|
-
default: () => getConfig().table.round
|
|
49
|
-
},
|
|
50
|
-
// 表格的尺寸
|
|
51
|
-
size: {
|
|
52
|
-
type: String,
|
|
53
|
-
default: () => getConfig().table.size || getConfig().size
|
|
54
|
-
},
|
|
55
|
-
// 列的宽度是否自撑开(可能会被废弃的参数,不要使用)
|
|
56
|
-
fit: {
|
|
57
|
-
type: Boolean,
|
|
58
|
-
default: () => getConfig().table.fit
|
|
59
|
-
},
|
|
60
|
-
// 表格是否加载中
|
|
61
|
-
loading: Boolean,
|
|
62
|
-
// 所有的列对其方式
|
|
63
|
-
align: {
|
|
64
|
-
type: String,
|
|
65
|
-
default: () => getConfig().table.align
|
|
66
|
-
},
|
|
67
|
-
// 所有的表头列的对齐方式
|
|
68
|
-
headerAlign: {
|
|
69
|
-
type: String,
|
|
70
|
-
default: () => getConfig().table.headerAlign
|
|
71
|
-
},
|
|
72
|
-
// 所有的表尾列的对齐方式
|
|
73
|
-
footerAlign: {
|
|
74
|
-
type: String,
|
|
75
|
-
default: () => getConfig().table.footerAlign
|
|
76
|
-
},
|
|
77
|
-
// 是否显示表头
|
|
78
|
-
showHeader: {
|
|
79
|
-
type: Boolean,
|
|
80
|
-
default: () => getConfig().table.showHeader
|
|
81
|
-
},
|
|
82
|
-
// (即将废弃)是否要高亮当前选中行
|
|
83
|
-
highlightCurrentRow: {
|
|
84
|
-
type: Boolean,
|
|
85
|
-
default: () => getConfig().table.highlightCurrentRow
|
|
86
|
-
},
|
|
87
|
-
// (即将废弃)鼠标移到行是否要高亮显示
|
|
88
|
-
highlightHoverRow: {
|
|
89
|
-
type: Boolean,
|
|
90
|
-
default: () => getConfig().table.highlightHoverRow
|
|
91
|
-
},
|
|
92
|
-
/**
|
|
93
|
-
* (即将废弃)是否要高亮当前选中列
|
|
94
|
-
* @deprecated
|
|
95
|
-
*/
|
|
96
|
-
highlightCurrentColumn: {
|
|
97
|
-
type: Boolean,
|
|
98
|
-
default: () => getConfig().table.highlightCurrentColumn
|
|
99
|
-
},
|
|
100
|
-
/**
|
|
101
|
-
* (即将废弃)鼠标移到列是否要高亮显示
|
|
102
|
-
* @deprecated
|
|
103
|
-
*/
|
|
104
|
-
highlightHoverColumn: {
|
|
105
|
-
type: Boolean,
|
|
106
|
-
default: () => getConfig().table.highlightHoverColumn
|
|
107
|
-
},
|
|
108
|
-
// (即将废弃)激活单元格编辑时是否高亮显示
|
|
109
|
-
highlightCell: Boolean,
|
|
110
|
-
// 是否显示表尾合计
|
|
111
|
-
showFooter: Boolean,
|
|
112
|
-
// 表尾数据
|
|
113
|
-
footerData: Array,
|
|
114
|
-
// 表尾合计的计算方法
|
|
115
|
-
footerMethod: Function,
|
|
116
|
-
// 给行附加 className
|
|
117
|
-
rowClassName: [String, Function],
|
|
118
|
-
// 给单元格附加 className
|
|
119
|
-
cellClassName: [String, Function],
|
|
120
|
-
// 给表头的行附加 className
|
|
121
|
-
headerRowClassName: [String, Function],
|
|
122
|
-
// 给表头的单元格附加 className
|
|
123
|
-
headerCellClassName: [String, Function],
|
|
124
|
-
// 给表尾的行附加 className
|
|
125
|
-
footerRowClassName: [String, Function],
|
|
126
|
-
// 给表尾的单元格附加 className
|
|
127
|
-
footerCellClassName: [String, Function],
|
|
128
|
-
// 给单元格附加样式
|
|
129
|
-
cellStyle: [Object, Function],
|
|
130
|
-
// 给表头单元格附加样式
|
|
131
|
-
headerCellStyle: [Object, Function],
|
|
132
|
-
// 给表尾单元格附加样式
|
|
133
|
-
footerCellStyle: [Object, Function],
|
|
134
|
-
// 给行附加样式
|
|
135
|
-
rowStyle: [Object, Function],
|
|
136
|
-
// 给表头行附加样式
|
|
137
|
-
headerRowStyle: [Object, Function],
|
|
138
|
-
// 给表尾行附加样式
|
|
139
|
-
footerRowStyle: [Object, Function],
|
|
140
|
-
// 合并指定单元格
|
|
141
|
-
mergeCells: Array,
|
|
142
|
-
// 合并指定的表尾
|
|
143
|
-
mergeFooterItems: Array,
|
|
144
|
-
// 自定义合并行或列的方法
|
|
145
|
-
spanMethod: Function,
|
|
146
|
-
// 表尾合并行或列
|
|
147
|
-
footerSpanMethod: Function,
|
|
148
|
-
// 设置所有内容过长时显示为省略号
|
|
149
|
-
showOverflow: {
|
|
150
|
-
type: [Boolean, String],
|
|
151
|
-
default: () => getConfig().table.showOverflow
|
|
152
|
-
},
|
|
153
|
-
// 设置表头所有内容过长时显示为省略号
|
|
154
|
-
showHeaderOverflow: {
|
|
155
|
-
type: [Boolean, String],
|
|
156
|
-
default: () => getConfig().table.showHeaderOverflow
|
|
157
|
-
},
|
|
158
|
-
// 设置表尾所有内容过长时显示为省略号
|
|
159
|
-
showFooterOverflow: {
|
|
160
|
-
type: [Boolean, String],
|
|
161
|
-
default: () => getConfig().table.showFooterOverflow
|
|
162
|
-
},
|
|
163
|
-
/** 高级属性 */
|
|
164
|
-
/**
|
|
165
|
-
* (即将废弃)columnKey 已废弃,被 column-config.useKey 替换
|
|
166
|
-
* @deprecated
|
|
167
|
-
*/
|
|
168
|
-
columnKey: Boolean,
|
|
169
|
-
/**
|
|
170
|
-
* (即将废弃)rowKey 已废弃,被 row-config.useKey 替换
|
|
171
|
-
* @deprecated
|
|
172
|
-
*/
|
|
173
|
-
rowKey: Boolean,
|
|
174
|
-
/**
|
|
175
|
-
* (即将废弃)rowId 已废弃,被 row-config.keyField 替换
|
|
176
|
-
* @deprecated
|
|
177
|
-
*/
|
|
178
|
-
rowId: {
|
|
179
|
-
type: String,
|
|
180
|
-
default: () => getConfig().table.rowId
|
|
181
|
-
},
|
|
182
|
-
zIndex: Number,
|
|
183
|
-
emptyText: {
|
|
184
|
-
type: String,
|
|
185
|
-
default: () => getConfig().table.emptyText
|
|
186
|
-
},
|
|
187
|
-
keepSource: {
|
|
188
|
-
type: Boolean,
|
|
189
|
-
default: () => getConfig().table.keepSource
|
|
190
|
-
},
|
|
191
|
-
// 是否自动监听父容器变化去更新响应式表格宽高
|
|
192
|
-
autoResize: {
|
|
193
|
-
type: Boolean,
|
|
194
|
-
default: () => getConfig().table.autoResize
|
|
195
|
-
},
|
|
196
|
-
// 是否自动根据状态属性去更新响应式表格宽高
|
|
197
|
-
syncResize: [Boolean, String, Number],
|
|
198
|
-
// 响应式布局配置项
|
|
199
|
-
resizeConfig: Object,
|
|
200
|
-
// 列配置项
|
|
201
|
-
columnConfig: Object,
|
|
202
|
-
// 当前列配置项
|
|
203
|
-
currentColumnConfig: Object,
|
|
204
|
-
// 单元格配置项
|
|
205
|
-
cellConfig: Object,
|
|
206
|
-
// 表头单元格配置项
|
|
207
|
-
headerCellConfig: Object,
|
|
208
|
-
// 表尾单元格配置项
|
|
209
|
-
footerCellConfig: Object,
|
|
210
|
-
// 行配置项
|
|
211
|
-
rowConfig: Object,
|
|
212
|
-
// 数据聚合配置项
|
|
213
|
-
aggregateConfig: Object,
|
|
214
|
-
/**
|
|
215
|
-
* 已废弃,被 aggregateConfig 替换
|
|
216
|
-
* @deprecated
|
|
217
|
-
*/
|
|
218
|
-
rowGroupConfig: Object,
|
|
219
|
-
// 当前行配置项
|
|
220
|
-
currentRowConfig: Object,
|
|
221
|
-
/**
|
|
222
|
-
* 已废弃,被 rowDragConfig 替换
|
|
223
|
-
* @deprecated
|
|
224
|
-
*/
|
|
225
|
-
dragConfig: Object,
|
|
226
|
-
// 行拖拽排序配置项
|
|
227
|
-
rowDragConfig: Object,
|
|
228
|
-
// 列拖拽排序配置项
|
|
229
|
-
columnDragConfig: Object,
|
|
230
|
-
// 列调整配置项
|
|
231
|
-
resizableConfig: Object,
|
|
232
|
-
// 序号配置项
|
|
233
|
-
seqConfig: Object,
|
|
234
|
-
// 排序配置项
|
|
235
|
-
sortConfig: Object,
|
|
236
|
-
// 筛选配置项
|
|
237
|
-
filterConfig: Object,
|
|
238
|
-
// 单选框配置
|
|
239
|
-
radioConfig: Object,
|
|
240
|
-
// 复选框配置项
|
|
241
|
-
checkboxConfig: Object,
|
|
242
|
-
// tooltip 配置项
|
|
243
|
-
tooltipConfig: Object,
|
|
244
|
-
// 导出配置项
|
|
245
|
-
exportConfig: Object,
|
|
246
|
-
// 导入配置项
|
|
247
|
-
importConfig: Object,
|
|
248
|
-
// 打印配置项
|
|
249
|
-
printConfig: Object,
|
|
250
|
-
// 展开行配置项
|
|
251
|
-
expandConfig: Object,
|
|
252
|
-
// 树形结构配置项
|
|
253
|
-
treeConfig: Object,
|
|
254
|
-
// 快捷菜单配置项
|
|
255
|
-
menuConfig: Object,
|
|
256
|
-
// 鼠标配置项
|
|
257
|
-
mouseConfig: Object,
|
|
258
|
-
// 区域配置项
|
|
259
|
-
areaConfig: Object,
|
|
260
|
-
// 按键配置项
|
|
261
|
-
keyboardConfig: Object,
|
|
262
|
-
// 复制粘/贴配置项
|
|
263
|
-
clipConfig: Object,
|
|
264
|
-
// 查找/替换配置项
|
|
265
|
-
fnrConfig: Object,
|
|
266
|
-
// 编辑配置项
|
|
267
|
-
editConfig: Object,
|
|
268
|
-
// 校验配置项
|
|
269
|
-
validConfig: Object,
|
|
270
|
-
// 校验规则配置项
|
|
271
|
-
editRules: Object,
|
|
272
|
-
// 加载中配置项
|
|
273
|
-
loadingConfig: Object,
|
|
274
|
-
// 空内容渲染配置项
|
|
275
|
-
emptyRender: Object,
|
|
276
|
-
// 自定义列配置项
|
|
277
|
-
customConfig: Object,
|
|
278
|
-
/**
|
|
279
|
-
* (即将废弃)横向虚拟滚动配置项
|
|
280
|
-
* @deprecated
|
|
281
|
-
*/
|
|
282
|
-
scrollX: Object,
|
|
283
|
-
/**
|
|
284
|
-
* (即将废弃)纵向虚拟滚动配置项
|
|
285
|
-
* @deprecated
|
|
286
|
-
*/
|
|
287
|
-
scrollY: Object,
|
|
288
|
-
// 横向虚拟滚动配置项
|
|
289
|
-
virtualXConfig: Object,
|
|
290
|
-
// 纵向虚拟滚动配置项
|
|
291
|
-
virtualYConfig: Object,
|
|
292
|
-
// 滚动条配置项
|
|
293
|
-
scrollbarConfig: Object,
|
|
294
|
-
// (即将废弃)优化相关
|
|
295
|
-
animat: {
|
|
296
|
-
type: Boolean,
|
|
297
|
-
default: () => getConfig().table.animat
|
|
298
|
-
},
|
|
299
|
-
// (可能会被废弃的参数,不要使用)
|
|
300
|
-
delayHover: {
|
|
301
|
-
type: Number,
|
|
302
|
-
default: () => getConfig().table.delayHover
|
|
303
|
-
},
|
|
304
|
-
// 额外的参数
|
|
305
|
-
params: Object
|
|
306
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Object.defineProperty(exports,"__esModule",{value:!0}),exports.tableProps=void 0;var _core=require("@vxe-ui/core");let getConfig=_core.VxeUI.getConfig,tableProps=exports.tableProps={id:[String,Function],data:Array,height:[Number,String],minHeight:{type:[Number,String],default:()=>getConfig().table.minHeight},maxHeight:[Number,String],resizable:{type:Boolean,default:()=>getConfig().table.resizable},stripe:{type:Boolean,default:()=>getConfig().table.stripe},border:{type:[Boolean,String],default:()=>getConfig().table.border},padding:{type:Boolean,default:null},round:{type:Boolean,default:()=>getConfig().table.round},size:{type:String,default:()=>getConfig().table.size||getConfig().size},fit:{type:Boolean,default:()=>getConfig().table.fit},loading:Boolean,align:{type:String,default:()=>getConfig().table.align},headerAlign:{type:String,default:()=>getConfig().table.headerAlign},footerAlign:{type:String,default:()=>getConfig().table.footerAlign},showHeader:{type:Boolean,default:()=>getConfig().table.showHeader},highlightCurrentRow:{type:Boolean,default:()=>getConfig().table.highlightCurrentRow},highlightHoverRow:{type:Boolean,default:()=>getConfig().table.highlightHoverRow},highlightCurrentColumn:{type:Boolean,default:()=>getConfig().table.highlightCurrentColumn},highlightHoverColumn:{type:Boolean,default:()=>getConfig().table.highlightHoverColumn},highlightCell:Boolean,showFooter:Boolean,footerData:Array,footerMethod:Function,rowClassName:[String,Function],cellClassName:[String,Function],headerRowClassName:[String,Function],headerCellClassName:[String,Function],footerRowClassName:[String,Function],footerCellClassName:[String,Function],cellStyle:[Object,Function],headerCellStyle:[Object,Function],footerCellStyle:[Object,Function],rowStyle:[Object,Function],headerRowStyle:[Object,Function],footerRowStyle:[Object,Function],mergeCells:Array,mergeFooterItems:Array,spanMethod:Function,footerSpanMethod:Function,showOverflow:{type:[Boolean,String],default:()=>getConfig().table.showOverflow},showHeaderOverflow:{type:[Boolean,String],default:()=>getConfig().table.showHeaderOverflow},showFooterOverflow:{type:[Boolean,String],default:()=>getConfig().table.showFooterOverflow},columnKey:Boolean,rowKey:Boolean,rowId:{type:String,default:()=>getConfig().table.rowId},zIndex:Number,emptyText:{type:String,default:()=>getConfig().table.emptyText},keepSource:{type:Boolean,default:()=>getConfig().table.keepSource},autoResize:{type:Boolean,default:()=>getConfig().table.autoResize},syncResize:[Boolean,String,Number],resizeConfig:Object,columnConfig:Object,currentColumnConfig:Object,cellConfig:Object,headerCellConfig:Object,footerCellConfig:Object,rowConfig:Object,aggregateConfig:Object,rowGroupConfig:Object,currentRowConfig:Object,dragConfig:Object,rowDragConfig:Object,columnDragConfig:Object,resizableConfig:Object,seqConfig:Object,sortConfig:Object,filterConfig:Object,radioConfig:Object,checkboxConfig:Object,tooltipConfig:Object,exportConfig:Object,importConfig:Object,printConfig:Object,expandConfig:Object,treeConfig:Object,menuConfig:Object,mouseConfig:Object,areaConfig:Object,keyboardConfig:Object,clipConfig:Object,fnrConfig:Object,editConfig:Object,validConfig:Object,editRules:Object,loadingConfig:Object,emptyRender:Object,customConfig:Object,scrollX:Object,scrollY:Object,virtualXConfig:Object,virtualYConfig:Object,scrollbarConfig:Object,animat:{type:Boolean,default:()=>getConfig().table.animat},delayHover:{type:Number,default:()=>getConfig().table.delayHover},params:Object};
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import { PropType } from 'vue'
|
|
3
|
-
import { VxeUI } from '@vxe-ui/core'
|
|
4
|
-
import { tableProps } from './table-props'
|
|
5
|
-
|
|
6
|
-
import type { VxeGridPropTypes } from 'vxe-table'
|
|
7
|
-
|
|
8
|
-
const { getConfig } = VxeUI
|
|
9
|
-
|
|
10
|
-
export const gridProps = {
|
|
11
|
-
...tableProps,
|
|
12
|
-
layouts: Array as PropType<VxeGridPropTypes.Layouts>,
|
|
13
|
-
columns: Array as PropType<VxeGridPropTypes.Columns<any>>,
|
|
14
|
-
pagerConfig: Object as PropType<VxeGridPropTypes.PagerConfig>,
|
|
15
|
-
proxyConfig: Object as PropType<VxeGridPropTypes.ProxyConfig<any>>,
|
|
16
|
-
toolbarConfig: Object as PropType<VxeGridPropTypes.ToolbarConfig>,
|
|
17
|
-
formConfig: Object as PropType<VxeGridPropTypes.FormConfig>,
|
|
18
|
-
zoomConfig: Object as PropType<VxeGridPropTypes.ZoomConfig>,
|
|
19
|
-
size: {
|
|
20
|
-
type: String as PropType<VxeGridPropTypes.Size>,
|
|
21
|
-
default: () => getConfig().gantt.size || getConfig().size
|
|
22
|
-
}
|
|
23
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { PropType } from 'vue'
|
|
2
|
-
import { gridProps } from './grid-props'
|
|
3
|
-
|
|
4
|
-
import type { VxeGanttPropTypes } from '../../../types'
|
|
5
|
-
|
|
6
|
-
export const ganttProps = {
|
|
7
|
-
...gridProps,
|
|
8
|
-
|
|
9
|
-
layouts: Array as PropType<VxeGanttPropTypes.Layouts>,
|
|
10
|
-
taskConfig: Object as PropType<VxeGanttPropTypes.TaskConfig>,
|
|
11
|
-
taskViewConfig: Object as PropType<VxeGanttPropTypes.TaskViewConfig>,
|
|
12
|
-
taskBarConfig: Object as PropType<VxeGanttPropTypes.TaskBarConfig>,
|
|
13
|
-
taskSplitConfig: Object as PropType<VxeGanttPropTypes.TaskSplitConfig>
|
|
14
|
-
}
|