yuyeon 0.2.1-rc.2 → 0.2.1-rc.4
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 +4873 -4894
- package/dist/yuyeon.umd.cjs +3 -3
- package/lib/components/chip/YChip.mjs +50 -42
- package/lib/components/chip/YChip.mjs.map +1 -1
- package/lib/components/chip/YChip.scss +6 -1
- package/lib/components/progress-bar/YProgressBar.mjs +38 -50
- package/lib/components/progress-bar/YProgressBar.mjs.map +1 -1
- package/lib/components/progress-bar/YProgressBar.scss +4 -0
- package/lib/composables/progress.mjs +7 -2
- package/lib/composables/progress.mjs.map +1 -1
- package/lib/index.mjs +1 -1
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
- package/types/components/chip/YChip.d.ts +32 -17
- package/types/components/dialog/YDialog.d.ts +77 -77
- package/types/components/dropdown/YDropdown.d.ts +52 -52
- package/types/components/layer/YLayer.d.ts +10 -10
- package/types/components/menu/YMenu.d.ts +6 -6
- package/types/components/pagination/YPagination.d.ts +5 -5
- package/types/components/progress-bar/YProgressBar.d.ts +3 -8
- package/types/components/select/YSelect.d.ts +274 -274
- package/types/components/snackbar/YSnackbar.d.ts +8 -8
- package/types/components/table/YDataTable.d.ts +7 -7
- package/types/components/table/YDataTableCell.d.ts +1 -1
- package/types/components/table/YDataTableServer.d.ts +7 -7
- package/types/components/table/composibles/header.d.ts +8 -8
- package/types/components/tooltip/YTooltip.d.ts +14 -14
- package/types/composables/coordinate/index.d.ts +8 -8
- package/types/composables/progress.d.ts +1 -0
- package/types/index.d.ts +1 -1
- package/types/util/anchor.d.ts +1 -1
|
@@ -103,17 +103,17 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
103
103
|
menuProps: unknown extends Defaults["menuProps"] ? {
|
|
104
104
|
type: PropType<Partial<{
|
|
105
105
|
disabled: boolean;
|
|
106
|
-
align: "
|
|
106
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
107
|
+
closeDelay: number;
|
|
108
|
+
openDelay: number;
|
|
109
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
110
|
+
is?: import('vue').Component | undefined;
|
|
111
|
+
})>;
|
|
107
112
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
108
|
-
position: "default" | "
|
|
113
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
109
114
|
origin: string;
|
|
110
115
|
viewportMargin: string | number | unknown[];
|
|
111
116
|
zIndex: string | number;
|
|
112
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
113
|
-
is?: import('vue').Component | undefined;
|
|
114
|
-
})>;
|
|
115
|
-
closeDelay: number;
|
|
116
|
-
openDelay: number;
|
|
117
117
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
118
118
|
contentStyles: import('vue').CSSProperties;
|
|
119
119
|
openOnHover: boolean;
|
|
@@ -123,17 +123,17 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
123
123
|
closeCondition: boolean | Function;
|
|
124
124
|
}> & Omit<{
|
|
125
125
|
readonly disabled: boolean;
|
|
126
|
-
readonly align: "
|
|
126
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
127
|
+
readonly closeDelay: number;
|
|
128
|
+
readonly openDelay: number;
|
|
129
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
130
|
+
is?: import('vue').Component | undefined;
|
|
131
|
+
})>;
|
|
127
132
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
128
|
-
readonly position: "default" | "
|
|
133
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
129
134
|
readonly origin: string;
|
|
130
135
|
readonly viewportMargin: string | number | unknown[];
|
|
131
136
|
readonly zIndex: string | number;
|
|
132
|
-
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
133
|
-
is?: import('vue').Component | undefined;
|
|
134
|
-
})>;
|
|
135
|
-
readonly closeDelay: number;
|
|
136
|
-
readonly openDelay: number;
|
|
137
137
|
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
138
138
|
readonly contentStyles: import('vue').CSSProperties;
|
|
139
139
|
readonly openOnHover: boolean;
|
|
@@ -145,8 +145,8 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
145
145
|
readonly width?: string | number | undefined;
|
|
146
146
|
readonly height?: string | number | undefined;
|
|
147
147
|
readonly theme?: string | undefined;
|
|
148
|
-
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
149
148
|
readonly minWidth?: string | number | undefined;
|
|
149
|
+
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
150
150
|
readonly offset?: string | number | number[] | undefined;
|
|
151
151
|
readonly minHeight?: string | number | undefined;
|
|
152
152
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -200,11 +200,11 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
200
200
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
201
201
|
};
|
|
202
202
|
position: {
|
|
203
|
-
type: PropType<"default" | "
|
|
203
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
204
204
|
default: string;
|
|
205
205
|
};
|
|
206
206
|
align: {
|
|
207
|
-
type: PropType<"
|
|
207
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
208
208
|
default: string;
|
|
209
209
|
};
|
|
210
210
|
origin: {
|
|
@@ -288,21 +288,21 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
288
288
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
289
289
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
290
290
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
291
|
-
}, "disabled" | "align" | "
|
|
291
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
|
|
292
292
|
} : Omit<{
|
|
293
293
|
type: PropType<Partial<{
|
|
294
294
|
disabled: boolean;
|
|
295
|
-
align: "
|
|
295
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
296
|
+
closeDelay: number;
|
|
297
|
+
openDelay: number;
|
|
298
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
299
|
+
is?: import('vue').Component | undefined;
|
|
300
|
+
})>;
|
|
296
301
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
297
|
-
position: "default" | "
|
|
302
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
298
303
|
origin: string;
|
|
299
304
|
viewportMargin: string | number | unknown[];
|
|
300
305
|
zIndex: string | number;
|
|
301
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
302
|
-
is?: import('vue').Component | undefined;
|
|
303
|
-
})>;
|
|
304
|
-
closeDelay: number;
|
|
305
|
-
openDelay: number;
|
|
306
306
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
307
307
|
contentStyles: import('vue').CSSProperties;
|
|
308
308
|
openOnHover: boolean;
|
|
@@ -312,17 +312,17 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
312
312
|
closeCondition: boolean | Function;
|
|
313
313
|
}> & Omit<{
|
|
314
314
|
readonly disabled: boolean;
|
|
315
|
-
readonly align: "
|
|
315
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
316
|
+
readonly closeDelay: number;
|
|
317
|
+
readonly openDelay: number;
|
|
318
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
319
|
+
is?: import('vue').Component | undefined;
|
|
320
|
+
})>;
|
|
316
321
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
317
|
-
readonly position: "default" | "
|
|
322
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
318
323
|
readonly origin: string;
|
|
319
324
|
readonly viewportMargin: string | number | unknown[];
|
|
320
325
|
readonly zIndex: string | number;
|
|
321
|
-
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
322
|
-
is?: import('vue').Component | undefined;
|
|
323
|
-
})>;
|
|
324
|
-
readonly closeDelay: number;
|
|
325
|
-
readonly openDelay: number;
|
|
326
326
|
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
327
327
|
readonly contentStyles: import('vue').CSSProperties;
|
|
328
328
|
readonly openOnHover: boolean;
|
|
@@ -334,8 +334,8 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
334
334
|
readonly width?: string | number | undefined;
|
|
335
335
|
readonly height?: string | number | undefined;
|
|
336
336
|
readonly theme?: string | undefined;
|
|
337
|
-
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
338
337
|
readonly minWidth?: string | number | undefined;
|
|
338
|
+
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
339
339
|
readonly offset?: string | number | number[] | undefined;
|
|
340
340
|
readonly minHeight?: string | number | undefined;
|
|
341
341
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -389,11 +389,11 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
389
389
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
390
390
|
};
|
|
391
391
|
position: {
|
|
392
|
-
type: PropType<"default" | "
|
|
392
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
393
393
|
default: string;
|
|
394
394
|
};
|
|
395
395
|
align: {
|
|
396
|
-
type: PropType<"
|
|
396
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
397
397
|
default: string;
|
|
398
398
|
};
|
|
399
399
|
origin: {
|
|
@@ -477,21 +477,21 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
477
477
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
478
478
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
479
479
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
480
|
-
}, "disabled" | "align" | "
|
|
480
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
|
|
481
481
|
}, "type" | "default"> & {
|
|
482
482
|
type: PropType<unknown extends Defaults["menuProps"] ? Partial<{
|
|
483
483
|
disabled: boolean;
|
|
484
|
-
align: "
|
|
484
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
485
|
+
closeDelay: number;
|
|
486
|
+
openDelay: number;
|
|
487
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
488
|
+
is?: import('vue').Component | undefined;
|
|
489
|
+
})>;
|
|
485
490
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
486
|
-
position: "default" | "
|
|
491
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
487
492
|
origin: string;
|
|
488
493
|
viewportMargin: string | number | unknown[];
|
|
489
494
|
zIndex: string | number;
|
|
490
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
491
|
-
is?: import('vue').Component | undefined;
|
|
492
|
-
})>;
|
|
493
|
-
closeDelay: number;
|
|
494
|
-
openDelay: number;
|
|
495
495
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
496
496
|
contentStyles: import('vue').CSSProperties;
|
|
497
497
|
openOnHover: boolean;
|
|
@@ -501,17 +501,17 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
501
501
|
closeCondition: boolean | Function;
|
|
502
502
|
}> & Omit<{
|
|
503
503
|
readonly disabled: boolean;
|
|
504
|
-
readonly align: "
|
|
504
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
505
|
+
readonly closeDelay: number;
|
|
506
|
+
readonly openDelay: number;
|
|
507
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
508
|
+
is?: import('vue').Component | undefined;
|
|
509
|
+
})>;
|
|
505
510
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
506
|
-
readonly position: "default" | "
|
|
511
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
507
512
|
readonly origin: string;
|
|
508
513
|
readonly viewportMargin: string | number | unknown[];
|
|
509
514
|
readonly zIndex: string | number;
|
|
510
|
-
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
511
|
-
is?: import('vue').Component | undefined;
|
|
512
|
-
})>;
|
|
513
|
-
readonly closeDelay: number;
|
|
514
|
-
readonly openDelay: number;
|
|
515
515
|
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
516
516
|
readonly contentStyles: import('vue').CSSProperties;
|
|
517
517
|
readonly openOnHover: boolean;
|
|
@@ -523,8 +523,8 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
523
523
|
readonly width?: string | number | undefined;
|
|
524
524
|
readonly height?: string | number | undefined;
|
|
525
525
|
readonly theme?: string | undefined;
|
|
526
|
-
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
527
526
|
readonly minWidth?: string | number | undefined;
|
|
527
|
+
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
528
528
|
readonly offset?: string | number | number[] | undefined;
|
|
529
529
|
readonly minHeight?: string | number | undefined;
|
|
530
530
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -578,11 +578,11 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
578
578
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
579
579
|
};
|
|
580
580
|
position: {
|
|
581
|
-
type: PropType<"default" | "
|
|
581
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
582
582
|
default: string;
|
|
583
583
|
};
|
|
584
584
|
align: {
|
|
585
|
-
type: PropType<"
|
|
585
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
586
586
|
default: string;
|
|
587
587
|
};
|
|
588
588
|
origin: {
|
|
@@ -666,19 +666,19 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
666
666
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
667
667
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
668
668
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
669
|
-
}, "disabled" | "align" | "
|
|
669
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : Defaults["menuProps"] | NonNullable<Partial<{
|
|
670
670
|
disabled: boolean;
|
|
671
|
-
align: "
|
|
671
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
672
|
+
closeDelay: number;
|
|
673
|
+
openDelay: number;
|
|
674
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
675
|
+
is?: import('vue').Component | undefined;
|
|
676
|
+
})>;
|
|
672
677
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
673
|
-
position: "default" | "
|
|
678
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
674
679
|
origin: string;
|
|
675
680
|
viewportMargin: string | number | unknown[];
|
|
676
681
|
zIndex: string | number;
|
|
677
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
678
|
-
is?: import('vue').Component | undefined;
|
|
679
|
-
})>;
|
|
680
|
-
closeDelay: number;
|
|
681
|
-
openDelay: number;
|
|
682
682
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
683
683
|
contentStyles: import('vue').CSSProperties;
|
|
684
684
|
openOnHover: boolean;
|
|
@@ -688,17 +688,17 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
688
688
|
closeCondition: boolean | Function;
|
|
689
689
|
}> & Omit<{
|
|
690
690
|
readonly disabled: boolean;
|
|
691
|
-
readonly align: "
|
|
691
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
692
|
+
readonly closeDelay: number;
|
|
693
|
+
readonly openDelay: number;
|
|
694
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
695
|
+
is?: import('vue').Component | undefined;
|
|
696
|
+
})>;
|
|
692
697
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
693
|
-
readonly position: "default" | "
|
|
698
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
694
699
|
readonly origin: string;
|
|
695
700
|
readonly viewportMargin: string | number | unknown[];
|
|
696
701
|
readonly zIndex: string | number;
|
|
697
|
-
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
698
|
-
is?: import('vue').Component | undefined;
|
|
699
|
-
})>;
|
|
700
|
-
readonly closeDelay: number;
|
|
701
|
-
readonly openDelay: number;
|
|
702
702
|
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
703
703
|
readonly contentStyles: import('vue').CSSProperties;
|
|
704
704
|
readonly openOnHover: boolean;
|
|
@@ -710,8 +710,8 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
710
710
|
readonly width?: string | number | undefined;
|
|
711
711
|
readonly height?: string | number | undefined;
|
|
712
712
|
readonly theme?: string | undefined;
|
|
713
|
-
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
714
713
|
readonly minWidth?: string | number | undefined;
|
|
714
|
+
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
715
715
|
readonly offset?: string | number | number[] | undefined;
|
|
716
716
|
readonly minHeight?: string | number | undefined;
|
|
717
717
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -765,11 +765,11 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
765
765
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
766
766
|
};
|
|
767
767
|
position: {
|
|
768
|
-
type: PropType<"default" | "
|
|
768
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
769
769
|
default: string;
|
|
770
770
|
};
|
|
771
771
|
align: {
|
|
772
|
-
type: PropType<"
|
|
772
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
773
773
|
default: string;
|
|
774
774
|
};
|
|
775
775
|
origin: {
|
|
@@ -853,20 +853,20 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
853
853
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
854
854
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
855
855
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
856
|
-
}, "disabled" | "align" | "
|
|
856
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>>;
|
|
857
857
|
default: unknown extends Defaults["menuProps"] ? Partial<{
|
|
858
858
|
disabled: boolean;
|
|
859
|
-
align: "
|
|
859
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
860
|
+
closeDelay: number;
|
|
861
|
+
openDelay: number;
|
|
862
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
863
|
+
is?: import('vue').Component | undefined;
|
|
864
|
+
})>;
|
|
860
865
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
861
|
-
position: "default" | "
|
|
866
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
862
867
|
origin: string;
|
|
863
868
|
viewportMargin: string | number | unknown[];
|
|
864
869
|
zIndex: string | number;
|
|
865
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
866
|
-
is?: import('vue').Component | undefined;
|
|
867
|
-
})>;
|
|
868
|
-
closeDelay: number;
|
|
869
|
-
openDelay: number;
|
|
870
870
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
871
871
|
contentStyles: import('vue').CSSProperties;
|
|
872
872
|
openOnHover: boolean;
|
|
@@ -876,17 +876,17 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
876
876
|
closeCondition: boolean | Function;
|
|
877
877
|
}> & Omit<{
|
|
878
878
|
readonly disabled: boolean;
|
|
879
|
-
readonly align: "
|
|
879
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
880
|
+
readonly closeDelay: number;
|
|
881
|
+
readonly openDelay: number;
|
|
882
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
883
|
+
is?: import('vue').Component | undefined;
|
|
884
|
+
})>;
|
|
880
885
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
881
|
-
readonly position: "default" | "
|
|
886
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
882
887
|
readonly origin: string;
|
|
883
888
|
readonly viewportMargin: string | number | unknown[];
|
|
884
889
|
readonly zIndex: string | number;
|
|
885
|
-
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
886
|
-
is?: import('vue').Component | undefined;
|
|
887
|
-
})>;
|
|
888
|
-
readonly closeDelay: number;
|
|
889
|
-
readonly openDelay: number;
|
|
890
890
|
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
891
891
|
readonly contentStyles: import('vue').CSSProperties;
|
|
892
892
|
readonly openOnHover: boolean;
|
|
@@ -898,8 +898,8 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
898
898
|
readonly width?: string | number | undefined;
|
|
899
899
|
readonly height?: string | number | undefined;
|
|
900
900
|
readonly theme?: string | undefined;
|
|
901
|
-
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
902
901
|
readonly minWidth?: string | number | undefined;
|
|
902
|
+
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
903
903
|
readonly offset?: string | number | number[] | undefined;
|
|
904
904
|
readonly minHeight?: string | number | undefined;
|
|
905
905
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -953,11 +953,11 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
953
953
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
954
954
|
};
|
|
955
955
|
position: {
|
|
956
|
-
type: PropType<"default" | "
|
|
956
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
957
957
|
default: string;
|
|
958
958
|
};
|
|
959
959
|
align: {
|
|
960
|
-
type: PropType<"
|
|
960
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
961
961
|
default: string;
|
|
962
962
|
};
|
|
963
963
|
origin: {
|
|
@@ -1041,19 +1041,19 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
1041
1041
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1042
1042
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1043
1043
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
1044
|
-
}, "disabled" | "align" | "
|
|
1044
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : Defaults["menuProps"] | NonNullable<Partial<{
|
|
1045
1045
|
disabled: boolean;
|
|
1046
|
-
align: "
|
|
1046
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
1047
|
+
closeDelay: number;
|
|
1048
|
+
openDelay: number;
|
|
1049
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1050
|
+
is?: import('vue').Component | undefined;
|
|
1051
|
+
})>;
|
|
1047
1052
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1048
|
-
position: "default" | "
|
|
1053
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1049
1054
|
origin: string;
|
|
1050
1055
|
viewportMargin: string | number | unknown[];
|
|
1051
1056
|
zIndex: string | number;
|
|
1052
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1053
|
-
is?: import('vue').Component | undefined;
|
|
1054
|
-
})>;
|
|
1055
|
-
closeDelay: number;
|
|
1056
|
-
openDelay: number;
|
|
1057
1057
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1058
1058
|
contentStyles: import('vue').CSSProperties;
|
|
1059
1059
|
openOnHover: boolean;
|
|
@@ -1063,17 +1063,17 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
1063
1063
|
closeCondition: boolean | Function;
|
|
1064
1064
|
}> & Omit<{
|
|
1065
1065
|
readonly disabled: boolean;
|
|
1066
|
-
readonly align: "
|
|
1066
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
1067
|
+
readonly closeDelay: number;
|
|
1068
|
+
readonly openDelay: number;
|
|
1069
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1070
|
+
is?: import('vue').Component | undefined;
|
|
1071
|
+
})>;
|
|
1067
1072
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1068
|
-
readonly position: "default" | "
|
|
1073
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1069
1074
|
readonly origin: string;
|
|
1070
1075
|
readonly viewportMargin: string | number | unknown[];
|
|
1071
1076
|
readonly zIndex: string | number;
|
|
1072
|
-
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1073
|
-
is?: import('vue').Component | undefined;
|
|
1074
|
-
})>;
|
|
1075
|
-
readonly closeDelay: number;
|
|
1076
|
-
readonly openDelay: number;
|
|
1077
1077
|
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1078
1078
|
readonly contentStyles: import('vue').CSSProperties;
|
|
1079
1079
|
readonly openOnHover: boolean;
|
|
@@ -1085,8 +1085,8 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
1085
1085
|
readonly width?: string | number | undefined;
|
|
1086
1086
|
readonly height?: string | number | undefined;
|
|
1087
1087
|
readonly theme?: string | undefined;
|
|
1088
|
-
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
1089
1088
|
readonly minWidth?: string | number | undefined;
|
|
1089
|
+
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
1090
1090
|
readonly offset?: string | number | number[] | undefined;
|
|
1091
1091
|
readonly minHeight?: string | number | undefined;
|
|
1092
1092
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -1140,11 +1140,11 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
1140
1140
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1141
1141
|
};
|
|
1142
1142
|
position: {
|
|
1143
|
-
type: PropType<"default" | "
|
|
1143
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1144
1144
|
default: string;
|
|
1145
1145
|
};
|
|
1146
1146
|
align: {
|
|
1147
|
-
type: PropType<"
|
|
1147
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
1148
1148
|
default: string;
|
|
1149
1149
|
};
|
|
1150
1150
|
origin: {
|
|
@@ -1228,7 +1228,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
1228
1228
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1229
1229
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1230
1230
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
1231
|
-
}, "disabled" | "align" | "
|
|
1231
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
|
|
1232
1232
|
};
|
|
1233
1233
|
};
|
|
1234
1234
|
export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
@@ -1287,14 +1287,14 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1287
1287
|
closeDelay?: unknown;
|
|
1288
1288
|
} = {}>(defaults?: Defaults | undefined) => {
|
|
1289
1289
|
align: unknown extends Defaults["align"] ? {
|
|
1290
|
-
type: PropType<"
|
|
1290
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
1291
1291
|
default: string;
|
|
1292
1292
|
} : Omit<{
|
|
1293
|
-
type: PropType<"
|
|
1293
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
1294
1294
|
default: string;
|
|
1295
1295
|
}, "type" | "default"> & {
|
|
1296
|
-
type: PropType<unknown extends Defaults["align"] ? "
|
|
1297
|
-
default: unknown extends Defaults["align"] ? "
|
|
1296
|
+
type: PropType<unknown extends Defaults["align"] ? "top" | "bottom" | "start" | "end" | "center" : NonNullable<"top" | "bottom" | "start" | "end" | "center"> | Defaults["align"]>;
|
|
1297
|
+
default: unknown extends Defaults["align"] ? "top" | "bottom" | "start" | "end" | "center" : NonNullable<"top" | "bottom" | "start" | "end" | "center"> | Defaults["align"];
|
|
1298
1298
|
};
|
|
1299
1299
|
offset: unknown extends Defaults["offset"] ? {
|
|
1300
1300
|
type: PropType<string | number | number[]>;
|
|
@@ -1305,20 +1305,20 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1305
1305
|
default: unknown extends Defaults["offset"] ? string | number | number[] : NonNullable<string | number | number[]> | Defaults["offset"];
|
|
1306
1306
|
};
|
|
1307
1307
|
position: unknown extends Defaults["position"] ? Omit<{
|
|
1308
|
-
type: PropType<"default" | "
|
|
1308
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1309
1309
|
default: string;
|
|
1310
1310
|
}, "type" | "default"> & {
|
|
1311
|
-
type: PropType<NonNullable<"default" | "
|
|
1312
|
-
default: NonNullable<"default" | "
|
|
1311
|
+
type: PropType<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>;
|
|
1312
|
+
default: NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1313
1313
|
} : Omit<Omit<{
|
|
1314
|
-
type: PropType<"default" | "
|
|
1314
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1315
1315
|
default: string;
|
|
1316
1316
|
}, "type" | "default"> & {
|
|
1317
|
-
type: PropType<NonNullable<"default" | "
|
|
1318
|
-
default: NonNullable<"default" | "
|
|
1317
|
+
type: PropType<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>;
|
|
1318
|
+
default: NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1319
1319
|
}, "type" | "default"> & {
|
|
1320
|
-
type: PropType<unknown extends Defaults["position"] ? NonNullable<"default" | "
|
|
1321
|
-
default: unknown extends Defaults["position"] ? NonNullable<"default" | "
|
|
1320
|
+
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"]>;
|
|
1321
|
+
default: unknown extends Defaults["position"] ? NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right"> : NonNullable<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">> | Defaults["position"];
|
|
1322
1322
|
};
|
|
1323
1323
|
origin: unknown extends Defaults["origin"] ? {
|
|
1324
1324
|
type: StringConstructor;
|
|
@@ -1623,17 +1623,17 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1623
1623
|
menuProps: unknown extends Defaults["menuProps"] ? {
|
|
1624
1624
|
type: PropType<Partial<{
|
|
1625
1625
|
disabled: boolean;
|
|
1626
|
-
align: "
|
|
1626
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
1627
|
+
closeDelay: number;
|
|
1628
|
+
openDelay: number;
|
|
1629
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1630
|
+
is?: import('vue').Component | undefined;
|
|
1631
|
+
})>;
|
|
1627
1632
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1628
|
-
position: "default" | "
|
|
1633
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1629
1634
|
origin: string;
|
|
1630
1635
|
viewportMargin: string | number | unknown[];
|
|
1631
1636
|
zIndex: string | number;
|
|
1632
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1633
|
-
is?: import('vue').Component | undefined;
|
|
1634
|
-
})>;
|
|
1635
|
-
closeDelay: number;
|
|
1636
|
-
openDelay: number;
|
|
1637
1637
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1638
1638
|
contentStyles: import('vue').CSSProperties;
|
|
1639
1639
|
openOnHover: boolean;
|
|
@@ -1643,17 +1643,17 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1643
1643
|
closeCondition: boolean | Function;
|
|
1644
1644
|
}> & Omit<{
|
|
1645
1645
|
readonly disabled: boolean;
|
|
1646
|
-
readonly align: "
|
|
1646
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
1647
|
+
readonly closeDelay: number;
|
|
1648
|
+
readonly openDelay: number;
|
|
1649
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1650
|
+
is?: import('vue').Component | undefined;
|
|
1651
|
+
})>;
|
|
1647
1652
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1648
|
-
readonly position: "default" | "
|
|
1653
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1649
1654
|
readonly origin: string;
|
|
1650
1655
|
readonly viewportMargin: string | number | unknown[];
|
|
1651
1656
|
readonly zIndex: string | number;
|
|
1652
|
-
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1653
|
-
is?: import('vue').Component | undefined;
|
|
1654
|
-
})>;
|
|
1655
|
-
readonly closeDelay: number;
|
|
1656
|
-
readonly openDelay: number;
|
|
1657
1657
|
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1658
1658
|
readonly contentStyles: import('vue').CSSProperties;
|
|
1659
1659
|
readonly openOnHover: boolean;
|
|
@@ -1665,8 +1665,8 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1665
1665
|
readonly width?: string | number | undefined;
|
|
1666
1666
|
readonly height?: string | number | undefined;
|
|
1667
1667
|
readonly theme?: string | undefined;
|
|
1668
|
-
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
1669
1668
|
readonly minWidth?: string | number | undefined;
|
|
1669
|
+
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
1670
1670
|
readonly offset?: string | number | number[] | undefined;
|
|
1671
1671
|
readonly minHeight?: string | number | undefined;
|
|
1672
1672
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -1720,11 +1720,11 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1720
1720
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1721
1721
|
};
|
|
1722
1722
|
position: {
|
|
1723
|
-
type: PropType<"default" | "
|
|
1723
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1724
1724
|
default: string;
|
|
1725
1725
|
};
|
|
1726
1726
|
align: {
|
|
1727
|
-
type: PropType<"
|
|
1727
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
1728
1728
|
default: string;
|
|
1729
1729
|
};
|
|
1730
1730
|
origin: {
|
|
@@ -1808,21 +1808,21 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1808
1808
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1809
1809
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1810
1810
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
1811
|
-
}, "disabled" | "align" | "
|
|
1811
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
|
|
1812
1812
|
} : Omit<{
|
|
1813
1813
|
type: PropType<Partial<{
|
|
1814
1814
|
disabled: boolean;
|
|
1815
|
-
align: "
|
|
1815
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
1816
|
+
closeDelay: number;
|
|
1817
|
+
openDelay: number;
|
|
1818
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1819
|
+
is?: import('vue').Component | undefined;
|
|
1820
|
+
})>;
|
|
1816
1821
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1817
|
-
position: "default" | "
|
|
1822
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1818
1823
|
origin: string;
|
|
1819
1824
|
viewportMargin: string | number | unknown[];
|
|
1820
1825
|
zIndex: string | number;
|
|
1821
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1822
|
-
is?: import('vue').Component | undefined;
|
|
1823
|
-
})>;
|
|
1824
|
-
closeDelay: number;
|
|
1825
|
-
openDelay: number;
|
|
1826
1826
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1827
1827
|
contentStyles: import('vue').CSSProperties;
|
|
1828
1828
|
openOnHover: boolean;
|
|
@@ -1832,17 +1832,17 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1832
1832
|
closeCondition: boolean | Function;
|
|
1833
1833
|
}> & Omit<{
|
|
1834
1834
|
readonly disabled: boolean;
|
|
1835
|
-
readonly align: "
|
|
1835
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
1836
|
+
readonly closeDelay: number;
|
|
1837
|
+
readonly openDelay: number;
|
|
1838
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1839
|
+
is?: import('vue').Component | undefined;
|
|
1840
|
+
})>;
|
|
1836
1841
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1837
|
-
readonly position: "default" | "
|
|
1842
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1838
1843
|
readonly origin: string;
|
|
1839
1844
|
readonly viewportMargin: string | number | unknown[];
|
|
1840
1845
|
readonly zIndex: string | number;
|
|
1841
|
-
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
1842
|
-
is?: import('vue').Component | undefined;
|
|
1843
|
-
})>;
|
|
1844
|
-
readonly closeDelay: number;
|
|
1845
|
-
readonly openDelay: number;
|
|
1846
1846
|
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1847
1847
|
readonly contentStyles: import('vue').CSSProperties;
|
|
1848
1848
|
readonly openOnHover: boolean;
|
|
@@ -1854,8 +1854,8 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1854
1854
|
readonly width?: string | number | undefined;
|
|
1855
1855
|
readonly height?: string | number | undefined;
|
|
1856
1856
|
readonly theme?: string | undefined;
|
|
1857
|
-
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
1858
1857
|
readonly minWidth?: string | number | undefined;
|
|
1858
|
+
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
1859
1859
|
readonly offset?: string | number | number[] | undefined;
|
|
1860
1860
|
readonly minHeight?: string | number | undefined;
|
|
1861
1861
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -1909,11 +1909,11 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1909
1909
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1910
1910
|
};
|
|
1911
1911
|
position: {
|
|
1912
|
-
type: PropType<"default" | "
|
|
1912
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1913
1913
|
default: string;
|
|
1914
1914
|
};
|
|
1915
1915
|
align: {
|
|
1916
|
-
type: PropType<"
|
|
1916
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
1917
1917
|
default: string;
|
|
1918
1918
|
};
|
|
1919
1919
|
origin: {
|
|
@@ -1997,21 +1997,21 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1997
1997
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1998
1998
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1999
1999
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2000
|
-
}, "disabled" | "align" | "
|
|
2000
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
|
|
2001
2001
|
}, "type" | "default"> & {
|
|
2002
2002
|
type: PropType<unknown extends Defaults["menuProps"] ? Partial<{
|
|
2003
2003
|
disabled: boolean;
|
|
2004
|
-
align: "
|
|
2004
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
2005
|
+
closeDelay: number;
|
|
2006
|
+
openDelay: number;
|
|
2007
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2008
|
+
is?: import('vue').Component | undefined;
|
|
2009
|
+
})>;
|
|
2005
2010
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2006
|
-
position: "default" | "
|
|
2011
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2007
2012
|
origin: string;
|
|
2008
2013
|
viewportMargin: string | number | unknown[];
|
|
2009
2014
|
zIndex: string | number;
|
|
2010
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2011
|
-
is?: import('vue').Component | undefined;
|
|
2012
|
-
})>;
|
|
2013
|
-
closeDelay: number;
|
|
2014
|
-
openDelay: number;
|
|
2015
2015
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2016
2016
|
contentStyles: import('vue').CSSProperties;
|
|
2017
2017
|
openOnHover: boolean;
|
|
@@ -2021,17 +2021,17 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2021
2021
|
closeCondition: boolean | Function;
|
|
2022
2022
|
}> & Omit<{
|
|
2023
2023
|
readonly disabled: boolean;
|
|
2024
|
-
readonly align: "
|
|
2024
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
2025
|
+
readonly closeDelay: number;
|
|
2026
|
+
readonly openDelay: number;
|
|
2027
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2028
|
+
is?: import('vue').Component | undefined;
|
|
2029
|
+
})>;
|
|
2025
2030
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2026
|
-
readonly position: "default" | "
|
|
2031
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2027
2032
|
readonly origin: string;
|
|
2028
2033
|
readonly viewportMargin: string | number | unknown[];
|
|
2029
2034
|
readonly zIndex: string | number;
|
|
2030
|
-
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2031
|
-
is?: import('vue').Component | undefined;
|
|
2032
|
-
})>;
|
|
2033
|
-
readonly closeDelay: number;
|
|
2034
|
-
readonly openDelay: number;
|
|
2035
2035
|
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2036
2036
|
readonly contentStyles: import('vue').CSSProperties;
|
|
2037
2037
|
readonly openOnHover: boolean;
|
|
@@ -2043,8 +2043,8 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2043
2043
|
readonly width?: string | number | undefined;
|
|
2044
2044
|
readonly height?: string | number | undefined;
|
|
2045
2045
|
readonly theme?: string | undefined;
|
|
2046
|
-
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
2047
2046
|
readonly minWidth?: string | number | undefined;
|
|
2047
|
+
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
2048
2048
|
readonly offset?: string | number | number[] | undefined;
|
|
2049
2049
|
readonly minHeight?: string | number | undefined;
|
|
2050
2050
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -2098,11 +2098,11 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2098
2098
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2099
2099
|
};
|
|
2100
2100
|
position: {
|
|
2101
|
-
type: PropType<"default" | "
|
|
2101
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2102
2102
|
default: string;
|
|
2103
2103
|
};
|
|
2104
2104
|
align: {
|
|
2105
|
-
type: PropType<"
|
|
2105
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
2106
2106
|
default: string;
|
|
2107
2107
|
};
|
|
2108
2108
|
origin: {
|
|
@@ -2186,19 +2186,19 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2186
2186
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2187
2187
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2188
2188
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2189
|
-
}, "disabled" | "align" | "
|
|
2189
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : NonNullable<Partial<{
|
|
2190
2190
|
disabled: boolean;
|
|
2191
|
-
align: "
|
|
2191
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
2192
|
+
closeDelay: number;
|
|
2193
|
+
openDelay: number;
|
|
2194
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2195
|
+
is?: import('vue').Component | undefined;
|
|
2196
|
+
})>;
|
|
2192
2197
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2193
|
-
position: "default" | "
|
|
2198
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2194
2199
|
origin: string;
|
|
2195
2200
|
viewportMargin: string | number | unknown[];
|
|
2196
2201
|
zIndex: string | number;
|
|
2197
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2198
|
-
is?: import('vue').Component | undefined;
|
|
2199
|
-
})>;
|
|
2200
|
-
closeDelay: number;
|
|
2201
|
-
openDelay: number;
|
|
2202
2202
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2203
2203
|
contentStyles: import('vue').CSSProperties;
|
|
2204
2204
|
openOnHover: boolean;
|
|
@@ -2208,17 +2208,17 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2208
2208
|
closeCondition: boolean | Function;
|
|
2209
2209
|
}> & Omit<{
|
|
2210
2210
|
readonly disabled: boolean;
|
|
2211
|
-
readonly align: "
|
|
2211
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
2212
|
+
readonly closeDelay: number;
|
|
2213
|
+
readonly openDelay: number;
|
|
2214
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2215
|
+
is?: import('vue').Component | undefined;
|
|
2216
|
+
})>;
|
|
2212
2217
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2213
|
-
readonly position: "default" | "
|
|
2218
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2214
2219
|
readonly origin: string;
|
|
2215
2220
|
readonly viewportMargin: string | number | unknown[];
|
|
2216
2221
|
readonly zIndex: string | number;
|
|
2217
|
-
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2218
|
-
is?: import('vue').Component | undefined;
|
|
2219
|
-
})>;
|
|
2220
|
-
readonly closeDelay: number;
|
|
2221
|
-
readonly openDelay: number;
|
|
2222
2222
|
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2223
2223
|
readonly contentStyles: import('vue').CSSProperties;
|
|
2224
2224
|
readonly openOnHover: boolean;
|
|
@@ -2230,8 +2230,8 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2230
2230
|
readonly width?: string | number | undefined;
|
|
2231
2231
|
readonly height?: string | number | undefined;
|
|
2232
2232
|
readonly theme?: string | undefined;
|
|
2233
|
-
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
2234
2233
|
readonly minWidth?: string | number | undefined;
|
|
2234
|
+
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
2235
2235
|
readonly offset?: string | number | number[] | undefined;
|
|
2236
2236
|
readonly minHeight?: string | number | undefined;
|
|
2237
2237
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -2285,11 +2285,11 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2285
2285
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2286
2286
|
};
|
|
2287
2287
|
position: {
|
|
2288
|
-
type: PropType<"default" | "
|
|
2288
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2289
2289
|
default: string;
|
|
2290
2290
|
};
|
|
2291
2291
|
align: {
|
|
2292
|
-
type: PropType<"
|
|
2292
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
2293
2293
|
default: string;
|
|
2294
2294
|
};
|
|
2295
2295
|
origin: {
|
|
@@ -2373,20 +2373,20 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2373
2373
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2374
2374
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2375
2375
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2376
|
-
}, "disabled" | "align" | "
|
|
2376
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">> | Defaults["menuProps"]>;
|
|
2377
2377
|
default: unknown extends Defaults["menuProps"] ? Partial<{
|
|
2378
2378
|
disabled: boolean;
|
|
2379
|
-
align: "
|
|
2379
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
2380
|
+
closeDelay: number;
|
|
2381
|
+
openDelay: number;
|
|
2382
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2383
|
+
is?: import('vue').Component | undefined;
|
|
2384
|
+
})>;
|
|
2380
2385
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2381
|
-
position: "default" | "
|
|
2386
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2382
2387
|
origin: string;
|
|
2383
2388
|
viewportMargin: string | number | unknown[];
|
|
2384
2389
|
zIndex: string | number;
|
|
2385
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2386
|
-
is?: import('vue').Component | undefined;
|
|
2387
|
-
})>;
|
|
2388
|
-
closeDelay: number;
|
|
2389
|
-
openDelay: number;
|
|
2390
2390
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2391
2391
|
contentStyles: import('vue').CSSProperties;
|
|
2392
2392
|
openOnHover: boolean;
|
|
@@ -2396,17 +2396,17 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2396
2396
|
closeCondition: boolean | Function;
|
|
2397
2397
|
}> & Omit<{
|
|
2398
2398
|
readonly disabled: boolean;
|
|
2399
|
-
readonly align: "
|
|
2399
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
2400
|
+
readonly closeDelay: number;
|
|
2401
|
+
readonly openDelay: number;
|
|
2402
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2403
|
+
is?: import('vue').Component | undefined;
|
|
2404
|
+
})>;
|
|
2400
2405
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2401
|
-
readonly position: "default" | "
|
|
2406
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2402
2407
|
readonly origin: string;
|
|
2403
2408
|
readonly viewportMargin: string | number | unknown[];
|
|
2404
2409
|
readonly zIndex: string | number;
|
|
2405
|
-
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2406
|
-
is?: import('vue').Component | undefined;
|
|
2407
|
-
})>;
|
|
2408
|
-
readonly closeDelay: number;
|
|
2409
|
-
readonly openDelay: number;
|
|
2410
2410
|
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2411
2411
|
readonly contentStyles: import('vue').CSSProperties;
|
|
2412
2412
|
readonly openOnHover: boolean;
|
|
@@ -2418,8 +2418,8 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2418
2418
|
readonly width?: string | number | undefined;
|
|
2419
2419
|
readonly height?: string | number | undefined;
|
|
2420
2420
|
readonly theme?: string | undefined;
|
|
2421
|
-
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
2422
2421
|
readonly minWidth?: string | number | undefined;
|
|
2422
|
+
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
2423
2423
|
readonly offset?: string | number | number[] | undefined;
|
|
2424
2424
|
readonly minHeight?: string | number | undefined;
|
|
2425
2425
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -2473,11 +2473,11 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2473
2473
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2474
2474
|
};
|
|
2475
2475
|
position: {
|
|
2476
|
-
type: PropType<"default" | "
|
|
2476
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2477
2477
|
default: string;
|
|
2478
2478
|
};
|
|
2479
2479
|
align: {
|
|
2480
|
-
type: PropType<"
|
|
2480
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
2481
2481
|
default: string;
|
|
2482
2482
|
};
|
|
2483
2483
|
origin: {
|
|
@@ -2561,19 +2561,19 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2561
2561
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2562
2562
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2563
2563
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2564
|
-
}, "disabled" | "align" | "
|
|
2564
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : NonNullable<Partial<{
|
|
2565
2565
|
disabled: boolean;
|
|
2566
|
-
align: "
|
|
2566
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
2567
|
+
closeDelay: number;
|
|
2568
|
+
openDelay: number;
|
|
2569
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2570
|
+
is?: import('vue').Component | undefined;
|
|
2571
|
+
})>;
|
|
2567
2572
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2568
|
-
position: "default" | "
|
|
2573
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2569
2574
|
origin: string;
|
|
2570
2575
|
viewportMargin: string | number | unknown[];
|
|
2571
2576
|
zIndex: string | number;
|
|
2572
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2573
|
-
is?: import('vue').Component | undefined;
|
|
2574
|
-
})>;
|
|
2575
|
-
closeDelay: number;
|
|
2576
|
-
openDelay: number;
|
|
2577
2577
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2578
2578
|
contentStyles: import('vue').CSSProperties;
|
|
2579
2579
|
openOnHover: boolean;
|
|
@@ -2583,17 +2583,17 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2583
2583
|
closeCondition: boolean | Function;
|
|
2584
2584
|
}> & Omit<{
|
|
2585
2585
|
readonly disabled: boolean;
|
|
2586
|
-
readonly align: "
|
|
2586
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
2587
|
+
readonly closeDelay: number;
|
|
2588
|
+
readonly openDelay: number;
|
|
2589
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2590
|
+
is?: import('vue').Component | undefined;
|
|
2591
|
+
})>;
|
|
2587
2592
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2588
|
-
readonly position: "default" | "
|
|
2593
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2589
2594
|
readonly origin: string;
|
|
2590
2595
|
readonly viewportMargin: string | number | unknown[];
|
|
2591
2596
|
readonly zIndex: string | number;
|
|
2592
|
-
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2593
|
-
is?: import('vue').Component | undefined;
|
|
2594
|
-
})>;
|
|
2595
|
-
readonly closeDelay: number;
|
|
2596
|
-
readonly openDelay: number;
|
|
2597
2597
|
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2598
2598
|
readonly contentStyles: import('vue').CSSProperties;
|
|
2599
2599
|
readonly openOnHover: boolean;
|
|
@@ -2605,8 +2605,8 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2605
2605
|
readonly width?: string | number | undefined;
|
|
2606
2606
|
readonly height?: string | number | undefined;
|
|
2607
2607
|
readonly theme?: string | undefined;
|
|
2608
|
-
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
2609
2608
|
readonly minWidth?: string | number | undefined;
|
|
2609
|
+
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
2610
2610
|
readonly offset?: string | number | number[] | undefined;
|
|
2611
2611
|
readonly minHeight?: string | number | undefined;
|
|
2612
2612
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -2660,11 +2660,11 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2660
2660
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2661
2661
|
};
|
|
2662
2662
|
position: {
|
|
2663
|
-
type: PropType<"default" | "
|
|
2663
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2664
2664
|
default: string;
|
|
2665
2665
|
};
|
|
2666
2666
|
align: {
|
|
2667
|
-
type: PropType<"
|
|
2667
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
2668
2668
|
default: string;
|
|
2669
2669
|
};
|
|
2670
2670
|
origin: {
|
|
@@ -2748,7 +2748,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2748
2748
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2749
2749
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2750
2750
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2751
|
-
}, "disabled" | "align" | "
|
|
2751
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">> | Defaults["menuProps"];
|
|
2752
2752
|
};
|
|
2753
2753
|
maxHeight: unknown extends Defaults["maxHeight"] ? {
|
|
2754
2754
|
type: (NumberConstructor | StringConstructor)[];
|
|
@@ -2793,18 +2793,18 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2793
2793
|
};
|
|
2794
2794
|
export declare const YSelect: import('vue').DefineComponent<{
|
|
2795
2795
|
align: {
|
|
2796
|
-
type: PropType<"
|
|
2796
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
2797
2797
|
default: string;
|
|
2798
2798
|
};
|
|
2799
2799
|
offset: {
|
|
2800
2800
|
type: PropType<string | number | number[]>;
|
|
2801
2801
|
};
|
|
2802
2802
|
position: Omit<{
|
|
2803
|
-
type: PropType<"default" | "
|
|
2803
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2804
2804
|
default: string;
|
|
2805
2805
|
}, "type" | "default"> & {
|
|
2806
|
-
type: PropType<NonNullable<"default" | "
|
|
2807
|
-
default: NonNullable<"default" | "
|
|
2806
|
+
type: PropType<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>;
|
|
2807
|
+
default: NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2808
2808
|
};
|
|
2809
2809
|
origin: {
|
|
2810
2810
|
type: StringConstructor;
|
|
@@ -2914,17 +2914,17 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
2914
2914
|
menuProps: {
|
|
2915
2915
|
type: PropType<Partial<{
|
|
2916
2916
|
disabled: boolean;
|
|
2917
|
-
align: "
|
|
2917
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
2918
|
+
closeDelay: number;
|
|
2919
|
+
openDelay: number;
|
|
2920
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2921
|
+
is?: import('vue').Component | undefined;
|
|
2922
|
+
})>;
|
|
2918
2923
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2919
|
-
position: "default" | "
|
|
2924
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2920
2925
|
origin: string;
|
|
2921
2926
|
viewportMargin: string | number | unknown[];
|
|
2922
2927
|
zIndex: string | number;
|
|
2923
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2924
|
-
is?: import('vue').Component | undefined;
|
|
2925
|
-
})>;
|
|
2926
|
-
closeDelay: number;
|
|
2927
|
-
openDelay: number;
|
|
2928
2928
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2929
2929
|
contentStyles: import('vue').CSSProperties;
|
|
2930
2930
|
openOnHover: boolean;
|
|
@@ -2934,17 +2934,17 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
2934
2934
|
closeCondition: boolean | Function;
|
|
2935
2935
|
}> & Omit<{
|
|
2936
2936
|
readonly disabled: boolean;
|
|
2937
|
-
readonly align: "
|
|
2937
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
2938
|
+
readonly closeDelay: number;
|
|
2939
|
+
readonly openDelay: number;
|
|
2940
|
+
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2941
|
+
is?: import('vue').Component | undefined;
|
|
2942
|
+
})>;
|
|
2938
2943
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2939
|
-
readonly position: "default" | "
|
|
2944
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2940
2945
|
readonly origin: string;
|
|
2941
2946
|
readonly viewportMargin: string | number | unknown[];
|
|
2942
2947
|
readonly zIndex: string | number;
|
|
2943
|
-
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
2944
|
-
is?: import('vue').Component | undefined;
|
|
2945
|
-
})>;
|
|
2946
|
-
readonly closeDelay: number;
|
|
2947
|
-
readonly openDelay: number;
|
|
2948
2948
|
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2949
2949
|
readonly contentStyles: import('vue').CSSProperties;
|
|
2950
2950
|
readonly openOnHover: boolean;
|
|
@@ -2956,8 +2956,8 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
2956
2956
|
readonly width?: string | number | undefined;
|
|
2957
2957
|
readonly height?: string | number | undefined;
|
|
2958
2958
|
readonly theme?: string | undefined;
|
|
2959
|
-
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
2960
2959
|
readonly minWidth?: string | number | undefined;
|
|
2960
|
+
readonly classes?: string | string[] | Record<string, any> | undefined;
|
|
2961
2961
|
readonly offset?: string | number | number[] | undefined;
|
|
2962
2962
|
readonly minHeight?: string | number | undefined;
|
|
2963
2963
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -3011,11 +3011,11 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
3011
3011
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
3012
3012
|
};
|
|
3013
3013
|
position: {
|
|
3014
|
-
type: PropType<"default" | "
|
|
3014
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
3015
3015
|
default: string;
|
|
3016
3016
|
};
|
|
3017
3017
|
align: {
|
|
3018
|
-
type: PropType<"
|
|
3018
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
3019
3019
|
default: string;
|
|
3020
3020
|
};
|
|
3021
3021
|
origin: {
|
|
@@ -3099,7 +3099,7 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
3099
3099
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3100
3100
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
3101
3101
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
3102
|
-
}, "disabled" | "align" | "
|
|
3102
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
|
|
3103
3103
|
};
|
|
3104
3104
|
maxHeight: {
|
|
3105
3105
|
type: (NumberConstructor | StringConstructor)[];
|
|
@@ -3161,11 +3161,11 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
3161
3161
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
3162
3162
|
};
|
|
3163
3163
|
position: {
|
|
3164
|
-
type: PropType<"default" | "
|
|
3164
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
3165
3165
|
default: string;
|
|
3166
3166
|
};
|
|
3167
3167
|
align: {
|
|
3168
|
-
type: PropType<"
|
|
3168
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
3169
3169
|
default: string;
|
|
3170
3170
|
};
|
|
3171
3171
|
origin: {
|
|
@@ -3267,11 +3267,11 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
3267
3267
|
default: string;
|
|
3268
3268
|
};
|
|
3269
3269
|
position: {
|
|
3270
|
-
type: PropType<"default" | "
|
|
3270
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
3271
3271
|
default: string;
|
|
3272
3272
|
};
|
|
3273
3273
|
align: {
|
|
3274
|
-
type: PropType<"
|
|
3274
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
3275
3275
|
default: string;
|
|
3276
3276
|
};
|
|
3277
3277
|
origin: {
|
|
@@ -5012,11 +5012,11 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
5012
5012
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
5013
5013
|
};
|
|
5014
5014
|
position: {
|
|
5015
|
-
type: PropType<"default" | "
|
|
5015
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
5016
5016
|
default: string;
|
|
5017
5017
|
};
|
|
5018
5018
|
align: {
|
|
5019
|
-
type: PropType<"
|
|
5019
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
5020
5020
|
default: string;
|
|
5021
5021
|
};
|
|
5022
5022
|
origin: {
|
|
@@ -5102,17 +5102,17 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
5102
5102
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
5103
5103
|
}, {
|
|
5104
5104
|
disabled: boolean;
|
|
5105
|
-
align: "
|
|
5105
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
5106
|
+
closeDelay: number;
|
|
5107
|
+
openDelay: number;
|
|
5108
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
5109
|
+
is?: import('vue').Component | undefined;
|
|
5110
|
+
})>;
|
|
5106
5111
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
5107
|
-
position: "default" | "
|
|
5112
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
5108
5113
|
origin: string;
|
|
5109
5114
|
viewportMargin: string | number | unknown[];
|
|
5110
5115
|
zIndex: string | number;
|
|
5111
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
5112
|
-
is?: import('vue').Component | undefined;
|
|
5113
|
-
})>;
|
|
5114
|
-
closeDelay: number;
|
|
5115
|
-
openDelay: number;
|
|
5116
5116
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
5117
5117
|
contentStyles: import('vue').CSSProperties;
|
|
5118
5118
|
openOnHover: boolean;
|
|
@@ -5164,11 +5164,11 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
5164
5164
|
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
5165
5165
|
};
|
|
5166
5166
|
position: {
|
|
5167
|
-
type: PropType<"default" | "
|
|
5167
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
5168
5168
|
default: string;
|
|
5169
5169
|
};
|
|
5170
5170
|
align: {
|
|
5171
|
-
type: PropType<"
|
|
5171
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
5172
5172
|
default: string;
|
|
5173
5173
|
};
|
|
5174
5174
|
origin: {
|
|
@@ -5270,11 +5270,11 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
5270
5270
|
default: string;
|
|
5271
5271
|
};
|
|
5272
5272
|
position: {
|
|
5273
|
-
type: PropType<"default" | "
|
|
5273
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
5274
5274
|
default: string;
|
|
5275
5275
|
};
|
|
5276
5276
|
align: {
|
|
5277
|
-
type: PropType<"
|
|
5277
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
5278
5278
|
default: string;
|
|
5279
5279
|
};
|
|
5280
5280
|
origin: {
|
|
@@ -6980,17 +6980,17 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
6980
6980
|
hovered: import('vue').ComputedRef<boolean>;
|
|
6981
6981
|
}, {}, {}, {}, {
|
|
6982
6982
|
disabled: boolean;
|
|
6983
|
-
align: "
|
|
6983
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
6984
|
+
closeDelay: number;
|
|
6985
|
+
openDelay: number;
|
|
6986
|
+
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
6987
|
+
is?: import('vue').Component | undefined;
|
|
6988
|
+
})>;
|
|
6984
6989
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
6985
|
-
position: "default" | "
|
|
6990
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
6986
6991
|
origin: string;
|
|
6987
6992
|
viewportMargin: string | number | unknown[];
|
|
6988
6993
|
zIndex: string | number;
|
|
6989
|
-
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
6990
|
-
is?: import('vue').Component | undefined;
|
|
6991
|
-
})>;
|
|
6992
|
-
closeDelay: number;
|
|
6993
|
-
openDelay: number;
|
|
6994
6994
|
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
6995
6995
|
contentStyles: import('vue').CSSProperties;
|
|
6996
6996
|
openOnHover: boolean;
|