@vuetify/nightly 3.9.3-dev.2025-08-01 → 3.9.3-dev.2025-08-02
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 +6 -3
- package/dist/json/attributes.json +3605 -3605
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +182 -182
- package/dist/json/web-types.json +6688 -6676
- package/dist/vuetify-labs.cjs +10 -7
- package/dist/vuetify-labs.css +4938 -4938
- package/dist/vuetify-labs.d.ts +62 -61
- package/dist/vuetify-labs.esm.js +10 -7
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +10 -7
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +10 -7
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2054 -2054
- package/dist/vuetify.d.ts +62 -61
- package/dist/vuetify.esm.js +10 -7
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +10 -7
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +19 -19
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataIterator/VDataIterator.d.ts +1 -0
- package/lib/components/VDataIterator/VDataIterator.js +1 -0
- package/lib/components/VDataIterator/VDataIterator.js.map +1 -1
- package/lib/components/VSkeletonLoader/VSkeletonLoader.js +6 -4
- package/lib/components/VSkeletonLoader/VSkeletonLoader.js.map +1 -1
- package/lib/components/VWindow/VWindow.js +2 -2
- package/lib/components/VWindow/VWindow.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +61 -61
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.9.3-dev.2025-08-
|
2
|
+
* Vuetify v3.9.3-dev.2025-08-02
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -15630,7 +15630,7 @@
|
|
15630
15630
|
'v-window--vertical-arrows': !!props.verticalArrows,
|
15631
15631
|
'v-window--crossfade': !!props.crossfade
|
15632
15632
|
}, themeClasses.value, props.class]),
|
15633
|
-
"style": vue.normalizeStyle([props.style, props.transitionDuration ? {
|
15633
|
+
"style": vue.normalizeStyle([props.style, props.transitionDuration && !PREFERS_REDUCED_MOTION ? {
|
15634
15634
|
'--v-window-transition-duration': convertToUnit(props.transitionDuration, 'ms')
|
15635
15635
|
} : undefined])
|
15636
15636
|
}, {
|
@@ -20435,6 +20435,7 @@
|
|
20435
20435
|
isGroupOpen,
|
20436
20436
|
toggleGroup,
|
20437
20437
|
items: paginatedItemsWithoutGroups.value,
|
20438
|
+
itemsCount: filteredItems.value.length,
|
20438
20439
|
groupedItems: paginatedItems.value
|
20439
20440
|
}));
|
20440
20441
|
useRender(() => vue.createVNode(props.tag, {
|
@@ -27504,9 +27505,11 @@
|
|
27504
27505
|
}, 'VSkeletonLoader');
|
27505
27506
|
const VSkeletonLoader = genericComponent()({
|
27506
27507
|
name: 'VSkeletonLoader',
|
27508
|
+
inheritAttrs: false,
|
27507
27509
|
props: makeVSkeletonLoaderProps(),
|
27508
27510
|
setup(props, _ref) {
|
27509
27511
|
let {
|
27512
|
+
attrs,
|
27510
27513
|
slots
|
27511
27514
|
} = _ref;
|
27512
27515
|
const {
|
@@ -27533,12 +27536,12 @@
|
|
27533
27536
|
ariaLabel: t(props.loadingText),
|
27534
27537
|
role: 'alert'
|
27535
27538
|
};
|
27536
|
-
return vue.createElementVNode("div", vue.mergeProps({
|
27539
|
+
return vue.createElementVNode(vue.Fragment, null, [isLoading ? vue.createElementVNode("div", vue.mergeProps({
|
27537
27540
|
"class": ['v-skeleton-loader', {
|
27538
27541
|
'v-skeleton-loader--boilerplate': props.boilerplate
|
27539
27542
|
}, themeClasses.value, backgroundColorClasses.value, elevationClasses.value],
|
27540
|
-
"style": [backgroundColorStyles.value,
|
27541
|
-
}, loadingProps), [
|
27543
|
+
"style": [backgroundColorStyles.value, dimensionStyles.value]
|
27544
|
+
}, loadingProps, attrs), [items.value]) : slots.default?.()]);
|
27542
27545
|
});
|
27543
27546
|
return {};
|
27544
27547
|
}
|
@@ -35627,7 +35630,7 @@
|
|
35627
35630
|
};
|
35628
35631
|
});
|
35629
35632
|
}
|
35630
|
-
const version$1 = "3.9.3-dev.2025-08-
|
35633
|
+
const version$1 = "3.9.3-dev.2025-08-02";
|
35631
35634
|
createVuetify$1.version = version$1;
|
35632
35635
|
|
35633
35636
|
// Vue's inject() can only be used in setup
|
@@ -35925,7 +35928,7 @@
|
|
35925
35928
|
|
35926
35929
|
/* eslint-disable local-rules/sort-imports */
|
35927
35930
|
|
35928
|
-
const version = "3.9.3-dev.2025-08-
|
35931
|
+
const version = "3.9.3-dev.2025-08-02";
|
35929
35932
|
|
35930
35933
|
/* eslint-disable local-rules/sort-imports */
|
35931
35934
|
|