vuetify 3.3.15 → 3.4.0-alpha.1
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/json/attributes.json +111 -11
- package/dist/json/importMap.json +4 -4
- package/dist/json/tags.json +25 -0
- package/dist/json/web-types.json +263 -18
- package/dist/vuetify-labs.css +1558 -518
- package/dist/vuetify-labs.d.ts +499 -179
- package/dist/vuetify-labs.esm.js +264 -73
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +263 -72
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1080 -40
- package/dist/vuetify.d.ts +484 -170
- package/dist/vuetify.esm.js +264 -73
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +263 -72
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +914 -895
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +20 -14
- package/lib/components/VAvatar/VAvatar.mjs +2 -1
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/index.d.mts +6 -0
- package/lib/components/VBanner/VBanner.mjs +5 -3
- package/lib/components/VBanner/VBanner.mjs.map +1 -1
- package/lib/components/VBanner/index.d.mts +10 -0
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs +9 -4
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs.map +1 -1
- package/lib/components/VBreadcrumbs/index.d.mts +28 -2
- package/lib/components/VCarousel/index.d.mts +26 -0
- package/lib/components/VCheckbox/index.d.mts +12 -0
- package/lib/components/VColorPicker/VColorPickerPreview.css +5 -0
- package/lib/components/VColorPicker/VColorPickerPreview.mjs +28 -2
- package/lib/components/VColorPicker/VColorPickerPreview.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPickerPreview.sass +4 -0
- package/lib/components/VColorPicker/_variables.scss +1 -0
- package/lib/components/VCombobox/index.d.mts +20 -14
- package/lib/components/VDialog/index.d.mts +41 -20
- package/lib/components/VField/index.d.mts +4 -4
- package/lib/components/VFileInput/index.d.mts +4 -4
- package/lib/components/VImg/VImg.mjs +13 -1
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VImg/index.d.mts +26 -0
- package/lib/components/VList/index.d.mts +12 -12
- package/lib/components/VMenu/index.d.mts +41 -20
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +5 -3
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/index.d.mts +10 -0
- package/lib/components/VOverlay/VOverlay.mjs +9 -4
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.mts +17 -8
- package/lib/components/VOverlay/locationStrategies.mjs +9 -9
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VOverlay/scrollStrategies.mjs +3 -3
- package/lib/components/VOverlay/scrollStrategies.mjs.map +1 -1
- package/lib/components/VOverlay/useActivator.mjs +50 -21
- package/lib/components/VOverlay/useActivator.mjs.map +1 -1
- package/lib/components/VRadio/index.d.mts +6 -0
- package/lib/components/VRangeSlider/VRangeSlider.mjs +4 -2
- package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
- package/lib/components/VRangeSlider/index.d.mts +14 -0
- package/lib/components/VSelect/index.d.mts +20 -14
- package/lib/components/VSelectionControl/VSelectionControl.mjs +3 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSelectionControl/index.d.mts +6 -0
- package/lib/components/VSlideGroup/VSlideGroup.mjs +5 -3
- package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
- package/lib/components/VSlideGroup/index.d.mts +10 -0
- package/lib/components/VSlider/VSlider.mjs +2 -1
- package/lib/components/VSlider/VSlider.mjs.map +1 -1
- package/lib/components/VSlider/index.d.mts +14 -0
- package/lib/components/VSlider/slider.mjs +5 -1
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.css +9 -0
- package/lib/components/VSnackbar/VSnackbar.mjs +65 -6
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.sass +9 -0
- package/lib/components/VSnackbar/index.d.mts +52 -25
- package/lib/components/VSwitch/index.d.mts +6 -0
- package/lib/components/VTabs/index.d.mts +10 -0
- package/lib/components/VTextField/index.d.mts +16 -16
- package/lib/components/VTextarea/index.d.mts +4 -4
- package/lib/components/VTooltip/index.d.mts +41 -20
- package/lib/components/index.d.mts +455 -168
- package/lib/components/transitions/dialog-transition.mjs +4 -3
- package/lib/components/transitions/dialog-transition.mjs.map +1 -1
- package/lib/components/transitions/index.d.mts +6 -6
- package/lib/composables/directiveComponent.mjs +69 -0
- package/lib/composables/directiveComponent.mjs.map +1 -0
- package/lib/composables/display.mjs +23 -3
- package/lib/composables/display.mjs.map +1 -1
- package/lib/composables/resizeObserver.mjs.map +1 -1
- package/lib/composables/theme.mjs +7 -7
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/iconsets/fa.mjs +2 -1
- package/lib/iconsets/fa.mjs.map +1 -1
- package/lib/iconsets/fa4.mjs +2 -1
- package/lib/iconsets/fa4.mjs.map +1 -1
- package/lib/iconsets/md.mjs +2 -1
- package/lib/iconsets/md.mjs.map +1 -1
- package/lib/iconsets/mdi-svg.mjs +2 -1
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/iconsets/mdi.mjs +2 -1
- package/lib/iconsets/mdi.mjs.map +1 -1
- package/lib/index.d.mts +33 -2
- package/lib/labs/VBottomSheet/index.d.mts +14 -8
- package/lib/labs/VDateInput/index.d.mts +4 -4
- package/lib/labs/VOtpInput/index.d.mts +4 -4
- package/lib/labs/components.d.mts +18 -12
- package/lib/styles/main.css +1026 -0
- package/lib/styles/settings/_utilities.scss +20 -0
- package/lib/util/box.mjs +12 -0
- package/lib/util/box.mjs.map +1 -1
- package/lib/util/globals.mjs +1 -0
- package/lib/util/globals.mjs.map +1 -1
- package/lib/util/helpers.mjs +9 -1
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -21,6 +21,7 @@ declare const VImg: {
|
|
|
21
21
|
component?: vue.Component | undefined;
|
|
22
22
|
}) | undefined;
|
|
23
23
|
style?: vue.StyleValue | undefined;
|
|
24
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
24
25
|
eager?: boolean | undefined;
|
|
25
26
|
options?: IntersectionObserverInit | undefined;
|
|
26
27
|
cover?: boolean | undefined;
|
|
@@ -43,7 +44,9 @@ declare const VImg: {
|
|
|
43
44
|
error?: (() => vue.VNodeChild) | undefined;
|
|
44
45
|
sources?: (() => vue.VNodeChild) | undefined;
|
|
45
46
|
};
|
|
47
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
46
48
|
alt?: string | undefined;
|
|
49
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
47
50
|
sizes?: string | undefined;
|
|
48
51
|
srcset?: string | undefined;
|
|
49
52
|
ref?: vue.VNodeRef | undefined;
|
|
@@ -143,8 +146,11 @@ declare const VImg: {
|
|
|
143
146
|
maxWidth?: string | number | undefined;
|
|
144
147
|
minHeight?: string | number | undefined;
|
|
145
148
|
minWidth?: string | number | undefined;
|
|
149
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
146
150
|
class?: any;
|
|
151
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
147
152
|
alt?: string | undefined;
|
|
153
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
148
154
|
sizes?: string | undefined;
|
|
149
155
|
srcset?: string | undefined;
|
|
150
156
|
contentClass?: string | undefined;
|
|
@@ -188,6 +194,7 @@ declare const VImg: {
|
|
|
188
194
|
component?: vue.Component | undefined;
|
|
189
195
|
});
|
|
190
196
|
style: vue.StyleValue;
|
|
197
|
+
draggable: boolean | "false" | "true";
|
|
191
198
|
eager: boolean;
|
|
192
199
|
options: IntersectionObserverInit;
|
|
193
200
|
cover: boolean;
|
|
@@ -243,8 +250,11 @@ declare const VImg: {
|
|
|
243
250
|
maxWidth?: string | number | undefined;
|
|
244
251
|
minHeight?: string | number | undefined;
|
|
245
252
|
minWidth?: string | number | undefined;
|
|
253
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
246
254
|
class?: any;
|
|
255
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
247
256
|
alt?: string | undefined;
|
|
257
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
248
258
|
sizes?: string | undefined;
|
|
249
259
|
srcset?: string | undefined;
|
|
250
260
|
contentClass?: string | undefined;
|
|
@@ -300,8 +310,11 @@ declare const VImg: {
|
|
|
300
310
|
maxWidth?: string | number | undefined;
|
|
301
311
|
minHeight?: string | number | undefined;
|
|
302
312
|
minWidth?: string | number | undefined;
|
|
313
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
303
314
|
class?: any;
|
|
315
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
304
316
|
alt?: string | undefined;
|
|
317
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
305
318
|
sizes?: string | undefined;
|
|
306
319
|
srcset?: string | undefined;
|
|
307
320
|
contentClass?: string | undefined;
|
|
@@ -345,6 +358,7 @@ declare const VImg: {
|
|
|
345
358
|
component?: vue.Component | undefined;
|
|
346
359
|
});
|
|
347
360
|
style: vue.StyleValue;
|
|
361
|
+
draggable: boolean | "false" | "true";
|
|
348
362
|
eager: boolean;
|
|
349
363
|
options: IntersectionObserverInit;
|
|
350
364
|
cover: boolean;
|
|
@@ -386,6 +400,10 @@ declare const VImg: {
|
|
|
386
400
|
inline: BooleanConstructor;
|
|
387
401
|
alt: StringConstructor;
|
|
388
402
|
cover: BooleanConstructor;
|
|
403
|
+
draggable: {
|
|
404
|
+
type: PropType<boolean | "false" | "true">;
|
|
405
|
+
default: undefined;
|
|
406
|
+
};
|
|
389
407
|
eager: BooleanConstructor;
|
|
390
408
|
gradient: StringConstructor;
|
|
391
409
|
lazySrc: StringConstructor;
|
|
@@ -402,6 +420,8 @@ declare const VImg: {
|
|
|
402
420
|
type: PropType<string | srcObject>;
|
|
403
421
|
default: string;
|
|
404
422
|
};
|
|
423
|
+
crossorigin: PropType<"" | "anonymous" | "use-credentials">;
|
|
424
|
+
referrerpolicy: PropType<"origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url">;
|
|
405
425
|
srcset: StringConstructor;
|
|
406
426
|
}, vue.ExtractPropTypes<{
|
|
407
427
|
transition: {
|
|
@@ -427,6 +447,10 @@ declare const VImg: {
|
|
|
427
447
|
inline: BooleanConstructor;
|
|
428
448
|
alt: StringConstructor;
|
|
429
449
|
cover: BooleanConstructor;
|
|
450
|
+
draggable: {
|
|
451
|
+
type: PropType<boolean | "false" | "true">;
|
|
452
|
+
default: undefined;
|
|
453
|
+
};
|
|
430
454
|
eager: BooleanConstructor;
|
|
431
455
|
gradient: StringConstructor;
|
|
432
456
|
lazySrc: StringConstructor;
|
|
@@ -443,6 +467,8 @@ declare const VImg: {
|
|
|
443
467
|
type: PropType<string | srcObject>;
|
|
444
468
|
default: string;
|
|
445
469
|
};
|
|
470
|
+
crossorigin: PropType<"" | "anonymous" | "use-credentials">;
|
|
471
|
+
referrerpolicy: PropType<"origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url">;
|
|
446
472
|
srcset: StringConstructor;
|
|
447
473
|
}>>;
|
|
448
474
|
type VImg = InstanceType<typeof VImg>;
|
|
@@ -158,11 +158,11 @@ declare const VListItem: {
|
|
|
158
158
|
"v-slot:prepend"?: false | ((arg: ListItemSlot) => vue.VNodeChild) | undefined;
|
|
159
159
|
prependIcon?: IconValue | undefined;
|
|
160
160
|
appendIcon?: IconValue | undefined;
|
|
161
|
+
baseColor?: string | undefined;
|
|
161
162
|
activeClass?: string | undefined;
|
|
162
163
|
appendAvatar?: string | undefined;
|
|
163
164
|
prependAvatar?: string | undefined;
|
|
164
165
|
activeColor?: string | undefined;
|
|
165
|
-
baseColor?: string | undefined;
|
|
166
166
|
subtitle?: string | number | boolean | undefined;
|
|
167
167
|
lines?: "one" | "two" | "three" | undefined;
|
|
168
168
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot) => vue.VNodeChild) | undefined;
|
|
@@ -229,11 +229,11 @@ declare const VListItem: {
|
|
|
229
229
|
rounded?: string | number | boolean | undefined;
|
|
230
230
|
prependIcon?: IconValue | undefined;
|
|
231
231
|
appendIcon?: IconValue | undefined;
|
|
232
|
+
baseColor?: string | undefined;
|
|
232
233
|
activeClass?: string | undefined;
|
|
233
234
|
appendAvatar?: string | undefined;
|
|
234
235
|
prependAvatar?: string | undefined;
|
|
235
236
|
activeColor?: string | undefined;
|
|
236
|
-
baseColor?: string | undefined;
|
|
237
237
|
subtitle?: string | number | boolean | undefined;
|
|
238
238
|
lines?: "one" | "two" | "three" | undefined;
|
|
239
239
|
} & {
|
|
@@ -347,11 +347,11 @@ declare const VListItem: {
|
|
|
347
347
|
rounded?: string | number | boolean | undefined;
|
|
348
348
|
prependIcon?: IconValue | undefined;
|
|
349
349
|
appendIcon?: IconValue | undefined;
|
|
350
|
+
baseColor?: string | undefined;
|
|
350
351
|
activeClass?: string | undefined;
|
|
351
352
|
appendAvatar?: string | undefined;
|
|
352
353
|
prependAvatar?: string | undefined;
|
|
353
354
|
activeColor?: string | undefined;
|
|
354
|
-
baseColor?: string | undefined;
|
|
355
355
|
subtitle?: string | number | boolean | undefined;
|
|
356
356
|
lines?: "one" | "two" | "three" | undefined;
|
|
357
357
|
} & {
|
|
@@ -416,11 +416,11 @@ declare const VListItem: {
|
|
|
416
416
|
rounded?: string | number | boolean | undefined;
|
|
417
417
|
prependIcon?: IconValue | undefined;
|
|
418
418
|
appendIcon?: IconValue | undefined;
|
|
419
|
+
baseColor?: string | undefined;
|
|
419
420
|
activeClass?: string | undefined;
|
|
420
421
|
appendAvatar?: string | undefined;
|
|
421
422
|
prependAvatar?: string | undefined;
|
|
422
423
|
activeColor?: string | undefined;
|
|
423
|
-
baseColor?: string | undefined;
|
|
424
424
|
subtitle?: string | number | boolean | undefined;
|
|
425
425
|
lines?: "one" | "two" | "three" | undefined;
|
|
426
426
|
} & {
|
|
@@ -774,12 +774,12 @@ declare const VList: {
|
|
|
774
774
|
[key: string]: any;
|
|
775
775
|
}>) => void)[] | undefined;
|
|
776
776
|
bgColor?: string | undefined;
|
|
777
|
+
baseColor?: string | undefined;
|
|
777
778
|
activeClass?: string | undefined;
|
|
778
779
|
opened?: readonly unknown[] | undefined;
|
|
779
780
|
"onUpdate:selected"?: ((val: unknown[]) => any) | undefined;
|
|
780
781
|
"onUpdate:opened"?: ((val: unknown[]) => any) | undefined;
|
|
781
782
|
activeColor?: string | undefined;
|
|
782
|
-
baseColor?: string | undefined;
|
|
783
783
|
"onClick:open"?: ((value: {
|
|
784
784
|
id: unknown;
|
|
785
785
|
value: boolean;
|
|
@@ -912,10 +912,10 @@ declare const VList: {
|
|
|
912
912
|
theme?: string | undefined;
|
|
913
913
|
rounded?: string | number | boolean | undefined;
|
|
914
914
|
bgColor?: string | undefined;
|
|
915
|
+
baseColor?: string | undefined;
|
|
915
916
|
activeClass?: string | undefined;
|
|
916
917
|
opened?: readonly unknown[] | undefined;
|
|
917
918
|
activeColor?: string | undefined;
|
|
918
|
-
baseColor?: string | undefined;
|
|
919
919
|
} & {
|
|
920
920
|
"onUpdate:selected"?: ((val: unknown[]) => any) | undefined;
|
|
921
921
|
"onUpdate:opened"?: ((val: unknown[]) => any) | undefined;
|
|
@@ -1086,10 +1086,10 @@ declare const VList: {
|
|
|
1086
1086
|
theme?: string | undefined;
|
|
1087
1087
|
rounded?: string | number | boolean | undefined;
|
|
1088
1088
|
bgColor?: string | undefined;
|
|
1089
|
+
baseColor?: string | undefined;
|
|
1089
1090
|
activeClass?: string | undefined;
|
|
1090
1091
|
opened?: readonly unknown[] | undefined;
|
|
1091
1092
|
activeColor?: string | undefined;
|
|
1092
|
-
baseColor?: string | undefined;
|
|
1093
1093
|
} & {
|
|
1094
1094
|
"onUpdate:selected"?: ((val: unknown[]) => any) | undefined;
|
|
1095
1095
|
"onUpdate:opened"?: ((val: unknown[]) => any) | undefined;
|
|
@@ -1143,10 +1143,10 @@ declare const VList: {
|
|
|
1143
1143
|
theme?: string | undefined;
|
|
1144
1144
|
rounded?: string | number | boolean | undefined;
|
|
1145
1145
|
bgColor?: string | undefined;
|
|
1146
|
+
baseColor?: string | undefined;
|
|
1146
1147
|
activeClass?: string | undefined;
|
|
1147
1148
|
opened?: readonly unknown[] | undefined;
|
|
1148
1149
|
activeColor?: string | undefined;
|
|
1149
|
-
baseColor?: string | undefined;
|
|
1150
1150
|
} & {
|
|
1151
1151
|
"onUpdate:selected"?: ((val: unknown[]) => any) | undefined;
|
|
1152
1152
|
"onUpdate:opened"?: ((val: unknown[]) => any) | undefined;
|
|
@@ -1518,8 +1518,8 @@ declare const VListGroup: {
|
|
|
1518
1518
|
}>) => void)[] | undefined;
|
|
1519
1519
|
prependIcon?: IconValue | undefined;
|
|
1520
1520
|
appendIcon?: IconValue | undefined;
|
|
1521
|
-
activeColor?: string | undefined;
|
|
1522
1521
|
baseColor?: string | undefined;
|
|
1522
|
+
activeColor?: string | undefined;
|
|
1523
1523
|
"v-slot:activator"?: false | ((arg: {
|
|
1524
1524
|
isOpen: boolean;
|
|
1525
1525
|
props: Record<string, unknown>;
|
|
@@ -1560,8 +1560,8 @@ declare const VListGroup: {
|
|
|
1560
1560
|
class?: any;
|
|
1561
1561
|
prependIcon?: IconValue | undefined;
|
|
1562
1562
|
appendIcon?: IconValue | undefined;
|
|
1563
|
-
activeColor?: string | undefined;
|
|
1564
1563
|
baseColor?: string | undefined;
|
|
1564
|
+
activeColor?: string | undefined;
|
|
1565
1565
|
} & {
|
|
1566
1566
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1567
1567
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1634,8 +1634,8 @@ declare const VListGroup: {
|
|
|
1634
1634
|
class?: any;
|
|
1635
1635
|
prependIcon?: IconValue | undefined;
|
|
1636
1636
|
appendIcon?: IconValue | undefined;
|
|
1637
|
-
activeColor?: string | undefined;
|
|
1638
1637
|
baseColor?: string | undefined;
|
|
1638
|
+
activeColor?: string | undefined;
|
|
1639
1639
|
} & {
|
|
1640
1640
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1641
1641
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1675,8 +1675,8 @@ declare const VListGroup: {
|
|
|
1675
1675
|
class?: any;
|
|
1676
1676
|
prependIcon?: IconValue | undefined;
|
|
1677
1677
|
appendIcon?: IconValue | undefined;
|
|
1678
|
-
activeColor?: string | undefined;
|
|
1679
1678
|
baseColor?: string | undefined;
|
|
1679
|
+
activeColor?: string | undefined;
|
|
1680
1680
|
} & {
|
|
1681
1681
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1682
1682
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -4,7 +4,7 @@ import { Ref, EffectScope, ComponentPropsOptions, ExtractPropTypes, Component, n
|
|
|
4
4
|
interface ScrollStrategyData {
|
|
5
5
|
root: Ref<HTMLElement | undefined>;
|
|
6
6
|
contentEl: Ref<HTMLElement | undefined>;
|
|
7
|
-
|
|
7
|
+
targetEl: Ref<HTMLElement | undefined>;
|
|
8
8
|
isActive: Ref<boolean>;
|
|
9
9
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
|
10
10
|
}
|
|
@@ -52,7 +52,7 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
|
52
52
|
|
|
53
53
|
interface LocationStrategyData {
|
|
54
54
|
contentEl: Ref<HTMLElement | undefined>;
|
|
55
|
-
|
|
55
|
+
target: Ref<HTMLElement | [x: number, y: number] | undefined>;
|
|
56
56
|
isActive: Ref<boolean>;
|
|
57
57
|
isRtl: Ref<boolean>;
|
|
58
58
|
}
|
|
@@ -126,6 +126,7 @@ declare const VMenu: {
|
|
|
126
126
|
maxWidth?: string | number | undefined;
|
|
127
127
|
minHeight?: string | number | undefined;
|
|
128
128
|
minWidth?: string | number | undefined;
|
|
129
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
129
130
|
class?: any;
|
|
130
131
|
$children?: vue.VNodeChild | {
|
|
131
132
|
default?: ((arg: {
|
|
@@ -194,7 +195,7 @@ declare const VMenu: {
|
|
|
194
195
|
[key: string]: any;
|
|
195
196
|
}>) => void)[] | undefined;
|
|
196
197
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
197
|
-
activator?:
|
|
198
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
198
199
|
"v-slot:activator"?: false | ((arg: {
|
|
199
200
|
isActive: boolean;
|
|
200
201
|
props: Record<string, any>;
|
|
@@ -261,10 +262,11 @@ declare const VMenu: {
|
|
|
261
262
|
maxWidth?: string | number | undefined;
|
|
262
263
|
minHeight?: string | number | undefined;
|
|
263
264
|
minWidth?: string | number | undefined;
|
|
265
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
264
266
|
class?: any;
|
|
265
267
|
theme?: string | undefined;
|
|
266
268
|
contentClass?: any;
|
|
267
|
-
activator?:
|
|
269
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
268
270
|
openOnClick?: boolean | undefined;
|
|
269
271
|
openOnFocus?: boolean | undefined;
|
|
270
272
|
contentProps?: any;
|
|
@@ -341,6 +343,7 @@ declare const VMenu: {
|
|
|
341
343
|
maxWidth?: string | number | undefined;
|
|
342
344
|
minHeight?: string | number | undefined;
|
|
343
345
|
minWidth?: string | number | undefined;
|
|
346
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
344
347
|
class?: any;
|
|
345
348
|
onAfterLeave?: (() => any) | undefined;
|
|
346
349
|
$children?: vue.VNodeChild | {
|
|
@@ -410,7 +413,7 @@ declare const VMenu: {
|
|
|
410
413
|
[key: string]: any;
|
|
411
414
|
}>) => void)[] | undefined;
|
|
412
415
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
413
|
-
activator?:
|
|
416
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
414
417
|
"v-slot:activator"?: false | ((arg: {
|
|
415
418
|
isActive: boolean;
|
|
416
419
|
props: Record<string, any>;
|
|
@@ -477,10 +480,11 @@ declare const VMenu: {
|
|
|
477
480
|
maxWidth?: string | number | undefined;
|
|
478
481
|
minHeight?: string | number | undefined;
|
|
479
482
|
minWidth?: string | number | undefined;
|
|
483
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
480
484
|
class?: any;
|
|
481
485
|
theme?: string | undefined;
|
|
482
486
|
contentClass?: any;
|
|
483
|
-
activator?:
|
|
487
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
484
488
|
closeDelay?: string | number | undefined;
|
|
485
489
|
openDelay?: string | number | undefined;
|
|
486
490
|
openOnClick?: boolean | undefined;
|
|
@@ -522,6 +526,7 @@ declare const VMenu: {
|
|
|
522
526
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
523
527
|
}, {
|
|
524
528
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
529
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
525
530
|
animateClick: () => void;
|
|
526
531
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
527
532
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -623,10 +628,11 @@ declare const VMenu: {
|
|
|
623
628
|
maxWidth?: string | number | undefined;
|
|
624
629
|
minHeight?: string | number | undefined;
|
|
625
630
|
minWidth?: string | number | undefined;
|
|
631
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
626
632
|
class?: any;
|
|
627
633
|
theme?: string | undefined;
|
|
628
634
|
contentClass?: any;
|
|
629
|
-
activator?:
|
|
635
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
630
636
|
closeDelay?: string | number | undefined;
|
|
631
637
|
openDelay?: string | number | undefined;
|
|
632
638
|
openOnClick?: boolean | undefined;
|
|
@@ -668,12 +674,13 @@ declare const VMenu: {
|
|
|
668
674
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
669
675
|
} & vue.ShallowUnwrapRef<{
|
|
670
676
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
677
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
671
678
|
animateClick: () => void;
|
|
672
679
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
673
680
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
674
681
|
localTop: vue.ComputedRef<boolean>;
|
|
675
682
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
676
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "class" | "onAfterLeave" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "contentClass" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
683
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "target" | "class" | "onAfterLeave" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "contentClass" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
677
684
|
'update:modelValue': (value: boolean) => boolean;
|
|
678
685
|
}, string, {
|
|
679
686
|
location: Anchor;
|
|
@@ -772,10 +779,11 @@ declare const VMenu: {
|
|
|
772
779
|
maxWidth?: string | number | undefined;
|
|
773
780
|
minHeight?: string | number | undefined;
|
|
774
781
|
minWidth?: string | number | undefined;
|
|
782
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
775
783
|
class?: any;
|
|
776
784
|
theme?: string | undefined;
|
|
777
785
|
contentClass?: any;
|
|
778
|
-
activator?:
|
|
786
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
779
787
|
openOnClick?: boolean | undefined;
|
|
780
788
|
openOnFocus?: boolean | undefined;
|
|
781
789
|
contentProps?: any;
|
|
@@ -852,6 +860,7 @@ declare const VMenu: {
|
|
|
852
860
|
maxWidth?: string | number | undefined;
|
|
853
861
|
minHeight?: string | number | undefined;
|
|
854
862
|
minWidth?: string | number | undefined;
|
|
863
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
855
864
|
class?: any;
|
|
856
865
|
onAfterLeave?: (() => any) | undefined;
|
|
857
866
|
$children?: vue.VNodeChild | {
|
|
@@ -921,7 +930,7 @@ declare const VMenu: {
|
|
|
921
930
|
[key: string]: any;
|
|
922
931
|
}>) => void)[] | undefined;
|
|
923
932
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
924
|
-
activator?:
|
|
933
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
925
934
|
"v-slot:activator"?: false | ((arg: {
|
|
926
935
|
isActive: boolean;
|
|
927
936
|
props: Record<string, any>;
|
|
@@ -988,10 +997,11 @@ declare const VMenu: {
|
|
|
988
997
|
maxWidth?: string | number | undefined;
|
|
989
998
|
minHeight?: string | number | undefined;
|
|
990
999
|
minWidth?: string | number | undefined;
|
|
1000
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
991
1001
|
class?: any;
|
|
992
1002
|
theme?: string | undefined;
|
|
993
1003
|
contentClass?: any;
|
|
994
|
-
activator?:
|
|
1004
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
995
1005
|
closeDelay?: string | number | undefined;
|
|
996
1006
|
openDelay?: string | number | undefined;
|
|
997
1007
|
openOnClick?: boolean | undefined;
|
|
@@ -1033,6 +1043,7 @@ declare const VMenu: {
|
|
|
1033
1043
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
1034
1044
|
}, {
|
|
1035
1045
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
1046
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
1036
1047
|
animateClick: () => void;
|
|
1037
1048
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
1038
1049
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -1134,10 +1145,11 @@ declare const VMenu: {
|
|
|
1134
1145
|
maxWidth?: string | number | undefined;
|
|
1135
1146
|
minHeight?: string | number | undefined;
|
|
1136
1147
|
minWidth?: string | number | undefined;
|
|
1148
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
1137
1149
|
class?: any;
|
|
1138
1150
|
theme?: string | undefined;
|
|
1139
1151
|
contentClass?: any;
|
|
1140
|
-
activator?:
|
|
1152
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
1141
1153
|
closeDelay?: string | number | undefined;
|
|
1142
1154
|
openDelay?: string | number | undefined;
|
|
1143
1155
|
openOnClick?: boolean | undefined;
|
|
@@ -1179,12 +1191,13 @@ declare const VMenu: {
|
|
|
1179
1191
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
1180
1192
|
} & vue.ShallowUnwrapRef<{
|
|
1181
1193
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
1194
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
1182
1195
|
animateClick: () => void;
|
|
1183
1196
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
1184
1197
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
1185
1198
|
localTop: vue.ComputedRef<boolean>;
|
|
1186
1199
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
1187
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "class" | "onAfterLeave" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "contentClass" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties & {};
|
|
1200
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "target" | "class" | "onAfterLeave" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "contentClass" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties & {};
|
|
1188
1201
|
__isFragment?: undefined;
|
|
1189
1202
|
__isTeleport?: undefined;
|
|
1190
1203
|
__isSuspense?: undefined;
|
|
@@ -1224,10 +1237,11 @@ declare const VMenu: {
|
|
|
1224
1237
|
maxWidth?: string | number | undefined;
|
|
1225
1238
|
minHeight?: string | number | undefined;
|
|
1226
1239
|
minWidth?: string | number | undefined;
|
|
1240
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
1227
1241
|
class?: any;
|
|
1228
1242
|
theme?: string | undefined;
|
|
1229
1243
|
contentClass?: any;
|
|
1230
|
-
activator?:
|
|
1244
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
1231
1245
|
openOnClick?: boolean | undefined;
|
|
1232
1246
|
openOnFocus?: boolean | undefined;
|
|
1233
1247
|
contentProps?: any;
|
|
@@ -1304,6 +1318,7 @@ declare const VMenu: {
|
|
|
1304
1318
|
maxWidth?: string | number | undefined;
|
|
1305
1319
|
minHeight?: string | number | undefined;
|
|
1306
1320
|
minWidth?: string | number | undefined;
|
|
1321
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
1307
1322
|
class?: any;
|
|
1308
1323
|
onAfterLeave?: (() => any) | undefined;
|
|
1309
1324
|
$children?: vue.VNodeChild | {
|
|
@@ -1373,7 +1388,7 @@ declare const VMenu: {
|
|
|
1373
1388
|
[key: string]: any;
|
|
1374
1389
|
}>) => void)[] | undefined;
|
|
1375
1390
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1376
|
-
activator?:
|
|
1391
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
1377
1392
|
"v-slot:activator"?: false | ((arg: {
|
|
1378
1393
|
isActive: boolean;
|
|
1379
1394
|
props: Record<string, any>;
|
|
@@ -1440,10 +1455,11 @@ declare const VMenu: {
|
|
|
1440
1455
|
maxWidth?: string | number | undefined;
|
|
1441
1456
|
minHeight?: string | number | undefined;
|
|
1442
1457
|
minWidth?: string | number | undefined;
|
|
1458
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
1443
1459
|
class?: any;
|
|
1444
1460
|
theme?: string | undefined;
|
|
1445
1461
|
contentClass?: any;
|
|
1446
|
-
activator?:
|
|
1462
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
1447
1463
|
closeDelay?: string | number | undefined;
|
|
1448
1464
|
openDelay?: string | number | undefined;
|
|
1449
1465
|
openOnClick?: boolean | undefined;
|
|
@@ -1485,6 +1501,7 @@ declare const VMenu: {
|
|
|
1485
1501
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
1486
1502
|
}, {
|
|
1487
1503
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
1504
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
1488
1505
|
animateClick: () => void;
|
|
1489
1506
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
1490
1507
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
@@ -1586,10 +1603,11 @@ declare const VMenu: {
|
|
|
1586
1603
|
maxWidth?: string | number | undefined;
|
|
1587
1604
|
minHeight?: string | number | undefined;
|
|
1588
1605
|
minWidth?: string | number | undefined;
|
|
1606
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
1589
1607
|
class?: any;
|
|
1590
1608
|
theme?: string | undefined;
|
|
1591
1609
|
contentClass?: any;
|
|
1592
|
-
activator?:
|
|
1610
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
1593
1611
|
closeDelay?: string | number | undefined;
|
|
1594
1612
|
openDelay?: string | number | undefined;
|
|
1595
1613
|
openOnClick?: boolean | undefined;
|
|
@@ -1631,12 +1649,13 @@ declare const VMenu: {
|
|
|
1631
1649
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
1632
1650
|
} & vue.ShallowUnwrapRef<{
|
|
1633
1651
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
|
1652
|
+
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
|
1634
1653
|
animateClick: () => void;
|
|
1635
1654
|
contentEl: vue.Ref<HTMLElement | undefined>;
|
|
1636
1655
|
globalTop: Readonly<vue.Ref<boolean>>;
|
|
1637
1656
|
localTop: vue.ComputedRef<boolean>;
|
|
1638
1657
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
1639
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "class" | "onAfterLeave" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "contentClass" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1658
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "target" | "class" | "onAfterLeave" | "$children" | "ref" | "ref_for" | "ref_key" | "theme" | "v-slot:default" | "v-slots" | "contentClass" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1640
1659
|
'update:modelValue': (value: boolean) => boolean;
|
|
1641
1660
|
}, string, {
|
|
1642
1661
|
location: Anchor;
|
|
@@ -1721,13 +1740,14 @@ declare const VMenu: {
|
|
|
1721
1740
|
type: vue.PropType<vue.StyleValue>;
|
|
1722
1741
|
default: null;
|
|
1723
1742
|
};
|
|
1743
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
1724
1744
|
eager: BooleanConstructor;
|
|
1725
1745
|
disabled: BooleanConstructor;
|
|
1726
1746
|
class: vue.PropType<any>;
|
|
1727
1747
|
theme: StringConstructor;
|
|
1728
1748
|
contentClass: null;
|
|
1729
1749
|
modelValue: BooleanConstructor;
|
|
1730
|
-
activator: vue.PropType<
|
|
1750
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
1731
1751
|
locationStrategy: Omit<{
|
|
1732
1752
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
1733
1753
|
updateLocation: (e: Event) => void;
|
|
@@ -1834,13 +1854,14 @@ declare const VMenu: {
|
|
|
1834
1854
|
type: vue.PropType<vue.StyleValue>;
|
|
1835
1855
|
default: null;
|
|
1836
1856
|
};
|
|
1857
|
+
target: vue.PropType<Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined>;
|
|
1837
1858
|
eager: BooleanConstructor;
|
|
1838
1859
|
disabled: BooleanConstructor;
|
|
1839
1860
|
class: vue.PropType<any>;
|
|
1840
1861
|
theme: StringConstructor;
|
|
1841
1862
|
contentClass: null;
|
|
1842
1863
|
modelValue: BooleanConstructor;
|
|
1843
|
-
activator: vue.PropType<
|
|
1864
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
|
1844
1865
|
locationStrategy: Omit<{
|
|
1845
1866
|
type: vue.PropType<"connected" | "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
1846
1867
|
updateLocation: (e: Event) => void;
|
|
@@ -10,7 +10,7 @@ import { makeBorderProps, useBorder } from "../../composables/border.mjs";
|
|
|
10
10
|
import { useBackgroundColor } from "../../composables/color.mjs";
|
|
11
11
|
import { makeComponentProps } from "../../composables/component.mjs";
|
|
12
12
|
import { provideDefaults } from "../../composables/defaults.mjs";
|
|
13
|
-
import { useDisplay } from "../../composables/display.mjs";
|
|
13
|
+
import { makeDisplayProps, useDisplay } from "../../composables/display.mjs";
|
|
14
14
|
import { makeElevationProps, useElevation } from "../../composables/elevation.mjs";
|
|
15
15
|
import { makeLayoutItemProps, useLayoutItem } from "../../composables/layout.mjs";
|
|
16
16
|
import { useProxiedModel } from "../../composables/proxiedModel.mjs";
|
|
@@ -61,6 +61,7 @@ export const makeVNavigationDrawerProps = propsFactory({
|
|
|
61
61
|
sticky: Boolean,
|
|
62
62
|
...makeBorderProps(),
|
|
63
63
|
...makeComponentProps(),
|
|
64
|
+
...makeDisplayProps(),
|
|
64
65
|
...makeElevationProps(),
|
|
65
66
|
...makeLayoutItemProps(),
|
|
66
67
|
...makeRoundedProps(),
|
|
@@ -99,8 +100,9 @@ export const VNavigationDrawer = genericComponent()({
|
|
|
99
100
|
elevationClasses
|
|
100
101
|
} = useElevation(props);
|
|
101
102
|
const {
|
|
103
|
+
displayClasses,
|
|
102
104
|
mobile
|
|
103
|
-
} = useDisplay();
|
|
105
|
+
} = useDisplay(props);
|
|
104
106
|
const {
|
|
105
107
|
roundedClasses
|
|
106
108
|
} = useRounded(props);
|
|
@@ -211,7 +213,7 @@ export const VNavigationDrawer = genericComponent()({
|
|
|
211
213
|
'v-navigation-drawer--temporary': isTemporary.value,
|
|
212
214
|
'v-navigation-drawer--active': isActive.value,
|
|
213
215
|
'v-navigation-drawer--sticky': isSticky.value
|
|
214
|
-
}, themeClasses.value, backgroundColorClasses.value, borderClasses.value, elevationClasses.value, roundedClasses.value, props.class],
|
|
216
|
+
}, themeClasses.value, backgroundColorClasses.value, borderClasses.value, displayClasses.value, elevationClasses.value, roundedClasses.value, props.class],
|
|
215
217
|
"style": [backgroundColorStyles.value, layoutItemStyles.value, dragStyles.value, ssrBootStyles.value, stickyStyles.value, props.style]
|
|
216
218
|
}, scopeId, attrs), {
|
|
217
219
|
default: () => [hasImage && _createVNode("div", {
|