yuyeon 0.2.3-rc.6 → 0.2.3-rc.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/yuyeon.js +2534 -2484
  2. package/dist/yuyeon.umd.cjs +3 -3
  3. package/lib/components/field-input/YFieldInput.mjs +3 -2
  4. package/lib/components/field-input/YFieldInput.mjs.map +1 -1
  5. package/lib/components/index.mjs +1 -0
  6. package/lib/components/index.mjs.map +1 -1
  7. package/lib/components/input/YInput.mjs +6 -2
  8. package/lib/components/input/YInput.mjs.map +1 -1
  9. package/lib/components/layer/YLayer.mjs +20 -16
  10. package/lib/components/layer/YLayer.mjs.map +1 -1
  11. package/lib/components/layer/base.mjs +2 -1
  12. package/lib/components/layer/base.mjs.map +1 -1
  13. package/lib/components/select/YSelect.mjs +20 -8
  14. package/lib/components/select/YSelect.mjs.map +1 -1
  15. package/lib/components/table/YDataTableBody.mjs +22 -4
  16. package/lib/components/table/YDataTableBody.mjs.map +1 -1
  17. package/lib/components/table/YDataTableRow.mjs +14 -3
  18. package/lib/components/table/YDataTableRow.mjs.map +1 -1
  19. package/lib/i18n/built-in.mjs +2 -2
  20. package/lib/i18n/built-in.mjs.map +1 -1
  21. package/package.json +120 -117
  22. package/types/components/dialog/YDialog.d.ts +28 -21
  23. package/types/components/dropdown/YDropdown.d.ts +17 -11
  24. package/types/components/field-input/YFieldInput.d.ts +1 -1
  25. package/types/components/index.d.ts +1 -0
  26. package/types/components/input/YInput.d.ts +1 -1
  27. package/types/components/layer/YLayer.d.ts +11 -5
  28. package/types/components/layer/base.d.ts +6 -0
  29. package/types/components/menu/YMenu.d.ts +6 -3
  30. package/types/components/select/YSelect.d.ts +129 -98
  31. package/types/components/snackbar/YSnackbar.d.ts +9 -3
  32. package/types/components/table/YDataTable.d.ts +12 -0
  33. package/types/components/table/YDataTableBody.d.ts +13 -1
  34. package/types/components/table/YDataTableRow.d.ts +24 -12
  35. package/types/components/table/YDataTableServer.d.ts +12 -0
  36. package/types/components/textarea/YTextarea.d.ts +4 -1
  37. package/types/components/tooltip/YTooltip.d.ts +10 -6
  38. package/types/composables/coordinate/index.d.ts +4 -4
  39. package/types/shims.d.ts +2 -1
  40. package/types/util/anchor.d.ts +1 -1
