@wx-design/components 1.4.0-alpha.9 → 1.4.0
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/core/Table/components/TableSet/ColumnSetBody.vue.d.ts +326 -314
- package/es/core/Table/index.vue.d.ts +3 -1
- package/es/index.mjs +3827 -3808
- package/es/style.css +1 -1
- package/lib/core/Table/components/TableSet/ColumnSetBody.vue.d.ts +326 -314
- package/lib/core/Table/index.vue.d.ts +3 -1
- package/lib/index.js +6 -6
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/types/table/table.d.ts +4 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { VxeTableDefines } from 'vxe-table';
|
|
1
|
+
import { VxeTableDefines, VxeTablePropTypes } from 'vxe-table';
|
|
2
2
|
import { VxeTableInstance } from 'vxe-pc-ui';
|
|
3
3
|
import { SabColumnProps } from '../../../../types/table/column';
|
|
4
4
|
type __VLS_Props = VxeTableDefines.CustomSlotParams & {
|
|
@@ -9,118 +9,120 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
9
9
|
$: import('vue').ComponentInternalInstance;
|
|
10
10
|
$data: {};
|
|
11
11
|
$props: {
|
|
12
|
-
readonly size?:
|
|
13
|
-
readonly id?:
|
|
14
|
-
readonly data?:
|
|
15
|
-
readonly height?:
|
|
16
|
-
readonly minHeight?:
|
|
17
|
-
readonly maxHeight?:
|
|
18
|
-
readonly stripe?:
|
|
19
|
-
readonly padding?:
|
|
20
|
-
readonly round?:
|
|
21
|
-
readonly border?:
|
|
22
|
-
readonly loading?:
|
|
23
|
-
readonly align?:
|
|
24
|
-
readonly headerAlign?:
|
|
25
|
-
readonly footerAlign?:
|
|
26
|
-
readonly showHeader?:
|
|
27
|
-
readonly showFooter?:
|
|
28
|
-
readonly footerData?:
|
|
29
|
-
readonly footerMethod?:
|
|
30
|
-
readonly rowClassName?:
|
|
31
|
-
readonly cellClassName?:
|
|
32
|
-
readonly headerRowClassName?:
|
|
33
|
-
readonly headerCellClassName?:
|
|
34
|
-
readonly footerRowClassName?:
|
|
35
|
-
readonly footerCellClassName?:
|
|
36
|
-
readonly cellStyle?:
|
|
37
|
-
readonly rowStyle?:
|
|
38
|
-
readonly headerCellStyle?:
|
|
39
|
-
readonly headerRowStyle?:
|
|
40
|
-
readonly footerRowStyle?:
|
|
41
|
-
readonly footerCellStyle?:
|
|
42
|
-
readonly showCustomHeader?:
|
|
43
|
-
readonly mergeHeaderCells?:
|
|
44
|
-
readonly mergeCells?:
|
|
45
|
-
readonly mergeFooterCells?:
|
|
46
|
-
readonly mergeFooterItems?:
|
|
47
|
-
readonly spanMethod?:
|
|
48
|
-
readonly footerSpanMethod?:
|
|
49
|
-
readonly showOverflow?:
|
|
50
|
-
readonly showHeaderOverflow?:
|
|
51
|
-
readonly showFooterOverflow?:
|
|
52
|
-
readonly keepSource?:
|
|
53
|
-
readonly autoResize?:
|
|
54
|
-
readonly syncResize?:
|
|
55
|
-
readonly columnConfig?:
|
|
56
|
-
readonly rowConfig?:
|
|
57
|
-
readonly cellConfig?:
|
|
58
|
-
readonly headerCellConfig?:
|
|
59
|
-
readonly footerCellConfig?:
|
|
60
|
-
readonly aggregateConfig?:
|
|
61
|
-
readonly rowGroupConfig?:
|
|
62
|
-
readonly currentRowConfig?:
|
|
63
|
-
readonly currentColumnConfig?:
|
|
64
|
-
readonly dragConfig?:
|
|
65
|
-
readonly rowDragConfig?:
|
|
66
|
-
readonly columnDragConfig?:
|
|
67
|
-
readonly customConfig?:
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
readonly
|
|
12
|
+
readonly size?: VxeTablePropTypes.Size | undefined;
|
|
13
|
+
readonly id?: VxeTablePropTypes.ID<VxeTablePropTypes.Row> | undefined;
|
|
14
|
+
readonly data?: VxeTablePropTypes.Data<VxeTablePropTypes.Row> | undefined;
|
|
15
|
+
readonly height?: VxeTablePropTypes.Height | undefined;
|
|
16
|
+
readonly minHeight?: VxeTablePropTypes.MinHeight | undefined;
|
|
17
|
+
readonly maxHeight?: VxeTablePropTypes.MaxHeight | undefined;
|
|
18
|
+
readonly stripe?: VxeTablePropTypes.Stripe | undefined;
|
|
19
|
+
readonly padding?: VxeTablePropTypes.Padding | undefined;
|
|
20
|
+
readonly round?: VxeTablePropTypes.Round | undefined;
|
|
21
|
+
readonly border?: VxeTablePropTypes.Border | undefined;
|
|
22
|
+
readonly loading?: VxeTablePropTypes.Loading | undefined;
|
|
23
|
+
readonly align?: VxeTablePropTypes.Align | undefined;
|
|
24
|
+
readonly headerAlign?: VxeTablePropTypes.HeaderAlign | undefined;
|
|
25
|
+
readonly footerAlign?: VxeTablePropTypes.FooterAlign | undefined;
|
|
26
|
+
readonly showHeader?: VxeTablePropTypes.ShowHeader | undefined;
|
|
27
|
+
readonly showFooter?: VxeTablePropTypes.ShowFooter | undefined;
|
|
28
|
+
readonly footerData?: VxeTablePropTypes.FooterData | undefined;
|
|
29
|
+
readonly footerMethod?: VxeTablePropTypes.FooterMethod<VxeTablePropTypes.Row> | undefined;
|
|
30
|
+
readonly rowClassName?: VxeTablePropTypes.RowClassName<VxeTablePropTypes.Row> | undefined;
|
|
31
|
+
readonly cellClassName?: VxeTablePropTypes.CellClassName<VxeTablePropTypes.Row> | undefined;
|
|
32
|
+
readonly headerRowClassName?: VxeTablePropTypes.HeaderRowClassName<VxeTablePropTypes.Row> | undefined;
|
|
33
|
+
readonly headerCellClassName?: VxeTablePropTypes.HeaderCellClassName<VxeTablePropTypes.Row> | undefined;
|
|
34
|
+
readonly footerRowClassName?: VxeTablePropTypes.FooterRowClassName<VxeTablePropTypes.Row> | undefined;
|
|
35
|
+
readonly footerCellClassName?: VxeTablePropTypes.FooterCellClassName<VxeTablePropTypes.Row> | undefined;
|
|
36
|
+
readonly cellStyle?: VxeTablePropTypes.CellStyle<VxeTablePropTypes.Row> | undefined;
|
|
37
|
+
readonly rowStyle?: VxeTablePropTypes.RowStyle<VxeTablePropTypes.Row> | undefined;
|
|
38
|
+
readonly headerCellStyle?: VxeTablePropTypes.HeaderCellStyle<VxeTablePropTypes.Row> | undefined;
|
|
39
|
+
readonly headerRowStyle?: VxeTablePropTypes.HeaderRowStyle<VxeTablePropTypes.Row> | undefined;
|
|
40
|
+
readonly footerRowStyle?: VxeTablePropTypes.FooterRowStyle<VxeTablePropTypes.Row> | undefined;
|
|
41
|
+
readonly footerCellStyle?: VxeTablePropTypes.FooterCellStyle<VxeTablePropTypes.Row> | undefined;
|
|
42
|
+
readonly showCustomHeader?: VxeTablePropTypes.ShowCustomHeader | undefined;
|
|
43
|
+
readonly mergeHeaderCells?: VxeTablePropTypes.MergeHeaderCells | undefined;
|
|
44
|
+
readonly mergeCells?: VxeTablePropTypes.MergeCells<VxeTablePropTypes.Row> | undefined;
|
|
45
|
+
readonly mergeFooterCells?: VxeTablePropTypes.MergeFooterCells<VxeTablePropTypes.Row> | undefined;
|
|
46
|
+
readonly mergeFooterItems?: VxeTablePropTypes.MergeFooterItems<VxeTablePropTypes.Row> | undefined;
|
|
47
|
+
readonly spanMethod?: VxeTablePropTypes.SpanMethod<VxeTablePropTypes.Row> | undefined;
|
|
48
|
+
readonly footerSpanMethod?: VxeTablePropTypes.FooterSpanMethod<VxeTablePropTypes.Row> | undefined;
|
|
49
|
+
readonly showOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
|
|
50
|
+
readonly showHeaderOverflow?: VxeTablePropTypes.ShowHeaderOverflow | undefined;
|
|
51
|
+
readonly showFooterOverflow?: VxeTablePropTypes.ShowFooterOverflow | undefined;
|
|
52
|
+
readonly keepSource?: VxeTablePropTypes.KeepSource | undefined;
|
|
53
|
+
readonly autoResize?: VxeTablePropTypes.AutoResize | undefined;
|
|
54
|
+
readonly syncResize?: VxeTablePropTypes.SyncResize | undefined;
|
|
55
|
+
readonly columnConfig?: VxeTablePropTypes.ColumnConfig<VxeTablePropTypes.Row> | undefined;
|
|
56
|
+
readonly rowConfig?: VxeTablePropTypes.RowConfig<VxeTablePropTypes.Row> | undefined;
|
|
57
|
+
readonly cellConfig?: VxeTablePropTypes.CellConfig<VxeTablePropTypes.Row> | undefined;
|
|
58
|
+
readonly headerCellConfig?: VxeTablePropTypes.HeaderCellConfig<VxeTablePropTypes.Row> | undefined;
|
|
59
|
+
readonly footerCellConfig?: VxeTablePropTypes.FooterCellConfig<VxeTablePropTypes.Row> | undefined;
|
|
60
|
+
readonly aggregateConfig?: VxeTablePropTypes.AggregateConfig<VxeTablePropTypes.Row> | undefined;
|
|
61
|
+
readonly rowGroupConfig?: VxeTablePropTypes.RowGroupConfig<VxeTablePropTypes.Row> | undefined;
|
|
62
|
+
readonly currentRowConfig?: VxeTablePropTypes.CurrentRowConfig<VxeTablePropTypes.Row> | undefined;
|
|
63
|
+
readonly currentColumnConfig?: VxeTablePropTypes.CurrentColumnConfig<VxeTablePropTypes.Row> | undefined;
|
|
64
|
+
readonly dragConfig?: VxeTablePropTypes.DragConfig<VxeTablePropTypes.Row> | undefined;
|
|
65
|
+
readonly rowDragConfig?: VxeTablePropTypes.RowDragConfig<VxeTablePropTypes.Row> | undefined;
|
|
66
|
+
readonly columnDragConfig?: VxeTablePropTypes.ColumnDragConfig<VxeTablePropTypes.Row> | undefined;
|
|
67
|
+
readonly customConfig?: (VxeTablePropTypes.CustomConfig<VxeTablePropTypes.Row> & {
|
|
68
|
+
useSabModal?: boolean;
|
|
69
|
+
}) | undefined;
|
|
70
|
+
readonly resizeConfig?: VxeTablePropTypes.ResizeConfig | undefined;
|
|
71
|
+
readonly resizableConfig?: VxeTablePropTypes.ResizableConfig<VxeTablePropTypes.Row> | undefined;
|
|
72
|
+
readonly seqConfig?: (VxeTablePropTypes.SeqConfig<VxeTablePropTypes.Row> & {
|
|
71
73
|
clearOtherSelectedWhenClick?: boolean;
|
|
72
74
|
}) | undefined;
|
|
73
|
-
readonly sortConfig?: (
|
|
75
|
+
readonly sortConfig?: (VxeTablePropTypes.SortConfig<VxeTablePropTypes.Row> & {
|
|
74
76
|
enableAll?: boolean;
|
|
75
77
|
}) | undefined;
|
|
76
|
-
readonly filterConfig?:
|
|
77
|
-
readonly radioConfig?:
|
|
78
|
-
readonly checkboxConfig?:
|
|
79
|
-
readonly tooltipConfig?:
|
|
80
|
-
readonly exportConfig?:
|
|
81
|
-
readonly importConfig?:
|
|
82
|
-
readonly printConfig?:
|
|
83
|
-
readonly expandConfig?:
|
|
84
|
-
readonly treeConfig?: (
|
|
78
|
+
readonly filterConfig?: VxeTablePropTypes.FilterConfig<VxeTablePropTypes.Row> | undefined;
|
|
79
|
+
readonly radioConfig?: VxeTablePropTypes.RadioConfig<VxeTablePropTypes.Row> | undefined;
|
|
80
|
+
readonly checkboxConfig?: VxeTablePropTypes.CheckboxConfig<VxeTablePropTypes.Row> | undefined;
|
|
81
|
+
readonly tooltipConfig?: VxeTablePropTypes.TooltipConfig<VxeTablePropTypes.Row> | undefined;
|
|
82
|
+
readonly exportConfig?: VxeTablePropTypes.ExportConfig | undefined;
|
|
83
|
+
readonly importConfig?: VxeTablePropTypes.ImportConfig | undefined;
|
|
84
|
+
readonly printConfig?: VxeTablePropTypes.PrintConfig | undefined;
|
|
85
|
+
readonly expandConfig?: VxeTablePropTypes.ExpandConfig<VxeTablePropTypes.Row> | undefined;
|
|
86
|
+
readonly treeConfig?: (VxeTablePropTypes.TreeConfig<VxeTablePropTypes.Row> & {
|
|
85
87
|
childTransform?: boolean;
|
|
86
88
|
childrenTransformField?: string;
|
|
87
89
|
}) | undefined;
|
|
88
|
-
readonly menuConfig?:
|
|
89
|
-
readonly mouseConfig?:
|
|
90
|
-
readonly areaConfig?:
|
|
91
|
-
readonly fnrConfig?:
|
|
92
|
-
readonly keyboardConfig?:
|
|
93
|
-
readonly clipConfig?:
|
|
94
|
-
readonly editConfig?:
|
|
95
|
-
readonly validConfig?:
|
|
96
|
-
readonly editRules?:
|
|
97
|
-
readonly emptyText?:
|
|
98
|
-
readonly emptyRender?:
|
|
99
|
-
readonly loadingConfig?:
|
|
100
|
-
readonly scrollX?:
|
|
101
|
-
readonly scrollY?:
|
|
102
|
-
readonly virtualXConfig?:
|
|
103
|
-
readonly virtualYConfig?:
|
|
104
|
-
readonly scrollbarConfig?:
|
|
105
|
-
readonly params?:
|
|
106
|
-
readonly resizable?:
|
|
107
|
-
readonly highlightCurrentRow?:
|
|
108
|
-
readonly highlightHoverRow?:
|
|
109
|
-
readonly highlightCurrentColumn?:
|
|
110
|
-
readonly highlightHoverColumn?:
|
|
111
|
-
readonly highlightCell?:
|
|
112
|
-
readonly columnKey?:
|
|
113
|
-
readonly rowKey?:
|
|
114
|
-
readonly rowId?:
|
|
115
|
-
readonly fit?:
|
|
116
|
-
readonly animat?:
|
|
117
|
-
readonly delayHover?:
|
|
90
|
+
readonly menuConfig?: VxeTablePropTypes.MenuConfig<VxeTablePropTypes.Row> | undefined;
|
|
91
|
+
readonly mouseConfig?: VxeTablePropTypes.MouseConfig | undefined;
|
|
92
|
+
readonly areaConfig?: VxeTablePropTypes.AreaConfig<VxeTablePropTypes.Row> | undefined;
|
|
93
|
+
readonly fnrConfig?: VxeTablePropTypes.FnrConfig<VxeTablePropTypes.Row> | undefined;
|
|
94
|
+
readonly keyboardConfig?: VxeTablePropTypes.KeyboardConfig<VxeTablePropTypes.Row> | undefined;
|
|
95
|
+
readonly clipConfig?: VxeTablePropTypes.ClipConfig<VxeTablePropTypes.Row> | undefined;
|
|
96
|
+
readonly editConfig?: VxeTablePropTypes.EditConfig<VxeTablePropTypes.Row> | undefined;
|
|
97
|
+
readonly validConfig?: VxeTablePropTypes.ValidConfig<VxeTablePropTypes.Row> | undefined;
|
|
98
|
+
readonly editRules?: VxeTablePropTypes.EditRules<VxeTablePropTypes.Row> | undefined;
|
|
99
|
+
readonly emptyText?: VxeTablePropTypes.EmptyText | undefined;
|
|
100
|
+
readonly emptyRender?: VxeTablePropTypes.EmptyRender | undefined;
|
|
101
|
+
readonly loadingConfig?: VxeTablePropTypes.LoadingConfig | undefined;
|
|
102
|
+
readonly scrollX?: VxeTablePropTypes.ScrollX | undefined;
|
|
103
|
+
readonly scrollY?: VxeTablePropTypes.ScrollY | undefined;
|
|
104
|
+
readonly virtualXConfig?: VxeTablePropTypes.VirtualXConfig | undefined;
|
|
105
|
+
readonly virtualYConfig?: VxeTablePropTypes.VirtualYConfig | undefined;
|
|
106
|
+
readonly scrollbarConfig?: VxeTablePropTypes.ScrollbarConfig | undefined;
|
|
107
|
+
readonly params?: VxeTablePropTypes.Params;
|
|
108
|
+
readonly resizable?: VxeTablePropTypes.Resizable | undefined;
|
|
109
|
+
readonly highlightCurrentRow?: VxeTablePropTypes.HighlightCurrentRow | undefined;
|
|
110
|
+
readonly highlightHoverRow?: VxeTablePropTypes.HighlightHoverRow | undefined;
|
|
111
|
+
readonly highlightCurrentColumn?: VxeTablePropTypes.HighlightCurrentColumn | undefined;
|
|
112
|
+
readonly highlightHoverColumn?: VxeTablePropTypes.HighlightHoverColumn | undefined;
|
|
113
|
+
readonly highlightCell?: VxeTablePropTypes.HighlightCell | undefined;
|
|
114
|
+
readonly columnKey?: VxeTablePropTypes.ColumnKey | undefined;
|
|
115
|
+
readonly rowKey?: VxeTablePropTypes.RowKey | undefined;
|
|
116
|
+
readonly rowId?: VxeTablePropTypes.RowId | undefined;
|
|
117
|
+
readonly fit?: VxeTablePropTypes.Fit | undefined;
|
|
118
|
+
readonly animat?: VxeTablePropTypes.Animat | undefined;
|
|
119
|
+
readonly delayHover?: VxeTablePropTypes.DelayHover | undefined;
|
|
118
120
|
readonly name?: string | undefined;
|
|
119
121
|
readonly class?: any;
|
|
120
122
|
readonly wrapClassName?: any;
|
|
121
|
-
readonly columns?: SabColumnProps<
|
|
123
|
+
readonly columns?: SabColumnProps<VxeTablePropTypes.Row>[] | undefined;
|
|
122
124
|
readonly editable?: boolean | undefined;
|
|
123
|
-
readonly checkboxRecords?:
|
|
125
|
+
readonly checkboxRecords?: VxeTablePropTypes.Row[] | undefined;
|
|
124
126
|
readonly withSeq?: boolean | undefined;
|
|
125
127
|
readonly withCheckbox?: boolean | undefined;
|
|
126
128
|
readonly headerFilterConfig?: import('../../../../types/table/table').SabHeaderFilterProps | undefined;
|
|
@@ -150,13 +152,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
150
152
|
$host: Element | null;
|
|
151
153
|
$emit: (event: string, ...args: any[]) => void;
|
|
152
154
|
$el: HTMLDivElement;
|
|
153
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('vxe-table').VxeTableProps<
|
|
155
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vxe-table').VxeTableProps<VxeTablePropTypes.Row> & {
|
|
154
156
|
name?: string;
|
|
155
157
|
class?: any;
|
|
156
158
|
wrapClassName?: any;
|
|
157
|
-
columns?: SabColumnProps<
|
|
159
|
+
columns?: SabColumnProps<VxeTablePropTypes.Row>[] | undefined;
|
|
158
160
|
editable?: boolean;
|
|
159
|
-
checkboxRecords?:
|
|
161
|
+
checkboxRecords?: VxeTablePropTypes.Row[] | undefined;
|
|
160
162
|
withSeq?: boolean;
|
|
161
163
|
seqConfig?: {
|
|
162
164
|
clearOtherSelectedWhenClick?: boolean;
|
|
@@ -168,14 +170,17 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
168
170
|
autoColumnWidth?: boolean;
|
|
169
171
|
rowBackgroundHighlight?: boolean;
|
|
170
172
|
tableSetConfig?: Partial<import('../../../../types/table/table-set').TableSetProps>;
|
|
171
|
-
sortConfig?: (
|
|
173
|
+
sortConfig?: (VxeTablePropTypes.SortConfig<VxeTablePropTypes.Row> & {
|
|
172
174
|
enableAll?: boolean;
|
|
173
175
|
}) | undefined;
|
|
174
|
-
treeConfig?: (
|
|
176
|
+
treeConfig?: (VxeTablePropTypes.TreeConfig<VxeTablePropTypes.Row> & {
|
|
175
177
|
childTransform?: boolean;
|
|
176
178
|
childrenTransformField?: string;
|
|
177
179
|
}) | undefined;
|
|
178
180
|
reloadWithDestroy?: boolean;
|
|
181
|
+
customConfig?: (VxeTablePropTypes.CustomConfig<VxeTablePropTypes.Row> & {
|
|
182
|
+
useSabModal?: boolean;
|
|
183
|
+
}) | undefined;
|
|
179
184
|
}> & Readonly<{}>, {
|
|
180
185
|
getInstance: () => import('vxe-table').VxeTableInstance | undefined;
|
|
181
186
|
reloadRow: (rows: any | any[]) => void;
|
|
@@ -183,120 +188,122 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
183
188
|
clearFilter(fieldOrColumn?: import("vxe-table").VxeColumnPropTypes.Field | VxeTableDefines.ColumnInfo<any> | null): void;
|
|
184
189
|
refreshData: () => void;
|
|
185
190
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
186
|
-
params:
|
|
191
|
+
params: VxeTablePropTypes.Params;
|
|
187
192
|
name: string;
|
|
188
|
-
id:
|
|
189
|
-
size:
|
|
190
|
-
border:
|
|
191
|
-
loading:
|
|
192
|
-
round:
|
|
193
|
-
align:
|
|
194
|
-
maxHeight:
|
|
195
|
-
data:
|
|
193
|
+
id: VxeTablePropTypes.ID<VxeTablePropTypes.Row>;
|
|
194
|
+
size: VxeTablePropTypes.Size;
|
|
195
|
+
border: VxeTablePropTypes.Border;
|
|
196
|
+
loading: VxeTablePropTypes.Loading;
|
|
197
|
+
round: VxeTablePropTypes.Round;
|
|
198
|
+
align: VxeTablePropTypes.Align;
|
|
199
|
+
maxHeight: VxeTablePropTypes.MaxHeight;
|
|
200
|
+
data: VxeTablePropTypes.Data<VxeTablePropTypes.Row>;
|
|
196
201
|
class: any;
|
|
197
|
-
height:
|
|
202
|
+
height: VxeTablePropTypes.Height;
|
|
198
203
|
headerFilterConfig: import('../../../../types/table/table').SabHeaderFilterProps;
|
|
199
|
-
minHeight:
|
|
200
|
-
stripe:
|
|
201
|
-
padding:
|
|
202
|
-
headerAlign:
|
|
203
|
-
footerAlign:
|
|
204
|
-
showHeader:
|
|
205
|
-
showFooter:
|
|
206
|
-
footerData:
|
|
207
|
-
footerMethod:
|
|
208
|
-
rowClassName:
|
|
209
|
-
cellClassName:
|
|
210
|
-
headerRowClassName:
|
|
211
|
-
headerCellClassName:
|
|
212
|
-
footerRowClassName:
|
|
213
|
-
footerCellClassName:
|
|
214
|
-
cellStyle:
|
|
215
|
-
rowStyle:
|
|
216
|
-
headerCellStyle:
|
|
217
|
-
headerRowStyle:
|
|
218
|
-
footerRowStyle:
|
|
219
|
-
footerCellStyle:
|
|
220
|
-
showCustomHeader:
|
|
221
|
-
mergeHeaderCells:
|
|
222
|
-
mergeCells:
|
|
223
|
-
mergeFooterCells:
|
|
224
|
-
mergeFooterItems:
|
|
225
|
-
spanMethod:
|
|
226
|
-
footerSpanMethod:
|
|
227
|
-
showOverflow:
|
|
228
|
-
showHeaderOverflow:
|
|
229
|
-
showFooterOverflow:
|
|
230
|
-
keepSource:
|
|
231
|
-
autoResize:
|
|
232
|
-
syncResize:
|
|
233
|
-
columnConfig:
|
|
234
|
-
rowConfig:
|
|
235
|
-
cellConfig:
|
|
236
|
-
headerCellConfig:
|
|
237
|
-
footerCellConfig:
|
|
238
|
-
aggregateConfig:
|
|
239
|
-
rowGroupConfig:
|
|
240
|
-
currentRowConfig:
|
|
241
|
-
currentColumnConfig:
|
|
242
|
-
dragConfig:
|
|
243
|
-
rowDragConfig:
|
|
244
|
-
columnDragConfig:
|
|
245
|
-
customConfig:
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
204
|
+
minHeight: VxeTablePropTypes.MinHeight;
|
|
205
|
+
stripe: VxeTablePropTypes.Stripe;
|
|
206
|
+
padding: VxeTablePropTypes.Padding;
|
|
207
|
+
headerAlign: VxeTablePropTypes.HeaderAlign;
|
|
208
|
+
footerAlign: VxeTablePropTypes.FooterAlign;
|
|
209
|
+
showHeader: VxeTablePropTypes.ShowHeader;
|
|
210
|
+
showFooter: VxeTablePropTypes.ShowFooter;
|
|
211
|
+
footerData: VxeTablePropTypes.FooterData;
|
|
212
|
+
footerMethod: VxeTablePropTypes.FooterMethod<VxeTablePropTypes.Row>;
|
|
213
|
+
rowClassName: VxeTablePropTypes.RowClassName<VxeTablePropTypes.Row>;
|
|
214
|
+
cellClassName: VxeTablePropTypes.CellClassName<VxeTablePropTypes.Row>;
|
|
215
|
+
headerRowClassName: VxeTablePropTypes.HeaderRowClassName<VxeTablePropTypes.Row>;
|
|
216
|
+
headerCellClassName: VxeTablePropTypes.HeaderCellClassName<VxeTablePropTypes.Row>;
|
|
217
|
+
footerRowClassName: VxeTablePropTypes.FooterRowClassName<VxeTablePropTypes.Row>;
|
|
218
|
+
footerCellClassName: VxeTablePropTypes.FooterCellClassName<VxeTablePropTypes.Row>;
|
|
219
|
+
cellStyle: VxeTablePropTypes.CellStyle<VxeTablePropTypes.Row>;
|
|
220
|
+
rowStyle: VxeTablePropTypes.RowStyle<VxeTablePropTypes.Row>;
|
|
221
|
+
headerCellStyle: VxeTablePropTypes.HeaderCellStyle<VxeTablePropTypes.Row>;
|
|
222
|
+
headerRowStyle: VxeTablePropTypes.HeaderRowStyle<VxeTablePropTypes.Row>;
|
|
223
|
+
footerRowStyle: VxeTablePropTypes.FooterRowStyle<VxeTablePropTypes.Row>;
|
|
224
|
+
footerCellStyle: VxeTablePropTypes.FooterCellStyle<VxeTablePropTypes.Row>;
|
|
225
|
+
showCustomHeader: VxeTablePropTypes.ShowCustomHeader;
|
|
226
|
+
mergeHeaderCells: VxeTablePropTypes.MergeHeaderCells;
|
|
227
|
+
mergeCells: VxeTablePropTypes.MergeCells<VxeTablePropTypes.Row>;
|
|
228
|
+
mergeFooterCells: VxeTablePropTypes.MergeFooterCells<VxeTablePropTypes.Row>;
|
|
229
|
+
mergeFooterItems: VxeTablePropTypes.MergeFooterItems<VxeTablePropTypes.Row>;
|
|
230
|
+
spanMethod: VxeTablePropTypes.SpanMethod<VxeTablePropTypes.Row>;
|
|
231
|
+
footerSpanMethod: VxeTablePropTypes.FooterSpanMethod<VxeTablePropTypes.Row>;
|
|
232
|
+
showOverflow: VxeTablePropTypes.ShowOverflow;
|
|
233
|
+
showHeaderOverflow: VxeTablePropTypes.ShowHeaderOverflow;
|
|
234
|
+
showFooterOverflow: VxeTablePropTypes.ShowFooterOverflow;
|
|
235
|
+
keepSource: VxeTablePropTypes.KeepSource;
|
|
236
|
+
autoResize: VxeTablePropTypes.AutoResize;
|
|
237
|
+
syncResize: VxeTablePropTypes.SyncResize;
|
|
238
|
+
columnConfig: VxeTablePropTypes.ColumnConfig<VxeTablePropTypes.Row>;
|
|
239
|
+
rowConfig: VxeTablePropTypes.RowConfig<VxeTablePropTypes.Row>;
|
|
240
|
+
cellConfig: VxeTablePropTypes.CellConfig<VxeTablePropTypes.Row>;
|
|
241
|
+
headerCellConfig: VxeTablePropTypes.HeaderCellConfig<VxeTablePropTypes.Row>;
|
|
242
|
+
footerCellConfig: VxeTablePropTypes.FooterCellConfig<VxeTablePropTypes.Row>;
|
|
243
|
+
aggregateConfig: VxeTablePropTypes.AggregateConfig<VxeTablePropTypes.Row>;
|
|
244
|
+
rowGroupConfig: VxeTablePropTypes.RowGroupConfig<VxeTablePropTypes.Row>;
|
|
245
|
+
currentRowConfig: VxeTablePropTypes.CurrentRowConfig<VxeTablePropTypes.Row>;
|
|
246
|
+
currentColumnConfig: VxeTablePropTypes.CurrentColumnConfig<VxeTablePropTypes.Row>;
|
|
247
|
+
dragConfig: VxeTablePropTypes.DragConfig<VxeTablePropTypes.Row>;
|
|
248
|
+
rowDragConfig: VxeTablePropTypes.RowDragConfig<VxeTablePropTypes.Row>;
|
|
249
|
+
columnDragConfig: VxeTablePropTypes.ColumnDragConfig<VxeTablePropTypes.Row>;
|
|
250
|
+
customConfig: VxeTablePropTypes.CustomConfig<VxeTablePropTypes.Row> & {
|
|
251
|
+
useSabModal?: boolean;
|
|
252
|
+
};
|
|
253
|
+
resizeConfig: VxeTablePropTypes.ResizeConfig;
|
|
254
|
+
resizableConfig: VxeTablePropTypes.ResizableConfig<VxeTablePropTypes.Row>;
|
|
255
|
+
seqConfig: VxeTablePropTypes.SeqConfig<VxeTablePropTypes.Row> & {
|
|
249
256
|
clearOtherSelectedWhenClick?: boolean;
|
|
250
257
|
};
|
|
251
|
-
sortConfig:
|
|
258
|
+
sortConfig: VxeTablePropTypes.SortConfig<VxeTablePropTypes.Row> & {
|
|
252
259
|
enableAll?: boolean;
|
|
253
260
|
};
|
|
254
|
-
filterConfig:
|
|
255
|
-
radioConfig:
|
|
256
|
-
checkboxConfig:
|
|
257
|
-
tooltipConfig:
|
|
258
|
-
exportConfig:
|
|
259
|
-
importConfig:
|
|
260
|
-
printConfig:
|
|
261
|
-
expandConfig:
|
|
262
|
-
treeConfig:
|
|
261
|
+
filterConfig: VxeTablePropTypes.FilterConfig<VxeTablePropTypes.Row>;
|
|
262
|
+
radioConfig: VxeTablePropTypes.RadioConfig<VxeTablePropTypes.Row>;
|
|
263
|
+
checkboxConfig: VxeTablePropTypes.CheckboxConfig<VxeTablePropTypes.Row>;
|
|
264
|
+
tooltipConfig: VxeTablePropTypes.TooltipConfig<VxeTablePropTypes.Row>;
|
|
265
|
+
exportConfig: VxeTablePropTypes.ExportConfig;
|
|
266
|
+
importConfig: VxeTablePropTypes.ImportConfig;
|
|
267
|
+
printConfig: VxeTablePropTypes.PrintConfig;
|
|
268
|
+
expandConfig: VxeTablePropTypes.ExpandConfig<VxeTablePropTypes.Row>;
|
|
269
|
+
treeConfig: VxeTablePropTypes.TreeConfig<VxeTablePropTypes.Row> & {
|
|
263
270
|
childTransform?: boolean;
|
|
264
271
|
childrenTransformField?: string;
|
|
265
272
|
};
|
|
266
|
-
menuConfig:
|
|
267
|
-
mouseConfig:
|
|
268
|
-
areaConfig:
|
|
269
|
-
fnrConfig:
|
|
270
|
-
keyboardConfig:
|
|
271
|
-
clipConfig:
|
|
272
|
-
editConfig:
|
|
273
|
-
validConfig:
|
|
274
|
-
editRules:
|
|
275
|
-
emptyText:
|
|
276
|
-
emptyRender:
|
|
277
|
-
loadingConfig:
|
|
278
|
-
scrollX:
|
|
279
|
-
scrollY:
|
|
280
|
-
virtualXConfig:
|
|
281
|
-
virtualYConfig:
|
|
282
|
-
scrollbarConfig:
|
|
283
|
-
resizable:
|
|
284
|
-
highlightCurrentRow:
|
|
285
|
-
highlightHoverRow:
|
|
286
|
-
highlightCurrentColumn:
|
|
287
|
-
highlightHoverColumn:
|
|
288
|
-
highlightCell:
|
|
289
|
-
columnKey:
|
|
290
|
-
rowKey:
|
|
291
|
-
rowId:
|
|
292
|
-
fit:
|
|
293
|
-
animat:
|
|
294
|
-
delayHover:
|
|
295
|
-
columns: SabColumnProps<
|
|
273
|
+
menuConfig: VxeTablePropTypes.MenuConfig<VxeTablePropTypes.Row>;
|
|
274
|
+
mouseConfig: VxeTablePropTypes.MouseConfig;
|
|
275
|
+
areaConfig: VxeTablePropTypes.AreaConfig<VxeTablePropTypes.Row>;
|
|
276
|
+
fnrConfig: VxeTablePropTypes.FnrConfig<VxeTablePropTypes.Row>;
|
|
277
|
+
keyboardConfig: VxeTablePropTypes.KeyboardConfig<VxeTablePropTypes.Row>;
|
|
278
|
+
clipConfig: VxeTablePropTypes.ClipConfig<VxeTablePropTypes.Row>;
|
|
279
|
+
editConfig: VxeTablePropTypes.EditConfig<VxeTablePropTypes.Row>;
|
|
280
|
+
validConfig: VxeTablePropTypes.ValidConfig<VxeTablePropTypes.Row>;
|
|
281
|
+
editRules: VxeTablePropTypes.EditRules<VxeTablePropTypes.Row>;
|
|
282
|
+
emptyText: VxeTablePropTypes.EmptyText;
|
|
283
|
+
emptyRender: VxeTablePropTypes.EmptyRender;
|
|
284
|
+
loadingConfig: VxeTablePropTypes.LoadingConfig;
|
|
285
|
+
scrollX: VxeTablePropTypes.ScrollX;
|
|
286
|
+
scrollY: VxeTablePropTypes.ScrollY;
|
|
287
|
+
virtualXConfig: VxeTablePropTypes.VirtualXConfig;
|
|
288
|
+
virtualYConfig: VxeTablePropTypes.VirtualYConfig;
|
|
289
|
+
scrollbarConfig: VxeTablePropTypes.ScrollbarConfig;
|
|
290
|
+
resizable: VxeTablePropTypes.Resizable;
|
|
291
|
+
highlightCurrentRow: VxeTablePropTypes.HighlightCurrentRow;
|
|
292
|
+
highlightHoverRow: VxeTablePropTypes.HighlightHoverRow;
|
|
293
|
+
highlightCurrentColumn: VxeTablePropTypes.HighlightCurrentColumn;
|
|
294
|
+
highlightHoverColumn: VxeTablePropTypes.HighlightHoverColumn;
|
|
295
|
+
highlightCell: VxeTablePropTypes.HighlightCell;
|
|
296
|
+
columnKey: VxeTablePropTypes.ColumnKey;
|
|
297
|
+
rowKey: VxeTablePropTypes.RowKey;
|
|
298
|
+
rowId: VxeTablePropTypes.RowId;
|
|
299
|
+
fit: VxeTablePropTypes.Fit;
|
|
300
|
+
animat: VxeTablePropTypes.Animat;
|
|
301
|
+
delayHover: VxeTablePropTypes.DelayHover;
|
|
302
|
+
columns: SabColumnProps<VxeTablePropTypes.Row>[];
|
|
296
303
|
tableSetConfig: Partial<import('../../../../types/table/table-set').TableSetProps>;
|
|
297
304
|
editable: boolean;
|
|
298
305
|
wrapClassName: any;
|
|
299
|
-
checkboxRecords:
|
|
306
|
+
checkboxRecords: VxeTablePropTypes.Row[];
|
|
300
307
|
withSeq: boolean;
|
|
301
308
|
withCheckbox: boolean;
|
|
302
309
|
headerFilterModel: any;
|
|
@@ -325,120 +332,122 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
325
332
|
$nextTick: typeof import('vue').nextTick;
|
|
326
333
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
327
334
|
} & Readonly<{
|
|
328
|
-
params:
|
|
335
|
+
params: VxeTablePropTypes.Params;
|
|
329
336
|
name: string;
|
|
330
|
-
id:
|
|
331
|
-
size:
|
|
332
|
-
border:
|
|
333
|
-
loading:
|
|
334
|
-
round:
|
|
335
|
-
align:
|
|
336
|
-
maxHeight:
|
|
337
|
-
data:
|
|
337
|
+
id: VxeTablePropTypes.ID<VxeTablePropTypes.Row>;
|
|
338
|
+
size: VxeTablePropTypes.Size;
|
|
339
|
+
border: VxeTablePropTypes.Border;
|
|
340
|
+
loading: VxeTablePropTypes.Loading;
|
|
341
|
+
round: VxeTablePropTypes.Round;
|
|
342
|
+
align: VxeTablePropTypes.Align;
|
|
343
|
+
maxHeight: VxeTablePropTypes.MaxHeight;
|
|
344
|
+
data: VxeTablePropTypes.Data<VxeTablePropTypes.Row>;
|
|
338
345
|
class: any;
|
|
339
|
-
height:
|
|
346
|
+
height: VxeTablePropTypes.Height;
|
|
340
347
|
headerFilterConfig: import('../../../../types/table/table').SabHeaderFilterProps;
|
|
341
|
-
minHeight:
|
|
342
|
-
stripe:
|
|
343
|
-
padding:
|
|
344
|
-
headerAlign:
|
|
345
|
-
footerAlign:
|
|
346
|
-
showHeader:
|
|
347
|
-
showFooter:
|
|
348
|
-
footerData:
|
|
349
|
-
footerMethod:
|
|
350
|
-
rowClassName:
|
|
351
|
-
cellClassName:
|
|
352
|
-
headerRowClassName:
|
|
353
|
-
headerCellClassName:
|
|
354
|
-
footerRowClassName:
|
|
355
|
-
footerCellClassName:
|
|
356
|
-
cellStyle:
|
|
357
|
-
rowStyle:
|
|
358
|
-
headerCellStyle:
|
|
359
|
-
headerRowStyle:
|
|
360
|
-
footerRowStyle:
|
|
361
|
-
footerCellStyle:
|
|
362
|
-
showCustomHeader:
|
|
363
|
-
mergeHeaderCells:
|
|
364
|
-
mergeCells:
|
|
365
|
-
mergeFooterCells:
|
|
366
|
-
mergeFooterItems:
|
|
367
|
-
spanMethod:
|
|
368
|
-
footerSpanMethod:
|
|
369
|
-
showOverflow:
|
|
370
|
-
showHeaderOverflow:
|
|
371
|
-
showFooterOverflow:
|
|
372
|
-
keepSource:
|
|
373
|
-
autoResize:
|
|
374
|
-
syncResize:
|
|
375
|
-
columnConfig:
|
|
376
|
-
rowConfig:
|
|
377
|
-
cellConfig:
|
|
378
|
-
headerCellConfig:
|
|
379
|
-
footerCellConfig:
|
|
380
|
-
aggregateConfig:
|
|
381
|
-
rowGroupConfig:
|
|
382
|
-
currentRowConfig:
|
|
383
|
-
currentColumnConfig:
|
|
384
|
-
dragConfig:
|
|
385
|
-
rowDragConfig:
|
|
386
|
-
columnDragConfig:
|
|
387
|
-
customConfig:
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
348
|
+
minHeight: VxeTablePropTypes.MinHeight;
|
|
349
|
+
stripe: VxeTablePropTypes.Stripe;
|
|
350
|
+
padding: VxeTablePropTypes.Padding;
|
|
351
|
+
headerAlign: VxeTablePropTypes.HeaderAlign;
|
|
352
|
+
footerAlign: VxeTablePropTypes.FooterAlign;
|
|
353
|
+
showHeader: VxeTablePropTypes.ShowHeader;
|
|
354
|
+
showFooter: VxeTablePropTypes.ShowFooter;
|
|
355
|
+
footerData: VxeTablePropTypes.FooterData;
|
|
356
|
+
footerMethod: VxeTablePropTypes.FooterMethod<VxeTablePropTypes.Row>;
|
|
357
|
+
rowClassName: VxeTablePropTypes.RowClassName<VxeTablePropTypes.Row>;
|
|
358
|
+
cellClassName: VxeTablePropTypes.CellClassName<VxeTablePropTypes.Row>;
|
|
359
|
+
headerRowClassName: VxeTablePropTypes.HeaderRowClassName<VxeTablePropTypes.Row>;
|
|
360
|
+
headerCellClassName: VxeTablePropTypes.HeaderCellClassName<VxeTablePropTypes.Row>;
|
|
361
|
+
footerRowClassName: VxeTablePropTypes.FooterRowClassName<VxeTablePropTypes.Row>;
|
|
362
|
+
footerCellClassName: VxeTablePropTypes.FooterCellClassName<VxeTablePropTypes.Row>;
|
|
363
|
+
cellStyle: VxeTablePropTypes.CellStyle<VxeTablePropTypes.Row>;
|
|
364
|
+
rowStyle: VxeTablePropTypes.RowStyle<VxeTablePropTypes.Row>;
|
|
365
|
+
headerCellStyle: VxeTablePropTypes.HeaderCellStyle<VxeTablePropTypes.Row>;
|
|
366
|
+
headerRowStyle: VxeTablePropTypes.HeaderRowStyle<VxeTablePropTypes.Row>;
|
|
367
|
+
footerRowStyle: VxeTablePropTypes.FooterRowStyle<VxeTablePropTypes.Row>;
|
|
368
|
+
footerCellStyle: VxeTablePropTypes.FooterCellStyle<VxeTablePropTypes.Row>;
|
|
369
|
+
showCustomHeader: VxeTablePropTypes.ShowCustomHeader;
|
|
370
|
+
mergeHeaderCells: VxeTablePropTypes.MergeHeaderCells;
|
|
371
|
+
mergeCells: VxeTablePropTypes.MergeCells<VxeTablePropTypes.Row>;
|
|
372
|
+
mergeFooterCells: VxeTablePropTypes.MergeFooterCells<VxeTablePropTypes.Row>;
|
|
373
|
+
mergeFooterItems: VxeTablePropTypes.MergeFooterItems<VxeTablePropTypes.Row>;
|
|
374
|
+
spanMethod: VxeTablePropTypes.SpanMethod<VxeTablePropTypes.Row>;
|
|
375
|
+
footerSpanMethod: VxeTablePropTypes.FooterSpanMethod<VxeTablePropTypes.Row>;
|
|
376
|
+
showOverflow: VxeTablePropTypes.ShowOverflow;
|
|
377
|
+
showHeaderOverflow: VxeTablePropTypes.ShowHeaderOverflow;
|
|
378
|
+
showFooterOverflow: VxeTablePropTypes.ShowFooterOverflow;
|
|
379
|
+
keepSource: VxeTablePropTypes.KeepSource;
|
|
380
|
+
autoResize: VxeTablePropTypes.AutoResize;
|
|
381
|
+
syncResize: VxeTablePropTypes.SyncResize;
|
|
382
|
+
columnConfig: VxeTablePropTypes.ColumnConfig<VxeTablePropTypes.Row>;
|
|
383
|
+
rowConfig: VxeTablePropTypes.RowConfig<VxeTablePropTypes.Row>;
|
|
384
|
+
cellConfig: VxeTablePropTypes.CellConfig<VxeTablePropTypes.Row>;
|
|
385
|
+
headerCellConfig: VxeTablePropTypes.HeaderCellConfig<VxeTablePropTypes.Row>;
|
|
386
|
+
footerCellConfig: VxeTablePropTypes.FooterCellConfig<VxeTablePropTypes.Row>;
|
|
387
|
+
aggregateConfig: VxeTablePropTypes.AggregateConfig<VxeTablePropTypes.Row>;
|
|
388
|
+
rowGroupConfig: VxeTablePropTypes.RowGroupConfig<VxeTablePropTypes.Row>;
|
|
389
|
+
currentRowConfig: VxeTablePropTypes.CurrentRowConfig<VxeTablePropTypes.Row>;
|
|
390
|
+
currentColumnConfig: VxeTablePropTypes.CurrentColumnConfig<VxeTablePropTypes.Row>;
|
|
391
|
+
dragConfig: VxeTablePropTypes.DragConfig<VxeTablePropTypes.Row>;
|
|
392
|
+
rowDragConfig: VxeTablePropTypes.RowDragConfig<VxeTablePropTypes.Row>;
|
|
393
|
+
columnDragConfig: VxeTablePropTypes.ColumnDragConfig<VxeTablePropTypes.Row>;
|
|
394
|
+
customConfig: VxeTablePropTypes.CustomConfig<VxeTablePropTypes.Row> & {
|
|
395
|
+
useSabModal?: boolean;
|
|
396
|
+
};
|
|
397
|
+
resizeConfig: VxeTablePropTypes.ResizeConfig;
|
|
398
|
+
resizableConfig: VxeTablePropTypes.ResizableConfig<VxeTablePropTypes.Row>;
|
|
399
|
+
seqConfig: VxeTablePropTypes.SeqConfig<VxeTablePropTypes.Row> & {
|
|
391
400
|
clearOtherSelectedWhenClick?: boolean;
|
|
392
401
|
};
|
|
393
|
-
sortConfig:
|
|
402
|
+
sortConfig: VxeTablePropTypes.SortConfig<VxeTablePropTypes.Row> & {
|
|
394
403
|
enableAll?: boolean;
|
|
395
404
|
};
|
|
396
|
-
filterConfig:
|
|
397
|
-
radioConfig:
|
|
398
|
-
checkboxConfig:
|
|
399
|
-
tooltipConfig:
|
|
400
|
-
exportConfig:
|
|
401
|
-
importConfig:
|
|
402
|
-
printConfig:
|
|
403
|
-
expandConfig:
|
|
404
|
-
treeConfig:
|
|
405
|
+
filterConfig: VxeTablePropTypes.FilterConfig<VxeTablePropTypes.Row>;
|
|
406
|
+
radioConfig: VxeTablePropTypes.RadioConfig<VxeTablePropTypes.Row>;
|
|
407
|
+
checkboxConfig: VxeTablePropTypes.CheckboxConfig<VxeTablePropTypes.Row>;
|
|
408
|
+
tooltipConfig: VxeTablePropTypes.TooltipConfig<VxeTablePropTypes.Row>;
|
|
409
|
+
exportConfig: VxeTablePropTypes.ExportConfig;
|
|
410
|
+
importConfig: VxeTablePropTypes.ImportConfig;
|
|
411
|
+
printConfig: VxeTablePropTypes.PrintConfig;
|
|
412
|
+
expandConfig: VxeTablePropTypes.ExpandConfig<VxeTablePropTypes.Row>;
|
|
413
|
+
treeConfig: VxeTablePropTypes.TreeConfig<VxeTablePropTypes.Row> & {
|
|
405
414
|
childTransform?: boolean;
|
|
406
415
|
childrenTransformField?: string;
|
|
407
416
|
};
|
|
408
|
-
menuConfig:
|
|
409
|
-
mouseConfig:
|
|
410
|
-
areaConfig:
|
|
411
|
-
fnrConfig:
|
|
412
|
-
keyboardConfig:
|
|
413
|
-
clipConfig:
|
|
414
|
-
editConfig:
|
|
415
|
-
validConfig:
|
|
416
|
-
editRules:
|
|
417
|
-
emptyText:
|
|
418
|
-
emptyRender:
|
|
419
|
-
loadingConfig:
|
|
420
|
-
scrollX:
|
|
421
|
-
scrollY:
|
|
422
|
-
virtualXConfig:
|
|
423
|
-
virtualYConfig:
|
|
424
|
-
scrollbarConfig:
|
|
425
|
-
resizable:
|
|
426
|
-
highlightCurrentRow:
|
|
427
|
-
highlightHoverRow:
|
|
428
|
-
highlightCurrentColumn:
|
|
429
|
-
highlightHoverColumn:
|
|
430
|
-
highlightCell:
|
|
431
|
-
columnKey:
|
|
432
|
-
rowKey:
|
|
433
|
-
rowId:
|
|
434
|
-
fit:
|
|
435
|
-
animat:
|
|
436
|
-
delayHover:
|
|
437
|
-
columns: SabColumnProps<
|
|
417
|
+
menuConfig: VxeTablePropTypes.MenuConfig<VxeTablePropTypes.Row>;
|
|
418
|
+
mouseConfig: VxeTablePropTypes.MouseConfig;
|
|
419
|
+
areaConfig: VxeTablePropTypes.AreaConfig<VxeTablePropTypes.Row>;
|
|
420
|
+
fnrConfig: VxeTablePropTypes.FnrConfig<VxeTablePropTypes.Row>;
|
|
421
|
+
keyboardConfig: VxeTablePropTypes.KeyboardConfig<VxeTablePropTypes.Row>;
|
|
422
|
+
clipConfig: VxeTablePropTypes.ClipConfig<VxeTablePropTypes.Row>;
|
|
423
|
+
editConfig: VxeTablePropTypes.EditConfig<VxeTablePropTypes.Row>;
|
|
424
|
+
validConfig: VxeTablePropTypes.ValidConfig<VxeTablePropTypes.Row>;
|
|
425
|
+
editRules: VxeTablePropTypes.EditRules<VxeTablePropTypes.Row>;
|
|
426
|
+
emptyText: VxeTablePropTypes.EmptyText;
|
|
427
|
+
emptyRender: VxeTablePropTypes.EmptyRender;
|
|
428
|
+
loadingConfig: VxeTablePropTypes.LoadingConfig;
|
|
429
|
+
scrollX: VxeTablePropTypes.ScrollX;
|
|
430
|
+
scrollY: VxeTablePropTypes.ScrollY;
|
|
431
|
+
virtualXConfig: VxeTablePropTypes.VirtualXConfig;
|
|
432
|
+
virtualYConfig: VxeTablePropTypes.VirtualYConfig;
|
|
433
|
+
scrollbarConfig: VxeTablePropTypes.ScrollbarConfig;
|
|
434
|
+
resizable: VxeTablePropTypes.Resizable;
|
|
435
|
+
highlightCurrentRow: VxeTablePropTypes.HighlightCurrentRow;
|
|
436
|
+
highlightHoverRow: VxeTablePropTypes.HighlightHoverRow;
|
|
437
|
+
highlightCurrentColumn: VxeTablePropTypes.HighlightCurrentColumn;
|
|
438
|
+
highlightHoverColumn: VxeTablePropTypes.HighlightHoverColumn;
|
|
439
|
+
highlightCell: VxeTablePropTypes.HighlightCell;
|
|
440
|
+
columnKey: VxeTablePropTypes.ColumnKey;
|
|
441
|
+
rowKey: VxeTablePropTypes.RowKey;
|
|
442
|
+
rowId: VxeTablePropTypes.RowId;
|
|
443
|
+
fit: VxeTablePropTypes.Fit;
|
|
444
|
+
animat: VxeTablePropTypes.Animat;
|
|
445
|
+
delayHover: VxeTablePropTypes.DelayHover;
|
|
446
|
+
columns: SabColumnProps<VxeTablePropTypes.Row>[];
|
|
438
447
|
tableSetConfig: Partial<import('../../../../types/table/table-set').TableSetProps>;
|
|
439
448
|
editable: boolean;
|
|
440
449
|
wrapClassName: any;
|
|
441
|
-
checkboxRecords:
|
|
450
|
+
checkboxRecords: VxeTablePropTypes.Row[];
|
|
442
451
|
withSeq: boolean;
|
|
443
452
|
withCheckbox: boolean;
|
|
444
453
|
headerFilterModel: any;
|
|
@@ -446,13 +455,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
446
455
|
autoColumnWidth: boolean;
|
|
447
456
|
rowBackgroundHighlight: boolean;
|
|
448
457
|
reloadWithDestroy: boolean;
|
|
449
|
-
}> & Omit<Readonly<import('vxe-table').VxeTableProps<
|
|
458
|
+
}> & Omit<Readonly<import('vxe-table').VxeTableProps<VxeTablePropTypes.Row> & {
|
|
450
459
|
name?: string;
|
|
451
460
|
class?: any;
|
|
452
461
|
wrapClassName?: any;
|
|
453
|
-
columns?: SabColumnProps<
|
|
462
|
+
columns?: SabColumnProps<VxeTablePropTypes.Row>[] | undefined;
|
|
454
463
|
editable?: boolean;
|
|
455
|
-
checkboxRecords?:
|
|
464
|
+
checkboxRecords?: VxeTablePropTypes.Row[] | undefined;
|
|
456
465
|
withSeq?: boolean;
|
|
457
466
|
seqConfig?: {
|
|
458
467
|
clearOtherSelectedWhenClick?: boolean;
|
|
@@ -464,14 +473,17 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
464
473
|
autoColumnWidth?: boolean;
|
|
465
474
|
rowBackgroundHighlight?: boolean;
|
|
466
475
|
tableSetConfig?: Partial<import('../../../../types/table/table-set').TableSetProps>;
|
|
467
|
-
sortConfig?: (
|
|
476
|
+
sortConfig?: (VxeTablePropTypes.SortConfig<VxeTablePropTypes.Row> & {
|
|
468
477
|
enableAll?: boolean;
|
|
469
478
|
}) | undefined;
|
|
470
|
-
treeConfig?: (
|
|
479
|
+
treeConfig?: (VxeTablePropTypes.TreeConfig<VxeTablePropTypes.Row> & {
|
|
471
480
|
childTransform?: boolean;
|
|
472
481
|
childrenTransformField?: string;
|
|
473
482
|
}) | undefined;
|
|
474
483
|
reloadWithDestroy?: boolean;
|
|
484
|
+
customConfig?: (VxeTablePropTypes.CustomConfig<VxeTablePropTypes.Row> & {
|
|
485
|
+
useSabModal?: boolean;
|
|
486
|
+
}) | undefined;
|
|
475
487
|
}> & Readonly<{}>, "reloadRow" | "clearFilter" | "getCheckedFilters" | ("params" | "name" | "id" | "size" | "border" | "loading" | "round" | "align" | "maxHeight" | "data" | "class" | "height" | "headerFilterConfig" | "minHeight" | "stripe" | "padding" | "headerAlign" | "footerAlign" | "showHeader" | "showFooter" | "footerData" | "footerMethod" | "rowClassName" | "cellClassName" | "headerRowClassName" | "headerCellClassName" | "footerRowClassName" | "footerCellClassName" | "cellStyle" | "rowStyle" | "headerCellStyle" | "headerRowStyle" | "footerRowStyle" | "footerCellStyle" | "showCustomHeader" | "mergeHeaderCells" | "mergeCells" | "mergeFooterCells" | "mergeFooterItems" | "spanMethod" | "footerSpanMethod" | "showOverflow" | "showHeaderOverflow" | "showFooterOverflow" | "keepSource" | "autoResize" | "syncResize" | "columnConfig" | "rowConfig" | "cellConfig" | "headerCellConfig" | "footerCellConfig" | "aggregateConfig" | "rowGroupConfig" | "currentRowConfig" | "currentColumnConfig" | "dragConfig" | "rowDragConfig" | "columnDragConfig" | "customConfig" | "resizeConfig" | "resizableConfig" | "seqConfig" | "sortConfig" | "filterConfig" | "radioConfig" | "checkboxConfig" | "tooltipConfig" | "exportConfig" | "importConfig" | "printConfig" | "expandConfig" | "treeConfig" | "menuConfig" | "mouseConfig" | "areaConfig" | "fnrConfig" | "keyboardConfig" | "clipConfig" | "editConfig" | "validConfig" | "editRules" | "emptyText" | "emptyRender" | "loadingConfig" | "scrollX" | "scrollY" | "virtualXConfig" | "virtualYConfig" | "scrollbarConfig" | "resizable" | "highlightCurrentRow" | "highlightHoverRow" | "highlightCurrentColumn" | "highlightHoverColumn" | "highlightCell" | "columnKey" | "rowKey" | "rowId" | "fit" | "animat" | "delayHover" | "columns" | "tableSetConfig" | "editable" | "wrapClassName" | "checkboxRecords" | "withSeq" | "withCheckbox" | "headerFilterModel" | "showToolbar" | "autoColumnWidth" | "rowBackgroundHighlight" | "reloadWithDestroy") | "getInstance" | "refreshData"> & import('vue').ShallowUnwrapRef<{
|
|
476
488
|
getInstance: () => import('vxe-table').VxeTableInstance | undefined;
|
|
477
489
|
reloadRow: (rows: any | any[]) => void;
|