@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.
@@ -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;
@@ -21535,7 +21545,7 @@
21535
21545
  date
21536
21546
  };
21537
21547
  }
21538
- const version$1 = "3.2.0";
21548
+ const version$1 = "3.2.2-master-20230429.0";
21539
21549
  createVuetify$1.version = version$1;
21540
21550
 
21541
21551
  // Vue's inject() can only be used in setup
@@ -21547,7 +21557,7 @@
21547
21557
  }
21548
21558
  }
21549
21559
 
21550
- const version = "3.2.0";
21560
+ const version = "3.2.2-master-20230429.0";
21551
21561
 
21552
21562
  const createVuetify = function () {
21553
21563
  let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};