@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.
- package/CHANGELOG.md +8 -3
- package/dist/json/attributes.json +3577 -3581
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +176 -176
- package/dist/json/tags.json +0 -1
- package/dist/json/web-types.json +6590 -6600
- package/dist/vuetify-labs.cjs +35 -26
- package/dist/vuetify-labs.css +6212 -6212
- package/dist/vuetify-labs.d.ts +69 -83
- package/dist/vuetify-labs.esm.js +35 -26
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +35 -26
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +35 -26
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3556 -3556
- package/dist/vuetify.d.ts +69 -83
- package/dist/vuetify.esm.js +35 -26
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +35 -26
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VApp/VApp.d.ts +0 -25
- package/lib/components/VApp/VApp.js +3 -3
- package/lib/components/VApp/VApp.js.map +1 -1
- package/lib/components/VTable/VTable.js +32 -20
- package/lib/components/VTable/VTable.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +69 -69
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.cjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.9.3-master.2025-
|
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(() =>
|
21736
|
-
|
21737
|
-
|
21738
|
-
|
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
|
-
}
|
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-
|
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-
|
35558
|
+
const version = "3.9.3-master.2025-08-01";
|
35550
35559
|
|
35551
35560
|
/* eslint-disable local-rules/sort-imports */
|
35552
35561
|
|