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.js
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
|
*/
|
|
@@ -300,7 +300,7 @@
|
|
|
300
300
|
} else if (Array.isArray(vnode.children)) {
|
|
301
301
|
return vnode.children.map(child => findChildrenWithProvide(key, child)).flat(1);
|
|
302
302
|
} else if (vnode.component) {
|
|
303
|
-
if (Object.
|
|
303
|
+
if (Object.getOwnPropertyDescriptor(vnode.component.provides, key)) {
|
|
304
304
|
return [vnode.component];
|
|
305
305
|
} else if (vnode.component.subTree) {
|
|
306
306
|
return findChildrenWithProvide(key, vnode.component.subTree).flat(1);
|
|
@@ -12963,6 +12963,7 @@
|
|
|
12963
12963
|
const reloadTrigger = vue.shallowRef(0);
|
|
12964
12964
|
const isSuppressing = vue.toRef(() => props.autocomplete === 'suppress');
|
|
12965
12965
|
const fieldName = vue.toRef(() => {
|
|
12966
|
+
if (!props.name) return undefined;
|
|
12966
12967
|
return isSuppressing.value ? `${props.name}-${uniqueId}-${reloadTrigger.value}` : props.name;
|
|
12967
12968
|
});
|
|
12968
12969
|
const fieldAutocomplete = vue.toRef(() => {
|
|
@@ -13782,6 +13783,7 @@
|
|
|
13782
13783
|
return typeof props.counterValue === 'function' ? props.counterValue(model.value) : typeof props.counterValue === 'number' ? props.counterValue : model.value.length;
|
|
13783
13784
|
});
|
|
13784
13785
|
const form = useForm(props);
|
|
13786
|
+
const autocomplete = useAutocomplete(props);
|
|
13785
13787
|
const selectedValues = vue.computed(() => model.value.map(selection => selection.value));
|
|
13786
13788
|
const isFocused = vue.shallowRef(false);
|
|
13787
13789
|
let keyboardLookupPrefix = '';
|
|
@@ -13974,7 +13976,8 @@
|
|
|
13974
13976
|
return vue.createVNode(VTextField, vue.mergeProps({
|
|
13975
13977
|
"ref": vTextFieldRef
|
|
13976
13978
|
}, textFieldProps, {
|
|
13977
|
-
"modelValue": model.value.map(v => v.props.
|
|
13979
|
+
"modelValue": model.value.map(v => v.props.title).join(', '),
|
|
13980
|
+
"name": undefined,
|
|
13978
13981
|
"onUpdate:modelValue": onModelUpdate,
|
|
13979
13982
|
"focused": isFocused.value,
|
|
13980
13983
|
"onUpdate:focused": $event => isFocused.value = $event,
|
|
@@ -14001,7 +14004,15 @@
|
|
|
14001
14004
|
"title": ariaLabel.value
|
|
14002
14005
|
}), {
|
|
14003
14006
|
...slots,
|
|
14004
|
-
default: () => vue.createElementVNode(vue.Fragment, null, [vue.
|
|
14007
|
+
default: () => vue.createElementVNode(vue.Fragment, null, [vue.createElementVNode("select", {
|
|
14008
|
+
"hidden": true,
|
|
14009
|
+
"multiple": props.multiple,
|
|
14010
|
+
"name": autocomplete.fieldName.value
|
|
14011
|
+
}, [items.value.map(item => vue.createElementVNode("option", {
|
|
14012
|
+
"key": item.value,
|
|
14013
|
+
"value": item.value,
|
|
14014
|
+
"selected": selectedValues.value.includes(item.value)
|
|
14015
|
+
}, null))]), vue.createVNode(VMenu, vue.mergeProps({
|
|
14005
14016
|
"id": menuId.value,
|
|
14006
14017
|
"ref": vMenuRef,
|
|
14007
14018
|
"modelValue": menu.value,
|
|
@@ -32438,8 +32449,10 @@
|
|
|
32438
32449
|
// Types
|
|
32439
32450
|
|
|
32440
32451
|
const Tooltip = useDirectiveComponent(VTooltip, binding => {
|
|
32452
|
+
const disabled = isObject(binding.value) ? !binding.value.text : ['', false, null].includes(binding.value); // undefined means true
|
|
32453
|
+
|
|
32441
32454
|
return {
|
|
32442
|
-
activator: 'parent',
|
|
32455
|
+
activator: disabled ? null : 'parent',
|
|
32443
32456
|
location: binding.arg?.replace('-', ' '),
|
|
32444
32457
|
text: typeof binding.value === 'boolean' ? undefined : binding.value
|
|
32445
32458
|
};
|
|
@@ -32556,7 +32569,7 @@
|
|
|
32556
32569
|
};
|
|
32557
32570
|
});
|
|
32558
32571
|
}
|
|
32559
|
-
const version$1 = "3.10.
|
|
32572
|
+
const version$1 = "3.10.12";
|
|
32560
32573
|
createVuetify$1.version = version$1;
|
|
32561
32574
|
|
|
32562
32575
|
// Vue's inject() can only be used in setup
|
|
@@ -32581,7 +32594,7 @@
|
|
|
32581
32594
|
...options
|
|
32582
32595
|
});
|
|
32583
32596
|
};
|
|
32584
|
-
const version = "3.10.
|
|
32597
|
+
const version = "3.10.12";
|
|
32585
32598
|
createVuetify.version = version;
|
|
32586
32599
|
|
|
32587
32600
|
exports.blueprints = index;
|