@vuetify/nightly 3.3.0-dev-20230502.0 → 3.3.0-dev-20230504.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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.3.0-dev-20230502.0
2
+ * Vuetify v3.3.0-dev-20230504.0
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -9558,14 +9558,14 @@
9558
9558
  let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultDisplayOptions;
9559
9559
  return mergeDeep(defaultDisplayOptions, options);
9560
9560
  };
9561
- function getClientWidth(isHydrate) {
9562
- return IN_BROWSER && !isHydrate ? window.innerWidth : 0;
9561
+ function getClientWidth(ssr) {
9562
+ return IN_BROWSER && !ssr ? window.innerWidth : typeof ssr === 'object' && ssr.clientWidth || 0;
9563
9563
  }
9564
- function getClientHeight(isHydrate) {
9565
- return IN_BROWSER && !isHydrate ? window.innerHeight : 0;
9564
+ function getClientHeight(ssr) {
9565
+ return IN_BROWSER && !ssr ? window.innerHeight : typeof ssr === 'object' && ssr.clientHeight || 0;
9566
9566
  }
9567
- function getPlatform(isHydrate) {
9568
- const userAgent = IN_BROWSER && !isHydrate ? window.navigator.userAgent : 'ssr';
9567
+ function getPlatform(ssr) {
9568
+ const userAgent = IN_BROWSER && !ssr ? window.navigator.userAgent : 'ssr';
9569
9569
  function match(regexp) {
9570
9570
  return Boolean(userAgent.match(regexp));
9571
9571
  }
@@ -21606,7 +21606,7 @@
21606
21606
  date
21607
21607
  };
21608
21608
  }
21609
- const version$1 = "3.3.0-dev-20230502.0";
21609
+ const version$1 = "3.3.0-dev-20230504.0";
21610
21610
  createVuetify$1.version = version$1;
21611
21611
 
21612
21612
  // Vue's inject() can only be used in setup
@@ -21618,7 +21618,7 @@
21618
21618
  }
21619
21619
  }
21620
21620
 
21621
- const version = "3.3.0-dev-20230502.0";
21621
+ const version = "3.3.0-dev-20230504.0";
21622
21622
 
21623
21623
  const createVuetify = function () {
21624
21624
  let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};