bkui-vue 0.0.1-beta.361 → 0.0.1-beta.362
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 +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.umd.js +1 -1
- package/lib/collapse/index.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -10176,7 +10176,7 @@ var CollapsePanel = defineComponent({
|
|
10176
10176
|
watch(() => props2.modelValue, (newVal) => {
|
10177
10177
|
isActive.value = newVal;
|
10178
10178
|
});
|
10179
|
-
watch(
|
10179
|
+
watch(localActiveItems, (newVal) => {
|
10180
10180
|
if (newVal == null ? void 0 : newVal.length) {
|
10181
10181
|
isActive.value = newVal.includes(props2.name);
|
10182
10182
|
}
|
@@ -10303,7 +10303,7 @@ var Collapse = defineComponent({
|
|
10303
10303
|
emit("item-click", item);
|
10304
10304
|
emit("update:modelValue", localActiveItems.value);
|
10305
10305
|
};
|
10306
|
-
provide("localActiveItems", localActiveItems
|
10306
|
+
provide("localActiveItems", localActiveItems);
|
10307
10307
|
provide("handleItemClick", handleItemClick);
|
10308
10308
|
const className = "bk-collapse-wrapper";
|
10309
10309
|
if (!Array.isArray(props2.list) || !props2.list.length) {
|