@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.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
|
*/
|
|
@@ -2255,6 +2255,7 @@
|
|
|
2255
2255
|
background: '#FFFFFF',
|
|
2256
2256
|
surface: '#FFFFFF',
|
|
2257
2257
|
'surface-bright': '#FFFFFF',
|
|
2258
|
+
'surface-light': '#EEEEEE',
|
|
2258
2259
|
'surface-variant': '#424242',
|
|
2259
2260
|
'on-surface-variant': '#EEEEEE',
|
|
2260
2261
|
primary: '#1867C0',
|
|
@@ -2291,6 +2292,7 @@
|
|
|
2291
2292
|
background: '#121212',
|
|
2292
2293
|
surface: '#212121',
|
|
2293
2294
|
'surface-bright': '#ccbfd6',
|
|
2295
|
+
'surface-light': '#424242',
|
|
2294
2296
|
'surface-variant': '#a3a3a3',
|
|
2295
2297
|
'on-surface-variant': '#424242',
|
|
2296
2298
|
primary: '#2196F3',
|
|
@@ -18631,6 +18633,9 @@
|
|
|
18631
18633
|
type: IconValue,
|
|
18632
18634
|
default: '$sortDesc'
|
|
18633
18635
|
},
|
|
18636
|
+
headerProps: {
|
|
18637
|
+
type: Object
|
|
18638
|
+
},
|
|
18634
18639
|
...makeLoaderProps()
|
|
18635
18640
|
}, 'VDataTableHeaders');
|
|
18636
18641
|
const VDataTableHeaders = genericComponent()({
|
|
@@ -18693,6 +18698,7 @@
|
|
|
18693
18698
|
y
|
|
18694
18699
|
} = _ref2;
|
|
18695
18700
|
const noPadding = column.key === 'data-table-select' || column.key === 'data-table-expand';
|
|
18701
|
+
const headerProps = vue.mergeProps(props.headerProps ?? {}, column.headerProps ?? {});
|
|
18696
18702
|
return vue.createVNode(VDataTableColumn, vue.mergeProps({
|
|
18697
18703
|
"tag": "th",
|
|
18698
18704
|
"align": column.align,
|
|
@@ -18713,7 +18719,7 @@
|
|
|
18713
18719
|
"fixed": column.fixed,
|
|
18714
18720
|
"lastFixed": column.lastFixed,
|
|
18715
18721
|
"noPadding": noPadding
|
|
18716
|
-
},
|
|
18722
|
+
}, headerProps), {
|
|
18717
18723
|
default: () => {
|
|
18718
18724
|
const columnSlotName = `header.${column.key}`;
|
|
18719
18725
|
const columnSlotProps = {
|
|
@@ -19503,7 +19509,7 @@
|
|
|
19503
19509
|
"style": {
|
|
19504
19510
|
height: convertToUnit(props.height)
|
|
19505
19511
|
}
|
|
19506
|
-
}, [vue.createVNode("table", null, [vue.createVNode("thead", null, [vue.createVNode(VDataTableHeaders, vue.mergeProps(dataTableHeadersProps, {
|
|
19512
|
+
}, [vue.createVNode("table", null, [slots.colgroup?.(slotProps.value), vue.createVNode("thead", null, [vue.createVNode(VDataTableHeaders, vue.mergeProps(dataTableHeadersProps, {
|
|
19507
19513
|
"sticky": props.fixedHeader
|
|
19508
19514
|
}), slots)]), vue.createVNode("tbody", null, [vue.createVNode("tr", {
|
|
19509
19515
|
"ref": markerRef,
|
|
@@ -26053,7 +26059,7 @@
|
|
|
26053
26059
|
date
|
|
26054
26060
|
};
|
|
26055
26061
|
}
|
|
26056
|
-
const version$1 = "3.4.10-dev.2024-01-
|
|
26062
|
+
const version$1 = "3.4.10-dev.2024-01-18";
|
|
26057
26063
|
createVuetify$1.version = version$1;
|
|
26058
26064
|
|
|
26059
26065
|
// Vue's inject() can only be used in setup
|
|
@@ -26067,7 +26073,7 @@
|
|
|
26067
26073
|
|
|
26068
26074
|
/* eslint-disable local-rules/sort-imports */
|
|
26069
26075
|
|
|
26070
|
-
const version = "3.4.10-dev.2024-01-
|
|
26076
|
+
const version = "3.4.10-dev.2024-01-18";
|
|
26071
26077
|
|
|
26072
26078
|
/* eslint-disable local-rules/sort-imports */
|
|
26073
26079
|
|