@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-labs.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
|
}>[];
|
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-17
|
|
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',
|
|
@@ -19499,7 +19501,7 @@ const VDataTableVirtual = genericComponent()({
|
|
|
19499
19501
|
"style": {
|
|
19500
19502
|
height: convertToUnit(props.height)
|
|
19501
19503
|
}
|
|
19502
|
-
}, [createVNode("table", null, [createVNode("thead", null, [createVNode(VDataTableHeaders, mergeProps(dataTableHeadersProps, {
|
|
19504
|
+
}, [createVNode("table", null, [slots.colgroup?.(slotProps.value), createVNode("thead", null, [createVNode(VDataTableHeaders, mergeProps(dataTableHeadersProps, {
|
|
19503
19505
|
"sticky": props.fixedHeader
|
|
19504
19506
|
}), slots)]), createVNode("tbody", null, [createVNode("tr", {
|
|
19505
19507
|
"ref": markerRef,
|
|
@@ -26049,7 +26051,7 @@ function createVuetify$1() {
|
|
|
26049
26051
|
date
|
|
26050
26052
|
};
|
|
26051
26053
|
}
|
|
26052
|
-
const version$1 = "3.4.10-dev.2024-01-
|
|
26054
|
+
const version$1 = "3.4.10-dev.2024-01-17";
|
|
26053
26055
|
createVuetify$1.version = version$1;
|
|
26054
26056
|
|
|
26055
26057
|
// Vue's inject() can only be used in setup
|
|
@@ -26063,7 +26065,7 @@ function inject(key) {
|
|
|
26063
26065
|
|
|
26064
26066
|
/* eslint-disable local-rules/sort-imports */
|
|
26065
26067
|
|
|
26066
|
-
const version = "3.4.10-dev.2024-01-
|
|
26068
|
+
const version = "3.4.10-dev.2024-01-17";
|
|
26067
26069
|
|
|
26068
26070
|
/* eslint-disable local-rules/sort-imports */
|
|
26069
26071
|
|