'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
var vue = require('vue');
|
require('../../select/index.js');
|
var token = require('../../select/src/token.js');
|
|
var CacheOptions = vue.defineComponent({
|
props: {
|
data: {
|
type: Array,
|
default: () => []
|
}
|
},
|
setup(props) {
|
const select = vue.inject(token.selectKey);
|
vue.watch(() => props.data, () => {
|
var _a;
|
props.data.forEach((item) => {
|
if (!select.cachedOptions.has(item.value)) {
|
select.cachedOptions.set(item.value, item);
|
}
|
});
|
const inputs = ((_a = select.selectWrapper) == null ? void 0 : _a.querySelectorAll("input")) || [];
|
if (!Array.from(inputs).includes(document.activeElement)) {
|
select.setSelected();
|
}
|
}, { flush: "post", immediate: true });
|
return () => void 0;
|
}
|
});
|
|
exports["default"] = CacheOptions;
|
//# sourceMappingURL=cache-options.js.map
|