@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-labs.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
|
*/
|
@@ -17717,16 +17717,13 @@
|
|
17717
17717
|
case 'fullTime':
|
17718
17718
|
options = {
|
17719
17719
|
hour: 'numeric',
|
17720
|
-
minute: 'numeric'
|
17721
|
-
second: 'numeric',
|
17722
|
-
hour12: true
|
17720
|
+
minute: 'numeric'
|
17723
17721
|
};
|
17724
17722
|
break;
|
17725
17723
|
case 'fullTime12h':
|
17726
17724
|
options = {
|
17727
17725
|
hour: 'numeric',
|
17728
17726
|
minute: 'numeric',
|
17729
|
-
second: 'numeric',
|
17730
17727
|
hour12: true
|
17731
17728
|
};
|
17732
17729
|
break;
|
@@ -17734,40 +17731,35 @@
|
|
17734
17731
|
options = {
|
17735
17732
|
hour: 'numeric',
|
17736
17733
|
minute: 'numeric',
|
17737
|
-
second: 'numeric',
|
17738
17734
|
hour12: false
|
17739
17735
|
};
|
17740
17736
|
break;
|
17741
17737
|
case 'fullDateTime':
|
17742
17738
|
options = {
|
17743
17739
|
year: 'numeric',
|
17744
|
-
month: '
|
17740
|
+
month: 'short',
|
17745
17741
|
day: 'numeric',
|
17746
17742
|
hour: 'numeric',
|
17747
|
-
minute: 'numeric'
|
17748
|
-
second: 'numeric',
|
17749
|
-
hour12: true
|
17743
|
+
minute: 'numeric'
|
17750
17744
|
};
|
17751
17745
|
break;
|
17752
17746
|
case 'fullDateTime12h':
|
17753
17747
|
options = {
|
17754
17748
|
year: 'numeric',
|
17755
|
-
month: '
|
17749
|
+
month: 'short',
|
17756
17750
|
day: 'numeric',
|
17757
17751
|
hour: 'numeric',
|
17758
17752
|
minute: 'numeric',
|
17759
|
-
second: 'numeric',
|
17760
17753
|
hour12: true
|
17761
17754
|
};
|
17762
17755
|
break;
|
17763
17756
|
case 'fullDateTime24h':
|
17764
17757
|
options = {
|
17765
17758
|
year: 'numeric',
|
17766
|
-
month: '
|
17759
|
+
month: 'short',
|
17767
17760
|
day: 'numeric',
|
17768
17761
|
hour: 'numeric',
|
17769
17762
|
minute: 'numeric',
|
17770
|
-
second: 'numeric',
|
17771
17763
|
hour12: false
|
17772
17764
|
};
|
17773
17765
|
break;
|
@@ -17784,11 +17776,9 @@
|
|
17784
17776
|
month: '2-digit',
|
17785
17777
|
day: '2-digit',
|
17786
17778
|
hour: 'numeric',
|
17787
|
-
minute: 'numeric'
|
17788
|
-
second: 'numeric',
|
17789
|
-
hour12: false
|
17779
|
+
minute: 'numeric'
|
17790
17780
|
};
|
17791
|
-
|
17781
|
+
return new Intl.DateTimeFormat(locale, options).format(newDate).replace(/, /g, ' ');
|
17792
17782
|
case 'keyboardDateTime12h':
|
17793
17783
|
options = {
|
17794
17784
|
year: 'numeric',
|
@@ -17796,10 +17786,9 @@
|
|
17796
17786
|
day: '2-digit',
|
17797
17787
|
hour: 'numeric',
|
17798
17788
|
minute: 'numeric',
|
17799
|
-
second: 'numeric',
|
17800
17789
|
hour12: true
|
17801
17790
|
};
|
17802
|
-
|
17791
|
+
return new Intl.DateTimeFormat(locale, options).format(newDate).replace(/, /g, ' ');
|
17803
17792
|
case 'keyboardDateTime24h':
|
17804
17793
|
options = {
|
17805
17794
|
year: 'numeric',
|
@@ -17807,10 +17796,9 @@
|
|
17807
17796
|
day: '2-digit',
|
17808
17797
|
hour: 'numeric',
|
17809
17798
|
minute: 'numeric',
|
17810
|
-
second: 'numeric',
|
17811
17799
|
hour12: false
|
17812
17800
|
};
|
17813
|
-
|
17801
|
+
return new Intl.DateTimeFormat(locale, options).format(newDate).replace(/, /g, ' ');
|
17814
17802
|
default:
|
17815
17803
|
options = customFormat ?? {
|
17816
17804
|
timeZone: 'UTC',
|
@@ -23066,6 +23054,14 @@
|
|
23066
23054
|
callEvent(props['onClick:clear'], e);
|
23067
23055
|
});
|
23068
23056
|
}
|
23057
|
+
function onDragover(e) {
|
23058
|
+
e.preventDefault();
|
23059
|
+
}
|
23060
|
+
function onDrop(e) {
|
23061
|
+
e.preventDefault();
|
23062
|
+
if (!e.dataTransfer) return;
|
23063
|
+
model.value = [...(e.dataTransfer.files ?? [])];
|
23064
|
+
}
|
23069
23065
|
vue.watch(model, newValue => {
|
23070
23066
|
const hasModelReset = !Array.isArray(newValue) || !newValue.length;
|
23071
23067
|
if (hasModelReset && inputRef.value) {
|
@@ -23118,7 +23114,9 @@
|
|
23118
23114
|
"dirty": isDirty.value || props.dirty,
|
23119
23115
|
"disabled": isDisabled.value,
|
23120
23116
|
"focused": isFocused.value,
|
23121
|
-
"error": isValid.value === false
|
23117
|
+
"error": isValid.value === false,
|
23118
|
+
"onDragover": onDragover,
|
23119
|
+
"onDrop": onDrop
|
23122
23120
|
}), {
|
23123
23121
|
...slots,
|
23124
23122
|
default: _ref4 => {
|
@@ -28689,7 +28687,7 @@
|
|
28689
28687
|
type: Number,
|
28690
28688
|
default: 0
|
28691
28689
|
},
|
28692
|
-
...omit(makeVTextFieldProps(
|
28690
|
+
...omit(makeVTextFieldProps(), ['modelValue', 'validationValue'])
|
28693
28691
|
}, 'VNumberInput');
|
28694
28692
|
const VNumberInput = genericComponent()({
|
28695
28693
|
name: 'VNumberInput',
|
@@ -28951,6 +28949,7 @@
|
|
28951
28949
|
"ref": vTextFieldRef,
|
28952
28950
|
"modelValue": inputText.value,
|
28953
28951
|
"onUpdate:modelValue": $event => inputText.value = $event,
|
28952
|
+
"validationValue": model.value,
|
28954
28953
|
"onBeforeinput": onBeforeinput,
|
28955
28954
|
"onFocus": onFocus,
|
28956
28955
|
"onBlur": onBlur,
|
@@ -30980,7 +30979,7 @@
|
|
30980
30979
|
goTo
|
30981
30980
|
};
|
30982
30981
|
}
|
30983
|
-
const version$1 = "3.7.
|
30982
|
+
const version$1 = "3.7.14-master.2025-02-26";
|
30984
30983
|
createVuetify$1.version = version$1;
|
30985
30984
|
|
30986
30985
|
// Vue's inject() can only be used in setup
|
@@ -31233,7 +31232,7 @@
|
|
31233
31232
|
|
31234
31233
|
/* eslint-disable local-rules/sort-imports */
|
31235
31234
|
|
31236
|
-
const version = "3.7.
|
31235
|
+
const version = "3.7.14-master.2025-02-26";
|
31237
31236
|
|
31238
31237
|
/* eslint-disable local-rules/sort-imports */
|
31239
31238
|
|