bkui-vue 0.0.1-beta.71 → 0.0.1-beta.72

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
@@ -21595,6 +21595,7 @@ var useNodeAction = (props, ctx, flatData, renderData, schemaValues) => {
21595
21595
  renderTreeNode,
21596
21596
  hanldeTreeNodeClick,
21597
21597
  deepAutoOpen,
21598
+ asyncNodeClick,
21598
21599
  setNodeAction,
21599
21600
  setNodeOpened,
21600
21601
  setSelect,
@@ -21975,7 +21976,7 @@ var useTreeInit = (props) => {
21975
21976
  flatten(item, depth, parent, path);
21976
21977
  } else {
21977
21978
  if (typeof item === "object" && item !== null) {
21978
- const uuid2 = getUid(item);
21979
+ const uuid2 = `${getUid(item)}`;
21979
21980
  const currentPath = path !== null ? `${path}-${i}` : `${i}`;
21980
21981
  const hasChildren = !!(item[children] || []).length;
21981
21982
  const attrs = {
@@ -22112,7 +22113,8 @@ var Component$2 = defineComponent({
22112
22113
  setNodeOpened,
22113
22114
  setOpen,
22114
22115
  setNodeAction,
22115
- setSelect
22116
+ setSelect,
22117
+ asyncNodeClick
22116
22118
  } = useNodeAction(props, ctx, flatData, renderData, schemaValues);
22117
22119
  const setChecked = (item, checked = true) => {
22118
22120
  setNodeAction(resolveNodeItem(item), NODE_ATTRIBUTES.IS_CHECKED, checked);
@@ -22137,6 +22139,7 @@ var Component$2 = defineComponent({
22137
22139
  setNodeAction,
22138
22140
  setNodeOpened,
22139
22141
  setSelect,
22142
+ asyncNodeClick,
22140
22143
  getData
22141
22144
  });
22142
22145
  const root = ref();