@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/dist/vuetify.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as vue from 'vue';
|
2
|
-
import { Ref, DeepReadonly, ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, ComponentPublicInstance, PropType,
|
2
|
+
import { Ref, DeepReadonly, ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, ComponentPublicInstance, PropType, FunctionalComponent, CSSProperties, DirectiveBinding, ComponentInternalInstance, ComputedRef, Component, EffectScope, nextTick, WritableComputedRef, UnwrapRef, Prop, InjectionKey } from 'vue';
|
3
3
|
// @ts-ignore
|
4
4
|
import * as vue_router from 'vue-router';
|
5
5
|
// @ts-ignore
|
@@ -246,6 +246,9 @@ type TemplateRef = {
|
|
246
246
|
readonly el: HTMLElement | undefined;
|
247
247
|
};
|
248
248
|
|
249
|
+
type JSXComponent<Props = any> = {
|
250
|
+
new (): ComponentPublicInstance<Props>;
|
251
|
+
} | FunctionalComponent<Props>;
|
249
252
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
250
253
|
declare const IconValue: PropType<IconValue>;
|
251
254
|
interface IconAliases {
|
@@ -66675,14 +66678,14 @@ declare const createVuetify: {
|
|
66675
66678
|
};
|
66676
66679
|
declare const version: string;
|
66677
66680
|
|
66678
|
-
export { type DateInstance, 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, index_d$2 as blueprints, index_d$1 as components, createVuetify, index_d as directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|
66681
|
+
export { type DateInstance, 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, index_d$2 as blueprints, index_d$1 as components, createVuetify, index_d as directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|
66679
66682
|
|
66680
66683
|
/* eslint-disable local-rules/sort-imports */
|
66681
66684
|
|
66682
66685
|
import 'vue/jsx'
|
66683
|
-
import type {
|
66684
|
-
|
66686
|
+
import type { UnwrapNestedRefs } from 'vue'
|
66685
66687
|
|
66688
|
+
// These already exist in scope in the final bundle
|
66686
66689
|
|
66687
66690
|
declare global {
|
66688
66691
|
namespace JSX {
|
@@ -66691,51 +66694,69 @@ declare global {
|
|
66691
66694
|
}
|
66692
66695
|
}
|
66693
66696
|
}
|
66694
|
-
|
66697
|
+
|
66698
|
+
declare module 'vue' {
|
66699
|
+
interface Vuetify {
|
66700
|
+
defaults: DefaultsInstance
|
66701
|
+
display: UnwrapNestedRefs<DisplayInstance>
|
66702
|
+
theme: UnwrapNestedRefs<ThemeInstance>
|
66703
|
+
icons: IconOptions
|
66704
|
+
locale: UnwrapNestedRefs<LocaleInstance & RtlInstance>
|
66705
|
+
date: DateInstance
|
66706
|
+
}
|
66707
|
+
|
66708
|
+
export interface ComponentCustomProperties {
|
66709
|
+
$vuetify: Vuetify
|
66710
|
+
}
|
66711
|
+
export interface HTMLAttributes {
|
66712
|
+
$children?: VNodeChild
|
66713
|
+
}
|
66714
|
+
export interface SVGAttributes {
|
66715
|
+
$children?: VNodeChild
|
66716
|
+
}
|
66717
|
+
export interface GlobalComponents {
|
66695
66718
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
66696
66719
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
66697
66720
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
66698
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
66699
66721
|
VAlert: typeof import('vuetify/components')['VAlert']
|
66700
66722
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
66723
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
66724
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
66725
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
66701
66726
|
VApp: typeof import('vuetify/components')['VApp']
|
66727
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
66728
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
66702
66729
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
66703
|
-
|
66730
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
66704
66731
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
66705
66732
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
66706
66733
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
66707
|
-
|
66708
|
-
|
66709
|
-
|
66710
|
-
|
66711
|
-
|
66734
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
66735
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
66736
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
66737
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
66738
|
+
VChip: typeof import('vuetify/components')['VChip']
|
66712
66739
|
VCard: typeof import('vuetify/components')['VCard']
|
66713
66740
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
66714
66741
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
66715
66742
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
66716
66743
|
VCardText: typeof import('vuetify/components')['VCardText']
|
66717
66744
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
66718
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
66719
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
66720
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
66721
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
66722
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
66723
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
66724
|
-
VChip: typeof import('vuetify/components')['VChip']
|
66725
66745
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
66726
66746
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
66727
|
-
|
66728
|
-
|
66729
|
-
|
66730
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
66747
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
66748
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
66749
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
66731
66750
|
VCode: typeof import('vuetify/components')['VCode']
|
66751
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
66752
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
66753
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
66732
66754
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
66733
66755
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
66734
66756
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
66735
66757
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
66736
66758
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
66737
66759
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
66738
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
66739
66760
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
66740
66761
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
66741
66762
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -66743,14 +66764,14 @@ interface _GlobalComponents {
|
|
66743
66764
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
66744
66765
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
66745
66766
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
66746
|
-
|
66767
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
66747
66768
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
66748
66769
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
66749
66770
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
66750
66771
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
66751
66772
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
66773
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
66752
66774
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
66753
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
66754
66775
|
VField: typeof import('vuetify/components')['VField']
|
66755
66776
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
66756
66777
|
VIcon: typeof import('vuetify/components')['VIcon']
|
@@ -66758,14 +66779,13 @@ interface _GlobalComponents {
|
|
66758
66779
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
66759
66780
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
66760
66781
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
66761
|
-
|
66762
|
-
|
66782
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
66783
|
+
VFab: typeof import('vuetify/components')['VFab']
|
66763
66784
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
66764
|
-
VMain: typeof import('vuetify/components')['VMain']
|
66765
66785
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
66766
66786
|
VItem: typeof import('vuetify/components')['VItem']
|
66767
|
-
|
66768
|
-
|
66787
|
+
VInput: typeof import('vuetify/components')['VInput']
|
66788
|
+
VImg: typeof import('vuetify/components')['VImg']
|
66769
66789
|
VList: typeof import('vuetify/components')['VList']
|
66770
66790
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
66771
66791
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -66775,63 +66795,66 @@ interface _GlobalComponents {
|
|
66775
66795
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
66776
66796
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
66777
66797
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
66778
|
-
|
66798
|
+
VMain: typeof import('vuetify/components')['VMain']
|
66799
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
66800
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
66779
66801
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
66780
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
66781
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
66782
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
66783
66802
|
VMenu: typeof import('vuetify/components')['VMenu']
|
66803
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
66804
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
66805
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
66806
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
66807
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
66784
66808
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
66785
66809
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
66786
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
66787
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
66788
66810
|
VRating: typeof import('vuetify/components')['VRating']
|
66789
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
66790
66811
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
66791
|
-
|
66792
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
66812
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
66793
66813
|
VSheet: typeof import('vuetify/components')['VSheet']
|
66814
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
66794
66815
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
66795
|
-
|
66816
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
66817
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
66818
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
66796
66819
|
VSlider: typeof import('vuetify/components')['VSlider']
|
66797
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
66798
66820
|
VStepper: typeof import('vuetify/components')['VStepper']
|
66799
66821
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
66800
66822
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
66801
66823
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
66802
66824
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
66803
66825
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
66804
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
66805
66826
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
66827
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
66828
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
66829
|
+
VTable: typeof import('vuetify/components')['VTable']
|
66806
66830
|
VTextField: typeof import('vuetify/components')['VTextField']
|
66807
66831
|
VTab: typeof import('vuetify/components')['VTab']
|
66808
66832
|
VTabs: typeof import('vuetify/components')['VTabs']
|
66809
66833
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
66810
66834
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
66811
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
66812
|
-
VWindow: typeof import('vuetify/components')['VWindow']
|
66813
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
66814
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
66815
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
66816
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
66817
66835
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
66818
66836
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
66819
66837
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
66838
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
66839
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
66840
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
66841
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
66842
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
66843
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
66820
66844
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
66821
66845
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
66822
|
-
|
66846
|
+
VForm: typeof import('vuetify/components')['VForm']
|
66823
66847
|
VContainer: typeof import('vuetify/components')['VContainer']
|
66824
66848
|
VCol: typeof import('vuetify/components')['VCol']
|
66825
66849
|
VRow: typeof import('vuetify/components')['VRow']
|
66826
66850
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
66827
|
-
VForm: typeof import('vuetify/components')['VForm']
|
66828
66851
|
VHover: typeof import('vuetify/components')['VHover']
|
66852
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
66829
66853
|
VLayout: typeof import('vuetify/components')['VLayout']
|
66830
66854
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
66831
66855
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
66832
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
66833
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
66834
66856
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
66857
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
66835
66858
|
VRadio: typeof import('vuetify/components')['VRadio']
|
66836
66859
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
66837
66860
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
@@ -66856,6 +66879,8 @@ interface _GlobalComponents {
|
|
66856
66879
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
66857
66880
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
66858
66881
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
66882
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
66883
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
66859
66884
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
66860
66885
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
66861
66886
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
@@ -66863,48 +66888,17 @@ interface _GlobalComponents {
|
|
66863
66888
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
66864
66889
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
66865
66890
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
66866
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
66867
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
66868
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
66869
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
66870
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
66871
66891
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
66872
66892
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
66873
66893
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
66874
66894
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
66875
66895
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
66876
66896
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
66897
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
66898
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
66899
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
66877
66900
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
66878
|
-
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
66879
66901
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
66880
|
-
|
66881
|
-
declare module 'vue' {
|
66882
|
-
export type JSXComponent<Props = any> = { new (): ComponentPublicInstance<Props> } | FunctionalComponent<Props>
|
66883
|
-
export interface GlobalComponents extends _GlobalComponents {}
|
66884
|
-
}
|
66885
|
-
|
66886
|
-
declare module '@vue/runtime-dom' {
|
66887
|
-
export interface HTMLAttributes {
|
66888
|
-
$children?: VNodeChild
|
66889
|
-
}
|
66890
|
-
export interface SVGAttributes {
|
66891
|
-
$children?: VNodeChild
|
66892
|
-
}
|
66893
|
-
export interface GlobalComponents extends _GlobalComponents {}
|
66894
|
-
}
|
66895
|
-
|
66896
|
-
declare module '@vue/runtime-core' {
|
66897
|
-
interface Vuetify {
|
66898
|
-
defaults: DefaultsInstance
|
66899
|
-
display: UnwrapNestedRefs<DisplayInstance>
|
66900
|
-
theme: UnwrapNestedRefs<ThemeInstance>
|
66901
|
-
icons: IconOptions
|
66902
|
-
locale: UnwrapNestedRefs<LocaleInstance & RtlInstance>
|
66903
|
-
date: DateInstance
|
66904
|
-
}
|
66905
|
-
|
66906
|
-
export interface ComponentCustomProperties {
|
66907
|
-
$vuetify: Vuetify
|
66902
|
+
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
66908
66903
|
}
|
66909
|
-
export interface GlobalComponents extends _GlobalComponents {}
|
66910
66904
|
}
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.0-master.2024-08-
|
2
|
+
* Vuetify v3.7.0-master.2024-08-21
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -28208,7 +28208,7 @@ function createVuetify$1() {
|
|
28208
28208
|
goTo
|
28209
28209
|
};
|
28210
28210
|
}
|
28211
|
-
const version$1 = "3.7.0-master.2024-08-
|
28211
|
+
const version$1 = "3.7.0-master.2024-08-21";
|
28212
28212
|
createVuetify$1.version = version$1;
|
28213
28213
|
|
28214
28214
|
// Vue's inject() can only be used in setup
|
@@ -28233,7 +28233,7 @@ const createVuetify = function () {
|
|
28233
28233
|
...options
|
28234
28234
|
});
|
28235
28235
|
};
|
28236
|
-
const version = "3.7.0-master.2024-08-
|
28236
|
+
const version = "3.7.0-master.2024-08-21";
|
28237
28237
|
createVuetify.version = version;
|
28238
28238
|
|
28239
28239
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|