@vuetify/nightly 3.7.0-master.2024-08-16 → 3.7.0-master.2024-08-17
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 +32 -32
- package/dist/json/importMap.json +174 -174
- package/dist/json/web-types.json +210 -210
- package/dist/vuetify-labs.css +3220 -3220
- 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 +1997 -1997
- package/dist/vuetify.d.ts +90 -96
- 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 +90 -96
- 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,70 @@ declare global {
|
|
66691
66694
|
}
|
66692
66695
|
}
|
66693
66696
|
}
|
66694
|
-
|
66695
|
-
|
66696
|
-
|
66697
|
-
|
66698
|
-
|
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 {
|
66718
|
+
VApp: typeof import('vuetify/components')['VApp']
|
66699
66719
|
VAlert: typeof import('vuetify/components')['VAlert']
|
66700
66720
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
66701
|
-
VApp: typeof import('vuetify/components')['VApp']
|
66702
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
66703
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
66704
|
-
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
66705
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
66706
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
66707
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
66708
66721
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
66722
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
66709
66723
|
VBanner: typeof import('vuetify/components')['VBanner']
|
66710
66724
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
66711
66725
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
66726
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
66727
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
66728
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
66729
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
66730
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
66731
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
66712
66732
|
VCard: typeof import('vuetify/components')['VCard']
|
66713
66733
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
66714
66734
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
66715
66735
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
66716
66736
|
VCardText: typeof import('vuetify/components')['VCardText']
|
66717
66737
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
66718
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
66719
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
66720
66738
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
66721
|
-
|
66722
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
66723
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
66739
|
+
VCode: typeof import('vuetify/components')['VCode']
|
66724
66740
|
VChip: typeof import('vuetify/components')['VChip']
|
66725
66741
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
66726
66742
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
66727
66743
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
66728
|
-
|
66744
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
66745
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
66746
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
66747
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
66729
66748
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
66730
|
-
|
66731
|
-
VCode: typeof import('vuetify/components')['VCode']
|
66749
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
66732
66750
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
66733
66751
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
66734
66752
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
66735
66753
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
66736
66754
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
66737
66755
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
66738
|
-
|
66756
|
+
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
66757
|
+
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
66758
|
+
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
66759
|
+
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
66760
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
66739
66761
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
66740
66762
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
66741
66763
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -66744,28 +66766,26 @@ interface _GlobalComponents {
|
|
66744
66766
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
66745
66767
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
66746
66768
|
VFab: typeof import('vuetify/components')['VFab']
|
66747
|
-
|
66748
|
-
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
66749
|
-
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
66750
|
-
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
66751
|
-
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
66769
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
66752
66770
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
66753
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
66754
66771
|
VField: typeof import('vuetify/components')['VField']
|
66755
66772
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
66773
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
66774
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
66775
|
+
VItem: typeof import('vuetify/components')['VItem']
|
66776
|
+
VInput: typeof import('vuetify/components')['VInput']
|
66756
66777
|
VIcon: typeof import('vuetify/components')['VIcon']
|
66757
66778
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
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
66782
|
VImg: typeof import('vuetify/components')['VImg']
|
66762
|
-
VInput: typeof import('vuetify/components')['VInput']
|
66763
66783
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
66764
|
-
VMain: typeof import('vuetify/components')['VMain']
|
66765
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
66766
|
-
VItem: typeof import('vuetify/components')['VItem']
|
66767
66784
|
VKbd: typeof import('vuetify/components')['VKbd']
|
66768
66785
|
VLabel: typeof import('vuetify/components')['VLabel']
|
66786
|
+
VMain: typeof import('vuetify/components')['VMain']
|
66787
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
66788
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
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,25 +66795,23 @@ 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
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
66779
66798
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
66780
|
-
|
66781
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
66799
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
66782
66800
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
66783
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
66784
66801
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
66802
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
66785
66803
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
66786
66804
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
66787
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
66788
66805
|
VRating: typeof import('vuetify/components')['VRating']
|
66789
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
66790
66806
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
66807
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
66808
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
66791
66809
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
66792
66810
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
66793
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
66794
66811
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
66795
|
-
|
66796
|
-
|
66812
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
66813
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
66814
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
66797
66815
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
66798
66816
|
VStepper: typeof import('vuetify/components')['VStepper']
|
66799
66817
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
@@ -66801,45 +66819,45 @@ interface _GlobalComponents {
|
|
66801
66819
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
66802
66820
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
66803
66821
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
66804
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
66805
66822
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
66806
|
-
|
66823
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
66824
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
66807
66825
|
VTab: typeof import('vuetify/components')['VTab']
|
66808
66826
|
VTabs: typeof import('vuetify/components')['VTabs']
|
66809
66827
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
66810
66828
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
66811
|
-
|
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']
|
66829
|
+
VTable: typeof import('vuetify/components')['VTable']
|
66817
66830
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
66818
66831
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
66819
66832
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
66833
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
66834
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
66835
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
66836
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
66837
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
66820
66838
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
66821
|
-
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
66822
66839
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
66840
|
+
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
66841
|
+
VForm: typeof import('vuetify/components')['VForm']
|
66842
|
+
VHover: typeof import('vuetify/components')['VHover']
|
66823
66843
|
VContainer: typeof import('vuetify/components')['VContainer']
|
66824
66844
|
VCol: typeof import('vuetify/components')['VCol']
|
66825
66845
|
VRow: typeof import('vuetify/components')['VRow']
|
66826
66846
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
66827
|
-
VForm: typeof import('vuetify/components')['VForm']
|
66828
|
-
VHover: typeof import('vuetify/components')['VHover']
|
66829
66847
|
VLayout: typeof import('vuetify/components')['VLayout']
|
66830
66848
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
66831
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
66832
66849
|
VLazy: typeof import('vuetify/components')['VLazy']
|
66850
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
66833
66851
|
VParallax: typeof import('vuetify/components')['VParallax']
|
66834
|
-
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
66835
66852
|
VRadio: typeof import('vuetify/components')['VRadio']
|
66853
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
66836
66854
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
66837
66855
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
66838
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
66839
66856
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
66857
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
66840
66858
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
66841
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
66842
66859
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
66860
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
66843
66861
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
66844
66862
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
66845
66863
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -66856,55 +66874,31 @@ interface _GlobalComponents {
|
|
66856
66874
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
66857
66875
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
66858
66876
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
66877
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
66878
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
66879
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
66880
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
66881
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
66882
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
66883
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
66884
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
66885
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
66859
66886
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
66860
66887
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
66861
66888
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
66862
66889
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
66863
66890
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
66864
66891
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
66865
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
66866
66892
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
66867
66893
|
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
|
-
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
66872
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
66873
|
-
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-17
|
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-17";
|
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-17";
|
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 };
|