@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.
Files changed (53) hide show
  1. package/CHANGELOG.md +5 -2
  2. package/dist/json/attributes.json +12 -0
  3. package/dist/json/importMap-labs.json +8 -8
  4. package/dist/json/importMap.json +110 -110
  5. package/dist/json/tags.json +3 -0
  6. package/dist/json/web-types.json +103 -1
  7. package/dist/vuetify-labs.css +1363 -1360
  8. package/dist/vuetify-labs.d.ts +39 -2
  9. package/dist/vuetify-labs.esm.js +11 -5
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +11 -5
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +631 -630
  14. package/dist/vuetify.d.ts +73 -36
  15. package/dist/vuetify.esm.js +11 -5
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +11 -5
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +9 -9
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAlert/VAlert.css +2 -2
  23. package/lib/components/VAlert/_variables.scss +2 -2
  24. package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
  26. package/lib/components/VCombobox/VCombobox.css +1 -1
  27. package/lib/components/VCombobox/VCombobox.sass +1 -1
  28. package/lib/components/VDataTable/VDataTable.css +2 -1
  29. package/lib/components/VDataTable/VDataTable.sass +2 -1
  30. package/lib/components/VDataTable/VDataTableHeaders.mjs +6 -2
  31. package/lib/components/VDataTable/VDataTableHeaders.mjs.map +1 -1
  32. package/lib/components/VDataTable/VDataTableVirtual.mjs +1 -1
  33. package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
  34. package/lib/components/VDataTable/index.d.mts +39 -2
  35. package/lib/components/VSlider/VSliderTrack.css +1 -1
  36. package/lib/components/VSlider/VSliderTrack.sass +1 -1
  37. package/lib/components/VSlider/_variables.scss +1 -0
  38. package/lib/components/VSystemBar/VSystemBar.css +2 -2
  39. package/lib/components/VSystemBar/_variables.scss +2 -2
  40. package/lib/components/VTimeline/VTimeline.css +1 -1
  41. package/lib/components/VTimeline/_variables.scss +1 -1
  42. package/lib/components/VToolbar/VToolbar.css +2 -2
  43. package/lib/components/VToolbar/_variables.scss +2 -2
  44. package/lib/components/index.d.mts +39 -2
  45. package/lib/composables/theme.mjs +2 -0
  46. package/lib/composables/theme.mjs.map +1 -1
  47. package/lib/entry-bundler.mjs +1 -1
  48. package/lib/framework.mjs +1 -1
  49. package/lib/index.d.mts +34 -34
  50. package/lib/labs/VCalendar/VCalendar.css +4 -2
  51. package/lib/labs/VCalendar/VCalendar.sass +4 -2
  52. package/lib/labs/VCalendar/_variables.scss +5 -0
  53. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.4.10-dev.2024-01-16
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
- }, column.headerProps), {
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-16";
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-16";
26076
+ const version = "3.4.10-dev.2024-01-18";
26071
26077
 
26072
26078
  /* eslint-disable local-rules/sort-imports */
26073
26079