@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/CHANGELOG.md +10 -2
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +136 -136
- package/dist/json/web-types.json +19 -7
- package/dist/vuetify-labs.css +3113 -3106
- package/dist/vuetify-labs.d.ts +24 -3
- package/dist/vuetify-labs.esm.js +13 -3
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +13 -3
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +622 -615
- package/dist/vuetify.d.ts +67 -46
- package/dist/vuetify.esm.js +13 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtn/VBtn.css +6 -0
- package/lib/components/VBtn/VBtn.sass +6 -0
- package/lib/components/VConfirmEdit/VConfirmEdit.mjs +8 -0
- package/lib/components/VConfirmEdit/VConfirmEdit.mjs.map +1 -1
- package/lib/components/VConfirmEdit/index.d.mts +24 -3
- package/lib/components/VField/VField.css +1 -0
- package/lib/components/VField/VField.sass +2 -0
- package/lib/components/index.d.mts +24 -3
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +43 -43
- package/lib/util/helpers.mjs +2 -0
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.6-master.2024-05-
|
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-
|
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-
|
28042
|
+
const version = "3.6.6-master.2024-05-21";
|
28033
28043
|
createVuetify.version = version;
|
28034
28044
|
|
28035
28045
|
exports.blueprints = index;
|