yuyeon 0.3.6-beta.0 → 0.3.6-beta.10
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 +3945 -4297
- package/dist/yuyeon.umd.cjs +3 -3
- package/lib/components/date-picker/index.js +2 -1
- package/lib/components/date-picker/index.js.map +1 -1
- package/lib/components/dialog/YDialog.js +11 -2
- package/lib/components/dialog/YDialog.js.map +1 -1
- package/lib/components/layer/YLayer.js +7 -2
- package/lib/components/layer/YLayer.js.map +1 -1
- package/lib/components/pagination/YPagination.js +10 -10
- package/lib/components/pagination/YPagination.js.map +1 -1
- package/lib/components/snackbar/YSnackbar.js +25 -17
- package/lib/components/snackbar/YSnackbar.js.map +1 -1
- package/lib/components/table/YDataTableHead.js +4 -4
- package/lib/components/table/YDataTableHead.js.map +1 -1
- package/lib/components/table/YDataTableRow.js +0 -1
- package/lib/components/table/YDataTableRow.js.map +1 -1
- package/lib/components/table/composables/items.js.map +1 -1
- package/lib/components/table/composables/selection.js.map +1 -1
- package/lib/components/time-select/TimeSelect.vue +344 -0
- package/lib/components/tree-view/YTreeView.js +8 -8
- package/lib/components/tree-view/YTreeView.js.map +1 -1
- package/lib/components/tree-view/YTreeView.scss +5 -0
- package/lib/components/tree-view/YTreeViewNode.js +34 -4
- package/lib/components/tree-view/YTreeViewNode.js.map +1 -1
- package/lib/components/tree-view/tree-view.js +2 -2
- package/lib/components/tree-view/tree-view.js.map +1 -1
- package/lib/util/animation/index.js +19 -0
- package/lib/util/animation/index.js.map +1 -0
- package/lib/util/date/adapters/yuyeon-date-adapter.js +5 -2
- package/lib/util/date/adapters/yuyeon-date-adapter.js.map +1 -1
- package/lib/util/date/built-in.js +58 -4
- package/lib/util/date/built-in.js.map +1 -1
- package/lib/util/date/index.js +3 -0
- package/lib/util/date/index.js.map +1 -1
- package/lib/util/date/types.js.map +1 -1
- package/package.json +2 -5
- package/types/components/badge/YBadge.d.ts +2 -2
- package/types/components/checkbox/YCheckbox.d.ts +1 -1
- package/types/components/checkbox/YInputCheckbox.d.ts +1 -1
- package/types/components/date-picker/YDateCalendar.d.ts +4 -4
- package/types/components/date-picker/YDatePicker.d.ts +12 -12
- package/types/components/date-picker/YDatePickerControl.d.ts +2 -2
- package/types/components/date-picker/YMonthPicker.d.ts +2 -2
- package/types/components/date-picker/YYearPicker.d.ts +2 -2
- package/types/components/date-picker/index.d.ts +2 -1
- package/types/components/dialog/YDialog.d.ts +63 -61
- package/types/components/dropdown/YDropdown.d.ts +41 -41
- package/types/components/field-input/YFieldInput.d.ts +3 -3
- package/types/components/icon/YIcon.d.ts +3 -3
- package/types/components/input/YInput.d.ts +3 -3
- package/types/components/ip-field/YIpv4Field.d.ts +1 -1
- package/types/components/layer/YLayer.d.ts +4 -3
- package/types/components/menu/YMenu.d.ts +6 -4
- package/types/components/pagination/YPagination.d.ts +19 -13
- package/types/components/select/YSelect.d.ts +87 -87
- package/types/components/snackbar/YSnackbar.d.ts +3 -3
- package/types/components/switch/YSwitch.d.ts +1 -1
- package/types/components/table/YDataTable.d.ts +4 -4
- package/types/components/table/YDataTableBody.d.ts +2 -2
- package/types/components/table/YDataTableServer.d.ts +4 -4
- package/types/components/table/composables/selection.d.ts +2 -2
- package/types/components/textarea/YTextarea.d.ts +24 -24
- package/types/components/tooltip/YTooltip.d.ts +3 -3
- package/types/components/tree-view/YTreeView.d.ts +16 -4
- package/types/components/tree-view/YTreeViewNode.d.ts +18 -0
- package/types/composables/coordinate/index.d.ts +2 -2
- package/types/shims.d.ts +2 -1
- package/types/util/animation/index.d.ts +1 -0
- package/types/util/date/adapters/yuyeon-date-adapter.d.ts +5 -1
- package/types/util/date/built-in.d.ts +19 -1
- package/types/util/date/index.d.ts +1 -0
- package/types/util/date/types.d.ts +5 -1
|
@@ -111,9 +111,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
111
111
|
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
112
112
|
is?: import('vue').Component;
|
|
113
113
|
})>;
|
|
114
|
+
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
114
115
|
align: "bottom" | "top" | "start" | "end" | "center";
|
|
115
116
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
116
|
-
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
117
117
|
origin: string;
|
|
118
118
|
viewportMargin: string | number | unknown[];
|
|
119
119
|
scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -131,9 +131,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
131
131
|
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
132
132
|
is?: import('vue').Component;
|
|
133
133
|
})>;
|
|
134
|
+
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
134
135
|
readonly align: "bottom" | "top" | "start" | "end" | "center";
|
|
135
136
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
136
|
-
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
137
137
|
readonly origin: string;
|
|
138
138
|
readonly viewportMargin: string | number | unknown[];
|
|
139
139
|
readonly scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -143,16 +143,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
143
143
|
readonly contained: boolean;
|
|
144
144
|
readonly preventClip: boolean;
|
|
145
145
|
readonly openOnClickBase: boolean;
|
|
146
|
-
readonly base?: import('../layer/base').BaseType;
|
|
147
146
|
readonly modelValue?: boolean | undefined;
|
|
148
|
-
readonly width?: string | number | undefined;
|
|
149
147
|
readonly height?: string | number | undefined;
|
|
148
|
+
readonly width?: string | number | undefined;
|
|
149
|
+
readonly base?: import('../layer/base').BaseType;
|
|
150
150
|
readonly theme?: string | undefined;
|
|
151
|
-
readonly minWidth?: string | number | undefined;
|
|
152
151
|
readonly offset?: string | number | number[] | undefined;
|
|
152
|
+
readonly maxHeight?: string | number | undefined;
|
|
153
|
+
readonly minWidth?: string | number | undefined;
|
|
153
154
|
readonly minHeight?: string | number | undefined;
|
|
154
155
|
readonly maxWidth?: string | number | undefined;
|
|
155
|
-
readonly maxHeight?: string | number | undefined;
|
|
156
156
|
readonly baseProps?: Record<string, any> | undefined;
|
|
157
157
|
readonly closeClickContent?: boolean | undefined;
|
|
158
158
|
readonly scrim?: boolean | undefined;
|
|
@@ -166,19 +166,19 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
166
166
|
readonly preventCloseBubble?: boolean | undefined;
|
|
167
167
|
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
168
168
|
readonly closeCondition?: boolean | Function | undefined;
|
|
169
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
170
169
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
170
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
171
171
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
172
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "
|
|
172
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "position" | "align" | "coordinateStrategy" | "origin" | "viewportMargin" | "scrollStrategy" | "contentStyles" | "openOnHover" | "zIndex" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : Defaults["menuProps"] | NonNullable<Partial<{
|
|
173
173
|
disabled: boolean;
|
|
174
174
|
closeDelay: number;
|
|
175
175
|
openDelay: number;
|
|
176
176
|
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
177
177
|
is?: import('vue').Component;
|
|
178
178
|
})>;
|
|
179
|
+
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
179
180
|
align: "bottom" | "top" | "start" | "end" | "center";
|
|
180
181
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
181
|
-
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
182
182
|
origin: string;
|
|
183
183
|
viewportMargin: string | number | unknown[];
|
|
184
184
|
scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -196,9 +196,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
196
196
|
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
197
197
|
is?: import('vue').Component;
|
|
198
198
|
})>;
|
|
199
|
+
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
199
200
|
readonly align: "bottom" | "top" | "start" | "end" | "center";
|
|
200
201
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
201
|
-
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
202
202
|
readonly origin: string;
|
|
203
203
|
readonly viewportMargin: string | number | unknown[];
|
|
204
204
|
readonly scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -208,16 +208,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
208
208
|
readonly contained: boolean;
|
|
209
209
|
readonly preventClip: boolean;
|
|
210
210
|
readonly openOnClickBase: boolean;
|
|
211
|
-
readonly base?: import('../layer/base').BaseType;
|
|
212
211
|
readonly modelValue?: boolean | undefined;
|
|
213
|
-
readonly width?: string | number | undefined;
|
|
214
212
|
readonly height?: string | number | undefined;
|
|
213
|
+
readonly width?: string | number | undefined;
|
|
214
|
+
readonly base?: import('../layer/base').BaseType;
|
|
215
215
|
readonly theme?: string | undefined;
|
|
216
|
-
readonly minWidth?: string | number | undefined;
|
|
217
216
|
readonly offset?: string | number | number[] | undefined;
|
|
217
|
+
readonly maxHeight?: string | number | undefined;
|
|
218
|
+
readonly minWidth?: string | number | undefined;
|
|
218
219
|
readonly minHeight?: string | number | undefined;
|
|
219
220
|
readonly maxWidth?: string | number | undefined;
|
|
220
|
-
readonly maxHeight?: string | number | undefined;
|
|
221
221
|
readonly baseProps?: Record<string, any> | undefined;
|
|
222
222
|
readonly closeClickContent?: boolean | undefined;
|
|
223
223
|
readonly scrim?: boolean | undefined;
|
|
@@ -231,10 +231,10 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
231
231
|
readonly preventCloseBubble?: boolean | undefined;
|
|
232
232
|
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
233
233
|
readonly closeCondition?: boolean | Function | undefined;
|
|
234
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
235
234
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
235
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
236
236
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
237
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "
|
|
237
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "position" | "align" | "coordinateStrategy" | "origin" | "viewportMargin" | "scrollStrategy" | "contentStyles" | "openOnHover" | "zIndex" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>>;
|
|
238
238
|
default: unknown extends Defaults["menuProps"] ? Partial<{
|
|
239
239
|
disabled: boolean;
|
|
240
240
|
closeDelay: number;
|
|
@@ -242,9 +242,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
242
242
|
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
243
243
|
is?: import('vue').Component;
|
|
244
244
|
})>;
|
|
245
|
+
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
245
246
|
align: "bottom" | "top" | "start" | "end" | "center";
|
|
246
247
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
247
|
-
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
248
248
|
origin: string;
|
|
249
249
|
viewportMargin: string | number | unknown[];
|
|
250
250
|
scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -262,9 +262,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
262
262
|
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
263
263
|
is?: import('vue').Component;
|
|
264
264
|
})>;
|
|
265
|
+
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
265
266
|
readonly align: "bottom" | "top" | "start" | "end" | "center";
|
|
266
267
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
267
|
-
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
268
268
|
readonly origin: string;
|
|
269
269
|
readonly viewportMargin: string | number | unknown[];
|
|
270
270
|
readonly scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -274,16 +274,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
274
274
|
readonly contained: boolean;
|
|
275
275
|
readonly preventClip: boolean;
|
|
276
276
|
readonly openOnClickBase: boolean;
|
|
277
|
-
readonly base?: import('../layer/base').BaseType;
|
|
278
277
|
readonly modelValue?: boolean | undefined;
|
|
279
|
-
readonly width?: string | number | undefined;
|
|
280
278
|
readonly height?: string | number | undefined;
|
|
279
|
+
readonly width?: string | number | undefined;
|
|
280
|
+
readonly base?: import('../layer/base').BaseType;
|
|
281
281
|
readonly theme?: string | undefined;
|
|
282
|
-
readonly minWidth?: string | number | undefined;
|
|
283
282
|
readonly offset?: string | number | number[] | undefined;
|
|
283
|
+
readonly maxHeight?: string | number | undefined;
|
|
284
|
+
readonly minWidth?: string | number | undefined;
|
|
284
285
|
readonly minHeight?: string | number | undefined;
|
|
285
286
|
readonly maxWidth?: string | number | undefined;
|
|
286
|
-
readonly maxHeight?: string | number | undefined;
|
|
287
287
|
readonly baseProps?: Record<string, any> | undefined;
|
|
288
288
|
readonly closeClickContent?: boolean | undefined;
|
|
289
289
|
readonly scrim?: boolean | undefined;
|
|
@@ -297,19 +297,19 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
297
297
|
readonly preventCloseBubble?: boolean | undefined;
|
|
298
298
|
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
299
299
|
readonly closeCondition?: boolean | Function | undefined;
|
|
300
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
301
300
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
301
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
302
302
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
303
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "
|
|
303
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "position" | "align" | "coordinateStrategy" | "origin" | "viewportMargin" | "scrollStrategy" | "contentStyles" | "openOnHover" | "zIndex" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : Defaults["menuProps"] | NonNullable<Partial<{
|
|
304
304
|
disabled: boolean;
|
|
305
305
|
closeDelay: number;
|
|
306
306
|
openDelay: number;
|
|
307
307
|
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
308
308
|
is?: import('vue').Component;
|
|
309
309
|
})>;
|
|
310
|
+
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
310
311
|
align: "bottom" | "top" | "start" | "end" | "center";
|
|
311
312
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
312
|
-
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
313
313
|
origin: string;
|
|
314
314
|
viewportMargin: string | number | unknown[];
|
|
315
315
|
scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -327,9 +327,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
327
327
|
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
328
328
|
is?: import('vue').Component;
|
|
329
329
|
})>;
|
|
330
|
+
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
330
331
|
readonly align: "bottom" | "top" | "start" | "end" | "center";
|
|
331
332
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
332
|
-
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
333
333
|
readonly origin: string;
|
|
334
334
|
readonly viewportMargin: string | number | unknown[];
|
|
335
335
|
readonly scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -339,16 +339,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
339
339
|
readonly contained: boolean;
|
|
340
340
|
readonly preventClip: boolean;
|
|
341
341
|
readonly openOnClickBase: boolean;
|
|
342
|
-
readonly base?: import('../layer/base').BaseType;
|
|
343
342
|
readonly modelValue?: boolean | undefined;
|
|
344
|
-
readonly width?: string | number | undefined;
|
|
345
343
|
readonly height?: string | number | undefined;
|
|
344
|
+
readonly width?: string | number | undefined;
|
|
345
|
+
readonly base?: import('../layer/base').BaseType;
|
|
346
346
|
readonly theme?: string | undefined;
|
|
347
|
-
readonly minWidth?: string | number | undefined;
|
|
348
347
|
readonly offset?: string | number | number[] | undefined;
|
|
348
|
+
readonly maxHeight?: string | number | undefined;
|
|
349
|
+
readonly minWidth?: string | number | undefined;
|
|
349
350
|
readonly minHeight?: string | number | undefined;
|
|
350
351
|
readonly maxWidth?: string | number | undefined;
|
|
351
|
-
readonly maxHeight?: string | number | undefined;
|
|
352
352
|
readonly baseProps?: Record<string, any> | undefined;
|
|
353
353
|
readonly closeClickContent?: boolean | undefined;
|
|
354
354
|
readonly scrim?: boolean | undefined;
|
|
@@ -362,16 +362,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
362
362
|
readonly preventCloseBubble?: boolean | undefined;
|
|
363
363
|
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
364
364
|
readonly closeCondition?: boolean | Function | undefined;
|
|
365
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
366
365
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
366
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
367
367
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
368
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "
|
|
368
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "position" | "align" | "coordinateStrategy" | "origin" | "viewportMargin" | "scrollStrategy" | "contentStyles" | "openOnHover" | "zIndex" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
|
|
369
369
|
};
|
|
370
370
|
};
|
|
371
371
|
export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
372
|
-
align?: unknown;
|
|
373
372
|
offset?: unknown;
|
|
374
373
|
position?: unknown;
|
|
374
|
+
align?: unknown;
|
|
375
375
|
origin?: unknown;
|
|
376
376
|
viewportMargin?: unknown;
|
|
377
377
|
extended?: unknown;
|
|
@@ -425,16 +425,6 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
425
425
|
openDelay?: unknown;
|
|
426
426
|
closeDelay?: unknown;
|
|
427
427
|
} = {}>(defaults?: Defaults | undefined) => {
|
|
428
|
-
align: unknown extends Defaults["align"] ? {
|
|
429
|
-
type: PropType<"start" | "center" | "end" | "top" | "bottom">;
|
|
430
|
-
default: string;
|
|
431
|
-
} : Omit<{
|
|
432
|
-
type: PropType<"start" | "center" | "end" | "top" | "bottom">;
|
|
433
|
-
default: string;
|
|
434
|
-
}, "type" | "default"> & {
|
|
435
|
-
type: PropType<unknown extends Defaults["align"] ? "bottom" | "top" | "start" | "end" | "center" : NonNullable<"bottom" | "top" | "start" | "end" | "center"> | Defaults["align"]>;
|
|
436
|
-
default: unknown extends Defaults["align"] ? "bottom" | "top" | "start" | "end" | "center" : NonNullable<"bottom" | "top" | "start" | "end" | "center"> | Defaults["align"];
|
|
437
|
-
};
|
|
438
428
|
offset: unknown extends Defaults["offset"] ? {
|
|
439
429
|
type: PropType<number | string | number[]>;
|
|
440
430
|
} : Omit<{
|
|
@@ -459,6 +449,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
459
449
|
type: PropType<unknown extends Defaults["position"] ? NonNullable<"default" | "bottom" | "left" | "right" | "top" | "start" | "end"> : NonNullable<NonNullable<"default" | "bottom" | "left" | "right" | "top" | "start" | "end">> | Defaults["position"]>;
|
|
460
450
|
default: unknown extends Defaults["position"] ? NonNullable<"default" | "bottom" | "left" | "right" | "top" | "start" | "end"> : NonNullable<NonNullable<"default" | "bottom" | "left" | "right" | "top" | "start" | "end">> | Defaults["position"];
|
|
461
451
|
};
|
|
452
|
+
align: unknown extends Defaults["align"] ? {
|
|
453
|
+
type: PropType<"start" | "center" | "end" | "top" | "bottom">;
|
|
454
|
+
default: string;
|
|
455
|
+
} : Omit<{
|
|
456
|
+
type: PropType<"start" | "center" | "end" | "top" | "bottom">;
|
|
457
|
+
default: string;
|
|
458
|
+
}, "type" | "default"> & {
|
|
459
|
+
type: PropType<unknown extends Defaults["align"] ? "bottom" | "top" | "start" | "end" | "center" : NonNullable<"bottom" | "top" | "start" | "end" | "center"> | Defaults["align"]>;
|
|
460
|
+
default: unknown extends Defaults["align"] ? "bottom" | "top" | "start" | "end" | "center" : NonNullable<"bottom" | "top" | "start" | "end" | "center"> | Defaults["align"];
|
|
461
|
+
};
|
|
462
462
|
origin: unknown extends Defaults["origin"] ? {
|
|
463
463
|
type: StringConstructor;
|
|
464
464
|
default: string;
|
|
@@ -470,10 +470,10 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
470
470
|
default: unknown extends Defaults["origin"] ? string : string | Defaults["origin"];
|
|
471
471
|
};
|
|
472
472
|
viewportMargin: unknown extends Defaults["viewportMargin"] ? {
|
|
473
|
-
type: (ArrayConstructor |
|
|
473
|
+
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
474
474
|
default: number;
|
|
475
475
|
} : Omit<{
|
|
476
|
-
type: (ArrayConstructor |
|
|
476
|
+
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
477
477
|
default: number;
|
|
478
478
|
}, "type" | "default"> & {
|
|
479
479
|
type: PropType<unknown extends Defaults["viewportMargin"] ? string | number | unknown[] : NonNullable<string | number | unknown[]> | Defaults["viewportMargin"]>;
|
|
@@ -551,7 +551,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
551
551
|
type: PropType<unknown extends Defaults["width"] ? string | number : NonNullable<string | number> | Defaults["width"]>;
|
|
552
552
|
default: unknown extends Defaults["width"] ? string | number : NonNullable<string | number> | Defaults["width"];
|
|
553
553
|
};
|
|
554
|
-
height: unknown extends Defaults["height"] ? (
|
|
554
|
+
height: unknown extends Defaults["height"] ? (StringConstructor | NumberConstructor)[] : {
|
|
555
555
|
type: PropType<unknown extends Defaults["height"] ? string | number : NonNullable<string | number> | Defaults["height"]>;
|
|
556
556
|
default: unknown extends Defaults["height"] ? string | number : NonNullable<string | number> | Defaults["height"];
|
|
557
557
|
};
|
|
@@ -779,9 +779,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
779
779
|
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
780
780
|
is?: import('vue').Component;
|
|
781
781
|
})>;
|
|
782
|
+
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
782
783
|
align: "bottom" | "top" | "start" | "end" | "center";
|
|
783
784
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
784
|
-
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
785
785
|
origin: string;
|
|
786
786
|
viewportMargin: string | number | unknown[];
|
|
787
787
|
scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -799,9 +799,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
799
799
|
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
800
800
|
is?: import('vue').Component;
|
|
801
801
|
})>;
|
|
802
|
+
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
802
803
|
readonly align: "bottom" | "top" | "start" | "end" | "center";
|
|
803
804
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
804
|
-
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
805
805
|
readonly origin: string;
|
|
806
806
|
readonly viewportMargin: string | number | unknown[];
|
|
807
807
|
readonly scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -811,16 +811,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
811
811
|
readonly contained: boolean;
|
|
812
812
|
readonly preventClip: boolean;
|
|
813
813
|
readonly openOnClickBase: boolean;
|
|
814
|
-
readonly base?: import('../layer/base').BaseType;
|
|
815
814
|
readonly modelValue?: boolean | undefined;
|
|
816
|
-
readonly width?: string | number | undefined;
|
|
817
815
|
readonly height?: string | number | undefined;
|
|
816
|
+
readonly width?: string | number | undefined;
|
|
817
|
+
readonly base?: import('../layer/base').BaseType;
|
|
818
818
|
readonly theme?: string | undefined;
|
|
819
|
-
readonly minWidth?: string | number | undefined;
|
|
820
819
|
readonly offset?: string | number | number[] | undefined;
|
|
820
|
+
readonly maxHeight?: string | number | undefined;
|
|
821
|
+
readonly minWidth?: string | number | undefined;
|
|
821
822
|
readonly minHeight?: string | number | undefined;
|
|
822
823
|
readonly maxWidth?: string | number | undefined;
|
|
823
|
-
readonly maxHeight?: string | number | undefined;
|
|
824
824
|
readonly baseProps?: Record<string, any> | undefined;
|
|
825
825
|
readonly closeClickContent?: boolean | undefined;
|
|
826
826
|
readonly scrim?: boolean | undefined;
|
|
@@ -834,19 +834,19 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
834
834
|
readonly preventCloseBubble?: boolean | undefined;
|
|
835
835
|
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
836
836
|
readonly closeCondition?: boolean | Function | undefined;
|
|
837
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
838
837
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
838
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
839
839
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
840
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "
|
|
840
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "position" | "align" | "coordinateStrategy" | "origin" | "viewportMargin" | "scrollStrategy" | "contentStyles" | "openOnHover" | "zIndex" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : NonNullable<Partial<{
|
|
841
841
|
disabled: boolean;
|
|
842
842
|
closeDelay: number;
|
|
843
843
|
openDelay: number;
|
|
844
844
|
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
845
845
|
is?: import('vue').Component;
|
|
846
846
|
})>;
|
|
847
|
+
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
847
848
|
align: "bottom" | "top" | "start" | "end" | "center";
|
|
848
849
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
849
|
-
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
850
850
|
origin: string;
|
|
851
851
|
viewportMargin: string | number | unknown[];
|
|
852
852
|
scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -864,9 +864,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
864
864
|
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
865
865
|
is?: import('vue').Component;
|
|
866
866
|
})>;
|
|
867
|
+
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
867
868
|
readonly align: "bottom" | "top" | "start" | "end" | "center";
|
|
868
869
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
869
|
-
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
870
870
|
readonly origin: string;
|
|
871
871
|
readonly viewportMargin: string | number | unknown[];
|
|
872
872
|
readonly scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -876,16 +876,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
876
876
|
readonly contained: boolean;
|
|
877
877
|
readonly preventClip: boolean;
|
|
878
878
|
readonly openOnClickBase: boolean;
|
|
879
|
-
readonly base?: import('../layer/base').BaseType;
|
|
880
879
|
readonly modelValue?: boolean | undefined;
|
|
881
|
-
readonly width?: string | number | undefined;
|
|
882
880
|
readonly height?: string | number | undefined;
|
|
881
|
+
readonly width?: string | number | undefined;
|
|
882
|
+
readonly base?: import('../layer/base').BaseType;
|
|
883
883
|
readonly theme?: string | undefined;
|
|
884
|
-
readonly minWidth?: string | number | undefined;
|
|
885
884
|
readonly offset?: string | number | number[] | undefined;
|
|
885
|
+
readonly maxHeight?: string | number | undefined;
|
|
886
|
+
readonly minWidth?: string | number | undefined;
|
|
886
887
|
readonly minHeight?: string | number | undefined;
|
|
887
888
|
readonly maxWidth?: string | number | undefined;
|
|
888
|
-
readonly maxHeight?: string | number | undefined;
|
|
889
889
|
readonly baseProps?: Record<string, any> | undefined;
|
|
890
890
|
readonly closeClickContent?: boolean | undefined;
|
|
891
891
|
readonly scrim?: boolean | undefined;
|
|
@@ -899,10 +899,10 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
899
899
|
readonly preventCloseBubble?: boolean | undefined;
|
|
900
900
|
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
901
901
|
readonly closeCondition?: boolean | Function | undefined;
|
|
902
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
903
902
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
903
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
904
904
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
905
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "
|
|
905
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "position" | "align" | "coordinateStrategy" | "origin" | "viewportMargin" | "scrollStrategy" | "contentStyles" | "openOnHover" | "zIndex" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">> | Defaults["menuProps"]>;
|
|
906
906
|
default: unknown extends Defaults["menuProps"] ? Partial<{
|
|
907
907
|
disabled: boolean;
|
|
908
908
|
closeDelay: number;
|
|
@@ -910,9 +910,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
910
910
|
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
911
911
|
is?: import('vue').Component;
|
|
912
912
|
})>;
|
|
913
|
+
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
913
914
|
align: "bottom" | "top" | "start" | "end" | "center";
|
|
914
915
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
915
|
-
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
916
916
|
origin: string;
|
|
917
917
|
viewportMargin: string | number | unknown[];
|
|
918
918
|
scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -930,9 +930,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
930
930
|
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
931
931
|
is?: import('vue').Component;
|
|
932
932
|
})>;
|
|
933
|
+
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
933
934
|
readonly align: "bottom" | "top" | "start" | "end" | "center";
|
|
934
935
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
935
|
-
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
936
936
|
readonly origin: string;
|
|
937
937
|
readonly viewportMargin: string | number | unknown[];
|
|
938
938
|
readonly scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -942,16 +942,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
942
942
|
readonly contained: boolean;
|
|
943
943
|
readonly preventClip: boolean;
|
|
944
944
|
readonly openOnClickBase: boolean;
|
|
945
|
-
readonly base?: import('../layer/base').BaseType;
|
|
946
945
|
readonly modelValue?: boolean | undefined;
|
|
947
|
-
readonly width?: string | number | undefined;
|
|
948
946
|
readonly height?: string | number | undefined;
|
|
947
|
+
readonly width?: string | number | undefined;
|
|
948
|
+
readonly base?: import('../layer/base').BaseType;
|
|
949
949
|
readonly theme?: string | undefined;
|
|
950
|
-
readonly minWidth?: string | number | undefined;
|
|
951
950
|
readonly offset?: string | number | number[] | undefined;
|
|
951
|
+
readonly maxHeight?: string | number | undefined;
|
|
952
|
+
readonly minWidth?: string | number | undefined;
|
|
952
953
|
readonly minHeight?: string | number | undefined;
|
|
953
954
|
readonly maxWidth?: string | number | undefined;
|
|
954
|
-
readonly maxHeight?: string | number | undefined;
|
|
955
955
|
readonly baseProps?: Record<string, any> | undefined;
|
|
956
956
|
readonly closeClickContent?: boolean | undefined;
|
|
957
957
|
readonly scrim?: boolean | undefined;
|
|
@@ -965,19 +965,19 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
965
965
|
readonly preventCloseBubble?: boolean | undefined;
|
|
966
966
|
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
967
967
|
readonly closeCondition?: boolean | Function | undefined;
|
|
968
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
969
968
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
969
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
970
970
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
971
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "
|
|
971
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "position" | "align" | "coordinateStrategy" | "origin" | "viewportMargin" | "scrollStrategy" | "contentStyles" | "openOnHover" | "zIndex" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : NonNullable<Partial<{
|
|
972
972
|
disabled: boolean;
|
|
973
973
|
closeDelay: number;
|
|
974
974
|
openDelay: number;
|
|
975
975
|
transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
976
976
|
is?: import('vue').Component;
|
|
977
977
|
})>;
|
|
978
|
+
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
978
979
|
align: "bottom" | "top" | "start" | "end" | "center";
|
|
979
980
|
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
980
|
-
position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
981
981
|
origin: string;
|
|
982
982
|
viewportMargin: string | number | unknown[];
|
|
983
983
|
scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -995,9 +995,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
995
995
|
readonly transition: NonNullable<string | (import('vue').TransitionProps & {
|
|
996
996
|
is?: import('vue').Component;
|
|
997
997
|
})>;
|
|
998
|
+
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
998
999
|
readonly align: "bottom" | "top" | "start" | "end" | "center";
|
|
999
1000
|
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1000
|
-
readonly position: "default" | "bottom" | "left" | "right" | "top" | "start" | "end";
|
|
1001
1001
|
readonly origin: string;
|
|
1002
1002
|
readonly viewportMargin: string | number | unknown[];
|
|
1003
1003
|
readonly scrollStrategy: NonNullable<"close" | "none" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "block" | "reposition">;
|
|
@@ -1007,16 +1007,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1007
1007
|
readonly contained: boolean;
|
|
1008
1008
|
readonly preventClip: boolean;
|
|
1009
1009
|
readonly openOnClickBase: boolean;
|
|
1010
|
-
readonly base?: import('../layer/base').BaseType;
|
|
1011
1010
|
readonly modelValue?: boolean | undefined;
|
|
1012
|
-
readonly width?: string | number | undefined;
|
|
1013
1011
|
readonly height?: string | number | undefined;
|
|
1012
|
+
readonly width?: string | number | undefined;
|
|
1013
|
+
readonly base?: import('../layer/base').BaseType;
|
|
1014
1014
|
readonly theme?: string | undefined;
|
|
1015
|
-
readonly minWidth?: string | number | undefined;
|
|
1016
1015
|
readonly offset?: string | number | number[] | undefined;
|
|
1016
|
+
readonly maxHeight?: string | number | undefined;
|
|
1017
|
+
readonly minWidth?: string | number | undefined;
|
|
1017
1018
|
readonly minHeight?: string | number | undefined;
|
|
1018
1019
|
readonly maxWidth?: string | number | undefined;
|
|
1019
|
-
readonly maxHeight?: string | number | undefined;
|
|
1020
1020
|
readonly baseProps?: Record<string, any> | undefined;
|
|
1021
1021
|
readonly closeClickContent?: boolean | undefined;
|
|
1022
1022
|
readonly scrim?: boolean | undefined;
|
|
@@ -1030,16 +1030,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1030
1030
|
readonly preventCloseBubble?: boolean | undefined;
|
|
1031
1031
|
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
1032
1032
|
readonly closeCondition?: boolean | Function | undefined;
|
|
1033
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1034
1033
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1034
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1035
1035
|
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
1036
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "
|
|
1036
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "closeDelay" | "openDelay" | "transition" | "position" | "align" | "coordinateStrategy" | "origin" | "viewportMargin" | "scrollStrategy" | "contentStyles" | "openOnHover" | "zIndex" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">> | Defaults["menuProps"];
|
|
1037
1037
|
};
|
|
1038
1038
|
maxHeight: unknown extends Defaults["maxHeight"] ? {
|
|
1039
|
-
type: (
|
|
1039
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1040
1040
|
default: number;
|
|
1041
1041
|
} : Omit<{
|
|
1042
|
-
type: (
|
|
1042
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1043
1043
|
default: number;
|
|
1044
1044
|
}, "type" | "default"> & {
|
|
1045
1045
|
type: PropType<unknown extends Defaults["maxHeight"] ? string | number : NonNullable<string | number> | Defaults["maxHeight"]>;
|
|
@@ -1077,10 +1077,6 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1077
1077
|
};
|
|
1078
1078
|
};
|
|
1079
1079
|
export declare const YSelect: import('vue').DefineComponent<{
|
|
1080
|
-
align: {
|
|
1081
|
-
type: PropType<"start" | "center" | "end" | "top" | "bottom">;
|
|
1082
|
-
default: string;
|
|
1083
|
-
};
|
|
1084
1080
|
offset: {
|
|
1085
1081
|
type: PropType<number | string | number[]>;
|
|
1086
1082
|
};
|
|
@@ -1091,12 +1087,16 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
1091
1087
|
type: PropType<NonNullable<"default" | "bottom" | "left" | "right" | "top" | "start" | "end">>;
|
|
1092
1088
|
default: NonNullable<"default" | "bottom" | "left" | "right" | "top" | "start" | "end">;
|
|
1093
1089
|
};
|
|
1090
|
+
align: {
|
|
1091
|
+
type: PropType<"start" | "center" | "end" | "top" | "bottom">;
|
|
1092
|
+
default: string;
|
|
1093
|
+
};
|
|
1094
1094
|
origin: {
|
|
1095
1095
|
type: StringConstructor;
|
|
1096
1096
|
default: string;
|
|
1097
1097
|
};
|
|
1098
1098
|
viewportMargin: {
|
|
1099
|
-
type: (ArrayConstructor |
|
|
1099
|
+
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
1100
1100
|
default: number;
|
|
1101
1101
|
};
|
|
1102
1102
|
extended: PropType<any>;
|
|
@@ -1122,7 +1122,7 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
1122
1122
|
width: {
|
|
1123
1123
|
type: PropType<string | number>;
|
|
1124
1124
|
};
|
|
1125
|
-
height: (
|
|
1125
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
1126
1126
|
displayTag: {
|
|
1127
1127
|
type: PropType<string>;
|
|
1128
1128
|
default: string;
|
|
@@ -1202,7 +1202,7 @@ export declare const YSelect: import('vue').DefineComponent<{
|
|
|
1202
1202
|
type: PropType<YMenu["$props"]>;
|
|
1203
1203
|
};
|
|
1204
1204
|
maxHeight: {
|
|
1205
|
-
type: (
|
|
1205
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1206
1206
|
default: number;
|
|
1207
1207
|
};
|
|
1208
1208
|
dropdownIcon: {
|
|
@@ -188,10 +188,10 @@ export declare const pressYSnackbarPropsOptions: <Defaults extends {
|
|
|
188
188
|
default: unknown extends Defaults["offset"] ? string | number | number[] : NonNullable<string | number | number[]> | Defaults["offset"];
|
|
189
189
|
};
|
|
190
190
|
viewportMargin: unknown extends Defaults["viewportMargin"] ? {
|
|
191
|
-
type: (ArrayConstructor |
|
|
191
|
+
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
192
192
|
default: number;
|
|
193
193
|
} : Omit<{
|
|
194
|
-
type: (ArrayConstructor |
|
|
194
|
+
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
195
195
|
default: number;
|
|
196
196
|
}, "type" | "default"> & {
|
|
197
197
|
type: PropType<unknown extends Defaults["viewportMargin"] ? string | number | unknown[] : NonNullable<string | number | unknown[]> | Defaults["viewportMargin"]>;
|
|
@@ -386,7 +386,7 @@ export declare const YSnackbar: import('vue').DefineComponent<{
|
|
|
386
386
|
type: PropType<number | string | number[]>;
|
|
387
387
|
};
|
|
388
388
|
viewportMargin: {
|
|
389
|
-
type: (ArrayConstructor |
|
|
389
|
+
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
390
390
|
default: number;
|
|
391
391
|
};
|
|
392
392
|
base: PropType<import('../layer/base').BaseType>;
|
|
@@ -133,5 +133,5 @@ export declare const YSwitch: import('vue').DefineComponent<{
|
|
|
133
133
|
type: StringConstructor;
|
|
134
134
|
default: string;
|
|
135
135
|
};
|
|
136
|
-
}, void, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("
|
|
136
|
+
}, void, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("focus" | "blur" | "change" | "click" | "keydown" | "update:modelValue" | "overmax")[], "focus" | "blur" | "change" | "click" | "keydown" | "update:modelValue" | "overmax">;
|
|
137
137
|
export type YSwitch = InstanceType<typeof YSwitch>;
|