@vuetify/nightly 3.7.15-master.2025-03-08 → 3.7.15-master.2025-03-11
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/CHANGELOG.md +16 -3
- package/dist/json/attributes.json +3084 -3084
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +144 -144
- package/dist/json/web-types.json +5593 -5582
- package/dist/vuetify-labs.css +4571 -4571
- package/dist/vuetify-labs.d.ts +90 -24
- package/dist/vuetify-labs.esm.js +13 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +13 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3823 -3823
- package/dist/vuetify.d.ts +144 -78
- package/dist/vuetify.esm.js +13 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +21 -6
- package/lib/components/VCombobox/index.d.mts +21 -6
- package/lib/components/VDialog/index.d.mts +21 -6
- package/lib/components/VMenu/index.d.mts +21 -6
- package/lib/components/VOverlay/VOverlay.mjs +10 -1
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.mts +6 -0
- package/lib/components/VSelect/index.d.mts +21 -6
- package/lib/components/VSnackbar/index.d.mts +21 -6
- package/lib/components/VTooltip/index.d.mts +21 -6
- package/lib/components/index.d.mts +90 -24
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +54 -54
- package/lib/labs/VSnackbarQueue/index.d.mts +21 -6
- package/lib/labs/components.d.mts +21 -6
- package/package.json +1 -1
package/lib/entry-bundler.mjs
CHANGED
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
16
16
|
...options
|
17
17
|
});
|
18
18
|
};
|
19
|
-
export const version = "3.7.15-master.2025-03-
|
19
|
+
export const version = "3.7.15-master.2025-03-11";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.mjs";
|
package/lib/framework.mjs
CHANGED
package/lib/index.d.mts
CHANGED
@@ -486,25 +486,24 @@ declare module 'vue' {
|
|
486
486
|
$children?: VNodeChild
|
487
487
|
}
|
488
488
|
export interface GlobalComponents {
|
489
|
-
VApp: typeof import('vuetify/components')['VApp']
|
490
489
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
491
490
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
492
491
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
493
|
-
|
492
|
+
VApp: typeof import('vuetify/components')['VApp']
|
494
493
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
495
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
496
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
497
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
498
494
|
VBanner: typeof import('vuetify/components')['VBanner']
|
499
495
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
500
496
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
497
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
498
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
501
499
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
502
500
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
503
501
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
504
502
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
505
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
506
503
|
VBtn: typeof import('vuetify/components')['VBtn']
|
507
|
-
|
504
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
505
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
506
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
508
507
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
509
508
|
VCard: typeof import('vuetify/components')['VCard']
|
510
509
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
@@ -512,13 +511,23 @@ declare module 'vue' {
|
|
512
511
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
513
512
|
VCardText: typeof import('vuetify/components')['VCardText']
|
514
513
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
515
|
-
|
516
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
514
|
+
VChip: typeof import('vuetify/components')['VChip']
|
517
515
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
518
|
-
VCode: typeof import('vuetify/components')['VCode']
|
519
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
520
516
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
521
517
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
518
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
519
|
+
VCode: typeof import('vuetify/components')['VCode']
|
520
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
521
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
522
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
523
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
524
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
525
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
526
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
527
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
528
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
529
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
530
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
522
531
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
523
532
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
524
533
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -526,37 +535,31 @@ declare module 'vue' {
|
|
526
535
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
527
536
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
528
537
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
529
|
-
|
538
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
530
539
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
531
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
532
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
533
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
534
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
535
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
536
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
537
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
538
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
539
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
540
|
-
VFab: typeof import('vuetify/components')['VFab']
|
541
540
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
542
541
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
543
542
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
544
543
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
545
|
-
|
544
|
+
VFab: typeof import('vuetify/components')['VFab']
|
545
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
546
546
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
547
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
547
548
|
VField: typeof import('vuetify/components')['VField']
|
548
549
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
549
|
-
|
550
|
+
VImg: typeof import('vuetify/components')['VImg']
|
551
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
550
552
|
VIcon: typeof import('vuetify/components')['VIcon']
|
551
553
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
552
554
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
553
555
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
554
556
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
555
|
-
VImg: typeof import('vuetify/components')['VImg']
|
556
557
|
VInput: typeof import('vuetify/components')['VInput']
|
558
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
557
559
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
558
560
|
VItem: typeof import('vuetify/components')['VItem']
|
559
|
-
|
561
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
562
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
560
563
|
VList: typeof import('vuetify/components')['VList']
|
561
564
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
562
565
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -566,49 +569,46 @@ declare module 'vue' {
|
|
566
569
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
567
570
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
568
571
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
569
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
570
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
571
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
572
572
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
573
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
574
|
-
VMain: typeof import('vuetify/components')['VMain']
|
575
573
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
576
|
-
|
577
|
-
|
578
|
-
VRating: typeof import('vuetify/components')['VRating']
|
574
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
575
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
579
576
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
577
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
580
578
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
579
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
580
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
581
|
+
VRating: typeof import('vuetify/components')['VRating']
|
581
582
|
VSelect: typeof import('vuetify/components')['VSelect']
|
582
583
|
VSheet: typeof import('vuetify/components')['VSheet']
|
583
|
-
|
584
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
584
585
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
586
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
587
|
+
VMain: typeof import('vuetify/components')['VMain']
|
585
588
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
586
589
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
587
|
-
|
588
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
590
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
589
591
|
VStepper: typeof import('vuetify/components')['VStepper']
|
590
592
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
591
593
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
592
594
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
593
595
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
594
596
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
595
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
596
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
597
597
|
VTab: typeof import('vuetify/components')['VTab']
|
598
598
|
VTabs: typeof import('vuetify/components')['VTabs']
|
599
599
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
600
600
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
601
|
-
|
602
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
601
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
603
602
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
604
603
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
605
604
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
606
605
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
607
606
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
608
607
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
609
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
610
608
|
VWindow: typeof import('vuetify/components')['VWindow']
|
611
609
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
610
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
611
|
+
VTable: typeof import('vuetify/components')['VTable']
|
612
612
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
613
613
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
614
614
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
@@ -620,18 +620,17 @@ declare module 'vue' {
|
|
620
620
|
VHover: typeof import('vuetify/components')['VHover']
|
621
621
|
VLayout: typeof import('vuetify/components')['VLayout']
|
622
622
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
623
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
624
623
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
625
624
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
626
625
|
VParallax: typeof import('vuetify/components')['VParallax']
|
627
626
|
VRadio: typeof import('vuetify/components')['VRadio']
|
628
627
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
628
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
629
629
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
630
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
630
631
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
631
|
-
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
632
632
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
633
|
-
|
634
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
633
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
635
634
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
636
635
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
637
636
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -648,8 +647,10 @@ declare module 'vue' {
|
|
648
647
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
649
648
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
650
649
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
651
|
-
|
652
|
-
|
650
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
651
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
652
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
653
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
653
654
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
654
655
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
655
656
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
@@ -658,18 +659,17 @@ declare module 'vue' {
|
|
658
659
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
659
660
|
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
660
661
|
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
662
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
663
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
661
664
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
662
665
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
663
666
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
664
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
665
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
666
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
667
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
668
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
669
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
670
667
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
671
668
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
672
669
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
670
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
671
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
672
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
673
673
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
674
674
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
675
675
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
@@ -312,6 +312,7 @@ declare const VSnackbar: {
|
|
312
312
|
}) => vue.VNodeChild) | undefined;
|
313
313
|
onAfterEnter?: (() => any) | undefined;
|
314
314
|
onAfterLeave?: (() => any) | undefined;
|
315
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
315
316
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
316
317
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
317
318
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -394,6 +395,7 @@ declare const VSnackbar: {
|
|
394
395
|
} & {
|
395
396
|
onAfterEnter?: (() => any) | undefined;
|
396
397
|
onAfterLeave?: (() => any) | undefined;
|
398
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
397
399
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
398
400
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
399
401
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -415,7 +417,7 @@ declare const VSnackbar: {
|
|
415
417
|
}>;
|
416
418
|
$root: vue.ComponentPublicInstance | null;
|
417
419
|
$parent: vue.ComponentPublicInstance | null;
|
418
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
420
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
419
421
|
$el: any;
|
420
422
|
$options: vue.ComponentOptionsBase<{
|
421
423
|
absolute: boolean;
|
@@ -497,6 +499,7 @@ declare const VSnackbar: {
|
|
497
499
|
} & {
|
498
500
|
onAfterEnter?: (() => any) | undefined;
|
499
501
|
onAfterLeave?: (() => any) | undefined;
|
502
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
500
503
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
501
504
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
502
505
|
}, {
|
@@ -511,6 +514,7 @@ declare const VSnackbar: {
|
|
511
514
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
512
515
|
'click:outside': (e: MouseEvent) => true;
|
513
516
|
'update:modelValue': (value: boolean) => true;
|
517
|
+
keydown: (e: KeyboardEvent) => true;
|
514
518
|
afterEnter: () => true;
|
515
519
|
afterLeave: () => true;
|
516
520
|
}, string, {
|
@@ -649,6 +653,7 @@ declare const VSnackbar: {
|
|
649
653
|
} & {
|
650
654
|
onAfterEnter?: (() => any) | undefined;
|
651
655
|
onAfterLeave?: (() => any) | undefined;
|
656
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
652
657
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
653
658
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
654
659
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -660,7 +665,7 @@ declare const VSnackbar: {
|
|
660
665
|
globalTop: Readonly<Ref<boolean>>;
|
661
666
|
localTop: vue.ComputedRef<boolean>;
|
662
667
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
663
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
668
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
664
669
|
_allExposed: {
|
665
670
|
activatorEl: Ref<HTMLElement | undefined>;
|
666
671
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -994,6 +999,7 @@ declare const VSnackbar: {
|
|
994
999
|
}) => vue.VNodeChild) | undefined;
|
995
1000
|
onAfterEnter?: (() => any) | undefined;
|
996
1001
|
onAfterLeave?: (() => any) | undefined;
|
1002
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
997
1003
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
998
1004
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
999
1005
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -1076,6 +1082,7 @@ declare const VSnackbar: {
|
|
1076
1082
|
} & {
|
1077
1083
|
onAfterEnter?: (() => any) | undefined;
|
1078
1084
|
onAfterLeave?: (() => any) | undefined;
|
1085
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1079
1086
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1080
1087
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1081
1088
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -1097,7 +1104,7 @@ declare const VSnackbar: {
|
|
1097
1104
|
}>;
|
1098
1105
|
$root: vue.ComponentPublicInstance | null;
|
1099
1106
|
$parent: vue.ComponentPublicInstance | null;
|
1100
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1107
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1101
1108
|
$el: any;
|
1102
1109
|
$options: vue.ComponentOptionsBase<{
|
1103
1110
|
absolute: boolean;
|
@@ -1179,6 +1186,7 @@ declare const VSnackbar: {
|
|
1179
1186
|
} & {
|
1180
1187
|
onAfterEnter?: (() => any) | undefined;
|
1181
1188
|
onAfterLeave?: (() => any) | undefined;
|
1189
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1182
1190
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1183
1191
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1184
1192
|
}, {
|
@@ -1193,6 +1201,7 @@ declare const VSnackbar: {
|
|
1193
1201
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
1194
1202
|
'click:outside': (e: MouseEvent) => true;
|
1195
1203
|
'update:modelValue': (value: boolean) => true;
|
1204
|
+
keydown: (e: KeyboardEvent) => true;
|
1196
1205
|
afterEnter: () => true;
|
1197
1206
|
afterLeave: () => true;
|
1198
1207
|
}, string, {
|
@@ -1331,6 +1340,7 @@ declare const VSnackbar: {
|
|
1331
1340
|
} & {
|
1332
1341
|
onAfterEnter?: (() => any) | undefined;
|
1333
1342
|
onAfterLeave?: (() => any) | undefined;
|
1343
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1334
1344
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1335
1345
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1336
1346
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -1342,7 +1352,7 @@ declare const VSnackbar: {
|
|
1342
1352
|
globalTop: Readonly<Ref<boolean>>;
|
1343
1353
|
localTop: vue.ComputedRef<boolean>;
|
1344
1354
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
1345
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
1355
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
1346
1356
|
_allExposed: {
|
1347
1357
|
activatorEl: Ref<HTMLElement | undefined>;
|
1348
1358
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -1576,6 +1586,7 @@ declare const VSnackbar: {
|
|
1576
1586
|
}) => vue.VNodeChild) | undefined;
|
1577
1587
|
onAfterEnter?: (() => any) | undefined;
|
1578
1588
|
onAfterLeave?: (() => any) | undefined;
|
1589
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1579
1590
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1580
1591
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1581
1592
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -1658,6 +1669,7 @@ declare const VSnackbar: {
|
|
1658
1669
|
} & {
|
1659
1670
|
onAfterEnter?: (() => any) | undefined;
|
1660
1671
|
onAfterLeave?: (() => any) | undefined;
|
1672
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1661
1673
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1662
1674
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1663
1675
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -1679,7 +1691,7 @@ declare const VSnackbar: {
|
|
1679
1691
|
}>;
|
1680
1692
|
$root: vue.ComponentPublicInstance | null;
|
1681
1693
|
$parent: vue.ComponentPublicInstance | null;
|
1682
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1694
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1683
1695
|
$el: any;
|
1684
1696
|
$options: vue.ComponentOptionsBase<{
|
1685
1697
|
absolute: boolean;
|
@@ -1761,6 +1773,7 @@ declare const VSnackbar: {
|
|
1761
1773
|
} & {
|
1762
1774
|
onAfterEnter?: (() => any) | undefined;
|
1763
1775
|
onAfterLeave?: (() => any) | undefined;
|
1776
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1764
1777
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1765
1778
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1766
1779
|
}, {
|
@@ -1775,6 +1788,7 @@ declare const VSnackbar: {
|
|
1775
1788
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
1776
1789
|
'click:outside': (e: MouseEvent) => true;
|
1777
1790
|
'update:modelValue': (value: boolean) => true;
|
1791
|
+
keydown: (e: KeyboardEvent) => true;
|
1778
1792
|
afterEnter: () => true;
|
1779
1793
|
afterLeave: () => true;
|
1780
1794
|
}, string, {
|
@@ -1913,6 +1927,7 @@ declare const VSnackbar: {
|
|
1913
1927
|
} & {
|
1914
1928
|
onAfterEnter?: (() => any) | undefined;
|
1915
1929
|
onAfterLeave?: (() => any) | undefined;
|
1930
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
1916
1931
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1917
1932
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
1918
1933
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -1924,7 +1939,7 @@ declare const VSnackbar: {
|
|
1924
1939
|
globalTop: Readonly<Ref<boolean>>;
|
1925
1940
|
localTop: vue.ComputedRef<boolean>;
|
1926
1941
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
1927
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
1942
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
1928
1943
|
_allExposed: {
|
1929
1944
|
activatorEl: Ref<HTMLElement | undefined>;
|
1930
1945
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -12378,6 +12378,7 @@ declare const VSnackbar: {
|
|
12378
12378
|
}) => vue.VNodeChild) | undefined;
|
12379
12379
|
onAfterEnter?: (() => any) | undefined;
|
12380
12380
|
onAfterLeave?: (() => any) | undefined;
|
12381
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
12381
12382
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
12382
12383
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
12383
12384
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -12460,6 +12461,7 @@ declare const VSnackbar: {
|
|
12460
12461
|
} & {
|
12461
12462
|
onAfterEnter?: (() => any) | undefined;
|
12462
12463
|
onAfterLeave?: (() => any) | undefined;
|
12464
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
12463
12465
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
12464
12466
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
12465
12467
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -12481,7 +12483,7 @@ declare const VSnackbar: {
|
|
12481
12483
|
}>;
|
12482
12484
|
$root: vue.ComponentPublicInstance | null;
|
12483
12485
|
$parent: vue.ComponentPublicInstance | null;
|
12484
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
12486
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
12485
12487
|
$el: any;
|
12486
12488
|
$options: vue.ComponentOptionsBase<{
|
12487
12489
|
absolute: boolean;
|
@@ -12563,6 +12565,7 @@ declare const VSnackbar: {
|
|
12563
12565
|
} & {
|
12564
12566
|
onAfterEnter?: (() => any) | undefined;
|
12565
12567
|
onAfterLeave?: (() => any) | undefined;
|
12568
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
12566
12569
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
12567
12570
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
12568
12571
|
}, {
|
@@ -12577,6 +12580,7 @@ declare const VSnackbar: {
|
|
12577
12580
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
12578
12581
|
'click:outside': (e: MouseEvent) => true;
|
12579
12582
|
'update:modelValue': (value: boolean) => true;
|
12583
|
+
keydown: (e: KeyboardEvent) => true;
|
12580
12584
|
afterEnter: () => true;
|
12581
12585
|
afterLeave: () => true;
|
12582
12586
|
}, string, {
|
@@ -12715,6 +12719,7 @@ declare const VSnackbar: {
|
|
12715
12719
|
} & {
|
12716
12720
|
onAfterEnter?: (() => any) | undefined;
|
12717
12721
|
onAfterLeave?: (() => any) | undefined;
|
12722
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
12718
12723
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
12719
12724
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
12720
12725
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -12726,7 +12731,7 @@ declare const VSnackbar: {
|
|
12726
12731
|
globalTop: Readonly<Ref<boolean>>;
|
12727
12732
|
localTop: vue.ComputedRef<boolean>;
|
12728
12733
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
12729
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
12734
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
12730
12735
|
_allExposed: {
|
12731
12736
|
activatorEl: Ref<HTMLElement | undefined>;
|
12732
12737
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -13060,6 +13065,7 @@ declare const VSnackbar: {
|
|
13060
13065
|
}) => vue.VNodeChild) | undefined;
|
13061
13066
|
onAfterEnter?: (() => any) | undefined;
|
13062
13067
|
onAfterLeave?: (() => any) | undefined;
|
13068
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
13063
13069
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
13064
13070
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
13065
13071
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -13142,6 +13148,7 @@ declare const VSnackbar: {
|
|
13142
13148
|
} & {
|
13143
13149
|
onAfterEnter?: (() => any) | undefined;
|
13144
13150
|
onAfterLeave?: (() => any) | undefined;
|
13151
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
13145
13152
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
13146
13153
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
13147
13154
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -13163,7 +13170,7 @@ declare const VSnackbar: {
|
|
13163
13170
|
}>;
|
13164
13171
|
$root: vue.ComponentPublicInstance | null;
|
13165
13172
|
$parent: vue.ComponentPublicInstance | null;
|
13166
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
13173
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
13167
13174
|
$el: any;
|
13168
13175
|
$options: vue.ComponentOptionsBase<{
|
13169
13176
|
absolute: boolean;
|
@@ -13245,6 +13252,7 @@ declare const VSnackbar: {
|
|
13245
13252
|
} & {
|
13246
13253
|
onAfterEnter?: (() => any) | undefined;
|
13247
13254
|
onAfterLeave?: (() => any) | undefined;
|
13255
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
13248
13256
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
13249
13257
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
13250
13258
|
}, {
|
@@ -13259,6 +13267,7 @@ declare const VSnackbar: {
|
|
13259
13267
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
13260
13268
|
'click:outside': (e: MouseEvent) => true;
|
13261
13269
|
'update:modelValue': (value: boolean) => true;
|
13270
|
+
keydown: (e: KeyboardEvent) => true;
|
13262
13271
|
afterEnter: () => true;
|
13263
13272
|
afterLeave: () => true;
|
13264
13273
|
}, string, {
|
@@ -13397,6 +13406,7 @@ declare const VSnackbar: {
|
|
13397
13406
|
} & {
|
13398
13407
|
onAfterEnter?: (() => any) | undefined;
|
13399
13408
|
onAfterLeave?: (() => any) | undefined;
|
13409
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
13400
13410
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
13401
13411
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
13402
13412
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -13408,7 +13418,7 @@ declare const VSnackbar: {
|
|
13408
13418
|
globalTop: Readonly<Ref<boolean>>;
|
13409
13419
|
localTop: vue.ComputedRef<boolean>;
|
13410
13420
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
13411
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
13421
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
13412
13422
|
_allExposed: {
|
13413
13423
|
activatorEl: Ref<HTMLElement | undefined>;
|
13414
13424
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -13642,6 +13652,7 @@ declare const VSnackbar: {
|
|
13642
13652
|
}) => vue.VNodeChild) | undefined;
|
13643
13653
|
onAfterEnter?: (() => any) | undefined;
|
13644
13654
|
onAfterLeave?: (() => any) | undefined;
|
13655
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
13645
13656
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
13646
13657
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
13647
13658
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
@@ -13724,6 +13735,7 @@ declare const VSnackbar: {
|
|
13724
13735
|
} & {
|
13725
13736
|
onAfterEnter?: (() => any) | undefined;
|
13726
13737
|
onAfterLeave?: (() => any) | undefined;
|
13738
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
13727
13739
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
13728
13740
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
13729
13741
|
}, "absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack">;
|
@@ -13745,7 +13757,7 @@ declare const VSnackbar: {
|
|
13745
13757
|
}>;
|
13746
13758
|
$root: vue.ComponentPublicInstance | null;
|
13747
13759
|
$parent: vue.ComponentPublicInstance | null;
|
13748
|
-
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
13760
|
+
$emit: ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
13749
13761
|
$el: any;
|
13750
13762
|
$options: vue.ComponentOptionsBase<{
|
13751
13763
|
absolute: boolean;
|
@@ -13827,6 +13839,7 @@ declare const VSnackbar: {
|
|
13827
13839
|
} & {
|
13828
13840
|
onAfterEnter?: (() => any) | undefined;
|
13829
13841
|
onAfterLeave?: (() => any) | undefined;
|
13842
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
13830
13843
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
13831
13844
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
13832
13845
|
}, {
|
@@ -13841,6 +13854,7 @@ declare const VSnackbar: {
|
|
13841
13854
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
13842
13855
|
'click:outside': (e: MouseEvent) => true;
|
13843
13856
|
'update:modelValue': (value: boolean) => true;
|
13857
|
+
keydown: (e: KeyboardEvent) => true;
|
13844
13858
|
afterEnter: () => true;
|
13845
13859
|
afterLeave: () => true;
|
13846
13860
|
}, string, {
|
@@ -13979,6 +13993,7 @@ declare const VSnackbar: {
|
|
13979
13993
|
} & {
|
13980
13994
|
onAfterEnter?: (() => any) | undefined;
|
13981
13995
|
onAfterLeave?: (() => any) | undefined;
|
13996
|
+
onKeydown?: ((e: KeyboardEvent) => any) | undefined;
|
13982
13997
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
13983
13998
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
13984
13999
|
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
@@ -13990,7 +14005,7 @@ declare const VSnackbar: {
|
|
13990
14005
|
globalTop: Readonly<Ref<boolean>>;
|
13991
14006
|
localTop: vue.ComputedRef<boolean>;
|
13992
14007
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
13993
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
14008
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
13994
14009
|
_allExposed: {
|
13995
14010
|
activatorEl: Ref<HTMLElement | undefined>;
|
13996
14011
|
scrimEl: Ref<HTMLElement | undefined>;
|