@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-labs.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
|
*/
|
@@ -395,6 +395,8 @@
|
|
395
395
|
if (!vnode || typeof vnode !== 'object') return [];
|
396
396
|
if (Array.isArray(vnode)) {
|
397
397
|
return vnode.map(child => findChildrenWithProvide(key, child)).flat(1);
|
398
|
+
} else if (vnode.suspense) {
|
399
|
+
return findChildrenWithProvide(key, vnode.ssContent);
|
398
400
|
} else if (Array.isArray(vnode.children)) {
|
399
401
|
return vnode.children.map(child => findChildrenWithProvide(key, child)).flat(1);
|
400
402
|
} else if (vnode.component) {
|
@@ -17971,12 +17973,20 @@
|
|
17971
17973
|
}, null)]);
|
17972
17974
|
return vue.createVNode(vue.Fragment, null, [slots.default?.({
|
17973
17975
|
model: internalModel,
|
17976
|
+
save,
|
17977
|
+
cancel,
|
17978
|
+
isPristine: isPristine.value,
|
17974
17979
|
get actions() {
|
17975
17980
|
actionsUsed = true;
|
17976
17981
|
return actions;
|
17977
17982
|
}
|
17978
17983
|
}), !actionsUsed && actions]);
|
17979
17984
|
});
|
17985
|
+
return {
|
17986
|
+
save,
|
17987
|
+
cancel,
|
17988
|
+
isPristine
|
17989
|
+
};
|
17980
17990
|
}
|
17981
17991
|
});
|
17982
17992
|
|
@@ -30094,7 +30104,7 @@
|
|
30094
30104
|
goTo
|
30095
30105
|
};
|
30096
30106
|
}
|
30097
|
-
const version$1 = "3.6.6-master.2024-05-
|
30107
|
+
const version$1 = "3.6.6-master.2024-05-21";
|
30098
30108
|
createVuetify$1.version = version$1;
|
30099
30109
|
|
30100
30110
|
// Vue's inject() can only be used in setup
|
@@ -30347,7 +30357,7 @@
|
|
30347
30357
|
|
30348
30358
|
/* eslint-disable local-rules/sort-imports */
|
30349
30359
|
|
30350
|
-
const version = "3.6.6-master.2024-05-
|
30360
|
+
const version = "3.6.6-master.2024-05-21";
|
30351
30361
|
|
30352
30362
|
/* eslint-disable local-rules/sort-imports */
|
30353
30363
|
|