@vuetify/nightly 3.8.1-master.2025-04-09 → 3.8.1-master.2025-04-13
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 +10 -3
- package/dist/json/attributes.json +2969 -2969
- package/dist/json/importMap-labs.json +26 -26
- package/dist/json/importMap.json +164 -164
- package/dist/json/web-types.json +5271 -5271
- package/dist/vuetify-labs.cjs +10 -5
- package/dist/vuetify-labs.css +3601 -3598
- package/dist/vuetify-labs.d.ts +55 -55
- package/dist/vuetify-labs.esm.js +10 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +10 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +10 -5
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5497 -5494
- package/dist/vuetify.d.ts +55 -55
- package/dist/vuetify.esm.js +10 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +10 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VCode/VCode.css +3 -0
- package/lib/components/VCode/VCode.sass +3 -0
- package/lib/composables/calendar.d.ts +1 -0
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/theme.js +2 -2
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/validation.js +5 -0
- package/lib/composables/validation.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +55 -55
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify.cjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.1-master.2025-04-
|
2
|
+
* Vuetify v3.8.1-master.2025-04-13
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -2808,8 +2808,8 @@
|
|
2808
2808
|
surface: '#212121',
|
2809
2809
|
'surface-bright': '#ccbfd6',
|
2810
2810
|
'surface-light': '#424242',
|
2811
|
-
'surface-variant': '#
|
2812
|
-
'on-surface-variant': '#
|
2811
|
+
'surface-variant': '#c8c8c8',
|
2812
|
+
'on-surface-variant': '#000000',
|
2813
2813
|
primary: '#2196F3',
|
2814
2814
|
'primary-darken-1': '#277CC1',
|
2815
2815
|
secondary: '#54B6B2',
|
@@ -7163,6 +7163,11 @@
|
|
7163
7163
|
}
|
7164
7164
|
async function validate() {
|
7165
7165
|
let silent = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
7166
|
+
if (props.disabled || props.readonly) {
|
7167
|
+
internalErrorMessages.value = [];
|
7168
|
+
isValidating.value = false;
|
7169
|
+
return internalErrorMessages.value;
|
7170
|
+
}
|
7166
7171
|
const results = [];
|
7167
7172
|
isValidating.value = true;
|
7168
7173
|
for (const rule of props.rules) {
|
@@ -29162,7 +29167,7 @@
|
|
29162
29167
|
};
|
29163
29168
|
});
|
29164
29169
|
}
|
29165
|
-
const version$1 = "3.8.1-master.2025-04-
|
29170
|
+
const version$1 = "3.8.1-master.2025-04-13";
|
29166
29171
|
createVuetify$1.version = version$1;
|
29167
29172
|
|
29168
29173
|
// Vue's inject() can only be used in setup
|
@@ -29187,7 +29192,7 @@
|
|
29187
29192
|
...options
|
29188
29193
|
});
|
29189
29194
|
};
|
29190
|
-
const version = "3.8.1-master.2025-04-
|
29195
|
+
const version = "3.8.1-master.2025-04-13";
|
29191
29196
|
createVuetify.version = version;
|
29192
29197
|
|
29193
29198
|
exports.blueprints = index;
|