vft 0.0.205 → 0.0.207
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/es/components/affix/affix.d.ts +1 -1
- package/es/components/affix/affix.vue.d.ts +3 -3
- package/es/components/affix/index.d.ts +7 -7
- package/es/components/autocomplete/autocomplete.vue.d.ts +1 -1
- package/es/components/autocomplete/index.d.ts +3 -3
- package/es/components/button/index.d.ts +12 -12
- package/es/components/button/use-button.js +3 -3
- package/es/components/carousel/carousel.vue.d.ts +1 -1
- package/es/components/carousel/index.d.ts +19 -19
- package/es/components/date-picker/date-picker.d.ts +1 -1
- package/es/components/date-picker/index.d.ts +2 -2
- package/es/components/dropdown/dropdown.vue.d.ts +1 -1
- package/es/components/dropdown/index.d.ts +19 -19
- package/es/components/focus-trap/utils.d.ts +1 -1
- package/es/components/form/form-item.vue.d.ts +1 -1
- package/es/components/form/index.d.ts +42 -42
- package/es/components/index.js +111 -111
- package/es/components/modal/index.d.ts +24 -24
- package/es/components/multiple-tabs/multiple-tabs.vue2.js +1 -1
- package/es/components/popconfirm/index.d.ts +23 -23
- package/es/components/popconfirm/popconfirm.vue.d.ts +1 -1
- package/es/components/popper/composables/use-content.d.ts +3 -3
- package/es/components/progress/index.d.ts +4 -4
- package/es/components/super-form/super-form-item.vue2.js +33 -35
- package/es/components/switch/index.d.ts +6 -6
- package/es/components/table/index.d.ts +40 -40
- package/es/components/tabs/index.d.ts +2 -2
- package/es/components/time-picker/common/picker.vue.d.ts +1 -1
- package/es/components/time-picker/index.d.ts +2 -2
- package/es/components/time-picker/time-picker.d.ts +1 -1
- package/es/components/timeline/index.d.ts +8 -8
- package/es/components/tree/index.d.ts +12 -12
- package/es/hooks/use-popper/index.d.ts +3 -3
- package/es/index.js +111 -111
- package/es/package.json.d.ts +1 -1
- package/es/package.json.js +1 -1
- package/lib/components/affix/affix.d.ts +1 -1
- package/lib/components/affix/affix.vue.d.ts +3 -3
- package/lib/components/affix/index.d.ts +7 -7
- package/lib/components/autocomplete/autocomplete.vue.d.ts +1 -1
- package/lib/components/autocomplete/index.d.ts +3 -3
- package/lib/components/button/index.d.ts +12 -12
- package/lib/components/button/use-button.cjs +1 -1
- package/lib/components/carousel/carousel.vue.d.ts +1 -1
- package/lib/components/carousel/index.d.ts +19 -19
- package/lib/components/date-picker/date-picker.d.ts +1 -1
- package/lib/components/date-picker/index.d.ts +2 -2
- package/lib/components/dropdown/dropdown.vue.d.ts +1 -1
- package/lib/components/dropdown/index.d.ts +19 -19
- package/lib/components/focus-trap/utils.d.ts +1 -1
- package/lib/components/form/form-item.vue.d.ts +1 -1
- package/lib/components/form/index.d.ts +42 -42
- package/lib/components/index.cjs +1 -1
- package/lib/components/modal/index.d.ts +24 -24
- package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
- package/lib/components/popconfirm/index.d.ts +23 -23
- package/lib/components/popconfirm/popconfirm.vue.d.ts +1 -1
- package/lib/components/popper/composables/use-content.d.ts +3 -3
- package/lib/components/progress/index.d.ts +4 -4
- package/lib/components/super-form/super-form-item.vue2.cjs +1 -1
- package/lib/components/switch/index.d.ts +6 -6
- package/lib/components/table/index.d.ts +40 -40
- package/lib/components/tabs/index.d.ts +2 -2
- package/lib/components/time-picker/common/picker.vue.d.ts +1 -1
- package/lib/components/time-picker/index.d.ts +2 -2
- package/lib/components/time-picker/time-picker.d.ts +1 -1
- package/lib/components/timeline/index.d.ts +8 -8
- package/lib/components/tree/index.d.ts +12 -12
- package/lib/hooks/use-popper/index.d.ts +3 -3
- package/lib/index.cjs +1 -1
- package/lib/package.json.cjs +1 -1
- package/lib/package.json.d.ts +1 -1
- package/package.json +4 -4
- package/web-types.json +1 -1
|
@@ -15,7 +15,7 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
15
15
|
type: import("vue").PropType<Partial<Record<string, import("vft/es/utils").Arrayable<import("./types").FormItemRule>>>>;
|
|
16
16
|
};
|
|
17
17
|
labelPosition: {
|
|
18
|
-
type: import("vue").PropType<"
|
|
18
|
+
type: import("vue").PropType<"left" | "right" | "top">;
|
|
19
19
|
};
|
|
20
20
|
requireAsteriskPosition: {
|
|
21
21
|
type: import("vue").PropType<"left" | "right">;
|
|
@@ -71,7 +71,7 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
71
71
|
type: import("vue").PropType<Partial<Record<string, import("vft/es/utils").Arrayable<import("./types").FormItemRule>>>>;
|
|
72
72
|
};
|
|
73
73
|
labelPosition: {
|
|
74
|
-
type: import("vue").PropType<"
|
|
74
|
+
type: import("vue").PropType<"left" | "right" | "top">;
|
|
75
75
|
};
|
|
76
76
|
requireAsteriskPosition: {
|
|
77
77
|
type: import("vue").PropType<"left" | "right">;
|
|
@@ -126,7 +126,7 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
126
126
|
type: import("vue").PropType<Partial<Record<string, import("vft/es/utils").Arrayable<import("./types").FormItemRule>>>>;
|
|
127
127
|
};
|
|
128
128
|
labelPosition: {
|
|
129
|
-
type: import("vue").PropType<"
|
|
129
|
+
type: import("vue").PropType<"left" | "right" | "top">;
|
|
130
130
|
};
|
|
131
131
|
requireAsteriskPosition: {
|
|
132
132
|
type: import("vue").PropType<"left" | "right">;
|
|
@@ -184,7 +184,7 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
184
184
|
type: import("vue").PropType<Partial<Record<string, import("vft/es/utils").Arrayable<import("./types").FormItemRule>>>>;
|
|
185
185
|
};
|
|
186
186
|
labelPosition: {
|
|
187
|
-
type: import("vue").PropType<"
|
|
187
|
+
type: import("vue").PropType<"left" | "right" | "top">;
|
|
188
188
|
};
|
|
189
189
|
requireAsteriskPosition: {
|
|
190
190
|
type: import("vue").PropType<"left" | "right">;
|
|
@@ -245,6 +245,10 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
245
245
|
size: {
|
|
246
246
|
type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
247
247
|
};
|
|
248
|
+
required: {
|
|
249
|
+
type: import("vue").PropType<boolean>;
|
|
250
|
+
default: undefined;
|
|
251
|
+
};
|
|
248
252
|
rules: {
|
|
249
253
|
type: import("vue").PropType<import("vft/es/utils").Arrayable<import("./types").FormItemRule>>;
|
|
250
254
|
};
|
|
@@ -252,10 +256,6 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
252
256
|
type: import("vue").PropType<string | number>;
|
|
253
257
|
default: string;
|
|
254
258
|
};
|
|
255
|
-
required: {
|
|
256
|
-
type: import("vue").PropType<boolean>;
|
|
257
|
-
default: undefined;
|
|
258
|
-
};
|
|
259
259
|
for: {
|
|
260
260
|
type: import("vue").PropType<string>;
|
|
261
261
|
};
|
|
@@ -294,6 +294,10 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
294
294
|
size: {
|
|
295
295
|
type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
296
296
|
};
|
|
297
|
+
required: {
|
|
298
|
+
type: import("vue").PropType<boolean>;
|
|
299
|
+
default: undefined;
|
|
300
|
+
};
|
|
297
301
|
rules: {
|
|
298
302
|
type: import("vue").PropType<import("vft/es/utils").Arrayable<import("./types").FormItemRule>>;
|
|
299
303
|
};
|
|
@@ -301,10 +305,6 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
301
305
|
type: import("vue").PropType<string | number>;
|
|
302
306
|
default: string;
|
|
303
307
|
};
|
|
304
|
-
required: {
|
|
305
|
-
type: import("vue").PropType<boolean>;
|
|
306
|
-
default: undefined;
|
|
307
|
-
};
|
|
308
308
|
for: {
|
|
309
309
|
type: import("vue").PropType<string>;
|
|
310
310
|
};
|
|
@@ -322,8 +322,8 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
322
322
|
}>> & {
|
|
323
323
|
"onUpdate:error"?: ((val: string) => any) | undefined;
|
|
324
324
|
}, {
|
|
325
|
-
labelWidth: string | number;
|
|
326
325
|
required: boolean;
|
|
326
|
+
labelWidth: string | number;
|
|
327
327
|
inlineMessage: string | boolean;
|
|
328
328
|
showMessage: boolean;
|
|
329
329
|
}, true, {}, {}, {
|
|
@@ -346,6 +346,10 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
346
346
|
size: {
|
|
347
347
|
type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
348
348
|
};
|
|
349
|
+
required: {
|
|
350
|
+
type: import("vue").PropType<boolean>;
|
|
351
|
+
default: undefined;
|
|
352
|
+
};
|
|
349
353
|
rules: {
|
|
350
354
|
type: import("vue").PropType<import("vft/es/utils").Arrayable<import("./types").FormItemRule>>;
|
|
351
355
|
};
|
|
@@ -353,10 +357,6 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
353
357
|
type: import("vue").PropType<string | number>;
|
|
354
358
|
default: string;
|
|
355
359
|
};
|
|
356
|
-
required: {
|
|
357
|
-
type: import("vue").PropType<boolean>;
|
|
358
|
-
default: undefined;
|
|
359
|
-
};
|
|
360
360
|
for: {
|
|
361
361
|
type: import("vue").PropType<string>;
|
|
362
362
|
};
|
|
@@ -381,8 +381,8 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
381
381
|
clearValidate: () => void;
|
|
382
382
|
resetField: () => void;
|
|
383
383
|
}, {}, {}, {}, {
|
|
384
|
-
labelWidth: string | number;
|
|
385
384
|
required: boolean;
|
|
385
|
+
labelWidth: string | number;
|
|
386
386
|
inlineMessage: string | boolean;
|
|
387
387
|
showMessage: boolean;
|
|
388
388
|
}>;
|
|
@@ -402,6 +402,10 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
402
402
|
size: {
|
|
403
403
|
type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
404
404
|
};
|
|
405
|
+
required: {
|
|
406
|
+
type: import("vue").PropType<boolean>;
|
|
407
|
+
default: undefined;
|
|
408
|
+
};
|
|
405
409
|
rules: {
|
|
406
410
|
type: import("vue").PropType<import("vft/es/utils").Arrayable<import("./types").FormItemRule>>;
|
|
407
411
|
};
|
|
@@ -409,10 +413,6 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
409
413
|
type: import("vue").PropType<string | number>;
|
|
410
414
|
default: string;
|
|
411
415
|
};
|
|
412
|
-
required: {
|
|
413
|
-
type: import("vue").PropType<boolean>;
|
|
414
|
-
default: undefined;
|
|
415
|
-
};
|
|
416
416
|
for: {
|
|
417
417
|
type: import("vue").PropType<string>;
|
|
418
418
|
};
|
|
@@ -439,8 +439,8 @@ export declare const VftForm: import("vft/es/utils").SFCWithInstall<{
|
|
|
439
439
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
440
440
|
"update:error": (val: string) => void;
|
|
441
441
|
}, string, {
|
|
442
|
-
labelWidth: string | number;
|
|
443
442
|
required: boolean;
|
|
443
|
+
labelWidth: string | number;
|
|
444
444
|
inlineMessage: string | boolean;
|
|
445
445
|
showMessage: boolean;
|
|
446
446
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -469,6 +469,10 @@ export declare const VftFormItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
469
469
|
size: {
|
|
470
470
|
type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
471
471
|
};
|
|
472
|
+
required: {
|
|
473
|
+
type: import("vue").PropType<boolean>;
|
|
474
|
+
default: undefined;
|
|
475
|
+
};
|
|
472
476
|
rules: {
|
|
473
477
|
type: import("vue").PropType<import("vft/es/utils").Arrayable<import("./types").FormItemRule>>;
|
|
474
478
|
};
|
|
@@ -476,10 +480,6 @@ export declare const VftFormItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
476
480
|
type: import("vue").PropType<string | number>;
|
|
477
481
|
default: string;
|
|
478
482
|
};
|
|
479
|
-
required: {
|
|
480
|
-
type: import("vue").PropType<boolean>;
|
|
481
|
-
default: undefined;
|
|
482
|
-
};
|
|
483
483
|
for: {
|
|
484
484
|
type: import("vue").PropType<string>;
|
|
485
485
|
};
|
|
@@ -518,6 +518,10 @@ export declare const VftFormItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
518
518
|
size: {
|
|
519
519
|
type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
520
520
|
};
|
|
521
|
+
required: {
|
|
522
|
+
type: import("vue").PropType<boolean>;
|
|
523
|
+
default: undefined;
|
|
524
|
+
};
|
|
521
525
|
rules: {
|
|
522
526
|
type: import("vue").PropType<import("vft/es/utils").Arrayable<import("./types").FormItemRule>>;
|
|
523
527
|
};
|
|
@@ -525,10 +529,6 @@ export declare const VftFormItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
525
529
|
type: import("vue").PropType<string | number>;
|
|
526
530
|
default: string;
|
|
527
531
|
};
|
|
528
|
-
required: {
|
|
529
|
-
type: import("vue").PropType<boolean>;
|
|
530
|
-
default: undefined;
|
|
531
|
-
};
|
|
532
532
|
for: {
|
|
533
533
|
type: import("vue").PropType<string>;
|
|
534
534
|
};
|
|
@@ -546,8 +546,8 @@ export declare const VftFormItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
546
546
|
}>> & {
|
|
547
547
|
"onUpdate:error"?: ((val: string) => any) | undefined;
|
|
548
548
|
}, {
|
|
549
|
-
labelWidth: string | number;
|
|
550
549
|
required: boolean;
|
|
550
|
+
labelWidth: string | number;
|
|
551
551
|
inlineMessage: string | boolean;
|
|
552
552
|
showMessage: boolean;
|
|
553
553
|
}, true, {}, {}, {
|
|
@@ -570,6 +570,10 @@ export declare const VftFormItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
570
570
|
size: {
|
|
571
571
|
type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
572
572
|
};
|
|
573
|
+
required: {
|
|
574
|
+
type: import("vue").PropType<boolean>;
|
|
575
|
+
default: undefined;
|
|
576
|
+
};
|
|
573
577
|
rules: {
|
|
574
578
|
type: import("vue").PropType<import("vft/es/utils").Arrayable<import("./types").FormItemRule>>;
|
|
575
579
|
};
|
|
@@ -577,10 +581,6 @@ export declare const VftFormItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
577
581
|
type: import("vue").PropType<string | number>;
|
|
578
582
|
default: string;
|
|
579
583
|
};
|
|
580
|
-
required: {
|
|
581
|
-
type: import("vue").PropType<boolean>;
|
|
582
|
-
default: undefined;
|
|
583
|
-
};
|
|
584
584
|
for: {
|
|
585
585
|
type: import("vue").PropType<string>;
|
|
586
586
|
};
|
|
@@ -605,8 +605,8 @@ export declare const VftFormItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
605
605
|
clearValidate: () => void;
|
|
606
606
|
resetField: () => void;
|
|
607
607
|
}, {}, {}, {}, {
|
|
608
|
-
labelWidth: string | number;
|
|
609
608
|
required: boolean;
|
|
609
|
+
labelWidth: string | number;
|
|
610
610
|
inlineMessage: string | boolean;
|
|
611
611
|
showMessage: boolean;
|
|
612
612
|
}>;
|
|
@@ -626,6 +626,10 @@ export declare const VftFormItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
626
626
|
size: {
|
|
627
627
|
type: import("vue").PropType<"" | "default" | "small" | "large">;
|
|
628
628
|
};
|
|
629
|
+
required: {
|
|
630
|
+
type: import("vue").PropType<boolean>;
|
|
631
|
+
default: undefined;
|
|
632
|
+
};
|
|
629
633
|
rules: {
|
|
630
634
|
type: import("vue").PropType<import("vft/es/utils").Arrayable<import("./types").FormItemRule>>;
|
|
631
635
|
};
|
|
@@ -633,10 +637,6 @@ export declare const VftFormItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
633
637
|
type: import("vue").PropType<string | number>;
|
|
634
638
|
default: string;
|
|
635
639
|
};
|
|
636
|
-
required: {
|
|
637
|
-
type: import("vue").PropType<boolean>;
|
|
638
|
-
default: undefined;
|
|
639
|
-
};
|
|
640
640
|
for: {
|
|
641
641
|
type: import("vue").PropType<string>;
|
|
642
642
|
};
|
|
@@ -663,8 +663,8 @@ export declare const VftFormItem: import("vft/es/utils").SFCWithInstall<{
|
|
|
663
663
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
664
664
|
"update:error": (val: string) => void;
|
|
665
665
|
}, string, {
|
|
666
|
-
labelWidth: string | number;
|
|
667
666
|
required: boolean;
|
|
667
|
+
labelWidth: string | number;
|
|
668
668
|
inlineMessage: string | boolean;
|
|
669
669
|
showMessage: boolean;
|
|
670
670
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
package/es/components/index.js
CHANGED
|
@@ -90,44 +90,44 @@ import { VftLoading as He } from "./loading/index.js";
|
|
|
90
90
|
import { VftMessage as Je, VftMessage as Ye } from "./message/index.js";
|
|
91
91
|
import { VftInfiniteScroll as Qe } from "./infinite-scroll/index.js";
|
|
92
92
|
import { VftProgressI as Xe } from "./progress-i/index.js";
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import { default as jt } from "./popper/
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
93
|
+
import { buttonGroupContextKey as $e } from "./button/constants.js";
|
|
94
|
+
import { checkboxGroupContextKey as rt } from "./checkbox/constants.js";
|
|
95
|
+
import { configProviderContextKey as tt, messageConfig as ft } from "./config-provider/constants.js";
|
|
96
|
+
import { provideGlobalConfig as pt, useGlobalComponentSettings as xt, useGlobalConfig as at } from "./config-provider/hooks/use-global-config.js";
|
|
97
|
+
import { ROOT_PICKER_INJECTION_KEY as Vt, datePickerConfig as nt } from "./date-picker/constants.js";
|
|
98
|
+
import { datePickerProps as ut } from "./date-picker/props/date-picker.js";
|
|
99
|
+
import { dialogInjectionKey as dt } from "./dialog/constants.js";
|
|
100
|
+
import { useDialog as It } from "./dialog/hooks/use-dialog.js";
|
|
101
|
+
import { DROPDOWN_INJECTION_KEY as Ct } from "./dropdown/tokens.js";
|
|
102
|
+
import { EmptyEnum as Dt } from "./empty/constants.js";
|
|
103
|
+
import { formContextKey as Pt, formItemContextKey as Mt } from "./form/constants.js";
|
|
104
|
+
import { useDisabled as Ft, useFormDisabled as Lt, useFormSize as yt, useSize as bt } from "./form/hooks/use-form-common-props.js";
|
|
105
|
+
import { useFormItem as At, useFormItemInputId as Kt } from "./form/hooks/use-form-item.js";
|
|
106
|
+
import { MenuTypeEnum as vt } from "./horizontal-menu/constants.js";
|
|
107
|
+
import { initAffixTabs as Gt, useTabsDrag as Ot } from "./multiple-tabs/use/use-multiple-tabs.js";
|
|
108
|
+
import { useTabDropdown as zt } from "./multiple-tabs/use/use-tab-dropdown.js";
|
|
109
|
+
import { usePagination as ht, vftPaginationKey as Ut } from "./pagination/usePagination.js";
|
|
110
|
+
import { default as Ht } from "./popper/arrow.vue2.js";
|
|
111
|
+
import { default as Jt } from "./popper/content.vue2.js";
|
|
112
|
+
import { default as jt } from "./popper/trigger.vue2.js";
|
|
113
|
+
import { radioGroupKey as Wt } from "./radio/constants.js";
|
|
114
|
+
import { rowContextKey as Zt } from "./row/constants.js";
|
|
115
|
+
import { scrollbarContextKey as of } from "./scrollbar/constants.js";
|
|
116
|
+
import { BAR_MAP as ef, GAP as tf, renderThumbStyle as ff } from "./scrollbar/util.js";
|
|
117
|
+
import { selectInjectionKey as pf } from "./select/token.js";
|
|
118
|
+
import { sliderContextKey as af } from "./slider/constants.js";
|
|
119
|
+
import { sliderEmits as nf } from "./slider/slider.js";
|
|
120
|
+
import { spaceProps as uf } from "./space/space.js";
|
|
121
|
+
import { useSpace as df } from "./space/use-space.js";
|
|
122
|
+
import { ACTION_FIELD as If, CHECKED_FIELD as Tf, CREATE_TIME_FIELD as Cf, DATE_FIELD as gf, DATE_TIME_FIELD as Df, ID_FIELD as Ef, NAME_FIELD as Pf, SEQ_FIELD as Mf, STATUS_FIELD as Sf, UPDATE_TIME_FIELD as Ff } from "./table/field.js";
|
|
123
|
+
import { useTable as yf } from "./table/use/use-table.js";
|
|
124
|
+
import { addRequire as _f, removeRequire as Af, selectMapping as Kf } from "./table/utils.js";
|
|
125
|
+
import { TabsRootContextKey as vf } from "./tabs/types.js";
|
|
126
|
+
import { timePickerDefaultProps as Gf } from "./time-picker/common/props.js";
|
|
127
|
+
import { DEFAULT_FORMATS_DATE as wf, DEFAULT_FORMATS_DATEPICKER as zf, DEFAULT_FORMATS_TIME as Nf, timeUnits as hf } from "./time-picker/constants.js";
|
|
128
|
+
import { buildTimeList as Bf, dateEquals as Hf, extractDateFormat as qf, extractTimeFormat as Jf, formatter as Yf, makeList as jf, parseDate as Qf, rangeArr as Wf, valueEquals as Xf } from "./time-picker/utils.js";
|
|
129
|
+
import { default as $f } from "./time-picker/common/picker.vue2.js";
|
|
130
|
+
import { default as rm } from "./time-picker/time-picker-com/panel-time-pick.vue2.js";
|
|
131
131
|
import { TOOLTIP_INJECTION_KEY as tm } from "./tooltip/constants.js";
|
|
132
132
|
import { getChildState as mm } from "./tree/model/node.js";
|
|
133
133
|
import { dragEventsKey as xm, useDragNodeHandler as am } from "./tree/model/useDragNode.js";
|
|
@@ -140,36 +140,36 @@ import { vLoading as bm, createLoadingDirective as _m, vLoading as Am } from "./
|
|
|
140
140
|
import { Loading as km } from "./loading/service.js";
|
|
141
141
|
import { messageDefaults as Rm, messageTypes as Gm } from "./message/types.js";
|
|
142
142
|
export {
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
$
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
143
|
+
If as ACTION_FIELD,
|
|
144
|
+
ef as BAR_MAP,
|
|
145
|
+
Tf as CHECKED_FIELD,
|
|
146
|
+
Cf as CREATE_TIME_FIELD,
|
|
147
|
+
$f as CommonPicker,
|
|
148
|
+
gf as DATE_FIELD,
|
|
149
|
+
Df as DATE_TIME_FIELD,
|
|
150
|
+
wf as DEFAULT_FORMATS_DATE,
|
|
151
|
+
zf as DEFAULT_FORMATS_DATEPICKER,
|
|
152
|
+
Nf as DEFAULT_FORMATS_TIME,
|
|
153
|
+
Ct as DROPDOWN_INJECTION_KEY,
|
|
154
154
|
oe as DynamicSizeGrid,
|
|
155
155
|
ee as DynamicSizeList,
|
|
156
|
-
|
|
156
|
+
Dt as EmptyEnum,
|
|
157
157
|
fe as FixedSizeGrid,
|
|
158
158
|
pe as FixedSizeList,
|
|
159
159
|
um as FormCompEnum,
|
|
160
|
-
|
|
161
|
-
|
|
160
|
+
tf as GAP,
|
|
161
|
+
Ef as ID_FIELD,
|
|
162
162
|
Po as Icon,
|
|
163
|
-
|
|
163
|
+
vt as MenuTypeEnum,
|
|
164
164
|
Je as Message,
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
165
|
+
Pf as NAME_FIELD,
|
|
166
|
+
Vt as ROOT_PICKER_INJECTION_KEY,
|
|
167
|
+
Mf as SEQ_FIELD,
|
|
168
|
+
Sf as STATUS_FIELD,
|
|
169
169
|
tm as TOOLTIP_INJECTION_KEY,
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
170
|
+
vf as TabsRootContextKey,
|
|
171
|
+
rm as TimePickPanel,
|
|
172
|
+
Ff as UPDATE_TIME_FIELD,
|
|
173
173
|
e as VftAlert,
|
|
174
174
|
k as VftAside,
|
|
175
175
|
ce as VftAutocomplete,
|
|
@@ -246,9 +246,9 @@ export {
|
|
|
246
246
|
fr as VftPopconfirm,
|
|
247
247
|
pr as VftPopover,
|
|
248
248
|
ar as VftPopper,
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
249
|
+
Ht as VftPopperArrow,
|
|
250
|
+
Jt as VftPopperContent,
|
|
251
|
+
jt as VftPopperTrigger,
|
|
252
252
|
ge as VftProgress,
|
|
253
253
|
Xe as VftProgressI,
|
|
254
254
|
Vr as VftQrcode,
|
|
@@ -283,76 +283,76 @@ export {
|
|
|
283
283
|
Me as VftUpload,
|
|
284
284
|
Zr as VftVerifyCode,
|
|
285
285
|
lm as add,
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
286
|
+
_f as addRequire,
|
|
287
|
+
Bf as buildTimeList,
|
|
288
|
+
$e as buttonGroupContextKey,
|
|
289
289
|
Lm as carouselContextKey,
|
|
290
|
-
|
|
290
|
+
rt as checkboxGroupContextKey,
|
|
291
291
|
dm as componentMap,
|
|
292
|
-
|
|
292
|
+
tt as configProviderContextKey,
|
|
293
293
|
z as createContextMenu,
|
|
294
294
|
_m as createLoadingDirective,
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
295
|
+
Hf as dateEquals,
|
|
296
|
+
nt as datePickerConfig,
|
|
297
|
+
ut as datePickerProps,
|
|
298
298
|
cm as del,
|
|
299
299
|
N as destroyContextMenu,
|
|
300
|
-
|
|
300
|
+
dt as dialogInjectionKey,
|
|
301
301
|
xm as dragEventsKey,
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
302
|
+
qf as extractDateFormat,
|
|
303
|
+
Jf as extractTimeFormat,
|
|
304
|
+
Pt as formContextKey,
|
|
305
|
+
Mt as formItemContextKey,
|
|
306
|
+
Yf as formatter,
|
|
307
307
|
Mm as genFileId,
|
|
308
308
|
mm as getChildState,
|
|
309
309
|
Dm as getDynamicProps,
|
|
310
|
-
|
|
310
|
+
Gt as initAffixTabs,
|
|
311
311
|
Im as isDatePicker,
|
|
312
312
|
Tm as isInput,
|
|
313
313
|
Cm as isRangePicker,
|
|
314
|
-
|
|
315
|
-
|
|
314
|
+
jf as makeList,
|
|
315
|
+
ft as messageConfig,
|
|
316
316
|
Rm as messageDefaults,
|
|
317
317
|
Gm as messageTypes,
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
318
|
+
Qf as parseDate,
|
|
319
|
+
pt as provideGlobalConfig,
|
|
320
|
+
Wt as radioGroupKey,
|
|
321
|
+
Wf as rangeArr,
|
|
322
|
+
Af as removeRequire,
|
|
323
|
+
ff as renderThumbStyle,
|
|
324
|
+
Zt as rowContextKey,
|
|
325
|
+
of as scrollbarContextKey,
|
|
326
|
+
pf as selectInjectionKey,
|
|
327
|
+
Kf as selectMapping,
|
|
328
|
+
af as sliderContextKey,
|
|
329
|
+
nf as sliderEmits,
|
|
330
|
+
uf as spaceProps,
|
|
331
|
+
Gf as timePickerDefaultProps,
|
|
332
|
+
hf as timeUnits,
|
|
333
333
|
Sm as uploadContextKey,
|
|
334
334
|
U as useContextMenu,
|
|
335
|
-
|
|
336
|
-
|
|
335
|
+
It as useDialog,
|
|
336
|
+
Ft as useDisabled,
|
|
337
337
|
am as useDragNodeHandler,
|
|
338
338
|
Em as useForm,
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
339
|
+
Lt as useFormDisabled,
|
|
340
|
+
At as useFormItem,
|
|
341
|
+
Kt as useFormItemInputId,
|
|
342
|
+
yt as useFormSize,
|
|
343
|
+
xt as useGlobalComponentSettings,
|
|
344
|
+
at as useGlobalConfig,
|
|
345
345
|
Vm as useModal,
|
|
346
346
|
nm as useModalInner,
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
347
|
+
ht as usePagination,
|
|
348
|
+
bt as useSize,
|
|
349
|
+
df as useSpace,
|
|
350
|
+
zt as useTabDropdown,
|
|
351
|
+
yf as useTable,
|
|
352
|
+
Ot as useTabsDrag,
|
|
353
353
|
Am as vLoading,
|
|
354
|
-
|
|
355
|
-
|
|
354
|
+
Xf as valueEquals,
|
|
355
|
+
Ut as vftPaginationKey,
|
|
356
356
|
ae as virtualizedGridProps,
|
|
357
357
|
ie as virtualizedListProps,
|
|
358
358
|
Ve as virtualizedProps,
|
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
import { type ModalProps } from './modal.vue';
|
|
2
2
|
export declare const VftModal: import("vft/es/utils").SFCWithInstall<{
|
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
-
top: {
|
|
5
|
-
type: import("vue").PropType<string>;
|
|
6
|
-
};
|
|
7
|
-
width: {
|
|
8
|
-
type: import("vue").PropType<string | number>;
|
|
9
|
-
};
|
|
10
4
|
title: {
|
|
11
5
|
type: import("vue").PropType<string>;
|
|
12
6
|
default: string;
|
|
@@ -15,6 +9,12 @@ export declare const VftModal: import("vft/es/utils").SFCWithInstall<{
|
|
|
15
9
|
type: import("vue").PropType<boolean>;
|
|
16
10
|
default: boolean;
|
|
17
11
|
};
|
|
12
|
+
top: {
|
|
13
|
+
type: import("vue").PropType<string>;
|
|
14
|
+
};
|
|
15
|
+
width: {
|
|
16
|
+
type: import("vue").PropType<string | number>;
|
|
17
|
+
};
|
|
18
18
|
zIndex: {
|
|
19
19
|
type: import("vue").PropType<number>;
|
|
20
20
|
};
|
|
@@ -120,12 +120,6 @@ export declare const VftModal: import("vft/es/utils").SFCWithInstall<{
|
|
|
120
120
|
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
121
121
|
[x: string]: (...args: any[]) => void;
|
|
122
122
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
123
|
-
top: {
|
|
124
|
-
type: import("vue").PropType<string>;
|
|
125
|
-
};
|
|
126
|
-
width: {
|
|
127
|
-
type: import("vue").PropType<string | number>;
|
|
128
|
-
};
|
|
129
123
|
title: {
|
|
130
124
|
type: import("vue").PropType<string>;
|
|
131
125
|
default: string;
|
|
@@ -134,6 +128,12 @@ export declare const VftModal: import("vft/es/utils").SFCWithInstall<{
|
|
|
134
128
|
type: import("vue").PropType<boolean>;
|
|
135
129
|
default: boolean;
|
|
136
130
|
};
|
|
131
|
+
top: {
|
|
132
|
+
type: import("vue").PropType<string>;
|
|
133
|
+
};
|
|
134
|
+
width: {
|
|
135
|
+
type: import("vue").PropType<string | number>;
|
|
136
|
+
};
|
|
137
137
|
zIndex: {
|
|
138
138
|
type: import("vue").PropType<number>;
|
|
139
139
|
};
|
|
@@ -265,12 +265,6 @@ export declare const VftModal: import("vft/es/utils").SFCWithInstall<{
|
|
|
265
265
|
M: {};
|
|
266
266
|
Defaults: {};
|
|
267
267
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
268
|
-
top: {
|
|
269
|
-
type: import("vue").PropType<string>;
|
|
270
|
-
};
|
|
271
|
-
width: {
|
|
272
|
-
type: import("vue").PropType<string | number>;
|
|
273
|
-
};
|
|
274
268
|
title: {
|
|
275
269
|
type: import("vue").PropType<string>;
|
|
276
270
|
default: string;
|
|
@@ -279,6 +273,12 @@ export declare const VftModal: import("vft/es/utils").SFCWithInstall<{
|
|
|
279
273
|
type: import("vue").PropType<boolean>;
|
|
280
274
|
default: boolean;
|
|
281
275
|
};
|
|
276
|
+
top: {
|
|
277
|
+
type: import("vue").PropType<string>;
|
|
278
|
+
};
|
|
279
|
+
width: {
|
|
280
|
+
type: import("vue").PropType<string | number>;
|
|
281
|
+
};
|
|
282
282
|
zIndex: {
|
|
283
283
|
type: import("vue").PropType<number>;
|
|
284
284
|
};
|
|
@@ -407,12 +407,6 @@ export declare const VftModal: import("vft/es/utils").SFCWithInstall<{
|
|
|
407
407
|
__isTeleport?: never;
|
|
408
408
|
__isSuspense?: never;
|
|
409
409
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
410
|
-
top: {
|
|
411
|
-
type: import("vue").PropType<string>;
|
|
412
|
-
};
|
|
413
|
-
width: {
|
|
414
|
-
type: import("vue").PropType<string | number>;
|
|
415
|
-
};
|
|
416
410
|
title: {
|
|
417
411
|
type: import("vue").PropType<string>;
|
|
418
412
|
default: string;
|
|
@@ -421,6 +415,12 @@ export declare const VftModal: import("vft/es/utils").SFCWithInstall<{
|
|
|
421
415
|
type: import("vue").PropType<boolean>;
|
|
422
416
|
default: boolean;
|
|
423
417
|
};
|
|
418
|
+
top: {
|
|
419
|
+
type: import("vue").PropType<string>;
|
|
420
|
+
};
|
|
421
|
+
width: {
|
|
422
|
+
type: import("vue").PropType<string | number>;
|
|
423
|
+
};
|
|
424
424
|
zIndex: {
|
|
425
425
|
type: import("vue").PropType<number>;
|
|
426
426
|
};
|
|
@@ -134,7 +134,7 @@ const rt = P({
|
|
|
134
134
|
if (!t || (g = t.meta) != null && g.hasTokenToRoot)
|
|
135
135
|
return;
|
|
136
136
|
const { meta: e = {} } = t, { currentActivePath: o, hideTab: n } = e, p = n ? o : null, s = f(t);
|
|
137
|
-
if (m.value !== s && (m.value = s),
|
|
137
|
+
if (m.value !== s && (m.value = s), p) {
|
|
138
138
|
let T = l.getRoutes().find((z) => z.path === o);
|
|
139
139
|
T && u.addTab(
|
|
140
140
|
T,
|