vuetify 3.10.11 → 3.10.12
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/dist/json/attributes.json +3371 -3371
- package/dist/json/importMap-labs.json +26 -26
- package/dist/json/importMap.json +162 -162
- package/dist/json/web-types.json +6094 -6094
- package/dist/vuetify-labs.cjs +20 -7
- package/dist/vuetify-labs.css +3825 -3825
- package/dist/vuetify-labs.d.ts +61 -61
- package/dist/vuetify-labs.esm.js +20 -7
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +20 -7
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +20 -7
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2277 -2277
- package/dist/vuetify.d.ts +61 -61
- package/dist/vuetify.esm.js +20 -7
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +20 -7
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +23 -23
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VSelect/VSelect.js +14 -3
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/composables/autocomplete.js +1 -0
- package/lib/composables/autocomplete.js.map +1 -1
- package/lib/directives/tooltip/index.js +5 -2
- package/lib/directives/tooltip/index.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +61 -61
- package/lib/framework.js +1 -1
- package/lib/util/helpers.js +1 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.10.
|
|
2
|
+
* Vuetify v3.10.12
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -371,7 +371,7 @@
|
|
|
371
371
|
} else if (Array.isArray(vnode.children)) {
|
|
372
372
|
return vnode.children.map(child => findChildrenWithProvide(key, child)).flat(1);
|
|
373
373
|
} else if (vnode.component) {
|
|
374
|
-
if (Object.
|
|
374
|
+
if (Object.getOwnPropertyDescriptor(vnode.component.provides, key)) {
|
|
375
375
|
return [vnode.component];
|
|
376
376
|
} else if (vnode.component.subTree) {
|
|
377
377
|
return findChildrenWithProvide(key, vnode.component.subTree).flat(1);
|
|
@@ -12717,6 +12717,7 @@
|
|
|
12717
12717
|
const reloadTrigger = vue.shallowRef(0);
|
|
12718
12718
|
const isSuppressing = vue.toRef(() => props.autocomplete === 'suppress');
|
|
12719
12719
|
const fieldName = vue.toRef(() => {
|
|
12720
|
+
if (!props.name) return undefined;
|
|
12720
12721
|
return isSuppressing.value ? `${props.name}-${uniqueId}-${reloadTrigger.value}` : props.name;
|
|
12721
12722
|
});
|
|
12722
12723
|
const fieldAutocomplete = vue.toRef(() => {
|
|
@@ -13536,6 +13537,7 @@
|
|
|
13536
13537
|
return typeof props.counterValue === 'function' ? props.counterValue(model.value) : typeof props.counterValue === 'number' ? props.counterValue : model.value.length;
|
|
13537
13538
|
});
|
|
13538
13539
|
const form = useForm(props);
|
|
13540
|
+
const autocomplete = useAutocomplete(props);
|
|
13539
13541
|
const selectedValues = vue.computed(() => model.value.map(selection => selection.value));
|
|
13540
13542
|
const isFocused = vue.shallowRef(false);
|
|
13541
13543
|
let keyboardLookupPrefix = '';
|
|
@@ -13728,7 +13730,8 @@
|
|
|
13728
13730
|
return vue.createVNode(VTextField, vue.mergeProps({
|
|
13729
13731
|
"ref": vTextFieldRef
|
|
13730
13732
|
}, textFieldProps, {
|
|
13731
|
-
"modelValue": model.value.map(v => v.props.
|
|
13733
|
+
"modelValue": model.value.map(v => v.props.title).join(', '),
|
|
13734
|
+
"name": undefined,
|
|
13732
13735
|
"onUpdate:modelValue": onModelUpdate,
|
|
13733
13736
|
"focused": isFocused.value,
|
|
13734
13737
|
"onUpdate:focused": $event => isFocused.value = $event,
|
|
@@ -13755,7 +13758,15 @@
|
|
|
13755
13758
|
"title": ariaLabel.value
|
|
13756
13759
|
}), {
|
|
13757
13760
|
...slots,
|
|
13758
|
-
default: () => vue.createElementVNode(vue.Fragment, null, [vue.
|
|
13761
|
+
default: () => vue.createElementVNode(vue.Fragment, null, [vue.createElementVNode("select", {
|
|
13762
|
+
"hidden": true,
|
|
13763
|
+
"multiple": props.multiple,
|
|
13764
|
+
"name": autocomplete.fieldName.value
|
|
13765
|
+
}, [items.value.map(item => vue.createElementVNode("option", {
|
|
13766
|
+
"key": item.value,
|
|
13767
|
+
"value": item.value,
|
|
13768
|
+
"selected": selectedValues.value.includes(item.value)
|
|
13769
|
+
}, null))]), vue.createVNode(VMenu, vue.mergeProps({
|
|
13759
13770
|
"id": menuId.value,
|
|
13760
13771
|
"ref": vMenuRef,
|
|
13761
13772
|
"modelValue": menu.value,
|
|
@@ -37020,8 +37031,10 @@
|
|
|
37020
37031
|
// Types
|
|
37021
37032
|
|
|
37022
37033
|
const Tooltip = useDirectiveComponent(VTooltip, binding => {
|
|
37034
|
+
const disabled = isObject(binding.value) ? !binding.value.text : ['', false, null].includes(binding.value); // undefined means true
|
|
37035
|
+
|
|
37023
37036
|
return {
|
|
37024
|
-
activator: 'parent',
|
|
37037
|
+
activator: disabled ? null : 'parent',
|
|
37025
37038
|
location: binding.arg?.replace('-', ' '),
|
|
37026
37039
|
text: typeof binding.value === 'boolean' ? undefined : binding.value
|
|
37027
37040
|
};
|
|
@@ -38143,7 +38156,7 @@
|
|
|
38143
38156
|
};
|
|
38144
38157
|
});
|
|
38145
38158
|
}
|
|
38146
|
-
const version$1 = "3.10.
|
|
38159
|
+
const version$1 = "3.10.12";
|
|
38147
38160
|
createVuetify$1.version = version$1;
|
|
38148
38161
|
|
|
38149
38162
|
// Vue's inject() can only be used in setup
|
|
@@ -38441,7 +38454,7 @@
|
|
|
38441
38454
|
|
|
38442
38455
|
/* eslint-disable local-rules/sort-imports */
|
|
38443
38456
|
|
|
38444
|
-
const version = "3.10.
|
|
38457
|
+
const version = "3.10.12";
|
|
38445
38458
|
|
|
38446
38459
|
/* eslint-disable local-rules/sort-imports */
|
|
38447
38460
|
|