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