@vuetify/nightly 3.4.10-dev.2024-01-16 → 3.4.10-dev.2024-01-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/CHANGELOG.md +4 -2
- package/dist/json/importMap.json +128 -128
- package/dist/json/web-types.json +76 -1
- package/dist/vuetify-labs.css +954 -952
- package/dist/vuetify-labs.d.ts +9 -2
- package/dist/vuetify-labs.esm.js +6 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +6 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +638 -638
- package/dist/vuetify.d.ts +45 -38
- package/dist/vuetify.esm.js +6 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +6 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +2 -2
- package/lib/components/VAlert/_variables.scss +2 -2
- package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
- package/lib/components/VCombobox/VCombobox.css +1 -1
- package/lib/components/VCombobox/VCombobox.sass +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +9 -2
- package/lib/components/VSlider/VSliderTrack.css +1 -1
- package/lib/components/VSlider/VSliderTrack.sass +1 -1
- package/lib/components/VSlider/_variables.scss +1 -0
- package/lib/components/VSystemBar/VSystemBar.css +2 -2
- package/lib/components/VSystemBar/_variables.scss +2 -2
- package/lib/components/VTimeline/VTimeline.css +1 -1
- package/lib/components/VTimeline/_variables.scss +1 -1
- package/lib/components/VToolbar/VToolbar.css +2 -2
- package/lib/components/VToolbar/_variables.scss +2 -2
- package/lib/components/index.d.mts +9 -2
- package/lib/composables/theme.mjs +2 -0
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +36 -36
- package/lib/labs/VCalendar/VCalendar.css +4 -2
- package/lib/labs/VCalendar/VCalendar.sass +4 -2
- package/lib/labs/VCalendar/_variables.scss +5 -0
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
|
@@ -24448,6 +24448,7 @@ declare const VDataTableFooter: {
|
|
|
24448
24448
|
|
|
24449
24449
|
type VDataTableVirtualSlotProps<T> = Omit<VDataTableSlotProps<T>, 'setItemsPerPage' | 'page' | 'pageCount' | 'itemsPerPage'>;
|
|
24450
24450
|
type VDataTableVirtualSlots<T> = VDataTableRowsSlots<T> & VDataTableHeadersSlots & {
|
|
24451
|
+
colgroup: VDataTableVirtualSlotProps<T>;
|
|
24451
24452
|
top: VDataTableVirtualSlotProps<T>;
|
|
24452
24453
|
headers: VDataTableHeadersSlots['headers'];
|
|
24453
24454
|
bottom: VDataTableVirtualSlotProps<T>;
|
|
@@ -24529,7 +24530,7 @@ declare const VDataTableVirtual: {
|
|
|
24529
24530
|
'update:options': (value: any) => boolean;
|
|
24530
24531
|
'update:groupBy': (value: any) => boolean;
|
|
24531
24532
|
'update:expanded': (value: any) => boolean;
|
|
24532
|
-
}, "$children" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body.prepend" | "v-slot:body.append">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
24533
|
+
}, "$children" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:colgroup" | "v-slot:body.prepend" | "v-slot:body.append">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
24533
24534
|
style: vue.StyleValue;
|
|
24534
24535
|
expanded: readonly string[];
|
|
24535
24536
|
tag: string;
|
|
@@ -24713,6 +24714,9 @@ declare const VDataTableVirtual: {
|
|
|
24713
24714
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
24714
24715
|
[key: string]: any;
|
|
24715
24716
|
}>[];
|
|
24717
|
+
colgroup: (arg: VDataTableVirtualSlotProps<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
24718
|
+
[key: string]: any;
|
|
24719
|
+
}>[];
|
|
24716
24720
|
top: (arg: VDataTableVirtualSlotProps<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
24717
24721
|
[key: string]: any;
|
|
24718
24722
|
}>[];
|
|
@@ -24897,7 +24901,7 @@ declare const VDataTableVirtual: {
|
|
|
24897
24901
|
'update:options': (value: any) => boolean;
|
|
24898
24902
|
'update:groupBy': (value: any) => boolean;
|
|
24899
24903
|
'update:expanded': (value: any) => boolean;
|
|
24900
|
-
}, "$children" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:body.prepend" | "v-slot:body.append">, string, {
|
|
24904
|
+
}, "$children" | "v-slots" | "items" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:item" | "itemValue" | "v-slot:no-data" | "cellProps" | "itemSelectable" | "rowProps" | "v-slot:headers" | `v-slot:header.${string}` | "v-slot:data-table-group" | "v-slot:data-table-select" | `v-slot:item.${string}` | "v-slot:loading" | "v-slot:group-header" | "v-slot:expanded-row" | "v-slot:top" | "v-slot:bottom" | "v-slot:colgroup" | "v-slot:body.prepend" | "v-slot:body.append">, string, {
|
|
24901
24905
|
style: vue.StyleValue;
|
|
24902
24906
|
expanded: readonly string[];
|
|
24903
24907
|
tag: string;
|
|
@@ -25017,6 +25021,9 @@ declare const VDataTableVirtual: {
|
|
|
25017
25021
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
25018
25022
|
[key: string]: any;
|
|
25019
25023
|
}>[];
|
|
25024
|
+
colgroup: (arg: VDataTableVirtualSlotProps<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
25025
|
+
[key: string]: any;
|
|
25026
|
+
}>[];
|
|
25020
25027
|
top: (arg: VDataTableVirtualSlotProps<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
25021
25028
|
[key: string]: any;
|
|
25022
25029
|
}>[];
|
|
@@ -67106,20 +67113,22 @@ declare module '@vue/runtime-core' {
|
|
|
67106
67113
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
67107
67114
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
67108
67115
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
67116
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
67117
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
67109
67118
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
67110
67119
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
67111
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
67112
67120
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
67113
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
67114
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
67115
67121
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
67116
67122
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
67117
67123
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
67118
|
-
|
|
67119
|
-
|
|
67120
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
67124
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
67125
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
67121
67126
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
67127
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
67122
67128
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
67129
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
67130
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
67131
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
67123
67132
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
67124
67133
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
67125
67134
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
@@ -67129,22 +67138,13 @@ declare module '@vue/runtime-core' {
|
|
|
67129
67138
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
67130
67139
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
67131
67140
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
67141
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
67142
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
67143
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
67132
67144
|
VCode: typeof import('vuetify/components')['VCode']
|
|
67133
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
67134
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
67135
67145
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
67136
67146
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
67137
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
67138
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
67139
67147
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
67140
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
|
67141
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
67142
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
67143
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
67144
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
67145
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
67146
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
67147
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
67148
67148
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
67149
67149
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
67150
67150
|
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
@@ -67152,13 +67152,20 @@ declare module '@vue/runtime-core' {
|
|
|
67152
67152
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
67153
67153
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
67154
67154
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
67155
|
-
|
|
67156
|
-
|
|
67155
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
67156
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
67157
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
67158
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
67159
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
67160
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
67161
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
67157
67162
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
67158
67163
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
67159
67164
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
67160
67165
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
67166
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
67161
67167
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
67168
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
67162
67169
|
VField: typeof import('vuetify/components')['VField']
|
|
67163
67170
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
67164
67171
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
@@ -67166,14 +67173,13 @@ declare module '@vue/runtime-core' {
|
|
|
67166
67173
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
67167
67174
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
67168
67175
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
67176
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
67169
67177
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
67170
67178
|
VImg: typeof import('vuetify/components')['VImg']
|
|
67171
67179
|
VInput: typeof import('vuetify/components')['VInput']
|
|
67180
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
67172
67181
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
67173
67182
|
VItem: typeof import('vuetify/components')['VItem']
|
|
67174
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
|
67175
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
67176
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
67177
67183
|
VList: typeof import('vuetify/components')['VList']
|
|
67178
67184
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
67179
67185
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -67183,57 +67189,58 @@ declare module '@vue/runtime-core' {
|
|
|
67183
67189
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
67184
67190
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
67185
67191
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
67186
|
-
|
|
67192
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
67187
67193
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
67194
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
67195
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
67188
67196
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
67189
67197
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
67190
67198
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
67191
67199
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
67192
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
67193
67200
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
67201
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
67194
67202
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
67195
67203
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
67196
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
|
67197
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
67198
67204
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
67199
67205
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
67200
|
-
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
67201
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
67202
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
67203
67206
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
67207
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
67204
67208
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
67209
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
67210
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
67205
67211
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
67206
67212
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
67207
67213
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
67208
67214
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
67209
67215
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
67210
67216
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
67217
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
67218
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
67219
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
67211
67220
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
67212
67221
|
VTab: typeof import('vuetify/components')['VTab']
|
|
67213
|
-
|
|
67214
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
67222
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
67215
67223
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
67216
67224
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
67217
67225
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
67218
67226
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
67219
|
-
VTable: typeof import('vuetify/components')['VTable']
|
|
67220
67227
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
67221
67228
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
67222
67229
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
67223
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
67224
67230
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
67225
67231
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
67232
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
67226
67233
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
67227
|
-
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
67228
67234
|
VForm: typeof import('vuetify/components')['VForm']
|
|
67235
|
+
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
67229
67236
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
67230
67237
|
VCol: typeof import('vuetify/components')['VCol']
|
|
67231
67238
|
VRow: typeof import('vuetify/components')['VRow']
|
|
67232
67239
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
67233
67240
|
VHover: typeof import('vuetify/components')['VHover']
|
|
67234
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
|
67235
67241
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
67236
67242
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
67243
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
|
67237
67244
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
67238
67245
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
67239
67246
|
VParallax: typeof import('vuetify/components')['VParallax']
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.4.10-dev.2024-01-
|
|
2
|
+
* Vuetify v3.4.10-dev.2024-01-17
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -2245,6 +2245,7 @@ function genDefaults() {
|
|
|
2245
2245
|
background: '#FFFFFF',
|
|
2246
2246
|
surface: '#FFFFFF',
|
|
2247
2247
|
'surface-bright': '#FFFFFF',
|
|
2248
|
+
'surface-light': '#EEEEEE',
|
|
2248
2249
|
'surface-variant': '#424242',
|
|
2249
2250
|
'on-surface-variant': '#EEEEEE',
|
|
2250
2251
|
primary: '#1867C0',
|
|
@@ -2281,6 +2282,7 @@ function genDefaults() {
|
|
|
2281
2282
|
background: '#121212',
|
|
2282
2283
|
surface: '#212121',
|
|
2283
2284
|
'surface-bright': '#ccbfd6',
|
|
2285
|
+
'surface-light': '#424242',
|
|
2284
2286
|
'surface-variant': '#a3a3a3',
|
|
2285
2287
|
'on-surface-variant': '#424242',
|
|
2286
2288
|
primary: '#2196F3',
|
|
@@ -19493,7 +19495,7 @@ const VDataTableVirtual = genericComponent()({
|
|
|
19493
19495
|
"style": {
|
|
19494
19496
|
height: convertToUnit(props.height)
|
|
19495
19497
|
}
|
|
19496
|
-
}, [createVNode("table", null, [createVNode("thead", null, [createVNode(VDataTableHeaders, mergeProps(dataTableHeadersProps, {
|
|
19498
|
+
}, [createVNode("table", null, [slots.colgroup?.(slotProps.value), createVNode("thead", null, [createVNode(VDataTableHeaders, mergeProps(dataTableHeadersProps, {
|
|
19497
19499
|
"sticky": props.fixedHeader
|
|
19498
19500
|
}), slots)]), createVNode("tbody", null, [createVNode("tr", {
|
|
19499
19501
|
"ref": markerRef,
|
|
@@ -25491,7 +25493,7 @@ function createVuetify$1() {
|
|
|
25491
25493
|
date
|
|
25492
25494
|
};
|
|
25493
25495
|
}
|
|
25494
|
-
const version$1 = "3.4.10-dev.2024-01-
|
|
25496
|
+
const version$1 = "3.4.10-dev.2024-01-17";
|
|
25495
25497
|
createVuetify$1.version = version$1;
|
|
25496
25498
|
|
|
25497
25499
|
// Vue's inject() can only be used in setup
|
|
@@ -25516,7 +25518,7 @@ const createVuetify = function () {
|
|
|
25516
25518
|
...options
|
|
25517
25519
|
});
|
|
25518
25520
|
};
|
|
25519
|
-
const version = "3.4.10-dev.2024-01-
|
|
25521
|
+
const version = "3.4.10-dev.2024-01-17";
|
|
25520
25522
|
createVuetify.version = version;
|
|
25521
25523
|
|
|
25522
25524
|
export { components, createVuetify, directives, useDate, useDefaults, useDisplay, useLayout, useLocale, useRtl, useTheme, version };
|