@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.js
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
|
*/
|
@@ -3342,9 +3342,9 @@
|
|
3342
3342
|
|
3343
3343
|
const makeVAppProps = propsFactory({
|
3344
3344
|
...makeComponentProps(),
|
3345
|
-
...makeLayoutProps({
|
3345
|
+
...omit(makeLayoutProps({
|
3346
3346
|
fullHeight: true
|
3347
|
-
}),
|
3347
|
+
}), ['fullHeight']),
|
3348
3348
|
...makeThemeProps()
|
3349
3349
|
}, 'VApp');
|
3350
3350
|
const VApp = genericComponent()({
|
@@ -21941,8 +21941,6 @@
|
|
21941
21941
|
}
|
21942
21942
|
});
|
21943
21943
|
|
21944
|
-
// Types
|
21945
|
-
|
21946
21944
|
const makeVTableProps = propsFactory({
|
21947
21945
|
fixedHeader: Boolean,
|
21948
21946
|
fixedFooter: Boolean,
|
@@ -21972,26 +21970,37 @@
|
|
21972
21970
|
const {
|
21973
21971
|
densityClasses
|
21974
21972
|
} = useDensity(props);
|
21975
|
-
useRender(() =>
|
21976
|
-
|
21977
|
-
|
21978
|
-
|
21979
|
-
'v-table--fixed-footer': props.fixedFooter,
|
21980
|
-
'v-table--has-top': !!slots.top,
|
21981
|
-
'v-table--has-bottom': !!slots.bottom,
|
21982
|
-
'v-table--hover': props.hover,
|
21983
|
-
'v-table--striped-even': props.striped === 'even',
|
21984
|
-
'v-table--striped-odd': props.striped === 'odd'
|
21985
|
-
}, themeClasses.value, densityClasses.value, props.class]),
|
21986
|
-
"style": vue.normalizeStyle(props.style)
|
21987
|
-
}, {
|
21988
|
-
default: () => [slots.top?.(), slots.default ? vue.createElementVNode("div", {
|
21989
|
-
"class": "v-table__wrapper",
|
21990
|
-
"style": {
|
21991
|
-
height: convertToUnit(props.height)
|
21973
|
+
useRender(() => {
|
21974
|
+
const tableContentDefaults = {
|
21975
|
+
VCheckboxBtn: {
|
21976
|
+
density: props.density
|
21992
21977
|
}
|
21993
|
-
}
|
21994
|
-
|
21978
|
+
};
|
21979
|
+
return vue.createVNode(props.tag, {
|
21980
|
+
"class": vue.normalizeClass(['v-table', {
|
21981
|
+
'v-table--fixed-height': !!props.height,
|
21982
|
+
'v-table--fixed-header': props.fixedHeader,
|
21983
|
+
'v-table--fixed-footer': props.fixedFooter,
|
21984
|
+
'v-table--has-top': !!slots.top,
|
21985
|
+
'v-table--has-bottom': !!slots.bottom,
|
21986
|
+
'v-table--hover': props.hover,
|
21987
|
+
'v-table--striped-even': props.striped === 'even',
|
21988
|
+
'v-table--striped-odd': props.striped === 'odd'
|
21989
|
+
}, themeClasses.value, densityClasses.value, props.class]),
|
21990
|
+
"style": vue.normalizeStyle(props.style)
|
21991
|
+
}, {
|
21992
|
+
default: () => [slots.top?.(), vue.createVNode(VDefaultsProvider, {
|
21993
|
+
"defaults": tableContentDefaults
|
21994
|
+
}, {
|
21995
|
+
default: () => [slots.default ? vue.createElementVNode("div", {
|
21996
|
+
"class": "v-table__wrapper",
|
21997
|
+
"style": {
|
21998
|
+
height: convertToUnit(props.height)
|
21999
|
+
}
|
22000
|
+
}, [vue.createElementVNode("table", null, [slots.default()])]) : slots.wrapper?.()]
|
22001
|
+
}), slots.bottom?.()]
|
22002
|
+
});
|
22003
|
+
});
|
21995
22004
|
return {};
|
21996
22005
|
}
|
21997
22006
|
});
|
@@ -31548,7 +31557,7 @@
|
|
31548
31557
|
};
|
31549
31558
|
});
|
31550
31559
|
}
|
31551
|
-
const version$1 = "3.9.3-master.2025-
|
31560
|
+
const version$1 = "3.9.3-master.2025-08-01";
|
31552
31561
|
createVuetify$1.version = version$1;
|
31553
31562
|
|
31554
31563
|
// Vue's inject() can only be used in setup
|
@@ -31573,7 +31582,7 @@
|
|
31573
31582
|
...options
|
31574
31583
|
});
|
31575
31584
|
};
|
31576
|
-
const version = "3.9.3-master.2025-
|
31585
|
+
const version = "3.9.3-master.2025-08-01";
|
31577
31586
|
createVuetify.version = version;
|
31578
31587
|
|
31579
31588
|
exports.blueprints = index;
|