yuyeon 0.1.1 → 0.1.2-rc.2
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/style.css +1 -1
- package/dist/yuyeon.js +1330 -1324
- package/dist/yuyeon.umd.cjs +11 -11
- package/lib/components/badge/YBadge.mjs +4 -4
- package/lib/components/badge/YBadge.mjs.map +1 -1
- package/lib/components/badge/YBadge.scss +1 -0
- package/lib/components/dialog/YDialog.mjs +4 -2
- package/lib/components/dialog/YDialog.mjs.map +1 -1
- package/lib/components/dropdown/YDropdown.mjs +4 -5
- package/lib/components/dropdown/YDropdown.mjs.map +1 -1
- package/lib/components/img/YImg.mjs +174 -0
- package/lib/components/img/YImg.mjs.map +1 -0
- package/lib/components/img/YImg.scss +31 -0
- package/lib/components/img/index.mjs +2 -0
- package/lib/components/img/index.mjs.map +1 -0
- package/lib/components/layer/YLayer.mjs +2 -2
- package/lib/components/layer/YLayer.mjs.map +1 -1
- package/lib/components/menu/YMenu.mjs +4 -5
- package/lib/components/menu/YMenu.mjs.map +1 -1
- package/lib/components/select/YSelect.mjs +4 -4
- package/lib/components/select/YSelect.mjs.map +1 -1
- package/lib/components/text-ellipsis/YTextEllipsis.mjs +1 -1
- package/lib/components/text-ellipsis/YTextEllipsis.mjs.map +1 -1
- package/lib/components/tooltip/YTooltip.mjs +4 -5
- package/lib/components/tooltip/YTooltip.mjs.map +1 -1
- package/lib/composables/resize-observer.mjs +2 -1
- package/lib/composables/resize-observer.mjs.map +1 -1
- package/lib/composables/transition.mjs +3 -2
- package/lib/composables/transition.mjs.map +1 -1
- package/lib/util/environments.mjs +8 -0
- package/lib/util/environments.mjs.map +1 -0
- package/package.json +1 -1
- package/types/components/dropdown/YDropdown.d.ts +43 -15
- package/types/components/img/YImg.d.ts +173 -0
- package/types/components/img/index.d.ts +0 -0
- package/types/components/layer/YLayer.d.ts +4 -4
- package/types/components/menu/YMenu.d.ts +20 -6
- package/types/components/select/YSelect.d.ts +213 -94
- package/types/components/tooltip/YTooltip.d.ts +20 -6
- package/types/composables/transition.d.ts +20 -2
- package/types/util/environments.d.ts +6 -0
|
@@ -106,9 +106,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
106
106
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
107
107
|
closeDelay: number;
|
|
108
108
|
openDelay: number;
|
|
109
|
-
transition: string | (import('vue').TransitionProps & {
|
|
109
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
110
110
|
is?: import('vue').Component | undefined;
|
|
111
|
-
})
|
|
111
|
+
})>;
|
|
112
112
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
113
113
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
114
114
|
origin: string;
|
|
@@ -126,9 +126,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
126
126
|
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
127
127
|
readonly closeDelay: number;
|
|
128
128
|
readonly openDelay: number;
|
|
129
|
-
readonly transition: string | (import('vue').TransitionProps & {
|
|
129
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
130
130
|
is?: import('vue').Component | undefined;
|
|
131
|
-
})
|
|
131
|
+
})>;
|
|
132
132
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
133
133
|
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
134
134
|
readonly origin: string;
|
|
@@ -164,11 +164,18 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
164
164
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
165
165
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
166
166
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
167
|
-
transition: {
|
|
168
|
-
default: string;
|
|
167
|
+
transition: Omit<{
|
|
169
168
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
170
169
|
is?: import('vue').Component | undefined;
|
|
171
170
|
})>;
|
|
171
|
+
default: string;
|
|
172
|
+
}, "default" | "type"> & {
|
|
173
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
174
|
+
is?: import('vue').Component | undefined;
|
|
175
|
+
})>>;
|
|
176
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
177
|
+
is?: import('vue').Component | undefined;
|
|
178
|
+
})>;
|
|
172
179
|
};
|
|
173
180
|
preventCloseBubble: PropType<boolean>;
|
|
174
181
|
minWidth: PropType<string | number>;
|
|
@@ -288,9 +295,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
288
295
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
289
296
|
closeDelay: number;
|
|
290
297
|
openDelay: number;
|
|
291
|
-
transition: string | (import('vue').TransitionProps & {
|
|
298
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
292
299
|
is?: import('vue').Component | undefined;
|
|
293
|
-
})
|
|
300
|
+
})>;
|
|
294
301
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
295
302
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
296
303
|
origin: string;
|
|
@@ -308,9 +315,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
308
315
|
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
309
316
|
readonly closeDelay: number;
|
|
310
317
|
readonly openDelay: number;
|
|
311
|
-
readonly transition: string | (import('vue').TransitionProps & {
|
|
318
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
312
319
|
is?: import('vue').Component | undefined;
|
|
313
|
-
})
|
|
320
|
+
})>;
|
|
314
321
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
315
322
|
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
316
323
|
readonly origin: string;
|
|
@@ -346,11 +353,18 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
346
353
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
347
354
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
348
355
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
349
|
-
transition: {
|
|
350
|
-
default: string;
|
|
356
|
+
transition: Omit<{
|
|
351
357
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
352
358
|
is?: import('vue').Component | undefined;
|
|
353
359
|
})>;
|
|
360
|
+
default: string;
|
|
361
|
+
}, "default" | "type"> & {
|
|
362
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
363
|
+
is?: import('vue').Component | undefined;
|
|
364
|
+
})>>;
|
|
365
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
366
|
+
is?: import('vue').Component | undefined;
|
|
367
|
+
})>;
|
|
354
368
|
};
|
|
355
369
|
preventCloseBubble: PropType<boolean>;
|
|
356
370
|
minWidth: PropType<string | number>;
|
|
@@ -470,9 +484,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
470
484
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
471
485
|
closeDelay: number;
|
|
472
486
|
openDelay: number;
|
|
473
|
-
transition: string | (import('vue').TransitionProps & {
|
|
487
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
474
488
|
is?: import('vue').Component | undefined;
|
|
475
|
-
})
|
|
489
|
+
})>;
|
|
476
490
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
477
491
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
478
492
|
origin: string;
|
|
@@ -490,9 +504,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
490
504
|
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
491
505
|
readonly closeDelay: number;
|
|
492
506
|
readonly openDelay: number;
|
|
493
|
-
readonly transition: string | (import('vue').TransitionProps & {
|
|
507
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
494
508
|
is?: import('vue').Component | undefined;
|
|
495
|
-
})
|
|
509
|
+
})>;
|
|
496
510
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
497
511
|
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
498
512
|
readonly origin: string;
|
|
@@ -528,11 +542,18 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
528
542
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
529
543
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
530
544
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
531
|
-
transition: {
|
|
532
|
-
default: string;
|
|
545
|
+
transition: Omit<{
|
|
533
546
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
534
547
|
is?: import('vue').Component | undefined;
|
|
535
548
|
})>;
|
|
549
|
+
default: string;
|
|
550
|
+
}, "default" | "type"> & {
|
|
551
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
552
|
+
is?: import('vue').Component | undefined;
|
|
553
|
+
})>>;
|
|
554
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
555
|
+
is?: import('vue').Component | undefined;
|
|
556
|
+
})>;
|
|
536
557
|
};
|
|
537
558
|
preventCloseBubble: PropType<boolean>;
|
|
538
559
|
minWidth: PropType<string | number>;
|
|
@@ -650,9 +671,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
650
671
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
651
672
|
closeDelay: number;
|
|
652
673
|
openDelay: number;
|
|
653
|
-
transition: string | (import('vue').TransitionProps & {
|
|
674
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
654
675
|
is?: import('vue').Component | undefined;
|
|
655
|
-
})
|
|
676
|
+
})>;
|
|
656
677
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
657
678
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
658
679
|
origin: string;
|
|
@@ -670,9 +691,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
670
691
|
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
671
692
|
readonly closeDelay: number;
|
|
672
693
|
readonly openDelay: number;
|
|
673
|
-
readonly transition: string | (import('vue').TransitionProps & {
|
|
694
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
674
695
|
is?: import('vue').Component | undefined;
|
|
675
|
-
})
|
|
696
|
+
})>;
|
|
676
697
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
677
698
|
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
678
699
|
readonly origin: string;
|
|
@@ -708,11 +729,18 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
708
729
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
709
730
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
710
731
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
711
|
-
transition: {
|
|
712
|
-
default: string;
|
|
732
|
+
transition: Omit<{
|
|
713
733
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
714
734
|
is?: import('vue').Component | undefined;
|
|
715
735
|
})>;
|
|
736
|
+
default: string;
|
|
737
|
+
}, "default" | "type"> & {
|
|
738
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
739
|
+
is?: import('vue').Component | undefined;
|
|
740
|
+
})>>;
|
|
741
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
742
|
+
is?: import('vue').Component | undefined;
|
|
743
|
+
})>;
|
|
716
744
|
};
|
|
717
745
|
preventCloseBubble: PropType<boolean>;
|
|
718
746
|
minWidth: PropType<string | number>;
|
|
@@ -831,9 +859,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
831
859
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
832
860
|
closeDelay: number;
|
|
833
861
|
openDelay: number;
|
|
834
|
-
transition: string | (import('vue').TransitionProps & {
|
|
862
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
835
863
|
is?: import('vue').Component | undefined;
|
|
836
|
-
})
|
|
864
|
+
})>;
|
|
837
865
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
838
866
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
839
867
|
origin: string;
|
|
@@ -851,9 +879,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
851
879
|
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
852
880
|
readonly closeDelay: number;
|
|
853
881
|
readonly openDelay: number;
|
|
854
|
-
readonly transition: string | (import('vue').TransitionProps & {
|
|
882
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
855
883
|
is?: import('vue').Component | undefined;
|
|
856
|
-
})
|
|
884
|
+
})>;
|
|
857
885
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
858
886
|
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
859
887
|
readonly origin: string;
|
|
@@ -889,11 +917,18 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
889
917
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
890
918
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
891
919
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
892
|
-
transition: {
|
|
893
|
-
default: string;
|
|
920
|
+
transition: Omit<{
|
|
894
921
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
895
922
|
is?: import('vue').Component | undefined;
|
|
896
923
|
})>;
|
|
924
|
+
default: string;
|
|
925
|
+
}, "default" | "type"> & {
|
|
926
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
927
|
+
is?: import('vue').Component | undefined;
|
|
928
|
+
})>>;
|
|
929
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
930
|
+
is?: import('vue').Component | undefined;
|
|
931
|
+
})>;
|
|
897
932
|
};
|
|
898
933
|
preventCloseBubble: PropType<boolean>;
|
|
899
934
|
minWidth: PropType<string | number>;
|
|
@@ -1011,9 +1046,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
1011
1046
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
1012
1047
|
closeDelay: number;
|
|
1013
1048
|
openDelay: number;
|
|
1014
|
-
transition: string | (import('vue').TransitionProps & {
|
|
1049
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1015
1050
|
is?: import('vue').Component | undefined;
|
|
1016
|
-
})
|
|
1051
|
+
})>;
|
|
1017
1052
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1018
1053
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1019
1054
|
origin: string;
|
|
@@ -1031,9 +1066,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
1031
1066
|
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
1032
1067
|
readonly closeDelay: number;
|
|
1033
1068
|
readonly openDelay: number;
|
|
1034
|
-
readonly transition: string | (import('vue').TransitionProps & {
|
|
1069
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1035
1070
|
is?: import('vue').Component | undefined;
|
|
1036
|
-
})
|
|
1071
|
+
})>;
|
|
1037
1072
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1038
1073
|
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1039
1074
|
readonly origin: string;
|
|
@@ -1069,11 +1104,18 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
1069
1104
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1070
1105
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
1071
1106
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
1072
|
-
transition: {
|
|
1073
|
-
default: string;
|
|
1107
|
+
transition: Omit<{
|
|
1074
1108
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
1075
1109
|
is?: import('vue').Component | undefined;
|
|
1076
1110
|
})>;
|
|
1111
|
+
default: string;
|
|
1112
|
+
}, "default" | "type"> & {
|
|
1113
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
1114
|
+
is?: import('vue').Component | undefined;
|
|
1115
|
+
})>>;
|
|
1116
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
1117
|
+
is?: import('vue').Component | undefined;
|
|
1118
|
+
})>;
|
|
1077
1119
|
};
|
|
1078
1120
|
preventCloseBubble: PropType<boolean>;
|
|
1079
1121
|
minWidth: PropType<string | number>;
|
|
@@ -1584,9 +1626,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1584
1626
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
1585
1627
|
closeDelay: number;
|
|
1586
1628
|
openDelay: number;
|
|
1587
|
-
transition: string | (import('vue').TransitionProps & {
|
|
1629
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1588
1630
|
is?: import('vue').Component | undefined;
|
|
1589
|
-
})
|
|
1631
|
+
})>;
|
|
1590
1632
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1591
1633
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1592
1634
|
origin: string;
|
|
@@ -1604,9 +1646,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1604
1646
|
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
1605
1647
|
readonly closeDelay: number;
|
|
1606
1648
|
readonly openDelay: number;
|
|
1607
|
-
readonly transition: string | (import('vue').TransitionProps & {
|
|
1649
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1608
1650
|
is?: import('vue').Component | undefined;
|
|
1609
|
-
})
|
|
1651
|
+
})>;
|
|
1610
1652
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1611
1653
|
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1612
1654
|
readonly origin: string;
|
|
@@ -1642,11 +1684,18 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1642
1684
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1643
1685
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
1644
1686
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
1645
|
-
transition: {
|
|
1646
|
-
default: string;
|
|
1687
|
+
transition: Omit<{
|
|
1647
1688
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
1648
1689
|
is?: import('vue').Component | undefined;
|
|
1649
1690
|
})>;
|
|
1691
|
+
default: string;
|
|
1692
|
+
}, "default" | "type"> & {
|
|
1693
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
1694
|
+
is?: import('vue').Component | undefined;
|
|
1695
|
+
})>>;
|
|
1696
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
1697
|
+
is?: import('vue').Component | undefined;
|
|
1698
|
+
})>;
|
|
1650
1699
|
};
|
|
1651
1700
|
preventCloseBubble: PropType<boolean>;
|
|
1652
1701
|
minWidth: PropType<string | number>;
|
|
@@ -1766,9 +1815,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1766
1815
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
1767
1816
|
closeDelay: number;
|
|
1768
1817
|
openDelay: number;
|
|
1769
|
-
transition: string | (import('vue').TransitionProps & {
|
|
1818
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1770
1819
|
is?: import('vue').Component | undefined;
|
|
1771
|
-
})
|
|
1820
|
+
})>;
|
|
1772
1821
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1773
1822
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1774
1823
|
origin: string;
|
|
@@ -1786,9 +1835,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1786
1835
|
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
1787
1836
|
readonly closeDelay: number;
|
|
1788
1837
|
readonly openDelay: number;
|
|
1789
|
-
readonly transition: string | (import('vue').TransitionProps & {
|
|
1838
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1790
1839
|
is?: import('vue').Component | undefined;
|
|
1791
|
-
})
|
|
1840
|
+
})>;
|
|
1792
1841
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1793
1842
|
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1794
1843
|
readonly origin: string;
|
|
@@ -1824,11 +1873,18 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1824
1873
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1825
1874
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
1826
1875
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
1827
|
-
transition: {
|
|
1828
|
-
default: string;
|
|
1876
|
+
transition: Omit<{
|
|
1829
1877
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
1830
1878
|
is?: import('vue').Component | undefined;
|
|
1831
1879
|
})>;
|
|
1880
|
+
default: string;
|
|
1881
|
+
}, "default" | "type"> & {
|
|
1882
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
1883
|
+
is?: import('vue').Component | undefined;
|
|
1884
|
+
})>>;
|
|
1885
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
1886
|
+
is?: import('vue').Component | undefined;
|
|
1887
|
+
})>;
|
|
1832
1888
|
};
|
|
1833
1889
|
preventCloseBubble: PropType<boolean>;
|
|
1834
1890
|
minWidth: PropType<string | number>;
|
|
@@ -1948,9 +2004,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1948
2004
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
1949
2005
|
closeDelay: number;
|
|
1950
2006
|
openDelay: number;
|
|
1951
|
-
transition: string | (import('vue').TransitionProps & {
|
|
2007
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1952
2008
|
is?: import('vue').Component | undefined;
|
|
1953
|
-
})
|
|
2009
|
+
})>;
|
|
1954
2010
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1955
2011
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1956
2012
|
origin: string;
|
|
@@ -1968,9 +2024,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1968
2024
|
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
1969
2025
|
readonly closeDelay: number;
|
|
1970
2026
|
readonly openDelay: number;
|
|
1971
|
-
readonly transition: string | (import('vue').TransitionProps & {
|
|
2027
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1972
2028
|
is?: import('vue').Component | undefined;
|
|
1973
|
-
})
|
|
2029
|
+
})>;
|
|
1974
2030
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1975
2031
|
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1976
2032
|
readonly origin: string;
|
|
@@ -2006,11 +2062,18 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2006
2062
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2007
2063
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2008
2064
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
2009
|
-
transition: {
|
|
2010
|
-
default: string;
|
|
2065
|
+
transition: Omit<{
|
|
2011
2066
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
2012
2067
|
is?: import('vue').Component | undefined;
|
|
2013
2068
|
})>;
|
|
2069
|
+
default: string;
|
|
2070
|
+
}, "default" | "type"> & {
|
|
2071
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
2072
|
+
is?: import('vue').Component | undefined;
|
|
2073
|
+
})>>;
|
|
2074
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
2075
|
+
is?: import('vue').Component | undefined;
|
|
2076
|
+
})>;
|
|
2014
2077
|
};
|
|
2015
2078
|
preventCloseBubble: PropType<boolean>;
|
|
2016
2079
|
minWidth: PropType<string | number>;
|
|
@@ -2128,9 +2191,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2128
2191
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
2129
2192
|
closeDelay: number;
|
|
2130
2193
|
openDelay: number;
|
|
2131
|
-
transition: string | (import('vue').TransitionProps & {
|
|
2194
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2132
2195
|
is?: import('vue').Component | undefined;
|
|
2133
|
-
})
|
|
2196
|
+
})>;
|
|
2134
2197
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2135
2198
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2136
2199
|
origin: string;
|
|
@@ -2148,9 +2211,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2148
2211
|
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
2149
2212
|
readonly closeDelay: number;
|
|
2150
2213
|
readonly openDelay: number;
|
|
2151
|
-
readonly transition: string | (import('vue').TransitionProps & {
|
|
2214
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2152
2215
|
is?: import('vue').Component | undefined;
|
|
2153
|
-
})
|
|
2216
|
+
})>;
|
|
2154
2217
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2155
2218
|
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2156
2219
|
readonly origin: string;
|
|
@@ -2186,11 +2249,18 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2186
2249
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2187
2250
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2188
2251
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
2189
|
-
transition: {
|
|
2190
|
-
default: string;
|
|
2252
|
+
transition: Omit<{
|
|
2191
2253
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
2192
2254
|
is?: import('vue').Component | undefined;
|
|
2193
2255
|
})>;
|
|
2256
|
+
default: string;
|
|
2257
|
+
}, "default" | "type"> & {
|
|
2258
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
2259
|
+
is?: import('vue').Component | undefined;
|
|
2260
|
+
})>>;
|
|
2261
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
2262
|
+
is?: import('vue').Component | undefined;
|
|
2263
|
+
})>;
|
|
2194
2264
|
};
|
|
2195
2265
|
preventCloseBubble: PropType<boolean>;
|
|
2196
2266
|
minWidth: PropType<string | number>;
|
|
@@ -2309,9 +2379,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2309
2379
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
2310
2380
|
closeDelay: number;
|
|
2311
2381
|
openDelay: number;
|
|
2312
|
-
transition: string | (import('vue').TransitionProps & {
|
|
2382
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2313
2383
|
is?: import('vue').Component | undefined;
|
|
2314
|
-
})
|
|
2384
|
+
})>;
|
|
2315
2385
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2316
2386
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2317
2387
|
origin: string;
|
|
@@ -2329,9 +2399,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2329
2399
|
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
2330
2400
|
readonly closeDelay: number;
|
|
2331
2401
|
readonly openDelay: number;
|
|
2332
|
-
readonly transition: string | (import('vue').TransitionProps & {
|
|
2402
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2333
2403
|
is?: import('vue').Component | undefined;
|
|
2334
|
-
})
|
|
2404
|
+
})>;
|
|
2335
2405
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2336
2406
|
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2337
2407
|
readonly origin: string;
|
|
@@ -2367,11 +2437,18 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2367
2437
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2368
2438
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2369
2439
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
2370
|
-
transition: {
|
|
2371
|
-
default: string;
|
|
2440
|
+
transition: Omit<{
|
|
2372
2441
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
2373
2442
|
is?: import('vue').Component | undefined;
|
|
2374
2443
|
})>;
|
|
2444
|
+
default: string;
|
|
2445
|
+
}, "default" | "type"> & {
|
|
2446
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
2447
|
+
is?: import('vue').Component | undefined;
|
|
2448
|
+
})>>;
|
|
2449
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
2450
|
+
is?: import('vue').Component | undefined;
|
|
2451
|
+
})>;
|
|
2375
2452
|
};
|
|
2376
2453
|
preventCloseBubble: PropType<boolean>;
|
|
2377
2454
|
minWidth: PropType<string | number>;
|
|
@@ -2489,9 +2566,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2489
2566
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
2490
2567
|
closeDelay: number;
|
|
2491
2568
|
openDelay: number;
|
|
2492
|
-
transition: string | (import('vue').TransitionProps & {
|
|
2569
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2493
2570
|
is?: import('vue').Component | undefined;
|
|
2494
|
-
})
|
|
2571
|
+
})>;
|
|
2495
2572
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2496
2573
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2497
2574
|
origin: string;
|
|
@@ -2509,9 +2586,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2509
2586
|
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
2510
2587
|
readonly closeDelay: number;
|
|
2511
2588
|
readonly openDelay: number;
|
|
2512
|
-
readonly transition: string | (import('vue').TransitionProps & {
|
|
2589
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2513
2590
|
is?: import('vue').Component | undefined;
|
|
2514
|
-
})
|
|
2591
|
+
})>;
|
|
2515
2592
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2516
2593
|
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2517
2594
|
readonly origin: string;
|
|
@@ -2547,11 +2624,18 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2547
2624
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2548
2625
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2549
2626
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
2550
|
-
transition: {
|
|
2551
|
-
default: string;
|
|
2627
|
+
transition: Omit<{
|
|
2552
2628
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
2553
2629
|
is?: import('vue').Component | undefined;
|
|
2554
2630
|
})>;
|
|
2631
|
+
default: string;
|
|
2632
|
+
}, "default" | "type"> & {
|
|
2633
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
2634
|
+
is?: import('vue').Component | undefined;
|
|
2635
|
+
})>>;
|
|
2636
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
2637
|
+
is?: import('vue').Component | undefined;
|
|
2638
|
+
})>;
|
|
2555
2639
|
};
|
|
2556
2640
|
preventCloseBubble: PropType<boolean>;
|
|
2557
2641
|
minWidth: PropType<string | number>;
|
|
@@ -2833,9 +2917,9 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
2833
2917
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
2834
2918
|
closeDelay: number;
|
|
2835
2919
|
openDelay: number;
|
|
2836
|
-
transition: string | (import('vue').TransitionProps & {
|
|
2920
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2837
2921
|
is?: import('vue').Component | undefined;
|
|
2838
|
-
})
|
|
2922
|
+
})>;
|
|
2839
2923
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2840
2924
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2841
2925
|
origin: string;
|
|
@@ -2853,9 +2937,9 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
2853
2937
|
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
2854
2938
|
readonly closeDelay: number;
|
|
2855
2939
|
readonly openDelay: number;
|
|
2856
|
-
readonly transition: string | (import('vue').TransitionProps & {
|
|
2940
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2857
2941
|
is?: import('vue').Component | undefined;
|
|
2858
|
-
})
|
|
2942
|
+
})>;
|
|
2859
2943
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2860
2944
|
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2861
2945
|
readonly origin: string;
|
|
@@ -2891,11 +2975,18 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
2891
2975
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2892
2976
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2893
2977
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
2894
|
-
transition: {
|
|
2895
|
-
default: string;
|
|
2978
|
+
transition: Omit<{
|
|
2896
2979
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
2897
2980
|
is?: import('vue').Component | undefined;
|
|
2898
2981
|
})>;
|
|
2982
|
+
default: string;
|
|
2983
|
+
}, "default" | "type"> & {
|
|
2984
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
2985
|
+
is?: import('vue').Component | undefined;
|
|
2986
|
+
})>>;
|
|
2987
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
2988
|
+
is?: import('vue').Component | undefined;
|
|
2989
|
+
})>;
|
|
2899
2990
|
};
|
|
2900
2991
|
preventCloseBubble: PropType<boolean>;
|
|
2901
2992
|
minWidth: PropType<string | number>;
|
|
@@ -3034,11 +3125,18 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
3034
3125
|
selections: import('vue').ComputedRef<ListItem<any>[]>;
|
|
3035
3126
|
selected: import('vue').ComputedRef<any[]>;
|
|
3036
3127
|
menuRef: import('vue').Ref<import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
3037
|
-
transition: {
|
|
3038
|
-
default: string;
|
|
3128
|
+
transition: Omit<{
|
|
3039
3129
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
3040
3130
|
is?: import('vue').Component | undefined;
|
|
3041
3131
|
})>;
|
|
3132
|
+
default: string;
|
|
3133
|
+
}, "default" | "type"> & {
|
|
3134
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
3135
|
+
is?: import('vue').Component | undefined;
|
|
3136
|
+
})>>;
|
|
3137
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
3138
|
+
is?: import('vue').Component | undefined;
|
|
3139
|
+
})>;
|
|
3042
3140
|
};
|
|
3043
3141
|
preventCloseBubble: PropType<boolean>;
|
|
3044
3142
|
minWidth: PropType<string | number>;
|
|
@@ -4995,11 +5093,18 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
4995
5093
|
};
|
|
4996
5094
|
hovered: import('vue').ComputedRef<boolean>;
|
|
4997
5095
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:modelValue" | "afterLeave" | "hoverContent")[], import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
4998
|
-
transition: {
|
|
4999
|
-
default: string;
|
|
5096
|
+
transition: Omit<{
|
|
5000
5097
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
5001
5098
|
is?: import('vue').Component | undefined;
|
|
5002
5099
|
})>;
|
|
5100
|
+
default: string;
|
|
5101
|
+
}, "default" | "type"> & {
|
|
5102
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
5103
|
+
is?: import('vue').Component | undefined;
|
|
5104
|
+
})>>;
|
|
5105
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
5106
|
+
is?: import('vue').Component | undefined;
|
|
5107
|
+
})>;
|
|
5003
5108
|
};
|
|
5004
5109
|
preventCloseBubble: PropType<boolean>;
|
|
5005
5110
|
minWidth: PropType<string | number>;
|
|
@@ -5117,9 +5222,9 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
5117
5222
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
5118
5223
|
closeDelay: number;
|
|
5119
5224
|
openDelay: number;
|
|
5120
|
-
transition: string | (import('vue').TransitionProps & {
|
|
5225
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
5121
5226
|
is?: import('vue').Component | undefined;
|
|
5122
|
-
})
|
|
5227
|
+
})>;
|
|
5123
5228
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
5124
5229
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
5125
5230
|
origin: string;
|
|
@@ -5143,11 +5248,18 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
5143
5248
|
M: {};
|
|
5144
5249
|
Defaults: {};
|
|
5145
5250
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
5146
|
-
transition: {
|
|
5147
|
-
default: string;
|
|
5251
|
+
transition: Omit<{
|
|
5148
5252
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
5149
5253
|
is?: import('vue').Component | undefined;
|
|
5150
5254
|
})>;
|
|
5255
|
+
default: string;
|
|
5256
|
+
}, "default" | "type"> & {
|
|
5257
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
5258
|
+
is?: import('vue').Component | undefined;
|
|
5259
|
+
})>>;
|
|
5260
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
5261
|
+
is?: import('vue').Component | undefined;
|
|
5262
|
+
})>;
|
|
5151
5263
|
};
|
|
5152
5264
|
preventCloseBubble: PropType<boolean>;
|
|
5153
5265
|
minWidth: PropType<string | number>;
|
|
@@ -7108,9 +7220,9 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
7108
7220
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
7109
7221
|
closeDelay: number;
|
|
7110
7222
|
openDelay: number;
|
|
7111
|
-
transition: string | (import('vue').TransitionProps & {
|
|
7223
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
7112
7224
|
is?: import('vue').Component | undefined;
|
|
7113
|
-
})
|
|
7225
|
+
})>;
|
|
7114
7226
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
7115
7227
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
7116
7228
|
origin: string;
|
|
@@ -7258,9 +7370,9 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
7258
7370
|
align: "top" | "bottom" | "start" | "end" | "center";
|
|
7259
7371
|
closeDelay: number;
|
|
7260
7372
|
openDelay: number;
|
|
7261
|
-
transition: string | (import('vue').TransitionProps & {
|
|
7373
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
7262
7374
|
is?: import('vue').Component | undefined;
|
|
7263
|
-
})
|
|
7375
|
+
})>;
|
|
7264
7376
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
7265
7377
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
7266
7378
|
origin: string;
|
|
@@ -7278,9 +7390,9 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
7278
7390
|
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
7279
7391
|
readonly closeDelay: number;
|
|
7280
7392
|
readonly openDelay: number;
|
|
7281
|
-
readonly transition: string | (import('vue').TransitionProps & {
|
|
7393
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
7282
7394
|
is?: import('vue').Component | undefined;
|
|
7283
|
-
})
|
|
7395
|
+
})>;
|
|
7284
7396
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
7285
7397
|
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
7286
7398
|
readonly origin: string;
|
|
@@ -7316,11 +7428,18 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
7316
7428
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
7317
7429
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
7318
7430
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
7319
|
-
transition: {
|
|
7320
|
-
default: string;
|
|
7431
|
+
transition: Omit<{
|
|
7321
7432
|
type: PropType<string | (import('vue').TransitionProps & {
|
|
7322
7433
|
is?: import('vue').Component | undefined;
|
|
7323
7434
|
})>;
|
|
7435
|
+
default: string;
|
|
7436
|
+
}, "default" | "type"> & {
|
|
7437
|
+
type: PropType<NonNullable<string | (import('vue').TransitionProps & {
|
|
7438
|
+
is?: import('vue').Component | undefined;
|
|
7439
|
+
})>>;
|
|
7440
|
+
default: NonNullable<string | (import('vue').TransitionProps & {
|
|
7441
|
+
is?: import('vue').Component | undefined;
|
|
7442
|
+
})>;
|
|
7324
7443
|
};
|
|
7325
7444
|
preventCloseBubble: PropType<boolean>;
|
|
7326
7445
|
minWidth: PropType<string | number>;
|