@@ -97,14 +97,14 @@ export declare const pressSelectPropsOptions: <Defaults extends {
97
97
  menuProps: unknown extends Defaults["menuProps"] ? {
98
98
  type: PropType<Partial<{
99
99
  disabled: boolean;
100
- align: "top" | "bottom" | "start" | "end" | "center";
101
100
  closeDelay: number;
102
101
  openDelay: number;
103
102
  transition: NonNullable<string | (import('vue').TransitionProps & {
104
103
  is?: import('vue').Component | undefined;
105
104
  })>;
105
+ align: "top" | "bottom" | "start" | "end" | "center";
106
106
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
107
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
107
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
108
108
  origin: string;
109
109
  viewportMargin: string | number | unknown[];
110
110
  zIndex: string | number;
@@ -117,14 +117,14 @@ export declare const pressSelectPropsOptions: <Defaults extends {
117
117
  closeCondition: boolean | Function;
118
118
  }> & Omit<{
119
119
  readonly disabled: boolean;
120
- readonly align: "top" | "bottom" | "start" | "end" | "center";
121
120
  readonly closeDelay: number;
122
121
  readonly openDelay: number;
123
122
  readonly transition: NonNullable<string | (import('vue').TransitionProps & {
124
123
  is?: import('vue').Component | undefined;
125
124
  })>;
125
+ readonly align: "top" | "bottom" | "start" | "end" | "center";
126
126
  readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
127
- readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
127
+ readonly position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
128
128
  readonly origin: string;
129
129
  readonly viewportMargin: string | number | unknown[];
130
130
  readonly zIndex: string | number;
@@ -144,6 +144,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
144
144
  readonly minHeight?: string | number | undefined;
145
145
  readonly maxWidth?: string | number | undefined;
146
146
  readonly maxHeight?: string | number | undefined;
147
+ readonly baseProps?: Record<string, any> | undefined;
147
148
  readonly closeClickContent?: boolean | undefined;
148
149
  readonly scrim?: boolean | undefined;
149
150
  readonly scrimOpacity?: number | undefined;
@@ -195,7 +196,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
195
196
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
196
197
  };
197
198
  position: {
198
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
199
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
199
200
  default: string;
200
201
  };
201
202
  align: {
@@ -217,6 +218,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
217
218
  type: PropType<boolean>;
218
219
  };
219
220
  base: PropType<import('../layer/base').BaseType>;
221
+ baseProps: PropType<Record<string, any>>;
220
222
  theme: PropType<string>;
221
223
  modelValue: {
222
224
  type: PropType<boolean>;
@@ -284,18 +286,18 @@ export declare const pressSelectPropsOptions: <Defaults extends {
284
286
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
285
287
  onAfterLeave?: ((...args: any[]) => any) | undefined;
286
288
  onHoverContent?: ((...args: any[]) => any) | undefined;
287
- }, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
289
+ }, "disabled" | "closeDelay" | "openDelay" | "transition" | "align" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
288
290
  } : Omit<{
289
291
  type: PropType<Partial<{
290
292
  disabled: boolean;
291
- align: "top" | "bottom" | "start" | "end" | "center";
292
293
  closeDelay: number;
293
294
  openDelay: number;
294
295
  transition: NonNullable<string | (import('vue').TransitionProps & {
295
296
  is?: import('vue').Component | undefined;
296
297
  })>;
298
+ align: "top" | "bottom" | "start" | "end" | "center";
297
299
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
298
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
300
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
299
301
  origin: string;
300
302
  viewportMargin: string | number | unknown[];
301
303
  zIndex: string | number;
@@ -308,14 +310,14 @@ export declare const pressSelectPropsOptions: <Defaults extends {
308
310
  closeCondition: boolean | Function;
309
311
  }> & Omit<{
310
312
  readonly disabled: boolean;
311
- readonly align: "top" | "bottom" | "start" | "end" | "center";
312
313
  readonly closeDelay: number;
313
314
  readonly openDelay: number;
314
315
  readonly transition: NonNullable<string | (import('vue').TransitionProps & {
315
316
  is?: import('vue').Component | undefined;
316
317
  })>;
318
+ readonly align: "top" | "bottom" | "start" | "end" | "center";
317
319
  readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
318
- readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
320
+ readonly position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
319
321
  readonly origin: string;
320
322
  readonly viewportMargin: string | number | unknown[];
321
323
  readonly zIndex: string | number;
@@ -335,6 +337,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
335
337
  readonly minHeight?: string | number | undefined;
336
338
  readonly maxWidth?: string | number | undefined;
337
339
  readonly maxHeight?: string | number | undefined;
340
+ readonly baseProps?: Record<string, any> | undefined;
338
341
  readonly closeClickContent?: boolean | undefined;
339
342
  readonly scrim?: boolean | undefined;
340
343
  readonly scrimOpacity?: number | undefined;
@@ -386,7 +389,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
386
389
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
387
390
  };
388
391
  position: {
389
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
392
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
390
393
  default: string;
391
394
  };
392
395
  align: {
@@ -408,6 +411,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
408
411
  type: PropType<boolean>;
409
412
  };
410
413
  base: PropType<import('../layer/base').BaseType>;
414
+ baseProps: PropType<Record<string, any>>;
411
415
  theme: PropType<string>;
412
416
  modelValue: {
413
417
  type: PropType<boolean>;
@@ -475,18 +479,18 @@ export declare const pressSelectPropsOptions: <Defaults extends {
475
479
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
476
480
  onAfterLeave?: ((...args: any[]) => any) | undefined;
477
481
  onHoverContent?: ((...args: any[]) => any) | undefined;
478
- }, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
482
+ }, "disabled" | "closeDelay" | "openDelay" | "transition" | "align" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
479
483
  }, "type" | "default"> & {
480
484
  type: PropType<unknown extends Defaults["menuProps"] ? Partial<{
481
485
  disabled: boolean;
482
- align: "top" | "bottom" | "start" | "end" | "center";
483
486
  closeDelay: number;
484
487
  openDelay: number;
485
488
  transition: NonNullable<string | (import('vue').TransitionProps & {
486
489
  is?: import('vue').Component | undefined;
487
490
  })>;
491
+ align: "top" | "bottom" | "start" | "end" | "center";
488
492
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
489
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
493
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
490
494
  origin: string;
491
495
  viewportMargin: string | number | unknown[];
492
496
  zIndex: string | number;
@@ -499,14 +503,14 @@ export declare const pressSelectPropsOptions: <Defaults extends {
499
503
  closeCondition: boolean | Function;
500
504
  }> & Omit<{
501
505
  readonly disabled: boolean;
502
- readonly align: "top" | "bottom" | "start" | "end" | "center";
503
506
  readonly closeDelay: number;
504
507
  readonly openDelay: number;
505
508
  readonly transition: NonNullable<string | (import('vue').TransitionProps & {
506
509
  is?: import('vue').Component | undefined;
507
510
  })>;
511
+ readonly align: "top" | "bottom" | "start" | "end" | "center";
508
512
  readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
509
- readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
513
+ readonly position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
510
514
  readonly origin: string;
511
515
  readonly viewportMargin: string | number | unknown[];
512
516
  readonly zIndex: string | number;
@@ -526,6 +530,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
526
530
  readonly minHeight?: string | number | undefined;
527
531
  readonly maxWidth?: string | number | undefined;
528
532
  readonly maxHeight?: string | number | undefined;
533
+ readonly baseProps?: Record<string, any> | undefined;
529
534
  readonly closeClickContent?: boolean | undefined;
530
535
  readonly scrim?: boolean | undefined;
531
536
  readonly scrimOpacity?: number | undefined;
@@ -577,7 +582,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
577
582
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
578
583
  };
579
584
  position: {
580
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
585
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
581
586
  default: string;
582
587
  };
583
588
  align: {
@@ -599,6 +604,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
599
604
  type: PropType<boolean>;
600
605
  };
601
606
  base: PropType<import('../layer/base').BaseType>;
607
+ baseProps: PropType<Record<string, any>>;
602
608
  theme: PropType<string>;
603
609
  modelValue: {
604
610
  type: PropType<boolean>;
@@ -666,16 +672,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
666
672
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
667
673
  onAfterLeave?: ((...args: any[]) => any) | undefined;
668
674
  onHoverContent?: ((...args: any[]) => any) | undefined;
669
- }, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : Defaults["menuProps"] | NonNullable<Partial<{
675
+ }, "disabled" | "closeDelay" | "openDelay" | "transition" | "align" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : Defaults["menuProps"] | NonNullable<Partial<{
670
676
  disabled: boolean;
671
- align: "top" | "bottom" | "start" | "end" | "center";
672
677
  closeDelay: number;
673
678
  openDelay: number;
674
679
  transition: NonNullable<string | (import('vue').TransitionProps & {
675
680
  is?: import('vue').Component | undefined;
676
681
  })>;
682
+ align: "top" | "bottom" | "start" | "end" | "center";
677
683
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
678
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
684
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
679
685
  origin: string;
680
686
  viewportMargin: string | number | unknown[];
681
687
  zIndex: string | number;
@@ -688,14 +694,14 @@ export declare const pressSelectPropsOptions: <Defaults extends {
688
694
  closeCondition: boolean | Function;
689
695
  }> & Omit<{
690
696
  readonly disabled: boolean;
691
- readonly align: "top" | "bottom" | "start" | "end" | "center";
692
697
  readonly closeDelay: number;
693
698
  readonly openDelay: number;
694
699
  readonly transition: NonNullable<string | (import('vue').TransitionProps & {
695
700
  is?: import('vue').Component | undefined;
696
701
  })>;
702
+ readonly align: "top" | "bottom" | "start" | "end" | "center";
697
703
  readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
698
- readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
704
+ readonly position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
699
705
  readonly origin: string;
700
706
  readonly viewportMargin: string | number | unknown[];
701
707
  readonly zIndex: string | number;
@@ -715,6 +721,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
715
721
  readonly minHeight?: string | number | undefined;
716
722
  readonly maxWidth?: string | number | undefined;
717
723
  readonly maxHeight?: string | number | undefined;
724
+ readonly baseProps?: Record<string, any> | undefined;
718
725
  readonly closeClickContent?: boolean | undefined;
719
726
  readonly scrim?: boolean | undefined;
720
727
  readonly scrimOpacity?: number | undefined;
@@ -766,7 +773,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
766
773
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
767
774
  };
768
775
  position: {
769
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
776
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
770
777
  default: string;
771
778
  };
772
779
  align: {
@@ -788,6 +795,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
788
795
  type: PropType<boolean>;
789
796
  };
790
797
  base: PropType<import('../layer/base').BaseType>;
798
+ baseProps: PropType<Record<string, any>>;
791
799
  theme: PropType<string>;
792
800
  modelValue: {
793
801
  type: PropType<boolean>;
@@ -855,17 +863,17 @@ export declare const pressSelectPropsOptions: <Defaults extends {
855
863
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
856
864
  onAfterLeave?: ((...args: any[]) => any) | undefined;
857
865
  onHoverContent?: ((...args: any[]) => any) | undefined;
858
- }, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>>;
866
+ }, "disabled" | "closeDelay" | "openDelay" | "transition" | "align" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>>;
859
867
  default: unknown extends Defaults["menuProps"] ? Partial<{
860
868
  disabled: boolean;
861
- align: "top" | "bottom" | "start" | "end" | "center";
862
869
  closeDelay: number;
863
870
  openDelay: number;
864
871
  transition: NonNullable<string | (import('vue').TransitionProps & {
865
872
  is?: import('vue').Component | undefined;
866
873
  })>;
874
+ align: "top" | "bottom" | "start" | "end" | "center";
867
875
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
868
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
876
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
869
877
  origin: string;
870
878
  viewportMargin: string | number | unknown[];
871
879
  zIndex: string | number;
@@ -878,14 +886,14 @@ export declare const pressSelectPropsOptions: <Defaults extends {
878
886
  closeCondition: boolean | Function;
879
887
  }> & Omit<{
880
888
  readonly disabled: boolean;
881
- readonly align: "top" | "bottom" | "start" | "end" | "center";
882
889
  readonly closeDelay: number;
883
890
  readonly openDelay: number;
884
891
  readonly transition: NonNullable<string | (import('vue').TransitionProps & {
885
892
  is?: import('vue').Component | undefined;
886
893
  })>;
894
+ readonly align: "top" | "bottom" | "start" | "end" | "center";
887
895
  readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
888
- readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
896
+ readonly position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
889
897
  readonly origin: string;
890
898
  readonly viewportMargin: string | number | unknown[];
891
899
  readonly zIndex: string | number;
@@ -905,6 +913,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
905
913
  readonly minHeight?: string | number | undefined;
906
914
  readonly maxWidth?: string | number | undefined;
907
915
  readonly maxHeight?: string | number | undefined;
916
+ readonly baseProps?: Record<string, any> | undefined;
908
917
  readonly closeClickContent?: boolean | undefined;
909
918
  readonly scrim?: boolean | undefined;
910
919
  readonly scrimOpacity?: number | undefined;
@@ -956,7 +965,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
956
965
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
957
966
  };
958
967
  position: {
959
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
968
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
960
969
  default: string;
961
970
  };
962
971
  align: {
@@ -978,6 +987,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
978
987
  type: PropType<boolean>;
979
988
  };
980
989
  base: PropType<import('../layer/base').BaseType>;
990
+ baseProps: PropType<Record<string, any>>;
981
991
  theme: PropType<string>;
982
992
  modelValue: {
983
993
  type: PropType<boolean>;
@@ -1045,16 +1055,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
1045
1055
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1046
1056
  onAfterLeave?: ((...args: any[]) => any) | undefined;
1047
1057
  onHoverContent?: ((...args: any[]) => any) | undefined;
1048
- }, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : Defaults["menuProps"] | NonNullable<Partial<{
1058
+ }, "disabled" | "closeDelay" | "openDelay" | "transition" | "align" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : Defaults["menuProps"] | NonNullable<Partial<{
1049
1059
  disabled: boolean;
1050
- align: "top" | "bottom" | "start" | "end" | "center";
1051
1060
  closeDelay: number;
1052
1061
  openDelay: number;
1053
1062
  transition: NonNullable<string | (import('vue').TransitionProps & {
1054
1063
  is?: import('vue').Component | undefined;
1055
1064
  })>;
1065
+ align: "top" | "bottom" | "start" | "end" | "center";
1056
1066
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
1057
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
1067
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
1058
1068
  origin: string;
1059
1069
  viewportMargin: string | number | unknown[];
1060
1070
  zIndex: string | number;
@@ -1067,14 +1077,14 @@ export declare const pressSelectPropsOptions: <Defaults extends {
1067
1077
  closeCondition: boolean | Function;
1068
1078
  }> & Omit<{
1069
1079
  readonly disabled: boolean;
1070
- readonly align: "top" | "bottom" | "start" | "end" | "center";
1071
1080
  readonly closeDelay: number;
1072
1081
  readonly openDelay: number;
1073
1082
  readonly transition: NonNullable<string | (import('vue').TransitionProps & {
1074
1083
  is?: import('vue').Component | undefined;
1075
1084
  })>;
1085
+ readonly align: "top" | "bottom" | "start" | "end" | "center";
1076
1086
  readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
1077
- readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
1087
+ readonly position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
1078
1088
  readonly origin: string;
1079
1089
  readonly viewportMargin: string | number | unknown[];
1080
1090
  readonly zIndex: string | number;
@@ -1094,6 +1104,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
1094
1104
  readonly minHeight?: string | number | undefined;
1095
1105
  readonly maxWidth?: string | number | undefined;
1096
1106
  readonly maxHeight?: string | number | undefined;
1107
+ readonly baseProps?: Record<string, any> | undefined;
1097
1108
  readonly closeClickContent?: boolean | undefined;
1098
1109
  readonly scrim?: boolean | undefined;
1099
1110
  readonly scrimOpacity?: number | undefined;
@@ -1145,7 +1156,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
1145
1156
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
1146
1157
  };
1147
1158
  position: {
1148
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
1159
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
1149
1160
  default: string;
1150
1161
  };
1151
1162
  align: {
@@ -1167,6 +1178,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
1167
1178
  type: PropType<boolean>;
1168
1179
  };
1169
1180
  base: PropType<import('../layer/base').BaseType>;
1181
+ baseProps: PropType<Record<string, any>>;
1170
1182
  theme: PropType<string>;
1171
1183
  modelValue: {
1172
1184
  type: PropType<boolean>;
@@ -1234,7 +1246,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
1234
1246
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1235
1247
  onAfterLeave?: ((...args: any[]) => any) | undefined;
1236
1248
  onHoverContent?: ((...args: any[]) => any) | undefined;
1237
- }, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
1249
+ }, "disabled" | "closeDelay" | "openDelay" | "transition" | "align" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
1238
1250
  };
1239
1251
  };
1240
1252
  export declare const pressYSelectPropsOptions: <Defaults extends {
@@ -1310,20 +1322,20 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
1310
1322
  default: unknown extends Defaults["offset"] ? string | number | number[] : NonNullable<string | number | number[]> | Defaults["offset"];
1311
1323
  };
1312
1324
  position: unknown extends Defaults["position"] ? Omit<{
1313
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
1325
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
1314
1326
  default: string;
1315
1327
  }, "type" | "default"> & {
1316
- type: PropType<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>;
1317
- default: NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
1328
+ type: PropType<NonNullable<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">>;
1329
+ default: NonNullable<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
1318
1330
  } : Omit<Omit<{
1319
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
1331
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
1320
1332
  default: string;
1321
1333
  }, "type" | "default"> & {
1322
- type: PropType<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>;
1323
- default: NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
1334
+ type: PropType<NonNullable<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">>;
1335
+ default: NonNullable<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
1324
1336
  }, "type" | "default"> & {
1325
- type: PropType<unknown extends Defaults["position"] ? NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right"> : NonNullable<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">> | Defaults["position"]>;
1326
- default: unknown extends Defaults["position"] ? NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right"> : NonNullable<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">> | Defaults["position"];
1337
+ type: PropType<unknown extends Defaults["position"] ? NonNullable<"default" | "left" | "right" | "top" | "bottom" | "start" | "end"> : NonNullable<NonNullable<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">> | Defaults["position"]>;
1338
+ default: unknown extends Defaults["position"] ? NonNullable<"default" | "left" | "right" | "top" | "bottom" | "start" | "end"> : NonNullable<NonNullable<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">> | Defaults["position"];
1327
1339
  };
1328
1340
  origin: unknown extends Defaults["origin"] ? {
1329
1341
  type: StringConstructor;
@@ -1624,14 +1636,14 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
1624
1636
  menuProps: unknown extends Defaults["menuProps"] ? {
1625
1637
  type: PropType<Partial<{
1626
1638
  disabled: boolean;
1627
- align: "top" | "bottom" | "start" | "end" | "center";
1628
1639
  closeDelay: number;
1629
1640
  openDelay: number;
1630
1641
  transition: NonNullable<string | (import('vue').TransitionProps & {
1631
1642
  is?: import('vue').Component | undefined;
1632
1643
  })>;
1644
+ align: "top" | "bottom" | "start" | "end" | "center";
1633
1645
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
1634
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
1646
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
1635
1647
  origin: string;
1636
1648
  viewportMargin: string | number | unknown[];
1637
1649
  zIndex: string | number;
@@ -1644,14 +1656,14 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
1644
1656
  closeCondition: boolean | Function;
1645
1657
  }> & Omit<{
1646
1658
  readonly disabled: boolean;
1647
- readonly align: "top" | "bottom" | "start" | "end" | "center";
1648
1659
  readonly closeDelay: number;
1649
1660
  readonly openDelay: number;
1650
1661
  readonly transition: NonNullable<string | (import('vue').TransitionProps & {
1651
1662
  is?: import('vue').Component | undefined;
1652
1663
  })>;
1664
+ readonly align: "top" | "bottom" | "start" | "end" | "center";
1653
1665
  readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
1654
- readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
1666
+ readonly position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
1655
1667
  readonly origin: string;
1656
1668
  readonly viewportMargin: string | number | unknown[];
1657
1669
  readonly zIndex: string | number;
@@ -1671,6 +1683,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
1671
1683
  readonly minHeight?: string | number | undefined;
1672
1684
  readonly maxWidth?: string | number | undefined;
1673
1685
  readonly maxHeight?: string | number | undefined;
1686
+ readonly baseProps?: Record<string, any> | undefined;
1674
1687
  readonly closeClickContent?: boolean | undefined;
1675
1688
  readonly scrim?: boolean | undefined;
1676
1689
  readonly scrimOpacity?: number | undefined;
@@ -1722,7 +1735,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
1722
1735
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
1723
1736
  };
1724
1737
  position: {
1725
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
1738
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
1726
1739
  default: string;
1727
1740
  };
1728
1741
  align: {
@@ -1744,6 +1757,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
1744
1757
  type: PropType<boolean>;
1745
1758
  };
1746
1759
  base: PropType<import('../layer/base').BaseType>;
1760
+ baseProps: PropType<Record<string, any>>;
1747
1761
  theme: PropType<string>;
1748
1762
  modelValue: {
1749
1763
  type: PropType<boolean>;
@@ -1811,18 +1825,18 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
1811
1825
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1812
1826
  onAfterLeave?: ((...args: any[]) => any) | undefined;
1813
1827
  onHoverContent?: ((...args: any[]) => any) | undefined;
1814
- }, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
1828
+ }, "disabled" | "closeDelay" | "openDelay" | "transition" | "align" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
1815
1829
  } : Omit<{
1816
1830
  type: PropType<Partial<{
1817
1831
  disabled: boolean;
1818
- align: "top" | "bottom" | "start" | "end" | "center";
1819
1832
  closeDelay: number;
1820
1833
  openDelay: number;
1821
1834
  transition: NonNullable<string | (import('vue').TransitionProps & {
1822
1835
  is?: import('vue').Component | undefined;
1823
1836
  })>;
1837
+ align: "top" | "bottom" | "start" | "end" | "center";
1824
1838
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
1825
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
1839
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
1826
1840
  origin: string;
1827
1841
  viewportMargin: string | number | unknown[];
1828
1842
  zIndex: string | number;
@@ -1835,14 +1849,14 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
1835
1849
  closeCondition: boolean | Function;
1836
1850
  }> & Omit<{
1837
1851
  readonly disabled: boolean;
1838
- readonly align: "top" | "bottom" | "start" | "end" | "center";
1839
1852
  readonly closeDelay: number;
1840
1853
  readonly openDelay: number;
1841
1854
  readonly transition: NonNullable<string | (import('vue').TransitionProps & {
1842
1855
  is?: import('vue').Component | undefined;
1843
1856
  })>;
1857
+ readonly align: "top" | "bottom" | "start" | "end" | "center";
1844
1858
  readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
1845
- readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
1859
+ readonly position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
1846
1860
  readonly origin: string;
1847
1861
  readonly viewportMargin: string | number | unknown[];
1848
1862
  readonly zIndex: string | number;
@@ -1862,6 +1876,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
1862
1876
  readonly minHeight?: string | number | undefined;
1863
1877
  readonly maxWidth?: string | number | undefined;
1864
1878
  readonly maxHeight?: string | number | undefined;
1879
+ readonly baseProps?: Record<string, any> | undefined;
1865
1880
  readonly closeClickContent?: boolean | undefined;
1866
1881
  readonly scrim?: boolean | undefined;
1867
1882
  readonly scrimOpacity?: number | undefined;
@@ -1913,7 +1928,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
1913
1928
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
1914
1929
  };
1915
1930
  position: {
1916
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
1931
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
1917
1932
  default: string;
1918
1933
  };
1919
1934
  align: {
@@ -1935,6 +1950,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
1935
1950
  type: PropType<boolean>;
1936
1951
  };
1937
1952
  base: PropType<import('../layer/base').BaseType>;
1953
+ baseProps: PropType<Record<string, any>>;
1938
1954
  theme: PropType<string>;
1939
1955
  modelValue: {
1940
1956
  type: PropType<boolean>;
@@ -2002,18 +2018,18 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2002
2018
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2003
2019
  onAfterLeave?: ((...args: any[]) => any) | undefined;
2004
2020
  onHoverContent?: ((...args: any[]) => any) | undefined;
2005
- }, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
2021
+ }, "disabled" | "closeDelay" | "openDelay" | "transition" | "align" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
2006
2022
  }, "type" | "default"> & {
2007
2023
  type: PropType<unknown extends Defaults["menuProps"] ? Partial<{
2008
2024
  disabled: boolean;
2009
- align: "top" | "bottom" | "start" | "end" | "center";
2010
2025
  closeDelay: number;
2011
2026
  openDelay: number;
2012
2027
  transition: NonNullable<string | (import('vue').TransitionProps & {
2013
2028
  is?: import('vue').Component | undefined;
2014
2029
  })>;
2030
+ align: "top" | "bottom" | "start" | "end" | "center";
2015
2031
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2016
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
2032
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
2017
2033
  origin: string;
2018
2034
  viewportMargin: string | number | unknown[];
2019
2035
  zIndex: string | number;
@@ -2026,14 +2042,14 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2026
2042
  closeCondition: boolean | Function;
2027
2043
  }> & Omit<{
2028
2044
  readonly disabled: boolean;
2029
- readonly align: "top" | "bottom" | "start" | "end" | "center";
2030
2045
  readonly closeDelay: number;
2031
2046
  readonly openDelay: number;
2032
2047
  readonly transition: NonNullable<string | (import('vue').TransitionProps & {
2033
2048
  is?: import('vue').Component | undefined;
2034
2049
  })>;
2050
+ readonly align: "top" | "bottom" | "start" | "end" | "center";
2035
2051
  readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2036
- readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
2052
+ readonly position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
2037
2053
  readonly origin: string;
2038
2054
  readonly viewportMargin: string | number | unknown[];
2039
2055
  readonly zIndex: string | number;
@@ -2053,6 +2069,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2053
2069
  readonly minHeight?: string | number | undefined;
2054
2070
  readonly maxWidth?: string | number | undefined;
2055
2071
  readonly maxHeight?: string | number | undefined;
2072
+ readonly baseProps?: Record<string, any> | undefined;
2056
2073
  readonly closeClickContent?: boolean | undefined;
2057
2074
  readonly scrim?: boolean | undefined;
2058
2075
  readonly scrimOpacity?: number | undefined;
@@ -2104,7 +2121,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2104
2121
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2105
2122
  };
2106
2123
  position: {
2107
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
2124
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
2108
2125
  default: string;
2109
2126
  };
2110
2127
  align: {
@@ -2126,6 +2143,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2126
2143
  type: PropType<boolean>;
2127
2144
  };
2128
2145
  base: PropType<import('../layer/base').BaseType>;
2146
+ baseProps: PropType<Record<string, any>>;
2129
2147
  theme: PropType<string>;
2130
2148
  modelValue: {
2131
2149
  type: PropType<boolean>;
@@ -2193,16 +2211,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2193
2211
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2194
2212
  onAfterLeave?: ((...args: any[]) => any) | undefined;
2195
2213
  onHoverContent?: ((...args: any[]) => any) | undefined;
2196
- }, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : NonNullable<Partial<{
2214
+ }, "disabled" | "closeDelay" | "openDelay" | "transition" | "align" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : NonNullable<Partial<{
2197
2215
  disabled: boolean;
2198
- align: "top" | "bottom" | "start" | "end" | "center";
2199
2216
  closeDelay: number;
2200
2217
  openDelay: number;
2201
2218
  transition: NonNullable<string | (import('vue').TransitionProps & {
2202
2219
  is?: import('vue').Component | undefined;
2203
2220
  })>;
2221
+ align: "top" | "bottom" | "start" | "end" | "center";
2204
2222
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2205
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
2223
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
2206
2224
  origin: string;
2207
2225
  viewportMargin: string | number | unknown[];
2208
2226
  zIndex: string | number;
@@ -2215,14 +2233,14 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2215
2233
  closeCondition: boolean | Function;
2216
2234
  }> & Omit<{
2217
2235
  readonly disabled: boolean;
2218
- readonly align: "top" | "bottom" | "start" | "end" | "center";
2219
2236
  readonly closeDelay: number;
2220
2237
  readonly openDelay: number;
2221
2238
  readonly transition: NonNullable<string | (import('vue').TransitionProps & {
2222
2239
  is?: import('vue').Component | undefined;
2223
2240
  })>;
2241
+ readonly align: "top" | "bottom" | "start" | "end" | "center";
2224
2242
  readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2225
- readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
2243
+ readonly position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
2226
2244
  readonly origin: string;
2227
2245
  readonly viewportMargin: string | number | unknown[];
2228
2246
  readonly zIndex: string | number;
@@ -2242,6 +2260,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2242
2260
  readonly minHeight?: string | number | undefined;
2243
2261
  readonly maxWidth?: string | number | undefined;
2244
2262
  readonly maxHeight?: string | number | undefined;
2263
+ readonly baseProps?: Record<string, any> | undefined;
2245
2264
  readonly closeClickContent?: boolean | undefined;
2246
2265
  readonly scrim?: boolean | undefined;
2247
2266
  readonly scrimOpacity?: number | undefined;
@@ -2293,7 +2312,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2293
2312
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2294
2313
  };
2295
2314
  position: {
2296
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
2315
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
2297
2316
  default: string;
2298
2317
  };
2299
2318
  align: {
@@ -2315,6 +2334,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2315
2334
  type: PropType<boolean>;
2316
2335
  };
2317
2336
  base: PropType<import('../layer/base').BaseType>;
2337
+ baseProps: PropType<Record<string, any>>;
2318
2338
  theme: PropType<string>;
2319
2339
  modelValue: {
2320
2340
  type: PropType<boolean>;
@@ -2382,17 +2402,17 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2382
2402
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2383
2403
  onAfterLeave?: ((...args: any[]) => any) | undefined;
2384
2404
  onHoverContent?: ((...args: any[]) => any) | undefined;
2385
- }, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">> | Defaults["menuProps"]>;
2405
+ }, "disabled" | "closeDelay" | "openDelay" | "transition" | "align" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">> | Defaults["menuProps"]>;
2386
2406
  default: unknown extends Defaults["menuProps"] ? Partial<{
2387
2407
  disabled: boolean;
2388
- align: "top" | "bottom" | "start" | "end" | "center";
2389
2408
  closeDelay: number;
2390
2409
  openDelay: number;
2391
2410
  transition: NonNullable<string | (import('vue').TransitionProps & {
2392
2411
  is?: import('vue').Component | undefined;
2393
2412
  })>;
2413
+ align: "top" | "bottom" | "start" | "end" | "center";
2394
2414
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2395
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
2415
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
2396
2416
  origin: string;
2397
2417
  viewportMargin: string | number | unknown[];
2398
2418
  zIndex: string | number;
@@ -2405,14 +2425,14 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2405
2425
  closeCondition: boolean | Function;
2406
2426
  }> & Omit<{
2407
2427
  readonly disabled: boolean;
2408
- readonly align: "top" | "bottom" | "start" | "end" | "center";
2409
2428
  readonly closeDelay: number;
2410
2429
  readonly openDelay: number;
2411
2430
  readonly transition: NonNullable<string | (import('vue').TransitionProps & {
2412
2431
  is?: import('vue').Component | undefined;
2413
2432
  })>;
2433
+ readonly align: "top" | "bottom" | "start" | "end" | "center";
2414
2434
  readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2415
- readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
2435
+ readonly position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
2416
2436
  readonly origin: string;
2417
2437
  readonly viewportMargin: string | number | unknown[];
2418
2438
  readonly zIndex: string | number;
@@ -2432,6 +2452,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2432
2452
  readonly minHeight?: string | number | undefined;
2433
2453
  readonly maxWidth?: string | number | undefined;
2434
2454
  readonly maxHeight?: string | number | undefined;
2455
+ readonly baseProps?: Record<string, any> | undefined;
2435
2456
  readonly closeClickContent?: boolean | undefined;
2436
2457
  readonly scrim?: boolean | undefined;
2437
2458
  readonly scrimOpacity?: number | undefined;
@@ -2483,7 +2504,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2483
2504
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2484
2505
  };
2485
2506
  position: {
2486
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
2507
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
2487
2508
  default: string;
2488
2509
  };
2489
2510
  align: {
@@ -2505,6 +2526,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2505
2526
  type: PropType<boolean>;
2506
2527
  };
2507
2528
  base: PropType<import('../layer/base').BaseType>;
2529
+ baseProps: PropType<Record<string, any>>;
2508
2530
  theme: PropType<string>;
2509
2531
  modelValue: {
2510
2532
  type: PropType<boolean>;
@@ -2572,16 +2594,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2572
2594
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2573
2595
  onAfterLeave?: ((...args: any[]) => any) | undefined;
2574
2596
  onHoverContent?: ((...args: any[]) => any) | undefined;
2575
- }, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : NonNullable<Partial<{
2597
+ }, "disabled" | "closeDelay" | "openDelay" | "transition" | "align" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : NonNullable<Partial<{
2576
2598
  disabled: boolean;
2577
- align: "top" | "bottom" | "start" | "end" | "center";
2578
2599
  closeDelay: number;
2579
2600
  openDelay: number;
2580
2601
  transition: NonNullable<string | (import('vue').TransitionProps & {
2581
2602
  is?: import('vue').Component | undefined;
2582
2603
  })>;
2604
+ align: "top" | "bottom" | "start" | "end" | "center";
2583
2605
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2584
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
2606
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
2585
2607
  origin: string;
2586
2608
  viewportMargin: string | number | unknown[];
2587
2609
  zIndex: string | number;
@@ -2594,14 +2616,14 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2594
2616
  closeCondition: boolean | Function;
2595
2617
  }> & Omit<{
2596
2618
  readonly disabled: boolean;
2597
- readonly align: "top" | "bottom" | "start" | "end" | "center";
2598
2619
  readonly closeDelay: number;
2599
2620
  readonly openDelay: number;
2600
2621
  readonly transition: NonNullable<string | (import('vue').TransitionProps & {
2601
2622
  is?: import('vue').Component | undefined;
2602
2623
  })>;
2624
+ readonly align: "top" | "bottom" | "start" | "end" | "center";
2603
2625
  readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2604
- readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
2626
+ readonly position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
2605
2627
  readonly origin: string;
2606
2628
  readonly viewportMargin: string | number | unknown[];
2607
2629
  readonly zIndex: string | number;
@@ -2621,6 +2643,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2621
2643
  readonly minHeight?: string | number | undefined;
2622
2644
  readonly maxWidth?: string | number | undefined;
2623
2645
  readonly maxHeight?: string | number | undefined;
2646
+ readonly baseProps?: Record<string, any> | undefined;
2624
2647
  readonly closeClickContent?: boolean | undefined;
2625
2648
  readonly scrim?: boolean | undefined;
2626
2649
  readonly scrimOpacity?: number | undefined;
@@ -2672,7 +2695,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2672
2695
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2673
2696
  };
2674
2697
  position: {
2675
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
2698
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
2676
2699
  default: string;
2677
2700
  };
2678
2701
  align: {
@@ -2694,6 +2717,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2694
2717
  type: PropType<boolean>;
2695
2718
  };
2696
2719
  base: PropType<import('../layer/base').BaseType>;
2720
+ baseProps: PropType<Record<string, any>>;
2697
2721
  theme: PropType<string>;
2698
2722
  modelValue: {
2699
2723
  type: PropType<boolean>;
@@ -2761,7 +2785,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
2761
2785
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2762
2786
  onAfterLeave?: ((...args: any[]) => any) | undefined;
2763
2787
  onHoverContent?: ((...args: any[]) => any) | undefined;
2764
- }, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">> | Defaults["menuProps"];
2788
+ }, "disabled" | "closeDelay" | "openDelay" | "transition" | "align" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">> | Defaults["menuProps"];
2765
2789
  };
2766
2790
  maxHeight: unknown extends Defaults["maxHeight"] ? {
2767
2791
  type: (NumberConstructor | StringConstructor)[];
@@ -2813,11 +2837,11 @@ export declare const YSelect: import('vue').DefineComponent<{
2813
2837
  type: PropType<string | number | number[]>;
2814
2838
  };
2815
2839
  position: Omit<{
2816
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
2840
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
2817
2841
  default: string;
2818
2842
  }, "type" | "default"> & {
2819
- type: PropType<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>;
2820
- default: NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
2843
+ type: PropType<NonNullable<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">>;
2844
+ default: NonNullable<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
2821
2845
  };
2822
2846
  origin: {
2823
2847
  type: StringConstructor;
@@ -2926,14 +2950,14 @@ export declare const YSelect: import('vue').DefineComponent<{
2926
2950
  menuProps: {
2927
2951
  type: PropType<Partial<{
2928
2952
  disabled: boolean;
2929
- align: "top" | "bottom" | "start" | "end" | "center";
2930
2953
  closeDelay: number;
2931
2954
  openDelay: number;
2932
2955
  transition: NonNullable<string | (import('vue').TransitionProps & {
2933
2956
  is?: import('vue').Component | undefined;
2934
2957
  })>;
2958
+ align: "top" | "bottom" | "start" | "end" | "center";
2935
2959
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2936
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
2960
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
2937
2961
  origin: string;
2938
2962
  viewportMargin: string | number | unknown[];
2939
2963
  zIndex: string | number;
@@ -2946,14 +2970,14 @@ export declare const YSelect: import('vue').DefineComponent<{
2946
2970
  closeCondition: boolean | Function;
2947
2971
  }> & Omit<{
2948
2972
  readonly disabled: boolean;
2949
- readonly align: "top" | "bottom" | "start" | "end" | "center";
2950
2973
  readonly closeDelay: number;
2951
2974
  readonly openDelay: number;
2952
2975
  readonly transition: NonNullable<string | (import('vue').TransitionProps & {
2953
2976
  is?: import('vue').Component | undefined;
2954
2977
  })>;
2978
+ readonly align: "top" | "bottom" | "start" | "end" | "center";
2955
2979
  readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2956
- readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
2980
+ readonly position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
2957
2981
  readonly origin: string;
2958
2982
  readonly viewportMargin: string | number | unknown[];
2959
2983
  readonly zIndex: string | number;
@@ -2973,6 +2997,7 @@ export declare const YSelect: import('vue').DefineComponent<{
2973
2997
  readonly minHeight?: string | number | undefined;
2974
2998
  readonly maxWidth?: string | number | undefined;
2975
2999
  readonly maxHeight?: string | number | undefined;
3000
+ readonly baseProps?: Record<string, any> | undefined;
2976
3001
  readonly closeClickContent?: boolean | undefined;
2977
3002
  readonly scrim?: boolean | undefined;
2978
3003
  readonly scrimOpacity?: number | undefined;
@@ -3024,7 +3049,7 @@ export declare const YSelect: import('vue').DefineComponent<{
3024
3049
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
3025
3050
  };
3026
3051
  position: {
3027
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
3052
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
3028
3053
  default: string;
3029
3054
  };
3030
3055
  align: {
@@ -3046,6 +3071,7 @@ export declare const YSelect: import('vue').DefineComponent<{
3046
3071
  type: PropType<boolean>;
3047
3072
  };
3048
3073
  base: PropType<import('../layer/base').BaseType>;
3074
+ baseProps: PropType<Record<string, any>>;
3049
3075
  theme: PropType<string>;
3050
3076
  modelValue: {
3051
3077
  type: PropType<boolean>;
@@ -3113,7 +3139,7 @@ export declare const YSelect: import('vue').DefineComponent<{
3113
3139
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
3114
3140
  onAfterLeave?: ((...args: any[]) => any) | undefined;
3115
3141
  onHoverContent?: ((...args: any[]) => any) | undefined;
3116
- }, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
3142
+ }, "disabled" | "closeDelay" | "openDelay" | "transition" | "align" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
3117
3143
  };
3118
3144
  maxHeight: {
3119
3145
  type: (NumberConstructor | StringConstructor)[];
@@ -3175,7 +3201,7 @@ export declare const YSelect: import('vue').DefineComponent<{
3175
3201
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
3176
3202
  };
3177
3203
  position: {
3178
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
3204
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
3179
3205
  default: string;
3180
3206
  };
3181
3207
  align: {
@@ -3197,6 +3223,7 @@ export declare const YSelect: import('vue').DefineComponent<{
3197
3223
  type: PropType<boolean>;
3198
3224
  };
3199
3225
  base: PropType<import('../layer/base').BaseType>;
3226
+ baseProps: PropType<Record<string, any>>;
3200
3227
  theme: PropType<string>;
3201
3228
  modelValue: {
3202
3229
  type: PropType<boolean>;
@@ -3282,7 +3309,7 @@ export declare const YSelect: import('vue').DefineComponent<{
3282
3309
  default: string;
3283
3310
  };
3284
3311
  position: {
3285
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
3312
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
3286
3313
  default: string;
3287
3314
  };
3288
3315
  align: {
@@ -3304,6 +3331,7 @@ export declare const YSelect: import('vue').DefineComponent<{
3304
3331
  type: PropType<boolean>;
3305
3332
  };
3306
3333
  base: PropType<import('../layer/base').BaseType>;
3334
+ baseProps: PropType<Record<string, any>>;
3307
3335
  transition: {
3308
3336
  type: PropType<string | (import('vue').TransitionProps & {
3309
3337
  is?: import('vue').Component | undefined;
@@ -5028,7 +5056,7 @@ export declare const YSelect: import('vue').DefineComponent<{
5028
5056
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
5029
5057
  };
5030
5058
  position: {
5031
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
5059
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
5032
5060
  default: string;
5033
5061
  };
5034
5062
  align: {
@@ -5050,6 +5078,7 @@ export declare const YSelect: import('vue').DefineComponent<{
5050
5078
  type: PropType<boolean>;
5051
5079
  };
5052
5080
  base: PropType<import('../layer/base').BaseType>;
5081
+ baseProps: PropType<Record<string, any>>;
5053
5082
  theme: PropType<string>;
5054
5083
  modelValue: {
5055
5084
  type: PropType<boolean>;
@@ -5119,14 +5148,14 @@ export declare const YSelect: import('vue').DefineComponent<{
5119
5148
  onHoverContent?: ((...args: any[]) => any) | undefined;
5120
5149
  }, {
5121
5150
  disabled: boolean;
5122
- align: "top" | "bottom" | "start" | "end" | "center";
5123
5151
  closeDelay: number;
5124
5152
  openDelay: number;
5125
5153
  transition: NonNullable<string | (import('vue').TransitionProps & {
5126
5154
  is?: import('vue').Component | undefined;
5127
5155
  })>;
5156
+ align: "top" | "bottom" | "start" | "end" | "center";
5128
5157
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
5129
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
5158
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
5130
5159
  origin: string;
5131
5160
  viewportMargin: string | number | unknown[];
5132
5161
  zIndex: string | number;
@@ -5181,7 +5210,7 @@ export declare const YSelect: import('vue').DefineComponent<{
5181
5210
  default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
5182
5211
  };
5183
5212
  position: {
5184
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
5213
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
5185
5214
  default: string;
5186
5215
  };
5187
5216
  align: {
@@ -5203,6 +5232,7 @@ export declare const YSelect: import('vue').DefineComponent<{
5203
5232
  type: PropType<boolean>;
5204
5233
  };
5205
5234
  base: PropType<import('../layer/base').BaseType>;
5235
+ baseProps: PropType<Record<string, any>>;
5206
5236
  theme: PropType<string>;
5207
5237
  modelValue: {
5208
5238
  type: PropType<boolean>;
@@ -5288,7 +5318,7 @@ export declare const YSelect: import('vue').DefineComponent<{
5288
5318
  default: string;
5289
5319
  };
5290
5320
  position: {
5291
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
5321
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
5292
5322
  default: string;
5293
5323
  };
5294
5324
  align: {
@@ -5310,6 +5340,7 @@ export declare const YSelect: import('vue').DefineComponent<{
5310
5340
  type: PropType<boolean>;
5311
5341
  };
5312
5342
  base: PropType<import('../layer/base').BaseType>;
5343
+ baseProps: PropType<Record<string, any>>;
5313
5344
  transition: {
5314
5345
  type: PropType<string | (import('vue').TransitionProps & {
5315
5346
  is?: import('vue').Component | undefined;
@@ -6999,14 +7030,14 @@ export declare const YSelect: import('vue').DefineComponent<{
6999
7030
  hovered: import('vue').ComputedRef<boolean>;
7000
7031
  }, {}, {}, {}, {
7001
7032
  disabled: boolean;
7002
- align: "top" | "bottom" | "start" | "end" | "center";
7003
7033
  closeDelay: number;
7004
7034
  openDelay: number;
7005
7035
  transition: NonNullable<string | (import('vue').TransitionProps & {
7006
7036
  is?: import('vue').Component | undefined;
7007
7037
  })>;
7038
+ align: "top" | "bottom" | "start" | "end" | "center";
7008
7039
  coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
7009
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
7040
+ position: "default" | "left" | "right" | "top" | "bottom" | "start" | "end";
7010
7041
  origin: string;
7011
7042
  viewportMargin: string | number | unknown[];
7012
7043
  zIndex: string | number;