@vtj/ui 0.8.95 → 0.8.97
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 +6522 -6523
- package/dist/index.umd.js +12 -12
- package/dist/style.css +1 -1
- package/package.json +4 -4
- package/types/components/action/Action.d.ts +12 -12
- package/types/components/action/hooks.d.ts +2 -2
- package/types/components/action-bar/ActionBar.d.ts +8 -8
- package/types/components/attachment/Attachment.d.ts +11 -3
- package/types/components/attachment/props.d.ts +4 -0
- package/types/components/{image-code-input/ImageCodeInput.d.ts → captcha/Captcha.d.ts} +16 -13
- package/types/components/captcha/index.d.ts +4 -0
- package/types/components/captcha/types.d.ts +20 -0
- package/types/components/data-item/DataItem.d.ts +8 -8
- package/types/components/grid/Grid.d.ts +176 -176
- package/types/components/grid/hooks/useLoader.d.ts +176 -176
- package/types/components/grid/hooks/useState.d.ts +176 -176
- package/types/components/index.d.ts +2 -2
- package/types/components/mask/Mask.d.ts +8 -8
- package/types/components/tabs/Tabs.d.ts +4 -4
- package/types/components/verify/Verify.d.ts +43 -0
- package/types/components/verify/index.d.ts +4 -0
- package/types/components/verify/types.d.ts +18 -0
- package/types/version.d.ts +2 -2
- package/types/components/image-code-input/index.d.ts +0 -4
- package/types/components/image-code-input/types.d.ts +0 -32
- package/types/components/sms-code-input/SmsCodeInput.d.ts +0 -3
- package/types/components/sms-code-input/index.d.ts +0 -4
- package/types/components/sms-code-input/types.d.ts +0 -1
|
@@ -5,9 +5,9 @@ import { VNode } from 'vue';
|
|
|
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 | undefined;
|
|
9
|
+
pageSize?: number | undefined;
|
|
10
|
+
total?: number | undefined;
|
|
11
11
|
filters?: {
|
|
12
12
|
column: {
|
|
13
13
|
property: import("vxe-table/types/column").VxeColumnPropTypes.Field;
|
|
@@ -33,160 +33,160 @@ export declare function useState(props: GridProps): {
|
|
|
33
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) | undefined;
|
|
37
37
|
value?: any;
|
|
38
38
|
data?: any;
|
|
39
39
|
resetValue?: any;
|
|
40
|
-
checked?: boolean;
|
|
40
|
+
checked?: boolean | undefined;
|
|
41
41
|
}[];
|
|
42
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[] | undefined;
|
|
46
46
|
optionProps?: {
|
|
47
|
-
value?: string;
|
|
48
|
-
label?: string;
|
|
49
|
-
disabled?: string;
|
|
50
|
-
key?: string;
|
|
47
|
+
value?: string | undefined;
|
|
48
|
+
label?: string | undefined;
|
|
49
|
+
disabled?: string | undefined;
|
|
50
|
+
key?: string | undefined;
|
|
51
51
|
} | undefined;
|
|
52
|
-
optionGroups?: any[];
|
|
52
|
+
optionGroups?: any[] | undefined;
|
|
53
53
|
optionGroupProps?: {
|
|
54
|
-
options?: string;
|
|
55
|
-
label?: string;
|
|
56
|
-
key?: string;
|
|
54
|
+
options?: string | undefined;
|
|
55
|
+
label?: string | undefined;
|
|
56
|
+
key?: string | undefined;
|
|
57
57
|
} | undefined;
|
|
58
|
-
content?: string;
|
|
59
|
-
name?: string;
|
|
58
|
+
content?: string | undefined;
|
|
59
|
+
name?: string | undefined;
|
|
60
60
|
props?: {
|
|
61
61
|
[key: string]: any;
|
|
62
|
-
};
|
|
62
|
+
} | undefined;
|
|
63
63
|
attrs?: {
|
|
64
64
|
[key: string]: any;
|
|
65
|
-
};
|
|
65
|
+
} | undefined;
|
|
66
66
|
events?: {
|
|
67
67
|
[key: string]: (...args: any[]) => any;
|
|
68
|
-
};
|
|
69
|
-
children?: any[];
|
|
70
|
-
cellType?: "string" | "number";
|
|
68
|
+
} | undefined;
|
|
69
|
+
children?: any[] | undefined;
|
|
70
|
+
cellType?: ("string" | "number") | undefined;
|
|
71
71
|
};
|
|
72
72
|
treeNode: import("vxe-table/types/column").VxeColumnPropTypes.TreeNode;
|
|
73
73
|
visible: import("vxe-table/types/column").VxeColumnPropTypes.Visible;
|
|
74
74
|
exportMethod: import("vxe-table/types/column").VxeColumnPropTypes.ExportMethod<VxeTableDataRow>;
|
|
75
75
|
footerExportMethod: import("vxe-table/types/column").VxeColumnPropTypes.FooterExportMethod;
|
|
76
76
|
titleHelp: {
|
|
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;
|
|
77
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML | undefined;
|
|
78
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content | undefined;
|
|
79
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable | undefined;
|
|
80
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme | undefined;
|
|
81
|
+
icon?: string | undefined;
|
|
82
|
+
message?: string | undefined;
|
|
83
83
|
};
|
|
84
84
|
titlePrefix: {
|
|
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;
|
|
85
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML | undefined;
|
|
86
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content | undefined;
|
|
87
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable | undefined;
|
|
88
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme | undefined;
|
|
89
|
+
icon?: string | undefined;
|
|
90
|
+
message?: string | undefined;
|
|
91
91
|
};
|
|
92
92
|
titleSuffix: {
|
|
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;
|
|
93
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML | undefined;
|
|
94
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content | undefined;
|
|
95
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable | undefined;
|
|
96
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme | undefined;
|
|
97
|
+
icon?: string | undefined;
|
|
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[] | undefined;
|
|
105
105
|
optionProps?: {
|
|
106
|
-
value?: string;
|
|
107
|
-
label?: string;
|
|
108
|
-
disabled?: string;
|
|
109
|
-
key?: string;
|
|
106
|
+
value?: string | undefined;
|
|
107
|
+
label?: string | undefined;
|
|
108
|
+
disabled?: string | undefined;
|
|
109
|
+
key?: string | undefined;
|
|
110
110
|
} | undefined;
|
|
111
|
-
optionGroups?: any[];
|
|
111
|
+
optionGroups?: any[] | undefined;
|
|
112
112
|
optionGroupProps?: {
|
|
113
|
-
options?: string;
|
|
114
|
-
label?: string;
|
|
115
|
-
key?: string;
|
|
113
|
+
options?: string | undefined;
|
|
114
|
+
label?: string | undefined;
|
|
115
|
+
key?: string | undefined;
|
|
116
116
|
} | undefined;
|
|
117
|
-
content?: string;
|
|
118
|
-
name?: string;
|
|
117
|
+
content?: string | undefined;
|
|
118
|
+
name?: string | undefined;
|
|
119
119
|
props?: {
|
|
120
120
|
[key: string]: any;
|
|
121
|
-
};
|
|
121
|
+
} | undefined;
|
|
122
122
|
attrs?: {
|
|
123
123
|
[key: string]: any;
|
|
124
|
-
};
|
|
125
|
-
children?: any[];
|
|
126
|
-
cellType?: "string" | "number";
|
|
124
|
+
} | undefined;
|
|
125
|
+
children?: any[] | undefined;
|
|
126
|
+
cellType?: ("string" | "number") | undefined;
|
|
127
127
|
};
|
|
128
128
|
editRender: {
|
|
129
129
|
events?: {
|
|
130
130
|
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.EditSlotParams, ...args: any[]) => any;
|
|
131
|
-
};
|
|
132
|
-
enabled?: boolean;
|
|
133
|
-
options?: any[];
|
|
131
|
+
} | undefined;
|
|
132
|
+
enabled?: boolean | undefined;
|
|
133
|
+
options?: any[] | undefined;
|
|
134
134
|
optionProps?: {
|
|
135
|
-
value?: string;
|
|
136
|
-
label?: string;
|
|
137
|
-
disabled?: string;
|
|
138
|
-
key?: string;
|
|
135
|
+
value?: string | undefined;
|
|
136
|
+
label?: string | undefined;
|
|
137
|
+
disabled?: string | undefined;
|
|
138
|
+
key?: string | undefined;
|
|
139
139
|
} | undefined;
|
|
140
|
-
optionGroups?: any[];
|
|
140
|
+
optionGroups?: any[] | undefined;
|
|
141
141
|
optionGroupProps?: {
|
|
142
|
-
options?: string;
|
|
143
|
-
label?: string;
|
|
144
|
-
key?: string;
|
|
142
|
+
options?: string | undefined;
|
|
143
|
+
label?: string | undefined;
|
|
144
|
+
key?: string | undefined;
|
|
145
145
|
} | undefined;
|
|
146
|
-
autofocus?: string;
|
|
147
|
-
autoselect?: boolean;
|
|
146
|
+
autofocus?: string | undefined;
|
|
147
|
+
autoselect?: boolean | undefined;
|
|
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 | undefined;
|
|
152
|
+
content?: string | undefined;
|
|
153
|
+
placeholder?: string | undefined;
|
|
154
|
+
name?: string | undefined;
|
|
155
155
|
props?: {
|
|
156
156
|
[key: string]: any;
|
|
157
|
-
};
|
|
157
|
+
} | undefined;
|
|
158
158
|
attrs?: {
|
|
159
159
|
[key: string]: any;
|
|
160
|
-
};
|
|
161
|
-
children?: any[];
|
|
162
|
-
cellType?: "string" | "number";
|
|
160
|
+
} | undefined;
|
|
161
|
+
children?: any[] | undefined;
|
|
162
|
+
cellType?: ("string" | "number") | undefined;
|
|
163
163
|
};
|
|
164
164
|
contentRender: {
|
|
165
|
-
options?: any[];
|
|
165
|
+
options?: any[] | undefined;
|
|
166
166
|
optionProps?: {
|
|
167
|
-
value?: string;
|
|
168
|
-
label?: string;
|
|
169
|
-
disabled?: string;
|
|
170
|
-
key?: string;
|
|
167
|
+
value?: string | undefined;
|
|
168
|
+
label?: string | undefined;
|
|
169
|
+
disabled?: string | undefined;
|
|
170
|
+
key?: string | undefined;
|
|
171
171
|
} | undefined;
|
|
172
|
-
optionGroups?: any[];
|
|
172
|
+
optionGroups?: any[] | undefined;
|
|
173
173
|
optionGroupProps?: {
|
|
174
|
-
options?: string;
|
|
175
|
-
label?: string;
|
|
176
|
-
key?: string;
|
|
174
|
+
options?: string | undefined;
|
|
175
|
+
label?: string | undefined;
|
|
176
|
+
key?: string | undefined;
|
|
177
177
|
} | undefined;
|
|
178
|
-
name?: string;
|
|
178
|
+
name?: string | undefined;
|
|
179
179
|
props?: {
|
|
180
180
|
[key: string]: any;
|
|
181
|
-
};
|
|
181
|
+
} | undefined;
|
|
182
182
|
attrs?: {
|
|
183
183
|
[key: string]: any;
|
|
184
|
-
};
|
|
184
|
+
} | undefined;
|
|
185
185
|
events?: {
|
|
186
186
|
[key: string]: (...args: any[]) => any;
|
|
187
|
-
};
|
|
188
|
-
children?: any[];
|
|
189
|
-
cellType?: "string" | "number";
|
|
187
|
+
} | undefined;
|
|
188
|
+
children?: any[] | undefined;
|
|
189
|
+
cellType?: ("string" | "number") | undefined;
|
|
190
190
|
};
|
|
191
191
|
params: import("vxe-table/types/column").VxeColumnPropTypes.Params;
|
|
192
192
|
slots: {
|
|
@@ -262,160 +262,160 @@ export declare function useState(props: GridProps): {
|
|
|
262
262
|
sortBy: import("vxe-table/types/column").VxeColumnPropTypes.SortBy;
|
|
263
263
|
sortType: import("vxe-table/types/column").VxeColumnPropTypes.SortType;
|
|
264
264
|
filters: {
|
|
265
|
-
label?: string | number;
|
|
265
|
+
label?: (string | number) | undefined;
|
|
266
266
|
value?: any;
|
|
267
267
|
data?: any;
|
|
268
268
|
resetValue?: any;
|
|
269
|
-
checked?: boolean;
|
|
269
|
+
checked?: boolean | undefined;
|
|
270
270
|
}[];
|
|
271
271
|
filterMultiple: import("vxe-table/types/column").VxeColumnPropTypes.FilterMultiple;
|
|
272
272
|
filterMethod: import("vxe-table/types/column").VxeColumnPropTypes.FilterMethod<VxeTableDataRow>;
|
|
273
273
|
filterRender: {
|
|
274
|
-
options?: any[];
|
|
274
|
+
options?: any[] | undefined;
|
|
275
275
|
optionProps?: {
|
|
276
|
-
value?: string;
|
|
277
|
-
label?: string;
|
|
278
|
-
disabled?: string;
|
|
279
|
-
key?: string;
|
|
276
|
+
value?: string | undefined;
|
|
277
|
+
label?: string | undefined;
|
|
278
|
+
disabled?: string | undefined;
|
|
279
|
+
key?: string | undefined;
|
|
280
280
|
} | undefined;
|
|
281
|
-
optionGroups?: any[];
|
|
281
|
+
optionGroups?: any[] | undefined;
|
|
282
282
|
optionGroupProps?: {
|
|
283
|
-
options?: string;
|
|
284
|
-
label?: string;
|
|
285
|
-
key?: string;
|
|
283
|
+
options?: string | undefined;
|
|
284
|
+
label?: string | undefined;
|
|
285
|
+
key?: string | undefined;
|
|
286
286
|
} | undefined;
|
|
287
|
-
content?: string;
|
|
288
|
-
name?: string;
|
|
287
|
+
content?: string | undefined;
|
|
288
|
+
name?: string | undefined;
|
|
289
289
|
props?: {
|
|
290
290
|
[key: string]: any;
|
|
291
|
-
};
|
|
291
|
+
} | undefined;
|
|
292
292
|
attrs?: {
|
|
293
293
|
[key: string]: any;
|
|
294
|
-
};
|
|
294
|
+
} | undefined;
|
|
295
295
|
events?: {
|
|
296
296
|
[key: string]: (...args: any[]) => any;
|
|
297
|
-
};
|
|
298
|
-
children?: any[];
|
|
299
|
-
cellType?: "string" | "number";
|
|
297
|
+
} | undefined;
|
|
298
|
+
children?: any[] | undefined;
|
|
299
|
+
cellType?: ("string" | "number") | undefined;
|
|
300
300
|
};
|
|
301
301
|
treeNode: import("vxe-table/types/column").VxeColumnPropTypes.TreeNode;
|
|
302
302
|
visible: import("vxe-table/types/column").VxeColumnPropTypes.Visible;
|
|
303
303
|
exportMethod: import("vxe-table/types/column").VxeColumnPropTypes.ExportMethod<VxeTableDataRow>;
|
|
304
304
|
footerExportMethod: import("vxe-table/types/column").VxeColumnPropTypes.FooterExportMethod;
|
|
305
305
|
titleHelp: {
|
|
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;
|
|
306
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML | undefined;
|
|
307
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content | undefined;
|
|
308
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable | undefined;
|
|
309
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme | undefined;
|
|
310
|
+
icon?: string | undefined;
|
|
311
|
+
message?: string | undefined;
|
|
312
312
|
};
|
|
313
313
|
titlePrefix: {
|
|
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;
|
|
314
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML | undefined;
|
|
315
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content | undefined;
|
|
316
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable | undefined;
|
|
317
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme | undefined;
|
|
318
|
+
icon?: string | undefined;
|
|
319
|
+
message?: string | undefined;
|
|
320
320
|
};
|
|
321
321
|
titleSuffix: {
|
|
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;
|
|
322
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML | undefined;
|
|
323
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content | undefined;
|
|
324
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable | undefined;
|
|
325
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme | undefined;
|
|
326
|
+
icon?: string | undefined;
|
|
327
327
|
};
|
|
328
328
|
cellType: import("vxe-table/types/column").VxeColumnPropTypes.CellType;
|
|
329
329
|
cellRender: {
|
|
330
330
|
events?: {
|
|
331
331
|
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
|
|
332
332
|
} | undefined;
|
|
333
|
-
options?: any[];
|
|
333
|
+
options?: any[] | undefined;
|
|
334
334
|
optionProps?: {
|
|
335
|
-
value?: string;
|
|
336
|
-
label?: string;
|
|
337
|
-
disabled?: string;
|
|
338
|
-
key?: string;
|
|
335
|
+
value?: string | undefined;
|
|
336
|
+
label?: string | undefined;
|
|
337
|
+
disabled?: string | undefined;
|
|
338
|
+
key?: string | undefined;
|
|
339
339
|
} | undefined;
|
|
340
|
-
optionGroups?: any[];
|
|
340
|
+
optionGroups?: any[] | undefined;
|
|
341
341
|
optionGroupProps?: {
|
|
342
|
-
options?: string;
|
|
343
|
-
label?: string;
|
|
344
|
-
key?: string;
|
|
342
|
+
options?: string | undefined;
|
|
343
|
+
label?: string | undefined;
|
|
344
|
+
key?: string | undefined;
|
|
345
345
|
} | undefined;
|
|
346
|
-
content?: string;
|
|
347
|
-
name?: string;
|
|
346
|
+
content?: string | undefined;
|
|
347
|
+
name?: string | undefined;
|
|
348
348
|
props?: {
|
|
349
349
|
[key: string]: any;
|
|
350
|
-
};
|
|
350
|
+
} | undefined;
|
|
351
351
|
attrs?: {
|
|
352
352
|
[key: string]: any;
|
|
353
|
-
};
|
|
354
|
-
children?: any[];
|
|
355
|
-
cellType?: "string" | "number";
|
|
353
|
+
} | undefined;
|
|
354
|
+
children?: any[] | undefined;
|
|
355
|
+
cellType?: ("string" | "number") | undefined;
|
|
356
356
|
};
|
|
357
357
|
editRender: {
|
|
358
358
|
events?: {
|
|
359
359
|
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.EditSlotParams, ...args: any[]) => any;
|
|
360
|
-
};
|
|
361
|
-
enabled?: boolean;
|
|
362
|
-
options?: any[];
|
|
360
|
+
} | undefined;
|
|
361
|
+
enabled?: boolean | undefined;
|
|
362
|
+
options?: any[] | undefined;
|
|
363
363
|
optionProps?: {
|
|
364
|
-
value?: string;
|
|
365
|
-
label?: string;
|
|
366
|
-
disabled?: string;
|
|
367
|
-
key?: string;
|
|
364
|
+
value?: string | undefined;
|
|
365
|
+
label?: string | undefined;
|
|
366
|
+
disabled?: string | undefined;
|
|
367
|
+
key?: string | undefined;
|
|
368
368
|
} | undefined;
|
|
369
|
-
optionGroups?: any[];
|
|
369
|
+
optionGroups?: any[] | undefined;
|
|
370
370
|
optionGroupProps?: {
|
|
371
|
-
options?: string;
|
|
372
|
-
label?: string;
|
|
373
|
-
key?: string;
|
|
371
|
+
options?: string | undefined;
|
|
372
|
+
label?: string | undefined;
|
|
373
|
+
key?: string | undefined;
|
|
374
374
|
} | undefined;
|
|
375
|
-
autofocus?: string;
|
|
376
|
-
autoselect?: boolean;
|
|
375
|
+
autofocus?: string | undefined;
|
|
376
|
+
autoselect?: boolean | undefined;
|
|
377
377
|
defaultValue?: string | number | object | RegExp | any[] | Date | ((params: {
|
|
378
378
|
column: import("vxe-table/types/table").VxeTableDefines.ColumnInfo<VxeTableDataRow>;
|
|
379
379
|
}) => any) | null | undefined;
|
|
380
|
-
immediate?: boolean;
|
|
381
|
-
content?: string;
|
|
382
|
-
placeholder?: string;
|
|
383
|
-
name?: string;
|
|
380
|
+
immediate?: boolean | undefined;
|
|
381
|
+
content?: string | undefined;
|
|
382
|
+
placeholder?: string | undefined;
|
|
383
|
+
name?: string | undefined;
|
|
384
384
|
props?: {
|
|
385
385
|
[key: string]: any;
|
|
386
|
-
};
|
|
386
|
+
} | undefined;
|
|
387
387
|
attrs?: {
|
|
388
388
|
[key: string]: any;
|
|
389
|
-
};
|
|
390
|
-
children?: any[];
|
|
391
|
-
cellType?: "string" | "number";
|
|
389
|
+
} | undefined;
|
|
390
|
+
children?: any[] | undefined;
|
|
391
|
+
cellType?: ("string" | "number") | undefined;
|
|
392
392
|
};
|
|
393
393
|
contentRender: {
|
|
394
|
-
options?: any[];
|
|
394
|
+
options?: any[] | undefined;
|
|
395
395
|
optionProps?: {
|
|
396
|
-
value?: string;
|
|
397
|
-
label?: string;
|
|
398
|
-
disabled?: string;
|
|
399
|
-
key?: string;
|
|
396
|
+
value?: string | undefined;
|
|
397
|
+
label?: string | undefined;
|
|
398
|
+
disabled?: string | undefined;
|
|
399
|
+
key?: string | undefined;
|
|
400
400
|
} | undefined;
|
|
401
|
-
optionGroups?: any[];
|
|
401
|
+
optionGroups?: any[] | undefined;
|
|
402
402
|
optionGroupProps?: {
|
|
403
|
-
options?: string;
|
|
404
|
-
label?: string;
|
|
405
|
-
key?: string;
|
|
403
|
+
options?: string | undefined;
|
|
404
|
+
label?: string | undefined;
|
|
405
|
+
key?: string | undefined;
|
|
406
406
|
} | undefined;
|
|
407
|
-
name?: string;
|
|
407
|
+
name?: string | undefined;
|
|
408
408
|
props?: {
|
|
409
409
|
[key: string]: any;
|
|
410
|
-
};
|
|
410
|
+
} | undefined;
|
|
411
411
|
attrs?: {
|
|
412
412
|
[key: string]: any;
|
|
413
|
-
};
|
|
413
|
+
} | undefined;
|
|
414
414
|
events?: {
|
|
415
415
|
[key: string]: (...args: any[]) => any;
|
|
416
|
-
};
|
|
417
|
-
children?: any[];
|
|
418
|
-
cellType?: "string" | "number";
|
|
416
|
+
} | undefined;
|
|
417
|
+
children?: any[] | undefined;
|
|
418
|
+
cellType?: ("string" | "number") | undefined;
|
|
419
419
|
};
|
|
420
420
|
params: import("vxe-table/types/column").VxeColumnPropTypes.Params;
|
|
421
421
|
slots: {
|
|
@@ -466,7 +466,7 @@ export declare function useState(props: GridProps): {
|
|
|
466
466
|
order: import("vxe-table/types/table").VxeTablePropTypes.SortOrder;
|
|
467
467
|
sortTime: number;
|
|
468
468
|
}[] | undefined;
|
|
469
|
-
form?: Record<string, any
|
|
469
|
+
form?: Record<string, any> | undefined;
|
|
470
470
|
};
|
|
471
471
|
resetState: () => void;
|
|
472
472
|
};
|
|
@@ -17,9 +17,9 @@ export * from './list';
|
|
|
17
17
|
export * from './startup';
|
|
18
18
|
export * from './test';
|
|
19
19
|
export * from './input-unit';
|
|
20
|
-
export * from './
|
|
20
|
+
export * from './captcha';
|
|
21
21
|
export * from './qr-code';
|
|
22
|
-
export * from './
|
|
22
|
+
export * from './verify';
|
|
23
23
|
export * from './attachment';
|
|
24
24
|
export * from './query-form';
|
|
25
25
|
export * from './grid';
|
|
@@ -89,7 +89,7 @@ declare const __VLS_component: DefineComponent<{
|
|
|
89
89
|
readonly trigger: EpPropFinalized<(new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>) | ((new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
90
90
|
readonly effect: {
|
|
91
91
|
readonly default: "light";
|
|
92
|
-
readonly type: PropType<
|
|
92
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => ("light" | "dark") & {}) | (() => "light" | "dark") | ((new (...args: any[]) => ("light" | "dark") & {}) | (() => "light" | "dark"))[], unknown, unknown>>;
|
|
93
93
|
readonly required: false;
|
|
94
94
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
95
95
|
readonly __epPropKey: true;
|
|
@@ -112,7 +112,7 @@ declare const __VLS_component: DefineComponent<{
|
|
|
112
112
|
readonly tabindex: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
113
113
|
readonly maxHeight: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, "", boolean>;
|
|
114
114
|
readonly popperClass: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
115
|
-
readonly disabled:
|
|
115
|
+
readonly disabled: BooleanConstructor;
|
|
116
116
|
readonly role: EpPropFinalized<StringConstructor, unknown, unknown, "menu", boolean>;
|
|
117
117
|
readonly buttonProps: {
|
|
118
118
|
readonly type: PropType<ButtonProps>;
|
|
@@ -178,7 +178,7 @@ declare const __VLS_component: DefineComponent<{
|
|
|
178
178
|
readonly trigger: EpPropFinalized<(new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>) | ((new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
179
179
|
readonly effect: {
|
|
180
180
|
readonly default: "light";
|
|
181
|
-
readonly type: PropType<
|
|
181
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => ("light" | "dark") & {}) | (() => "light" | "dark") | ((new (...args: any[]) => ("light" | "dark") & {}) | (() => "light" | "dark"))[], unknown, unknown>>;
|
|
182
182
|
readonly required: false;
|
|
183
183
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
184
184
|
readonly __epPropKey: true;
|
|
@@ -201,7 +201,7 @@ declare const __VLS_component: DefineComponent<{
|
|
|
201
201
|
readonly tabindex: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
202
202
|
readonly maxHeight: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, "", boolean>;
|
|
203
203
|
readonly popperClass: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
204
|
-
readonly disabled:
|
|
204
|
+
readonly disabled: BooleanConstructor;
|
|
205
205
|
readonly role: EpPropFinalized<StringConstructor, unknown, unknown, "menu", boolean>;
|
|
206
206
|
readonly buttonProps: {
|
|
207
207
|
readonly type: PropType<ButtonProps>;
|
|
@@ -315,7 +315,7 @@ declare const __VLS_component: DefineComponent<{
|
|
|
315
315
|
readonly trigger: EpPropFinalized<(new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>) | ((new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
316
316
|
readonly effect: {
|
|
317
317
|
readonly default: "light";
|
|
318
|
-
readonly type: PropType<
|
|
318
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => ("light" | "dark") & {}) | (() => "light" | "dark") | ((new (...args: any[]) => ("light" | "dark") & {}) | (() => "light" | "dark"))[], unknown, unknown>>;
|
|
319
319
|
readonly required: false;
|
|
320
320
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
321
321
|
readonly __epPropKey: true;
|
|
@@ -338,7 +338,7 @@ declare const __VLS_component: DefineComponent<{
|
|
|
338
338
|
readonly tabindex: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
339
339
|
readonly maxHeight: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, "", boolean>;
|
|
340
340
|
readonly popperClass: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
341
|
-
readonly disabled:
|
|
341
|
+
readonly disabled: BooleanConstructor;
|
|
342
342
|
readonly role: EpPropFinalized<StringConstructor, unknown, unknown, "menu", boolean>;
|
|
343
343
|
readonly buttonProps: {
|
|
344
344
|
readonly type: PropType<ButtonProps>;
|
|
@@ -404,7 +404,7 @@ declare const __VLS_component: DefineComponent<{
|
|
|
404
404
|
readonly trigger: EpPropFinalized<(new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>) | ((new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
405
405
|
readonly effect: {
|
|
406
406
|
readonly default: "light";
|
|
407
|
-
readonly type: PropType<
|
|
407
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => ("light" | "dark") & {}) | (() => "light" | "dark") | ((new (...args: any[]) => ("light" | "dark") & {}) | (() => "light" | "dark"))[], unknown, unknown>>;
|
|
408
408
|
readonly required: false;
|
|
409
409
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
410
410
|
readonly __epPropKey: true;
|
|
@@ -427,7 +427,7 @@ declare const __VLS_component: DefineComponent<{
|
|
|
427
427
|
readonly tabindex: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
428
428
|
readonly maxHeight: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, "", boolean>;
|
|
429
429
|
readonly popperClass: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
430
|
-
readonly disabled:
|
|
430
|
+
readonly disabled: BooleanConstructor;
|
|
431
431
|
readonly role: EpPropFinalized<StringConstructor, unknown, unknown, "menu", boolean>;
|
|
432
432
|
readonly buttonProps: {
|
|
433
433
|
readonly type: PropType<ButtonProps>;
|
|
@@ -97,7 +97,7 @@ declare const __VLS_component: DefineComponent<{
|
|
|
97
97
|
readonly trigger: EpPropFinalized<(new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>) | ((new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
98
98
|
readonly effect: {
|
|
99
99
|
readonly default: "light";
|
|
100
|
-
readonly type: PropType<
|
|
100
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => ("light" | "dark") & {}) | (() => "light" | "dark") | ((new (...args: any[]) => ("light" | "dark") & {}) | (() => "light" | "dark"))[], unknown, unknown>>;
|
|
101
101
|
readonly required: false;
|
|
102
102
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
103
103
|
readonly __epPropKey: true;
|
|
@@ -120,7 +120,7 @@ declare const __VLS_component: DefineComponent<{
|
|
|
120
120
|
readonly tabindex: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
121
121
|
readonly maxHeight: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, "", boolean>;
|
|
122
122
|
readonly popperClass: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
123
|
-
readonly disabled:
|
|
123
|
+
readonly disabled: BooleanConstructor;
|
|
124
124
|
readonly role: EpPropFinalized<StringConstructor, unknown, unknown, "menu", boolean>;
|
|
125
125
|
readonly buttonProps: {
|
|
126
126
|
readonly type: PropType<ButtonProps>;
|
|
@@ -202,7 +202,7 @@ declare const __VLS_component: DefineComponent<{
|
|
|
202
202
|
readonly trigger: EpPropFinalized<(new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>) | ((new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
203
203
|
readonly effect: {
|
|
204
204
|
readonly default: "light";
|
|
205
|
-
readonly type: PropType<
|
|
205
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => ("light" | "dark") & {}) | (() => "light" | "dark") | ((new (...args: any[]) => ("light" | "dark") & {}) | (() => "light" | "dark"))[], unknown, unknown>>;
|
|
206
206
|
readonly required: false;
|
|
207
207
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
208
208
|
readonly __epPropKey: true;
|
|
@@ -225,7 +225,7 @@ declare const __VLS_component: DefineComponent<{
|
|
|
225
225
|
readonly tabindex: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
226
226
|
readonly maxHeight: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, "", boolean>;
|
|
227
227
|
readonly popperClass: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
228
|
-
readonly disabled:
|
|
228
|
+
readonly disabled: BooleanConstructor;
|
|
229
229
|
readonly role: EpPropFinalized<StringConstructor, unknown, unknown, "menu", boolean>;
|
|
230
230
|
readonly buttonProps: {
|
|
231
231
|
readonly type: PropType<ButtonProps>;
|