@vuetify/nightly 3.2.0 → 3.2.2-master-20230429.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.2.0
2
+ * Vuetify v3.2.2-master-20230429.0
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -1016,7 +1016,7 @@
1016
1016
  function propIsDefined(vnode, prop) {
1017
1017
  return typeof vnode.props?.[prop] !== 'undefined' || typeof vnode.props?.[toKebabCase(prop)] !== 'undefined';
1018
1018
  }
1019
- function useDefaults() {
1019
+ function internalUseDefaults() {
1020
1020
  let props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1021
1021
  let name = arguments.length > 1 ? arguments[1] : undefined;
1022
1022
  let defaults = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : injectDefaults();
@@ -1060,6 +1060,16 @@
1060
1060
  provideSubDefaults
1061
1061
  };
1062
1062
  }
1063
+ function useDefaults() {
1064
+ let props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1065
+ let name = arguments.length > 1 ? arguments[1] : undefined;
1066
+ const {
1067
+ props: _props,
1068
+ provideSubDefaults
1069
+ } = internalUseDefaults(props, name);
1070
+ provideSubDefaults();
1071
+ return _props;
1072
+ }
1063
1073
 
1064
1074
  // Utils
1065
1075
 
@@ -1087,7 +1097,7 @@
1087
1097
  const {
1088
1098
  props: _props,
1089
1099
  provideSubDefaults
1090
- } = useDefaults(props, props._as ?? options.name, defaults);
1100
+ } = internalUseDefaults(props, props._as ?? options.name, defaults);
1091
1101
  const setupBindings = options._setup(_props, ctx);
1092
1102
  provideSubDefaults();
1093
1103
  return setupBindings;
@@ -19421,7 +19431,7 @@
19421
19431
  date
19422
19432
  };
19423
19433
  }
19424
- const version$1 = "3.2.0";
19434
+ const version$1 = "3.2.2-master-20230429.0";
19425
19435
  createVuetify$1.version = version$1;
19426
19436
 
19427
19437
  // Vue's inject() can only be used in setup
@@ -19441,7 +19451,7 @@
19441
19451
  ...options
19442
19452
  });
19443
19453
  };
19444
- const version = "3.2.0";
19454
+ const version = "3.2.2-master-20230429.0";
19445
19455
  createVuetify.version = version;
19446
19456
 
19447
19457
  exports.components = components;