@vuetify/nightly 3.8.3-master.2025-05-01 → 3.8.3-master.2025-05-02
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 +6 -3
- package/dist/json/attributes.json +1625 -1625
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +164 -164
- package/dist/json/web-types.json +2999 -2999
- package/dist/vuetify-labs.cjs +7 -6
- package/dist/vuetify-labs.css +5622 -5622
- package/dist/vuetify-labs.d.ts +53 -53
- package/dist/vuetify-labs.esm.js +7 -6
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +7 -6
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +3 -3
- package/dist/vuetify.css +2973 -2973
- package/dist/vuetify.d.ts +53 -53
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +3 -3
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +53 -53
- package/lib/framework.js +1 -1
- package/lib/labs/VDateInput/VDateInput.js +4 -3
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.3-master.2025-05-
|
2
|
+
* Vuetify v3.8.3-master.2025-05-02
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -29110,7 +29110,8 @@
|
|
29110
29110
|
focus,
|
29111
29111
|
blur
|
29112
29112
|
} = useFocus(props);
|
29113
|
-
const
|
29113
|
+
const emptyModelValue = () => props.multiple ? [] : null;
|
29114
|
+
const model = useProxiedModel(props, 'modelValue', emptyModelValue(), val => Array.isArray(val) ? val.map(item => adapter.toJsDate(item)) : val ? adapter.toJsDate(val) : val, val => Array.isArray(val) ? val.map(item => adapter.date(item)) : val ? adapter.date(val) : val);
|
29114
29115
|
const menu = vue.shallowRef(false);
|
29115
29116
|
const isEditingInput = vue.shallowRef(false);
|
29116
29117
|
const vTextFieldRef = vue.ref();
|
@@ -29180,7 +29181,7 @@
|
|
29180
29181
|
}
|
29181
29182
|
function onUpdateDisplayModel(value) {
|
29182
29183
|
if (value != null) return;
|
29183
|
-
model.value =
|
29184
|
+
model.value = emptyModelValue();
|
29184
29185
|
}
|
29185
29186
|
function onBlur(e) {
|
29186
29187
|
if (props.updateOn.includes('blur')) {
|
@@ -29199,7 +29200,7 @@
|
|
29199
29200
|
value
|
29200
29201
|
} = _ref2;
|
29201
29202
|
if (value && !adapter.isValid(value)) return;
|
29202
|
-
model.value = !value ?
|
29203
|
+
model.value = !value ? emptyModelValue() : value;
|
29203
29204
|
}
|
29204
29205
|
useRender(() => {
|
29205
29206
|
const confirmEditProps = VConfirmEdit.filterProps(props);
|
@@ -31661,7 +31662,7 @@
|
|
31661
31662
|
};
|
31662
31663
|
});
|
31663
31664
|
}
|
31664
|
-
const version$1 = "3.8.3-master.2025-05-
|
31665
|
+
const version$1 = "3.8.3-master.2025-05-02";
|
31665
31666
|
createVuetify$1.version = version$1;
|
31666
31667
|
|
31667
31668
|
// Vue's inject() can only be used in setup
|
@@ -31959,7 +31960,7 @@
|
|
31959
31960
|
|
31960
31961
|
/* eslint-disable local-rules/sort-imports */
|
31961
31962
|
|
31962
|
-
const version = "3.8.3-master.2025-05-
|
31963
|
+
const version = "3.8.3-master.2025-05-02";
|
31963
31964
|
|
31964
31965
|
/* eslint-disable local-rules/sort-imports */
|
31965
31966
|
|