@vuetify/nightly 3.8.7-dev.2025-05-30 → 3.8.7-dev.2025-06-03
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 +7 -3
- package/dist/json/attributes.json +3109 -3093
- package/dist/json/importMap-labs.json +38 -38
- package/dist/json/importMap.json +166 -166
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +5823 -5783
- package/dist/vuetify-labs.cjs +19 -7
- package/dist/vuetify-labs.css +4460 -4454
- package/dist/vuetify-labs.d.ts +332 -245
- package/dist/vuetify-labs.esm.js +19 -7
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +19 -7
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +19 -7
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5196 -5190
- package/dist/vuetify.d.ts +332 -245
- package/dist/vuetify.esm.js +19 -7
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +19 -7
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +8 -8
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.d.ts +15 -3
- package/lib/components/VDataTable/VDataTable.d.ts +42 -0
- package/lib/components/VDataTable/VDataTableServer.d.ts +29 -0
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +29 -0
- package/lib/components/VTable/VTable.css +6 -0
- package/lib/components/VTable/VTable.d.ts +55 -24
- package/lib/components/VTable/VTable.js +9 -2
- package/lib/components/VTable/VTable.js.map +1 -1
- package/lib/components/VTable/VTable.sass +14 -0
- package/lib/components/VTable/_variables.scss +1 -0
- package/lib/components/VToolbar/VToolbar.d.ts +15 -3
- package/lib/components/VToolbar/VToolbar.js +6 -3
- package/lib/components/VToolbar/VToolbar.js.map +1 -1
- package/lib/composables/date/DateAdapter.d.ts +2 -2
- package/lib/composables/date/DateAdapter.js.map +1 -1
- package/lib/composables/date/adapters/string.d.ts +54 -0
- package/lib/composables/date/adapters/string.js +153 -0
- package/lib/composables/date/adapters/string.js.map +1 -0
- package/lib/composables/date/date.d.ts +2 -2
- package/lib/entry-bundler.d.ts +2 -2
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +78 -68
- package/lib/framework.js +1 -1
- package/lib/labs/entry-bundler.d.ts +2 -2
- package/package.json +1 -1
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.7-dev.2025-
|
2
|
+
* Vuetify v3.8.7-dev.2025-06-03
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -3799,7 +3799,10 @@ const makeVToolbarProps = propsFactory({
|
|
3799
3799
|
default: 'default',
|
3800
3800
|
validator: v => allowedDensities$1.includes(v)
|
3801
3801
|
},
|
3802
|
-
extended:
|
3802
|
+
extended: {
|
3803
|
+
type: Boolean,
|
3804
|
+
default: null
|
3805
|
+
},
|
3803
3806
|
extensionHeight: {
|
3804
3807
|
type: [Number, String],
|
3805
3808
|
default: 48
|
@@ -3847,7 +3850,7 @@ const VToolbar = genericComponent()({
|
|
3847
3850
|
const {
|
3848
3851
|
rtlClasses
|
3849
3852
|
} = useRtl();
|
3850
|
-
const isExtended = shallowRef(
|
3853
|
+
const isExtended = shallowRef(props.extended === null ? !!slots.extension?.() : props.extended);
|
3851
3854
|
const contentHeight = computed(() => parseInt(Number(props.height) + (props.density === 'prominent' ? Number(props.height) : 0) - (props.density === 'comfortable' ? 8 : 0) - (props.density === 'compact' ? 16 : 0), 10));
|
3852
3855
|
const extensionHeight = computed(() => isExtended.value ? parseInt(Number(props.extensionHeight) + (props.density === 'prominent' ? Number(props.extensionHeight) : 0) - (props.density === 'comfortable' ? 4 : 0) - (props.density === 'compact' ? 8 : 0), 10) : 0);
|
3853
3856
|
provideDefaults({
|
@@ -3859,7 +3862,7 @@ const VToolbar = genericComponent()({
|
|
3859
3862
|
const hasTitle = !!(props.title || slots.title);
|
3860
3863
|
const hasImage = !!(slots.image || props.image);
|
3861
3864
|
const extension = slots.extension?.();
|
3862
|
-
isExtended.value =
|
3865
|
+
isExtended.value = props.extended === null ? !!extension : props.extended;
|
3863
3866
|
return createVNode(props.tag, {
|
3864
3867
|
"class": normalizeClass(['v-toolbar', {
|
3865
3868
|
'v-toolbar--absolute': props.absolute,
|
@@ -20995,11 +20998,18 @@ const VDataTableRows = genericComponent()({
|
|
20995
20998
|
}
|
20996
20999
|
});
|
20997
21000
|
|
21001
|
+
// Types
|
21002
|
+
|
20998
21003
|
const makeVTableProps = propsFactory({
|
20999
21004
|
fixedHeader: Boolean,
|
21000
21005
|
fixedFooter: Boolean,
|
21001
21006
|
height: [Number, String],
|
21002
21007
|
hover: Boolean,
|
21008
|
+
striped: {
|
21009
|
+
type: String,
|
21010
|
+
default: null,
|
21011
|
+
validator: v => ['even', 'odd'].includes(v)
|
21012
|
+
},
|
21003
21013
|
...makeComponentProps(),
|
21004
21014
|
...makeDensityProps(),
|
21005
21015
|
...makeTagProps(),
|
@@ -21026,7 +21036,9 @@ const VTable = genericComponent()({
|
|
21026
21036
|
'v-table--fixed-footer': props.fixedFooter,
|
21027
21037
|
'v-table--has-top': !!slots.top,
|
21028
21038
|
'v-table--has-bottom': !!slots.bottom,
|
21029
|
-
'v-table--hover': props.hover
|
21039
|
+
'v-table--hover': props.hover,
|
21040
|
+
'v-table--striped-even': props.striped === 'even',
|
21041
|
+
'v-table--striped-odd': props.striped === 'odd'
|
21030
21042
|
}, themeClasses.value, densityClasses.value, props.class]),
|
21031
21043
|
"style": normalizeStyle(props.style)
|
21032
21044
|
}, {
|
@@ -32209,7 +32221,7 @@ function createVuetify$1() {
|
|
32209
32221
|
};
|
32210
32222
|
});
|
32211
32223
|
}
|
32212
|
-
const version$1 = "3.8.7-dev.2025-
|
32224
|
+
const version$1 = "3.8.7-dev.2025-06-03";
|
32213
32225
|
createVuetify$1.version = version$1;
|
32214
32226
|
|
32215
32227
|
// Vue's inject() can only be used in setup
|
@@ -32507,7 +32519,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
32507
32519
|
|
32508
32520
|
/* eslint-disable local-rules/sort-imports */
|
32509
32521
|
|
32510
|
-
const version = "3.8.7-dev.2025-
|
32522
|
+
const version = "3.8.7-dev.2025-06-03";
|
32511
32523
|
|
32512
32524
|
/* eslint-disable local-rules/sort-imports */
|
32513
32525
|
|