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