vuetify 3.5.10 → 3.5.11
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 +8 -8
- package/dist/json/importMap.json +118 -118
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +2823 -2823
- package/dist/vuetify-labs.esm.js +11 -11
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +11 -11
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1801 -1801
- package/dist/vuetify.d.ts +35 -35
- package/dist/vuetify.esm.js +5 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -5
- 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/VOtpInput/VOtpInput.mjs +2 -2
- package/lib/components/VOtpInput/VOtpInput.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +35 -35
- package/lib/labs/VNumberInput/VNumberInput.mjs +6 -6
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/package.json +3 -3
package/dist/vuetify.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.5.
|
|
2
|
+
* Vuetify v3.5.11
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -23376,7 +23376,7 @@
|
|
|
23376
23376
|
e.preventDefault();
|
|
23377
23377
|
e.stopPropagation();
|
|
23378
23378
|
const clipboardText = e?.clipboardData?.getData('Text') ?? '';
|
|
23379
|
-
if (
|
|
23379
|
+
if (isValidNumber(clipboardText)) return;
|
|
23380
23380
|
model.value = clipboardText.split('');
|
|
23381
23381
|
inputRef.value?.[index].blur();
|
|
23382
23382
|
}
|
|
@@ -23392,7 +23392,7 @@
|
|
|
23392
23392
|
focusIndex.value = -1;
|
|
23393
23393
|
}
|
|
23394
23394
|
function isValidNumber(value) {
|
|
23395
|
-
return props.type === 'number' &&
|
|
23395
|
+
return props.type === 'number' && /[^0-9]/g.test(value);
|
|
23396
23396
|
}
|
|
23397
23397
|
provideDefaults({
|
|
23398
23398
|
VField: {
|
|
@@ -26252,7 +26252,7 @@
|
|
|
26252
26252
|
goTo
|
|
26253
26253
|
};
|
|
26254
26254
|
}
|
|
26255
|
-
const version$1 = "3.5.
|
|
26255
|
+
const version$1 = "3.5.11";
|
|
26256
26256
|
createVuetify$1.version = version$1;
|
|
26257
26257
|
|
|
26258
26258
|
// Vue's inject() can only be used in setup
|
|
@@ -26277,7 +26277,7 @@
|
|
|
26277
26277
|
...options
|
|
26278
26278
|
});
|
|
26279
26279
|
};
|
|
26280
|
-
const version = "3.5.
|
|
26280
|
+
const version = "3.5.11";
|
|
26281
26281
|
createVuetify.version = version;
|
|
26282
26282
|
|
|
26283
26283
|
exports.blueprints = index;
|