@vuetify/nightly 3.8.4-master.2025-05-13 → 3.8.5-master.2025-05-14
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 +3 -27
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +3177 -2841
- package/dist/json/importMap-labs.json +36 -32
- package/dist/json/importMap.json +180 -180
- package/dist/json/tags.json +89 -0
- package/dist/json/web-types.json +6734 -5547
- package/dist/vuetify-labs.cjs +272 -82
- package/dist/vuetify-labs.css +5164 -5136
- package/dist/vuetify-labs.d.ts +1371 -309
- package/dist/vuetify-labs.esm.js +272 -82
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +272 -82
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +5 -4
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3047 -3022
- package/dist/vuetify.d.ts +70 -67
- package/dist/vuetify.esm.js +5 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.css +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.sass +1 -1
- package/lib/components/VBtn/VBtn.css +25 -0
- package/lib/components/VBtn/VBtn.sass +9 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +3 -1
- package/lib/components/VSnackbarQueue/VSnackbarQueue.js.map +1 -1
- package/lib/composables/dateFormat.d.ts +24 -0
- package/lib/composables/dateFormat.js +112 -0
- package/lib/composables/dateFormat.js.map +1 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +70 -67
- package/lib/framework.js +1 -1
- package/lib/iconsets/mdi.js +2 -1
- package/lib/iconsets/mdi.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.css +4 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +1767 -0
- package/lib/labs/VColorInput/VColorInput.js +129 -0
- package/lib/labs/VColorInput/VColorInput.js.map +1 -0
- package/lib/labs/VColorInput/VColorInput.sass +7 -0
- package/lib/labs/VColorInput/_variables.scss +2 -0
- package/lib/labs/VColorInput/index.d.ts +1 -0
- package/lib/labs/VColorInput/index.js +2 -0
- package/lib/labs/VColorInput/index.js.map +1 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +28 -31
- package/lib/labs/VDateInput/VDateInput.js +38 -79
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -2783,7 +2783,9 @@ type VSnackbarQueueSlots<T extends string | SnackbarMessage> = {
|
|
2783
2783
|
};
|
2784
2784
|
};
|
2785
2785
|
};
|
2786
|
-
type SnackbarMessage = string | Omit<VSnackbar['$props'], 'modelValue' | 'onUpdate:modelValue' | 'activator' | 'activatorProps' | 'closeDelay' | 'openDelay' | 'openOnClick' | 'openOnFocus' | 'openOnHover' | '$children' | 'v-slots' | `v-slot:${string}` | keyof VNodeProps
|
2786
|
+
type SnackbarMessage = string | (Omit<VSnackbar['$props'], 'modelValue' | 'onUpdate:modelValue' | 'activator' | 'activatorProps' | 'closeDelay' | 'openDelay' | 'openOnClick' | 'openOnFocus' | 'openOnHover' | 'style' | '$children' | 'v-slots' | `v-slot:${string}` | keyof VNodeProps> & {
|
2787
|
+
style?: any;
|
2788
|
+
});
|
2787
2789
|
declare const VSnackbarQueue: {
|
2788
2790
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
2789
2791
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
@@ -85872,41 +85874,42 @@ declare module 'vue' {
|
|
85872
85874
|
$children?: VNodeChild
|
85873
85875
|
}
|
85874
85876
|
export interface GlobalComponents {
|
85875
|
-
|
85877
|
+
VAutocomplete: VAutocomplete
|
85876
85878
|
VAppBar: VAppBar
|
85877
85879
|
VAppBarNavIcon: VAppBarNavIcon
|
85878
85880
|
VAppBarTitle: VAppBarTitle
|
85881
|
+
VApp: VApp
|
85882
|
+
VAlert: VAlert
|
85883
|
+
VAlertTitle: VAlertTitle
|
85884
|
+
VBadge: VBadge
|
85879
85885
|
VAvatar: VAvatar
|
85880
|
-
VAutocomplete: VAutocomplete
|
85881
85886
|
VBanner: VBanner
|
85882
85887
|
VBannerActions: VBannerActions
|
85883
85888
|
VBannerText: VBannerText
|
85884
|
-
|
85885
|
-
VAlertTitle: VAlertTitle
|
85886
|
-
VBadge: VBadge
|
85889
|
+
VBottomSheet: VBottomSheet
|
85887
85890
|
VBreadcrumbs: VBreadcrumbs
|
85888
85891
|
VBreadcrumbsItem: VBreadcrumbsItem
|
85889
85892
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
85890
|
-
|
85891
|
-
VBottomNavigation: VBottomNavigation
|
85892
|
-
VBtn: VBtn
|
85893
|
+
VBtnGroup: VBtnGroup
|
85893
85894
|
VBtnToggle: VBtnToggle
|
85894
|
-
VCarousel: VCarousel
|
85895
|
-
VCarouselItem: VCarouselItem
|
85896
|
-
VCheckbox: VCheckbox
|
85897
|
-
VCheckboxBtn: VCheckboxBtn
|
85898
85895
|
VCard: VCard
|
85899
85896
|
VCardActions: VCardActions
|
85900
85897
|
VCardItem: VCardItem
|
85901
85898
|
VCardSubtitle: VCardSubtitle
|
85902
85899
|
VCardText: VCardText
|
85903
85900
|
VCardTitle: VCardTitle
|
85901
|
+
VCarousel: VCarousel
|
85902
|
+
VCarouselItem: VCarouselItem
|
85903
|
+
VBottomNavigation: VBottomNavigation
|
85904
85904
|
VChipGroup: VChipGroup
|
85905
|
+
VBtn: VBtn
|
85906
|
+
VChip: VChip
|
85907
|
+
VCheckbox: VCheckbox
|
85908
|
+
VCheckboxBtn: VCheckboxBtn
|
85905
85909
|
VColorPicker: VColorPicker
|
85906
|
-
|
85910
|
+
VCode: VCode
|
85907
85911
|
VCombobox: VCombobox
|
85908
85912
|
VCounter: VCounter
|
85909
|
-
VChip: VChip
|
85910
85913
|
VDataTable: VDataTable
|
85911
85914
|
VDataTableHeaders: VDataTableHeaders
|
85912
85915
|
VDataTableFooter: VDataTableFooter
|
@@ -85914,13 +85917,6 @@ declare module 'vue' {
|
|
85914
85917
|
VDataTableRow: VDataTableRow
|
85915
85918
|
VDataTableVirtual: VDataTableVirtual
|
85916
85919
|
VDataTableServer: VDataTableServer
|
85917
|
-
VCode: VCode
|
85918
|
-
VDialog: VDialog
|
85919
|
-
VExpansionPanels: VExpansionPanels
|
85920
|
-
VExpansionPanel: VExpansionPanel
|
85921
|
-
VExpansionPanelText: VExpansionPanelText
|
85922
|
-
VExpansionPanelTitle: VExpansionPanelTitle
|
85923
|
-
VEmptyState: VEmptyState
|
85924
85920
|
VDatePicker: VDatePicker
|
85925
85921
|
VDatePickerControls: VDatePickerControls
|
85926
85922
|
VDatePickerHeader: VDatePickerHeader
|
@@ -85928,23 +85924,29 @@ declare module 'vue' {
|
|
85928
85924
|
VDatePickerMonths: VDatePickerMonths
|
85929
85925
|
VDatePickerYears: VDatePickerYears
|
85930
85926
|
VDivider: VDivider
|
85927
|
+
VDialog: VDialog
|
85928
|
+
VFab: VFab
|
85929
|
+
VEmptyState: VEmptyState
|
85931
85930
|
VField: VField
|
85932
85931
|
VFieldLabel: VFieldLabel
|
85933
|
-
|
85932
|
+
VExpansionPanels: VExpansionPanels
|
85933
|
+
VExpansionPanel: VExpansionPanel
|
85934
|
+
VExpansionPanelText: VExpansionPanelText
|
85935
|
+
VExpansionPanelTitle: VExpansionPanelTitle
|
85936
|
+
VFooter: VFooter
|
85934
85937
|
VFileInput: VFileInput
|
85938
|
+
VInfiniteScroll: VInfiniteScroll
|
85935
85939
|
VIcon: VIcon
|
85936
85940
|
VComponentIcon: VComponentIcon
|
85937
85941
|
VSvgIcon: VSvgIcon
|
85938
85942
|
VLigatureIcon: VLigatureIcon
|
85939
85943
|
VClassIcon: VClassIcon
|
85940
|
-
VFooter: VFooter
|
85941
85944
|
VImg: VImg
|
85942
|
-
|
85945
|
+
VKbd: VKbd
|
85943
85946
|
VInput: VInput
|
85947
|
+
VLabel: VLabel
|
85944
85948
|
VItemGroup: VItemGroup
|
85945
85949
|
VItem: VItem
|
85946
|
-
VLabel: VLabel
|
85947
|
-
VKbd: VKbd
|
85948
85950
|
VList: VList
|
85949
85951
|
VListGroup: VListGroup
|
85950
85952
|
VListImg: VListImg
|
@@ -85955,70 +85957,72 @@ declare module 'vue' {
|
|
85955
85957
|
VListItemTitle: VListItemTitle
|
85956
85958
|
VListSubheader: VListSubheader
|
85957
85959
|
VMain: VMain
|
85960
|
+
VMessages: VMessages
|
85958
85961
|
VMenu: VMenu
|
85959
|
-
VNumberInput: VNumberInput
|
85960
85962
|
VNavigationDrawer: VNavigationDrawer
|
85963
|
+
VNumberInput: VNumberInput
|
85964
|
+
VOverlay: VOverlay
|
85961
85965
|
VOtpInput: VOtpInput
|
85962
|
-
|
85966
|
+
VPagination: VPagination
|
85967
|
+
VRadioGroup: VRadioGroup
|
85963
85968
|
VProgressCircular: VProgressCircular
|
85964
85969
|
VProgressLinear: VProgressLinear
|
85965
|
-
VOverlay: VOverlay
|
85966
85970
|
VRating: VRating
|
85967
|
-
VRadioGroup: VRadioGroup
|
85968
|
-
VPagination: VPagination
|
85969
85971
|
VSelect: VSelect
|
85972
|
+
VSelectionControlGroup: VSelectionControlGroup
|
85973
|
+
VSelectionControl: VSelectionControl
|
85974
|
+
VSlider: VSlider
|
85970
85975
|
VSheet: VSheet
|
85971
85976
|
VSnackbar: VSnackbar
|
85972
|
-
|
85977
|
+
VSkeletonLoader: VSkeletonLoader
|
85973
85978
|
VSlideGroup: VSlideGroup
|
85974
85979
|
VSlideGroupItem: VSlideGroupItem
|
85975
|
-
|
85976
|
-
|
85980
|
+
VStepper: VStepper
|
85981
|
+
VStepperActions: VStepperActions
|
85982
|
+
VStepperHeader: VStepperHeader
|
85983
|
+
VStepperItem: VStepperItem
|
85984
|
+
VStepperWindow: VStepperWindow
|
85985
|
+
VStepperWindowItem: VStepperWindowItem
|
85977
85986
|
VSwitch: VSwitch
|
85978
|
-
VTable: VTable
|
85979
|
-
VTab: VTab
|
85980
|
-
VTabs: VTabs
|
85981
|
-
VTabsWindow: VTabsWindow
|
85982
|
-
VTabsWindowItem: VTabsWindowItem
|
85983
85987
|
VSystemBar: VSystemBar
|
85984
85988
|
VTextField: VTextField
|
85989
|
+
VTextarea: VTextarea
|
85990
|
+
VTable: VTable
|
85985
85991
|
VTimeline: VTimeline
|
85986
85992
|
VTimelineItem: VTimelineItem
|
85993
|
+
VTooltip: VTooltip
|
85987
85994
|
VToolbar: VToolbar
|
85988
85995
|
VToolbarTitle: VToolbarTitle
|
85989
85996
|
VToolbarItems: VToolbarItems
|
85990
|
-
VTooltip: VTooltip
|
85991
85997
|
VWindow: VWindow
|
85992
85998
|
VWindowItem: VWindowItem
|
85999
|
+
VTab: VTab
|
86000
|
+
VTabs: VTabs
|
86001
|
+
VTabsWindow: VTabsWindow
|
86002
|
+
VTabsWindowItem: VTabsWindowItem
|
85993
86003
|
VConfirmEdit: VConfirmEdit
|
85994
86004
|
VDataIterator: VDataIterator
|
85995
86005
|
VDefaultsProvider: VDefaultsProvider
|
85996
|
-
|
85997
|
-
VStepperActions: VStepperActions
|
85998
|
-
VStepperHeader: VStepperHeader
|
85999
|
-
VStepperItem: VStepperItem
|
86000
|
-
VStepperWindow: VStepperWindow
|
86001
|
-
VStepperWindowItem: VStepperWindowItem
|
86006
|
+
VForm: VForm
|
86002
86007
|
VHover: VHover
|
86008
|
+
VContainer: VContainer
|
86009
|
+
VCol: VCol
|
86010
|
+
VRow: VRow
|
86011
|
+
VSpacer: VSpacer
|
86003
86012
|
VLazy: VLazy
|
86004
86013
|
VLayout: VLayout
|
86005
86014
|
VLayoutItem: VLayoutItem
|
86006
86015
|
VLocaleProvider: VLocaleProvider
|
86007
86016
|
VNoSsr: VNoSsr
|
86008
86017
|
VParallax: VParallax
|
86009
|
-
VRadio: VRadio
|
86010
86018
|
VRangeSlider: VRangeSlider
|
86011
86019
|
VResponsive: VResponsive
|
86012
|
-
VContainer: VContainer
|
86013
|
-
VCol: VCol
|
86014
|
-
VRow: VRow
|
86015
|
-
VSpacer: VSpacer
|
86016
86020
|
VSparkline: VSparkline
|
86021
|
+
VSnackbarQueue: VSnackbarQueue
|
86017
86022
|
VSpeedDial: VSpeedDial
|
86018
86023
|
VThemeProvider: VThemeProvider
|
86019
86024
|
VValidation: VValidation
|
86020
86025
|
VVirtualScroll: VVirtualScroll
|
86021
|
-
VSkeletonLoader: VSkeletonLoader
|
86022
86026
|
VFabTransition: VFabTransition
|
86023
86027
|
VDialogBottomTransition: VDialogBottomTransition
|
86024
86028
|
VDialogTopTransition: VDialogTopTransition
|
@@ -86035,29 +86039,28 @@ declare module 'vue' {
|
|
86035
86039
|
VExpandTransition: VExpandTransition
|
86036
86040
|
VExpandXTransition: VExpandXTransition
|
86037
86041
|
VDialogTransition: VDialogTransition
|
86038
|
-
|
86039
|
-
VTextarea: VTextarea
|
86040
|
-
VSnackbarQueue: VSnackbarQueue
|
86041
|
-
VFileUpload: VFileUpload
|
86042
|
-
VFileUploadItem: VFileUploadItem
|
86043
|
-
VTimePicker: VTimePicker
|
86044
|
-
VTimePickerClock: VTimePickerClock
|
86045
|
-
VTimePickerControls: VTimePickerControls
|
86042
|
+
VRadio: VRadio
|
86046
86043
|
VCalendar: VCalendar
|
86047
86044
|
VCalendarDay: VCalendarDay
|
86048
86045
|
VCalendarHeader: VCalendarHeader
|
86049
86046
|
VCalendarInterval: VCalendarInterval
|
86050
86047
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
86051
86048
|
VCalendarMonthDay: VCalendarMonthDay
|
86052
|
-
|
86053
|
-
VTreeviewItem: VTreeviewItem
|
86054
|
-
VTreeviewGroup: VTreeviewGroup
|
86055
|
-
VStepperVertical: VStepperVertical
|
86056
|
-
VStepperVerticalItem: VStepperVerticalItem
|
86057
|
-
VStepperVerticalActions: VStepperVerticalActions
|
86049
|
+
VColorInput: VColorInput
|
86058
86050
|
VPicker: VPicker
|
86059
86051
|
VPickerTitle: VPickerTitle
|
86060
86052
|
VIconBtn: VIconBtn
|
86053
|
+
VFileUpload: VFileUpload
|
86054
|
+
VFileUploadItem: VFileUploadItem
|
86055
|
+
VStepperVertical: VStepperVertical
|
86056
|
+
VStepperVerticalItem: VStepperVerticalItem
|
86057
|
+
VStepperVerticalActions: VStepperVerticalActions
|
86058
|
+
VTreeview: VTreeview
|
86059
|
+
VTreeviewItem: VTreeviewItem
|
86060
|
+
VTreeviewGroup: VTreeviewGroup
|
86061
|
+
VTimePicker: VTimePicker
|
86062
|
+
VTimePickerClock: VTimePickerClock
|
86063
|
+
VTimePickerControls: VTimePickerControls
|
86061
86064
|
VDateInput: VDateInput
|
86062
86065
|
VPullToRefresh: VPullToRefresh
|
86063
86066
|
}
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.
|
2
|
+
* Vuetify v3.8.5-master.2025-05-14
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -1769,7 +1769,8 @@ const aliases = {
|
|
1769
1769
|
treeviewCollapse: 'mdi-menu-down',
|
1770
1770
|
treeviewExpand: 'mdi-menu-right',
|
1771
1771
|
eyeDropper: 'mdi-eyedropper',
|
1772
|
-
upload: 'mdi-cloud-upload'
|
1772
|
+
upload: 'mdi-cloud-upload',
|
1773
|
+
color: 'mdi-palette'
|
1773
1774
|
};
|
1774
1775
|
const mdi = {
|
1775
1776
|
// Not using mergeProps here, functional components merge props by default (?)
|
@@ -29233,7 +29234,7 @@ function createVuetify$1() {
|
|
29233
29234
|
};
|
29234
29235
|
});
|
29235
29236
|
}
|
29236
|
-
const version$1 = "3.8.
|
29237
|
+
const version$1 = "3.8.5-master.2025-05-14";
|
29237
29238
|
createVuetify$1.version = version$1;
|
29238
29239
|
|
29239
29240
|
// Vue's inject() can only be used in setup
|
@@ -29258,7 +29259,7 @@ const createVuetify = function () {
|
|
29258
29259
|
...options
|
29259
29260
|
});
|
29260
29261
|
};
|
29261
|
-
const version = "3.8.
|
29262
|
+
const version = "3.8.5-master.2025-05-14";
|
29262
29263
|
createVuetify.version = version;
|
29263
29264
|
|
29264
29265
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|