572 lines
22 KiB
JavaScript
572 lines
22 KiB
JavaScript
import { Fragment as _Fragment, createElementVNode as _createElementVNode, createVNode as _createVNode, mergeProps as _mergeProps, createTextVNode as _createTextVNode, normalizeClass as _normalizeClass, normalizeStyle as _normalizeStyle } from "vue";
|
|
// Styles
|
|
import "./VAutocomplete.css";
|
|
|
|
// Components
|
|
import { VAvatar } from "../VAvatar/index.js";
|
|
import { VCheckboxBtn } from "../VCheckbox/index.js";
|
|
import { VChip } from "../VChip/index.js";
|
|
import { VDefaultsProvider } from "../VDefaultsProvider/index.js";
|
|
import { VDivider } from "../VDivider/index.js";
|
|
import { VIcon } from "../VIcon/index.js";
|
|
import { useInputIcon } from "../VInput/InputIcon.js";
|
|
import { VList, VListItem, VListSubheader } from "../VList/index.js";
|
|
import { VMenu } from "../VMenu/index.js";
|
|
import { makeSelectProps } from "../VSelect/VSelect.js";
|
|
import { VSheet } from "../VSheet/index.js";
|
|
import { makeVTextFieldProps, VTextField } from "../VTextField/VTextField.js";
|
|
import { VVirtualScroll } from "../VVirtualScroll/index.js"; // Composables
|
|
import { useScrolling } from "../VSelect/useScrolling.js";
|
|
import { useTextColor } from "../../composables/color.js";
|
|
import { highlightResult, makeFilterProps, useFilter } from "../../composables/filter.js";
|
|
import { useFocusGroups } from "../../composables/focusGroups.js";
|
|
import { useForm } from "../../composables/form.js";
|
|
import { forwardRefs } from "../../composables/forwardRefs.js";
|
|
import { useItems } from "../../composables/list-items.js";
|
|
import { useLocale } from "../../composables/locale.js";
|
|
import { useMenuActivator } from "../../composables/menuActivator.js";
|
|
import { useProxiedModel } from "../../composables/proxiedModel.js"; // Utilities
|
|
import { computed, mergeProps, nextTick, ref, shallowRef, toRef, watch } from 'vue';
|
|
import { checkPrintable, deepEqual, ensureValidVNode, genericComponent, IN_BROWSER, matchesSelector, noop, omit, propsFactory, useRender, wrapInArray } from "../../util/index.js"; // Types
|
|
export const makeVAutocompleteProps = propsFactory({
|
|
autoSelectFirst: {
|
|
type: [Boolean, String]
|
|
},
|
|
clearOnSelect: Boolean,
|
|
search: String,
|
|
...makeFilterProps({
|
|
filterKeys: ['title']
|
|
}),
|
|
...makeSelectProps(),
|
|
...omit(makeVTextFieldProps({
|
|
modelValue: null,
|
|
role: 'combobox'
|
|
}), ['validationValue', 'dirty'])
|
|
}, 'VAutocomplete');
|
|
export const VAutocomplete = genericComponent()({
|
|
name: 'VAutocomplete',
|
|
props: makeVAutocompleteProps(),
|
|
emits: {
|
|
'update:focused': focused => true,
|
|
'update:search': value => true,
|
|
'update:modelValue': value => true,
|
|
'update:menu': value => true
|
|
},
|
|
setup(props, {
|
|
slots
|
|
}) {
|
|
const {
|
|
t
|
|
} = useLocale();
|
|
const vTextFieldRef = ref();
|
|
const isFocused = shallowRef(false);
|
|
const isPristine = shallowRef(true);
|
|
const listHasFocus = shallowRef(false);
|
|
const vMenuRef = ref();
|
|
const vVirtualScrollRef = ref();
|
|
const selectionIndex = shallowRef(-1);
|
|
const _searchLock = shallowRef(null);
|
|
const {
|
|
items,
|
|
transformIn,
|
|
transformOut
|
|
} = useItems(props);
|
|
const {
|
|
textColorClasses,
|
|
textColorStyles
|
|
} = useTextColor(() => vTextFieldRef.value?.color);
|
|
const {
|
|
InputIcon
|
|
} = useInputIcon(props);
|
|
const search = useProxiedModel(props, 'search', '');
|
|
const model = useProxiedModel(props, 'modelValue', [], v => transformIn(v === null ? [null] : wrapInArray(v)), v => {
|
|
const transformed = transformOut(v);
|
|
return props.multiple ? transformed : transformed[0] ?? null;
|
|
});
|
|
const counterValue = computed(() => {
|
|
return typeof props.counterValue === 'function' ? props.counterValue(model.value) : typeof props.counterValue === 'number' ? props.counterValue : model.value.length;
|
|
});
|
|
const form = useForm(props);
|
|
const {
|
|
filteredItems,
|
|
getMatches
|
|
} = useFilter(props, items, () => _searchLock.value ?? (isPristine.value ? '' : search.value));
|
|
const displayItems = computed(() => {
|
|
if (props.hideSelected && _searchLock.value === null) {
|
|
return filteredItems.value.filter(filteredItem => !model.value.some(s => s.value === filteredItem.value));
|
|
}
|
|
return filteredItems.value;
|
|
});
|
|
const closableChips = toRef(() => props.closableChips && !form.isReadonly.value && !form.isDisabled.value);
|
|
const hasChips = computed(() => !!(props.chips || slots.chip));
|
|
const hasSelectionSlot = computed(() => hasChips.value || !!slots.selection);
|
|
const selectedValues = computed(() => model.value.map(selection => selection.props.value));
|
|
const firstSelectableItem = computed(() => displayItems.value.find(x => x.type === 'item' && !x.props.disabled));
|
|
const highlightFirst = computed(() => {
|
|
const selectFirst = props.autoSelectFirst === true || props.autoSelectFirst === 'exact' && search.value === firstSelectableItem.value?.title;
|
|
return selectFirst && displayItems.value.length > 0 && !isPristine.value && !listHasFocus.value;
|
|
});
|
|
const menuDisabled = computed(() => props.hideNoData && !displayItems.value.length || form.isReadonly.value || form.isDisabled.value);
|
|
const _menu = useProxiedModel(props, 'menu');
|
|
const menu = computed({
|
|
get: () => _menu.value,
|
|
set: v => {
|
|
if (_menu.value && !v && vMenuRef.value?.ΨopenChildren.size) return;
|
|
if (v && menuDisabled.value) return;
|
|
_menu.value = v;
|
|
}
|
|
});
|
|
const {
|
|
menuId,
|
|
ariaExpanded,
|
|
ariaControls
|
|
} = useMenuActivator(props, menu);
|
|
const listRef = ref();
|
|
const headerRef = ref();
|
|
const footerRef = ref();
|
|
const listEvents = useScrolling(listRef, vTextFieldRef);
|
|
const {
|
|
onTabKeydown
|
|
} = useFocusGroups({
|
|
groups: [{
|
|
type: 'element',
|
|
contentRef: headerRef
|
|
}, {
|
|
type: 'list',
|
|
contentRef: listRef,
|
|
displayItemsCount: () => displayItems.value.length
|
|
}, {
|
|
type: 'element',
|
|
contentRef: footerRef
|
|
}],
|
|
onLeave: () => {
|
|
menu.value = false;
|
|
vTextFieldRef.value?.focus();
|
|
}
|
|
});
|
|
function onClear(e) {
|
|
if (props.openOnClear) {
|
|
menu.value = true;
|
|
}
|
|
search.value = '';
|
|
}
|
|
function onMousedownControl() {
|
|
if (menuDisabled.value) return;
|
|
menu.value = true;
|
|
}
|
|
function onMousedownMenuIcon(e) {
|
|
if (menuDisabled.value) return;
|
|
if (isFocused.value) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
}
|
|
menu.value = !menu.value;
|
|
}
|
|
function onMenuKeydown(e) {
|
|
if (e.key === 'Tab') {
|
|
onTabKeydown(e);
|
|
}
|
|
if (listRef.value?.$el.contains(e.target) && (checkPrintable(e) || e.key === 'Backspace')) {
|
|
vTextFieldRef.value?.focus();
|
|
}
|
|
}
|
|
|
|
// eslint-disable-next-line complexity
|
|
function onKeydown(e) {
|
|
if (form.isReadonly.value) return;
|
|
const selectionStart = vTextFieldRef.value?.selectionStart;
|
|
const length = model.value.length;
|
|
if (['Enter', 'ArrowDown', 'ArrowUp'].includes(e.key)) {
|
|
e.preventDefault();
|
|
}
|
|
if (['Enter', 'ArrowDown'].includes(e.key)) {
|
|
menu.value = true;
|
|
}
|
|
if (['Escape'].includes(e.key)) {
|
|
menu.value = false;
|
|
}
|
|
if (highlightFirst.value && ['Enter', 'Tab'].includes(e.key) && firstSelectableItem.value && !model.value.some(({
|
|
value
|
|
}) => value === firstSelectableItem.value.value)) {
|
|
select(firstSelectableItem.value);
|
|
}
|
|
if (e.key === 'ArrowDown' && highlightFirst.value) {
|
|
listRef.value?.focus('next');
|
|
}
|
|
if (['Backspace', 'Delete'].includes(e.key)) {
|
|
if (!props.multiple && hasSelectionSlot.value && model.value.length > 0 && !search.value) return select(model.value[0], false);
|
|
if (~selectionIndex.value) {
|
|
e.preventDefault();
|
|
const originalSelectionIndex = selectionIndex.value;
|
|
select(model.value[selectionIndex.value], false);
|
|
selectionIndex.value = originalSelectionIndex >= length - 1 ? length - 2 : originalSelectionIndex;
|
|
} else if (e.key === 'Backspace' && !search.value) {
|
|
selectionIndex.value = length - 1;
|
|
}
|
|
return;
|
|
}
|
|
if (!props.multiple) return;
|
|
if (e.key === 'ArrowLeft') {
|
|
if (selectionIndex.value < 0 && selectionStart && selectionStart > 0) return;
|
|
const prev = selectionIndex.value > -1 ? selectionIndex.value - 1 : length - 1;
|
|
if (model.value[prev]) {
|
|
selectionIndex.value = prev;
|
|
} else {
|
|
const searchLength = search.value?.length ?? null;
|
|
selectionIndex.value = -1;
|
|
vTextFieldRef.value?.setSelectionRange(searchLength, searchLength);
|
|
}
|
|
} else if (e.key === 'ArrowRight') {
|
|
if (selectionIndex.value < 0) return;
|
|
const next = selectionIndex.value + 1;
|
|
if (model.value[next]) {
|
|
selectionIndex.value = next;
|
|
} else {
|
|
selectionIndex.value = -1;
|
|
vTextFieldRef.value?.setSelectionRange(0, 0);
|
|
}
|
|
} else if (~selectionIndex.value && checkPrintable(e)) {
|
|
selectionIndex.value = -1;
|
|
}
|
|
}
|
|
function onChange(e) {
|
|
if (matchesSelector(vTextFieldRef.value, ':autofill') || matchesSelector(vTextFieldRef.value, ':-webkit-autofill')) {
|
|
const item = items.value.find(item => item.title === e.target.value);
|
|
if (item) {
|
|
select(item);
|
|
}
|
|
}
|
|
}
|
|
function onAfterEnter() {
|
|
if (props.eager) {
|
|
vVirtualScrollRef.value?.calculateVisibleItems();
|
|
}
|
|
}
|
|
function onAfterLeave() {
|
|
if (isFocused.value) {
|
|
isPristine.value = true;
|
|
vTextFieldRef.value?.focus();
|
|
}
|
|
_searchLock.value = null;
|
|
}
|
|
function onFocusin(e) {
|
|
isFocused.value = true;
|
|
setTimeout(() => {
|
|
listHasFocus.value = true;
|
|
});
|
|
}
|
|
function onFocusout(e) {
|
|
listHasFocus.value = false;
|
|
if (!vTextFieldRef.value?.$el.contains(e.relatedTarget)) {
|
|
isFocused.value = false;
|
|
}
|
|
}
|
|
function onUpdateModelValue(v) {
|
|
if (v == null || v === '' && !props.multiple && !hasSelectionSlot.value) model.value = [];
|
|
}
|
|
function onBlur(e) {
|
|
const menuContent = vMenuRef.value?.contentEl;
|
|
if (menuContent?.contains(e.relatedTarget)) {
|
|
isFocused.value = true;
|
|
}
|
|
}
|
|
const isSelecting = shallowRef(false);
|
|
|
|
/** @param set - null means toggle */
|
|
function select(item, set = true) {
|
|
if (!item || item.props.disabled) return;
|
|
if (props.multiple) {
|
|
const index = model.value.findIndex(selection => (props.valueComparator || deepEqual)(selection.value, item.value));
|
|
const add = set == null ? !~index : set;
|
|
if (~index) {
|
|
const value = add ? [...model.value, item] : [...model.value];
|
|
value.splice(index, 1);
|
|
model.value = value;
|
|
} else if (add) {
|
|
model.value = [...model.value, item];
|
|
}
|
|
if (props.clearOnSelect) {
|
|
search.value = '';
|
|
}
|
|
} else {
|
|
const add = set !== false;
|
|
model.value = add ? [item] : [];
|
|
_searchLock.value = isPristine.value ? '' : search.value ?? '';
|
|
search.value = add && !hasSelectionSlot.value ? item.title : '';
|
|
|
|
// watch for search watcher to trigger
|
|
nextTick(() => {
|
|
menu.value = false;
|
|
isPristine.value = true;
|
|
});
|
|
}
|
|
}
|
|
watch(isFocused, (val, oldVal) => {
|
|
if (val === oldVal) return;
|
|
if (val) {
|
|
isSelecting.value = true;
|
|
search.value = props.multiple || hasSelectionSlot.value ? '' : String(model.value.at(-1)?.props.title ?? '');
|
|
isPristine.value = true;
|
|
nextTick(() => isSelecting.value = false);
|
|
} else {
|
|
if (!props.multiple && search.value == null) model.value = [];
|
|
menu.value = false;
|
|
if (!isPristine.value && search.value) {
|
|
_searchLock.value = search.value;
|
|
}
|
|
search.value = '';
|
|
selectionIndex.value = -1;
|
|
}
|
|
});
|
|
watch(search, val => {
|
|
if (!isFocused.value || isSelecting.value) return;
|
|
if (val) menu.value = true;
|
|
isPristine.value = !val;
|
|
});
|
|
watch(menu, val => {
|
|
if (!props.hideSelected && val && model.value.length && isPristine.value) {
|
|
const index = displayItems.value.findIndex(item => model.value.some(s => item.value === s.value));
|
|
IN_BROWSER && window.requestAnimationFrame(() => {
|
|
index >= 0 && vVirtualScrollRef.value?.scrollToIndex(index);
|
|
});
|
|
}
|
|
if (val) _searchLock.value = null;
|
|
});
|
|
watch(items, (newVal, oldVal) => {
|
|
if (menu.value) return;
|
|
if (isFocused.value && !oldVal.length && newVal.length) {
|
|
menu.value = true;
|
|
}
|
|
});
|
|
useRender(() => {
|
|
const hasList = !!(!props.hideNoData || displayItems.value.length || slots['prepend-item'] || slots['append-item'] || slots['no-data']);
|
|
const isDirty = model.value.length > 0;
|
|
const textFieldProps = VTextField.filterProps(props);
|
|
const menuSlotProps = {
|
|
search,
|
|
filteredItems: filteredItems.value
|
|
};
|
|
return _createVNode(VTextField, _mergeProps({
|
|
"ref": vTextFieldRef
|
|
}, textFieldProps, {
|
|
"modelValue": search.value,
|
|
"onUpdate:modelValue": [$event => search.value = $event, onUpdateModelValue],
|
|
"focused": isFocused.value,
|
|
"onUpdate:focused": $event => isFocused.value = $event,
|
|
"validationValue": model.externalValue,
|
|
"counterValue": counterValue.value,
|
|
"dirty": isDirty,
|
|
"onChange": onChange,
|
|
"class": ['v-autocomplete', `v-autocomplete--${props.multiple ? 'multiple' : 'single'}`, {
|
|
'v-autocomplete--active-menu': menu.value,
|
|
'v-autocomplete--chips': !!props.chips,
|
|
'v-autocomplete--selection-slot': !!hasSelectionSlot.value,
|
|
'v-autocomplete--selecting-index': selectionIndex.value > -1
|
|
}, props.class],
|
|
"style": props.style,
|
|
"readonly": form.isReadonly.value,
|
|
"placeholder": isDirty ? undefined : props.placeholder,
|
|
"onClick:clear": onClear,
|
|
"onMousedown:control": onMousedownControl,
|
|
"onKeydown": onKeydown,
|
|
"onBlur": onBlur,
|
|
"aria-expanded": ariaExpanded.value,
|
|
"aria-controls": ariaControls.value
|
|
}), {
|
|
...slots,
|
|
default: ({
|
|
id
|
|
}) => _createElementVNode(_Fragment, null, [_createVNode(VMenu, _mergeProps({
|
|
"id": menuId.value,
|
|
"ref": vMenuRef,
|
|
"modelValue": menu.value,
|
|
"onUpdate:modelValue": $event => menu.value = $event,
|
|
"activator": "parent",
|
|
"disabled": menuDisabled.value,
|
|
"eager": props.eager,
|
|
"maxHeight": 310,
|
|
"openOnClick": false,
|
|
"closeOnContentClick": false,
|
|
"onAfterEnter": onAfterEnter,
|
|
"onAfterLeave": onAfterLeave
|
|
}, props.menuProps, {
|
|
"contentClass": ['v-autocomplete__content', props.menuProps?.contentClass]
|
|
}), {
|
|
default: () => [_createVNode(VSheet, {
|
|
"elevation": props.menuElevation,
|
|
"onFocusin": onFocusin,
|
|
"onKeydown": onMenuKeydown
|
|
}, {
|
|
default: () => [slots['menu-header'] && _createElementVNode("header", {
|
|
"ref": headerRef
|
|
}, [slots['menu-header'](menuSlotProps)]), hasList && _createVNode(VList, _mergeProps({
|
|
"key": "autocomplete-list",
|
|
"ref": listRef,
|
|
"filterable": true,
|
|
"selected": selectedValues.value,
|
|
"selectStrategy": props.multiple ? 'independent' : 'single-independent',
|
|
"onMousedown": e => e.preventDefault(),
|
|
"onFocusout": onFocusout,
|
|
"tabindex": "-1",
|
|
"selectable": !!displayItems.value.length,
|
|
"aria-live": "polite",
|
|
"aria-labelledby": `${id.value}-label`,
|
|
"aria-multiselectable": props.multiple,
|
|
"color": props.itemColor ?? props.color
|
|
}, listEvents, props.listProps), {
|
|
default: () => [slots['prepend-item']?.(), !displayItems.value.length && !props.hideNoData && (slots['no-data']?.() ?? _createVNode(VListItem, {
|
|
"key": "no-data",
|
|
"title": t(props.noDataText)
|
|
}, null)), _createVNode(VVirtualScroll, {
|
|
"ref": vVirtualScrollRef,
|
|
"renderless": true,
|
|
"items": displayItems.value,
|
|
"itemKey": "value"
|
|
}, {
|
|
default: ({
|
|
item,
|
|
index,
|
|
itemRef
|
|
}) => {
|
|
const itemProps = mergeProps(item.props, {
|
|
ref: itemRef,
|
|
key: item.value,
|
|
active: highlightFirst.value && item === firstSelectableItem.value ? true : undefined,
|
|
onClick: () => select(item, null),
|
|
'aria-posinset': index + 1,
|
|
'aria-setsize': displayItems.value.length
|
|
});
|
|
if (item.type === 'divider') {
|
|
return slots.divider?.({
|
|
props: item.raw,
|
|
index
|
|
}) ?? _createVNode(VDivider, _mergeProps(item.props, {
|
|
"key": `divider-${index}`
|
|
}), null);
|
|
}
|
|
if (item.type === 'subheader') {
|
|
return slots.subheader?.({
|
|
props: item.raw,
|
|
index
|
|
}) ?? _createVNode(VListSubheader, _mergeProps(item.props, {
|
|
"key": `subheader-${index}`
|
|
}), null);
|
|
}
|
|
return slots.item?.({
|
|
item: item.raw,
|
|
internalItem: item,
|
|
index,
|
|
props: itemProps
|
|
}) ?? _createVNode(VListItem, _mergeProps(itemProps, {
|
|
"role": "option"
|
|
}), {
|
|
prepend: ({
|
|
isSelected
|
|
}) => _createElementVNode(_Fragment, null, [props.multiple && !props.hideSelected ? _createVNode(VCheckboxBtn, {
|
|
"key": item.value,
|
|
"modelValue": isSelected,
|
|
"ripple": false,
|
|
"tabindex": "-1",
|
|
"aria-hidden": true,
|
|
"onClick": event => event.preventDefault()
|
|
}, null) : undefined, item.props.prependAvatar && _createVNode(VAvatar, {
|
|
"image": item.props.prependAvatar
|
|
}, null), item.props.prependIcon && _createVNode(VIcon, {
|
|
"icon": item.props.prependIcon
|
|
}, null)]),
|
|
title: () => {
|
|
return isPristine.value ? item.title : highlightResult('v-autocomplete', item.title, getMatches(item)?.title);
|
|
}
|
|
});
|
|
}
|
|
}), slots['append-item']?.()]
|
|
}), slots['menu-footer'] && _createElementVNode("footer", {
|
|
"ref": footerRef
|
|
}, [slots['menu-footer'](menuSlotProps)])]
|
|
})]
|
|
}), model.value.map((item, index) => {
|
|
function onChipClose(e) {
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
select(item, false);
|
|
}
|
|
const slotProps = mergeProps(VChip.filterProps(item.props), {
|
|
'onClick:close': onChipClose,
|
|
onKeydown(e) {
|
|
if (e.key !== 'Enter' && e.key !== ' ') return;
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
onChipClose(e);
|
|
},
|
|
onMousedown(e) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
},
|
|
modelValue: true,
|
|
'onUpdate:modelValue': undefined
|
|
});
|
|
const hasSlot = hasChips.value ? !!slots.chip : !!slots.selection;
|
|
const slotContent = hasSlot ? ensureValidVNode(hasChips.value ? slots.chip({
|
|
item: item.raw,
|
|
internalItem: item,
|
|
index,
|
|
props: slotProps
|
|
}) : slots.selection({
|
|
item: item.raw,
|
|
internalItem: item,
|
|
index
|
|
})) : undefined;
|
|
if (hasSlot && !slotContent) return undefined;
|
|
return _createElementVNode("div", {
|
|
"key": item.value,
|
|
"class": _normalizeClass(['v-autocomplete__selection', index === selectionIndex.value && ['v-autocomplete__selection--selected', textColorClasses.value]]),
|
|
"style": _normalizeStyle(index === selectionIndex.value ? textColorStyles.value : {})
|
|
}, [hasChips.value ? !slots.chip ? _createVNode(VChip, _mergeProps({
|
|
"key": "chip",
|
|
"closable": closableChips.value,
|
|
"size": "small",
|
|
"text": item.title,
|
|
"disabled": item.props.disabled
|
|
}, slotProps), null) : _createVNode(VDefaultsProvider, {
|
|
"key": "chip-defaults",
|
|
"defaults": {
|
|
VChip: {
|
|
closable: closableChips.value,
|
|
size: 'small',
|
|
text: item.title
|
|
}
|
|
}
|
|
}, {
|
|
default: () => [slotContent]
|
|
}) : slotContent ?? _createElementVNode("span", {
|
|
"class": "v-autocomplete__selection-text"
|
|
}, [item.title, props.multiple && index < model.value.length - 1 && _createElementVNode("span", {
|
|
"class": "v-autocomplete__selection-comma"
|
|
}, [_createTextVNode(",")])])]);
|
|
})]),
|
|
'append-inner': (...args) => _createElementVNode(_Fragment, null, [slots['append-inner']?.(...args), props.menuIcon ? _createVNode(VIcon, {
|
|
"class": "v-autocomplete__menu-icon",
|
|
"color": vTextFieldRef.value?.fieldIconColor,
|
|
"icon": props.menuIcon,
|
|
"onMousedown": onMousedownMenuIcon,
|
|
"onClick": noop,
|
|
"aria-hidden": true,
|
|
"tabindex": "-1"
|
|
}, null) : undefined, props.appendInnerIcon && _createVNode(InputIcon, {
|
|
"key": "append-icon",
|
|
"name": "appendInner",
|
|
"color": args[0].iconColor.value
|
|
}, null)])
|
|
});
|
|
});
|
|
return forwardRefs({
|
|
isFocused,
|
|
isPristine,
|
|
menu,
|
|
search,
|
|
filteredItems,
|
|
select
|
|
}, vTextFieldRef);
|
|
}
|
|
});
|
|
//# sourceMappingURL=VAutocomplete.js.map
|