@vuetify/nightly 3.0.2 → 3.0.3-next-20221129.0

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/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.0.2
2
+ * Vuetify v3.0.3-next-20221129.0
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);
@@ -14222,7 +14222,7 @@
14222
14222
  useRender(() => vue.createVNode(props.tag, {
14223
14223
  "ref": resizeRef,
14224
14224
  "class": ['v-footer', themeClasses.value, backgroundColorClasses.value, borderClasses.value, elevationClasses.value, roundedClasses.value],
14225
- "style": [backgroundColorStyles, props.app ? layoutItemStyles.value : undefined]
14225
+ "style": [backgroundColorStyles.value, props.app ? layoutItemStyles.value : undefined]
14226
14226
  }, slots));
14227
14227
  return {};
14228
14228
  }
@@ -14784,7 +14784,8 @@
14784
14784
  "style": dimensionStyles.value
14785
14785
  }, {
14786
14786
  default: () => [isActive.value && vue.createVNode(MaybeTransition, {
14787
- "transition": props.transition
14787
+ "transition": props.transition,
14788
+ "appear": true
14788
14789
  }, {
14789
14790
  default: () => [(_slots$default = slots.default) == null ? void 0 : _slots$default.call(slots)]
14790
14791
  })]
@@ -18167,7 +18168,7 @@
18167
18168
  locale
18168
18169
  };
18169
18170
  }
18170
- const version$1 = "3.0.2";
18171
+ const version$1 = "3.0.3-next-20221129.0";
18171
18172
  createVuetify$1.version = version$1;
18172
18173
 
18173
18174
  // Vue's inject() can only be used in setup
@@ -18188,7 +18189,7 @@
18188
18189
  ...options
18189
18190
  });
18190
18191
  };
18191
- const version = "3.0.2";
18192
+ const version = "3.0.3-next-20221129.0";
18192
18193
  createVuetify.version = version;
18193
18194
 
18194
18195
  exports.components = components;