@vuetify/nightly 3.7.13-master.2025-02-25 → 3.7.14-master.2025-02-26
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 +7 -22
- package/dist/json/attributes.json +3724 -3728
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +202 -202
- package/dist/json/tags.json +0 -1
- package/dist/json/web-types.json +7050 -7059
- package/dist/vuetify-labs.css +3559 -3560
- package/dist/vuetify-labs.d.ts +0 -6
- package/dist/vuetify-labs.esm.js +25 -26
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +25 -26
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3935 -3936
- package/dist/vuetify.d.ts +71 -71
- package/dist/vuetify.esm.js +23 -25
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +23 -25
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +16 -13
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VFileInput/VFileInput.css +0 -1
- package/lib/components/VFileInput/VFileInput.mjs +11 -1
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/VFileInput.sass +0 -1
- package/lib/composables/date/adapters/vuetify.mjs +9 -21
- package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +71 -71
- package/lib/labs/VNumberInput/VNumberInput.mjs +2 -1
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VNumberInput/index.d.mts +0 -6
- package/lib/labs/components.d.mts +0 -6
- package/lib/locale/zh-Hant.mjs +30 -30
- package/lib/locale/zh-Hant.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.
|
2
|
+
* Vuetify v3.7.14-master.2025-02-26
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -17950,16 +17950,13 @@
|
|
17950
17950
|
case 'fullTime':
|
17951
17951
|
options = {
|
17952
17952
|
hour: 'numeric',
|
17953
|
-
minute: 'numeric'
|
17954
|
-
second: 'numeric',
|
17955
|
-
hour12: true
|
17953
|
+
minute: 'numeric'
|
17956
17954
|
};
|
17957
17955
|
break;
|
17958
17956
|
case 'fullTime12h':
|
17959
17957
|
options = {
|
17960
17958
|
hour: 'numeric',
|
17961
17959
|
minute: 'numeric',
|
17962
|
-
second: 'numeric',
|
17963
17960
|
hour12: true
|
17964
17961
|
};
|
17965
17962
|
break;
|
@@ -17967,40 +17964,35 @@
|
|
17967
17964
|
options = {
|
17968
17965
|
hour: 'numeric',
|
17969
17966
|
minute: 'numeric',
|
17970
|
-
second: 'numeric',
|
17971
17967
|
hour12: false
|
17972
17968
|
};
|
17973
17969
|
break;
|
17974
17970
|
case 'fullDateTime':
|
17975
17971
|
options = {
|
17976
17972
|
year: 'numeric',
|
17977
|
-
month: '
|
17973
|
+
month: 'short',
|
17978
17974
|
day: 'numeric',
|
17979
17975
|
hour: 'numeric',
|
17980
|
-
minute: 'numeric'
|
17981
|
-
second: 'numeric',
|
17982
|
-
hour12: true
|
17976
|
+
minute: 'numeric'
|
17983
17977
|
};
|
17984
17978
|
break;
|
17985
17979
|
case 'fullDateTime12h':
|
17986
17980
|
options = {
|
17987
17981
|
year: 'numeric',
|
17988
|
-
month: '
|
17982
|
+
month: 'short',
|
17989
17983
|
day: 'numeric',
|
17990
17984
|
hour: 'numeric',
|
17991
17985
|
minute: 'numeric',
|
17992
|
-
second: 'numeric',
|
17993
17986
|
hour12: true
|
17994
17987
|
};
|
17995
17988
|
break;
|
17996
17989
|
case 'fullDateTime24h':
|
17997
17990
|
options = {
|
17998
17991
|
year: 'numeric',
|
17999
|
-
month: '
|
17992
|
+
month: 'short',
|
18000
17993
|
day: 'numeric',
|
18001
17994
|
hour: 'numeric',
|
18002
17995
|
minute: 'numeric',
|
18003
|
-
second: 'numeric',
|
18004
17996
|
hour12: false
|
18005
17997
|
};
|
18006
17998
|
break;
|
@@ -18017,11 +18009,9 @@
|
|
18017
18009
|
month: '2-digit',
|
18018
18010
|
day: '2-digit',
|
18019
18011
|
hour: 'numeric',
|
18020
|
-
minute: 'numeric'
|
18021
|
-
second: 'numeric',
|
18022
|
-
hour12: false
|
18012
|
+
minute: 'numeric'
|
18023
18013
|
};
|
18024
|
-
|
18014
|
+
return new Intl.DateTimeFormat(locale, options).format(newDate).replace(/, /g, ' ');
|
18025
18015
|
case 'keyboardDateTime12h':
|
18026
18016
|
options = {
|
18027
18017
|
year: 'numeric',
|
@@ -18029,10 +18019,9 @@
|
|
18029
18019
|
day: '2-digit',
|
18030
18020
|
hour: 'numeric',
|
18031
18021
|
minute: 'numeric',
|
18032
|
-
second: 'numeric',
|
18033
18022
|
hour12: true
|
18034
18023
|
};
|
18035
|
-
|
18024
|
+
return new Intl.DateTimeFormat(locale, options).format(newDate).replace(/, /g, ' ');
|
18036
18025
|
case 'keyboardDateTime24h':
|
18037
18026
|
options = {
|
18038
18027
|
year: 'numeric',
|
@@ -18040,10 +18029,9 @@
|
|
18040
18029
|
day: '2-digit',
|
18041
18030
|
hour: 'numeric',
|
18042
18031
|
minute: 'numeric',
|
18043
|
-
second: 'numeric',
|
18044
18032
|
hour12: false
|
18045
18033
|
};
|
18046
|
-
|
18034
|
+
return new Intl.DateTimeFormat(locale, options).format(newDate).replace(/, /g, ' ');
|
18047
18035
|
default:
|
18048
18036
|
options = customFormat ?? {
|
18049
18037
|
timeZone: 'UTC',
|
@@ -23299,6 +23287,14 @@
|
|
23299
23287
|
callEvent(props['onClick:clear'], e);
|
23300
23288
|
});
|
23301
23289
|
}
|
23290
|
+
function onDragover(e) {
|
23291
|
+
e.preventDefault();
|
23292
|
+
}
|
23293
|
+
function onDrop(e) {
|
23294
|
+
e.preventDefault();
|
23295
|
+
if (!e.dataTransfer) return;
|
23296
|
+
model.value = [...(e.dataTransfer.files ?? [])];
|
23297
|
+
}
|
23302
23298
|
vue.watch(model, newValue => {
|
23303
23299
|
const hasModelReset = !Array.isArray(newValue) || !newValue.length;
|
23304
23300
|
if (hasModelReset && inputRef.value) {
|
@@ -23351,7 +23347,9 @@
|
|
23351
23347
|
"dirty": isDirty.value || props.dirty,
|
23352
23348
|
"disabled": isDisabled.value,
|
23353
23349
|
"focused": isFocused.value,
|
23354
|
-
"error": isValid.value === false
|
23350
|
+
"error": isValid.value === false,
|
23351
|
+
"onDragover": onDragover,
|
23352
|
+
"onDrop": onDrop
|
23355
23353
|
}), {
|
23356
23354
|
...slots,
|
23357
23355
|
default: _ref4 => {
|
@@ -28420,7 +28418,7 @@
|
|
28420
28418
|
goTo
|
28421
28419
|
};
|
28422
28420
|
}
|
28423
|
-
const version$1 = "3.7.
|
28421
|
+
const version$1 = "3.7.14-master.2025-02-26";
|
28424
28422
|
createVuetify$1.version = version$1;
|
28425
28423
|
|
28426
28424
|
// Vue's inject() can only be used in setup
|
@@ -28445,7 +28443,7 @@
|
|
28445
28443
|
...options
|
28446
28444
|
});
|
28447
28445
|
};
|
28448
|
-
const version = "3.7.
|
28446
|
+
const version = "3.7.14-master.2025-02-26";
|
28449
28447
|
createVuetify.version = version;
|
28450
28448
|
|
28451
28449
|
exports.blueprints = index;
|