bkui-vue 0.0.1-beta.218 → 0.0.1-beta.219
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/index.cjs.js +17 -17
- package/dist/index.esm.js +1 -2
- package/dist/index.umd.js +14 -14
- package/lib/menu/index.js +1 -1
- package/lib/select/index.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -15257,7 +15257,7 @@ var Component$j = defineComponent({
|
|
15257
15257
|
});
|
15258
15258
|
const filterList = computed(() => isRemoteSearch.value ? list.value : list.value.filter((item) => {
|
15259
15259
|
var _a;
|
15260
|
-
return (_a = toLowerCase(String(item[displayKey.value]))) == null ? void 0 : _a.includes(searchKey.value);
|
15260
|
+
return (_a = toLowerCase(String(item[displayKey.value]))) == null ? void 0 : _a.includes(toLowerCase(searchKey.value));
|
15261
15261
|
}));
|
15262
15262
|
const isDisabled = computed(() => disabled.value || loading2.value);
|
15263
15263
|
const selectedLabel = computed(() => selected.value.map((item) => {
|
@@ -21199,7 +21199,6 @@ var Component$c = defineComponent({
|
|
21199
21199
|
});
|
21200
21200
|
watch(() => props2.collapse, () => {
|
21201
21201
|
collapse2.value = props2.collapse;
|
21202
|
-
console.info(props2.collapse);
|
21203
21202
|
const oldKeys = [...oldOpenKeys.value];
|
21204
21203
|
const openKeys = [...openedKeys.value];
|
21205
21204
|
openedKeys.value = collapse2.value ? [] : oldKeys;
|