seeder-st2110-components 1.2.5 → 1.2.6

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
@@ -1222,12 +1222,12 @@ const useDirectoryTree = _ref => {
1222
1222
  }, [treeState.data, treeState.selectedKeys, treeState.expandedKeys]);
1223
1223
  return {
1224
1224
  directoryTree: MemoizedTree,
1225
- contents,
1226
- currentPath,
1225
+ contents: treeState.contents,
1226
+ currentPath: treeState.currentPath,
1227
+ loading: treeState.loading,
1228
+ originTreeData,
1227
1229
  updateFileContents,
1228
- removeFile,
1229
- loading,
1230
- originTreeData
1230
+ removeFile
1231
1231
  };
1232
1232
  };
1233
1233