@vuetify/nightly 3.7.0-master.2024-08-16 → 3.7.0-master.2024-08-21
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 +169 -169
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +130 -130
- package/dist/json/web-types.json +210 -210
- package/dist/vuetify-labs.css +2226 -2226
- package/dist/vuetify-labs.d.ts +5 -2
- package/dist/vuetify-labs.esm.js +3 -3
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +3 -3
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2018 -2018
- package/dist/vuetify.d.ts +82 -88
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +3 -3
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +4 -1
- package/lib/blueprints/md1.d.mts +4 -1
- package/lib/blueprints/md2.d.mts +4 -1
- package/lib/blueprints/md3.d.mts +4 -1
- package/lib/components/VAlert/index.d.mts +4 -1
- package/lib/components/VAppBar/index.d.mts +4 -1
- package/lib/components/VAutocomplete/index.d.mts +4 -1
- package/lib/components/VAvatar/index.d.mts +4 -1
- package/lib/components/VBadge/index.d.mts +4 -1
- package/lib/components/VBanner/index.d.mts +4 -1
- package/lib/components/VBreadcrumbs/index.d.mts +4 -1
- package/lib/components/VBtn/index.d.mts +4 -1
- package/lib/components/VCard/index.d.mts +4 -1
- package/lib/components/VCarousel/index.d.mts +4 -1
- package/lib/components/VCheckbox/index.d.mts +4 -1
- package/lib/components/VChip/index.d.mts +4 -1
- package/lib/components/VChipGroup/index.d.mts +4 -1
- package/lib/components/VCombobox/index.d.mts +4 -1
- package/lib/components/VDataTable/index.d.mts +4 -1
- package/lib/components/VDatePicker/index.d.mts +4 -1
- package/lib/components/VEmptyState/index.d.mts +4 -1
- package/lib/components/VExpansionPanel/index.d.mts +4 -1
- package/lib/components/VFab/index.d.mts +4 -1
- package/lib/components/VField/index.d.mts +4 -1
- package/lib/components/VFileInput/index.d.mts +4 -1
- package/lib/components/VIcon/index.d.mts +4 -1
- package/lib/components/VInput/index.d.mts +4 -1
- package/lib/components/VList/index.d.mts +4 -1
- package/lib/components/VPagination/index.d.mts +4 -1
- package/lib/components/VRadio/index.d.mts +4 -1
- package/lib/components/VRadioGroup/index.d.mts +4 -1
- package/lib/components/VRangeSlider/index.d.mts +4 -1
- package/lib/components/VRating/index.d.mts +4 -1
- package/lib/components/VSelect/index.d.mts +4 -1
- package/lib/components/VSelectionControl/index.d.mts +4 -1
- package/lib/components/VSelectionControlGroup/index.d.mts +4 -1
- package/lib/components/VSlideGroup/index.d.mts +4 -1
- package/lib/components/VSlider/index.d.mts +4 -1
- package/lib/components/VSwitch/index.d.mts +4 -1
- package/lib/components/VTabs/index.d.mts +4 -1
- package/lib/components/VTextField/index.d.mts +4 -1
- package/lib/components/VTextarea/index.d.mts +4 -1
- package/lib/components/VTimeline/index.d.mts +4 -1
- package/lib/components/VWindow/index.d.mts +4 -1
- package/lib/components/index.d.mts +4 -1
- package/lib/composables/icons.mjs.map +1 -1
- package/lib/composables/index.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/iconsets/fa-svg.d.mts +4 -1
- package/lib/iconsets/fa.d.mts +4 -1
- package/lib/iconsets/fa4.d.mts +4 -1
- package/lib/iconsets/md.d.mts +4 -1
- package/lib/iconsets/mdi-svg.d.mts +4 -1
- package/lib/iconsets/mdi.d.mts +4 -1
- package/lib/index.d.mts +82 -88
- package/lib/labs/VDateInput/index.d.mts +4 -1
- package/lib/labs/VNumberInput/index.d.mts +4 -1
- package/lib/labs/VStepperVertical/index.d.mts +4 -1
- package/lib/labs/VTreeview/index.d.mts +4 -1
- package/lib/labs/components.d.mts +4 -1
- package/package.json +1 -5
package/lib/index.d.mts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { Ref, ComponentPublicInstance, DeepReadonly,
|
2
|
+
import { Ref, ComponentPublicInstance, DeepReadonly, FunctionalComponent, PropType, CSSProperties, App } from 'vue';
|
3
3
|
|
4
4
|
interface LocaleMessages {
|
5
5
|
[key: string]: LocaleMessages | string;
|
@@ -175,6 +175,9 @@ interface ThemeInstance {
|
|
175
175
|
}
|
176
176
|
declare function useTheme(): ThemeInstance;
|
177
177
|
|
178
|
+
type JSXComponent<Props = any> = {
|
179
|
+
new (): ComponentPublicInstance<Props>;
|
180
|
+
} | FunctionalComponent<Props>;
|
178
181
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
179
182
|
declare const IconValue: PropType<IconValue>;
|
180
183
|
interface IconAliases {
|
@@ -446,14 +449,14 @@ declare namespace createVuetify {
|
|
446
449
|
}
|
447
450
|
declare const version: string;
|
448
451
|
|
449
|
-
export { type Blueprint, type DateInstance, DateModule, type DateOptions, type DefaultsInstance, type DisplayBreakpoint, type DisplayInstance, type DisplayThresholds, type GoToInstance, type IconAliases, type IconOptions, type IconProps, type IconSet, type LocaleInstance, type LocaleMessages, type LocaleOptions, type RtlInstance, type RtlOptions, type SubmitEventPromise, type ThemeDefinition, type ThemeInstance, type VuetifyOptions, createVuetify, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|
452
|
+
export { type Blueprint, type DateInstance, DateModule, type DateOptions, type DefaultsInstance, type DisplayBreakpoint, type DisplayInstance, type DisplayThresholds, type GoToInstance, type IconAliases, type IconOptions, type IconProps, type IconSet, type JSXComponent, type LocaleInstance, type LocaleMessages, type LocaleOptions, type RtlInstance, type RtlOptions, type SubmitEventPromise, type ThemeDefinition, type ThemeInstance, type VuetifyOptions, createVuetify, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|
450
453
|
|
451
454
|
/* eslint-disable local-rules/sort-imports */
|
452
455
|
|
453
456
|
import 'vue/jsx'
|
454
|
-
import type {
|
455
|
-
|
457
|
+
import type { UnwrapNestedRefs, VNodeChild } from 'vue'
|
456
458
|
|
459
|
+
// These already exist in scope in the final bundle
|
457
460
|
|
458
461
|
declare global {
|
459
462
|
namespace JSX {
|
@@ -462,51 +465,69 @@ declare global {
|
|
462
465
|
}
|
463
466
|
}
|
464
467
|
}
|
465
|
-
|
468
|
+
|
469
|
+
declare module 'vue' {
|
470
|
+
interface Vuetify {
|
471
|
+
defaults: DefaultsInstance
|
472
|
+
display: UnwrapNestedRefs<DisplayInstance>
|
473
|
+
theme: UnwrapNestedRefs<ThemeInstance>
|
474
|
+
icons: IconOptions
|
475
|
+
locale: UnwrapNestedRefs<LocaleInstance & RtlInstance>
|
476
|
+
date: DateInstance
|
477
|
+
}
|
478
|
+
|
479
|
+
export interface ComponentCustomProperties {
|
480
|
+
$vuetify: Vuetify
|
481
|
+
}
|
482
|
+
export interface HTMLAttributes {
|
483
|
+
$children?: VNodeChild
|
484
|
+
}
|
485
|
+
export interface SVGAttributes {
|
486
|
+
$children?: VNodeChild
|
487
|
+
}
|
488
|
+
export interface GlobalComponents {
|
466
489
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
467
490
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
468
491
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
469
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
470
492
|
VAlert: typeof import('vuetify/components')['VAlert']
|
471
493
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
494
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
495
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
496
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
472
497
|
VApp: typeof import('vuetify/components')['VApp']
|
498
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
499
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
473
500
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
474
|
-
|
501
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
475
502
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
476
503
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
477
504
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
505
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
506
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
507
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
508
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
509
|
+
VChip: typeof import('vuetify/components')['VChip']
|
483
510
|
VCard: typeof import('vuetify/components')['VCard']
|
484
511
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
485
512
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
486
513
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
487
514
|
VCardText: typeof import('vuetify/components')['VCardText']
|
488
515
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
489
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
490
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
491
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
492
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
493
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
494
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
495
|
-
VChip: typeof import('vuetify/components')['VChip']
|
496
516
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
497
517
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
518
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
519
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
520
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
502
521
|
VCode: typeof import('vuetify/components')['VCode']
|
522
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
523
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
524
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
503
525
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
504
526
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
505
527
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
506
528
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
507
529
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
508
530
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
509
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
510
531
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
511
532
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
512
533
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -514,14 +535,14 @@ interface _GlobalComponents {
|
|
514
535
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
515
536
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
516
537
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
517
|
-
|
538
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
518
539
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
519
540
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
520
541
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
521
542
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
522
543
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
544
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
523
545
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
524
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
525
546
|
VField: typeof import('vuetify/components')['VField']
|
526
547
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
527
548
|
VIcon: typeof import('vuetify/components')['VIcon']
|
@@ -529,14 +550,13 @@ interface _GlobalComponents {
|
|
529
550
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
530
551
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
531
552
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
532
|
-
|
533
|
-
|
553
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
554
|
+
VFab: typeof import('vuetify/components')['VFab']
|
534
555
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
535
|
-
VMain: typeof import('vuetify/components')['VMain']
|
536
556
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
537
557
|
VItem: typeof import('vuetify/components')['VItem']
|
538
|
-
|
539
|
-
|
558
|
+
VInput: typeof import('vuetify/components')['VInput']
|
559
|
+
VImg: typeof import('vuetify/components')['VImg']
|
540
560
|
VList: typeof import('vuetify/components')['VList']
|
541
561
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
542
562
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -546,63 +566,66 @@ interface _GlobalComponents {
|
|
546
566
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
547
567
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
548
568
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
549
|
-
|
569
|
+
VMain: typeof import('vuetify/components')['VMain']
|
570
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
571
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
550
572
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
551
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
552
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
553
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
554
573
|
VMenu: typeof import('vuetify/components')['VMenu']
|
574
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
575
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
576
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
577
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
578
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
555
579
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
556
580
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
557
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
558
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
559
581
|
VRating: typeof import('vuetify/components')['VRating']
|
560
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
561
582
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
562
|
-
|
563
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
583
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
564
584
|
VSheet: typeof import('vuetify/components')['VSheet']
|
585
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
565
586
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
566
|
-
|
587
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
588
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
589
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
567
590
|
VSlider: typeof import('vuetify/components')['VSlider']
|
568
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
569
591
|
VStepper: typeof import('vuetify/components')['VStepper']
|
570
592
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
571
593
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
572
594
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
573
595
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
574
596
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
575
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
576
597
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
598
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
599
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
600
|
+
VTable: typeof import('vuetify/components')['VTable']
|
577
601
|
VTextField: typeof import('vuetify/components')['VTextField']
|
578
602
|
VTab: typeof import('vuetify/components')['VTab']
|
579
603
|
VTabs: typeof import('vuetify/components')['VTabs']
|
580
604
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
581
605
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
582
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
583
|
-
VWindow: typeof import('vuetify/components')['VWindow']
|
584
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
585
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
586
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
587
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
588
606
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
589
607
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
590
608
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
609
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
610
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
611
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
612
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
613
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
614
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
591
615
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
592
616
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
593
|
-
|
617
|
+
VForm: typeof import('vuetify/components')['VForm']
|
594
618
|
VContainer: typeof import('vuetify/components')['VContainer']
|
595
619
|
VCol: typeof import('vuetify/components')['VCol']
|
596
620
|
VRow: typeof import('vuetify/components')['VRow']
|
597
621
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
598
|
-
VForm: typeof import('vuetify/components')['VForm']
|
599
622
|
VHover: typeof import('vuetify/components')['VHover']
|
623
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
600
624
|
VLayout: typeof import('vuetify/components')['VLayout']
|
601
625
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
602
626
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
603
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
604
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
605
627
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
628
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
606
629
|
VRadio: typeof import('vuetify/components')['VRadio']
|
607
630
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
608
631
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
@@ -627,6 +650,8 @@ interface _GlobalComponents {
|
|
627
650
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
628
651
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
629
652
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
653
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
654
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
630
655
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
631
656
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
632
657
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
@@ -634,48 +659,17 @@ interface _GlobalComponents {
|
|
634
659
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
635
660
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
636
661
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
637
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
638
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
639
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
640
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
641
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
642
662
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
643
663
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
644
664
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
645
665
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
646
666
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
647
667
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
668
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
669
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
670
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
648
671
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
649
|
-
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
650
672
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
651
|
-
|
652
|
-
declare module 'vue' {
|
653
|
-
export type JSXComponent<Props = any> = { new (): ComponentPublicInstance<Props> } | FunctionalComponent<Props>
|
654
|
-
export interface GlobalComponents extends _GlobalComponents {}
|
655
|
-
}
|
656
|
-
|
657
|
-
declare module '@vue/runtime-dom' {
|
658
|
-
export interface HTMLAttributes {
|
659
|
-
$children?: VNodeChild
|
660
|
-
}
|
661
|
-
export interface SVGAttributes {
|
662
|
-
$children?: VNodeChild
|
663
|
-
}
|
664
|
-
export interface GlobalComponents extends _GlobalComponents {}
|
665
|
-
}
|
666
|
-
|
667
|
-
declare module '@vue/runtime-core' {
|
668
|
-
interface Vuetify {
|
669
|
-
defaults: DefaultsInstance
|
670
|
-
display: UnwrapNestedRefs<DisplayInstance>
|
671
|
-
theme: UnwrapNestedRefs<ThemeInstance>
|
672
|
-
icons: IconOptions
|
673
|
-
locale: UnwrapNestedRefs<LocaleInstance & RtlInstance>
|
674
|
-
date: DateInstance
|
675
|
-
}
|
676
|
-
|
677
|
-
export interface ComponentCustomProperties {
|
678
|
-
$vuetify: Vuetify
|
673
|
+
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
679
674
|
}
|
680
|
-
export interface GlobalComponents extends _GlobalComponents {}
|
681
675
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, PropType,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -38,6 +38,9 @@ interface ValidationProps {
|
|
38
38
|
validationValue: any;
|
39
39
|
}
|
40
40
|
|
41
|
+
type JSXComponent<Props = any> = {
|
42
|
+
new (): ComponentPublicInstance<Props>;
|
43
|
+
} | FunctionalComponent<Props>;
|
41
44
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
42
45
|
declare const IconValue: PropType<IconValue>;
|
43
46
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, ComputedRef, Ref, nextTick } from 'vue';
|
3
3
|
|
4
4
|
type ClassValue = any;
|
5
5
|
|
@@ -68,6 +68,9 @@ interface ValidationProps {
|
|
68
68
|
validationValue: any;
|
69
69
|
}
|
70
70
|
|
71
|
+
type JSXComponent<Props = any> = {
|
72
|
+
new (): ComponentPublicInstance<Props>;
|
73
|
+
} | FunctionalComponent<Props>;
|
71
74
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
72
75
|
declare const IconValue: PropType<IconValue>;
|
73
76
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentPublicInstance, FunctionalComponent, DirectiveBinding } from 'vue';
|
3
3
|
|
4
4
|
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
5
5
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
|
@@ -7,6 +7,9 @@ interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions
|
|
7
7
|
|
8
8
|
type ClassValue = any;
|
9
9
|
|
10
|
+
type JSXComponent<Props = any> = {
|
11
|
+
new (): ComponentPublicInstance<Props>;
|
12
|
+
} | FunctionalComponent<Props>;
|
10
13
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
11
14
|
declare const IconValue: PropType<IconValue>;
|
12
15
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, DirectiveBinding } from 'vue';
|
3
3
|
// @ts-ignore
|
4
4
|
import * as vue_router from 'vue-router';
|
5
5
|
|
@@ -42,6 +42,9 @@ type Density = null | 'default' | 'comfortable' | 'compact';
|
|
42
42
|
declare const allowedVariants: readonly ["elevated", "flat", "tonal", "outlined", "text", "plain"];
|
43
43
|
type Variant = typeof allowedVariants[number];
|
44
44
|
|
45
|
+
type JSXComponent<Props = any> = {
|
46
|
+
new (): ComponentPublicInstance<Props>;
|
47
|
+
} | FunctionalComponent<Props>;
|
45
48
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
46
49
|
declare const IconValue: PropType<IconValue>;
|
47
50
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance,
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, ComputedRef, Ref, nextTick, DirectiveBinding, EffectScope } from 'vue';
|
3
3
|
// @ts-ignore
|
4
4
|
import * as vue_router from 'vue-router';
|
5
5
|
|
@@ -1822,6 +1822,9 @@ interface ValidationProps {
|
|
1822
1822
|
validationValue: any;
|
1823
1823
|
}
|
1824
1824
|
|
1825
|
+
type JSXComponent<Props = any> = {
|
1826
|
+
new (): ComponentPublicInstance<Props>;
|
1827
|
+
} | FunctionalComponent<Props>;
|
1825
1828
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
1826
1829
|
declare const IconValue: PropType<IconValue>;
|
1827
1830
|
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vuetify/nightly",
|
3
3
|
"description": "Vue Material Component Framework",
|
4
|
-
"version": "3.7.0-master.2024-08-
|
4
|
+
"version": "3.7.0-master.2024-08-21",
|
5
5
|
"author": {
|
6
6
|
"name": "John Leider",
|
7
7
|
"email": "john@vuetifyjs.com"
|
@@ -181,16 +181,12 @@
|
|
181
181
|
"typescript": ">=4.7",
|
182
182
|
"vite-plugin-vuetify": ">=1.0.0",
|
183
183
|
"vue": "^3.3.0",
|
184
|
-
"vue-i18n": "^9.0.0",
|
185
184
|
"webpack-plugin-vuetify": ">=2.0.0"
|
186
185
|
},
|
187
186
|
"peerDependenciesMeta": {
|
188
187
|
"typescript": {
|
189
188
|
"optional": true
|
190
189
|
},
|
191
|
-
"vue-i18n": {
|
192
|
-
"optional": true
|
193
|
-
},
|
194
190
|
"webpack-plugin-vuetify": {
|
195
191
|
"optional": true
|
196
192
|
},
|