vuetify 3.8.4 → 3.8.5
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/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +3194 -2850
- package/dist/json/importMap-labs.json +28 -24
- package/dist/json/importMap.json +158 -158
- package/dist/json/tags.json +91 -0
- package/dist/json/web-types.json +6341 -5124
- package/dist/vuetify-labs.cjs +277 -18
- package/dist/vuetify-labs.css +3763 -3735
- package/dist/vuetify-labs.d.ts +1380 -300
- package/dist/vuetify-labs.esm.js +277 -18
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +277 -18
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +5 -9
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2976 -2951
- package/dist/vuetify.d.ts +67 -64
- package/dist/vuetify.esm.js +5 -9
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -9
- 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/VAutocomplete.js +0 -5
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.css +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.sass +1 -1
- package/lib/components/VBtn/VBtn.css +25 -0
- package/lib/components/VBtn/VBtn.sass +9 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +3 -1
- package/lib/components/VSnackbarQueue/VSnackbarQueue.js.map +1 -1
- package/lib/composables/dateFormat.d.ts +24 -0
- package/lib/composables/dateFormat.js +112 -0
- package/lib/composables/dateFormat.js.map +1 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +67 -64
- package/lib/framework.js +1 -1
- package/lib/iconsets/mdi.js +2 -1
- package/lib/iconsets/mdi.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.css +4 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +1767 -0
- package/lib/labs/VColorInput/VColorInput.js +129 -0
- package/lib/labs/VColorInput/VColorInput.js.map +1 -0
- package/lib/labs/VColorInput/VColorInput.sass +7 -0
- package/lib/labs/VColorInput/_variables.scss +2 -0
- package/lib/labs/VColorInput/index.d.ts +1 -0
- package/lib/labs/VColorInput/index.js +2 -0
- package/lib/labs/VColorInput/index.js.map +1 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +46 -21
- package/lib/labs/VDateInput/VDateInput.js +43 -10
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/package.json +2 -3
package/dist/vuetify.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.8.
|
|
2
|
+
* Vuetify v3.8.5
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -1773,7 +1773,8 @@
|
|
|
1773
1773
|
treeviewCollapse: 'mdi-menu-down',
|
|
1774
1774
|
treeviewExpand: 'mdi-menu-right',
|
|
1775
1775
|
eyeDropper: 'mdi-eyedropper',
|
|
1776
|
-
upload: 'mdi-cloud-upload'
|
|
1776
|
+
upload: 'mdi-cloud-upload',
|
|
1777
|
+
color: 'mdi-palette'
|
|
1777
1778
|
};
|
|
1778
1779
|
const mdi = {
|
|
1779
1780
|
// Not using mergeProps here, functional components merge props by default (?)
|
|
@@ -13784,11 +13785,6 @@
|
|
|
13784
13785
|
menu.value = true;
|
|
13785
13786
|
}
|
|
13786
13787
|
});
|
|
13787
|
-
vue.watch(model, value => {
|
|
13788
|
-
if (!props.multiple && !hasSelectionSlot.value) {
|
|
13789
|
-
search.value = value[0]?.title ?? '';
|
|
13790
|
-
}
|
|
13791
|
-
});
|
|
13792
13788
|
useRender(() => {
|
|
13793
13789
|
const hasList = !!(!props.hideNoData || displayItems.value.length || slots['prepend-item'] || slots['append-item'] || slots['no-data']);
|
|
13794
13790
|
const isDirty = model.value.length > 0;
|
|
@@ -29242,7 +29238,7 @@
|
|
|
29242
29238
|
};
|
|
29243
29239
|
});
|
|
29244
29240
|
}
|
|
29245
|
-
const version$1 = "3.8.
|
|
29241
|
+
const version$1 = "3.8.5";
|
|
29246
29242
|
createVuetify$1.version = version$1;
|
|
29247
29243
|
|
|
29248
29244
|
// Vue's inject() can only be used in setup
|
|
@@ -29267,7 +29263,7 @@
|
|
|
29267
29263
|
...options
|
|
29268
29264
|
});
|
|
29269
29265
|
};
|
|
29270
|
-
const version = "3.8.
|
|
29266
|
+
const version = "3.8.5";
|
|
29271
29267
|
createVuetify.version = version;
|
|
29272
29268
|
|
|
29273
29269
|
exports.blueprints = index;
|