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-labs.esm.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
|
*/
|
|
@@ -23139,7 +23139,7 @@ const VOtpInput = genericComponent()({
|
|
|
23139
23139
|
e.preventDefault();
|
|
23140
23140
|
e.stopPropagation();
|
|
23141
23141
|
const clipboardText = e?.clipboardData?.getData('Text') ?? '';
|
|
23142
|
-
if (
|
|
23142
|
+
if (isValidNumber(clipboardText)) return;
|
|
23143
23143
|
model.value = clipboardText.split('');
|
|
23144
23144
|
inputRef.value?.[index].blur();
|
|
23145
23145
|
}
|
|
@@ -23155,7 +23155,7 @@ const VOtpInput = genericComponent()({
|
|
|
23155
23155
|
focusIndex.value = -1;
|
|
23156
23156
|
}
|
|
23157
23157
|
function isValidNumber(value) {
|
|
23158
|
-
return props.type === 'number' &&
|
|
23158
|
+
return props.type === 'number' && /[^0-9]/g.test(value);
|
|
23159
23159
|
}
|
|
23160
23160
|
provideDefaults({
|
|
23161
23161
|
VField: {
|
|
@@ -26492,7 +26492,7 @@ const VNumberInput = genericComponent()({
|
|
|
26492
26492
|
"flat": true,
|
|
26493
26493
|
"key": "decrement-btn",
|
|
26494
26494
|
"height": defaultHeight,
|
|
26495
|
-
"icon": "
|
|
26495
|
+
"icon": "$expand",
|
|
26496
26496
|
"rounded": "0",
|
|
26497
26497
|
"size": "small",
|
|
26498
26498
|
"onClick": onClickDown
|
|
@@ -26504,7 +26504,7 @@ const VNumberInput = genericComponent()({
|
|
|
26504
26504
|
rounded: '0',
|
|
26505
26505
|
height: defaultHeight,
|
|
26506
26506
|
size: 'small',
|
|
26507
|
-
icon: '
|
|
26507
|
+
icon: '$expand'
|
|
26508
26508
|
}
|
|
26509
26509
|
}
|
|
26510
26510
|
}, {
|
|
@@ -26515,7 +26515,7 @@ const VNumberInput = genericComponent()({
|
|
|
26515
26515
|
"flat": true,
|
|
26516
26516
|
"key": "increment-btn",
|
|
26517
26517
|
"height": defaultHeight,
|
|
26518
|
-
"icon": "
|
|
26518
|
+
"icon": "$collapse",
|
|
26519
26519
|
"onClick": onClickUp,
|
|
26520
26520
|
"rounded": "0",
|
|
26521
26521
|
"size": "small"
|
|
@@ -26527,7 +26527,7 @@ const VNumberInput = genericComponent()({
|
|
|
26527
26527
|
height: defaultHeight,
|
|
26528
26528
|
rounded: '0',
|
|
26529
26529
|
size: 'small',
|
|
26530
|
-
icon: '
|
|
26530
|
+
icon: '$collapse'
|
|
26531
26531
|
}
|
|
26532
26532
|
}
|
|
26533
26533
|
}, {
|
|
@@ -26584,7 +26584,7 @@ const VNumberInput = genericComponent()({
|
|
|
26584
26584
|
}, null), createVNode(VBtn, {
|
|
26585
26585
|
"flat": true,
|
|
26586
26586
|
"height": "100%",
|
|
26587
|
-
"icon": "
|
|
26587
|
+
"icon": "$plus",
|
|
26588
26588
|
"tile": true,
|
|
26589
26589
|
"onClick": onClickUp
|
|
26590
26590
|
}, null)]) : !props.reverse ? () => createVNode(Fragment, null, [dividerNode(), controlNode()]) : undefined,
|
|
@@ -26593,7 +26593,7 @@ const VNumberInput = genericComponent()({
|
|
|
26593
26593
|
}, [createVNode(VBtn, {
|
|
26594
26594
|
"flat": true,
|
|
26595
26595
|
"height": "100%",
|
|
26596
|
-
"icon": "
|
|
26596
|
+
"icon": "$minus",
|
|
26597
26597
|
"tile": true,
|
|
26598
26598
|
"onClick": onClickDown
|
|
26599
26599
|
}, null), createVNode(VDivider, {
|
|
@@ -27858,7 +27858,7 @@ function createVuetify$1() {
|
|
|
27858
27858
|
goTo
|
|
27859
27859
|
};
|
|
27860
27860
|
}
|
|
27861
|
-
const version$1 = "3.5.
|
|
27861
|
+
const version$1 = "3.5.11";
|
|
27862
27862
|
createVuetify$1.version = version$1;
|
|
27863
27863
|
|
|
27864
27864
|
// Vue's inject() can only be used in setup
|
|
@@ -28111,7 +28111,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
28111
28111
|
|
|
28112
28112
|
/* eslint-disable local-rules/sort-imports */
|
|
28113
28113
|
|
|
28114
|
-
const version = "3.5.
|
|
28114
|
+
const version = "3.5.11";
|
|
28115
28115
|
|
|
28116
28116
|
/* eslint-disable local-rules/sort-imports */
|
|
28117
28117
|
|