@vuetify/nightly 3.6.6-master.2024-05-16 → 3.6.6-master.2024-05-21

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.6.6-master.2024-05-16
2
+ * Vuetify v3.6.6-master.2024-05-21
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -318,6 +318,8 @@
318
318
  if (!vnode || typeof vnode !== 'object') return [];
319
319
  if (Array.isArray(vnode)) {
320
320
  return vnode.map(child => findChildrenWithProvide(key, child)).flat(1);
321
+ } else if (vnode.suspense) {
322
+ return findChildrenWithProvide(key, vnode.ssContent);
321
323
  } else if (Array.isArray(vnode.children)) {
322
324
  return vnode.children.map(child => findChildrenWithProvide(key, child)).flat(1);
323
325
  } else if (vnode.component) {
@@ -18204,12 +18206,20 @@
18204
18206
  }, null)]);
18205
18207
  return vue.createVNode(vue.Fragment, null, [slots.default?.({
18206
18208
  model: internalModel,
18209
+ save,
18210
+ cancel,
18211
+ isPristine: isPristine.value,
18207
18212
  get actions() {
18208
18213
  actionsUsed = true;
18209
18214
  return actions;
18210
18215
  }
18211
18216
  }), !actionsUsed && actions]);
18212
18217
  });
18218
+ return {
18219
+ save,
18220
+ cancel,
18221
+ isPristine
18222
+ };
18213
18223
  }
18214
18224
  });
18215
18225
 
@@ -28004,7 +28014,7 @@
28004
28014
  goTo
28005
28015
  };
28006
28016
  }
28007
- const version$1 = "3.6.6-master.2024-05-16";
28017
+ const version$1 = "3.6.6-master.2024-05-21";
28008
28018
  createVuetify$1.version = version$1;
28009
28019
 
28010
28020
  // Vue's inject() can only be used in setup
@@ -28029,7 +28039,7 @@
28029
28039
  ...options
28030
28040
  });
28031
28041
  };
28032
- const version = "3.6.6-master.2024-05-16";
28042
+ const version = "3.6.6-master.2024-05-21";
28033
28043
  createVuetify.version = version;
28034
28044
 
28035
28045
  exports.blueprints = index;