@vuetify/nightly 3.9.3-master.2025-07-31 → 3.9.3-master.2025-08-01

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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.3-master.2025-07-31
2
+ * Vuetify v3.9.3-master.2025-08-01
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -2874,9 +2874,9 @@
2874
2874
 
2875
2875
  const makeVAppProps = propsFactory({
2876
2876
  ...makeComponentProps(),
2877
- ...makeLayoutProps({
2877
+ ...omit(makeLayoutProps({
2878
2878
  fullHeight: true
2879
- }),
2879
+ }), ['fullHeight']),
2880
2880
  ...makeThemeProps()
2881
2881
  }, 'VApp');
2882
2882
  const VApp = genericComponent()({
@@ -21701,8 +21701,6 @@
21701
21701
  }
21702
21702
  });
21703
21703
 
21704
- // Types
21705
-
21706
21704
  const makeVTableProps = propsFactory({
21707
21705
  fixedHeader: Boolean,
21708
21706
  fixedFooter: Boolean,
@@ -21732,26 +21730,37 @@
21732
21730
  const {
21733
21731
  densityClasses
21734
21732
  } = useDensity(props);
21735
- useRender(() => vue.createVNode(props.tag, {
21736
- "class": vue.normalizeClass(['v-table', {
21737
- 'v-table--fixed-height': !!props.height,
21738
- 'v-table--fixed-header': props.fixedHeader,
21739
- 'v-table--fixed-footer': props.fixedFooter,
21740
- 'v-table--has-top': !!slots.top,
21741
- 'v-table--has-bottom': !!slots.bottom,
21742
- 'v-table--hover': props.hover,
21743
- 'v-table--striped-even': props.striped === 'even',
21744
- 'v-table--striped-odd': props.striped === 'odd'
21745
- }, themeClasses.value, densityClasses.value, props.class]),
21746
- "style": vue.normalizeStyle(props.style)
21747
- }, {
21748
- default: () => [slots.top?.(), slots.default ? vue.createElementVNode("div", {
21749
- "class": "v-table__wrapper",
21750
- "style": {
21751
- height: convertToUnit(props.height)
21733
+ useRender(() => {
21734
+ const tableContentDefaults = {
21735
+ VCheckboxBtn: {
21736
+ density: props.density
21752
21737
  }
21753
- }, [vue.createElementVNode("table", null, [slots.default()])]) : slots.wrapper?.(), slots.bottom?.()]
21754
- }));
21738
+ };
21739
+ return vue.createVNode(props.tag, {
21740
+ "class": vue.normalizeClass(['v-table', {
21741
+ 'v-table--fixed-height': !!props.height,
21742
+ 'v-table--fixed-header': props.fixedHeader,
21743
+ 'v-table--fixed-footer': props.fixedFooter,
21744
+ 'v-table--has-top': !!slots.top,
21745
+ 'v-table--has-bottom': !!slots.bottom,
21746
+ 'v-table--hover': props.hover,
21747
+ 'v-table--striped-even': props.striped === 'even',
21748
+ 'v-table--striped-odd': props.striped === 'odd'
21749
+ }, themeClasses.value, densityClasses.value, props.class]),
21750
+ "style": vue.normalizeStyle(props.style)
21751
+ }, {
21752
+ default: () => [slots.top?.(), vue.createVNode(VDefaultsProvider, {
21753
+ "defaults": tableContentDefaults
21754
+ }, {
21755
+ default: () => [slots.default ? vue.createElementVNode("div", {
21756
+ "class": "v-table__wrapper",
21757
+ "style": {
21758
+ height: convertToUnit(props.height)
21759
+ }
21760
+ }, [vue.createElementVNode("table", null, [slots.default()])]) : slots.wrapper?.()]
21761
+ }), slots.bottom?.()]
21762
+ });
21763
+ });
21755
21764
  return {};
21756
21765
  }
21757
21766
  });
@@ -35248,7 +35257,7 @@
35248
35257
  };
35249
35258
  });
35250
35259
  }
35251
- const version$1 = "3.9.3-master.2025-07-31";
35260
+ const version$1 = "3.9.3-master.2025-08-01";
35252
35261
  createVuetify$1.version = version$1;
35253
35262
 
35254
35263
  // Vue's inject() can only be used in setup
@@ -35546,7 +35555,7 @@
35546
35555
 
35547
35556
  /* eslint-disable local-rules/sort-imports */
35548
35557
 
35549
- const version = "3.9.3-master.2025-07-31";
35558
+ const version = "3.9.3-master.2025-08-01";
35550
35559
 
35551
35560
  /* eslint-disable local-rules/sort-imports */
35552
35561