@vuetify/nightly 3.9.2-master.2025-07-27 → 3.9.2-master.2025-07-28
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 +4 -3
- package/dist/json/attributes.json +3384 -3384
- package/dist/json/importMap-labs.json +28 -28
- package/dist/json/importMap.json +144 -144
- package/dist/json/web-types.json +6337 -6337
- package/dist/vuetify-labs.cjs +4 -4
- package/dist/vuetify-labs.css +6030 -6030
- package/dist/vuetify-labs.d.ts +59 -59
- package/dist/vuetify-labs.esm.js +4 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +4 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +4 -4
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4289 -4289
- package/dist/vuetify.d.ts +59 -59
- package/dist/vuetify.esm.js +4 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +4 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.js +1 -1
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +59 -59
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.9.2-master.2025-07-
|
2
|
+
* Vuetify v3.9.2-master.2025-07-28
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -26097,7 +26097,7 @@
|
|
26097
26097
|
return fixed.replace('.', decimalSeparator.value);
|
26098
26098
|
}
|
26099
26099
|
let [baseDigits, fractionDigits] = fixed.split('.');
|
26100
|
-
fractionDigits = (fractionDigits ?? '').padEnd(props.minFractionDigits, '0').replace(new RegExp(`(?<=\\d{${props.minFractionDigits}})0
|
26100
|
+
fractionDigits = (fractionDigits ?? '').padEnd(props.minFractionDigits, '0').replace(new RegExp(`(?<=\\d{${props.minFractionDigits}})0+$`, 'g'), '');
|
26101
26101
|
return [baseDigits, fractionDigits].filter(Boolean).join(decimalSeparator.value);
|
26102
26102
|
}
|
26103
26103
|
const model = useProxiedModel(props, 'modelValue', null, val => val ?? null, val => val == null ? val ?? null : clamp(Number(val), props.min, props.max));
|
@@ -31436,7 +31436,7 @@
|
|
31436
31436
|
};
|
31437
31437
|
});
|
31438
31438
|
}
|
31439
|
-
const version$1 = "3.9.2-master.2025-07-
|
31439
|
+
const version$1 = "3.9.2-master.2025-07-28";
|
31440
31440
|
createVuetify$1.version = version$1;
|
31441
31441
|
|
31442
31442
|
// Vue's inject() can only be used in setup
|
@@ -31461,7 +31461,7 @@
|
|
31461
31461
|
...options
|
31462
31462
|
});
|
31463
31463
|
};
|
31464
|
-
const version = "3.9.2-master.2025-07-
|
31464
|
+
const version = "3.9.2-master.2025-07-28";
|
31465
31465
|
createVuetify.version = version;
|
31466
31466
|
|
31467
31467
|
exports.blueprints = index;
|