@vtj/ui 0.8.95 → 0.8.96
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 +6521 -6522
- package/dist/index.umd.js +12 -12
- package/dist/style.css +1 -1
- package/package.json +4 -4
- 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/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/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
|
@@ -102,9 +102,9 @@ declare const __VLS_component: DefineComponent<{
|
|
|
102
102
|
}, {
|
|
103
103
|
state: {
|
|
104
104
|
[x: string]: any;
|
|
105
|
-
page?: number;
|
|
106
|
-
pageSize?: number;
|
|
107
|
-
total?: number;
|
|
105
|
+
page?: number | undefined;
|
|
106
|
+
pageSize?: number | undefined;
|
|
107
|
+
total?: number | undefined;
|
|
108
108
|
filters?: {
|
|
109
109
|
column: {
|
|
110
110
|
property: import("vxe-table/types/column").VxeColumnPropTypes.Field;
|
|
@@ -130,160 +130,160 @@ declare const __VLS_component: DefineComponent<{
|
|
|
130
130
|
sortBy: import("vxe-table/types/column").VxeColumnPropTypes.SortBy;
|
|
131
131
|
sortType: import("vxe-table/types/column").VxeColumnPropTypes.SortType;
|
|
132
132
|
filters: {
|
|
133
|
-
label?: string | number;
|
|
133
|
+
label?: (string | number) | undefined;
|
|
134
134
|
value?: any;
|
|
135
135
|
data?: any;
|
|
136
136
|
resetValue?: any;
|
|
137
|
-
checked?: boolean;
|
|
137
|
+
checked?: boolean | undefined;
|
|
138
138
|
}[];
|
|
139
139
|
filterMultiple: import("vxe-table/types/column").VxeColumnPropTypes.FilterMultiple;
|
|
140
140
|
filterMethod: import("vxe-table/types/column").VxeColumnPropTypes.FilterMethod<VxeTableDataRow>;
|
|
141
141
|
filterRender: {
|
|
142
|
-
options?: any[];
|
|
142
|
+
options?: any[] | undefined;
|
|
143
143
|
optionProps?: {
|
|
144
|
-
value?: string;
|
|
145
|
-
label?: string;
|
|
146
|
-
disabled?: string;
|
|
147
|
-
key?: string;
|
|
144
|
+
value?: string | undefined;
|
|
145
|
+
label?: string | undefined;
|
|
146
|
+
disabled?: string | undefined;
|
|
147
|
+
key?: string | undefined;
|
|
148
148
|
} | undefined;
|
|
149
|
-
optionGroups?: any[];
|
|
149
|
+
optionGroups?: any[] | undefined;
|
|
150
150
|
optionGroupProps?: {
|
|
151
|
-
options?: string;
|
|
152
|
-
label?: string;
|
|
153
|
-
key?: string;
|
|
151
|
+
options?: string | undefined;
|
|
152
|
+
label?: string | undefined;
|
|
153
|
+
key?: string | undefined;
|
|
154
154
|
} | undefined;
|
|
155
|
-
content?: string;
|
|
156
|
-
name?: string;
|
|
155
|
+
content?: string | undefined;
|
|
156
|
+
name?: string | undefined;
|
|
157
157
|
props?: {
|
|
158
158
|
[key: string]: any;
|
|
159
|
-
};
|
|
159
|
+
} | undefined;
|
|
160
160
|
attrs?: {
|
|
161
161
|
[key: string]: any;
|
|
162
|
-
};
|
|
162
|
+
} | undefined;
|
|
163
163
|
events?: {
|
|
164
164
|
[key: string]: (...args: any[]) => any;
|
|
165
|
-
};
|
|
166
|
-
children?: any[];
|
|
167
|
-
cellType?: "string" | "number";
|
|
165
|
+
} | undefined;
|
|
166
|
+
children?: any[] | undefined;
|
|
167
|
+
cellType?: ("string" | "number") | undefined;
|
|
168
168
|
};
|
|
169
169
|
treeNode: import("vxe-table/types/column").VxeColumnPropTypes.TreeNode;
|
|
170
170
|
visible: import("vxe-table/types/column").VxeColumnPropTypes.Visible;
|
|
171
171
|
exportMethod: import("vxe-table/types/column").VxeColumnPropTypes.ExportMethod<VxeTableDataRow>;
|
|
172
172
|
footerExportMethod: import("vxe-table/types/column").VxeColumnPropTypes.FooterExportMethod;
|
|
173
173
|
titleHelp: {
|
|
174
|
-
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML;
|
|
175
|
-
content?: import("vxe-table").VxeTooltipPropTypes.Content;
|
|
176
|
-
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable;
|
|
177
|
-
theme?: import("vxe-table").VxeTooltipPropTypes.Theme;
|
|
178
|
-
icon?: string;
|
|
179
|
-
message?: string;
|
|
174
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML | undefined;
|
|
175
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content | undefined;
|
|
176
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable | undefined;
|
|
177
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme | undefined;
|
|
178
|
+
icon?: string | undefined;
|
|
179
|
+
message?: string | undefined;
|
|
180
180
|
};
|
|
181
181
|
titlePrefix: {
|
|
182
|
-
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML;
|
|
183
|
-
content?: import("vxe-table").VxeTooltipPropTypes.Content;
|
|
184
|
-
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable;
|
|
185
|
-
theme?: import("vxe-table").VxeTooltipPropTypes.Theme;
|
|
186
|
-
icon?: string;
|
|
187
|
-
message?: string;
|
|
182
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML | undefined;
|
|
183
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content | undefined;
|
|
184
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable | undefined;
|
|
185
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme | undefined;
|
|
186
|
+
icon?: string | undefined;
|
|
187
|
+
message?: string | undefined;
|
|
188
188
|
};
|
|
189
189
|
titleSuffix: {
|
|
190
|
-
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML;
|
|
191
|
-
content?: import("vxe-table").VxeTooltipPropTypes.Content;
|
|
192
|
-
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable;
|
|
193
|
-
theme?: import("vxe-table").VxeTooltipPropTypes.Theme;
|
|
194
|
-
icon?: string;
|
|
190
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML | undefined;
|
|
191
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content | undefined;
|
|
192
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable | undefined;
|
|
193
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme | undefined;
|
|
194
|
+
icon?: string | undefined;
|
|
195
195
|
};
|
|
196
196
|
cellType: import("vxe-table/types/column").VxeColumnPropTypes.CellType;
|
|
197
197
|
cellRender: {
|
|
198
198
|
events?: {
|
|
199
199
|
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
|
|
200
200
|
} | undefined;
|
|
201
|
-
options?: any[];
|
|
201
|
+
options?: any[] | undefined;
|
|
202
202
|
optionProps?: {
|
|
203
|
-
value?: string;
|
|
204
|
-
label?: string;
|
|
205
|
-
disabled?: string;
|
|
206
|
-
key?: string;
|
|
203
|
+
value?: string | undefined;
|
|
204
|
+
label?: string | undefined;
|
|
205
|
+
disabled?: string | undefined;
|
|
206
|
+
key?: string | undefined;
|
|
207
207
|
} | undefined;
|
|
208
|
-
optionGroups?: any[];
|
|
208
|
+
optionGroups?: any[] | undefined;
|
|
209
209
|
optionGroupProps?: {
|
|
210
|
-
options?: string;
|
|
211
|
-
label?: string;
|
|
212
|
-
key?: string;
|
|
210
|
+
options?: string | undefined;
|
|
211
|
+
label?: string | undefined;
|
|
212
|
+
key?: string | undefined;
|
|
213
213
|
} | undefined;
|
|
214
|
-
content?: string;
|
|
215
|
-
name?: string;
|
|
214
|
+
content?: string | undefined;
|
|
215
|
+
name?: string | undefined;
|
|
216
216
|
props?: {
|
|
217
217
|
[key: string]: any;
|
|
218
|
-
};
|
|
218
|
+
} | undefined;
|
|
219
219
|
attrs?: {
|
|
220
220
|
[key: string]: any;
|
|
221
|
-
};
|
|
222
|
-
children?: any[];
|
|
223
|
-
cellType?: "string" | "number";
|
|
221
|
+
} | undefined;
|
|
222
|
+
children?: any[] | undefined;
|
|
223
|
+
cellType?: ("string" | "number") | undefined;
|
|
224
224
|
};
|
|
225
225
|
editRender: {
|
|
226
226
|
events?: {
|
|
227
227
|
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.EditSlotParams, ...args: any[]) => any;
|
|
228
|
-
};
|
|
229
|
-
enabled?: boolean;
|
|
230
|
-
options?: any[];
|
|
228
|
+
} | undefined;
|
|
229
|
+
enabled?: boolean | undefined;
|
|
230
|
+
options?: any[] | undefined;
|
|
231
231
|
optionProps?: {
|
|
232
|
-
value?: string;
|
|
233
|
-
label?: string;
|
|
234
|
-
disabled?: string;
|
|
235
|
-
key?: string;
|
|
232
|
+
value?: string | undefined;
|
|
233
|
+
label?: string | undefined;
|
|
234
|
+
disabled?: string | undefined;
|
|
235
|
+
key?: string | undefined;
|
|
236
236
|
} | undefined;
|
|
237
|
-
optionGroups?: any[];
|
|
237
|
+
optionGroups?: any[] | undefined;
|
|
238
238
|
optionGroupProps?: {
|
|
239
|
-
options?: string;
|
|
240
|
-
label?: string;
|
|
241
|
-
key?: string;
|
|
239
|
+
options?: string | undefined;
|
|
240
|
+
label?: string | undefined;
|
|
241
|
+
key?: string | undefined;
|
|
242
242
|
} | undefined;
|
|
243
|
-
autofocus?: string;
|
|
244
|
-
autoselect?: boolean;
|
|
243
|
+
autofocus?: string | undefined;
|
|
244
|
+
autoselect?: boolean | undefined;
|
|
245
245
|
defaultValue?: string | number | object | RegExp | any[] | Date | ((params: {
|
|
246
246
|
column: import("vxe-table/types/table").VxeTableDefines.ColumnInfo<VxeTableDataRow>;
|
|
247
247
|
}) => any) | null | undefined;
|
|
248
|
-
immediate?: boolean;
|
|
249
|
-
content?: string;
|
|
250
|
-
placeholder?: string;
|
|
251
|
-
name?: string;
|
|
248
|
+
immediate?: boolean | undefined;
|
|
249
|
+
content?: string | undefined;
|
|
250
|
+
placeholder?: string | undefined;
|
|
251
|
+
name?: string | undefined;
|
|
252
252
|
props?: {
|
|
253
253
|
[key: string]: any;
|
|
254
|
-
};
|
|
254
|
+
} | undefined;
|
|
255
255
|
attrs?: {
|
|
256
256
|
[key: string]: any;
|
|
257
|
-
};
|
|
258
|
-
children?: any[];
|
|
259
|
-
cellType?: "string" | "number";
|
|
257
|
+
} | undefined;
|
|
258
|
+
children?: any[] | undefined;
|
|
259
|
+
cellType?: ("string" | "number") | undefined;
|
|
260
260
|
};
|
|
261
261
|
contentRender: {
|
|
262
|
-
options?: any[];
|
|
262
|
+
options?: any[] | undefined;
|
|
263
263
|
optionProps?: {
|
|
264
|
-
value?: string;
|
|
265
|
-
label?: string;
|
|
266
|
-
disabled?: string;
|
|
267
|
-
key?: string;
|
|
264
|
+
value?: string | undefined;
|
|
265
|
+
label?: string | undefined;
|
|
266
|
+
disabled?: string | undefined;
|
|
267
|
+
key?: string | undefined;
|
|
268
268
|
} | undefined;
|
|
269
|
-
optionGroups?: any[];
|
|
269
|
+
optionGroups?: any[] | undefined;
|
|
270
270
|
optionGroupProps?: {
|
|
271
|
-
options?: string;
|
|
272
|
-
label?: string;
|
|
273
|
-
key?: string;
|
|
271
|
+
options?: string | undefined;
|
|
272
|
+
label?: string | undefined;
|
|
273
|
+
key?: string | undefined;
|
|
274
274
|
} | undefined;
|
|
275
|
-
name?: string;
|
|
275
|
+
name?: string | undefined;
|
|
276
276
|
props?: {
|
|
277
277
|
[key: string]: any;
|
|
278
|
-
};
|
|
278
|
+
} | undefined;
|
|
279
279
|
attrs?: {
|
|
280
280
|
[key: string]: any;
|
|
281
|
-
};
|
|
281
|
+
} | undefined;
|
|
282
282
|
events?: {
|
|
283
283
|
[key: string]: (...args: any[]) => any;
|
|
284
|
-
};
|
|
285
|
-
children?: any[];
|
|
286
|
-
cellType?: "string" | "number";
|
|
284
|
+
} | undefined;
|
|
285
|
+
children?: any[] | undefined;
|
|
286
|
+
cellType?: ("string" | "number") | undefined;
|
|
287
287
|
};
|
|
288
288
|
params: import("vxe-table/types/column").VxeColumnPropTypes.Params;
|
|
289
289
|
slots: {
|
|
@@ -359,160 +359,160 @@ declare const __VLS_component: DefineComponent<{
|
|
|
359
359
|
sortBy: import("vxe-table/types/column").VxeColumnPropTypes.SortBy;
|
|
360
360
|
sortType: import("vxe-table/types/column").VxeColumnPropTypes.SortType;
|
|
361
361
|
filters: {
|
|
362
|
-
label?: string | number;
|
|
362
|
+
label?: (string | number) | undefined;
|
|
363
363
|
value?: any;
|
|
364
364
|
data?: any;
|
|
365
365
|
resetValue?: any;
|
|
366
|
-
checked?: boolean;
|
|
366
|
+
checked?: boolean | undefined;
|
|
367
367
|
}[];
|
|
368
368
|
filterMultiple: import("vxe-table/types/column").VxeColumnPropTypes.FilterMultiple;
|
|
369
369
|
filterMethod: import("vxe-table/types/column").VxeColumnPropTypes.FilterMethod<VxeTableDataRow>;
|
|
370
370
|
filterRender: {
|
|
371
|
-
options?: any[];
|
|
371
|
+
options?: any[] | undefined;
|
|
372
372
|
optionProps?: {
|
|
373
|
-
value?: string;
|
|
374
|
-
label?: string;
|
|
375
|
-
disabled?: string;
|
|
376
|
-
key?: string;
|
|
373
|
+
value?: string | undefined;
|
|
374
|
+
label?: string | undefined;
|
|
375
|
+
disabled?: string | undefined;
|
|
376
|
+
key?: string | undefined;
|
|
377
377
|
} | undefined;
|
|
378
|
-
optionGroups?: any[];
|
|
378
|
+
optionGroups?: any[] | undefined;
|
|
379
379
|
optionGroupProps?: {
|
|
380
|
-
options?: string;
|
|
381
|
-
label?: string;
|
|
382
|
-
key?: string;
|
|
380
|
+
options?: string | undefined;
|
|
381
|
+
label?: string | undefined;
|
|
382
|
+
key?: string | undefined;
|
|
383
383
|
} | undefined;
|
|
384
|
-
content?: string;
|
|
385
|
-
name?: string;
|
|
384
|
+
content?: string | undefined;
|
|
385
|
+
name?: string | undefined;
|
|
386
386
|
props?: {
|
|
387
387
|
[key: string]: any;
|
|
388
|
-
};
|
|
388
|
+
} | undefined;
|
|
389
389
|
attrs?: {
|
|
390
390
|
[key: string]: any;
|
|
391
|
-
};
|
|
391
|
+
} | undefined;
|
|
392
392
|
events?: {
|
|
393
393
|
[key: string]: (...args: any[]) => any;
|
|
394
|
-
};
|
|
395
|
-
children?: any[];
|
|
396
|
-
cellType?: "string" | "number";
|
|
394
|
+
} | undefined;
|
|
395
|
+
children?: any[] | undefined;
|
|
396
|
+
cellType?: ("string" | "number") | undefined;
|
|
397
397
|
};
|
|
398
398
|
treeNode: import("vxe-table/types/column").VxeColumnPropTypes.TreeNode;
|
|
399
399
|
visible: import("vxe-table/types/column").VxeColumnPropTypes.Visible;
|
|
400
400
|
exportMethod: import("vxe-table/types/column").VxeColumnPropTypes.ExportMethod<VxeTableDataRow>;
|
|
401
401
|
footerExportMethod: import("vxe-table/types/column").VxeColumnPropTypes.FooterExportMethod;
|
|
402
402
|
titleHelp: {
|
|
403
|
-
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML;
|
|
404
|
-
content?: import("vxe-table").VxeTooltipPropTypes.Content;
|
|
405
|
-
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable;
|
|
406
|
-
theme?: import("vxe-table").VxeTooltipPropTypes.Theme;
|
|
407
|
-
icon?: string;
|
|
408
|
-
message?: string;
|
|
403
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML | undefined;
|
|
404
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content | undefined;
|
|
405
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable | undefined;
|
|
406
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme | undefined;
|
|
407
|
+
icon?: string | undefined;
|
|
408
|
+
message?: string | undefined;
|
|
409
409
|
};
|
|
410
410
|
titlePrefix: {
|
|
411
|
-
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML;
|
|
412
|
-
content?: import("vxe-table").VxeTooltipPropTypes.Content;
|
|
413
|
-
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable;
|
|
414
|
-
theme?: import("vxe-table").VxeTooltipPropTypes.Theme;
|
|
415
|
-
icon?: string;
|
|
416
|
-
message?: string;
|
|
411
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML | undefined;
|
|
412
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content | undefined;
|
|
413
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable | undefined;
|
|
414
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme | undefined;
|
|
415
|
+
icon?: string | undefined;
|
|
416
|
+
message?: string | undefined;
|
|
417
417
|
};
|
|
418
418
|
titleSuffix: {
|
|
419
|
-
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML;
|
|
420
|
-
content?: import("vxe-table").VxeTooltipPropTypes.Content;
|
|
421
|
-
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable;
|
|
422
|
-
theme?: import("vxe-table").VxeTooltipPropTypes.Theme;
|
|
423
|
-
icon?: string;
|
|
419
|
+
useHTML?: import("vxe-table").VxeTooltipPropTypes.UseHTML | undefined;
|
|
420
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content | undefined;
|
|
421
|
+
enterable?: import("vxe-table").VxeTooltipPropTypes.Enterable | undefined;
|
|
422
|
+
theme?: import("vxe-table").VxeTooltipPropTypes.Theme | undefined;
|
|
423
|
+
icon?: string | undefined;
|
|
424
424
|
};
|
|
425
425
|
cellType: import("vxe-table/types/column").VxeColumnPropTypes.CellType;
|
|
426
426
|
cellRender: {
|
|
427
427
|
events?: {
|
|
428
428
|
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
|
|
429
429
|
} | undefined;
|
|
430
|
-
options?: any[];
|
|
430
|
+
options?: any[] | undefined;
|
|
431
431
|
optionProps?: {
|
|
432
|
-
value?: string;
|
|
433
|
-
label?: string;
|
|
434
|
-
disabled?: string;
|
|
435
|
-
key?: string;
|
|
432
|
+
value?: string | undefined;
|
|
433
|
+
label?: string | undefined;
|
|
434
|
+
disabled?: string | undefined;
|
|
435
|
+
key?: string | undefined;
|
|
436
436
|
} | undefined;
|
|
437
|
-
optionGroups?: any[];
|
|
437
|
+
optionGroups?: any[] | undefined;
|
|
438
438
|
optionGroupProps?: {
|
|
439
|
-
options?: string;
|
|
440
|
-
label?: string;
|
|
441
|
-
key?: string;
|
|
439
|
+
options?: string | undefined;
|
|
440
|
+
label?: string | undefined;
|
|
441
|
+
key?: string | undefined;
|
|
442
442
|
} | undefined;
|
|
443
|
-
content?: string;
|
|
444
|
-
name?: string;
|
|
443
|
+
content?: string | undefined;
|
|
444
|
+
name?: string | undefined;
|
|
445
445
|
props?: {
|
|
446
446
|
[key: string]: any;
|
|
447
|
-
};
|
|
447
|
+
} | undefined;
|
|
448
448
|
attrs?: {
|
|
449
449
|
[key: string]: any;
|
|
450
|
-
};
|
|
451
|
-
children?: any[];
|
|
452
|
-
cellType?: "string" | "number";
|
|
450
|
+
} | undefined;
|
|
451
|
+
children?: any[] | undefined;
|
|
452
|
+
cellType?: ("string" | "number") | undefined;
|
|
453
453
|
};
|
|
454
454
|
editRender: {
|
|
455
455
|
events?: {
|
|
456
456
|
[key: string]: (cellParams: import("vxe-table/types/column").VxeColumnSlotTypes.EditSlotParams, ...args: any[]) => any;
|
|
457
|
-
};
|
|
458
|
-
enabled?: boolean;
|
|
459
|
-
options?: any[];
|
|
457
|
+
} | undefined;
|
|
458
|
+
enabled?: boolean | undefined;
|
|
459
|
+
options?: any[] | undefined;
|
|
460
460
|
optionProps?: {
|
|
461
|
-
value?: string;
|
|
462
|
-
label?: string;
|
|
463
|
-
disabled?: string;
|
|
464
|
-
key?: string;
|
|
461
|
+
value?: string | undefined;
|
|
462
|
+
label?: string | undefined;
|
|
463
|
+
disabled?: string | undefined;
|
|
464
|
+
key?: string | undefined;
|
|
465
465
|
} | undefined;
|
|
466
|
-
optionGroups?: any[];
|
|
466
|
+
optionGroups?: any[] | undefined;
|
|
467
467
|
optionGroupProps?: {
|
|
468
|
-
options?: string;
|
|
469
|
-
label?: string;
|
|
470
|
-
key?: string;
|
|
468
|
+
options?: string | undefined;
|
|
469
|
+
label?: string | undefined;
|
|
470
|
+
key?: string | undefined;
|
|
471
471
|
} | undefined;
|
|
472
|
-
autofocus?: string;
|
|
473
|
-
autoselect?: boolean;
|
|
472
|
+
autofocus?: string | undefined;
|
|
473
|
+
autoselect?: boolean | undefined;
|
|
474
474
|
defaultValue?: string | number | object | RegExp | any[] | Date | ((params: {
|
|
475
475
|
column: import("vxe-table/types/table").VxeTableDefines.ColumnInfo<VxeTableDataRow>;
|
|
476
476
|
}) => any) | null | undefined;
|
|
477
|
-
immediate?: boolean;
|
|
478
|
-
content?: string;
|
|
479
|
-
placeholder?: string;
|
|
480
|
-
name?: string;
|
|
477
|
+
immediate?: boolean | undefined;
|
|
478
|
+
content?: string | undefined;
|
|
479
|
+
placeholder?: string | undefined;
|
|
480
|
+
name?: string | undefined;
|
|
481
481
|
props?: {
|
|
482
482
|
[key: string]: any;
|
|
483
|
-
};
|
|
483
|
+
} | undefined;
|
|
484
484
|
attrs?: {
|
|
485
485
|
[key: string]: any;
|
|
486
|
-
};
|
|
487
|
-
children?: any[];
|
|
488
|
-
cellType?: "string" | "number";
|
|
486
|
+
} | undefined;
|
|
487
|
+
children?: any[] | undefined;
|
|
488
|
+
cellType?: ("string" | "number") | undefined;
|
|
489
489
|
};
|
|
490
490
|
contentRender: {
|
|
491
|
-
options?: any[];
|
|
491
|
+
options?: any[] | undefined;
|
|
492
492
|
optionProps?: {
|
|
493
|
-
value?: string;
|
|
494
|
-
label?: string;
|
|
495
|
-
disabled?: string;
|
|
496
|
-
key?: string;
|
|
493
|
+
value?: string | undefined;
|
|
494
|
+
label?: string | undefined;
|
|
495
|
+
disabled?: string | undefined;
|
|
496
|
+
key?: string | undefined;
|
|
497
497
|
} | undefined;
|
|
498
|
-
optionGroups?: any[];
|
|
498
|
+
optionGroups?: any[] | undefined;
|
|
499
499
|
optionGroupProps?: {
|
|
500
|
-
options?: string;
|
|
501
|
-
label?: string;
|
|
502
|
-
key?: string;
|
|
500
|
+
options?: string | undefined;
|
|
501
|
+
label?: string | undefined;
|
|
502
|
+
key?: string | undefined;
|
|
503
503
|
} | undefined;
|
|
504
|
-
name?: string;
|
|
504
|
+
name?: string | undefined;
|
|
505
505
|
props?: {
|
|
506
506
|
[key: string]: any;
|
|
507
|
-
};
|
|
507
|
+
} | undefined;
|
|
508
508
|
attrs?: {
|
|
509
509
|
[key: string]: any;
|
|
510
|
-
};
|
|
510
|
+
} | undefined;
|
|
511
511
|
events?: {
|
|
512
512
|
[key: string]: (...args: any[]) => any;
|
|
513
|
-
};
|
|
514
|
-
children?: any[];
|
|
515
|
-
cellType?: "string" | "number";
|
|
513
|
+
} | undefined;
|
|
514
|
+
children?: any[] | undefined;
|
|
515
|
+
cellType?: ("string" | "number") | undefined;
|
|
516
516
|
};
|
|
517
517
|
params: import("vxe-table/types/column").VxeColumnPropTypes.Params;
|
|
518
518
|
slots: {
|
|
@@ -563,7 +563,7 @@ declare const __VLS_component: DefineComponent<{
|
|
|
563
563
|
order: import("vxe-table/types/table").VxeTablePropTypes.SortOrder;
|
|
564
564
|
sortTime: number;
|
|
565
565
|
}[] | undefined;
|
|
566
|
-
form?: Record<string, any
|
|
566
|
+
form?: Record<string, any> | undefined;
|
|
567
567
|
};
|
|
568
568
|
load: (reset?: boolean) => Promise<void>;
|
|
569
569
|
search: (reset?: boolean) => void;
|