@vuetify/nightly 3.7.14-master.2025-03-04 → 3.7.15-master.2025-03-05
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 -38
- package/dist/json/attributes.json +2673 -2673
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +170 -170
- package/dist/json/web-types.json +5151 -5151
- package/dist/vuetify-labs.css +2899 -2899
- package/dist/vuetify-labs.d.ts +34 -34
- package/dist/vuetify-labs.esm.js +6 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +6 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4200 -4200
- package/dist/vuetify.d.ts +89 -89
- package/dist/vuetify.esm.js +6 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +6 -4
- 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/VDataIterator/index.d.mts +2 -2
- package/lib/components/VDataTable/composables/headers.mjs +2 -0
- package/lib/components/VDataTable/composables/headers.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +34 -34
- package/lib/components/VDataTable/types.mjs.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.mjs +1 -1
- package/lib/components/VOtpInput/VOtpInput.mjs.map +1 -1
- package/lib/components/index.d.mts +34 -34
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +55 -55
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.
|
2
|
+
* Vuetify v3.7.15-master.2025-03-05
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -19986,6 +19986,8 @@
|
|
19986
19986
|
item.lastFixed = true;
|
19987
19987
|
} else if (isNaN(+item.width)) {
|
19988
19988
|
consoleError(`Multiple fixed columns should have a static width (key: ${item.key})`);
|
19989
|
+
} else {
|
19990
|
+
item.minWidth = Math.max(+item.width || 0, +item.minWidth || 0);
|
19989
19991
|
}
|
19990
19992
|
seenFixed = true;
|
19991
19993
|
}
|
@@ -24835,7 +24837,7 @@
|
|
24835
24837
|
"disabled": props.disabled,
|
24836
24838
|
"inputmode": props.type === 'number' ? 'numeric' : 'text',
|
24837
24839
|
"min": props.type === 'number' ? 0 : undefined,
|
24838
|
-
"maxlength":
|
24840
|
+
"maxlength": i === 0 ? length.value : '1',
|
24839
24841
|
"placeholder": props.placeholder,
|
24840
24842
|
"type": props.type === 'number' ? 'text' : props.type,
|
24841
24843
|
"value": model.value[i],
|
@@ -28421,7 +28423,7 @@
|
|
28421
28423
|
goTo
|
28422
28424
|
};
|
28423
28425
|
}
|
28424
|
-
const version$1 = "3.7.
|
28426
|
+
const version$1 = "3.7.15-master.2025-03-05";
|
28425
28427
|
createVuetify$1.version = version$1;
|
28426
28428
|
|
28427
28429
|
// Vue's inject() can only be used in setup
|
@@ -28446,7 +28448,7 @@
|
|
28446
28448
|
...options
|
28447
28449
|
});
|
28448
28450
|
};
|
28449
|
-
const version = "3.7.
|
28451
|
+
const version = "3.7.15-master.2025-03-05";
|
28450
28452
|
createVuetify.version = version;
|
28451
28453
|
|
28452
28454
|
exports.blueprints = index;
|