vuetify 3.0.2 → 3.0.3
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/dist/json/attributes.json +23 -23
- package/dist/json/importMap.json +84 -84
- package/dist/json/web-types.json +91 -60
- package/dist/vuetify.css +114 -114
- package/dist/vuetify.d.ts +332 -141
- package/dist/vuetify.esm.js +13 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -9
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.mjs +2 -2
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.ts +275 -62
- package/lib/components/VAutocomplete/index.d.ts +6 -6
- package/lib/components/VCombobox/index.d.ts +6 -6
- package/lib/components/VField/index.d.ts +6 -6
- package/lib/components/VFileInput/index.d.ts +1 -1
- package/lib/components/VFooter/VFooter.mjs +1 -1
- package/lib/components/VFooter/VFooter.mjs.map +1 -1
- package/lib/components/VLazy/VLazy.mjs +2 -1
- package/lib/components/VLazy/VLazy.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +2 -2
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VOverlay/locationStrategies.mjs +3 -1
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.sass +1 -1
- package/lib/components/VProgressLinear/_variables.scss +1 -1
- package/lib/components/VSelect/index.d.ts +6 -6
- package/lib/components/VSelectionControl/index.d.ts +6 -6
- package/lib/components/VTextField/index.d.ts +18 -18
- package/lib/components/VTextarea/index.d.ts +1 -1
- package/lib/components/VToolbar/VToolbar.mjs.map +1 -1
- package/lib/components/VToolbar/index.d.ts +9 -8
- package/lib/components/index.d.ts +310 -119
- package/lib/components/transitions/dialog-transition.mjs +2 -2
- package/lib/components/transitions/dialog-transition.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.ts +22 -22
- package/package.json +2 -2
package/dist/vuetify.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.0.
|
|
2
|
+
* Vuetify v3.0.3
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -2480,8 +2480,8 @@
|
|
|
2480
2480
|
const tsx = targetBox.width / elBox.width;
|
|
2481
2481
|
const tsy = targetBox.height / elBox.height;
|
|
2482
2482
|
const maxs = Math.max(1, tsx, tsy);
|
|
2483
|
-
const sx = tsx / maxs;
|
|
2484
|
-
const sy = tsy / maxs;
|
|
2483
|
+
const sx = tsx / maxs || 0;
|
|
2484
|
+
const sy = tsy / maxs || 0;
|
|
2485
2485
|
|
|
2486
2486
|
// Animate elements larger than 12% of the screen area up to 1.5x slower
|
|
2487
2487
|
const asa = elBox.width * elBox.height / (window.innerWidth * window.innerHeight);
|
|
@@ -3216,7 +3216,7 @@
|
|
|
3216
3216
|
|
|
3217
3217
|
// Types
|
|
3218
3218
|
|
|
3219
|
-
const VAppBar =
|
|
3219
|
+
const VAppBar = genericComponent()({
|
|
3220
3220
|
name: 'VAppBar',
|
|
3221
3221
|
props: {
|
|
3222
3222
|
// TODO: Implement scrolling techniques
|
|
@@ -8540,7 +8540,9 @@
|
|
|
8540
8540
|
updateLocation.value = undefined;
|
|
8541
8541
|
if (!(IN_BROWSER && data.isActive.value && props.locationStrategy)) return;
|
|
8542
8542
|
scope = vue.effectScope();
|
|
8543
|
-
|
|
8543
|
+
if (!(props.locationStrategy === 'connected')) {
|
|
8544
|
+
await vue.nextTick();
|
|
8545
|
+
}
|
|
8544
8546
|
scope.run(() => {
|
|
8545
8547
|
if (typeof props.locationStrategy === 'function') {
|
|
8546
8548
|
var _props$locationStrate;
|
|
@@ -14222,7 +14224,7 @@
|
|
|
14222
14224
|
useRender(() => vue.createVNode(props.tag, {
|
|
14223
14225
|
"ref": resizeRef,
|
|
14224
14226
|
"class": ['v-footer', themeClasses.value, backgroundColorClasses.value, borderClasses.value, elevationClasses.value, roundedClasses.value],
|
|
14225
|
-
"style": [backgroundColorStyles, props.app ? layoutItemStyles.value : undefined]
|
|
14227
|
+
"style": [backgroundColorStyles.value, props.app ? layoutItemStyles.value : undefined]
|
|
14226
14228
|
}, slots));
|
|
14227
14229
|
return {};
|
|
14228
14230
|
}
|
|
@@ -14784,7 +14786,8 @@
|
|
|
14784
14786
|
"style": dimensionStyles.value
|
|
14785
14787
|
}, {
|
|
14786
14788
|
default: () => [isActive.value && vue.createVNode(MaybeTransition, {
|
|
14787
|
-
"transition": props.transition
|
|
14789
|
+
"transition": props.transition,
|
|
14790
|
+
"appear": true
|
|
14788
14791
|
}, {
|
|
14789
14792
|
default: () => [(_slots$default = slots.default) == null ? void 0 : _slots$default.call(slots)]
|
|
14790
14793
|
})]
|
|
@@ -15244,7 +15247,7 @@
|
|
|
15244
15247
|
const isTemporary = vue.computed(() => !props.permanent && (mobile.value || props.temporary));
|
|
15245
15248
|
const isSticky = vue.computed(() => props.sticky && !isTemporary.value && location.value !== 'bottom');
|
|
15246
15249
|
if (!props.disableResizeWatcher) {
|
|
15247
|
-
vue.watch(isTemporary, val => !props.permanent && (isActive.value = !val));
|
|
15250
|
+
vue.watch(isTemporary, val => !props.permanent && vue.nextTick(() => isActive.value = !val));
|
|
15248
15251
|
}
|
|
15249
15252
|
if (!props.disableRouteWatcher && router) {
|
|
15250
15253
|
vue.watch(router.currentRoute, () => isTemporary.value && (isActive.value = false));
|
|
@@ -18167,7 +18170,7 @@
|
|
|
18167
18170
|
locale
|
|
18168
18171
|
};
|
|
18169
18172
|
}
|
|
18170
|
-
const version$1 = "3.0.
|
|
18173
|
+
const version$1 = "3.0.3";
|
|
18171
18174
|
createVuetify$1.version = version$1;
|
|
18172
18175
|
|
|
18173
18176
|
// Vue's inject() can only be used in setup
|
|
@@ -18188,7 +18191,7 @@
|
|
|
18188
18191
|
...options
|
|
18189
18192
|
});
|
|
18190
18193
|
};
|
|
18191
|
-
const version = "3.0.
|
|
18194
|
+
const version = "3.0.3";
|
|
18192
18195
|
createVuetify.version = version;
|
|
18193
18196
|
|
|
18194
18197
|
exports.components = components;
|