wlwy-package 3.2.3 → 3.2.4
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { nextTick } from 'vue';
|
|
2
|
-
import { type VxeToolbarInstance, type VxeTableInstance } from 'vxe-table';
|
|
2
|
+
import { type VxeToolbarInstance, type VxeTableInstance, VxeTablePropTypes, VxeTableDefines } from 'vxe-table';
|
|
3
3
|
import type { VxePagerDefines } from 'vxe-pc-ui';
|
|
4
4
|
import type { WPagerInstance, WTableProps } from '../type';
|
|
5
5
|
type __VLS_Props = WTableProps;
|
|
@@ -41,80 +41,80 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
41
41
|
$data: {};
|
|
42
42
|
$props: {
|
|
43
43
|
size?: import("vxe-table").VxeComponentSizeType | undefined;
|
|
44
|
-
id?:
|
|
45
|
-
data?:
|
|
46
|
-
height?:
|
|
47
|
-
minHeight?:
|
|
48
|
-
maxHeight?:
|
|
44
|
+
id?: VxeTablePropTypes.ID<any> | undefined;
|
|
45
|
+
data?: VxeTablePropTypes.Data<any> | undefined;
|
|
46
|
+
height?: VxeTablePropTypes.Height | undefined;
|
|
47
|
+
minHeight?: VxeTablePropTypes.MinHeight | undefined;
|
|
48
|
+
maxHeight?: VxeTablePropTypes.MaxHeight | undefined;
|
|
49
49
|
stripe?: boolean | undefined;
|
|
50
50
|
padding?: boolean | undefined;
|
|
51
51
|
round?: boolean | undefined;
|
|
52
|
-
border?:
|
|
52
|
+
border?: VxeTablePropTypes.Border | undefined;
|
|
53
53
|
loading?: boolean | undefined;
|
|
54
54
|
align?: import("vxe-table").VxeComponentAlignType | undefined;
|
|
55
55
|
headerAlign?: import("vxe-table").VxeComponentAlignType | undefined;
|
|
56
56
|
footerAlign?: import("vxe-table").VxeComponentAlignType | undefined;
|
|
57
57
|
showHeader?: boolean | undefined;
|
|
58
58
|
showFooter?: boolean | undefined;
|
|
59
|
-
footerData?:
|
|
60
|
-
footerMethod?:
|
|
61
|
-
rowClassName?:
|
|
62
|
-
cellClassName?:
|
|
63
|
-
headerRowClassName?:
|
|
64
|
-
headerCellClassName?:
|
|
65
|
-
footerRowClassName?:
|
|
66
|
-
footerCellClassName?:
|
|
67
|
-
cellStyle?:
|
|
68
|
-
rowStyle?:
|
|
69
|
-
headerCellStyle?:
|
|
70
|
-
headerRowStyle?:
|
|
71
|
-
footerRowStyle?:
|
|
72
|
-
footerCellStyle?:
|
|
73
|
-
mergeCells?:
|
|
74
|
-
mergeFooterItems?:
|
|
75
|
-
spanMethod?:
|
|
76
|
-
footerSpanMethod?:
|
|
77
|
-
showOverflow?:
|
|
78
|
-
showHeaderOverflow?:
|
|
79
|
-
showFooterOverflow?:
|
|
59
|
+
footerData?: VxeTablePropTypes.FooterData | undefined;
|
|
60
|
+
footerMethod?: VxeTablePropTypes.FooterMethod<any> | undefined;
|
|
61
|
+
rowClassName?: VxeTablePropTypes.RowClassName<any> | undefined;
|
|
62
|
+
cellClassName?: VxeTablePropTypes.CellClassName<any> | undefined;
|
|
63
|
+
headerRowClassName?: VxeTablePropTypes.HeaderRowClassName<any> | undefined;
|
|
64
|
+
headerCellClassName?: VxeTablePropTypes.HeaderCellClassName<any> | undefined;
|
|
65
|
+
footerRowClassName?: VxeTablePropTypes.FooterRowClassName<any> | undefined;
|
|
66
|
+
footerCellClassName?: VxeTablePropTypes.FooterCellClassName<any> | undefined;
|
|
67
|
+
cellStyle?: VxeTablePropTypes.CellStyle<any> | undefined;
|
|
68
|
+
rowStyle?: VxeTablePropTypes.RowStyle<any> | undefined;
|
|
69
|
+
headerCellStyle?: VxeTablePropTypes.HeaderCellStyle<any> | undefined;
|
|
70
|
+
headerRowStyle?: VxeTablePropTypes.HeaderRowStyle<any> | undefined;
|
|
71
|
+
footerRowStyle?: VxeTablePropTypes.FooterRowStyle<any> | undefined;
|
|
72
|
+
footerCellStyle?: VxeTablePropTypes.FooterCellStyle<any> | undefined;
|
|
73
|
+
mergeCells?: VxeTablePropTypes.MergeCells<any> | undefined;
|
|
74
|
+
mergeFooterItems?: VxeTablePropTypes.MergeFooterItems<any> | undefined;
|
|
75
|
+
spanMethod?: VxeTablePropTypes.SpanMethod<any> | undefined;
|
|
76
|
+
footerSpanMethod?: VxeTablePropTypes.FooterSpanMethod<any> | undefined;
|
|
77
|
+
showOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
|
|
78
|
+
showHeaderOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
|
|
79
|
+
showFooterOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
|
|
80
80
|
keepSource?: boolean | undefined;
|
|
81
81
|
autoResize?: boolean | undefined;
|
|
82
|
-
syncResize?:
|
|
83
|
-
columnConfig?:
|
|
84
|
-
rowConfig?:
|
|
85
|
-
cellConfig?:
|
|
86
|
-
currentConfig?:
|
|
87
|
-
dragConfig?:
|
|
88
|
-
rowDragConfig?:
|
|
89
|
-
columnDragConfig?:
|
|
90
|
-
customConfig?:
|
|
91
|
-
resizeConfig?:
|
|
92
|
-
resizableConfig?:
|
|
93
|
-
seqConfig?:
|
|
94
|
-
sortConfig?:
|
|
95
|
-
filterConfig?:
|
|
96
|
-
radioConfig?:
|
|
97
|
-
checkboxConfig?:
|
|
98
|
-
tooltipConfig?:
|
|
99
|
-
exportConfig?:
|
|
100
|
-
importConfig?:
|
|
101
|
-
printConfig?:
|
|
102
|
-
expandConfig?:
|
|
103
|
-
treeConfig?:
|
|
104
|
-
menuConfig?:
|
|
105
|
-
mouseConfig?:
|
|
106
|
-
areaConfig?:
|
|
107
|
-
fnrConfig?:
|
|
108
|
-
keyboardConfig?:
|
|
109
|
-
clipConfig?:
|
|
110
|
-
editConfig?:
|
|
111
|
-
validConfig?:
|
|
112
|
-
editRules?:
|
|
82
|
+
syncResize?: VxeTablePropTypes.SyncResize | undefined;
|
|
83
|
+
columnConfig?: VxeTablePropTypes.ColumnConfig<any> | undefined;
|
|
84
|
+
rowConfig?: VxeTablePropTypes.RowConfig<any> | undefined;
|
|
85
|
+
cellConfig?: VxeTablePropTypes.CellConfig<any> | undefined;
|
|
86
|
+
currentConfig?: VxeTablePropTypes.CurrentConfig<any> | undefined;
|
|
87
|
+
dragConfig?: VxeTablePropTypes.DragConfig<any> | undefined;
|
|
88
|
+
rowDragConfig?: VxeTablePropTypes.RowDragConfig<any> | undefined;
|
|
89
|
+
columnDragConfig?: VxeTablePropTypes.ColumnDragConfig<any> | undefined;
|
|
90
|
+
customConfig?: VxeTablePropTypes.CustomConfig<any> | undefined;
|
|
91
|
+
resizeConfig?: VxeTablePropTypes.ResizeConfig | undefined;
|
|
92
|
+
resizableConfig?: VxeTablePropTypes.ResizableConfig<any> | undefined;
|
|
93
|
+
seqConfig?: VxeTablePropTypes.SeqConfig<any> | undefined;
|
|
94
|
+
sortConfig?: VxeTablePropTypes.SortConfig<any> | undefined;
|
|
95
|
+
filterConfig?: VxeTablePropTypes.FilterConfig<any> | undefined;
|
|
96
|
+
radioConfig?: VxeTablePropTypes.RadioConfig<any> | undefined;
|
|
97
|
+
checkboxConfig?: VxeTablePropTypes.CheckboxConfig<any> | undefined;
|
|
98
|
+
tooltipConfig?: VxeTablePropTypes.TooltipConfig<any> | undefined;
|
|
99
|
+
exportConfig?: VxeTablePropTypes.ExportConfig | undefined;
|
|
100
|
+
importConfig?: VxeTablePropTypes.ImportConfig | undefined;
|
|
101
|
+
printConfig?: VxeTablePropTypes.PrintConfig | undefined;
|
|
102
|
+
expandConfig?: VxeTablePropTypes.ExpandConfig<any> | undefined;
|
|
103
|
+
treeConfig?: VxeTablePropTypes.TreeConfig<any> | undefined;
|
|
104
|
+
menuConfig?: VxeTablePropTypes.MenuConfig<any> | undefined;
|
|
105
|
+
mouseConfig?: VxeTablePropTypes.MouseConfig | undefined;
|
|
106
|
+
areaConfig?: VxeTablePropTypes.AreaConfig<any> | undefined;
|
|
107
|
+
fnrConfig?: VxeTablePropTypes.FNRConfig<any> | undefined;
|
|
108
|
+
keyboardConfig?: VxeTablePropTypes.KeyboardConfig<any> | undefined;
|
|
109
|
+
clipConfig?: VxeTablePropTypes.ClipConfig<any> | undefined;
|
|
110
|
+
editConfig?: VxeTablePropTypes.EditConfig<any> | undefined;
|
|
111
|
+
validConfig?: VxeTablePropTypes.ValidConfig<any> | undefined;
|
|
112
|
+
editRules?: VxeTablePropTypes.EditRules<any> | undefined;
|
|
113
113
|
emptyText?: string | undefined;
|
|
114
|
-
emptyRender?:
|
|
115
|
-
loadingConfig?:
|
|
116
|
-
scrollX?:
|
|
117
|
-
scrollY?:
|
|
114
|
+
emptyRender?: VxeTablePropTypes.EmptyRender | undefined;
|
|
115
|
+
loadingConfig?: VxeTablePropTypes.LoadingConfig | undefined;
|
|
116
|
+
scrollX?: VxeTablePropTypes.ScrollX | undefined;
|
|
117
|
+
scrollY?: VxeTablePropTypes.ScrollY | undefined;
|
|
118
118
|
params?: any;
|
|
119
119
|
resizable?: boolean | undefined;
|
|
120
120
|
highlightCurrentRow?: boolean | undefined;
|
|
@@ -140,7 +140,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
140
140
|
}>;
|
|
141
141
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
142
142
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
143
|
-
|
|
143
|
+
$host: Element | null;
|
|
144
144
|
$emit: (event: string, ...args: any[]) => void;
|
|
145
145
|
$el: any;
|
|
146
146
|
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions> & {
|
|
@@ -163,83 +163,83 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
163
163
|
$forceUpdate: () => void;
|
|
164
164
|
$nextTick: typeof nextTick;
|
|
165
165
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import("@vue/reactivity").OnCleanup) => any : (args_0: any, args_1: any, args_2: import("@vue/reactivity").OnCleanup) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
166
|
-
id?:
|
|
166
|
+
id?: VxeTablePropTypes.ID<any> | undefined;
|
|
167
167
|
loading?: boolean | undefined;
|
|
168
168
|
params?: any;
|
|
169
169
|
size?: import("vxe-table").VxeComponentSizeType | undefined;
|
|
170
|
-
data?:
|
|
170
|
+
data?: VxeTablePropTypes.Data<any> | undefined;
|
|
171
171
|
round?: boolean | undefined;
|
|
172
|
-
height?:
|
|
172
|
+
height?: VxeTablePropTypes.Height | undefined;
|
|
173
173
|
align?: import("vxe-table").VxeComponentAlignType | undefined;
|
|
174
174
|
resizable?: boolean | undefined;
|
|
175
|
-
border?:
|
|
176
|
-
minHeight?:
|
|
177
|
-
maxHeight?:
|
|
175
|
+
border?: VxeTablePropTypes.Border | undefined;
|
|
176
|
+
minHeight?: VxeTablePropTypes.MinHeight | undefined;
|
|
177
|
+
maxHeight?: VxeTablePropTypes.MaxHeight | undefined;
|
|
178
178
|
stripe?: boolean | undefined;
|
|
179
179
|
padding?: boolean | undefined;
|
|
180
180
|
headerAlign?: import("vxe-table").VxeComponentAlignType | undefined;
|
|
181
181
|
footerAlign?: import("vxe-table").VxeComponentAlignType | undefined;
|
|
182
182
|
showHeader?: boolean | undefined;
|
|
183
183
|
showFooter?: boolean | undefined;
|
|
184
|
-
footerData?:
|
|
185
|
-
footerMethod?:
|
|
186
|
-
rowClassName?:
|
|
187
|
-
cellClassName?:
|
|
188
|
-
headerRowClassName?:
|
|
189
|
-
headerCellClassName?:
|
|
190
|
-
footerRowClassName?:
|
|
191
|
-
footerCellClassName?:
|
|
192
|
-
cellStyle?:
|
|
193
|
-
rowStyle?:
|
|
194
|
-
headerCellStyle?:
|
|
195
|
-
headerRowStyle?:
|
|
196
|
-
footerRowStyle?:
|
|
197
|
-
footerCellStyle?:
|
|
198
|
-
mergeCells?:
|
|
199
|
-
mergeFooterItems?:
|
|
200
|
-
spanMethod?:
|
|
201
|
-
footerSpanMethod?:
|
|
202
|
-
showOverflow?:
|
|
203
|
-
showHeaderOverflow?:
|
|
204
|
-
showFooterOverflow?:
|
|
184
|
+
footerData?: VxeTablePropTypes.FooterData | undefined;
|
|
185
|
+
footerMethod?: VxeTablePropTypes.FooterMethod<any> | undefined;
|
|
186
|
+
rowClassName?: VxeTablePropTypes.RowClassName<any> | undefined;
|
|
187
|
+
cellClassName?: VxeTablePropTypes.CellClassName<any> | undefined;
|
|
188
|
+
headerRowClassName?: VxeTablePropTypes.HeaderRowClassName<any> | undefined;
|
|
189
|
+
headerCellClassName?: VxeTablePropTypes.HeaderCellClassName<any> | undefined;
|
|
190
|
+
footerRowClassName?: VxeTablePropTypes.FooterRowClassName<any> | undefined;
|
|
191
|
+
footerCellClassName?: VxeTablePropTypes.FooterCellClassName<any> | undefined;
|
|
192
|
+
cellStyle?: VxeTablePropTypes.CellStyle<any> | undefined;
|
|
193
|
+
rowStyle?: VxeTablePropTypes.RowStyle<any> | undefined;
|
|
194
|
+
headerCellStyle?: VxeTablePropTypes.HeaderCellStyle<any> | undefined;
|
|
195
|
+
headerRowStyle?: VxeTablePropTypes.HeaderRowStyle<any> | undefined;
|
|
196
|
+
footerRowStyle?: VxeTablePropTypes.FooterRowStyle<any> | undefined;
|
|
197
|
+
footerCellStyle?: VxeTablePropTypes.FooterCellStyle<any> | undefined;
|
|
198
|
+
mergeCells?: VxeTablePropTypes.MergeCells<any> | undefined;
|
|
199
|
+
mergeFooterItems?: VxeTablePropTypes.MergeFooterItems<any> | undefined;
|
|
200
|
+
spanMethod?: VxeTablePropTypes.SpanMethod<any> | undefined;
|
|
201
|
+
footerSpanMethod?: VxeTablePropTypes.FooterSpanMethod<any> | undefined;
|
|
202
|
+
showOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
|
|
203
|
+
showHeaderOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
|
|
204
|
+
showFooterOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
|
|
205
205
|
keepSource?: boolean | undefined;
|
|
206
206
|
autoResize?: boolean | undefined;
|
|
207
|
-
syncResize?:
|
|
208
|
-
columnConfig?:
|
|
209
|
-
rowConfig?:
|
|
210
|
-
cellConfig?:
|
|
211
|
-
currentConfig?:
|
|
212
|
-
dragConfig?:
|
|
213
|
-
rowDragConfig?:
|
|
214
|
-
columnDragConfig?:
|
|
215
|
-
customConfig?:
|
|
216
|
-
resizeConfig?:
|
|
217
|
-
resizableConfig?:
|
|
218
|
-
seqConfig?:
|
|
219
|
-
sortConfig?:
|
|
220
|
-
filterConfig?:
|
|
221
|
-
radioConfig?:
|
|
222
|
-
checkboxConfig?:
|
|
223
|
-
tooltipConfig?:
|
|
224
|
-
exportConfig?:
|
|
225
|
-
importConfig?:
|
|
226
|
-
printConfig?:
|
|
227
|
-
expandConfig?:
|
|
228
|
-
treeConfig?:
|
|
229
|
-
menuConfig?:
|
|
230
|
-
mouseConfig?:
|
|
231
|
-
areaConfig?:
|
|
232
|
-
fnrConfig?:
|
|
233
|
-
keyboardConfig?:
|
|
234
|
-
clipConfig?:
|
|
235
|
-
editConfig?:
|
|
236
|
-
validConfig?:
|
|
237
|
-
editRules?:
|
|
207
|
+
syncResize?: VxeTablePropTypes.SyncResize | undefined;
|
|
208
|
+
columnConfig?: VxeTablePropTypes.ColumnConfig<any> | undefined;
|
|
209
|
+
rowConfig?: VxeTablePropTypes.RowConfig<any> | undefined;
|
|
210
|
+
cellConfig?: VxeTablePropTypes.CellConfig<any> | undefined;
|
|
211
|
+
currentConfig?: VxeTablePropTypes.CurrentConfig<any> | undefined;
|
|
212
|
+
dragConfig?: VxeTablePropTypes.DragConfig<any> | undefined;
|
|
213
|
+
rowDragConfig?: VxeTablePropTypes.RowDragConfig<any> | undefined;
|
|
214
|
+
columnDragConfig?: VxeTablePropTypes.ColumnDragConfig<any> | undefined;
|
|
215
|
+
customConfig?: VxeTablePropTypes.CustomConfig<any> | undefined;
|
|
216
|
+
resizeConfig?: VxeTablePropTypes.ResizeConfig | undefined;
|
|
217
|
+
resizableConfig?: VxeTablePropTypes.ResizableConfig<any> | undefined;
|
|
218
|
+
seqConfig?: VxeTablePropTypes.SeqConfig<any> | undefined;
|
|
219
|
+
sortConfig?: VxeTablePropTypes.SortConfig<any> | undefined;
|
|
220
|
+
filterConfig?: VxeTablePropTypes.FilterConfig<any> | undefined;
|
|
221
|
+
radioConfig?: VxeTablePropTypes.RadioConfig<any> | undefined;
|
|
222
|
+
checkboxConfig?: VxeTablePropTypes.CheckboxConfig<any> | undefined;
|
|
223
|
+
tooltipConfig?: VxeTablePropTypes.TooltipConfig<any> | undefined;
|
|
224
|
+
exportConfig?: VxeTablePropTypes.ExportConfig | undefined;
|
|
225
|
+
importConfig?: VxeTablePropTypes.ImportConfig | undefined;
|
|
226
|
+
printConfig?: VxeTablePropTypes.PrintConfig | undefined;
|
|
227
|
+
expandConfig?: VxeTablePropTypes.ExpandConfig<any> | undefined;
|
|
228
|
+
treeConfig?: VxeTablePropTypes.TreeConfig<any> | undefined;
|
|
229
|
+
menuConfig?: VxeTablePropTypes.MenuConfig<any> | undefined;
|
|
230
|
+
mouseConfig?: VxeTablePropTypes.MouseConfig | undefined;
|
|
231
|
+
areaConfig?: VxeTablePropTypes.AreaConfig<any> | undefined;
|
|
232
|
+
fnrConfig?: VxeTablePropTypes.FNRConfig<any> | undefined;
|
|
233
|
+
keyboardConfig?: VxeTablePropTypes.KeyboardConfig<any> | undefined;
|
|
234
|
+
clipConfig?: VxeTablePropTypes.ClipConfig<any> | undefined;
|
|
235
|
+
editConfig?: VxeTablePropTypes.EditConfig<any> | undefined;
|
|
236
|
+
validConfig?: VxeTablePropTypes.ValidConfig<any> | undefined;
|
|
237
|
+
editRules?: VxeTablePropTypes.EditRules<any> | undefined;
|
|
238
238
|
emptyText?: string | undefined;
|
|
239
|
-
emptyRender?:
|
|
240
|
-
loadingConfig?:
|
|
241
|
-
scrollX?:
|
|
242
|
-
scrollY?:
|
|
239
|
+
emptyRender?: VxeTablePropTypes.EmptyRender | undefined;
|
|
240
|
+
loadingConfig?: VxeTablePropTypes.LoadingConfig | undefined;
|
|
241
|
+
scrollX?: VxeTablePropTypes.ScrollX | undefined;
|
|
242
|
+
scrollY?: VxeTablePropTypes.ScrollY | undefined;
|
|
243
243
|
highlightCurrentRow?: boolean | undefined;
|
|
244
244
|
highlightHoverRow?: boolean | undefined;
|
|
245
245
|
highlightCurrentColumn?: boolean | undefined;
|
|
@@ -259,7 +259,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
259
259
|
slots: Readonly<{
|
|
260
260
|
[name: string]: import("vue").Slot<any> | undefined;
|
|
261
261
|
}>;
|
|
262
|
-
emit: (event: "copy" | "cut" | "keydown" | "paste" | "scroll" | "custom" | "
|
|
262
|
+
emit: (event: "copy" | "cut" | "keydown" | "paste" | "scroll" | "custom" | "update:data" | "keydown-start" | "keydown-end" | "current-change" | "radio-change" | "checkbox-change" | "checkbox-all" | "checkbox-range-start" | "checkbox-range-change" | "checkbox-range-end" | "checkbox-range-select" | "cell-click" | "cell-dblclick" | "cell-menu" | "cell-mouseenter" | "cell-mouseleave" | "cell-selected" | "cell-delete-value" | "cell-backspace-value" | "header-cell-click" | "header-cell-dblclick" | "header-cell-menu" | "footer-cell-click" | "footer-cell-dblclick" | "footer-cell-menu" | "clear-merge" | "sort-change" | "clear-sort" | "filter-change" | "filter-visible" | "clear-filter" | "resizable-change" | "toggle-row-expand" | "toggle-tree-expand" | "menu-click" | "edit-closed" | "row-dragstart" | "row-dragover" | "row-dragend" | "column-dragstart" | "column-dragover" | "column-dragend" | "enter-append-row" | "edit-actived" | "edit-activated" | "edit-disabled" | "valid-error" | "scroll-boundary" | "change-fnr" | "open-fnr" | "show-fnr" | "hide-fnr" | "fnr-change" | "fnr-find" | "fnr-find-all" | "fnr-replace" | "fnr-replace-all" | "cell-area-copy" | "cell-area-cut" | "cell-area-paste" | "cell-area-merge" | "clear-cell-area-selection" | "clear-cell-area-merge" | "header-cell-area-selection" | "cell-area-selection-invalid" | "cell-area-selection-start" | "cell-area-selection-drag" | "cell-area-selection-end" | "cell-area-extension-start" | "cell-area-extension-drag" | "cell-area-extension-end" | "cell-area-selection-all-start" | "cell-area-selection-all-end" | "cell-area-arrows-start" | "cell-area-arrows-end" | "active-cell-change-start" | "active-cell-change-end", ...args: any[]) => void;
|
|
263
263
|
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed | undefined) => void;
|
|
264
264
|
};
|
|
265
265
|
reactData: import("vxe-table").TableReactData<any>;
|
|
@@ -269,7 +269,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
269
269
|
renderVN: import("vue").RenderFunction;
|
|
270
270
|
xegrid: import("vxe-table").VxeGridConstructor<any> | null;
|
|
271
271
|
xID: string;
|
|
272
|
-
dispatchEvent: (type: "copy" | "cut" | "keydown" | "paste" | "scroll" | "custom" | "
|
|
272
|
+
dispatchEvent: (type: "copy" | "cut" | "keydown" | "paste" | "scroll" | "custom" | "update:data" | "keydown-start" | "keydown-end" | "current-change" | "radio-change" | "checkbox-change" | "checkbox-all" | "checkbox-range-start" | "checkbox-range-change" | "checkbox-range-end" | "checkbox-range-select" | "cell-click" | "cell-dblclick" | "cell-menu" | "cell-mouseenter" | "cell-mouseleave" | "cell-selected" | "cell-delete-value" | "cell-backspace-value" | "header-cell-click" | "header-cell-dblclick" | "header-cell-menu" | "footer-cell-click" | "footer-cell-dblclick" | "footer-cell-menu" | "clear-merge" | "sort-change" | "clear-sort" | "filter-change" | "filter-visible" | "clear-filter" | "resizable-change" | "toggle-row-expand" | "toggle-tree-expand" | "menu-click" | "edit-closed" | "row-dragstart" | "row-dragover" | "row-dragend" | "column-dragstart" | "column-dragover" | "column-dragend" | "enter-append-row" | "edit-actived" | "edit-activated" | "edit-disabled" | "valid-error" | "scroll-boundary" | "change-fnr" | "open-fnr" | "show-fnr" | "hide-fnr" | "fnr-change" | "fnr-find" | "fnr-find-all" | "fnr-replace" | "fnr-replace-all" | "cell-area-copy" | "cell-area-cut" | "cell-area-paste" | "cell-area-merge" | "clear-cell-area-selection" | "clear-cell-area-merge" | "header-cell-area-selection" | "cell-area-selection-invalid" | "cell-area-selection-start" | "cell-area-selection-drag" | "cell-area-selection-end" | "cell-area-extension-start" | "cell-area-extension-drag" | "cell-area-extension-end" | "cell-area-selection-all-start" | "cell-area-selection-all-end" | "cell-area-arrows-start" | "cell-area-arrows-end" | "active-cell-change-start" | "active-cell-change-end", params: Record<string, any>, evnt: Event | null) => void;
|
|
273
273
|
clearAll: () => Promise<void>;
|
|
274
274
|
syncData: () => Promise<void>;
|
|
275
275
|
updateData: () => Promise<void>;
|
|
@@ -279,8 +279,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
279
279
|
reloadRow: (rows: any, record?: any, field?: string | undefined) => Promise<void>;
|
|
280
280
|
getParams: () => any;
|
|
281
281
|
loadTreeChildren: (row: any, children: any[]) => Promise<any[]>;
|
|
282
|
-
loadColumn: (columns: (
|
|
283
|
-
reloadColumn: (columns: (
|
|
282
|
+
loadColumn: (columns: (VxeTableDefines.ColumnInfo<any> | VxeTableDefines.ColumnOptions<any>)[]) => Promise<any>;
|
|
283
|
+
reloadColumn: (columns: (VxeTableDefines.ColumnInfo<any> | VxeTableDefines.ColumnOptions<any>)[]) => Promise<any>;
|
|
284
284
|
getRowNode: (trElem: HTMLElement) => {
|
|
285
285
|
rowid: string;
|
|
286
286
|
item: any;
|
|
@@ -290,24 +290,24 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
290
290
|
} | null;
|
|
291
291
|
getColumnNode: (cellElem: HTMLElement) => {
|
|
292
292
|
colid: string;
|
|
293
|
-
item:
|
|
294
|
-
items:
|
|
293
|
+
item: VxeTableDefines.ColumnInfo<any>;
|
|
294
|
+
items: VxeTableDefines.ColumnInfo<any>[];
|
|
295
295
|
index: number;
|
|
296
|
-
parent:
|
|
296
|
+
parent: VxeTableDefines.ColumnInfo<any> | null;
|
|
297
297
|
} | null;
|
|
298
298
|
getRowSeq: (row: any) => string | number;
|
|
299
299
|
getRowIndex: (row: any) => number;
|
|
300
300
|
getVTRowIndex: (row: any) => number;
|
|
301
301
|
getVMRowIndex: (row: any) => number;
|
|
302
|
-
getColumnIndex: (column:
|
|
303
|
-
getVTColumnIndex: (column:
|
|
304
|
-
getVMColumnIndex: (column:
|
|
302
|
+
getColumnIndex: (column: VxeTableDefines.ColumnInfo<any>) => number;
|
|
303
|
+
getVTColumnIndex: (column: VxeTableDefines.ColumnInfo<any>) => number;
|
|
304
|
+
getVMColumnIndex: (column: VxeTableDefines.ColumnInfo<any>) => number;
|
|
305
305
|
createData: (records: any[]) => Promise<any[]>;
|
|
306
306
|
createRow: (records: any) => Promise<any>;
|
|
307
307
|
revertData: (rows?: any, field?: string | undefined) => Promise<any>;
|
|
308
308
|
clearData: (rows?: any, field?: string | undefined) => Promise<any>;
|
|
309
|
-
getCellElement: (row: any, fieldOrColumn: string |
|
|
310
|
-
getCellLabel: (row: any, fieldOrColumn: string |
|
|
309
|
+
getCellElement: (row: any, fieldOrColumn: string | VxeTableDefines.ColumnInfo<any> | null) => HTMLTableDataCellElement | null;
|
|
310
|
+
getCellLabel: (row: any, fieldOrColumn: string | VxeTableDefines.ColumnInfo<any> | null) => string | number | null;
|
|
311
311
|
isInsertByRow: (row: any) => boolean;
|
|
312
312
|
removeInsertRow: () => Promise<{
|
|
313
313
|
row: any;
|
|
@@ -315,20 +315,20 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
315
315
|
}>;
|
|
316
316
|
isUpdateByRow: (row: any, field?: string | null | undefined) => boolean;
|
|
317
317
|
getColumns: {
|
|
318
|
-
():
|
|
319
|
-
(columnIndex?: number | undefined):
|
|
318
|
+
(): VxeTableDefines.ColumnInfo<any>[];
|
|
319
|
+
(columnIndex?: number | undefined): VxeTableDefines.ColumnInfo<any>;
|
|
320
320
|
};
|
|
321
|
-
getColid: (fieldOrColumn: string |
|
|
322
|
-
getColumnById: (colid: string | null) =>
|
|
323
|
-
getColumnByField: (field: string | null) =>
|
|
324
|
-
getParentColumn: (fieldOrColumn: string |
|
|
321
|
+
getColid: (fieldOrColumn: string | VxeTableDefines.ColumnInfo<any> | null) => string | null;
|
|
322
|
+
getColumnById: (colid: string | null) => VxeTableDefines.ColumnInfo<any> | null;
|
|
323
|
+
getColumnByField: (field: string | null) => VxeTableDefines.ColumnInfo<any> | null;
|
|
324
|
+
getParentColumn: (fieldOrColumn: string | VxeTableDefines.ColumnInfo<any> | null) => VxeTableDefines.ColumnInfo<any> | null;
|
|
325
325
|
getTableColumn: () => {
|
|
326
|
-
collectColumn:
|
|
327
|
-
fullColumn:
|
|
328
|
-
visibleColumn:
|
|
329
|
-
tableColumn:
|
|
326
|
+
collectColumn: VxeTableDefines.ColumnInfo<any>[];
|
|
327
|
+
fullColumn: VxeTableDefines.ColumnInfo<any>[];
|
|
328
|
+
visibleColumn: VxeTableDefines.ColumnInfo<any>[];
|
|
329
|
+
tableColumn: VxeTableDefines.ColumnInfo<any>[];
|
|
330
330
|
};
|
|
331
|
-
getFullColumns: () =>
|
|
331
|
+
getFullColumns: () => VxeTableDefines.ColumnInfo<any>[];
|
|
332
332
|
getData: {
|
|
333
333
|
(): any[];
|
|
334
334
|
(rowIndex: number): any;
|
|
@@ -346,12 +346,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
346
346
|
footerData: any[][];
|
|
347
347
|
};
|
|
348
348
|
getFullData: () => any[];
|
|
349
|
-
setColumnFixed: (fieldOrColumns: string | string[] |
|
|
350
|
-
clearColumnFixed: (fieldOrColumns: string | string[] |
|
|
351
|
-
hideColumn: (fieldOrColumns: string | string[] |
|
|
352
|
-
showColumn: (fieldOrColumn: string | string[] |
|
|
353
|
-
setColumnWidth: (fieldOrColumns: string | string[] |
|
|
354
|
-
getColumnWidth: (fieldOrColumn: string |
|
|
349
|
+
setColumnFixed: (fieldOrColumns: string | string[] | VxeTableDefines.ColumnInfo<any> | VxeTableDefines.ColumnInfo<any>[], fixed: import("vxe-table").VxeColumnPropTypes.Fixed) => Promise<void>;
|
|
350
|
+
clearColumnFixed: (fieldOrColumns: string | string[] | VxeTableDefines.ColumnInfo<any> | VxeTableDefines.ColumnInfo<any>[]) => Promise<void>;
|
|
351
|
+
hideColumn: (fieldOrColumns: string | string[] | VxeTableDefines.ColumnInfo<any> | VxeTableDefines.ColumnInfo<any>[]) => Promise<void>;
|
|
352
|
+
showColumn: (fieldOrColumn: string | string[] | VxeTableDefines.ColumnInfo<any> | VxeTableDefines.ColumnInfo<any>[]) => Promise<void>;
|
|
353
|
+
setColumnWidth: (fieldOrColumns: string | string[] | VxeTableDefines.ColumnInfo<any> | VxeTableDefines.ColumnInfo<any>[], width: string | number) => Promise<void>;
|
|
354
|
+
getColumnWidth: (fieldOrColumn: string | VxeTableDefines.ColumnInfo<any>) => number;
|
|
355
355
|
resetColumn: (options?: boolean | {
|
|
356
356
|
visible?: boolean | undefined;
|
|
357
357
|
resizable?: boolean | undefined;
|
|
@@ -395,25 +395,25 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
395
395
|
clearMergeFooterItems: () => Promise<any>;
|
|
396
396
|
clearCurrentRow: () => Promise<any>;
|
|
397
397
|
clearRadioRow: () => Promise<any>;
|
|
398
|
-
getMergeCells: () =>
|
|
399
|
-
getMergeFooterItems: () =>
|
|
400
|
-
getCurrentColumn: () =>
|
|
398
|
+
getMergeCells: () => VxeTableDefines.MergeInfo[];
|
|
399
|
+
getMergeFooterItems: () => VxeTableDefines.MergeInfo[];
|
|
400
|
+
getCurrentColumn: () => VxeTableDefines.ColumnInfo<any> | null;
|
|
401
401
|
getCurrentRecord: () => any;
|
|
402
402
|
getRadioRecord: (isFull?: boolean | undefined) => any;
|
|
403
|
-
setCurrentColumn: (fieldOrColumn: string |
|
|
403
|
+
setCurrentColumn: (fieldOrColumn: string | VxeTableDefines.ColumnInfo<any>) => Promise<void>;
|
|
404
404
|
clearCurrentColumn: () => Promise<void>;
|
|
405
405
|
sort: {
|
|
406
|
-
(field: string, order?:
|
|
407
|
-
(sortConfs:
|
|
408
|
-
(sortConfs:
|
|
406
|
+
(field: string, order?: VxeTablePropTypes.SortOrder | undefined): Promise<void>;
|
|
407
|
+
(sortConfs: VxeTableDefines.SortConfs, order?: VxeTablePropTypes.SortOrder | undefined): Promise<void>;
|
|
408
|
+
(sortConfs: VxeTableDefines.SortConfs[], order?: VxeTablePropTypes.SortOrder | undefined): Promise<void>;
|
|
409
409
|
};
|
|
410
|
-
setSort: (sortConfs:
|
|
411
|
-
clearSort: (fieldOrColumn?: string |
|
|
412
|
-
isSort: (fieldOrColumn: string |
|
|
413
|
-
getSortColumns: () =>
|
|
410
|
+
setSort: (sortConfs: VxeTableDefines.SortConfs | VxeTableDefines.SortConfs[], update?: boolean | undefined) => Promise<void>;
|
|
411
|
+
clearSort: (fieldOrColumn?: string | VxeTableDefines.ColumnInfo<any> | null | undefined) => Promise<void>;
|
|
412
|
+
isSort: (fieldOrColumn: string | VxeTableDefines.ColumnInfo<any>) => boolean;
|
|
413
|
+
getSortColumns: () => VxeTableDefines.SortCheckedParams<any>[];
|
|
414
414
|
closeFilter: () => Promise<any>;
|
|
415
|
-
isFilter: (fieldOrColumn: string |
|
|
416
|
-
isActiveFilterByColumn: (fieldOrColumn: string |
|
|
415
|
+
isFilter: (fieldOrColumn: string | VxeTableDefines.ColumnInfo<any> | null) => boolean;
|
|
416
|
+
isActiveFilterByColumn: (fieldOrColumn: string | VxeTableDefines.ColumnInfo<any> | null) => boolean;
|
|
417
417
|
isRowExpandLoaded: (row: any) => boolean;
|
|
418
418
|
clearRowExpandLoaded: (row: any) => Promise<void>;
|
|
419
419
|
reloadRowExpand: (row: any) => Promise<void>;
|
|
@@ -444,23 +444,23 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
444
444
|
scrollLeft: number;
|
|
445
445
|
};
|
|
446
446
|
scrollTo: (scrollLeft: number | null, scrollTop?: number | null | undefined) => Promise<void>;
|
|
447
|
-
scrollToRow: (row: any, fieldOrColumn?: string |
|
|
448
|
-
scrollToColumn: (fieldOrColumn: string |
|
|
447
|
+
scrollToRow: (row: any, fieldOrColumn?: string | VxeTableDefines.ColumnInfo<any> | undefined) => Promise<any>;
|
|
448
|
+
scrollToColumn: (fieldOrColumn: string | VxeTableDefines.ColumnInfo<any>) => Promise<any>;
|
|
449
449
|
clearScroll: () => Promise<any>;
|
|
450
450
|
updateFooter: () => Promise<any>;
|
|
451
451
|
updateStatus: (params: {
|
|
452
452
|
row: any;
|
|
453
|
-
column:
|
|
453
|
+
column: VxeTableDefines.ColumnInfo<any>;
|
|
454
454
|
}, cellValue?: any) => Promise<any>;
|
|
455
|
-
removeMergeCells: (merges:
|
|
456
|
-
removeMergeFooterItems: (merges:
|
|
457
|
-
setMergeCells: (merges:
|
|
458
|
-
setMergeFooterItems: (merges:
|
|
455
|
+
removeMergeCells: (merges: VxeTableDefines.MergeOptions<any> | VxeTableDefines.MergeOptions<any>[]) => Promise<VxeTableDefines.MergeInfo[]>;
|
|
456
|
+
removeMergeFooterItems: (merges: VxeTableDefines.MergeOptions<any> | VxeTableDefines.MergeOptions<any>[]) => Promise<VxeTableDefines.MergeInfo[]>;
|
|
457
|
+
setMergeCells: (merges: VxeTableDefines.MergeOptions<any> | VxeTableDefines.MergeOptions<any>[]) => Promise<any>;
|
|
458
|
+
setMergeFooterItems: (merges: VxeTableDefines.MergeOptions<any> | VxeTableDefines.MergeOptions<any>[]) => Promise<any>;
|
|
459
459
|
updateCellAreas: () => Promise<void>;
|
|
460
460
|
connect: (toolbar: import("vxe-table").VxeToolbarConstructor | VxeToolbarInstance) => Promise<void>;
|
|
461
461
|
focus: () => Promise<void>;
|
|
462
462
|
blur: () => Promise<void>;
|
|
463
|
-
getCustomStoreData: () =>
|
|
463
|
+
getCustomStoreData: () => VxeTableDefines.CustomStoreData;
|
|
464
464
|
getCellAreas: () => import("vxe-table").VxeTableProDefines.MouseCellArea<any>[];
|
|
465
465
|
getActiveCellArea: () => import("vxe-table").VxeTableProDefines.MouseActiveCellArea<any> | null;
|
|
466
466
|
getCopyCellArea: () => import("vxe-table").VxeTableProDefines.MouseCellArea<any> | null;
|
|
@@ -478,7 +478,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
478
478
|
clearCopyCellArea: () => Promise<any>;
|
|
479
479
|
setCellAreas: (areaConfigs: import("vxe-table").VxeTableProDefines.CellAreaConfig<any>[], activeArea?: {
|
|
480
480
|
area?: number | import("vxe-table").VxeTableProDefines.CellAreaConfig<any> | undefined;
|
|
481
|
-
column?: number |
|
|
481
|
+
column?: number | VxeTableDefines.ColumnInfo<any> | undefined;
|
|
482
482
|
row?: any;
|
|
483
483
|
} | undefined) => Promise<any>;
|
|
484
484
|
setActiveCellArea: (activeArea: import("vxe-table").VxeTableProDefines.ActiveCellAreaConfig<any>) => Promise<any>;
|
|
@@ -488,12 +488,12 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
488
488
|
type?: "" | "find" | "replace" | null | undefined;
|
|
489
489
|
}) => Promise<any>;
|
|
490
490
|
closeFNR: () => Promise<any>;
|
|
491
|
-
openFilter: (fieldOrColumn: string |
|
|
492
|
-
setFilter: (fieldOrColumn: string |
|
|
493
|
-
clearFilter: (fieldOrColumn?: string |
|
|
491
|
+
openFilter: (fieldOrColumn: string | VxeTableDefines.ColumnInfo<any>) => Promise<void>;
|
|
492
|
+
setFilter: (fieldOrColumn: string | VxeTableDefines.ColumnInfo<any>, options: import("vxe-table").VxeColumnPropTypes.FilterItem[], update?: boolean | undefined) => Promise<void>;
|
|
493
|
+
clearFilter: (fieldOrColumn?: string | VxeTableDefines.ColumnInfo<any> | null | undefined) => Promise<void>;
|
|
494
494
|
saveFilterPanel: () => Promise<any>;
|
|
495
495
|
resetFilterPanel: () => Promise<any>;
|
|
496
|
-
getCheckedFilters: () =>
|
|
496
|
+
getCheckedFilters: () => VxeTableDefines.FilterCheckedParams<any>[];
|
|
497
497
|
updateFilterOptionStatus: (item: any, checked: boolean) => Promise<void>;
|
|
498
498
|
closeMenu: () => Promise<any>;
|
|
499
499
|
insert: (records: any) => Promise<{
|
|
@@ -549,7 +549,7 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
549
549
|
row: any;
|
|
550
550
|
rowIndex: number;
|
|
551
551
|
$rowIndex: number;
|
|
552
|
-
column:
|
|
552
|
+
column: VxeTableDefines.ColumnInfo<any>;
|
|
553
553
|
columnIndex: number;
|
|
554
554
|
$columnIndex: number;
|
|
555
555
|
cell: HTMLElement;
|
|
@@ -558,14 +558,14 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
558
558
|
row: any;
|
|
559
559
|
rowIndex: number;
|
|
560
560
|
$rowIndex: number;
|
|
561
|
-
column:
|
|
561
|
+
column: VxeTableDefines.ColumnInfo<any>;
|
|
562
562
|
columnIndex: number;
|
|
563
563
|
$columnIndex: number;
|
|
564
564
|
cell: HTMLElement;
|
|
565
565
|
};
|
|
566
566
|
getSelectedCell: () => {
|
|
567
567
|
row: any;
|
|
568
|
-
column:
|
|
568
|
+
column: VxeTableDefines.ColumnInfo<any>;
|
|
569
569
|
};
|
|
570
570
|
clearActived: (row?: any) => Promise<any>;
|
|
571
571
|
clearEdit: (row?: any) => Promise<any>;
|
|
@@ -573,30 +573,30 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Prop
|
|
|
573
573
|
isActiveByRow: (row: any) => boolean;
|
|
574
574
|
isEditByRow: (row: any) => boolean;
|
|
575
575
|
setActiveRow: (row: any) => Promise<void>;
|
|
576
|
-
setEditRow: (row: any, fieldOrColumn?: string |
|
|
577
|
-
setActiveCell: (row: any, fieldOrColumn: string |
|
|
578
|
-
setEditCell: (row: any, fieldOrColumn: string |
|
|
579
|
-
setSelectCell: (row: any, fieldOrColumn: string |
|
|
580
|
-
openExport: (options?:
|
|
576
|
+
setEditRow: (row: any, fieldOrColumn?: string | VxeTableDefines.ColumnInfo<any> | undefined) => Promise<void>;
|
|
577
|
+
setActiveCell: (row: any, fieldOrColumn: string | VxeTableDefines.ColumnInfo<any>) => Promise<void>;
|
|
578
|
+
setEditCell: (row: any, fieldOrColumn: string | VxeTableDefines.ColumnInfo<any>) => Promise<void>;
|
|
579
|
+
setSelectCell: (row: any, fieldOrColumn: string | VxeTableDefines.ColumnInfo<any>) => Promise<void>;
|
|
580
|
+
openExport: (options?: VxeTablePropTypes.ExportConfig | undefined) => void;
|
|
581
581
|
closeExport: () => Promise<any>;
|
|
582
|
-
exportData: (options?:
|
|
583
|
-
openImport: (options?:
|
|
582
|
+
exportData: (options?: VxeTablePropTypes.ExportConfig | undefined) => Promise<any>;
|
|
583
|
+
openImport: (options?: VxeTablePropTypes.ImportConfig | undefined) => void;
|
|
584
584
|
closeImport: () => Promise<any>;
|
|
585
|
-
importData: (options?:
|
|
586
|
-
importByFile: (file: File, options:
|
|
585
|
+
importData: (options?: VxeTablePropTypes.ImportConfig | undefined) => Promise<any>;
|
|
586
|
+
importByFile: (file: File, options: VxeTablePropTypes.ImportConfig) => Promise<any>;
|
|
587
587
|
saveFile: import("vxe-table").SaveFileFunction;
|
|
588
588
|
readFile: import("vxe-table").ReadFileFunction;
|
|
589
589
|
print: import("vxe-table").PrintFunction;
|
|
590
|
-
getPrintHtml: (options?:
|
|
590
|
+
getPrintHtml: (options?: VxeTablePropTypes.PrintConfig | undefined) => Promise<{
|
|
591
591
|
html: string;
|
|
592
592
|
}>;
|
|
593
|
-
openPrint: (options?:
|
|
593
|
+
openPrint: (options?: VxeTablePropTypes.PrintConfig | undefined) => void;
|
|
594
594
|
closePrint: () => Promise<any>;
|
|
595
|
-
clearValidate: (rows?: any, fieldOrColumn?: string | string[] |
|
|
596
|
-
fullValidate: (rows?: boolean | object | any[] | ((errMap:
|
|
597
|
-
validate: (rows?: boolean | object | any[] | ((errMap?:
|
|
598
|
-
fullValidateField: (rows?: boolean | object | any[] | undefined, fieldOrColumn?: string | string[] |
|
|
599
|
-
validateField: (rows?: boolean | object | any[] | undefined, fieldOrColumn?: string | string[] |
|
|
595
|
+
clearValidate: (rows?: any, fieldOrColumn?: string | string[] | VxeTableDefines.ColumnInfo<any> | VxeTableDefines.ColumnInfo<any>[] | undefined) => Promise<void>;
|
|
596
|
+
fullValidate: (rows?: boolean | object | any[] | ((errMap: VxeTableDefines.ValidatorErrorMapParams<any>) => void) | undefined, callback?: ((errMap: VxeTableDefines.ValidatorErrorMapParams<any>) => void) | undefined) => Promise<VxeTableDefines.ValidatorErrorMapParams<any>>;
|
|
597
|
+
validate: (rows?: boolean | object | any[] | ((errMap?: VxeTableDefines.ValidatorErrorMapParams<any> | undefined) => void) | undefined, callback?: ((errMap?: VxeTableDefines.ValidatorErrorMapParams<any> | undefined) => void) | undefined) => Promise<VxeTableDefines.ValidatorErrorMapParams<any>>;
|
|
598
|
+
fullValidateField: (rows?: boolean | object | any[] | undefined, fieldOrColumn?: string | string[] | VxeTableDefines.ColumnInfo<any> | VxeTableDefines.ColumnInfo<any>[] | undefined) => Promise<VxeTableDefines.ValidatorErrorMapParams<any>>;
|
|
599
|
+
validateField: (rows?: boolean | object | any[] | undefined, fieldOrColumn?: string | string[] | VxeTableDefines.ColumnInfo<any> | VxeTableDefines.ColumnInfo<any>[] | undefined) => Promise<VxeTableDefines.ValidatorErrorMapParams<any>>;
|
|
600
600
|
openCustom: () => Promise<void>;
|
|
601
601
|
closeCustom: () => Promise<void>;
|
|
602
602
|
resetCustom: (options?: boolean | {
|