@vuetify/nightly 3.7.0-beta.1-dev.2024-08-15 → 3.7.0-master.2024-08-16
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/attributes.json +98 -98
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +160 -160
- package/dist/json/web-types.json +191 -191
- package/dist/vuetify-labs.css +1833 -1836
- package/dist/vuetify-labs.esm.js +10 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +10 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1780 -1783
- package/dist/vuetify.d.ts +57 -57
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +3 -3
- package/lib/components/VBtn/VBtn.css +0 -4
- package/lib/components/VBtn/VBtn.sass +0 -6
- package/lib/components/VBtn/_variables.scss +0 -1
- package/lib/components/VCard/VCard.css +1 -0
- package/lib/components/VCard/VCard.sass +1 -0
- package/lib/components/VCard/_variables.scss +7 -3
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.mts +57 -57
- package/lib/labs/VNumberInput/VNumberInput.mjs +7 -1
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.0-
|
2
|
+
* Vuetify v3.7.0-master.2024-08-16
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -28154,7 +28154,13 @@
|
|
28154
28154
|
const model = vue.computed({
|
28155
28155
|
get: () => _model.value,
|
28156
28156
|
set(val) {
|
28157
|
-
if (
|
28157
|
+
if (val === null) {
|
28158
|
+
_model.value = null;
|
28159
|
+
return;
|
28160
|
+
}
|
28161
|
+
if (!isNaN(+val) && +val <= props.max && +val >= props.min) {
|
28162
|
+
_model.value = +val;
|
28163
|
+
}
|
28158
28164
|
}
|
28159
28165
|
});
|
28160
28166
|
const vTextFieldRef = vue.ref();
|
@@ -30382,7 +30388,7 @@
|
|
30382
30388
|
goTo
|
30383
30389
|
};
|
30384
30390
|
}
|
30385
|
-
const version$1 = "3.7.0-
|
30391
|
+
const version$1 = "3.7.0-master.2024-08-16";
|
30386
30392
|
createVuetify$1.version = version$1;
|
30387
30393
|
|
30388
30394
|
// Vue's inject() can only be used in setup
|
@@ -30635,7 +30641,7 @@
|
|
30635
30641
|
|
30636
30642
|
/* eslint-disable local-rules/sort-imports */
|
30637
30643
|
|
30638
|
-
const version = "3.7.0-
|
30644
|
+
const version = "3.7.0-master.2024-08-16";
|
30639
30645
|
|
30640
30646
|
/* eslint-disable local-rules/sort-imports */
|
30641
30647
|
|