@vuetify/nightly 3.7.0-master.2024-08-21 → 3.7.0-master.2024-08-26
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/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +128 -128
- package/dist/json/web-types.json +12 -1
- package/dist/vuetify-labs.css +2915 -2915
- package/dist/vuetify-labs.d.ts +1845 -36
- package/dist/vuetify-labs.esm.js +7 -3
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +7 -3
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +704 -704
- package/dist/vuetify.d.ts +400 -70
- package/dist/vuetify.esm.js +7 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +7 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +45 -3
- package/lib/components/VCombobox/index.d.mts +45 -3
- package/lib/components/VDialog/VDialog.mjs +2 -0
- package/lib/components/VDialog/VDialog.mjs.map +1 -1
- package/lib/components/VDialog/index.d.mts +42 -3
- package/lib/components/VFileInput/index.d.mts +27 -3
- package/lib/components/VForm/index.d.mts +96 -3
- package/lib/components/VMenu/index.d.mts +45 -3
- package/lib/components/VSelect/index.d.mts +45 -3
- package/lib/components/VSnackbar/index.d.mts +36 -3
- package/lib/components/VTabs/index.d.mts +15 -3
- package/lib/components/VTextField/index.d.mts +33 -3
- package/lib/components/VTextarea/index.d.mts +27 -3
- package/lib/components/VTooltip/index.d.mts +36 -3
- package/lib/components/index.d.mts +357 -27
- package/lib/components/index.mjs +1 -1
- package/lib/components/index.mjs.map +1 -1
- package/lib/composables/forwardRefs.mjs +2 -0
- package/lib/composables/forwardRefs.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +43 -43
- package/lib/labs/VNumberInput/index.d.mts +2273 -794
- package/lib/labs/VSnackbarQueue/index.d.mts +36 -3
- package/lib/labs/components.d.mts +2293 -781
- package/package.json +1 -1
- package/lib/components/VTreeview/VTreeview.mjs +0 -350
- package/lib/components/VTreeview/VTreeview.mjs.map +0 -1
- package/lib/components/VTreeview/VTreeview.sass +0 -128
- package/lib/components/VTreeview/VTreeviewNode.mjs +0 -321
- package/lib/components/VTreeview/VTreeviewNode.mjs.map +0 -1
- package/lib/components/VTreeview/_mixins.sass +0 -18
- package/lib/components/VTreeview/_variables.scss +0 -10
- package/lib/components/VTreeview/index.mjs +0 -10
- package/lib/components/VTreeview/index.mjs.map +0 -1
- package/lib/components/VTreeview/util/filterTreeItems.mjs +0 -25
- 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-
|
2
|
+
* Vuetify v3.7.0-master.2024-08-26
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -11268,6 +11268,8 @@
|
|
11268
11268
|
|
11269
11269
|
/** Omit properties starting with P */
|
11270
11270
|
|
11271
|
+
/** Omit keyof $props from T */
|
11272
|
+
|
11271
11273
|
function getDescriptor(obj, key) {
|
11272
11274
|
let currentObj = obj;
|
11273
11275
|
while (currentObj) {
|
@@ -13923,6 +13925,7 @@
|
|
13923
13925
|
props: makeVDialogProps(),
|
13924
13926
|
emits: {
|
13925
13927
|
'update:modelValue': value => true,
|
13928
|
+
afterEnter: () => true,
|
13926
13929
|
afterLeave: () => true
|
13927
13930
|
},
|
13928
13931
|
setup(props, _ref) {
|
@@ -13964,6 +13967,7 @@
|
|
13964
13967
|
});
|
13965
13968
|
}
|
13966
13969
|
function onAfterEnter() {
|
13970
|
+
emit('afterEnter');
|
13967
13971
|
if (overlay.value?.contentEl && !overlay.value.contentEl.contains(document.activeElement)) {
|
13968
13972
|
overlay.value.contentEl.focus({
|
13969
13973
|
preventScroll: true
|
@@ -28212,7 +28216,7 @@
|
|
28212
28216
|
goTo
|
28213
28217
|
};
|
28214
28218
|
}
|
28215
|
-
const version$1 = "3.7.0-master.2024-08-
|
28219
|
+
const version$1 = "3.7.0-master.2024-08-26";
|
28216
28220
|
createVuetify$1.version = version$1;
|
28217
28221
|
|
28218
28222
|
// Vue's inject() can only be used in setup
|
@@ -28237,7 +28241,7 @@
|
|
28237
28241
|
...options
|
28238
28242
|
});
|
28239
28243
|
};
|
28240
|
-
const version = "3.7.0-master.2024-08-
|
28244
|
+
const version = "3.7.0-master.2024-08-26";
|
28241
28245
|
createVuetify.version = version;
|
28242
28246
|
|
28243
28247
|
exports.blueprints = index;
|