@vtj/ui 0.8.92 → 0.8.93
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/index.mjs +3 -3
- package/dist/index.umd.js +3 -3
- package/package.json +4 -4
- package/types/components/action/Action.d.ts +52 -124
- package/types/components/action/Trigger.d.ts +7 -81
- package/types/components/action/hooks.d.ts +6 -6
- package/types/components/action/types.d.ts +3 -41
- package/types/components/action-bar/ActionBar.d.ts +37 -285
- package/types/components/action-bar/types.d.ts +5 -43
- package/types/components/attachment/Attachment.d.ts +10 -8
- package/types/components/container/Container.d.ts +10 -8
- package/types/components/container/types.d.ts +2 -2
- package/types/components/data-item/DataItem.d.ts +38 -36
- package/types/components/dialog/Dialog.d.ts +14 -16
- package/types/components/dialog/types.d.ts +2 -4
- package/types/components/dialog-form/DialogForm.d.ts +12 -11
- package/types/components/dialog-form/types.d.ts +2 -3
- package/types/components/dialog-grid/DialogGrid.d.ts +8 -6
- package/types/components/field/Field.d.ts +23 -25
- package/types/components/field/editors/SelectEditor.d.ts +8 -6
- package/types/components/field/types.d.ts +3 -5
- package/types/components/form/Form.d.ts +10 -8
- package/types/components/grid/Grid.d.ts +281 -295
- package/types/components/grid/hooks/useEditRender.d.ts +2 -2
- package/types/components/grid/hooks/useLoader.d.ts +251 -267
- package/types/components/grid/hooks/useProps.d.ts +44 -44
- package/types/components/grid/hooks/useState.d.ts +251 -267
- package/types/components/grid/props.d.ts +3 -4
- package/types/components/header/Header.d.ts +8 -6
- package/types/components/icon/Icon.d.ts +9 -11
- package/types/components/icon/types.d.ts +2 -4
- package/types/components/import-button/ImportButton.d.ts +6 -4
- package/types/components/input-unit/InputUnit.d.ts +4 -4
- package/types/components/input-unit/types.d.ts +1 -1
- package/types/components/list/List.d.ts +12 -10
- package/types/components/mask/Mask.d.ts +41 -39
- package/types/components/mask/components/Avatar.d.ts +4 -2
- package/types/components/mask/components/Brand.d.ts +7 -5
- package/types/components/mask/components/Content.d.ts +4 -2
- package/types/components/mask/components/Sidebar.d.ts +4 -2
- package/types/components/mask/components/Toolbar.d.ts +6 -4
- package/types/components/panel/Panel.d.ts +20 -328
- package/types/components/panel/types.d.ts +6 -170
- package/types/components/picker/Picker.d.ts +14 -341
- package/types/components/picker/props.d.ts +7 -176
- package/types/components/qr-code/QrCode.d.ts +6 -4
- package/types/components/query-form/QueryForm.d.ts +29 -27
- package/types/components/tabs/Tabs.d.ts +48 -222
- package/types/components/tabs/types.d.ts +1 -1
- package/types/components/test/Test.d.ts +36 -34
- package/types/install.d.ts +1 -1
- package/types/utils/util.d.ts +1 -1
- package/types/version.d.ts +2 -2
|
@@ -1,206 +1,206 @@
|
|
|
1
1
|
import { GridProps } from '../types';
|
|
2
2
|
import { VxeTableDataRow, SlotVNodeType } from 'vxe-table';
|
|
3
|
-
import { VNode
|
|
3
|
+
import { VNode } from 'vue';
|
|
4
4
|
|
|
5
5
|
export declare function useState(props: GridProps): {
|
|
6
6
|
state: {
|
|
7
7
|
[x: string]: any;
|
|
8
|
-
page?: number
|
|
9
|
-
pageSize?: number
|
|
10
|
-
total?: number
|
|
8
|
+
page?: number;
|
|
9
|
+
pageSize?: number;
|
|
10
|
+
total?: number;
|
|
11
11
|
filters?: {
|
|
12
12
|
column: {
|
|
13
|
-
property:
|
|
13
|
+
property: import("vxe-table/types/column").VxeColumnPropTypes.Field;
|
|
14
14
|
type: import("vxe-table/types/column").VxeColumnPropTypes.Type;
|
|
15
|
-
field:
|
|
16
|
-
title:
|
|
15
|
+
field: import("vxe-table/types/column").VxeColumnPropTypes.Field;
|
|
16
|
+
title: import("vxe-table/types/column").VxeColumnPropTypes.Title;
|
|
17
17
|
width: import("vxe-table/types/column").VxeColumnPropTypes.Width;
|
|
18
18
|
minWidth: import("vxe-table/types/column").VxeColumnPropTypes.MinWidth;
|
|
19
19
|
maxWidth: import("vxe-table/types/column").VxeColumnPropTypes.MaxWidth;
|
|
20
|
-
resizable:
|
|
20
|
+
resizable: import("vxe-table/types/column").VxeColumnPropTypes.Resizable;
|
|
21
21
|
fixed: import("vxe-table/types/column").VxeColumnPropTypes.Fixed;
|
|
22
22
|
align: import("vxe-table/types/column").VxeColumnPropTypes.Align;
|
|
23
|
-
headerAlign: import("vxe-table/types/column").VxeColumnPropTypes.
|
|
24
|
-
footerAlign: import("vxe-table/types/column").VxeColumnPropTypes.
|
|
25
|
-
showOverflow: import("vxe-table/types/
|
|
26
|
-
showHeaderOverflow: import("vxe-table/types/
|
|
27
|
-
showFooterOverflow: import("vxe-table/types/
|
|
28
|
-
className: import("vxe-table/types/column").VxeColumnPropTypes.ClassName
|
|
29
|
-
headerClassName: import("vxe-table/types/column").VxeColumnPropTypes.HeaderClassName
|
|
30
|
-
footerClassName: import("vxe-table/types/column").VxeColumnPropTypes.FooterClassName
|
|
23
|
+
headerAlign: import("vxe-table/types/column").VxeColumnPropTypes.HeaderAlign;
|
|
24
|
+
footerAlign: import("vxe-table/types/column").VxeColumnPropTypes.FooterAlign;
|
|
25
|
+
showOverflow: import("vxe-table/types/column").VxeColumnPropTypes.ShowOverflow;
|
|
26
|
+
showHeaderOverflow: import("vxe-table/types/column").VxeColumnPropTypes.ShowHeaderOverflow;
|
|
27
|
+
showFooterOverflow: import("vxe-table/types/column").VxeColumnPropTypes.ShowFooterOverflow;
|
|
28
|
+
className: import("vxe-table/types/column").VxeColumnPropTypes.ClassName;
|
|
29
|
+
headerClassName: import("vxe-table/types/column").VxeColumnPropTypes.HeaderClassName;
|
|
30
|
+
footerClassName: import("vxe-table/types/column").VxeColumnPropTypes.FooterClassName;
|
|
31
31
|
formatter: import("vxe-table/types/column").VxeColumnPropTypes.Formatter<VxeTableDataRow>;
|
|
32
|
-
sortable:
|
|
33
|
-
sortBy: import("vxe-table/types/column").VxeColumnPropTypes.SortBy
|
|
32
|
+
sortable: import("vxe-table/types/column").VxeColumnPropTypes.Sortable;
|
|
33
|
+
sortBy: import("vxe-table/types/column").VxeColumnPropTypes.SortBy;
|
|
34
34
|
sortType: import("vxe-table/types/column").VxeColumnPropTypes.SortType;
|
|
35
35
|
filters: {
|
|
36
|
-
label?: string | number
|
|
36
|
+
label?: string | number;
|
|
37
37
|
value?: any;
|
|
38
38
|
data?: any;
|
|
39
39
|
resetValue?: any;
|
|
40
|
-
checked?: boolean
|
|
40
|
+
checked?: boolean;
|
|
41
41
|
}[];
|
|
42
|
-
filterMultiple:
|
|
42
|
+
filterMultiple: import("vxe-table/types/column").VxeColumnPropTypes.FilterMultiple;
|
|
43
43
|
filterMethod: import("vxe-table/types/column").VxeColumnPropTypes.FilterMethod<VxeTableDataRow>;
|
|
44
44
|
filterRender: {
|
|
45
|
-
options?: any[]
|
|
45
|
+
options?: any[];
|
|
46
46
|
optionProps?: {
|
|
47
|
-
value?: string
|
|
48
|
-
label?: string
|
|
49
|
-
disabled?: string
|
|
50
|
-
key?: string
|
|
47
|
+
value?: string;
|
|
48
|
+
label?: string;
|
|
49
|
+
disabled?: string;
|
|
50
|
+
key?: string;
|
|
51
51
|
} | undefined;
|
|
52
|
-
optionGroups?: any[]
|
|
52
|
+
optionGroups?: any[];
|
|
53
53
|
optionGroupProps?: {
|
|
54
|
-
options?: string
|
|
55
|
-
label?: string
|
|
56
|
-
key?: string
|
|
54
|
+
options?: string;
|
|
55
|
+
label?: string;
|
|
56
|
+
key?: string;
|
|
57
57
|
} | undefined;
|
|
58
|
-
content?: string
|
|
59
|
-
name?: string
|
|
58
|
+
content?: string;
|
|
59
|
+
name?: string;
|
|
60
60
|
props?: {
|
|
61
61
|
[key: string]: any;
|
|
62
|
-
}
|
|
62
|
+
};
|
|
63
63
|
attrs?: {
|
|
64
64
|
[key: string]: any;
|
|
65
|
-
}
|
|
65
|
+
};
|
|
66
66
|
events?: {
|
|
67
67
|
[key: string]: (...args: any[]) => any;
|
|
68
|
-
}
|
|
69
|
-
children?: any[]
|
|
70
|
-
cellType?: "string" | "number"
|
|
68
|
+
};
|
|
69
|
+
children?: any[];
|
|
70
|
+
cellType?: "string" | "number";
|
|
71
71
|
};
|
|
72
|
-
treeNode:
|
|
73
|
-
visible:
|
|
72
|
+
treeNode: import("vxe-table/types/column").VxeColumnPropTypes.TreeNode;
|
|
73
|
+
visible: import("vxe-table/types/column").VxeColumnPropTypes.Visible;
|
|
74
74
|
exportMethod: import("vxe-table/types/column").VxeColumnPropTypes.ExportMethod<VxeTableDataRow>;
|
|
75
|
-
footerExportMethod: import("vxe-table/types/column").VxeColumnPropTypes.FooterExportMethod
|
|
75
|
+
footerExportMethod: import("vxe-table/types/column").VxeColumnPropTypes.FooterExportMethod;
|
|
76
76
|
titleHelp: {
|
|
77
|
-
useHTML?:
|
|
78
|
-
content?: import("vxe-table").VxeTooltipPropTypes.Content
|
|
79
|
-
enterable?:
|
|
80
|
-
theme?:
|
|
81
|
-
icon?: string
|
|
82
|
-
message?: string
|
|
77
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML;
|
|
78
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content;
|
|
79
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable;
|
|
80
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme;
|
|
81
|
+
icon?: string;
|
|
82
|
+
message?: string;
|
|
83
83
|
};
|
|
84
84
|
titlePrefix: {
|
|
85
|
-
useHTML?:
|
|
86
|
-
content?: import("vxe-table").VxeTooltipPropTypes.Content
|
|
87
|
-
enterable?:
|
|
88
|
-
theme?:
|
|
89
|
-
icon?: string
|
|
90
|
-
message?: string
|
|
85
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML;
|
|
86
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content;
|
|
87
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable;
|
|
88
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme;
|
|
89
|
+
icon?: string;
|
|
90
|
+
message?: string;
|
|
91
91
|
};
|
|
92
92
|
titleSuffix: {
|
|
93
|
-
useHTML?:
|
|
94
|
-
content?: import("vxe-table").VxeTooltipPropTypes.Content
|
|
95
|
-
enterable?:
|
|
96
|
-
theme?:
|
|
97
|
-
icon?: string
|
|
93
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML;
|
|
94
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content;
|
|
95
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable;
|
|
96
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme;
|
|
97
|
+
icon?: string;
|
|
98
98
|
};
|
|
99
99
|
cellType: import("vxe-table/types/column").VxeColumnPropTypes.CellType;
|
|
100
100
|
cellRender: {
|
|
101
101
|
events?: {
|
|
102
102
|
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
|
|
103
103
|
} | undefined;
|
|
104
|
-
options?: any[]
|
|
104
|
+
options?: any[];
|
|
105
105
|
optionProps?: {
|
|
106
|
-
value?: string
|
|
107
|
-
label?: string
|
|
108
|
-
disabled?: string
|
|
109
|
-
key?: string
|
|
106
|
+
value?: string;
|
|
107
|
+
label?: string;
|
|
108
|
+
disabled?: string;
|
|
109
|
+
key?: string;
|
|
110
110
|
} | undefined;
|
|
111
|
-
optionGroups?: any[]
|
|
111
|
+
optionGroups?: any[];
|
|
112
112
|
optionGroupProps?: {
|
|
113
|
-
options?: string
|
|
114
|
-
label?: string
|
|
115
|
-
key?: string
|
|
113
|
+
options?: string;
|
|
114
|
+
label?: string;
|
|
115
|
+
key?: string;
|
|
116
116
|
} | undefined;
|
|
117
|
-
content?: string
|
|
118
|
-
name?: string
|
|
117
|
+
content?: string;
|
|
118
|
+
name?: string;
|
|
119
119
|
props?: {
|
|
120
120
|
[key: string]: any;
|
|
121
|
-
}
|
|
121
|
+
};
|
|
122
122
|
attrs?: {
|
|
123
123
|
[key: string]: any;
|
|
124
|
-
}
|
|
125
|
-
children?: any[]
|
|
126
|
-
cellType?: "string" | "number"
|
|
124
|
+
};
|
|
125
|
+
children?: any[];
|
|
126
|
+
cellType?: "string" | "number";
|
|
127
127
|
};
|
|
128
128
|
editRender: {
|
|
129
129
|
events?: {
|
|
130
|
-
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.EditSlotParams
|
|
131
|
-
}
|
|
132
|
-
enabled?: boolean
|
|
133
|
-
options?: any[]
|
|
130
|
+
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.EditSlotParams, ...args: any[]) => any;
|
|
131
|
+
};
|
|
132
|
+
enabled?: boolean;
|
|
133
|
+
options?: any[];
|
|
134
134
|
optionProps?: {
|
|
135
|
-
value?: string
|
|
136
|
-
label?: string
|
|
137
|
-
disabled?: string
|
|
138
|
-
key?: string
|
|
135
|
+
value?: string;
|
|
136
|
+
label?: string;
|
|
137
|
+
disabled?: string;
|
|
138
|
+
key?: string;
|
|
139
139
|
} | undefined;
|
|
140
|
-
optionGroups?: any[]
|
|
140
|
+
optionGroups?: any[];
|
|
141
141
|
optionGroupProps?: {
|
|
142
|
-
options?: string
|
|
143
|
-
label?: string
|
|
144
|
-
key?: string
|
|
142
|
+
options?: string;
|
|
143
|
+
label?: string;
|
|
144
|
+
key?: string;
|
|
145
145
|
} | undefined;
|
|
146
|
-
autofocus?: string
|
|
147
|
-
autoselect?: boolean
|
|
146
|
+
autofocus?: string;
|
|
147
|
+
autoselect?: boolean;
|
|
148
148
|
defaultValue?: string | number | object | RegExp | any[] | Date | ((params: {
|
|
149
149
|
column: import("vxe-table/types/table").VxeTableDefines.ColumnInfo<VxeTableDataRow>;
|
|
150
150
|
}) => any) | null | undefined;
|
|
151
|
-
immediate?: boolean
|
|
152
|
-
content?: string
|
|
153
|
-
placeholder?: string
|
|
154
|
-
name?: string
|
|
151
|
+
immediate?: boolean;
|
|
152
|
+
content?: string;
|
|
153
|
+
placeholder?: string;
|
|
154
|
+
name?: string;
|
|
155
155
|
props?: {
|
|
156
156
|
[key: string]: any;
|
|
157
|
-
}
|
|
157
|
+
};
|
|
158
158
|
attrs?: {
|
|
159
159
|
[key: string]: any;
|
|
160
|
-
}
|
|
161
|
-
children?: any[]
|
|
162
|
-
cellType?: "string" | "number"
|
|
160
|
+
};
|
|
161
|
+
children?: any[];
|
|
162
|
+
cellType?: "string" | "number";
|
|
163
163
|
};
|
|
164
164
|
contentRender: {
|
|
165
|
-
options?: any[]
|
|
165
|
+
options?: any[];
|
|
166
166
|
optionProps?: {
|
|
167
|
-
value?: string
|
|
168
|
-
label?: string
|
|
169
|
-
disabled?: string
|
|
170
|
-
key?: string
|
|
167
|
+
value?: string;
|
|
168
|
+
label?: string;
|
|
169
|
+
disabled?: string;
|
|
170
|
+
key?: string;
|
|
171
171
|
} | undefined;
|
|
172
|
-
optionGroups?: any[]
|
|
172
|
+
optionGroups?: any[];
|
|
173
173
|
optionGroupProps?: {
|
|
174
|
-
options?: string
|
|
175
|
-
label?: string
|
|
176
|
-
key?: string
|
|
174
|
+
options?: string;
|
|
175
|
+
label?: string;
|
|
176
|
+
key?: string;
|
|
177
177
|
} | undefined;
|
|
178
|
-
name?: string
|
|
178
|
+
name?: string;
|
|
179
179
|
props?: {
|
|
180
180
|
[key: string]: any;
|
|
181
|
-
}
|
|
181
|
+
};
|
|
182
182
|
attrs?: {
|
|
183
183
|
[key: string]: any;
|
|
184
|
-
}
|
|
184
|
+
};
|
|
185
185
|
events?: {
|
|
186
186
|
[key: string]: (...args: any[]) => any;
|
|
187
|
-
}
|
|
188
|
-
children?: any[]
|
|
189
|
-
cellType?: "string" | "number"
|
|
187
|
+
};
|
|
188
|
+
children?: any[];
|
|
189
|
+
cellType?: "string" | "number";
|
|
190
190
|
};
|
|
191
|
-
params:
|
|
191
|
+
params: import("vxe-table/types/column").VxeColumnPropTypes.Params;
|
|
192
192
|
slots: {
|
|
193
|
-
title?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
194
|
-
radio?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.RadioSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
195
|
-
checkbox?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.CheckboxSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
196
|
-
default?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
197
|
-
header?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
198
|
-
footer?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
199
|
-
content?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
200
|
-
filter?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
201
|
-
edit?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
202
|
-
valid?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.ValidSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
203
|
-
icon?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
193
|
+
title?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
194
|
+
radio?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.RadioSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
195
|
+
checkbox?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.CheckboxSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
196
|
+
default?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
197
|
+
header?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
198
|
+
footer?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
199
|
+
content?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
200
|
+
filter?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
201
|
+
edit?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
202
|
+
valid?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.ValidSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
203
|
+
icon?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
204
204
|
};
|
|
205
205
|
id: string;
|
|
206
206
|
parentId: string;
|
|
@@ -225,219 +225,211 @@ export declare function useState(props: GridProps): {
|
|
|
225
225
|
value: any;
|
|
226
226
|
};
|
|
227
227
|
children: any[];
|
|
228
|
-
renderHeader: (params: import("vxe-table/types/table").VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
[key: string]: any;
|
|
233
|
-
}>[];
|
|
234
|
-
renderData: (params: import("vxe-table/types/table").VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
|
|
235
|
-
[key: string]: any;
|
|
236
|
-
}>[];
|
|
237
|
-
renderFooter: (params: import("vxe-table/types/table").VxeTableDefines.CellRenderFooterParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
|
|
238
|
-
[key: string]: any;
|
|
239
|
-
}>[];
|
|
228
|
+
renderHeader: (params: import("vxe-table/types/table").VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode[];
|
|
229
|
+
renderCell: (params: import("vxe-table/types/table").VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode[];
|
|
230
|
+
renderData: (params: import("vxe-table/types/table").VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode[];
|
|
231
|
+
renderFooter: (params: import("vxe-table/types/table").VxeTableDefines.CellRenderFooterParams<VxeTableDataRow>) => VNode[];
|
|
240
232
|
getTitle: () => string;
|
|
241
233
|
getKey: () => string;
|
|
242
234
|
};
|
|
243
|
-
field:
|
|
244
|
-
property:
|
|
235
|
+
field: import("vxe-table/types/column").VxeColumnPropTypes.Field;
|
|
236
|
+
property: import("vxe-table/types/column").VxeColumnPropTypes.Field;
|
|
245
237
|
values: any[];
|
|
246
238
|
datas: any[];
|
|
247
239
|
}[] | undefined;
|
|
248
240
|
sorts?: {
|
|
249
241
|
column: {
|
|
250
|
-
property:
|
|
242
|
+
property: import("vxe-table/types/column").VxeColumnPropTypes.Field;
|
|
251
243
|
type: import("vxe-table/types/column").VxeColumnPropTypes.Type;
|
|
252
|
-
field:
|
|
253
|
-
title:
|
|
244
|
+
field: import("vxe-table/types/column").VxeColumnPropTypes.Field;
|
|
245
|
+
title: import("vxe-table/types/column").VxeColumnPropTypes.Title;
|
|
254
246
|
width: import("vxe-table/types/column").VxeColumnPropTypes.Width;
|
|
255
247
|
minWidth: import("vxe-table/types/column").VxeColumnPropTypes.MinWidth;
|
|
256
248
|
maxWidth: import("vxe-table/types/column").VxeColumnPropTypes.MaxWidth;
|
|
257
|
-
resizable:
|
|
249
|
+
resizable: import("vxe-table/types/column").VxeColumnPropTypes.Resizable;
|
|
258
250
|
fixed: import("vxe-table/types/column").VxeColumnPropTypes.Fixed;
|
|
259
251
|
align: import("vxe-table/types/column").VxeColumnPropTypes.Align;
|
|
260
|
-
headerAlign: import("vxe-table/types/column").VxeColumnPropTypes.
|
|
261
|
-
footerAlign: import("vxe-table/types/column").VxeColumnPropTypes.
|
|
262
|
-
showOverflow: import("vxe-table/types/
|
|
263
|
-
showHeaderOverflow: import("vxe-table/types/
|
|
264
|
-
showFooterOverflow: import("vxe-table/types/
|
|
265
|
-
className: import("vxe-table/types/column").VxeColumnPropTypes.ClassName
|
|
266
|
-
headerClassName: import("vxe-table/types/column").VxeColumnPropTypes.HeaderClassName
|
|
267
|
-
footerClassName: import("vxe-table/types/column").VxeColumnPropTypes.FooterClassName
|
|
252
|
+
headerAlign: import("vxe-table/types/column").VxeColumnPropTypes.HeaderAlign;
|
|
253
|
+
footerAlign: import("vxe-table/types/column").VxeColumnPropTypes.FooterAlign;
|
|
254
|
+
showOverflow: import("vxe-table/types/column").VxeColumnPropTypes.ShowOverflow;
|
|
255
|
+
showHeaderOverflow: import("vxe-table/types/column").VxeColumnPropTypes.ShowHeaderOverflow;
|
|
256
|
+
showFooterOverflow: import("vxe-table/types/column").VxeColumnPropTypes.ShowFooterOverflow;
|
|
257
|
+
className: import("vxe-table/types/column").VxeColumnPropTypes.ClassName;
|
|
258
|
+
headerClassName: import("vxe-table/types/column").VxeColumnPropTypes.HeaderClassName;
|
|
259
|
+
footerClassName: import("vxe-table/types/column").VxeColumnPropTypes.FooterClassName;
|
|
268
260
|
formatter: import("vxe-table/types/column").VxeColumnPropTypes.Formatter<VxeTableDataRow>;
|
|
269
|
-
sortable:
|
|
270
|
-
sortBy: import("vxe-table/types/column").VxeColumnPropTypes.SortBy
|
|
261
|
+
sortable: import("vxe-table/types/column").VxeColumnPropTypes.Sortable;
|
|
262
|
+
sortBy: import("vxe-table/types/column").VxeColumnPropTypes.SortBy;
|
|
271
263
|
sortType: import("vxe-table/types/column").VxeColumnPropTypes.SortType;
|
|
272
264
|
filters: {
|
|
273
|
-
label?: string | number
|
|
265
|
+
label?: string | number;
|
|
274
266
|
value?: any;
|
|
275
267
|
data?: any;
|
|
276
268
|
resetValue?: any;
|
|
277
|
-
checked?: boolean
|
|
269
|
+
checked?: boolean;
|
|
278
270
|
}[];
|
|
279
|
-
filterMultiple:
|
|
271
|
+
filterMultiple: import("vxe-table/types/column").VxeColumnPropTypes.FilterMultiple;
|
|
280
272
|
filterMethod: import("vxe-table/types/column").VxeColumnPropTypes.FilterMethod<VxeTableDataRow>;
|
|
281
273
|
filterRender: {
|
|
282
|
-
options?: any[]
|
|
274
|
+
options?: any[];
|
|
283
275
|
optionProps?: {
|
|
284
|
-
value?: string
|
|
285
|
-
label?: string
|
|
286
|
-
disabled?: string
|
|
287
|
-
key?: string
|
|
276
|
+
value?: string;
|
|
277
|
+
label?: string;
|
|
278
|
+
disabled?: string;
|
|
279
|
+
key?: string;
|
|
288
280
|
} | undefined;
|
|
289
|
-
optionGroups?: any[]
|
|
281
|
+
optionGroups?: any[];
|
|
290
282
|
optionGroupProps?: {
|
|
291
|
-
options?: string
|
|
292
|
-
label?: string
|
|
293
|
-
key?: string
|
|
283
|
+
options?: string;
|
|
284
|
+
label?: string;
|
|
285
|
+
key?: string;
|
|
294
286
|
} | undefined;
|
|
295
|
-
content?: string
|
|
296
|
-
name?: string
|
|
287
|
+
content?: string;
|
|
288
|
+
name?: string;
|
|
297
289
|
props?: {
|
|
298
290
|
[key: string]: any;
|
|
299
|
-
}
|
|
291
|
+
};
|
|
300
292
|
attrs?: {
|
|
301
293
|
[key: string]: any;
|
|
302
|
-
}
|
|
294
|
+
};
|
|
303
295
|
events?: {
|
|
304
296
|
[key: string]: (...args: any[]) => any;
|
|
305
|
-
}
|
|
306
|
-
children?: any[]
|
|
307
|
-
cellType?: "string" | "number"
|
|
297
|
+
};
|
|
298
|
+
children?: any[];
|
|
299
|
+
cellType?: "string" | "number";
|
|
308
300
|
};
|
|
309
|
-
treeNode:
|
|
310
|
-
visible:
|
|
301
|
+
treeNode: import("vxe-table/types/column").VxeColumnPropTypes.TreeNode;
|
|
302
|
+
visible: import("vxe-table/types/column").VxeColumnPropTypes.Visible;
|
|
311
303
|
exportMethod: import("vxe-table/types/column").VxeColumnPropTypes.ExportMethod<VxeTableDataRow>;
|
|
312
|
-
footerExportMethod: import("vxe-table/types/column").VxeColumnPropTypes.FooterExportMethod
|
|
304
|
+
footerExportMethod: import("vxe-table/types/column").VxeColumnPropTypes.FooterExportMethod;
|
|
313
305
|
titleHelp: {
|
|
314
|
-
useHTML?:
|
|
315
|
-
content?: import("vxe-table").VxeTooltipPropTypes.Content
|
|
316
|
-
enterable?:
|
|
317
|
-
theme?:
|
|
318
|
-
icon?: string
|
|
319
|
-
message?: string
|
|
306
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML;
|
|
307
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content;
|
|
308
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable;
|
|
309
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme;
|
|
310
|
+
icon?: string;
|
|
311
|
+
message?: string;
|
|
320
312
|
};
|
|
321
313
|
titlePrefix: {
|
|
322
|
-
useHTML?:
|
|
323
|
-
content?: import("vxe-table").VxeTooltipPropTypes.Content
|
|
324
|
-
enterable?:
|
|
325
|
-
theme?:
|
|
326
|
-
icon?: string
|
|
327
|
-
message?: string
|
|
314
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML;
|
|
315
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content;
|
|
316
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable;
|
|
317
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme;
|
|
318
|
+
icon?: string;
|
|
319
|
+
message?: string;
|
|
328
320
|
};
|
|
329
321
|
titleSuffix: {
|
|
330
|
-
useHTML?:
|
|
331
|
-
content?: import("vxe-table").VxeTooltipPropTypes.Content
|
|
332
|
-
enterable?:
|
|
333
|
-
theme?:
|
|
334
|
-
icon?: string
|
|
322
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML;
|
|
323
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content;
|
|
324
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable;
|
|
325
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme;
|
|
326
|
+
icon?: string;
|
|
335
327
|
};
|
|
336
328
|
cellType: import("vxe-table/types/column").VxeColumnPropTypes.CellType;
|
|
337
329
|
cellRender: {
|
|
338
330
|
events?: {
|
|
339
331
|
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
|
|
340
332
|
} | undefined;
|
|
341
|
-
options?: any[]
|
|
333
|
+
options?: any[];
|
|
342
334
|
optionProps?: {
|
|
343
|
-
value?: string
|
|
344
|
-
label?: string
|
|
345
|
-
disabled?: string
|
|
346
|
-
key?: string
|
|
335
|
+
value?: string;
|
|
336
|
+
label?: string;
|
|
337
|
+
disabled?: string;
|
|
338
|
+
key?: string;
|
|
347
339
|
} | undefined;
|
|
348
|
-
optionGroups?: any[]
|
|
340
|
+
optionGroups?: any[];
|
|
349
341
|
optionGroupProps?: {
|
|
350
|
-
options?: string
|
|
351
|
-
label?: string
|
|
352
|
-
key?: string
|
|
342
|
+
options?: string;
|
|
343
|
+
label?: string;
|
|
344
|
+
key?: string;
|
|
353
345
|
} | undefined;
|
|
354
|
-
content?: string
|
|
355
|
-
name?: string
|
|
346
|
+
content?: string;
|
|
347
|
+
name?: string;
|
|
356
348
|
props?: {
|
|
357
349
|
[key: string]: any;
|
|
358
|
-
}
|
|
350
|
+
};
|
|
359
351
|
attrs?: {
|
|
360
352
|
[key: string]: any;
|
|
361
|
-
}
|
|
362
|
-
children?: any[]
|
|
363
|
-
cellType?: "string" | "number"
|
|
353
|
+
};
|
|
354
|
+
children?: any[];
|
|
355
|
+
cellType?: "string" | "number";
|
|
364
356
|
};
|
|
365
357
|
editRender: {
|
|
366
358
|
events?: {
|
|
367
|
-
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.EditSlotParams
|
|
368
|
-
}
|
|
369
|
-
enabled?: boolean
|
|
370
|
-
options?: any[]
|
|
359
|
+
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.EditSlotParams, ...args: any[]) => any;
|
|
360
|
+
};
|
|
361
|
+
enabled?: boolean;
|
|
362
|
+
options?: any[];
|
|
371
363
|
optionProps?: {
|
|
372
|
-
value?: string
|
|
373
|
-
label?: string
|
|
374
|
-
disabled?: string
|
|
375
|
-
key?: string
|
|
364
|
+
value?: string;
|
|
365
|
+
label?: string;
|
|
366
|
+
disabled?: string;
|
|
367
|
+
key?: string;
|
|
376
368
|
} | undefined;
|
|
377
|
-
optionGroups?: any[]
|
|
369
|
+
optionGroups?: any[];
|
|
378
370
|
optionGroupProps?: {
|
|
379
|
-
options?: string
|
|
380
|
-
label?: string
|
|
381
|
-
key?: string
|
|
371
|
+
options?: string;
|
|
372
|
+
label?: string;
|
|
373
|
+
key?: string;
|
|
382
374
|
} | undefined;
|
|
383
|
-
autofocus?: string
|
|
384
|
-
autoselect?: boolean
|
|
375
|
+
autofocus?: string;
|
|
376
|
+
autoselect?: boolean;
|
|
385
377
|
defaultValue?: string | number | object | RegExp | any[] | Date | ((params: {
|
|
386
378
|
column: import("vxe-table/types/table").VxeTableDefines.ColumnInfo<VxeTableDataRow>;
|
|
387
379
|
}) => any) | null | undefined;
|
|
388
|
-
immediate?: boolean
|
|
389
|
-
content?: string
|
|
390
|
-
placeholder?: string
|
|
391
|
-
name?: string
|
|
380
|
+
immediate?: boolean;
|
|
381
|
+
content?: string;
|
|
382
|
+
placeholder?: string;
|
|
383
|
+
name?: string;
|
|
392
384
|
props?: {
|
|
393
385
|
[key: string]: any;
|
|
394
|
-
}
|
|
386
|
+
};
|
|
395
387
|
attrs?: {
|
|
396
388
|
[key: string]: any;
|
|
397
|
-
}
|
|
398
|
-
children?: any[]
|
|
399
|
-
cellType?: "string" | "number"
|
|
389
|
+
};
|
|
390
|
+
children?: any[];
|
|
391
|
+
cellType?: "string" | "number";
|
|
400
392
|
};
|
|
401
393
|
contentRender: {
|
|
402
|
-
options?: any[]
|
|
394
|
+
options?: any[];
|
|
403
395
|
optionProps?: {
|
|
404
|
-
value?: string
|
|
405
|
-
label?: string
|
|
406
|
-
disabled?: string
|
|
407
|
-
key?: string
|
|
396
|
+
value?: string;
|
|
397
|
+
label?: string;
|
|
398
|
+
disabled?: string;
|
|
399
|
+
key?: string;
|
|
408
400
|
} | undefined;
|
|
409
|
-
optionGroups?: any[]
|
|
401
|
+
optionGroups?: any[];
|
|
410
402
|
optionGroupProps?: {
|
|
411
|
-
options?: string
|
|
412
|
-
label?: string
|
|
413
|
-
key?: string
|
|
403
|
+
options?: string;
|
|
404
|
+
label?: string;
|
|
405
|
+
key?: string;
|
|
414
406
|
} | undefined;
|
|
415
|
-
name?: string
|
|
407
|
+
name?: string;
|
|
416
408
|
props?: {
|
|
417
409
|
[key: string]: any;
|
|
418
|
-
}
|
|
410
|
+
};
|
|
419
411
|
attrs?: {
|
|
420
412
|
[key: string]: any;
|
|
421
|
-
}
|
|
413
|
+
};
|
|
422
414
|
events?: {
|
|
423
415
|
[key: string]: (...args: any[]) => any;
|
|
424
|
-
}
|
|
425
|
-
children?: any[]
|
|
426
|
-
cellType?: "string" | "number"
|
|
416
|
+
};
|
|
417
|
+
children?: any[];
|
|
418
|
+
cellType?: "string" | "number";
|
|
427
419
|
};
|
|
428
|
-
params:
|
|
420
|
+
params: import("vxe-table/types/column").VxeColumnPropTypes.Params;
|
|
429
421
|
slots: {
|
|
430
|
-
title?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
431
|
-
radio?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.RadioSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
432
|
-
checkbox?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.CheckboxSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
433
|
-
default?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
434
|
-
header?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
435
|
-
footer?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
436
|
-
content?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
437
|
-
filter?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
438
|
-
edit?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
439
|
-
valid?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.ValidSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
440
|
-
icon?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType
|
|
422
|
+
title?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
423
|
+
radio?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.RadioSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
424
|
+
checkbox?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.CheckboxSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
425
|
+
default?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
426
|
+
header?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
427
|
+
footer?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
428
|
+
content?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
429
|
+
filter?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
430
|
+
edit?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
431
|
+
valid?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.ValidSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
432
|
+
icon?: string | ((params: import("vxe-table/types/column").VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType[] | SlotVNodeType) | null | undefined;
|
|
441
433
|
};
|
|
442
434
|
id: string;
|
|
443
435
|
parentId: string;
|
|
@@ -462,27 +454,19 @@ export declare function useState(props: GridProps): {
|
|
|
462
454
|
value: any;
|
|
463
455
|
};
|
|
464
456
|
children: any[];
|
|
465
|
-
renderHeader: (params: import("vxe-table/types/table").VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
[key: string]: any;
|
|
470
|
-
}>[];
|
|
471
|
-
renderData: (params: import("vxe-table/types/table").VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
|
|
472
|
-
[key: string]: any;
|
|
473
|
-
}>[];
|
|
474
|
-
renderFooter: (params: import("vxe-table/types/table").VxeTableDefines.CellRenderFooterParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
|
|
475
|
-
[key: string]: any;
|
|
476
|
-
}>[];
|
|
457
|
+
renderHeader: (params: import("vxe-table/types/table").VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode[];
|
|
458
|
+
renderCell: (params: import("vxe-table/types/table").VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode[];
|
|
459
|
+
renderData: (params: import("vxe-table/types/table").VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode[];
|
|
460
|
+
renderFooter: (params: import("vxe-table/types/table").VxeTableDefines.CellRenderFooterParams<VxeTableDataRow>) => VNode[];
|
|
477
461
|
getTitle: () => string;
|
|
478
462
|
getKey: () => string;
|
|
479
463
|
};
|
|
480
|
-
field:
|
|
481
|
-
property:
|
|
464
|
+
field: import("vxe-table/types/column").VxeColumnPropTypes.Field;
|
|
465
|
+
property: import("vxe-table/types/column").VxeColumnPropTypes.Field;
|
|
482
466
|
order: import("vxe-table/types/table").VxeTablePropTypes.SortOrder;
|
|
483
467
|
sortTime: number;
|
|
484
468
|
}[] | undefined;
|
|
485
|
-
form?: Record<string, any
|
|
469
|
+
form?: Record<string, any>;
|
|
486
470
|
};
|
|
487
471
|
resetState: () => void;
|
|
488
472
|
};
|