tiddy 1.0.7 → 1.0.8
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.d.ts +222 -231
- package/dist/index.js +23 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as vue338 from "vue";
|
|
2
2
|
import { AllowedComponentProps, CSSProperties, Component, ComputedRef, ExtractPublicPropTypes, PropType, Raw, Slot, Slots } from "vue";
|
|
3
|
-
import * as
|
|
3
|
+
import * as element_plus336 from "element-plus";
|
|
4
4
|
import { DialogInstance, FormInstance, FormItemProps, FormItemRule, FormProps, TableInstance } from "element-plus";
|
|
5
|
-
import * as
|
|
6
|
-
import * as
|
|
7
|
-
import * as
|
|
8
|
-
import * as
|
|
5
|
+
import * as element_plus_es_components_table_src_table_defaults_mjs249 from "element-plus/es/components/table/src/table/defaults.mjs";
|
|
6
|
+
import * as element_plus_es_components_table_src_table_column_defaults_mjs250 from "element-plus/es/components/table/src/table-column/defaults.mjs";
|
|
7
|
+
import * as element_plus_es_utils_index_mjs275 from "element-plus/es/utils/index.mjs";
|
|
8
|
+
import * as element_plus_es_components_tooltip_index_mjs109 from "element-plus/es/components/tooltip/index.mjs";
|
|
9
9
|
|
|
10
10
|
//#region src/types.d.ts
|
|
11
11
|
type OrArray<T> = T | T[];
|
|
@@ -32,12 +32,9 @@ declare const objectFieldPropsDef: {
|
|
|
32
32
|
required: true;
|
|
33
33
|
};
|
|
34
34
|
hide: {
|
|
35
|
-
type: PropType<boolean | ComputedRef>;
|
|
35
|
+
type: PropType<OrFunction<boolean> | ComputedRef>;
|
|
36
36
|
default: boolean;
|
|
37
37
|
};
|
|
38
|
-
hideLabel: {
|
|
39
|
-
type: PropType<OrFunction<boolean>>;
|
|
40
|
-
};
|
|
41
38
|
label: {
|
|
42
39
|
type: PropType<OrFunction<string> | ComputedRef<string>>;
|
|
43
40
|
};
|
|
@@ -63,12 +60,9 @@ declare const widgetFieldPropsDef: {
|
|
|
63
60
|
required: true;
|
|
64
61
|
};
|
|
65
62
|
hide: {
|
|
66
|
-
type: PropType<boolean | ComputedRef>;
|
|
63
|
+
type: PropType<OrFunction<boolean> | ComputedRef>;
|
|
67
64
|
default: boolean;
|
|
68
65
|
};
|
|
69
|
-
hideLabel: {
|
|
70
|
-
type: PropType<OrFunction<boolean>>;
|
|
71
|
-
};
|
|
72
66
|
label: {
|
|
73
67
|
type: PropType<OrFunction<string> | ComputedRef<string>>;
|
|
74
68
|
};
|
|
@@ -134,12 +128,9 @@ declare const arrayFieldPropsDef: {
|
|
|
134
128
|
required: true;
|
|
135
129
|
};
|
|
136
130
|
hide: {
|
|
137
|
-
type: PropType<boolean | ComputedRef>;
|
|
131
|
+
type: PropType<OrFunction<boolean> | ComputedRef>;
|
|
138
132
|
default: boolean;
|
|
139
133
|
};
|
|
140
|
-
hideLabel: {
|
|
141
|
-
type: PropType<OrFunction<boolean>>;
|
|
142
|
-
};
|
|
143
134
|
label: {
|
|
144
135
|
type: PropType<OrFunction<string> | ComputedRef<string>>;
|
|
145
136
|
};
|
|
@@ -158,6 +149,9 @@ declare const arrayFieldPropsDef: {
|
|
|
158
149
|
default: string;
|
|
159
150
|
required: true;
|
|
160
151
|
};
|
|
152
|
+
hideLabel: {
|
|
153
|
+
type: PropType<OrFunction<boolean> | ComputedRef>;
|
|
154
|
+
};
|
|
161
155
|
rawValue: {
|
|
162
156
|
type: PropType<AnyFunction>;
|
|
163
157
|
};
|
|
@@ -189,12 +183,9 @@ declare const layoutFieldPropsDef: {
|
|
|
189
183
|
required: true;
|
|
190
184
|
};
|
|
191
185
|
hide: {
|
|
192
|
-
type: PropType<boolean | ComputedRef>;
|
|
186
|
+
type: PropType<OrFunction<boolean> | ComputedRef>;
|
|
193
187
|
default: boolean;
|
|
194
188
|
};
|
|
195
|
-
hideLabel: {
|
|
196
|
-
type: PropType<OrFunction<boolean>>;
|
|
197
|
-
};
|
|
198
189
|
label: {
|
|
199
190
|
type: PropType<OrFunction<string> | ComputedRef<string>>;
|
|
200
191
|
};
|
|
@@ -262,7 +253,7 @@ declare const formItemPropsDef: {
|
|
|
262
253
|
readonly default: "";
|
|
263
254
|
};
|
|
264
255
|
prop: {
|
|
265
|
-
readonly type: PropType<
|
|
256
|
+
readonly type: PropType<element_plus336.FormItemProp>;
|
|
266
257
|
readonly required: false;
|
|
267
258
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
268
259
|
__epPropKey: true;
|
|
@@ -324,24 +315,24 @@ type __VLS_Slots$3 = {} & {
|
|
|
324
315
|
} & {
|
|
325
316
|
suffix?: (props: typeof __VLS_18) => any;
|
|
326
317
|
};
|
|
327
|
-
declare const __VLS_component$3:
|
|
318
|
+
declare const __VLS_component$3: vue338.DefineComponent<vue338.ExtractPropTypes<{
|
|
328
319
|
fields: {
|
|
329
|
-
type:
|
|
320
|
+
type: vue338.PropType<TdFormFieldProps[]>;
|
|
330
321
|
default: () => never[];
|
|
331
322
|
};
|
|
332
323
|
item: {
|
|
333
|
-
type:
|
|
324
|
+
type: vue338.PropType<FormItemProps>;
|
|
334
325
|
default: () => {};
|
|
335
326
|
};
|
|
336
327
|
model: ObjectConstructor;
|
|
337
328
|
rules: {
|
|
338
|
-
readonly type:
|
|
329
|
+
readonly type: vue338.PropType<Partial<Record<string, element_plus336.FormItemRule | element_plus336.FormItemRule[]>>>;
|
|
339
330
|
readonly required: false;
|
|
340
331
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
341
332
|
__epPropKey: true;
|
|
342
333
|
};
|
|
343
334
|
labelPosition: {
|
|
344
|
-
readonly type:
|
|
335
|
+
readonly type: vue338.PropType<"top" | "left" | "right">;
|
|
345
336
|
readonly required: false;
|
|
346
337
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
347
338
|
__epPropKey: true;
|
|
@@ -349,7 +340,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
349
340
|
readonly default: "right";
|
|
350
341
|
};
|
|
351
342
|
requireAsteriskPosition: {
|
|
352
|
-
readonly type:
|
|
343
|
+
readonly type: vue338.PropType<"left" | "right">;
|
|
353
344
|
readonly required: false;
|
|
354
345
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
355
346
|
__epPropKey: true;
|
|
@@ -357,7 +348,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
357
348
|
readonly default: "left";
|
|
358
349
|
};
|
|
359
350
|
labelWidth: {
|
|
360
|
-
readonly type:
|
|
351
|
+
readonly type: vue338.PropType<string | number>;
|
|
361
352
|
readonly required: false;
|
|
362
353
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
363
354
|
__epPropKey: true;
|
|
@@ -365,7 +356,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
365
356
|
readonly default: "";
|
|
366
357
|
};
|
|
367
358
|
labelSuffix: {
|
|
368
|
-
readonly type:
|
|
359
|
+
readonly type: vue338.PropType<string>;
|
|
369
360
|
readonly required: false;
|
|
370
361
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
371
362
|
__epPropKey: true;
|
|
@@ -376,7 +367,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
376
367
|
inlineMessage: BooleanConstructor;
|
|
377
368
|
statusIcon: BooleanConstructor;
|
|
378
369
|
showMessage: {
|
|
379
|
-
readonly type:
|
|
370
|
+
readonly type: vue338.PropType<boolean>;
|
|
380
371
|
readonly required: false;
|
|
381
372
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
382
373
|
__epPropKey: true;
|
|
@@ -384,7 +375,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
384
375
|
readonly default: true;
|
|
385
376
|
};
|
|
386
377
|
validateOnRuleChange: {
|
|
387
|
-
readonly type:
|
|
378
|
+
readonly type: vue338.PropType<boolean>;
|
|
388
379
|
readonly required: false;
|
|
389
380
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
390
381
|
__epPropKey: true;
|
|
@@ -394,7 +385,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
394
385
|
hideRequiredAsterisk: BooleanConstructor;
|
|
395
386
|
scrollToError: BooleanConstructor;
|
|
396
387
|
scrollIntoViewOptions: {
|
|
397
|
-
readonly type:
|
|
388
|
+
readonly type: vue338.PropType<boolean | Record<string, any>>;
|
|
398
389
|
readonly required: false;
|
|
399
390
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
400
391
|
__epPropKey: true;
|
|
@@ -402,7 +393,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
402
393
|
readonly default: true;
|
|
403
394
|
};
|
|
404
395
|
size: {
|
|
405
|
-
readonly type:
|
|
396
|
+
readonly type: vue338.PropType<"" | "default" | "small" | "large">;
|
|
406
397
|
readonly required: false;
|
|
407
398
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
408
399
|
__epPropKey: true;
|
|
@@ -410,28 +401,28 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
410
401
|
disabled: BooleanConstructor;
|
|
411
402
|
}>, {
|
|
412
403
|
reValidateErrorFields: typeof reValidateErrorFields;
|
|
413
|
-
model:
|
|
414
|
-
}, {}, {}, {},
|
|
404
|
+
model: vue338.ComputedRef<Record<string, any> | undefined>;
|
|
405
|
+
}, {}, {}, {}, vue338.ComponentOptionsMixin, vue338.ComponentOptionsMixin, {
|
|
415
406
|
validate: () => any;
|
|
416
407
|
submit: (data: any) => any;
|
|
417
|
-
}, string,
|
|
408
|
+
}, string, vue338.PublicProps, Readonly<vue338.ExtractPropTypes<{
|
|
418
409
|
fields: {
|
|
419
|
-
type:
|
|
410
|
+
type: vue338.PropType<TdFormFieldProps[]>;
|
|
420
411
|
default: () => never[];
|
|
421
412
|
};
|
|
422
413
|
item: {
|
|
423
|
-
type:
|
|
414
|
+
type: vue338.PropType<FormItemProps>;
|
|
424
415
|
default: () => {};
|
|
425
416
|
};
|
|
426
417
|
model: ObjectConstructor;
|
|
427
418
|
rules: {
|
|
428
|
-
readonly type:
|
|
419
|
+
readonly type: vue338.PropType<Partial<Record<string, element_plus336.FormItemRule | element_plus336.FormItemRule[]>>>;
|
|
429
420
|
readonly required: false;
|
|
430
421
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
431
422
|
__epPropKey: true;
|
|
432
423
|
};
|
|
433
424
|
labelPosition: {
|
|
434
|
-
readonly type:
|
|
425
|
+
readonly type: vue338.PropType<"top" | "left" | "right">;
|
|
435
426
|
readonly required: false;
|
|
436
427
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
437
428
|
__epPropKey: true;
|
|
@@ -439,7 +430,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
439
430
|
readonly default: "right";
|
|
440
431
|
};
|
|
441
432
|
requireAsteriskPosition: {
|
|
442
|
-
readonly type:
|
|
433
|
+
readonly type: vue338.PropType<"left" | "right">;
|
|
443
434
|
readonly required: false;
|
|
444
435
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
445
436
|
__epPropKey: true;
|
|
@@ -447,7 +438,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
447
438
|
readonly default: "left";
|
|
448
439
|
};
|
|
449
440
|
labelWidth: {
|
|
450
|
-
readonly type:
|
|
441
|
+
readonly type: vue338.PropType<string | number>;
|
|
451
442
|
readonly required: false;
|
|
452
443
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
453
444
|
__epPropKey: true;
|
|
@@ -455,7 +446,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
455
446
|
readonly default: "";
|
|
456
447
|
};
|
|
457
448
|
labelSuffix: {
|
|
458
|
-
readonly type:
|
|
449
|
+
readonly type: vue338.PropType<string>;
|
|
459
450
|
readonly required: false;
|
|
460
451
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
461
452
|
__epPropKey: true;
|
|
@@ -466,7 +457,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
466
457
|
inlineMessage: BooleanConstructor;
|
|
467
458
|
statusIcon: BooleanConstructor;
|
|
468
459
|
showMessage: {
|
|
469
|
-
readonly type:
|
|
460
|
+
readonly type: vue338.PropType<boolean>;
|
|
470
461
|
readonly required: false;
|
|
471
462
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
472
463
|
__epPropKey: true;
|
|
@@ -474,7 +465,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
474
465
|
readonly default: true;
|
|
475
466
|
};
|
|
476
467
|
validateOnRuleChange: {
|
|
477
|
-
readonly type:
|
|
468
|
+
readonly type: vue338.PropType<boolean>;
|
|
478
469
|
readonly required: false;
|
|
479
470
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
480
471
|
__epPropKey: true;
|
|
@@ -484,7 +475,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
484
475
|
hideRequiredAsterisk: BooleanConstructor;
|
|
485
476
|
scrollToError: BooleanConstructor;
|
|
486
477
|
scrollIntoViewOptions: {
|
|
487
|
-
readonly type:
|
|
478
|
+
readonly type: vue338.PropType<boolean | Record<string, any>>;
|
|
488
479
|
readonly required: false;
|
|
489
480
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
490
481
|
__epPropKey: true;
|
|
@@ -492,7 +483,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
492
483
|
readonly default: true;
|
|
493
484
|
};
|
|
494
485
|
size: {
|
|
495
|
-
readonly type:
|
|
486
|
+
readonly type: vue338.PropType<"" | "default" | "small" | "large">;
|
|
496
487
|
readonly required: false;
|
|
497
488
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
498
489
|
__epPropKey: true;
|
|
@@ -502,12 +493,13 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
502
493
|
onValidate?: (() => any) | undefined;
|
|
503
494
|
onSubmit?: ((data: any) => any) | undefined;
|
|
504
495
|
}>, {
|
|
496
|
+
disabled: boolean;
|
|
497
|
+
hideRequiredAsterisk: boolean;
|
|
505
498
|
labelWidth: string | number;
|
|
506
499
|
labelPosition: "top" | "left" | "right";
|
|
507
|
-
fields: TdFormFieldProps[];
|
|
508
|
-
hideRequiredAsterisk: boolean;
|
|
509
500
|
inlineMessage: boolean;
|
|
510
501
|
showMessage: boolean;
|
|
502
|
+
fields: TdFormFieldProps[];
|
|
511
503
|
item: FormItemProps;
|
|
512
504
|
requireAsteriskPosition: "left" | "right";
|
|
513
505
|
labelSuffix: string;
|
|
@@ -516,8 +508,7 @@ declare const __VLS_component$3: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
516
508
|
validateOnRuleChange: boolean;
|
|
517
509
|
scrollToError: boolean;
|
|
518
510
|
scrollIntoViewOptions: boolean | Record<string, any>;
|
|
519
|
-
|
|
520
|
-
}, {}, {}, {}, string, vue17.ComponentProvideOptions, true, {}, any>;
|
|
511
|
+
}, {}, {}, {}, string, vue338.ComponentProvideOptions, true, {}, any>;
|
|
521
512
|
declare const _default$1: __VLS_WithSlots$3<typeof __VLS_component$3, __VLS_Slots$3>;
|
|
522
513
|
type __VLS_WithSlots$3<T, S> = T & {
|
|
523
514
|
new (): {
|
|
@@ -528,22 +519,22 @@ type __VLS_WithSlots$3<T, S> = T & {
|
|
|
528
519
|
//#region src/form/form-item.vue.d.ts
|
|
529
520
|
declare var __VLS_8: string | number, __VLS_9: any;
|
|
530
521
|
type __VLS_Slots$2 = {} & { [K in NonNullable<typeof __VLS_8>]?: (props: typeof __VLS_9) => any };
|
|
531
|
-
declare const __VLS_component$2:
|
|
522
|
+
declare const __VLS_component$2: vue338.DefineComponent<vue338.ExtractPropTypes<{
|
|
532
523
|
messageLabel: {
|
|
533
|
-
type:
|
|
524
|
+
type: vue338.PropType<string | vue338.ComputedRef<string>>;
|
|
534
525
|
default: string;
|
|
535
526
|
};
|
|
536
527
|
formatMessage: {
|
|
537
|
-
type:
|
|
528
|
+
type: vue338.PropType<AnyFunction>;
|
|
538
529
|
default: null;
|
|
539
530
|
};
|
|
540
531
|
hideRequiredAsterisk: {
|
|
541
|
-
type:
|
|
532
|
+
type: vue338.PropType<boolean>;
|
|
542
533
|
default: boolean;
|
|
543
534
|
};
|
|
544
535
|
label: StringConstructor;
|
|
545
536
|
labelWidth: {
|
|
546
|
-
readonly type:
|
|
537
|
+
readonly type: vue338.PropType<string | number>;
|
|
547
538
|
readonly required: false;
|
|
548
539
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
549
540
|
__epPropKey: true;
|
|
@@ -551,7 +542,7 @@ declare const __VLS_component$2: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
551
542
|
readonly default: "";
|
|
552
543
|
};
|
|
553
544
|
labelPosition: {
|
|
554
|
-
readonly type:
|
|
545
|
+
readonly type: vue338.PropType<"" | "top" | "left" | "right">;
|
|
555
546
|
readonly required: false;
|
|
556
547
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
557
548
|
__epPropKey: true;
|
|
@@ -559,13 +550,13 @@ declare const __VLS_component$2: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
559
550
|
readonly default: "";
|
|
560
551
|
};
|
|
561
552
|
prop: {
|
|
562
|
-
readonly type:
|
|
553
|
+
readonly type: vue338.PropType<element_plus336.FormItemProp>;
|
|
563
554
|
readonly required: false;
|
|
564
555
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
565
556
|
__epPropKey: true;
|
|
566
557
|
};
|
|
567
558
|
required: {
|
|
568
|
-
readonly type:
|
|
559
|
+
readonly type: vue338.PropType<boolean>;
|
|
569
560
|
readonly required: false;
|
|
570
561
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
571
562
|
__epPropKey: true;
|
|
@@ -573,21 +564,21 @@ declare const __VLS_component$2: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
573
564
|
readonly default: undefined;
|
|
574
565
|
};
|
|
575
566
|
rules: {
|
|
576
|
-
readonly type:
|
|
567
|
+
readonly type: vue338.PropType<element_plus336.FormItemRule | element_plus336.FormItemRule[]>;
|
|
577
568
|
readonly required: false;
|
|
578
569
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
579
570
|
__epPropKey: true;
|
|
580
571
|
};
|
|
581
572
|
error: StringConstructor;
|
|
582
573
|
validateStatus: {
|
|
583
|
-
readonly type:
|
|
574
|
+
readonly type: vue338.PropType<"" | "error" | "success" | "validating">;
|
|
584
575
|
readonly required: false;
|
|
585
576
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
586
577
|
__epPropKey: true;
|
|
587
578
|
};
|
|
588
579
|
for: StringConstructor;
|
|
589
580
|
inlineMessage: {
|
|
590
|
-
readonly type:
|
|
581
|
+
readonly type: vue338.PropType<string | boolean>;
|
|
591
582
|
readonly required: false;
|
|
592
583
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
593
584
|
__epPropKey: true;
|
|
@@ -595,7 +586,7 @@ declare const __VLS_component$2: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
595
586
|
readonly default: "";
|
|
596
587
|
};
|
|
597
588
|
showMessage: {
|
|
598
|
-
readonly type:
|
|
589
|
+
readonly type: vue338.PropType<boolean>;
|
|
599
590
|
readonly required: false;
|
|
600
591
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
601
592
|
__epPropKey: true;
|
|
@@ -603,27 +594,27 @@ declare const __VLS_component$2: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
603
594
|
readonly default: true;
|
|
604
595
|
};
|
|
605
596
|
size: {
|
|
606
|
-
readonly type:
|
|
597
|
+
readonly type: vue338.PropType<"" | "default" | "small" | "large">;
|
|
607
598
|
readonly required: false;
|
|
608
599
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
609
600
|
__epPropKey: true;
|
|
610
601
|
};
|
|
611
|
-
}>, {}, {}, {}, {},
|
|
602
|
+
}>, {}, {}, {}, {}, vue338.ComponentOptionsMixin, vue338.ComponentOptionsMixin, {}, string, vue338.PublicProps, Readonly<vue338.ExtractPropTypes<{
|
|
612
603
|
messageLabel: {
|
|
613
|
-
type:
|
|
604
|
+
type: vue338.PropType<string | vue338.ComputedRef<string>>;
|
|
614
605
|
default: string;
|
|
615
606
|
};
|
|
616
607
|
formatMessage: {
|
|
617
|
-
type:
|
|
608
|
+
type: vue338.PropType<AnyFunction>;
|
|
618
609
|
default: null;
|
|
619
610
|
};
|
|
620
611
|
hideRequiredAsterisk: {
|
|
621
|
-
type:
|
|
612
|
+
type: vue338.PropType<boolean>;
|
|
622
613
|
default: boolean;
|
|
623
614
|
};
|
|
624
615
|
label: StringConstructor;
|
|
625
616
|
labelWidth: {
|
|
626
|
-
readonly type:
|
|
617
|
+
readonly type: vue338.PropType<string | number>;
|
|
627
618
|
readonly required: false;
|
|
628
619
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
629
620
|
__epPropKey: true;
|
|
@@ -631,7 +622,7 @@ declare const __VLS_component$2: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
631
622
|
readonly default: "";
|
|
632
623
|
};
|
|
633
624
|
labelPosition: {
|
|
634
|
-
readonly type:
|
|
625
|
+
readonly type: vue338.PropType<"" | "top" | "left" | "right">;
|
|
635
626
|
readonly required: false;
|
|
636
627
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
637
628
|
__epPropKey: true;
|
|
@@ -639,13 +630,13 @@ declare const __VLS_component$2: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
639
630
|
readonly default: "";
|
|
640
631
|
};
|
|
641
632
|
prop: {
|
|
642
|
-
readonly type:
|
|
633
|
+
readonly type: vue338.PropType<element_plus336.FormItemProp>;
|
|
643
634
|
readonly required: false;
|
|
644
635
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
645
636
|
__epPropKey: true;
|
|
646
637
|
};
|
|
647
638
|
required: {
|
|
648
|
-
readonly type:
|
|
639
|
+
readonly type: vue338.PropType<boolean>;
|
|
649
640
|
readonly required: false;
|
|
650
641
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
651
642
|
__epPropKey: true;
|
|
@@ -653,21 +644,21 @@ declare const __VLS_component$2: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
653
644
|
readonly default: undefined;
|
|
654
645
|
};
|
|
655
646
|
rules: {
|
|
656
|
-
readonly type:
|
|
647
|
+
readonly type: vue338.PropType<element_plus336.FormItemRule | element_plus336.FormItemRule[]>;
|
|
657
648
|
readonly required: false;
|
|
658
649
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
659
650
|
__epPropKey: true;
|
|
660
651
|
};
|
|
661
652
|
error: StringConstructor;
|
|
662
653
|
validateStatus: {
|
|
663
|
-
readonly type:
|
|
654
|
+
readonly type: vue338.PropType<"" | "error" | "success" | "validating">;
|
|
664
655
|
readonly required: false;
|
|
665
656
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
666
657
|
__epPropKey: true;
|
|
667
658
|
};
|
|
668
659
|
for: StringConstructor;
|
|
669
660
|
inlineMessage: {
|
|
670
|
-
readonly type:
|
|
661
|
+
readonly type: vue338.PropType<string | boolean>;
|
|
671
662
|
readonly required: false;
|
|
672
663
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
673
664
|
__epPropKey: true;
|
|
@@ -675,7 +666,7 @@ declare const __VLS_component$2: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
675
666
|
readonly default: "";
|
|
676
667
|
};
|
|
677
668
|
showMessage: {
|
|
678
|
-
readonly type:
|
|
669
|
+
readonly type: vue338.PropType<boolean>;
|
|
679
670
|
readonly required: false;
|
|
680
671
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
681
672
|
__epPropKey: true;
|
|
@@ -683,21 +674,21 @@ declare const __VLS_component$2: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
683
674
|
readonly default: true;
|
|
684
675
|
};
|
|
685
676
|
size: {
|
|
686
|
-
readonly type:
|
|
677
|
+
readonly type: vue338.PropType<"" | "default" | "small" | "large">;
|
|
687
678
|
readonly required: false;
|
|
688
679
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
689
680
|
__epPropKey: true;
|
|
690
681
|
};
|
|
691
682
|
}>> & Readonly<{}>, {
|
|
692
683
|
required: boolean;
|
|
693
|
-
|
|
694
|
-
labelPosition: "" | "top" | "left" | "right";
|
|
695
|
-
messageLabel: string | vue17.ComputedRef<string>;
|
|
684
|
+
messageLabel: string | vue338.ComputedRef<string>;
|
|
696
685
|
formatMessage: AnyFunction;
|
|
697
686
|
hideRequiredAsterisk: boolean;
|
|
687
|
+
labelWidth: string | number;
|
|
688
|
+
labelPosition: "" | "top" | "left" | "right";
|
|
698
689
|
inlineMessage: string | boolean;
|
|
699
690
|
showMessage: boolean;
|
|
700
|
-
}, {}, {}, {}, string,
|
|
691
|
+
}, {}, {}, {}, string, vue338.ComponentProvideOptions, true, {}, any>;
|
|
701
692
|
declare const _default$3: __VLS_WithSlots$2<typeof __VLS_component$2, __VLS_Slots$2>;
|
|
702
693
|
type __VLS_WithSlots$2<T, S> = T & {
|
|
703
694
|
new (): {
|
|
@@ -706,7 +697,7 @@ type __VLS_WithSlots$2<T, S> = T & {
|
|
|
706
697
|
};
|
|
707
698
|
//#endregion
|
|
708
699
|
//#region src/form/form-field.vue.d.ts
|
|
709
|
-
declare const _default$2:
|
|
700
|
+
declare const _default$2: vue338.DefineComponent<{}, {}, {}, {}, {}, vue338.ComponentOptionsMixin, vue338.ComponentOptionsMixin, {}, string, vue338.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue338.ComponentProvideOptions, true, {}, any>;
|
|
710
701
|
//#endregion
|
|
711
702
|
//#region src/form/index.d.ts
|
|
712
703
|
type Instance$2 = InstanceType<typeof _default$1>;
|
|
@@ -732,13 +723,13 @@ declare const tableColumnPropsDef: {
|
|
|
732
723
|
type: (NumberConstructor | StringConstructor)[];
|
|
733
724
|
default: string;
|
|
734
725
|
};
|
|
735
|
-
renderHeader: PropType<
|
|
726
|
+
renderHeader: PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["renderHeader"]>;
|
|
736
727
|
sortable: {
|
|
737
728
|
type: (StringConstructor | BooleanConstructor)[];
|
|
738
729
|
default: boolean;
|
|
739
730
|
};
|
|
740
|
-
sortMethod: PropType<
|
|
741
|
-
sortBy: PropType<
|
|
731
|
+
sortMethod: PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["sortMethod"]>;
|
|
732
|
+
sortBy: PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["sortBy"]>;
|
|
742
733
|
resizable: {
|
|
743
734
|
type: BooleanConstructor;
|
|
744
735
|
default: boolean;
|
|
@@ -747,28 +738,28 @@ declare const tableColumnPropsDef: {
|
|
|
747
738
|
align: StringConstructor;
|
|
748
739
|
headerAlign: StringConstructor;
|
|
749
740
|
showOverflowTooltip: {
|
|
750
|
-
type: PropType<
|
|
741
|
+
type: PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["showOverflowTooltip"]>;
|
|
751
742
|
default: undefined;
|
|
752
743
|
};
|
|
753
|
-
tooltipFormatter: PropType<
|
|
744
|
+
tooltipFormatter: PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["tooltipFormatter"]>;
|
|
754
745
|
fixed: (StringConstructor | BooleanConstructor)[];
|
|
755
|
-
formatter: PropType<
|
|
756
|
-
selectable: PropType<
|
|
746
|
+
formatter: PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["formatter"]>;
|
|
747
|
+
selectable: PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["selectable"]>;
|
|
757
748
|
reserveSelection: BooleanConstructor;
|
|
758
|
-
filterMethod: PropType<
|
|
759
|
-
filteredValue: PropType<
|
|
760
|
-
filters: PropType<
|
|
749
|
+
filterMethod: PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["filterMethod"]>;
|
|
750
|
+
filteredValue: PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["filteredValue"]>;
|
|
751
|
+
filters: PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["filters"]>;
|
|
761
752
|
filterPlacement: StringConstructor;
|
|
762
753
|
filterMultiple: {
|
|
763
754
|
type: BooleanConstructor;
|
|
764
755
|
default: boolean;
|
|
765
756
|
};
|
|
766
757
|
filterClassName: StringConstructor;
|
|
767
|
-
index: PropType<
|
|
758
|
+
index: PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["index"]>;
|
|
768
759
|
sortOrders: {
|
|
769
|
-
type: PropType<
|
|
760
|
+
type: PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["sortOrders"]>;
|
|
770
761
|
default: () => (string | null)[];
|
|
771
|
-
validator: (val:
|
|
762
|
+
validator: (val: element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<unknown>["sortOrders"]) => boolean;
|
|
772
763
|
};
|
|
773
764
|
slots: {
|
|
774
765
|
type: PropType<OrArray<SlotDef>>;
|
|
@@ -789,11 +780,11 @@ type ColumnsType = {
|
|
|
789
780
|
type TdTableColumnProps = ColumnsType & ExtractPublicPropTypes<Omit<typeof tableColumnPropsDef, "columns">>;
|
|
790
781
|
declare const tablePropsDef: {
|
|
791
782
|
data: {
|
|
792
|
-
type: PropType<
|
|
783
|
+
type: PropType<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow[]>;
|
|
793
784
|
default: () => never[];
|
|
794
785
|
};
|
|
795
786
|
size: {
|
|
796
|
-
readonly type: PropType<
|
|
787
|
+
readonly type: PropType<element_plus_es_utils_index_mjs275.EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
797
788
|
readonly required: false;
|
|
798
789
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
799
790
|
__epPropKey: true;
|
|
@@ -807,31 +798,31 @@ declare const tablePropsDef: {
|
|
|
807
798
|
};
|
|
808
799
|
stripe: BooleanConstructor;
|
|
809
800
|
border: BooleanConstructor;
|
|
810
|
-
rowKey: PropType<
|
|
801
|
+
rowKey: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["rowKey"]>;
|
|
811
802
|
showHeader: {
|
|
812
803
|
type: BooleanConstructor;
|
|
813
804
|
default: boolean;
|
|
814
805
|
};
|
|
815
806
|
showSummary: BooleanConstructor;
|
|
816
807
|
sumText: StringConstructor;
|
|
817
|
-
summaryMethod: PropType<
|
|
818
|
-
rowClassName: PropType<
|
|
819
|
-
rowStyle: PropType<
|
|
820
|
-
cellClassName: PropType<
|
|
821
|
-
cellStyle: PropType<
|
|
822
|
-
headerRowClassName: PropType<
|
|
823
|
-
headerRowStyle: PropType<
|
|
824
|
-
headerCellClassName: PropType<
|
|
825
|
-
headerCellStyle: PropType<
|
|
808
|
+
summaryMethod: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["summaryMethod"]>;
|
|
809
|
+
rowClassName: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["rowClassName"]>;
|
|
810
|
+
rowStyle: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["rowStyle"]>;
|
|
811
|
+
cellClassName: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["cellClassName"]>;
|
|
812
|
+
cellStyle: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["cellStyle"]>;
|
|
813
|
+
headerRowClassName: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["headerRowClassName"]>;
|
|
814
|
+
headerRowStyle: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["headerRowStyle"]>;
|
|
815
|
+
headerCellClassName: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["headerCellClassName"]>;
|
|
816
|
+
headerCellStyle: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["headerCellStyle"]>;
|
|
826
817
|
highlightCurrentRow: BooleanConstructor;
|
|
827
818
|
currentRowKey: (NumberConstructor | StringConstructor)[];
|
|
828
819
|
emptyText: StringConstructor;
|
|
829
|
-
expandRowKeys: PropType<
|
|
820
|
+
expandRowKeys: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["expandRowKeys"]>;
|
|
830
821
|
defaultExpandAll: BooleanConstructor;
|
|
831
|
-
defaultSort: PropType<
|
|
822
|
+
defaultSort: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["defaultSort"]>;
|
|
832
823
|
tooltipEffect: StringConstructor;
|
|
833
|
-
tooltipOptions: PropType<
|
|
834
|
-
spanMethod: PropType<
|
|
824
|
+
tooltipOptions: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["tooltipOptions"]>;
|
|
825
|
+
spanMethod: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["spanMethod"]>;
|
|
835
826
|
selectOnIndeterminate: {
|
|
836
827
|
type: BooleanConstructor;
|
|
837
828
|
default: boolean;
|
|
@@ -841,7 +832,7 @@ declare const tablePropsDef: {
|
|
|
841
832
|
default: number;
|
|
842
833
|
};
|
|
843
834
|
treeProps: {
|
|
844
|
-
type: PropType<
|
|
835
|
+
type: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["treeProps"]>;
|
|
845
836
|
default: () => {
|
|
846
837
|
hasChildren: string;
|
|
847
838
|
children: string;
|
|
@@ -849,9 +840,9 @@ declare const tablePropsDef: {
|
|
|
849
840
|
};
|
|
850
841
|
};
|
|
851
842
|
lazy: BooleanConstructor;
|
|
852
|
-
load: PropType<
|
|
843
|
+
load: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["load"]>;
|
|
853
844
|
style: {
|
|
854
|
-
type: PropType<
|
|
845
|
+
type: PropType<vue338.CSSProperties>;
|
|
855
846
|
default: () => {};
|
|
856
847
|
};
|
|
857
848
|
className: {
|
|
@@ -859,13 +850,13 @@ declare const tablePropsDef: {
|
|
|
859
850
|
default: string;
|
|
860
851
|
};
|
|
861
852
|
tableLayout: {
|
|
862
|
-
type: PropType<"
|
|
853
|
+
type: PropType<"fixed" | "auto">;
|
|
863
854
|
default: string;
|
|
864
855
|
};
|
|
865
856
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
866
857
|
flexible: BooleanConstructor;
|
|
867
|
-
showOverflowTooltip: PropType<
|
|
868
|
-
tooltipFormatter: PropType<
|
|
858
|
+
showOverflowTooltip: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["showOverflowTooltip"]>;
|
|
859
|
+
tooltipFormatter: PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["tooltipFormatter"]>;
|
|
869
860
|
appendFilterPanelTo: StringConstructor;
|
|
870
861
|
scrollbarTabindex: {
|
|
871
862
|
type: (NumberConstructor | StringConstructor)[];
|
|
@@ -893,13 +884,13 @@ type __VLS_Slots$1 = {} & { [K in NonNullable<typeof __VLS_13>]?: (props: typeof
|
|
|
893
884
|
} & {
|
|
894
885
|
after?: (props: typeof __VLS_16) => any;
|
|
895
886
|
};
|
|
896
|
-
declare const __VLS_component$1:
|
|
887
|
+
declare const __VLS_component$1: vue338.DefineComponent<vue338.ExtractPropTypes<{
|
|
897
888
|
data: {
|
|
898
|
-
type:
|
|
889
|
+
type: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow[]>;
|
|
899
890
|
default: () => never[];
|
|
900
891
|
};
|
|
901
892
|
size: {
|
|
902
|
-
readonly type:
|
|
893
|
+
readonly type: vue338.PropType<element_plus_es_utils_index_mjs275.EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
903
894
|
readonly required: false;
|
|
904
895
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
905
896
|
__epPropKey: true;
|
|
@@ -913,31 +904,31 @@ declare const __VLS_component$1: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
913
904
|
};
|
|
914
905
|
stripe: BooleanConstructor;
|
|
915
906
|
border: BooleanConstructor;
|
|
916
|
-
rowKey:
|
|
907
|
+
rowKey: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["rowKey"]>;
|
|
917
908
|
showHeader: {
|
|
918
909
|
type: BooleanConstructor;
|
|
919
910
|
default: boolean;
|
|
920
911
|
};
|
|
921
912
|
showSummary: BooleanConstructor;
|
|
922
913
|
sumText: StringConstructor;
|
|
923
|
-
summaryMethod:
|
|
924
|
-
rowClassName:
|
|
925
|
-
rowStyle:
|
|
926
|
-
cellClassName:
|
|
927
|
-
cellStyle:
|
|
928
|
-
headerRowClassName:
|
|
929
|
-
headerRowStyle:
|
|
930
|
-
headerCellClassName:
|
|
931
|
-
headerCellStyle:
|
|
914
|
+
summaryMethod: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["summaryMethod"]>;
|
|
915
|
+
rowClassName: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["rowClassName"]>;
|
|
916
|
+
rowStyle: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["rowStyle"]>;
|
|
917
|
+
cellClassName: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["cellClassName"]>;
|
|
918
|
+
cellStyle: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["cellStyle"]>;
|
|
919
|
+
headerRowClassName: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["headerRowClassName"]>;
|
|
920
|
+
headerRowStyle: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["headerRowStyle"]>;
|
|
921
|
+
headerCellClassName: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["headerCellClassName"]>;
|
|
922
|
+
headerCellStyle: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["headerCellStyle"]>;
|
|
932
923
|
highlightCurrentRow: BooleanConstructor;
|
|
933
924
|
currentRowKey: (NumberConstructor | StringConstructor)[];
|
|
934
925
|
emptyText: StringConstructor;
|
|
935
|
-
expandRowKeys:
|
|
926
|
+
expandRowKeys: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["expandRowKeys"]>;
|
|
936
927
|
defaultExpandAll: BooleanConstructor;
|
|
937
|
-
defaultSort:
|
|
928
|
+
defaultSort: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["defaultSort"]>;
|
|
938
929
|
tooltipEffect: StringConstructor;
|
|
939
|
-
tooltipOptions:
|
|
940
|
-
spanMethod:
|
|
930
|
+
tooltipOptions: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["tooltipOptions"]>;
|
|
931
|
+
spanMethod: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["spanMethod"]>;
|
|
941
932
|
selectOnIndeterminate: {
|
|
942
933
|
type: BooleanConstructor;
|
|
943
934
|
default: boolean;
|
|
@@ -947,7 +938,7 @@ declare const __VLS_component$1: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
947
938
|
default: number;
|
|
948
939
|
};
|
|
949
940
|
treeProps: {
|
|
950
|
-
type:
|
|
941
|
+
type: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["treeProps"]>;
|
|
951
942
|
default: () => {
|
|
952
943
|
hasChildren: string;
|
|
953
944
|
children: string;
|
|
@@ -955,9 +946,9 @@ declare const __VLS_component$1: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
955
946
|
};
|
|
956
947
|
};
|
|
957
948
|
lazy: BooleanConstructor;
|
|
958
|
-
load:
|
|
949
|
+
load: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["load"]>;
|
|
959
950
|
style: {
|
|
960
|
-
type:
|
|
951
|
+
type: vue338.PropType<vue338.CSSProperties>;
|
|
961
952
|
default: () => {};
|
|
962
953
|
};
|
|
963
954
|
className: {
|
|
@@ -965,13 +956,13 @@ declare const __VLS_component$1: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
965
956
|
default: string;
|
|
966
957
|
};
|
|
967
958
|
tableLayout: {
|
|
968
|
-
type:
|
|
959
|
+
type: vue338.PropType<"fixed" | "auto">;
|
|
969
960
|
default: string;
|
|
970
961
|
};
|
|
971
962
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
972
963
|
flexible: BooleanConstructor;
|
|
973
|
-
showOverflowTooltip:
|
|
974
|
-
tooltipFormatter:
|
|
964
|
+
showOverflowTooltip: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["showOverflowTooltip"]>;
|
|
965
|
+
tooltipFormatter: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["tooltipFormatter"]>;
|
|
975
966
|
appendFilterPanelTo: StringConstructor;
|
|
976
967
|
scrollbarTabindex: {
|
|
977
968
|
type: (NumberConstructor | StringConstructor)[];
|
|
@@ -986,16 +977,16 @@ declare const __VLS_component$1: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
986
977
|
default: boolean;
|
|
987
978
|
};
|
|
988
979
|
columns: {
|
|
989
|
-
type:
|
|
980
|
+
type: vue338.PropType<TdTableColumnProps[]>;
|
|
990
981
|
default: () => never[];
|
|
991
982
|
};
|
|
992
|
-
}>, {}, {}, {}, {},
|
|
983
|
+
}>, {}, {}, {}, {}, vue338.ComponentOptionsMixin, vue338.ComponentOptionsMixin, {}, string, vue338.PublicProps, Readonly<vue338.ExtractPropTypes<{
|
|
993
984
|
data: {
|
|
994
|
-
type:
|
|
985
|
+
type: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow[]>;
|
|
995
986
|
default: () => never[];
|
|
996
987
|
};
|
|
997
988
|
size: {
|
|
998
|
-
readonly type:
|
|
989
|
+
readonly type: vue338.PropType<element_plus_es_utils_index_mjs275.EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
999
990
|
readonly required: false;
|
|
1000
991
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1001
992
|
__epPropKey: true;
|
|
@@ -1009,31 +1000,31 @@ declare const __VLS_component$1: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
1009
1000
|
};
|
|
1010
1001
|
stripe: BooleanConstructor;
|
|
1011
1002
|
border: BooleanConstructor;
|
|
1012
|
-
rowKey:
|
|
1003
|
+
rowKey: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["rowKey"]>;
|
|
1013
1004
|
showHeader: {
|
|
1014
1005
|
type: BooleanConstructor;
|
|
1015
1006
|
default: boolean;
|
|
1016
1007
|
};
|
|
1017
1008
|
showSummary: BooleanConstructor;
|
|
1018
1009
|
sumText: StringConstructor;
|
|
1019
|
-
summaryMethod:
|
|
1020
|
-
rowClassName:
|
|
1021
|
-
rowStyle:
|
|
1022
|
-
cellClassName:
|
|
1023
|
-
cellStyle:
|
|
1024
|
-
headerRowClassName:
|
|
1025
|
-
headerRowStyle:
|
|
1026
|
-
headerCellClassName:
|
|
1027
|
-
headerCellStyle:
|
|
1010
|
+
summaryMethod: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["summaryMethod"]>;
|
|
1011
|
+
rowClassName: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["rowClassName"]>;
|
|
1012
|
+
rowStyle: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["rowStyle"]>;
|
|
1013
|
+
cellClassName: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["cellClassName"]>;
|
|
1014
|
+
cellStyle: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["cellStyle"]>;
|
|
1015
|
+
headerRowClassName: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["headerRowClassName"]>;
|
|
1016
|
+
headerRowStyle: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["headerRowStyle"]>;
|
|
1017
|
+
headerCellClassName: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["headerCellClassName"]>;
|
|
1018
|
+
headerCellStyle: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["headerCellStyle"]>;
|
|
1028
1019
|
highlightCurrentRow: BooleanConstructor;
|
|
1029
1020
|
currentRowKey: (NumberConstructor | StringConstructor)[];
|
|
1030
1021
|
emptyText: StringConstructor;
|
|
1031
|
-
expandRowKeys:
|
|
1022
|
+
expandRowKeys: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["expandRowKeys"]>;
|
|
1032
1023
|
defaultExpandAll: BooleanConstructor;
|
|
1033
|
-
defaultSort:
|
|
1024
|
+
defaultSort: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["defaultSort"]>;
|
|
1034
1025
|
tooltipEffect: StringConstructor;
|
|
1035
|
-
tooltipOptions:
|
|
1036
|
-
spanMethod:
|
|
1026
|
+
tooltipOptions: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["tooltipOptions"]>;
|
|
1027
|
+
spanMethod: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["spanMethod"]>;
|
|
1037
1028
|
selectOnIndeterminate: {
|
|
1038
1029
|
type: BooleanConstructor;
|
|
1039
1030
|
default: boolean;
|
|
@@ -1043,7 +1034,7 @@ declare const __VLS_component$1: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
1043
1034
|
default: number;
|
|
1044
1035
|
};
|
|
1045
1036
|
treeProps: {
|
|
1046
|
-
type:
|
|
1037
|
+
type: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["treeProps"]>;
|
|
1047
1038
|
default: () => {
|
|
1048
1039
|
hasChildren: string;
|
|
1049
1040
|
children: string;
|
|
@@ -1051,9 +1042,9 @@ declare const __VLS_component$1: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
1051
1042
|
};
|
|
1052
1043
|
};
|
|
1053
1044
|
lazy: BooleanConstructor;
|
|
1054
|
-
load:
|
|
1045
|
+
load: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["load"]>;
|
|
1055
1046
|
style: {
|
|
1056
|
-
type:
|
|
1047
|
+
type: vue338.PropType<vue338.CSSProperties>;
|
|
1057
1048
|
default: () => {};
|
|
1058
1049
|
};
|
|
1059
1050
|
className: {
|
|
@@ -1061,13 +1052,13 @@ declare const __VLS_component$1: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
1061
1052
|
default: string;
|
|
1062
1053
|
};
|
|
1063
1054
|
tableLayout: {
|
|
1064
|
-
type:
|
|
1055
|
+
type: vue338.PropType<"fixed" | "auto">;
|
|
1065
1056
|
default: string;
|
|
1066
1057
|
};
|
|
1067
1058
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
1068
1059
|
flexible: BooleanConstructor;
|
|
1069
|
-
showOverflowTooltip:
|
|
1070
|
-
tooltipFormatter:
|
|
1060
|
+
showOverflowTooltip: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["showOverflowTooltip"]>;
|
|
1061
|
+
tooltipFormatter: vue338.PropType<element_plus_es_components_table_src_table_defaults_mjs249.TableProps<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["tooltipFormatter"]>;
|
|
1071
1062
|
appendFilterPanelTo: StringConstructor;
|
|
1072
1063
|
scrollbarTabindex: {
|
|
1073
1064
|
type: (NumberConstructor | StringConstructor)[];
|
|
@@ -1082,14 +1073,13 @@ declare const __VLS_component$1: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
1082
1073
|
default: boolean;
|
|
1083
1074
|
};
|
|
1084
1075
|
columns: {
|
|
1085
|
-
type:
|
|
1076
|
+
type: vue338.PropType<TdTableColumnProps[]>;
|
|
1086
1077
|
default: () => never[];
|
|
1087
1078
|
};
|
|
1088
1079
|
}>> & Readonly<{}>, {
|
|
1089
|
-
style:
|
|
1090
|
-
lazy: boolean;
|
|
1091
|
-
columns: TdTableColumnProps[];
|
|
1080
|
+
style: vue338.CSSProperties;
|
|
1092
1081
|
className: string;
|
|
1082
|
+
columns: TdTableColumnProps[];
|
|
1093
1083
|
data: any[];
|
|
1094
1084
|
fit: boolean;
|
|
1095
1085
|
stripe: boolean;
|
|
@@ -1100,14 +1090,15 @@ declare const __VLS_component$1: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
1100
1090
|
defaultExpandAll: boolean;
|
|
1101
1091
|
selectOnIndeterminate: boolean;
|
|
1102
1092
|
indent: number;
|
|
1103
|
-
treeProps:
|
|
1104
|
-
|
|
1093
|
+
treeProps: element_plus_es_components_table_src_table_defaults_mjs249.TreeProps | undefined;
|
|
1094
|
+
lazy: boolean;
|
|
1095
|
+
tableLayout: "fixed" | "auto";
|
|
1105
1096
|
scrollbarAlwaysOn: boolean;
|
|
1106
1097
|
flexible: boolean;
|
|
1107
1098
|
scrollbarTabindex: string | number;
|
|
1108
1099
|
allowDragLastColumn: boolean;
|
|
1109
1100
|
preserveExpandedContent: boolean;
|
|
1110
|
-
}, {}, {}, {}, string,
|
|
1101
|
+
}, {}, {}, {}, string, vue338.ComponentProvideOptions, true, {}, any>;
|
|
1111
1102
|
declare const _default$4: __VLS_WithSlots$1<typeof __VLS_component$1, __VLS_Slots$1>;
|
|
1112
1103
|
type __VLS_WithSlots$1<T, S> = T & {
|
|
1113
1104
|
new (): {
|
|
@@ -1116,7 +1107,7 @@ type __VLS_WithSlots$1<T, S> = T & {
|
|
|
1116
1107
|
};
|
|
1117
1108
|
//#endregion
|
|
1118
1109
|
//#region src/table/table-col.vue.d.ts
|
|
1119
|
-
declare const _default$5:
|
|
1110
|
+
declare const _default$5: vue338.DefineComponent<vue338.ExtractPropTypes<{
|
|
1120
1111
|
type: {
|
|
1121
1112
|
type: StringConstructor;
|
|
1122
1113
|
default: string;
|
|
@@ -1134,13 +1125,13 @@ declare const _default$5: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
1134
1125
|
type: (NumberConstructor | StringConstructor)[];
|
|
1135
1126
|
default: string;
|
|
1136
1127
|
};
|
|
1137
|
-
renderHeader:
|
|
1128
|
+
renderHeader: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["renderHeader"]>;
|
|
1138
1129
|
sortable: {
|
|
1139
1130
|
type: (StringConstructor | BooleanConstructor)[];
|
|
1140
1131
|
default: boolean;
|
|
1141
1132
|
};
|
|
1142
|
-
sortMethod:
|
|
1143
|
-
sortBy:
|
|
1133
|
+
sortMethod: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["sortMethod"]>;
|
|
1134
|
+
sortBy: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["sortBy"]>;
|
|
1144
1135
|
resizable: {
|
|
1145
1136
|
type: BooleanConstructor;
|
|
1146
1137
|
default: boolean;
|
|
@@ -1149,42 +1140,42 @@ declare const _default$5: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
1149
1140
|
align: StringConstructor;
|
|
1150
1141
|
headerAlign: StringConstructor;
|
|
1151
1142
|
showOverflowTooltip: {
|
|
1152
|
-
type:
|
|
1143
|
+
type: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["showOverflowTooltip"]>;
|
|
1153
1144
|
default: undefined;
|
|
1154
1145
|
};
|
|
1155
|
-
tooltipFormatter:
|
|
1146
|
+
tooltipFormatter: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["tooltipFormatter"]>;
|
|
1156
1147
|
fixed: (StringConstructor | BooleanConstructor)[];
|
|
1157
|
-
formatter:
|
|
1158
|
-
selectable:
|
|
1148
|
+
formatter: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["formatter"]>;
|
|
1149
|
+
selectable: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["selectable"]>;
|
|
1159
1150
|
reserveSelection: BooleanConstructor;
|
|
1160
|
-
filterMethod:
|
|
1161
|
-
filteredValue:
|
|
1162
|
-
filters:
|
|
1151
|
+
filterMethod: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["filterMethod"]>;
|
|
1152
|
+
filteredValue: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["filteredValue"]>;
|
|
1153
|
+
filters: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["filters"]>;
|
|
1163
1154
|
filterPlacement: StringConstructor;
|
|
1164
1155
|
filterMultiple: {
|
|
1165
1156
|
type: BooleanConstructor;
|
|
1166
1157
|
default: boolean;
|
|
1167
1158
|
};
|
|
1168
1159
|
filterClassName: StringConstructor;
|
|
1169
|
-
index:
|
|
1160
|
+
index: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["index"]>;
|
|
1170
1161
|
sortOrders: {
|
|
1171
|
-
type:
|
|
1162
|
+
type: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["sortOrders"]>;
|
|
1172
1163
|
default: () => (string | null)[];
|
|
1173
|
-
validator: (val:
|
|
1164
|
+
validator: (val: element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<unknown>["sortOrders"]) => boolean;
|
|
1174
1165
|
};
|
|
1175
1166
|
slots: {
|
|
1176
|
-
type:
|
|
1167
|
+
type: vue338.PropType<OrArray<SlotDef>>;
|
|
1177
1168
|
default: () => never[];
|
|
1178
1169
|
};
|
|
1179
1170
|
columns: {
|
|
1180
|
-
type:
|
|
1171
|
+
type: vue338.PropType<any[]>;
|
|
1181
1172
|
default: () => never[];
|
|
1182
1173
|
};
|
|
1183
1174
|
transform: {
|
|
1184
|
-
type:
|
|
1175
|
+
type: vue338.PropType<AnyFunction[]>;
|
|
1185
1176
|
default: () => never[];
|
|
1186
1177
|
};
|
|
1187
|
-
}>, {}, {}, {}, {},
|
|
1178
|
+
}>, {}, {}, {}, {}, vue338.ComponentOptionsMixin, vue338.ComponentOptionsMixin, {}, string, vue338.PublicProps, Readonly<vue338.ExtractPropTypes<{
|
|
1188
1179
|
type: {
|
|
1189
1180
|
type: StringConstructor;
|
|
1190
1181
|
default: string;
|
|
@@ -1202,13 +1193,13 @@ declare const _default$5: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
1202
1193
|
type: (NumberConstructor | StringConstructor)[];
|
|
1203
1194
|
default: string;
|
|
1204
1195
|
};
|
|
1205
|
-
renderHeader:
|
|
1196
|
+
renderHeader: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["renderHeader"]>;
|
|
1206
1197
|
sortable: {
|
|
1207
1198
|
type: (StringConstructor | BooleanConstructor)[];
|
|
1208
1199
|
default: boolean;
|
|
1209
1200
|
};
|
|
1210
|
-
sortMethod:
|
|
1211
|
-
sortBy:
|
|
1201
|
+
sortMethod: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["sortMethod"]>;
|
|
1202
|
+
sortBy: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["sortBy"]>;
|
|
1212
1203
|
resizable: {
|
|
1213
1204
|
type: BooleanConstructor;
|
|
1214
1205
|
default: boolean;
|
|
@@ -1217,55 +1208,55 @@ declare const _default$5: vue17.DefineComponent<vue17.ExtractPropTypes<{
|
|
|
1217
1208
|
align: StringConstructor;
|
|
1218
1209
|
headerAlign: StringConstructor;
|
|
1219
1210
|
showOverflowTooltip: {
|
|
1220
|
-
type:
|
|
1211
|
+
type: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["showOverflowTooltip"]>;
|
|
1221
1212
|
default: undefined;
|
|
1222
1213
|
};
|
|
1223
|
-
tooltipFormatter:
|
|
1214
|
+
tooltipFormatter: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["tooltipFormatter"]>;
|
|
1224
1215
|
fixed: (StringConstructor | BooleanConstructor)[];
|
|
1225
|
-
formatter:
|
|
1226
|
-
selectable:
|
|
1216
|
+
formatter: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["formatter"]>;
|
|
1217
|
+
selectable: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["selectable"]>;
|
|
1227
1218
|
reserveSelection: BooleanConstructor;
|
|
1228
|
-
filterMethod:
|
|
1229
|
-
filteredValue:
|
|
1230
|
-
filters:
|
|
1219
|
+
filterMethod: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["filterMethod"]>;
|
|
1220
|
+
filteredValue: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["filteredValue"]>;
|
|
1221
|
+
filters: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["filters"]>;
|
|
1231
1222
|
filterPlacement: StringConstructor;
|
|
1232
1223
|
filterMultiple: {
|
|
1233
1224
|
type: BooleanConstructor;
|
|
1234
1225
|
default: boolean;
|
|
1235
1226
|
};
|
|
1236
1227
|
filterClassName: StringConstructor;
|
|
1237
|
-
index:
|
|
1228
|
+
index: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["index"]>;
|
|
1238
1229
|
sortOrders: {
|
|
1239
|
-
type:
|
|
1230
|
+
type: vue338.PropType<element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<element_plus_es_components_table_src_table_defaults_mjs249.DefaultRow>["sortOrders"]>;
|
|
1240
1231
|
default: () => (string | null)[];
|
|
1241
|
-
validator: (val:
|
|
1232
|
+
validator: (val: element_plus_es_components_table_src_table_column_defaults_mjs250.TableColumnCtx<unknown>["sortOrders"]) => boolean;
|
|
1242
1233
|
};
|
|
1243
1234
|
slots: {
|
|
1244
|
-
type:
|
|
1235
|
+
type: vue338.PropType<OrArray<SlotDef>>;
|
|
1245
1236
|
default: () => never[];
|
|
1246
1237
|
};
|
|
1247
1238
|
columns: {
|
|
1248
|
-
type:
|
|
1239
|
+
type: vue338.PropType<any[]>;
|
|
1249
1240
|
default: () => never[];
|
|
1250
1241
|
};
|
|
1251
1242
|
transform: {
|
|
1252
|
-
type:
|
|
1243
|
+
type: vue338.PropType<AnyFunction[]>;
|
|
1253
1244
|
default: () => never[];
|
|
1254
1245
|
};
|
|
1255
1246
|
}>> & Readonly<{}>, {
|
|
1256
1247
|
slots: OrArray<SlotDef>;
|
|
1257
1248
|
type: string;
|
|
1258
|
-
columns: any[];
|
|
1259
1249
|
width: string | number;
|
|
1260
1250
|
minWidth: string | number;
|
|
1261
1251
|
sortable: string | boolean;
|
|
1262
1252
|
resizable: boolean;
|
|
1263
|
-
showOverflowTooltip: boolean | Partial<Pick<
|
|
1253
|
+
showOverflowTooltip: boolean | Partial<Pick<element_plus_es_components_tooltip_index_mjs109.ElTooltipProps, "showArrow" | "appendTo" | "transition" | "effect" | "enterable" | "popperClass" | "offset" | "placement" | "popperOptions" | "showAfter" | "hideAfter">> | undefined;
|
|
1264
1254
|
reserveSelection: boolean;
|
|
1265
1255
|
filterMultiple: boolean;
|
|
1266
1256
|
sortOrders: ("ascending" | "descending" | null)[];
|
|
1257
|
+
columns: any[];
|
|
1267
1258
|
transform: AnyFunction[];
|
|
1268
|
-
}, {}, {}, {}, string,
|
|
1259
|
+
}, {}, {}, {}, string, vue338.ComponentProvideOptions, true, {}, any>;
|
|
1269
1260
|
//#endregion
|
|
1270
1261
|
//#region src/table/index.d.ts
|
|
1271
1262
|
type Instance$1 = InstanceType<typeof _default$4>;
|
|
@@ -1275,7 +1266,7 @@ type TdTableInstance = Instance$1 & Omit<TableInstance, keyof Instance$1>;
|
|
|
1275
1266
|
declare const dialogPropsDef: {
|
|
1276
1267
|
appendToBody?: BooleanConstructor | undefined;
|
|
1277
1268
|
appendTo?: ({
|
|
1278
|
-
readonly type:
|
|
1269
|
+
readonly type: vue338.PropType<string | HTMLElement>;
|
|
1279
1270
|
readonly required: false;
|
|
1280
1271
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1281
1272
|
__epPropKey: true;
|
|
@@ -1283,14 +1274,14 @@ declare const dialogPropsDef: {
|
|
|
1283
1274
|
readonly default: "body";
|
|
1284
1275
|
}) | undefined;
|
|
1285
1276
|
beforeClose?: {
|
|
1286
|
-
readonly type:
|
|
1277
|
+
readonly type: vue338.PropType<element_plus336.DialogBeforeCloseFn>;
|
|
1287
1278
|
readonly required: false;
|
|
1288
1279
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1289
1280
|
__epPropKey: true;
|
|
1290
1281
|
} | undefined;
|
|
1291
1282
|
destroyOnClose?: BooleanConstructor | undefined;
|
|
1292
1283
|
closeOnClickModal?: ({
|
|
1293
|
-
readonly type:
|
|
1284
|
+
readonly type: vue338.PropType<boolean>;
|
|
1294
1285
|
readonly required: false;
|
|
1295
1286
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1296
1287
|
__epPropKey: true;
|
|
@@ -1298,7 +1289,7 @@ declare const dialogPropsDef: {
|
|
|
1298
1289
|
readonly default: true;
|
|
1299
1290
|
}) | undefined;
|
|
1300
1291
|
closeOnPressEscape?: ({
|
|
1301
|
-
readonly type:
|
|
1292
|
+
readonly type: vue338.PropType<boolean>;
|
|
1302
1293
|
readonly required: false;
|
|
1303
1294
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1304
1295
|
__epPropKey: true;
|
|
@@ -1306,7 +1297,7 @@ declare const dialogPropsDef: {
|
|
|
1306
1297
|
readonly default: true;
|
|
1307
1298
|
}) | undefined;
|
|
1308
1299
|
lockScroll?: ({
|
|
1309
|
-
readonly type:
|
|
1300
|
+
readonly type: vue338.PropType<boolean>;
|
|
1310
1301
|
readonly required: false;
|
|
1311
1302
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1312
1303
|
__epPropKey: true;
|
|
@@ -1314,7 +1305,7 @@ declare const dialogPropsDef: {
|
|
|
1314
1305
|
readonly default: true;
|
|
1315
1306
|
}) | undefined;
|
|
1316
1307
|
modal?: ({
|
|
1317
|
-
readonly type:
|
|
1308
|
+
readonly type: vue338.PropType<boolean>;
|
|
1318
1309
|
readonly required: false;
|
|
1319
1310
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1320
1311
|
__epPropKey: true;
|
|
@@ -1322,7 +1313,7 @@ declare const dialogPropsDef: {
|
|
|
1322
1313
|
readonly default: true;
|
|
1323
1314
|
}) | undefined;
|
|
1324
1315
|
openDelay?: ({
|
|
1325
|
-
readonly type:
|
|
1316
|
+
readonly type: vue338.PropType<number>;
|
|
1326
1317
|
readonly required: false;
|
|
1327
1318
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1328
1319
|
__epPropKey: true;
|
|
@@ -1330,7 +1321,7 @@ declare const dialogPropsDef: {
|
|
|
1330
1321
|
readonly default: 0;
|
|
1331
1322
|
}) | undefined;
|
|
1332
1323
|
closeDelay?: ({
|
|
1333
|
-
readonly type:
|
|
1324
|
+
readonly type: vue338.PropType<number>;
|
|
1334
1325
|
readonly required: false;
|
|
1335
1326
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1336
1327
|
__epPropKey: true;
|
|
@@ -1338,7 +1329,7 @@ declare const dialogPropsDef: {
|
|
|
1338
1329
|
readonly default: 0;
|
|
1339
1330
|
}) | undefined;
|
|
1340
1331
|
top?: {
|
|
1341
|
-
readonly type:
|
|
1332
|
+
readonly type: vue338.PropType<string>;
|
|
1342
1333
|
readonly required: false;
|
|
1343
1334
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1344
1335
|
__epPropKey: true;
|
|
@@ -1349,20 +1340,20 @@ declare const dialogPropsDef: {
|
|
|
1349
1340
|
bodyClass?: StringConstructor | undefined;
|
|
1350
1341
|
footerClass?: StringConstructor | undefined;
|
|
1351
1342
|
width?: {
|
|
1352
|
-
readonly type:
|
|
1343
|
+
readonly type: vue338.PropType<string | number>;
|
|
1353
1344
|
readonly required: false;
|
|
1354
1345
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1355
1346
|
__epPropKey: true;
|
|
1356
1347
|
} | undefined;
|
|
1357
1348
|
zIndex?: {
|
|
1358
|
-
readonly type:
|
|
1349
|
+
readonly type: vue338.PropType<number>;
|
|
1359
1350
|
readonly required: false;
|
|
1360
1351
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1361
1352
|
__epPropKey: true;
|
|
1362
1353
|
} | undefined;
|
|
1363
1354
|
trapFocus?: BooleanConstructor | undefined;
|
|
1364
1355
|
headerAriaLevel?: ({
|
|
1365
|
-
readonly type:
|
|
1356
|
+
readonly type: vue338.PropType<string>;
|
|
1366
1357
|
readonly required: false;
|
|
1367
1358
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1368
1359
|
__epPropKey: true;
|
|
@@ -1372,7 +1363,7 @@ declare const dialogPropsDef: {
|
|
|
1372
1363
|
center?: BooleanConstructor | undefined;
|
|
1373
1364
|
alignCenter?: BooleanConstructor | undefined;
|
|
1374
1365
|
closeIcon?: {
|
|
1375
|
-
readonly type:
|
|
1366
|
+
readonly type: vue338.PropType<string | vue338.Component>;
|
|
1376
1367
|
readonly required: false;
|
|
1377
1368
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1378
1369
|
__epPropKey: true;
|
|
@@ -1381,7 +1372,7 @@ declare const dialogPropsDef: {
|
|
|
1381
1372
|
overflow?: BooleanConstructor | undefined;
|
|
1382
1373
|
fullscreen?: BooleanConstructor | undefined;
|
|
1383
1374
|
showClose?: ({
|
|
1384
|
-
readonly type:
|
|
1375
|
+
readonly type: vue338.PropType<boolean>;
|
|
1385
1376
|
readonly required: false;
|
|
1386
1377
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1387
1378
|
__epPropKey: true;
|
|
@@ -1389,7 +1380,7 @@ declare const dialogPropsDef: {
|
|
|
1389
1380
|
readonly default: true;
|
|
1390
1381
|
}) | undefined;
|
|
1391
1382
|
title?: ({
|
|
1392
|
-
readonly type:
|
|
1383
|
+
readonly type: vue338.PropType<string>;
|
|
1393
1384
|
readonly required: false;
|
|
1394
1385
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1395
1386
|
__epPropKey: true;
|
|
@@ -1397,7 +1388,7 @@ declare const dialogPropsDef: {
|
|
|
1397
1388
|
readonly default: "";
|
|
1398
1389
|
}) | undefined;
|
|
1399
1390
|
ariaLevel?: ({
|
|
1400
|
-
readonly type:
|
|
1391
|
+
readonly type: vue338.PropType<string>;
|
|
1401
1392
|
readonly required: false;
|
|
1402
1393
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1403
1394
|
__epPropKey: true;
|
|
@@ -1425,11 +1416,11 @@ declare function wait(): Promise<any>;
|
|
|
1425
1416
|
declare function close(): void;
|
|
1426
1417
|
declare function confirm(instance?: FormInstance): Promise<void>;
|
|
1427
1418
|
declare function step(instance?: FormInstance): Promise<void>;
|
|
1428
|
-
declare const __VLS_component:
|
|
1419
|
+
declare const __VLS_component: vue338.DefineComponent<{}, {
|
|
1429
1420
|
open: typeof open;
|
|
1430
1421
|
wait: typeof wait;
|
|
1431
1422
|
close: typeof close;
|
|
1432
|
-
}, {}, {}, {},
|
|
1423
|
+
}, {}, {}, {}, vue338.ComponentOptionsMixin, vue338.ComponentOptionsMixin, {}, string, vue338.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue338.ComponentProvideOptions, true, {}, any>;
|
|
1433
1424
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
1434
1425
|
type __VLS_WithSlots<T, S> = T & {
|
|
1435
1426
|
new (): {
|
|
@@ -1442,10 +1433,10 @@ type Instance = InstanceType<typeof _default>;
|
|
|
1442
1433
|
type TdDialogInstance = Instance & Omit<DialogInstance, keyof Instance & string>;
|
|
1443
1434
|
//#endregion
|
|
1444
1435
|
//#region src/hooks/use-reuse.d.ts
|
|
1445
|
-
declare function useReuse(): (
|
|
1436
|
+
declare function useReuse(): (vue338.DefineComponent<{}, () => null, {}, {}, {}, vue338.ComponentOptionsMixin, vue338.ComponentOptionsMixin, {}, string, vue338.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue338.ComponentProvideOptions, true, {}, any> | vue338.DefineComponent<{}, () => vue338.VNode<vue338.RendererNode, vue338.RendererElement, {
|
|
1446
1437
|
[key: string]: any;
|
|
1447
|
-
}>[] | undefined, {}, {}, {},
|
|
1448
|
-
[name: string]:
|
|
1438
|
+
}>[] | undefined, {}, {}, {}, vue338.ComponentOptionsMixin, vue338.ComponentOptionsMixin, {}, string, vue338.PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, vue338.ComponentProvideOptions, true, {}, any> | vue338.ComputedRef<Readonly<{
|
|
1439
|
+
[name: string]: vue338.Slot<any> | undefined;
|
|
1449
1440
|
}>>)[];
|
|
1450
1441
|
//#endregion
|
|
1451
1442
|
//#region src/utils/index.d.ts
|