bkui-vue 0.0.1-beta.224 → 0.0.1-beta.225

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.esm.js CHANGED
@@ -16185,6 +16185,7 @@ var BORDER_OPTION = /* @__PURE__ */ ((BORDER_OPTION2) => {
16185
16185
  BORDER_OPTION2["ROW"] = "row";
16186
16186
  BORDER_OPTION2["COL"] = "col";
16187
16187
  BORDER_OPTION2["OUTER"] = "outer";
16188
+ BORDER_OPTION2["HORIZONTAL"] = "horizontal";
16188
16189
  return BORDER_OPTION2;
16189
16190
  })(BORDER_OPTION || {});
16190
16191
  var ROW_HOVER = /* @__PURE__ */ ((ROW_HOVER2) => {
@@ -28272,15 +28273,17 @@ var useTreeInit = (props2) => {
28272
28273
  deep: true
28273
28274
  });
28274
28275
  if (props2.selectable) {
28275
- watch(() => props2.selected, (newData) => {
28276
- afterSelectWatch.length = 0;
28277
- afterSelectEvents.forEach((event) => {
28278
- Reflect.apply(event, globalThis, [newData]);
28279
- afterSelectWatch.push(() => Reflect.apply(event, globalThis, [newData]));
28276
+ onMounted(() => {
28277
+ watch(() => props2.selected, (newData) => {
28278
+ afterSelectWatch.length = 0;
28279
+ afterSelectEvents.forEach((event) => {
28280
+ Reflect.apply(event, globalThis, [newData]);
28281
+ afterSelectWatch.push(() => Reflect.apply(event, globalThis, [newData]));
28282
+ });
28283
+ registerNextLoop("afterSelectWatch", afterSelectWatch);
28284
+ }, {
28285
+ immediate: true
28280
28286
  });
28281
- registerNextLoop("afterSelectWatch", afterSelectWatch);
28282
- }, {
28283
- immediate: true
28284
28287
  });
28285
28288
  }
28286
28289
  const afterDataUpdate = (callFn) => {