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