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