@gx-design-vue/pro-table 0.2.0-beta.7 → 0.2.0-beta.70
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/dist/ProTable.d.ts +401 -600
- package/dist/_utils/ant-design-vue/index.d.ts +2 -0
- package/dist/_utils/ant-design-vue/input/typings.d.ts +1 -0
- package/dist/_utils/ant-design-vue/spin/typings.d.ts +1 -0
- package/dist/_utils/ant-design-vue/table/props.d.ts +183 -2
- package/dist/_utils/ant-design-vue/table/typings.d.ts +6 -5
- package/dist/_utils/ant-design-vue/tooltip/typings.d.ts +1 -0
- package/dist/_utils/index.d.ts +0 -1
- package/dist/components/ColumnSetting/index.d.ts +14 -14
- package/dist/components/ColumnSetting/style.d.ts +2 -5
- package/dist/components/Form/index.d.ts +14 -13
- package/dist/components/Form/style.d.ts +2 -5
- package/dist/components/ListToolBar/index.d.ts +18 -18
- package/dist/components/ListToolBar/style.d.ts +2 -5
- package/dist/components/ToolBar/FullscreenIcon.d.ts +1 -2
- package/dist/components/ToolBar/index.d.ts +18 -18
- package/dist/context/TableContext.d.ts +10 -11
- package/dist/hooks/useColums.d.ts +20 -7
- package/dist/hooks/useFetchData.d.ts +15 -13
- package/dist/hooks/useLoading.d.ts +5 -12
- package/dist/hooks/usePagination.d.ts +8 -3
- package/dist/hooks/useRowSelection.d.ts +9 -6
- package/dist/hooks/useTable.d.ts +31 -11
- package/dist/hooks/useTableForm.d.ts +6 -5
- package/dist/hooks/useTableScroll.d.ts +6 -6
- package/dist/hooks/useTableSize.d.ts +1 -1
- package/dist/index.d.ts +6 -4
- package/dist/pro-table.js +2790 -0
- package/dist/pro-table.umd.cjs +1 -0
- package/dist/props.d.ts +147 -274
- package/dist/style.d.ts +2 -6
- package/dist/types/ColumnTypings.d.ts +12 -9
- package/dist/types/SlotsTypings.d.ts +37 -8
- package/dist/types/TableTypings.d.ts +86 -55
- package/dist/utils/utils.d.ts +3 -1
- package/package.json +20 -42
- package/volar.d.ts +3 -3
- package/dist/_utils/typings.d.ts +0 -9
- package/dist/pro-table.mjs +0 -32740
- package/dist/pro-table.umd.js +0 -328
- package/dist/utils/config.d.ts +0 -1
package/dist/ProTable.d.ts
CHANGED
|
@@ -1,830 +1,597 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type {
|
|
1
|
+
import type { CSSProperties, SlotsType } from 'vue';
|
|
2
|
+
import type { FilterValue, Key, SorterResult, SpinProps, TableCurrentDataSource } from './_utils';
|
|
3
|
+
import type { OptionConfig, ProTableProps, SearchConfig } from './types/TableTypings';
|
|
3
4
|
import type { ProColumnsType } from './types/ColumnTypings';
|
|
4
|
-
import
|
|
5
|
-
declare const
|
|
5
|
+
import { AntTabelSlotsType, DefaultRender } from './types/SlotsTypings';
|
|
6
|
+
declare const ProTable: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
7
|
rowSelection: {
|
|
7
|
-
type: import("vue").PropType<import("./types/TableTypings").ProTableRowSelection
|
|
8
|
+
type: import("vue").PropType<import("./types/TableTypings").ProTableRowSelection>;
|
|
8
9
|
default: undefined;
|
|
9
10
|
};
|
|
10
11
|
columns: {
|
|
11
|
-
type: import("vue").PropType<
|
|
12
|
+
type: import("vue").PropType<ProTableProps["columns"]>;
|
|
12
13
|
default: never[];
|
|
13
14
|
};
|
|
14
15
|
pagination: {
|
|
15
|
-
type: import("vue").PropType<
|
|
16
|
+
type: import("vue").PropType<ProTableProps["pagination"]>;
|
|
16
17
|
default: () => undefined;
|
|
17
18
|
};
|
|
18
19
|
rowKey: {
|
|
19
|
-
type: import("vue").PropType<string
|
|
20
|
-
default:
|
|
20
|
+
type: import("vue").PropType<string>;
|
|
21
|
+
default: string;
|
|
21
22
|
};
|
|
22
23
|
request: {
|
|
23
|
-
type: import("vue").PropType<
|
|
24
|
+
type: import("vue").PropType<ProTableProps["request"]>;
|
|
24
25
|
default: null;
|
|
25
26
|
};
|
|
26
|
-
virtualScroll: import("vue").PropType<
|
|
27
|
-
params: import("vue").PropType<
|
|
28
|
-
postData: import("vue").PropType<
|
|
27
|
+
virtualScroll: import("vue").PropType<ProTableProps["virtualScroll"]>;
|
|
28
|
+
params: import("vue").PropType<ProTableProps["params"]>;
|
|
29
|
+
postData: import("vue").PropType<ProTableProps["postData"]>;
|
|
29
30
|
waitRequest: {
|
|
30
|
-
type: import("vue").PropType<
|
|
31
|
+
type: import("vue").PropType<ProTableProps["waitRequest"]>;
|
|
31
32
|
default: boolean;
|
|
32
33
|
};
|
|
33
|
-
polling: import("vue").PropType<
|
|
34
|
+
polling: import("vue").PropType<ProTableProps["polling"]>;
|
|
34
35
|
debounceTime: {
|
|
35
|
-
type: import("vue").PropType<
|
|
36
|
+
type: import("vue").PropType<ProTableProps["debounceTime"]>;
|
|
36
37
|
default: number;
|
|
37
38
|
};
|
|
38
39
|
search: {
|
|
39
|
-
type: import("vue").PropType<
|
|
40
|
-
default: () =>
|
|
40
|
+
type: import("vue").PropType<ProTableProps["search"]>;
|
|
41
|
+
default: () => SearchConfig;
|
|
41
42
|
};
|
|
42
43
|
searchMap: {
|
|
43
|
-
type: import("vue").PropType<
|
|
44
|
+
type: import("vue").PropType<ProTableProps["searchMap"]>;
|
|
44
45
|
default: () => never[];
|
|
45
46
|
};
|
|
46
47
|
customRender: {
|
|
47
|
-
type: import("vue").PropType<
|
|
48
|
+
type: import("vue").PropType<ProTableProps["customRender"]>;
|
|
48
49
|
default: () => undefined;
|
|
49
50
|
};
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
51
|
+
emptyText: {
|
|
52
|
+
type: import("vue").PropType<ProTableProps["emptyText"]>;
|
|
53
|
+
default: () => undefined;
|
|
54
|
+
};
|
|
55
|
+
showLoading: {
|
|
56
|
+
type: import("vue").PropType<ProTableProps["showLoading"]>;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
tableProps: {
|
|
60
|
+
type: import("vue").PropType<ProTableProps["tableProps"]>;
|
|
61
|
+
default: () => ProTableProps["tableProps"];
|
|
62
|
+
};
|
|
63
|
+
emptyTextProps: {
|
|
64
|
+
type: import("vue").PropType<ProTableProps["emptyTextProps"]>;
|
|
65
|
+
default: () => ProTableProps["emptyTextProps"];
|
|
53
66
|
};
|
|
54
67
|
toolBarBtn: {
|
|
55
|
-
type: import("vue").PropType<
|
|
68
|
+
type: import("vue").PropType<ProTableProps["toolBarBtn"]>;
|
|
56
69
|
default: () => undefined;
|
|
57
70
|
};
|
|
58
71
|
headerTitle: {
|
|
59
|
-
type: import("vue").PropType<
|
|
72
|
+
type: import("vue").PropType<ProTableProps["headerTitle"]>;
|
|
60
73
|
default: () => undefined;
|
|
61
74
|
};
|
|
62
75
|
titleTip: {
|
|
63
|
-
type: import("vue").PropType<
|
|
76
|
+
type: import("vue").PropType<ProTableProps["titleTip"]>;
|
|
64
77
|
default: () => undefined;
|
|
65
78
|
};
|
|
66
79
|
titleTipText: {
|
|
67
|
-
type: import("vue").PropType<
|
|
80
|
+
type: import("vue").PropType<ProTableProps["titleTipText"]>;
|
|
68
81
|
default: string;
|
|
69
82
|
};
|
|
70
83
|
options: {
|
|
71
|
-
type: import("vue").PropType<
|
|
84
|
+
type: import("vue").PropType<ProTableProps["options"]>;
|
|
72
85
|
default: boolean;
|
|
73
86
|
};
|
|
74
87
|
columnsState: {
|
|
75
|
-
type: import("vue").PropType<
|
|
88
|
+
type: import("vue").PropType<ProTableProps["columnsState"]>;
|
|
76
89
|
};
|
|
77
90
|
optionsExtra: {
|
|
78
|
-
type: import("vue").PropType<
|
|
91
|
+
type: import("vue").PropType<ProTableProps["optionsExtra"]>;
|
|
79
92
|
default: () => undefined;
|
|
80
93
|
};
|
|
81
94
|
settingExtra: {
|
|
82
|
-
type: import("vue").PropType<
|
|
83
|
-
* @Author gx12358
|
|
84
|
-
* @DateTime 2022/1/21
|
|
85
|
-
* @lastTime 2022/1/21
|
|
86
|
-
* @description Tabel-size hooks 方法
|
|
87
|
-
*/
|
|
95
|
+
type: import("vue").PropType<ProTableProps["settingExtra"]>;
|
|
88
96
|
default: () => undefined;
|
|
89
97
|
};
|
|
90
98
|
showIndex: {
|
|
91
|
-
type: import("vue").PropType<
|
|
99
|
+
type: import("vue").PropType<ProTableProps["showIndex"]>;
|
|
92
100
|
default: boolean;
|
|
93
101
|
};
|
|
94
102
|
pageItemRender: {
|
|
95
|
-
type: import("vue").PropType<
|
|
103
|
+
type: import("vue").PropType<ProTableProps["pageItemRender"]>;
|
|
96
104
|
default: () => undefined;
|
|
97
105
|
};
|
|
98
106
|
size: {
|
|
99
|
-
type: import("vue").PropType<"
|
|
107
|
+
type: import("vue").PropType<ProTableProps["size"]>;
|
|
100
108
|
default: string;
|
|
101
109
|
};
|
|
102
110
|
align: {
|
|
103
|
-
type: import("vue").PropType<
|
|
111
|
+
type: import("vue").PropType<ProTableProps["align"]>;
|
|
104
112
|
default: string;
|
|
105
113
|
};
|
|
106
114
|
bordered: {
|
|
107
|
-
type: import("vue").PropType<
|
|
115
|
+
type: import("vue").PropType<ProTableProps["bordered"]>;
|
|
108
116
|
default: boolean;
|
|
109
117
|
};
|
|
110
|
-
draggabled: import("vue").PropType<
|
|
118
|
+
draggabled: import("vue").PropType<ProTableProps["draggabled"]>;
|
|
111
119
|
autoScroll: {
|
|
112
|
-
type: import("vue").PropType<
|
|
120
|
+
type: import("vue").PropType<ProTableProps["autoScroll"]>;
|
|
113
121
|
default: boolean;
|
|
114
122
|
};
|
|
115
|
-
scrollBreakpoint: import("vue").PropType<
|
|
116
|
-
modalScroll: import("vue").PropType<
|
|
117
|
-
neverScroll: import("vue").PropType<
|
|
123
|
+
scrollBreakpoint: import("vue").PropType<ProTableProps["scrollBreakpoint"]>;
|
|
124
|
+
modalScroll: import("vue").PropType<ProTableProps["modalScroll"]>;
|
|
125
|
+
neverScroll: import("vue").PropType<ProTableProps["neverScroll"]>;
|
|
118
126
|
columnEmptyText: {
|
|
119
|
-
type: import("vue").PropType<
|
|
127
|
+
type: import("vue").PropType<ProTableProps["columnEmptyText"]>;
|
|
120
128
|
default: boolean;
|
|
121
129
|
};
|
|
122
|
-
onReset: import("vue").PropType<
|
|
123
|
-
onReload: import("vue").PropType<
|
|
124
|
-
onSubmit: import("vue").PropType<
|
|
125
|
-
onSizeChange: import("vue").PropType<
|
|
126
|
-
onLoadingChange: import("vue").PropType<
|
|
127
|
-
onRequestError: import("vue").PropType<
|
|
128
|
-
onBeforeSearchSubmit: import("vue").PropType<
|
|
129
|
-
onColumnsStateChange: import("vue").PropType<
|
|
130
|
+
onReset: import("vue").PropType<ProTableProps["onReset"]>;
|
|
131
|
+
onReload: import("vue").PropType<ProTableProps["onReload"]>;
|
|
132
|
+
onSubmit: import("vue").PropType<ProTableProps["onSubmit"]>;
|
|
133
|
+
onSizeChange: import("vue").PropType<ProTableProps["onSizeChange"]>;
|
|
134
|
+
onLoadingChange: import("vue").PropType<ProTableProps["onLoadingChange"]>;
|
|
135
|
+
onRequestError: import("vue").PropType<ProTableProps["onRequestError"]>;
|
|
136
|
+
onBeforeSearchSubmit: import("vue").PropType<ProTableProps["onBeforeSearchSubmit"]>;
|
|
137
|
+
onColumnsStateChange: import("vue").PropType<ProTableProps["onColumnsStateChange"]>;
|
|
130
138
|
prefixCls: {
|
|
131
139
|
type: import("vue").PropType<string>;
|
|
132
|
-
default:
|
|
140
|
+
default: undefined;
|
|
133
141
|
};
|
|
134
142
|
tableLayout: {
|
|
135
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
136
|
-
default:
|
|
143
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["tableLayout"]>;
|
|
144
|
+
default: undefined;
|
|
137
145
|
};
|
|
138
146
|
rowClassName: {
|
|
139
|
-
type: import("vue").PropType<
|
|
140
|
-
default:
|
|
147
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["rowClassName"]>;
|
|
148
|
+
default: undefined;
|
|
141
149
|
};
|
|
142
150
|
title: {
|
|
143
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
144
|
-
default:
|
|
151
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["title"]>;
|
|
152
|
+
default: undefined;
|
|
145
153
|
};
|
|
146
154
|
footer: {
|
|
147
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
148
|
-
default:
|
|
155
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["footer"]>;
|
|
156
|
+
default: undefined;
|
|
149
157
|
};
|
|
150
158
|
id: {
|
|
151
|
-
type: import("vue").PropType<
|
|
152
|
-
default:
|
|
159
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["id"]>;
|
|
160
|
+
default: undefined;
|
|
153
161
|
};
|
|
154
162
|
showHeader: {
|
|
155
|
-
type:
|
|
156
|
-
default:
|
|
163
|
+
type: import("vue").PropType<boolean>;
|
|
164
|
+
default: undefined;
|
|
157
165
|
};
|
|
158
166
|
components: {
|
|
159
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
160
|
-
default:
|
|
167
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["components"]>;
|
|
168
|
+
default: undefined;
|
|
161
169
|
};
|
|
162
170
|
customRow: {
|
|
163
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
164
|
-
default:
|
|
171
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["customRow"]>;
|
|
172
|
+
default: undefined;
|
|
165
173
|
};
|
|
166
174
|
customHeaderRow: {
|
|
167
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
168
|
-
default:
|
|
175
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["customHeaderRow"]>;
|
|
176
|
+
default: undefined;
|
|
169
177
|
};
|
|
170
178
|
direction: {
|
|
171
|
-
type: import("vue").PropType<"
|
|
172
|
-
default:
|
|
179
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["direction"]>;
|
|
180
|
+
default: undefined;
|
|
173
181
|
};
|
|
174
182
|
expandFixed: {
|
|
175
|
-
type: import("vue").PropType<
|
|
176
|
-
default:
|
|
183
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["expandFixed"]>;
|
|
184
|
+
default: undefined;
|
|
185
|
+
};
|
|
186
|
+
expandColumnWidth: {
|
|
187
|
+
type: import("vue").PropType<number>;
|
|
188
|
+
default: undefined;
|
|
177
189
|
};
|
|
178
|
-
expandColumnWidth: NumberConstructor;
|
|
179
190
|
expandedRowKeys: {
|
|
180
|
-
type: import("vue").PropType<
|
|
181
|
-
default:
|
|
191
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["expandedRowKeys"]>;
|
|
192
|
+
default: undefined;
|
|
182
193
|
};
|
|
183
194
|
defaultExpandedRowKeys: {
|
|
184
|
-
type: import("vue").PropType<
|
|
185
|
-
default:
|
|
195
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["defaultExpandedRowKeys"]>;
|
|
196
|
+
default: undefined;
|
|
186
197
|
};
|
|
187
198
|
expandedRowRender: {
|
|
188
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
189
|
-
default:
|
|
199
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["expandedRowRender"]>;
|
|
200
|
+
default: undefined;
|
|
190
201
|
};
|
|
191
202
|
expandRowByClick: {
|
|
192
|
-
type:
|
|
193
|
-
default:
|
|
203
|
+
type: import("vue").PropType<boolean>;
|
|
204
|
+
default: undefined;
|
|
194
205
|
};
|
|
195
206
|
expandIcon: {
|
|
196
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
197
|
-
default:
|
|
207
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["expandIcon"]>;
|
|
208
|
+
default: undefined;
|
|
198
209
|
};
|
|
199
210
|
onExpand: {
|
|
200
|
-
type: import("vue").PropType<(
|
|
201
|
-
default:
|
|
211
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["onExpand"]>;
|
|
212
|
+
default: undefined;
|
|
202
213
|
};
|
|
203
214
|
onExpandedRowsChange: {
|
|
204
|
-
type: import("vue").PropType<(
|
|
205
|
-
default:
|
|
215
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["onExpandedRowsChange"]>;
|
|
216
|
+
default: undefined;
|
|
206
217
|
};
|
|
207
218
|
'onUpdate:expandedRowKeys': {
|
|
208
|
-
type: import("vue").PropType<(
|
|
209
|
-
default:
|
|
219
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["onExpandedRowsChange"]>;
|
|
220
|
+
default: undefined;
|
|
210
221
|
};
|
|
211
222
|
defaultExpandAllRows: {
|
|
212
|
-
type:
|
|
213
|
-
default:
|
|
223
|
+
type: import("vue").PropType<boolean>;
|
|
224
|
+
default: undefined;
|
|
225
|
+
};
|
|
226
|
+
indentSize: {
|
|
227
|
+
type: import("vue").PropType<number>;
|
|
228
|
+
default: undefined;
|
|
229
|
+
};
|
|
230
|
+
expandIconColumnIndex: {
|
|
231
|
+
type: import("vue").PropType<number>;
|
|
232
|
+
default: undefined;
|
|
214
233
|
};
|
|
215
|
-
indentSize: NumberConstructor;
|
|
216
|
-
expandIconColumnIndex: NumberConstructor;
|
|
217
234
|
showExpandColumn: {
|
|
218
|
-
type:
|
|
219
|
-
default:
|
|
235
|
+
type: import("vue").PropType<boolean>;
|
|
236
|
+
default: undefined;
|
|
220
237
|
};
|
|
221
238
|
expandedRowClassName: {
|
|
222
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
223
|
-
default:
|
|
239
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["expandedRowClassName"]>;
|
|
240
|
+
default: undefined;
|
|
224
241
|
};
|
|
225
242
|
childrenColumnName: {
|
|
226
|
-
type: import("vue").PropType<
|
|
227
|
-
default:
|
|
243
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["childrenColumnName"]>;
|
|
244
|
+
default: undefined;
|
|
228
245
|
};
|
|
229
246
|
rowExpandable: {
|
|
230
|
-
type: import("vue").PropType<(
|
|
231
|
-
default:
|
|
247
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["rowExpandable"]>;
|
|
248
|
+
default: undefined;
|
|
232
249
|
};
|
|
233
250
|
sticky: {
|
|
234
|
-
type: import("vue").PropType<
|
|
235
|
-
default:
|
|
251
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["sticky"]>;
|
|
252
|
+
default: undefined;
|
|
253
|
+
};
|
|
254
|
+
dropdownPrefixCls: {
|
|
255
|
+
type: import("vue").PropType<string>;
|
|
256
|
+
default: undefined;
|
|
236
257
|
};
|
|
237
|
-
dropdownPrefixCls: StringConstructor;
|
|
238
258
|
dataSource: {
|
|
239
|
-
type: import("vue").PropType<
|
|
240
|
-
default:
|
|
259
|
+
type: import("vue").PropType<import("ant-design-vue/es/vc-table/Table").TableProps["data"]>;
|
|
260
|
+
default: undefined;
|
|
241
261
|
};
|
|
242
262
|
loading: {
|
|
243
|
-
type: import("vue").PropType<boolean |
|
|
244
|
-
|
|
245
|
-
spinning: {
|
|
246
|
-
type: BooleanConstructor;
|
|
247
|
-
default: any;
|
|
248
|
-
};
|
|
249
|
-
size: import("vue").PropType<import("ant-design-vue/es/spin/Spin").SpinSize>;
|
|
250
|
-
wrapperClassName: StringConstructor;
|
|
251
|
-
tip: import("vue-types").VueTypeValidableDef<any>;
|
|
252
|
-
delay: NumberConstructor;
|
|
253
|
-
indicator: import("vue-types").VueTypeValidableDef<any>;
|
|
254
|
-
}>>>;
|
|
255
|
-
default: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
256
|
-
prefixCls: StringConstructor;
|
|
257
|
-
spinning: {
|
|
258
|
-
type: BooleanConstructor;
|
|
259
|
-
default: any;
|
|
260
|
-
};
|
|
261
|
-
size: import("vue").PropType<import("ant-design-vue/es/spin/Spin").SpinSize>;
|
|
262
|
-
wrapperClassName: StringConstructor;
|
|
263
|
-
tip: import("vue-types").VueTypeValidableDef<any>;
|
|
264
|
-
delay: NumberConstructor;
|
|
265
|
-
indicator: import("vue-types").VueTypeValidableDef<any>;
|
|
266
|
-
}>>;
|
|
263
|
+
type: import("vue").PropType<boolean | SpinProps>;
|
|
264
|
+
default: undefined;
|
|
267
265
|
};
|
|
268
266
|
locale: {
|
|
269
267
|
type: import("vue").PropType<import("ant-design-vue/es/table/interface").TableLocale>;
|
|
270
|
-
default:
|
|
268
|
+
default: undefined;
|
|
271
269
|
};
|
|
272
270
|
onChange: {
|
|
273
|
-
type: import("vue").PropType<(pagination: import("
|
|
274
|
-
default:
|
|
271
|
+
type: import("vue").PropType<(pagination: import("./types/TableTypings").ProTablePagination, filters: Record<string, FilterValue | null>, sorter: SorterResult | SorterResult[], extra: TableCurrentDataSource) => void>;
|
|
272
|
+
default: undefined;
|
|
275
273
|
};
|
|
276
274
|
onResizeColumn: {
|
|
277
|
-
type: import("vue").PropType<(w: number, col: import("ant-design-vue").TableColumnType
|
|
278
|
-
default:
|
|
275
|
+
type: import("vue").PropType<(w: number, col: import("ant-design-vue").TableColumnType) => void>;
|
|
276
|
+
default: undefined;
|
|
279
277
|
};
|
|
280
278
|
getPopupContainer: {
|
|
281
279
|
type: import("vue").PropType<import("ant-design-vue/es/table/interface").GetPopupContainer>;
|
|
282
|
-
default:
|
|
280
|
+
default: undefined;
|
|
283
281
|
};
|
|
284
282
|
scroll: {
|
|
285
|
-
type: import("vue").PropType<{
|
|
286
|
-
|
|
287
|
-
y?: string | number | undefined;
|
|
288
|
-
} & {
|
|
289
|
-
scrollToFirstRowOnChange?: boolean | undefined;
|
|
283
|
+
type: import("vue").PropType<import("ant-design-vue/es/vc-table/Table").TableProps["scroll"] & {
|
|
284
|
+
scrollToFirstRowOnChange?: boolean;
|
|
290
285
|
}>;
|
|
291
|
-
default:
|
|
292
|
-
x?: string | number | true | undefined;
|
|
293
|
-
y?: string | number | undefined;
|
|
294
|
-
} & {
|
|
295
|
-
scrollToFirstRowOnChange?: boolean | undefined;
|
|
296
|
-
};
|
|
286
|
+
default: undefined;
|
|
297
287
|
};
|
|
298
288
|
sortDirections: {
|
|
299
289
|
type: import("vue").PropType<import("ant-design-vue/es/table/interface").SortOrder[]>;
|
|
300
|
-
default:
|
|
290
|
+
default: undefined;
|
|
301
291
|
};
|
|
302
292
|
showSorterTooltip: {
|
|
303
|
-
type: import("vue").PropType<boolean |
|
|
304
|
-
|
|
305
|
-
trigger: import("vue").PropType<import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
306
|
-
open: {
|
|
307
|
-
type: BooleanConstructor;
|
|
308
|
-
default: any;
|
|
309
|
-
};
|
|
310
|
-
visible: {
|
|
311
|
-
type: BooleanConstructor;
|
|
312
|
-
default: any;
|
|
313
|
-
};
|
|
314
|
-
placement: import("vue").PropType<import("ant-design-vue/es/tooltip").TooltipPlacement>;
|
|
315
|
-
color: import("vue").PropType<import("ant-design-vue/es/_util/type").LiteralUnion<import("ant-design-vue/es/_util/colors").PresetColorType>>;
|
|
316
|
-
transitionName: StringConstructor;
|
|
317
|
-
overlayStyle: {
|
|
318
|
-
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
319
|
-
default: import("vue").CSSProperties;
|
|
320
|
-
};
|
|
321
|
-
overlayInnerStyle: {
|
|
322
|
-
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
323
|
-
default: import("vue").CSSProperties;
|
|
324
|
-
};
|
|
325
|
-
overlayClassName: StringConstructor;
|
|
326
|
-
openClassName: StringConstructor;
|
|
327
|
-
prefixCls: StringConstructor;
|
|
328
|
-
mouseEnterDelay: NumberConstructor;
|
|
329
|
-
mouseLeaveDelay: NumberConstructor;
|
|
330
|
-
getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
331
|
-
arrowPointAtCenter: {
|
|
332
|
-
type: BooleanConstructor;
|
|
333
|
-
default: any;
|
|
334
|
-
};
|
|
335
|
-
autoAdjustOverflow: {
|
|
336
|
-
type: import("vue").PropType<boolean | import("ant-design-vue/es/tooltip").AdjustOverflow>;
|
|
337
|
-
default: boolean | import("ant-design-vue/es/tooltip").AdjustOverflow;
|
|
338
|
-
};
|
|
339
|
-
destroyTooltipOnHide: {
|
|
340
|
-
type: BooleanConstructor;
|
|
341
|
-
default: any;
|
|
342
|
-
};
|
|
343
|
-
align: {
|
|
344
|
-
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").AlignType>;
|
|
345
|
-
default: import("ant-design-vue/es/vc-trigger/interface").AlignType;
|
|
346
|
-
};
|
|
347
|
-
builtinPlacements: {
|
|
348
|
-
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements>;
|
|
349
|
-
default: import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements;
|
|
350
|
-
};
|
|
351
|
-
children: ArrayConstructor;
|
|
352
|
-
onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
|
|
353
|
-
'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
|
|
354
|
-
onOpenChange: import("vue").PropType<(vis: boolean) => void>;
|
|
355
|
-
'onUpdate:open': import("vue").PropType<(vis: boolean) => void>;
|
|
356
|
-
}>>>;
|
|
357
|
-
default: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
358
|
-
title: import("vue-types").VueTypeValidableDef<any>;
|
|
359
|
-
trigger: import("vue").PropType<import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
360
|
-
open: {
|
|
361
|
-
type: BooleanConstructor;
|
|
362
|
-
default: any;
|
|
363
|
-
};
|
|
364
|
-
visible: {
|
|
365
|
-
type: BooleanConstructor;
|
|
366
|
-
default: any;
|
|
367
|
-
};
|
|
368
|
-
placement: import("vue").PropType<import("ant-design-vue/es/tooltip").TooltipPlacement>;
|
|
369
|
-
color: import("vue").PropType<import("ant-design-vue/es/_util/type").LiteralUnion<import("ant-design-vue/es/_util/colors").PresetColorType>>;
|
|
370
|
-
transitionName: StringConstructor;
|
|
371
|
-
overlayStyle: {
|
|
372
|
-
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
373
|
-
default: import("vue").CSSProperties;
|
|
374
|
-
};
|
|
375
|
-
overlayInnerStyle: {
|
|
376
|
-
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
377
|
-
default: import("vue").CSSProperties;
|
|
378
|
-
};
|
|
379
|
-
overlayClassName: StringConstructor;
|
|
380
|
-
openClassName: StringConstructor;
|
|
381
|
-
prefixCls: StringConstructor;
|
|
382
|
-
mouseEnterDelay: NumberConstructor;
|
|
383
|
-
mouseLeaveDelay: NumberConstructor;
|
|
384
|
-
getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
385
|
-
arrowPointAtCenter: {
|
|
386
|
-
type: BooleanConstructor;
|
|
387
|
-
default: any;
|
|
388
|
-
};
|
|
389
|
-
autoAdjustOverflow: {
|
|
390
|
-
type: import("vue").PropType<boolean | import("ant-design-vue/es/tooltip").AdjustOverflow>;
|
|
391
|
-
default: boolean | import("ant-design-vue/es/tooltip").AdjustOverflow;
|
|
392
|
-
};
|
|
393
|
-
destroyTooltipOnHide: {
|
|
394
|
-
type: BooleanConstructor;
|
|
395
|
-
default: any;
|
|
396
|
-
};
|
|
397
|
-
align: {
|
|
398
|
-
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").AlignType>;
|
|
399
|
-
default: import("ant-design-vue/es/vc-trigger/interface").AlignType;
|
|
400
|
-
};
|
|
401
|
-
builtinPlacements: {
|
|
402
|
-
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements>;
|
|
403
|
-
default: import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements;
|
|
404
|
-
};
|
|
405
|
-
children: ArrayConstructor;
|
|
406
|
-
onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
|
|
407
|
-
'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
|
|
408
|
-
onOpenChange: import("vue").PropType<(vis: boolean) => void>;
|
|
409
|
-
'onUpdate:open': import("vue").PropType<(vis: boolean) => void>;
|
|
410
|
-
}>>;
|
|
293
|
+
type: import("vue").PropType<boolean | import("ant-design-vue").TooltipProps>;
|
|
294
|
+
default: boolean;
|
|
411
295
|
};
|
|
412
296
|
transformCellText: {
|
|
413
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
414
|
-
default:
|
|
297
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["transformCellText"]>;
|
|
298
|
+
default: undefined;
|
|
415
299
|
};
|
|
416
|
-
}
|
|
300
|
+
}>, () => import("ant-design-vue/es/_util/type").VueNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("loadingChange" | "sizeChange" | "change" | "requestError" | "reload" | "reset" | "submit" | "expandedRowsChange" | "expand" | "beforeSearchSubmit" | "columnsStateChange")[], "loadingChange" | "sizeChange" | "change" | "requestError" | "reload" | "reset" | "submit" | "expandedRowsChange" | "expand" | "beforeSearchSubmit" | "columnsStateChange", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
417
301
|
rowSelection: {
|
|
418
|
-
type: import("vue").PropType<import("./types/TableTypings").ProTableRowSelection
|
|
302
|
+
type: import("vue").PropType<import("./types/TableTypings").ProTableRowSelection>;
|
|
419
303
|
default: undefined;
|
|
420
304
|
};
|
|
421
305
|
columns: {
|
|
422
|
-
type: import("vue").PropType<
|
|
306
|
+
type: import("vue").PropType<ProTableProps["columns"]>;
|
|
423
307
|
default: never[];
|
|
424
308
|
};
|
|
425
309
|
pagination: {
|
|
426
|
-
type: import("vue").PropType<
|
|
310
|
+
type: import("vue").PropType<ProTableProps["pagination"]>;
|
|
427
311
|
default: () => undefined;
|
|
428
312
|
};
|
|
429
313
|
rowKey: {
|
|
430
|
-
type: import("vue").PropType<string
|
|
431
|
-
default:
|
|
314
|
+
type: import("vue").PropType<string>;
|
|
315
|
+
default: string;
|
|
432
316
|
};
|
|
433
317
|
request: {
|
|
434
|
-
type: import("vue").PropType<
|
|
318
|
+
type: import("vue").PropType<ProTableProps["request"]>;
|
|
435
319
|
default: null;
|
|
436
320
|
};
|
|
437
|
-
virtualScroll: import("vue").PropType<
|
|
438
|
-
params: import("vue").PropType<
|
|
439
|
-
postData: import("vue").PropType<
|
|
321
|
+
virtualScroll: import("vue").PropType<ProTableProps["virtualScroll"]>;
|
|
322
|
+
params: import("vue").PropType<ProTableProps["params"]>;
|
|
323
|
+
postData: import("vue").PropType<ProTableProps["postData"]>;
|
|
440
324
|
waitRequest: {
|
|
441
|
-
type: import("vue").PropType<
|
|
325
|
+
type: import("vue").PropType<ProTableProps["waitRequest"]>;
|
|
442
326
|
default: boolean;
|
|
443
327
|
};
|
|
444
|
-
polling: import("vue").PropType<
|
|
328
|
+
polling: import("vue").PropType<ProTableProps["polling"]>;
|
|
445
329
|
debounceTime: {
|
|
446
|
-
type: import("vue").PropType<
|
|
330
|
+
type: import("vue").PropType<ProTableProps["debounceTime"]>;
|
|
447
331
|
default: number;
|
|
448
332
|
};
|
|
449
333
|
search: {
|
|
450
|
-
type: import("vue").PropType<
|
|
451
|
-
default: () =>
|
|
334
|
+
type: import("vue").PropType<ProTableProps["search"]>;
|
|
335
|
+
default: () => SearchConfig;
|
|
452
336
|
};
|
|
453
337
|
searchMap: {
|
|
454
|
-
type: import("vue").PropType<
|
|
338
|
+
type: import("vue").PropType<ProTableProps["searchMap"]>;
|
|
455
339
|
default: () => never[];
|
|
456
340
|
};
|
|
457
341
|
customRender: {
|
|
458
|
-
type: import("vue").PropType<
|
|
342
|
+
type: import("vue").PropType<ProTableProps["customRender"]>;
|
|
459
343
|
default: () => undefined;
|
|
460
344
|
};
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
345
|
+
emptyText: {
|
|
346
|
+
type: import("vue").PropType<ProTableProps["emptyText"]>;
|
|
347
|
+
default: () => undefined;
|
|
348
|
+
};
|
|
349
|
+
showLoading: {
|
|
350
|
+
type: import("vue").PropType<ProTableProps["showLoading"]>;
|
|
351
|
+
default: boolean;
|
|
352
|
+
};
|
|
353
|
+
tableProps: {
|
|
354
|
+
type: import("vue").PropType<ProTableProps["tableProps"]>;
|
|
355
|
+
default: () => ProTableProps["tableProps"];
|
|
356
|
+
};
|
|
357
|
+
emptyTextProps: {
|
|
358
|
+
type: import("vue").PropType<ProTableProps["emptyTextProps"]>;
|
|
359
|
+
default: () => ProTableProps["emptyTextProps"];
|
|
464
360
|
};
|
|
465
361
|
toolBarBtn: {
|
|
466
|
-
type: import("vue").PropType<
|
|
362
|
+
type: import("vue").PropType<ProTableProps["toolBarBtn"]>;
|
|
467
363
|
default: () => undefined;
|
|
468
364
|
};
|
|
469
365
|
headerTitle: {
|
|
470
|
-
type: import("vue").PropType<
|
|
366
|
+
type: import("vue").PropType<ProTableProps["headerTitle"]>;
|
|
471
367
|
default: () => undefined;
|
|
472
368
|
};
|
|
473
369
|
titleTip: {
|
|
474
|
-
type: import("vue").PropType<
|
|
370
|
+
type: import("vue").PropType<ProTableProps["titleTip"]>;
|
|
475
371
|
default: () => undefined;
|
|
476
372
|
};
|
|
477
373
|
titleTipText: {
|
|
478
|
-
type: import("vue").PropType<
|
|
374
|
+
type: import("vue").PropType<ProTableProps["titleTipText"]>;
|
|
479
375
|
default: string;
|
|
480
376
|
};
|
|
481
377
|
options: {
|
|
482
|
-
type: import("vue").PropType<
|
|
378
|
+
type: import("vue").PropType<ProTableProps["options"]>;
|
|
483
379
|
default: boolean;
|
|
484
380
|
};
|
|
485
381
|
columnsState: {
|
|
486
|
-
type: import("vue").PropType<
|
|
382
|
+
type: import("vue").PropType<ProTableProps["columnsState"]>;
|
|
487
383
|
};
|
|
488
384
|
optionsExtra: {
|
|
489
|
-
type: import("vue").PropType<
|
|
385
|
+
type: import("vue").PropType<ProTableProps["optionsExtra"]>;
|
|
490
386
|
default: () => undefined;
|
|
491
387
|
};
|
|
492
388
|
settingExtra: {
|
|
493
|
-
type: import("vue").PropType<
|
|
494
|
-
* @Author gx12358
|
|
495
|
-
* @DateTime 2022/1/21
|
|
496
|
-
* @lastTime 2022/1/21
|
|
497
|
-
* @description Tabel-size hooks 方法
|
|
498
|
-
*/
|
|
389
|
+
type: import("vue").PropType<ProTableProps["settingExtra"]>;
|
|
499
390
|
default: () => undefined;
|
|
500
391
|
};
|
|
501
392
|
showIndex: {
|
|
502
|
-
type: import("vue").PropType<
|
|
393
|
+
type: import("vue").PropType<ProTableProps["showIndex"]>;
|
|
503
394
|
default: boolean;
|
|
504
395
|
};
|
|
505
396
|
pageItemRender: {
|
|
506
|
-
type: import("vue").PropType<
|
|
397
|
+
type: import("vue").PropType<ProTableProps["pageItemRender"]>;
|
|
507
398
|
default: () => undefined;
|
|
508
399
|
};
|
|
509
400
|
size: {
|
|
510
|
-
type: import("vue").PropType<"
|
|
401
|
+
type: import("vue").PropType<ProTableProps["size"]>;
|
|
511
402
|
default: string;
|
|
512
403
|
};
|
|
513
404
|
align: {
|
|
514
|
-
type: import("vue").PropType<
|
|
405
|
+
type: import("vue").PropType<ProTableProps["align"]>;
|
|
515
406
|
default: string;
|
|
516
407
|
};
|
|
517
408
|
bordered: {
|
|
518
|
-
type: import("vue").PropType<
|
|
409
|
+
type: import("vue").PropType<ProTableProps["bordered"]>;
|
|
519
410
|
default: boolean;
|
|
520
411
|
};
|
|
521
|
-
draggabled: import("vue").PropType<
|
|
412
|
+
draggabled: import("vue").PropType<ProTableProps["draggabled"]>;
|
|
522
413
|
autoScroll: {
|
|
523
|
-
type: import("vue").PropType<
|
|
414
|
+
type: import("vue").PropType<ProTableProps["autoScroll"]>;
|
|
524
415
|
default: boolean;
|
|
525
416
|
};
|
|
526
|
-
scrollBreakpoint: import("vue").PropType<
|
|
527
|
-
modalScroll: import("vue").PropType<
|
|
528
|
-
neverScroll: import("vue").PropType<
|
|
417
|
+
scrollBreakpoint: import("vue").PropType<ProTableProps["scrollBreakpoint"]>;
|
|
418
|
+
modalScroll: import("vue").PropType<ProTableProps["modalScroll"]>;
|
|
419
|
+
neverScroll: import("vue").PropType<ProTableProps["neverScroll"]>;
|
|
529
420
|
columnEmptyText: {
|
|
530
|
-
type: import("vue").PropType<
|
|
421
|
+
type: import("vue").PropType<ProTableProps["columnEmptyText"]>;
|
|
531
422
|
default: boolean;
|
|
532
423
|
};
|
|
533
|
-
onReset: import("vue").PropType<
|
|
534
|
-
onReload: import("vue").PropType<
|
|
535
|
-
onSubmit: import("vue").PropType<
|
|
536
|
-
onSizeChange: import("vue").PropType<
|
|
537
|
-
onLoadingChange: import("vue").PropType<
|
|
538
|
-
onRequestError: import("vue").PropType<
|
|
539
|
-
onBeforeSearchSubmit: import("vue").PropType<
|
|
540
|
-
onColumnsStateChange: import("vue").PropType<
|
|
424
|
+
onReset: import("vue").PropType<ProTableProps["onReset"]>;
|
|
425
|
+
onReload: import("vue").PropType<ProTableProps["onReload"]>;
|
|
426
|
+
onSubmit: import("vue").PropType<ProTableProps["onSubmit"]>;
|
|
427
|
+
onSizeChange: import("vue").PropType<ProTableProps["onSizeChange"]>;
|
|
428
|
+
onLoadingChange: import("vue").PropType<ProTableProps["onLoadingChange"]>;
|
|
429
|
+
onRequestError: import("vue").PropType<ProTableProps["onRequestError"]>;
|
|
430
|
+
onBeforeSearchSubmit: import("vue").PropType<ProTableProps["onBeforeSearchSubmit"]>;
|
|
431
|
+
onColumnsStateChange: import("vue").PropType<ProTableProps["onColumnsStateChange"]>;
|
|
541
432
|
prefixCls: {
|
|
542
433
|
type: import("vue").PropType<string>;
|
|
543
|
-
default:
|
|
434
|
+
default: undefined;
|
|
544
435
|
};
|
|
545
436
|
tableLayout: {
|
|
546
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
547
|
-
default:
|
|
437
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["tableLayout"]>;
|
|
438
|
+
default: undefined;
|
|
548
439
|
};
|
|
549
440
|
rowClassName: {
|
|
550
|
-
type: import("vue").PropType<
|
|
551
|
-
default:
|
|
441
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["rowClassName"]>;
|
|
442
|
+
default: undefined;
|
|
552
443
|
};
|
|
553
444
|
title: {
|
|
554
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
555
|
-
default:
|
|
445
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["title"]>;
|
|
446
|
+
default: undefined;
|
|
556
447
|
};
|
|
557
448
|
footer: {
|
|
558
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
559
|
-
default:
|
|
449
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["footer"]>;
|
|
450
|
+
default: undefined;
|
|
560
451
|
};
|
|
561
452
|
id: {
|
|
562
|
-
type: import("vue").PropType<
|
|
563
|
-
default:
|
|
453
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["id"]>;
|
|
454
|
+
default: undefined;
|
|
564
455
|
};
|
|
565
456
|
showHeader: {
|
|
566
|
-
type:
|
|
567
|
-
default:
|
|
457
|
+
type: import("vue").PropType<boolean>;
|
|
458
|
+
default: undefined;
|
|
568
459
|
};
|
|
569
460
|
components: {
|
|
570
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
571
|
-
default:
|
|
461
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["components"]>;
|
|
462
|
+
default: undefined;
|
|
572
463
|
};
|
|
573
464
|
customRow: {
|
|
574
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
575
|
-
default:
|
|
465
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["customRow"]>;
|
|
466
|
+
default: undefined;
|
|
576
467
|
};
|
|
577
468
|
customHeaderRow: {
|
|
578
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
579
|
-
default:
|
|
469
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["customHeaderRow"]>;
|
|
470
|
+
default: undefined;
|
|
580
471
|
};
|
|
581
472
|
direction: {
|
|
582
|
-
type: import("vue").PropType<"
|
|
583
|
-
default:
|
|
473
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["direction"]>;
|
|
474
|
+
default: undefined;
|
|
584
475
|
};
|
|
585
476
|
expandFixed: {
|
|
586
|
-
type: import("vue").PropType<
|
|
587
|
-
default:
|
|
477
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["expandFixed"]>;
|
|
478
|
+
default: undefined;
|
|
479
|
+
};
|
|
480
|
+
expandColumnWidth: {
|
|
481
|
+
type: import("vue").PropType<number>;
|
|
482
|
+
default: undefined;
|
|
588
483
|
};
|
|
589
|
-
expandColumnWidth: NumberConstructor;
|
|
590
484
|
expandedRowKeys: {
|
|
591
|
-
type: import("vue").PropType<
|
|
592
|
-
default:
|
|
485
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["expandedRowKeys"]>;
|
|
486
|
+
default: undefined;
|
|
593
487
|
};
|
|
594
488
|
defaultExpandedRowKeys: {
|
|
595
|
-
type: import("vue").PropType<
|
|
596
|
-
default:
|
|
489
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["defaultExpandedRowKeys"]>;
|
|
490
|
+
default: undefined;
|
|
597
491
|
};
|
|
598
492
|
expandedRowRender: {
|
|
599
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
600
|
-
default:
|
|
493
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["expandedRowRender"]>;
|
|
494
|
+
default: undefined;
|
|
601
495
|
};
|
|
602
496
|
expandRowByClick: {
|
|
603
|
-
type:
|
|
604
|
-
default:
|
|
497
|
+
type: import("vue").PropType<boolean>;
|
|
498
|
+
default: undefined;
|
|
605
499
|
};
|
|
606
500
|
expandIcon: {
|
|
607
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
608
|
-
default:
|
|
501
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["expandIcon"]>;
|
|
502
|
+
default: undefined;
|
|
609
503
|
};
|
|
610
504
|
onExpand: {
|
|
611
|
-
type: import("vue").PropType<(
|
|
612
|
-
default:
|
|
505
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["onExpand"]>;
|
|
506
|
+
default: undefined;
|
|
613
507
|
};
|
|
614
508
|
onExpandedRowsChange: {
|
|
615
|
-
type: import("vue").PropType<(
|
|
616
|
-
default:
|
|
509
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["onExpandedRowsChange"]>;
|
|
510
|
+
default: undefined;
|
|
617
511
|
};
|
|
618
512
|
'onUpdate:expandedRowKeys': {
|
|
619
|
-
type: import("vue").PropType<(
|
|
620
|
-
default:
|
|
513
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["onExpandedRowsChange"]>;
|
|
514
|
+
default: undefined;
|
|
621
515
|
};
|
|
622
516
|
defaultExpandAllRows: {
|
|
623
|
-
type:
|
|
624
|
-
default:
|
|
517
|
+
type: import("vue").PropType<boolean>;
|
|
518
|
+
default: undefined;
|
|
519
|
+
};
|
|
520
|
+
indentSize: {
|
|
521
|
+
type: import("vue").PropType<number>;
|
|
522
|
+
default: undefined;
|
|
523
|
+
};
|
|
524
|
+
expandIconColumnIndex: {
|
|
525
|
+
type: import("vue").PropType<number>;
|
|
526
|
+
default: undefined;
|
|
625
527
|
};
|
|
626
|
-
indentSize: NumberConstructor;
|
|
627
|
-
expandIconColumnIndex: NumberConstructor;
|
|
628
528
|
showExpandColumn: {
|
|
629
|
-
type:
|
|
630
|
-
default:
|
|
529
|
+
type: import("vue").PropType<boolean>;
|
|
530
|
+
default: undefined;
|
|
631
531
|
};
|
|
632
532
|
expandedRowClassName: {
|
|
633
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
634
|
-
default:
|
|
533
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["expandedRowClassName"]>;
|
|
534
|
+
default: undefined;
|
|
635
535
|
};
|
|
636
536
|
childrenColumnName: {
|
|
637
|
-
type: import("vue").PropType<
|
|
638
|
-
default:
|
|
537
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["childrenColumnName"]>;
|
|
538
|
+
default: undefined;
|
|
639
539
|
};
|
|
640
540
|
rowExpandable: {
|
|
641
|
-
type: import("vue").PropType<(
|
|
642
|
-
default:
|
|
541
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["rowExpandable"]>;
|
|
542
|
+
default: undefined;
|
|
643
543
|
};
|
|
644
544
|
sticky: {
|
|
645
|
-
type: import("vue").PropType<
|
|
646
|
-
default:
|
|
545
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["sticky"]>;
|
|
546
|
+
default: undefined;
|
|
547
|
+
};
|
|
548
|
+
dropdownPrefixCls: {
|
|
549
|
+
type: import("vue").PropType<string>;
|
|
550
|
+
default: undefined;
|
|
647
551
|
};
|
|
648
|
-
dropdownPrefixCls: StringConstructor;
|
|
649
552
|
dataSource: {
|
|
650
|
-
type: import("vue").PropType<
|
|
651
|
-
default:
|
|
553
|
+
type: import("vue").PropType<import("ant-design-vue/es/vc-table/Table").TableProps["data"]>;
|
|
554
|
+
default: undefined;
|
|
652
555
|
};
|
|
653
556
|
loading: {
|
|
654
|
-
type: import("vue").PropType<boolean |
|
|
655
|
-
|
|
656
|
-
spinning: {
|
|
657
|
-
type: BooleanConstructor;
|
|
658
|
-
default: any;
|
|
659
|
-
};
|
|
660
|
-
size: import("vue").PropType<import("ant-design-vue/es/spin/Spin").SpinSize>;
|
|
661
|
-
wrapperClassName: StringConstructor;
|
|
662
|
-
tip: import("vue-types").VueTypeValidableDef<any>;
|
|
663
|
-
delay: NumberConstructor;
|
|
664
|
-
indicator: import("vue-types").VueTypeValidableDef<any>;
|
|
665
|
-
}>>>;
|
|
666
|
-
default: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
667
|
-
prefixCls: StringConstructor;
|
|
668
|
-
spinning: {
|
|
669
|
-
type: BooleanConstructor;
|
|
670
|
-
default: any;
|
|
671
|
-
};
|
|
672
|
-
size: import("vue").PropType<import("ant-design-vue/es/spin/Spin").SpinSize>;
|
|
673
|
-
wrapperClassName: StringConstructor;
|
|
674
|
-
tip: import("vue-types").VueTypeValidableDef<any>;
|
|
675
|
-
delay: NumberConstructor;
|
|
676
|
-
indicator: import("vue-types").VueTypeValidableDef<any>;
|
|
677
|
-
}>>;
|
|
557
|
+
type: import("vue").PropType<boolean | SpinProps>;
|
|
558
|
+
default: undefined;
|
|
678
559
|
};
|
|
679
560
|
locale: {
|
|
680
561
|
type: import("vue").PropType<import("ant-design-vue/es/table/interface").TableLocale>;
|
|
681
|
-
default:
|
|
562
|
+
default: undefined;
|
|
682
563
|
};
|
|
683
564
|
onChange: {
|
|
684
|
-
type: import("vue").PropType<(pagination: import("
|
|
685
|
-
default:
|
|
565
|
+
type: import("vue").PropType<(pagination: import("./types/TableTypings").ProTablePagination, filters: Record<string, FilterValue | null>, sorter: SorterResult | SorterResult[], extra: TableCurrentDataSource) => void>;
|
|
566
|
+
default: undefined;
|
|
686
567
|
};
|
|
687
568
|
onResizeColumn: {
|
|
688
|
-
type: import("vue").PropType<(w: number, col: import("ant-design-vue").TableColumnType
|
|
689
|
-
default:
|
|
569
|
+
type: import("vue").PropType<(w: number, col: import("ant-design-vue").TableColumnType) => void>;
|
|
570
|
+
default: undefined;
|
|
690
571
|
};
|
|
691
572
|
getPopupContainer: {
|
|
692
573
|
type: import("vue").PropType<import("ant-design-vue/es/table/interface").GetPopupContainer>;
|
|
693
|
-
default:
|
|
574
|
+
default: undefined;
|
|
694
575
|
};
|
|
695
576
|
scroll: {
|
|
696
|
-
type: import("vue").PropType<{
|
|
697
|
-
|
|
698
|
-
y?: string | number | undefined;
|
|
699
|
-
} & {
|
|
700
|
-
scrollToFirstRowOnChange?: boolean | undefined;
|
|
577
|
+
type: import("vue").PropType<import("ant-design-vue/es/vc-table/Table").TableProps["scroll"] & {
|
|
578
|
+
scrollToFirstRowOnChange?: boolean;
|
|
701
579
|
}>;
|
|
702
|
-
default:
|
|
703
|
-
x?: string | number | true | undefined;
|
|
704
|
-
y?: string | number | undefined;
|
|
705
|
-
} & {
|
|
706
|
-
scrollToFirstRowOnChange?: boolean | undefined;
|
|
707
|
-
};
|
|
580
|
+
default: undefined;
|
|
708
581
|
};
|
|
709
582
|
sortDirections: {
|
|
710
583
|
type: import("vue").PropType<import("ant-design-vue/es/table/interface").SortOrder[]>;
|
|
711
|
-
default:
|
|
584
|
+
default: undefined;
|
|
712
585
|
};
|
|
713
586
|
showSorterTooltip: {
|
|
714
|
-
type: import("vue").PropType<boolean |
|
|
715
|
-
|
|
716
|
-
trigger: import("vue").PropType<import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
717
|
-
open: {
|
|
718
|
-
type: BooleanConstructor;
|
|
719
|
-
default: any;
|
|
720
|
-
};
|
|
721
|
-
visible: {
|
|
722
|
-
type: BooleanConstructor;
|
|
723
|
-
default: any;
|
|
724
|
-
};
|
|
725
|
-
placement: import("vue").PropType<import("ant-design-vue/es/tooltip").TooltipPlacement>;
|
|
726
|
-
color: import("vue").PropType<import("ant-design-vue/es/_util/type").LiteralUnion<import("ant-design-vue/es/_util/colors").PresetColorType>>;
|
|
727
|
-
transitionName: StringConstructor;
|
|
728
|
-
overlayStyle: {
|
|
729
|
-
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
730
|
-
default: import("vue").CSSProperties;
|
|
731
|
-
};
|
|
732
|
-
overlayInnerStyle: {
|
|
733
|
-
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
734
|
-
default: import("vue").CSSProperties;
|
|
735
|
-
};
|
|
736
|
-
overlayClassName: StringConstructor;
|
|
737
|
-
openClassName: StringConstructor;
|
|
738
|
-
prefixCls: StringConstructor;
|
|
739
|
-
mouseEnterDelay: NumberConstructor;
|
|
740
|
-
mouseLeaveDelay: NumberConstructor;
|
|
741
|
-
getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
742
|
-
arrowPointAtCenter: {
|
|
743
|
-
type: BooleanConstructor;
|
|
744
|
-
default: any;
|
|
745
|
-
};
|
|
746
|
-
autoAdjustOverflow: {
|
|
747
|
-
type: import("vue").PropType<boolean | import("ant-design-vue/es/tooltip").AdjustOverflow>;
|
|
748
|
-
default: boolean | import("ant-design-vue/es/tooltip").AdjustOverflow;
|
|
749
|
-
};
|
|
750
|
-
destroyTooltipOnHide: {
|
|
751
|
-
type: BooleanConstructor;
|
|
752
|
-
default: any;
|
|
753
|
-
};
|
|
754
|
-
align: {
|
|
755
|
-
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").AlignType>;
|
|
756
|
-
default: import("ant-design-vue/es/vc-trigger/interface").AlignType;
|
|
757
|
-
};
|
|
758
|
-
builtinPlacements: {
|
|
759
|
-
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements>;
|
|
760
|
-
default: import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements;
|
|
761
|
-
};
|
|
762
|
-
children: ArrayConstructor;
|
|
763
|
-
onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
|
|
764
|
-
'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
|
|
765
|
-
onOpenChange: import("vue").PropType<(vis: boolean) => void>;
|
|
766
|
-
'onUpdate:open': import("vue").PropType<(vis: boolean) => void>;
|
|
767
|
-
}>>>;
|
|
768
|
-
default: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
769
|
-
title: import("vue-types").VueTypeValidableDef<any>;
|
|
770
|
-
trigger: import("vue").PropType<import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType[]>;
|
|
771
|
-
open: {
|
|
772
|
-
type: BooleanConstructor;
|
|
773
|
-
default: any;
|
|
774
|
-
};
|
|
775
|
-
visible: {
|
|
776
|
-
type: BooleanConstructor;
|
|
777
|
-
default: any;
|
|
778
|
-
};
|
|
779
|
-
placement: import("vue").PropType<import("ant-design-vue/es/tooltip").TooltipPlacement>;
|
|
780
|
-
color: import("vue").PropType<import("ant-design-vue/es/_util/type").LiteralUnion<import("ant-design-vue/es/_util/colors").PresetColorType>>;
|
|
781
|
-
transitionName: StringConstructor;
|
|
782
|
-
overlayStyle: {
|
|
783
|
-
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
784
|
-
default: import("vue").CSSProperties;
|
|
785
|
-
};
|
|
786
|
-
overlayInnerStyle: {
|
|
787
|
-
type: import("vue").PropType<import("vue").CSSProperties>;
|
|
788
|
-
default: import("vue").CSSProperties;
|
|
789
|
-
};
|
|
790
|
-
overlayClassName: StringConstructor;
|
|
791
|
-
openClassName: StringConstructor;
|
|
792
|
-
prefixCls: StringConstructor;
|
|
793
|
-
mouseEnterDelay: NumberConstructor;
|
|
794
|
-
mouseLeaveDelay: NumberConstructor;
|
|
795
|
-
getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
|
|
796
|
-
arrowPointAtCenter: {
|
|
797
|
-
type: BooleanConstructor;
|
|
798
|
-
default: any;
|
|
799
|
-
};
|
|
800
|
-
autoAdjustOverflow: {
|
|
801
|
-
type: import("vue").PropType<boolean | import("ant-design-vue/es/tooltip").AdjustOverflow>;
|
|
802
|
-
default: boolean | import("ant-design-vue/es/tooltip").AdjustOverflow;
|
|
803
|
-
};
|
|
804
|
-
destroyTooltipOnHide: {
|
|
805
|
-
type: BooleanConstructor;
|
|
806
|
-
default: any;
|
|
807
|
-
};
|
|
808
|
-
align: {
|
|
809
|
-
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").AlignType>;
|
|
810
|
-
default: import("ant-design-vue/es/vc-trigger/interface").AlignType;
|
|
811
|
-
};
|
|
812
|
-
builtinPlacements: {
|
|
813
|
-
type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements>;
|
|
814
|
-
default: import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements;
|
|
815
|
-
};
|
|
816
|
-
children: ArrayConstructor;
|
|
817
|
-
onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
|
|
818
|
-
'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
|
|
819
|
-
onOpenChange: import("vue").PropType<(vis: boolean) => void>;
|
|
820
|
-
'onUpdate:open': import("vue").PropType<(vis: boolean) => void>;
|
|
821
|
-
}>>;
|
|
587
|
+
type: import("vue").PropType<boolean | import("ant-design-vue").TooltipProps>;
|
|
588
|
+
default: boolean;
|
|
822
589
|
};
|
|
823
590
|
transformCellText: {
|
|
824
|
-
type: import("vue").PropType<import("ant-design-vue
|
|
825
|
-
default:
|
|
591
|
+
type: import("vue").PropType<import("ant-design-vue").TableProps["transformCellText"]>;
|
|
592
|
+
default: undefined;
|
|
826
593
|
};
|
|
827
|
-
}>> & {
|
|
594
|
+
}>> & Readonly<{
|
|
828
595
|
onExpand?: ((...args: any[]) => any) | undefined;
|
|
829
596
|
onExpandedRowsChange?: ((...args: any[]) => any) | undefined;
|
|
830
597
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -836,62 +603,10 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
836
603
|
onRequestError?: ((...args: any[]) => any) | undefined;
|
|
837
604
|
onBeforeSearchSubmit?: ((...args: any[]) => any) | undefined;
|
|
838
605
|
onColumnsStateChange?: ((...args: any[]) => any) | undefined;
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
y?: string | number | undefined;
|
|
844
|
-
} & {
|
|
845
|
-
scrollToFirstRowOnChange?: boolean | undefined;
|
|
846
|
-
};
|
|
847
|
-
prefixCls: string;
|
|
848
|
-
rowKey: string | (import("ant-design-vue/es/vc-table/interface").GetRowKey<import("./typing").DefaultRecordType> & string) | undefined;
|
|
849
|
-
tableLayout: import("ant-design-vue/es/vc-table/interface").TableLayout;
|
|
850
|
-
rowClassName: string | import("ant-design-vue/es/vc-table/interface").RowClassName<any>;
|
|
851
|
-
title: import("ant-design-vue/es/vc-table/interface").PanelRender<any>;
|
|
852
|
-
footer: import("ant-design-vue/es/vc-table/interface").PanelRender<any>;
|
|
853
|
-
id: string;
|
|
854
|
-
showHeader: boolean;
|
|
855
|
-
components: import("ant-design-vue/es/vc-table/interface").TableComponents<any>;
|
|
856
|
-
customRow: import("ant-design-vue/es/vc-table/interface").GetComponentProps<any>;
|
|
857
|
-
customHeaderRow: import("ant-design-vue/es/vc-table/interface").GetComponentProps<import("ant-design-vue/es/vc-table/interface").ColumnType<any>[]>;
|
|
858
|
-
direction: "ltr" | "rtl";
|
|
859
|
-
expandFixed: boolean | "right" | "left";
|
|
860
|
-
expandedRowKeys: Key[];
|
|
861
|
-
defaultExpandedRowKeys: Key[];
|
|
862
|
-
expandedRowRender: import("ant-design-vue/es/vc-table/interface").ExpandedRowRender<any>;
|
|
863
|
-
expandRowByClick: boolean;
|
|
864
|
-
expandIcon: import("ant-design-vue/es/vc-table/interface").RenderExpandIcon<any>;
|
|
865
|
-
onExpand: (expanded: boolean, record: any) => void;
|
|
866
|
-
onExpandedRowsChange: (expandedKeys: Key[]) => void;
|
|
867
|
-
defaultExpandAllRows: boolean;
|
|
868
|
-
showExpandColumn: boolean;
|
|
869
|
-
expandedRowClassName: import("ant-design-vue/es/vc-table/interface").RowClassName<any>;
|
|
870
|
-
childrenColumnName: string;
|
|
871
|
-
rowExpandable: (record: any) => boolean;
|
|
872
|
-
sticky: boolean | import("ant-design-vue/es/vc-table/interface").TableSticky;
|
|
873
|
-
transformCellText: import("ant-design-vue/es/vc-table/interface").TransformCellText<any>;
|
|
874
|
-
dataSource: any[];
|
|
875
|
-
pagination: ((false | import("ant-design-vue").TablePaginationConfig) & import("./types/TableTypings").ProTablePagination) | undefined;
|
|
876
|
-
loading: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
877
|
-
prefixCls: StringConstructor;
|
|
878
|
-
spinning: {
|
|
879
|
-
type: BooleanConstructor;
|
|
880
|
-
default: any;
|
|
881
|
-
};
|
|
882
|
-
size: import("vue").PropType<import("ant-design-vue/es/spin/Spin").SpinSize>;
|
|
883
|
-
wrapperClassName: StringConstructor;
|
|
884
|
-
tip: import("vue-types").VueTypeValidableDef<any>;
|
|
885
|
-
delay: NumberConstructor;
|
|
886
|
-
indicator: import("vue-types").VueTypeValidableDef<any>;
|
|
887
|
-
}>>;
|
|
888
|
-
size: "small" | "large" | "middle" | undefined;
|
|
889
|
-
bordered: boolean | undefined;
|
|
890
|
-
locale: import("ant-design-vue/es/table/interface").TableLocale;
|
|
891
|
-
onChange: (pagination: import("ant-design-vue").TablePaginationConfig, filters: Record<string, import("ant-design-vue/es/table/interface").FilterValue | null>, sorter: import("ant-design-vue/es/table/interface").SorterResult<any> | import("ant-design-vue/es/table/interface").SorterResult<any>[], extra: import("ant-design-vue/es/table/interface").TableCurrentDataSource<any>) => void;
|
|
892
|
-
onResizeColumn: (w: number, col: import("ant-design-vue").TableColumnType<any>) => void;
|
|
893
|
-
rowSelection: import("./types/TableTypings").ProTableRowSelection<any>;
|
|
894
|
-
getPopupContainer: import("ant-design-vue/es/table/interface").GetPopupContainer;
|
|
606
|
+
}>, {
|
|
607
|
+
title: import("ant-design-vue/es/vc-table/interface").PanelRender<any> | undefined;
|
|
608
|
+
customRender: import("./types/SlotsTypings").CustomDataRender | undefined;
|
|
609
|
+
align: "right" | "left" | "center" | undefined;
|
|
895
610
|
sortDirections: import("ant-design-vue/es/table/interface").SortOrder[];
|
|
896
611
|
showSorterTooltip: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
897
612
|
title: import("vue-types").VueTypeValidableDef<any>;
|
|
@@ -908,12 +623,12 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
908
623
|
color: import("vue").PropType<import("ant-design-vue/es/_util/type").LiteralUnion<import("ant-design-vue/es/_util/colors").PresetColorType>>;
|
|
909
624
|
transitionName: StringConstructor;
|
|
910
625
|
overlayStyle: {
|
|
911
|
-
type: import("vue").PropType<
|
|
912
|
-
default:
|
|
626
|
+
type: import("vue").PropType<CSSProperties>;
|
|
627
|
+
default: CSSProperties;
|
|
913
628
|
};
|
|
914
629
|
overlayInnerStyle: {
|
|
915
|
-
type: import("vue").PropType<
|
|
916
|
-
default:
|
|
630
|
+
type: import("vue").PropType<CSSProperties>;
|
|
631
|
+
default: CSSProperties;
|
|
917
632
|
};
|
|
918
633
|
overlayClassName: StringConstructor;
|
|
919
634
|
openClassName: StringConstructor;
|
|
@@ -925,6 +640,14 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
925
640
|
type: BooleanConstructor;
|
|
926
641
|
default: any;
|
|
927
642
|
};
|
|
643
|
+
arrow: {
|
|
644
|
+
type: import("vue").PropType<boolean | {
|
|
645
|
+
pointAtCenter?: boolean;
|
|
646
|
+
}>;
|
|
647
|
+
default: boolean | {
|
|
648
|
+
pointAtCenter?: boolean;
|
|
649
|
+
};
|
|
650
|
+
};
|
|
928
651
|
autoAdjustOverflow: {
|
|
929
652
|
type: import("vue").PropType<boolean | import("ant-design-vue/es/tooltip").AdjustOverflow>;
|
|
930
653
|
default: boolean | import("ant-design-vue/es/tooltip").AdjustOverflow;
|
|
@@ -947,24 +670,102 @@ declare const GProTable: import("vue").DefineComponent<{
|
|
|
947
670
|
onOpenChange: import("vue").PropType<(vis: boolean) => void>;
|
|
948
671
|
'onUpdate:open': import("vue").PropType<(vis: boolean) => void>;
|
|
949
672
|
}>>;
|
|
673
|
+
search: boolean | SearchConfig | undefined;
|
|
674
|
+
headerTitle: DefaultRender;
|
|
675
|
+
toolBarBtn: DefaultRender;
|
|
676
|
+
titleTip: DefaultRender;
|
|
677
|
+
settingExtra: DefaultRender;
|
|
678
|
+
optionsExtra: DefaultRender;
|
|
679
|
+
pageItemRender: import("./types/SlotsTypings").PageItemRender | undefined;
|
|
680
|
+
columns: ProColumnsType<Record<string, any>, Record<string, any>> | undefined;
|
|
681
|
+
dataSource: any[] | undefined;
|
|
682
|
+
scroll: {
|
|
683
|
+
x?: number | true | string;
|
|
684
|
+
y?: number | string;
|
|
685
|
+
} & {
|
|
686
|
+
scrollToFirstRowOnChange?: boolean;
|
|
687
|
+
};
|
|
688
|
+
emptyText: DefaultRender;
|
|
689
|
+
prefixCls: string;
|
|
690
|
+
rowKey: string;
|
|
691
|
+
tableLayout: import("ant-design-vue/es/vc-table/interface").TableLayout | undefined;
|
|
692
|
+
rowClassName: string | import("ant-design-vue/es/vc-table/interface").RowClassName<any> | undefined;
|
|
693
|
+
footer: import("ant-design-vue/es/vc-table/interface").PanelRender<any> | undefined;
|
|
694
|
+
id: string | undefined;
|
|
695
|
+
showHeader: boolean;
|
|
696
|
+
components: import("ant-design-vue/es/vc-table/interface").TableComponents<any> | undefined;
|
|
697
|
+
customRow: import("ant-design-vue/es/vc-table/interface").GetComponentProps<any> | undefined;
|
|
698
|
+
customHeaderRow: import("ant-design-vue/es/vc-table/interface").GetComponentProps<import("ant-design-vue/es/vc-table/interface").ColumnType<any>[]> | undefined;
|
|
699
|
+
direction: "ltr" | "rtl" | undefined;
|
|
700
|
+
expandFixed: boolean | "right" | "left" | undefined;
|
|
701
|
+
expandColumnWidth: number;
|
|
702
|
+
expandedRowKeys: Key[] | undefined;
|
|
703
|
+
defaultExpandedRowKeys: Key[] | undefined;
|
|
704
|
+
expandedRowRender: import("ant-design-vue/es/vc-table/interface").ExpandedRowRender<any> | undefined;
|
|
705
|
+
expandRowByClick: boolean;
|
|
706
|
+
expandIcon: import("ant-design-vue/es/vc-table/interface").RenderExpandIcon<any> | undefined;
|
|
707
|
+
onExpand: ((expanded: boolean, record: any) => void) | undefined;
|
|
708
|
+
onExpandedRowsChange: ((expandedKeys: Key[]) => void) | undefined;
|
|
709
|
+
defaultExpandAllRows: boolean;
|
|
710
|
+
indentSize: number;
|
|
711
|
+
expandIconColumnIndex: number;
|
|
712
|
+
showExpandColumn: boolean;
|
|
713
|
+
expandedRowClassName: import("ant-design-vue/es/vc-table/interface").RowClassName<any> | undefined;
|
|
714
|
+
childrenColumnName: string | undefined;
|
|
715
|
+
rowExpandable: ((record: any) => boolean) | undefined;
|
|
716
|
+
sticky: boolean | import("ant-design-vue/es/vc-table/interface").TableSticky | undefined;
|
|
717
|
+
transformCellText: import("ant-design-vue/es/vc-table/interface").TransformCellText<any> | undefined;
|
|
718
|
+
dropdownPrefixCls: string;
|
|
719
|
+
pagination: ((false | import("ant-design-vue").TablePaginationConfig) & import("./types/TableTypings").ProTablePagination) | undefined;
|
|
720
|
+
loading: boolean | Partial<import("vue").ExtractPropTypes<{
|
|
721
|
+
prefixCls: StringConstructor;
|
|
722
|
+
spinning: {
|
|
723
|
+
type: BooleanConstructor;
|
|
724
|
+
default: any;
|
|
725
|
+
};
|
|
726
|
+
size: import("vue").PropType<import("ant-design-vue/es/spin/Spin").SpinSize>;
|
|
727
|
+
wrapperClassName: StringConstructor;
|
|
728
|
+
tip: import("vue-types").VueTypeValidableDef<any>;
|
|
729
|
+
delay: NumberConstructor;
|
|
730
|
+
indicator: import("vue-types").VueTypeValidableDef<any>;
|
|
731
|
+
}>>;
|
|
732
|
+
size: "small" | "middle" | "large" | undefined;
|
|
733
|
+
bordered: boolean | undefined;
|
|
734
|
+
locale: import("ant-design-vue/es/table/interface").TableLocale;
|
|
735
|
+
onChange: (pagination: import("./types/TableTypings").ProTablePagination, filters: Record<string, FilterValue | null>, sorter: SorterResult | SorterResult[], extra: TableCurrentDataSource) => void;
|
|
736
|
+
onResizeColumn: (w: number, col: import("ant-design-vue").TableColumnType) => void;
|
|
737
|
+
rowSelection: import("./types/TableTypings").ProTableRowSelection;
|
|
738
|
+
getPopupContainer: import("ant-design-vue/es/table/interface").GetPopupContainer;
|
|
950
739
|
autoScroll: boolean | undefined;
|
|
740
|
+
tableProps: {
|
|
741
|
+
class?: string;
|
|
742
|
+
style?: CSSProperties;
|
|
743
|
+
} | undefined;
|
|
951
744
|
titleTipText: string | undefined;
|
|
745
|
+
emptyTextProps: {
|
|
746
|
+
class?: string;
|
|
747
|
+
style?: CSSProperties;
|
|
748
|
+
extraProps?: Record<string, any>;
|
|
749
|
+
} | undefined;
|
|
952
750
|
columnEmptyText: import("./types/TableTypings").ProFieldEmptyText | undefined;
|
|
751
|
+
showLoading: boolean | undefined;
|
|
953
752
|
showIndex: boolean | undefined;
|
|
954
|
-
align: import("ant-design-vue/es/vc-table/interface").AlignType | undefined;
|
|
955
753
|
options: boolean | OptionConfig | undefined;
|
|
956
754
|
waitRequest: boolean | undefined;
|
|
957
755
|
debounceTime: number | undefined;
|
|
958
|
-
request: import("./types/TableTypings").RequsetFunction<
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
756
|
+
request: import("./types/TableTypings").RequsetFunction<Record<string, any>, Record<string, any>> | undefined;
|
|
757
|
+
searchMap: import("./types/ColumnTypings").ProSearchMap<undefined, string>[] | undefined;
|
|
758
|
+
'onUpdate:expandedRowKeys': ((expandedKeys: Key[]) => void) | undefined;
|
|
759
|
+
}, SlotsType<{
|
|
760
|
+
search(): void;
|
|
761
|
+
emptyText(): void;
|
|
762
|
+
optionsExtra(): void;
|
|
763
|
+
settingExtra(): void;
|
|
764
|
+
titleTip(): void;
|
|
765
|
+
toolBarBtn(): void;
|
|
766
|
+
headerTitle(): void;
|
|
767
|
+
default(): void;
|
|
768
|
+
pageItemRender(): void;
|
|
769
|
+
customRender(currenData: any[], dataSource: any[]): void;
|
|
770
|
+
} & AntTabelSlotsType>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
771
|
+
export default ProTable;
|