@vuetify/nightly 3.4.10-dev.2024-01-16 → 3.4.10-dev.2024-01-18
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 +5 -2
- package/dist/json/attributes.json +12 -0
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +110 -110
- package/dist/json/tags.json +3 -0
- package/dist/json/web-types.json +103 -1
- package/dist/vuetify-labs.css +1363 -1360
- package/dist/vuetify-labs.d.ts +39 -2
- package/dist/vuetify-labs.esm.js +11 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +11 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +631 -630
- package/dist/vuetify.d.ts +73 -36
- package/dist/vuetify.esm.js +11 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +11 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -9
- 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/VDataTable.css +2 -1
- package/lib/components/VDataTable/VDataTable.sass +2 -1
- package/lib/components/VDataTable/VDataTableHeaders.mjs +6 -2
- package/lib/components/VDataTable/VDataTableHeaders.mjs.map +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 +39 -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 +39 -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 +34 -34
- 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-labs.d.ts
CHANGED
|
@@ -23142,6 +23142,7 @@ declare const VDataTable: {
|
|
|
23142
23142
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
23143
23143
|
filterKeys?: FilterKeys | undefined;
|
|
23144
23144
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
23145
|
+
headerProps?: Record<string, any> | undefined;
|
|
23145
23146
|
} & {
|
|
23146
23147
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
23147
23148
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -23234,6 +23235,7 @@ declare const VDataTable: {
|
|
|
23234
23235
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
23235
23236
|
filterKeys?: FilterKeys | undefined;
|
|
23236
23237
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
23238
|
+
headerProps?: Record<string, any> | undefined;
|
|
23237
23239
|
} & {
|
|
23238
23240
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
23239
23241
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -23491,6 +23493,7 @@ declare const VDataTable: {
|
|
|
23491
23493
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
23492
23494
|
filterKeys?: FilterKeys | undefined;
|
|
23493
23495
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
23496
|
+
headerProps?: Record<string, any> | undefined;
|
|
23494
23497
|
} & {
|
|
23495
23498
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
23496
23499
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -23621,6 +23624,7 @@ declare const VDataTable: {
|
|
|
23621
23624
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
23622
23625
|
filterKeys?: FilterKeys | undefined;
|
|
23623
23626
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
23627
|
+
headerProps?: Record<string, any> | undefined;
|
|
23624
23628
|
} & {
|
|
23625
23629
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
23626
23630
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -23912,6 +23916,9 @@ declare const VDataTable: {
|
|
|
23912
23916
|
type: vue.PropType<IconValue>;
|
|
23913
23917
|
default: string;
|
|
23914
23918
|
};
|
|
23919
|
+
headerProps: {
|
|
23920
|
+
type: vue.PropType<Record<string, any>>;
|
|
23921
|
+
};
|
|
23915
23922
|
sortBy: {
|
|
23916
23923
|
type: vue.PropType<readonly SortItem[]>;
|
|
23917
23924
|
default: () => never[];
|
|
@@ -24086,6 +24093,9 @@ declare const VDataTable: {
|
|
|
24086
24093
|
type: vue.PropType<IconValue>;
|
|
24087
24094
|
default: string;
|
|
24088
24095
|
};
|
|
24096
|
+
headerProps: {
|
|
24097
|
+
type: vue.PropType<Record<string, any>>;
|
|
24098
|
+
};
|
|
24089
24099
|
sortBy: {
|
|
24090
24100
|
type: vue.PropType<readonly SortItem[]>;
|
|
24091
24101
|
default: () => never[];
|
|
@@ -24448,6 +24458,7 @@ declare const VDataTableFooter: {
|
|
|
24448
24458
|
|
|
24449
24459
|
type VDataTableVirtualSlotProps<T> = Omit<VDataTableSlotProps<T>, 'setItemsPerPage' | 'page' | 'pageCount' | 'itemsPerPage'>;
|
|
24450
24460
|
type VDataTableVirtualSlots<T> = VDataTableRowsSlots<T> & VDataTableHeadersSlots & {
|
|
24461
|
+
colgroup: VDataTableVirtualSlotProps<T>;
|
|
24451
24462
|
top: VDataTableVirtualSlotProps<T>;
|
|
24452
24463
|
headers: VDataTableHeadersSlots['headers'];
|
|
24453
24464
|
bottom: VDataTableVirtualSlotProps<T>;
|
|
@@ -24518,6 +24529,7 @@ declare const VDataTableVirtual: {
|
|
|
24518
24529
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
24519
24530
|
filterKeys?: FilterKeys | undefined;
|
|
24520
24531
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
24532
|
+
headerProps?: Record<string, any> | undefined;
|
|
24521
24533
|
} & {
|
|
24522
24534
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
24523
24535
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -24529,7 +24541,7 @@ declare const VDataTableVirtual: {
|
|
|
24529
24541
|
'update:options': (value: any) => boolean;
|
|
24530
24542
|
'update:groupBy': (value: any) => boolean;
|
|
24531
24543
|
'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 & {
|
|
24544
|
+
}, "$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
24545
|
style: vue.StyleValue;
|
|
24534
24546
|
expanded: readonly string[];
|
|
24535
24547
|
tag: string;
|
|
@@ -24588,6 +24600,7 @@ declare const VDataTableVirtual: {
|
|
|
24588
24600
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
24589
24601
|
filterKeys?: FilterKeys | undefined;
|
|
24590
24602
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
24603
|
+
headerProps?: Record<string, any> | undefined;
|
|
24591
24604
|
} & {
|
|
24592
24605
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
24593
24606
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -24713,6 +24726,9 @@ declare const VDataTableVirtual: {
|
|
|
24713
24726
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
24714
24727
|
[key: string]: any;
|
|
24715
24728
|
}>[];
|
|
24729
|
+
colgroup: (arg: VDataTableVirtualSlotProps<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
24730
|
+
[key: string]: any;
|
|
24731
|
+
}>[];
|
|
24716
24732
|
top: (arg: VDataTableVirtualSlotProps<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
24717
24733
|
[key: string]: any;
|
|
24718
24734
|
}>[];
|
|
@@ -24791,6 +24807,7 @@ declare const VDataTableVirtual: {
|
|
|
24791
24807
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
24792
24808
|
filterKeys?: FilterKeys | undefined;
|
|
24793
24809
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
24810
|
+
headerProps?: Record<string, any> | undefined;
|
|
24794
24811
|
} & {
|
|
24795
24812
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
24796
24813
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -24886,6 +24903,7 @@ declare const VDataTableVirtual: {
|
|
|
24886
24903
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
24887
24904
|
filterKeys?: FilterKeys | undefined;
|
|
24888
24905
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
24906
|
+
headerProps?: Record<string, any> | undefined;
|
|
24889
24907
|
} & {
|
|
24890
24908
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
24891
24909
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -24897,7 +24915,7 @@ declare const VDataTableVirtual: {
|
|
|
24897
24915
|
'update:options': (value: any) => boolean;
|
|
24898
24916
|
'update:groupBy': (value: any) => boolean;
|
|
24899
24917
|
'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, {
|
|
24918
|
+
}, "$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
24919
|
style: vue.StyleValue;
|
|
24902
24920
|
expanded: readonly string[];
|
|
24903
24921
|
tag: string;
|
|
@@ -25017,6 +25035,9 @@ declare const VDataTableVirtual: {
|
|
|
25017
25035
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
25018
25036
|
[key: string]: any;
|
|
25019
25037
|
}>[];
|
|
25038
|
+
colgroup: (arg: VDataTableVirtualSlotProps<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
25039
|
+
[key: string]: any;
|
|
25040
|
+
}>[];
|
|
25020
25041
|
top: (arg: VDataTableVirtualSlotProps<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
25021
25042
|
[key: string]: any;
|
|
25022
25043
|
}>[];
|
|
@@ -25093,6 +25114,9 @@ declare const VDataTableVirtual: {
|
|
|
25093
25114
|
type: vue.PropType<IconValue>;
|
|
25094
25115
|
default: string;
|
|
25095
25116
|
};
|
|
25117
|
+
headerProps: {
|
|
25118
|
+
type: vue.PropType<Record<string, any>>;
|
|
25119
|
+
};
|
|
25096
25120
|
sortBy: {
|
|
25097
25121
|
type: vue.PropType<readonly SortItem[]>;
|
|
25098
25122
|
default: () => never[];
|
|
@@ -25212,6 +25236,9 @@ declare const VDataTableVirtual: {
|
|
|
25212
25236
|
type: vue.PropType<IconValue>;
|
|
25213
25237
|
default: string;
|
|
25214
25238
|
};
|
|
25239
|
+
headerProps: {
|
|
25240
|
+
type: vue.PropType<Record<string, any>>;
|
|
25241
|
+
};
|
|
25215
25242
|
sortBy: {
|
|
25216
25243
|
type: vue.PropType<readonly SortItem[]>;
|
|
25217
25244
|
default: () => never[];
|
|
@@ -25359,6 +25386,7 @@ declare const VDataTableServer: {
|
|
|
25359
25386
|
}[] | undefined;
|
|
25360
25387
|
theme?: string | undefined;
|
|
25361
25388
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
25389
|
+
headerProps?: Record<string, any> | undefined;
|
|
25362
25390
|
} & {
|
|
25363
25391
|
"onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
|
|
25364
25392
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -25445,6 +25473,7 @@ declare const VDataTableServer: {
|
|
|
25445
25473
|
}[] | undefined;
|
|
25446
25474
|
theme?: string | undefined;
|
|
25447
25475
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
25476
|
+
headerProps?: Record<string, any> | undefined;
|
|
25448
25477
|
} & {
|
|
25449
25478
|
"onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
|
|
25450
25479
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -25695,6 +25724,7 @@ declare const VDataTableServer: {
|
|
|
25695
25724
|
}[] | undefined;
|
|
25696
25725
|
theme?: string | undefined;
|
|
25697
25726
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
25727
|
+
headerProps?: Record<string, any> | undefined;
|
|
25698
25728
|
} & {
|
|
25699
25729
|
"onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
|
|
25700
25730
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -25818,6 +25848,7 @@ declare const VDataTableServer: {
|
|
|
25818
25848
|
}[] | undefined;
|
|
25819
25849
|
theme?: string | undefined;
|
|
25820
25850
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
25851
|
+
headerProps?: Record<string, any> | undefined;
|
|
25821
25852
|
} & {
|
|
25822
25853
|
"onUpdate:sortBy"?: ((sortBy: any) => any) | undefined;
|
|
25823
25854
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -26097,6 +26128,9 @@ declare const VDataTableServer: {
|
|
|
26097
26128
|
type: vue.PropType<IconValue>;
|
|
26098
26129
|
default: string;
|
|
26099
26130
|
};
|
|
26131
|
+
headerProps: {
|
|
26132
|
+
type: vue.PropType<Record<string, any>>;
|
|
26133
|
+
};
|
|
26100
26134
|
sortBy: {
|
|
26101
26135
|
type: vue.PropType<readonly SortItem[]>;
|
|
26102
26136
|
default: () => never[];
|
|
@@ -26267,6 +26301,9 @@ declare const VDataTableServer: {
|
|
|
26267
26301
|
type: vue.PropType<IconValue>;
|
|
26268
26302
|
default: string;
|
|
26269
26303
|
};
|
|
26304
|
+
headerProps: {
|
|
26305
|
+
type: vue.PropType<Record<string, any>>;
|
|
26306
|
+
};
|
|
26270
26307
|
sortBy: {
|
|
26271
26308
|
type: vue.PropType<readonly SortItem[]>;
|
|
26272
26309
|
default: () => never[];
|
package/dist/vuetify-labs.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-18
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -2251,6 +2251,7 @@ function genDefaults() {
|
|
|
2251
2251
|
background: '#FFFFFF',
|
|
2252
2252
|
surface: '#FFFFFF',
|
|
2253
2253
|
'surface-bright': '#FFFFFF',
|
|
2254
|
+
'surface-light': '#EEEEEE',
|
|
2254
2255
|
'surface-variant': '#424242',
|
|
2255
2256
|
'on-surface-variant': '#EEEEEE',
|
|
2256
2257
|
primary: '#1867C0',
|
|
@@ -2287,6 +2288,7 @@ function genDefaults() {
|
|
|
2287
2288
|
background: '#121212',
|
|
2288
2289
|
surface: '#212121',
|
|
2289
2290
|
'surface-bright': '#ccbfd6',
|
|
2291
|
+
'surface-light': '#424242',
|
|
2290
2292
|
'surface-variant': '#a3a3a3',
|
|
2291
2293
|
'on-surface-variant': '#424242',
|
|
2292
2294
|
primary: '#2196F3',
|
|
@@ -18627,6 +18629,9 @@ const makeVDataTableHeadersProps = propsFactory({
|
|
|
18627
18629
|
type: IconValue,
|
|
18628
18630
|
default: '$sortDesc'
|
|
18629
18631
|
},
|
|
18632
|
+
headerProps: {
|
|
18633
|
+
type: Object
|
|
18634
|
+
},
|
|
18630
18635
|
...makeLoaderProps()
|
|
18631
18636
|
}, 'VDataTableHeaders');
|
|
18632
18637
|
const VDataTableHeaders = genericComponent()({
|
|
@@ -18689,6 +18694,7 @@ const VDataTableHeaders = genericComponent()({
|
|
|
18689
18694
|
y
|
|
18690
18695
|
} = _ref2;
|
|
18691
18696
|
const noPadding = column.key === 'data-table-select' || column.key === 'data-table-expand';
|
|
18697
|
+
const headerProps = mergeProps(props.headerProps ?? {}, column.headerProps ?? {});
|
|
18692
18698
|
return createVNode(VDataTableColumn, mergeProps({
|
|
18693
18699
|
"tag": "th",
|
|
18694
18700
|
"align": column.align,
|
|
@@ -18709,7 +18715,7 @@ const VDataTableHeaders = genericComponent()({
|
|
|
18709
18715
|
"fixed": column.fixed,
|
|
18710
18716
|
"lastFixed": column.lastFixed,
|
|
18711
18717
|
"noPadding": noPadding
|
|
18712
|
-
},
|
|
18718
|
+
}, headerProps), {
|
|
18713
18719
|
default: () => {
|
|
18714
18720
|
const columnSlotName = `header.${column.key}`;
|
|
18715
18721
|
const columnSlotProps = {
|
|
@@ -19499,7 +19505,7 @@ const VDataTableVirtual = genericComponent()({
|
|
|
19499
19505
|
"style": {
|
|
19500
19506
|
height: convertToUnit(props.height)
|
|
19501
19507
|
}
|
|
19502
|
-
}, [createVNode("table", null, [createVNode("thead", null, [createVNode(VDataTableHeaders, mergeProps(dataTableHeadersProps, {
|
|
19508
|
+
}, [createVNode("table", null, [slots.colgroup?.(slotProps.value), createVNode("thead", null, [createVNode(VDataTableHeaders, mergeProps(dataTableHeadersProps, {
|
|
19503
19509
|
"sticky": props.fixedHeader
|
|
19504
19510
|
}), slots)]), createVNode("tbody", null, [createVNode("tr", {
|
|
19505
19511
|
"ref": markerRef,
|
|
@@ -26049,7 +26055,7 @@ function createVuetify$1() {
|
|
|
26049
26055
|
date
|
|
26050
26056
|
};
|
|
26051
26057
|
}
|
|
26052
|
-
const version$1 = "3.4.10-dev.2024-01-
|
|
26058
|
+
const version$1 = "3.4.10-dev.2024-01-18";
|
|
26053
26059
|
createVuetify$1.version = version$1;
|
|
26054
26060
|
|
|
26055
26061
|
// Vue's inject() can only be used in setup
|
|
@@ -26063,7 +26069,7 @@ function inject(key) {
|
|
|
26063
26069
|
|
|
26064
26070
|
/* eslint-disable local-rules/sort-imports */
|
|
26065
26071
|
|
|
26066
|
-
const version = "3.4.10-dev.2024-01-
|
|
26072
|
+
const version = "3.4.10-dev.2024-01-18";
|
|
26067
26073
|
|
|
26068
26074
|
/* eslint-disable local-rules/sort-imports */
|
|
26069
26075
|
|