@vuetify/nightly 3.7.0-master.2024-08-22 → 3.7.0-master.2024-08-27

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.
Files changed (57) hide show
  1. package/dist/json/importMap-labs.json +16 -16
  2. package/dist/json/importMap.json +140 -140
  3. package/dist/json/web-types.json +7 -7
  4. package/dist/vuetify-labs.css +2335 -2335
  5. package/dist/vuetify-labs.d.ts +1839 -36
  6. package/dist/vuetify-labs.esm.js +12 -6
  7. package/dist/vuetify-labs.esm.js.map +1 -1
  8. package/dist/vuetify-labs.js +12 -6
  9. package/dist/vuetify-labs.min.css +2 -2
  10. package/dist/vuetify.css +4054 -4054
  11. package/dist/vuetify.d.ts +394 -70
  12. package/dist/vuetify.esm.js +12 -6
  13. package/dist/vuetify.esm.js.map +1 -1
  14. package/dist/vuetify.js +12 -6
  15. package/dist/vuetify.js.map +1 -1
  16. package/dist/vuetify.min.css +2 -2
  17. package/dist/vuetify.min.js +1058 -1057
  18. package/dist/vuetify.min.js.map +1 -1
  19. package/lib/components/VAutocomplete/index.d.mts +45 -3
  20. package/lib/components/VAvatar/VAvatar.css +1 -1
  21. package/lib/components/VAvatar/_variables.scss +1 -1
  22. package/lib/components/VCombobox/index.d.mts +45 -3
  23. package/lib/components/VDialog/index.d.mts +36 -3
  24. package/lib/components/VFileInput/index.d.mts +27 -3
  25. package/lib/components/VForm/index.d.mts +96 -3
  26. package/lib/components/VMenu/index.d.mts +45 -3
  27. package/lib/components/VSelect/index.d.mts +45 -3
  28. package/lib/components/VSnackbar/index.d.mts +36 -3
  29. package/lib/components/VTabs/index.d.mts +15 -3
  30. package/lib/components/VTextField/index.d.mts +33 -3
  31. package/lib/components/VTextarea/index.d.mts +27 -3
  32. package/lib/components/VTooltip/index.d.mts +36 -3
  33. package/lib/components/index.d.mts +351 -27
  34. package/lib/components/index.mjs +1 -1
  35. package/lib/components/index.mjs.map +1 -1
  36. package/lib/composables/forwardRefs.mjs +2 -0
  37. package/lib/composables/forwardRefs.mjs.map +1 -1
  38. package/lib/entry-bundler.mjs +1 -1
  39. package/lib/framework.mjs +1 -1
  40. package/lib/index.d.mts +43 -43
  41. package/lib/labs/VNumberInput/index.d.mts +2273 -794
  42. package/lib/labs/VSnackbarQueue/index.d.mts +36 -3
  43. package/lib/labs/components.d.mts +2293 -781
  44. package/lib/util/helpers.mjs +7 -3
  45. package/lib/util/helpers.mjs.map +1 -1
  46. package/package.json +1 -1
  47. package/lib/components/VTreeview/VTreeview.mjs +0 -350
  48. package/lib/components/VTreeview/VTreeview.mjs.map +0 -1
  49. package/lib/components/VTreeview/VTreeview.sass +0 -128
  50. package/lib/components/VTreeview/VTreeviewNode.mjs +0 -321
  51. package/lib/components/VTreeview/VTreeviewNode.mjs.map +0 -1
  52. package/lib/components/VTreeview/_mixins.sass +0 -18
  53. package/lib/components/VTreeview/_variables.scss +0 -10
  54. package/lib/components/VTreeview/index.mjs +0 -10
  55. package/lib/components/VTreeview/index.mjs.map +0 -1
  56. package/lib/components/VTreeview/util/filterTreeItems.mjs +0 -25
  57. package/lib/components/VTreeview/util/filterTreeItems.mjs.map +0 -1
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.0-master.2024-08-22
2
+ * Vuetify v3.7.0-master.2024-08-27
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -95,6 +95,10 @@
95
95
  function isObject(obj) {
96
96
  return obj !== null && typeof obj === 'object' && !Array.isArray(obj);
97
97
  }
98
+ function isPlainObject(obj) {
99
+ let proto;
100
+ return obj !== null && typeof obj === 'object' && ((proto = Object.getPrototypeOf(obj)) === Object.prototype || proto === null);
101
+ }
98
102
  function refElement(obj) {
99
103
  if (obj && '$el' in obj) {
100
104
  const el = obj.$el;
@@ -284,12 +288,12 @@
284
288
  const targetProperty = target[key];
285
289
 
286
290
  // Only continue deep merging if
287
- // both properties are objects
288
- if (isObject(sourceProperty) && isObject(targetProperty)) {
291
+ // both properties are plain objects
292
+ if (isPlainObject(sourceProperty) && isPlainObject(targetProperty)) {
289
293
  out[key] = mergeDeep(sourceProperty, targetProperty, arrayFn);
290
294
  continue;
291
295
  }
292
- if (Array.isArray(sourceProperty) && Array.isArray(targetProperty) && arrayFn) {
296
+ if (arrayFn && Array.isArray(sourceProperty) && Array.isArray(targetProperty)) {
293
297
  out[key] = arrayFn(sourceProperty, targetProperty);
294
298
  continue;
295
299
  }
@@ -11268,6 +11272,8 @@
11268
11272
 
11269
11273
  /** Omit properties starting with P */
11270
11274
 
11275
+ /** Omit keyof $props from T */
11276
+
11271
11277
  function getDescriptor(obj, key) {
11272
11278
  let currentObj = obj;
11273
11279
  while (currentObj) {
@@ -28214,7 +28220,7 @@
28214
28220
  goTo
28215
28221
  };
28216
28222
  }
28217
- const version$1 = "3.7.0-master.2024-08-22";
28223
+ const version$1 = "3.7.0-master.2024-08-27";
28218
28224
  createVuetify$1.version = version$1;
28219
28225
 
28220
28226
  // Vue's inject() can only be used in setup
@@ -28239,7 +28245,7 @@
28239
28245
  ...options
28240
28246
  });
28241
28247
  };
28242
- const version = "3.7.0-master.2024-08-22";
28248
+ const version = "3.7.0-master.2024-08-27";
28243
28249
  createVuetify.version = version;
28244
28250
 
28245
28251
  exports.blueprints = index;