Skip to content

Commit

Permalink
chore(release): 1.5.4
Browse files Browse the repository at this point in the history
## [1.5.4](v1.5.3...v1.5.4) (2022-07-27)

### Bug Fixes

* export get nodes type ([#26](#26)) ([aeaf611](aeaf611))
  • Loading branch information
semantic-release-bot committed Jul 27, 2022
1 parent aeaf611 commit 3b3296e
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.5.4](https://github.com/jaredLunde/exploration/compare/v1.5.3...v1.5.4) (2022-07-27)

### Bug Fixes

- export get nodes type ([#26](https://github.com/jaredLunde/exploration/issues/26)) ([aeaf611](https://github.com/jaredLunde/exploration/commit/aeaf611e1e9bacc196ec23aa5da306bc3abf790b))

## [1.5.3](https://github.com/jaredLunde/exploration/compare/v1.5.2...v1.5.3) (2022-06-26)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "exploration",
"version": "1.5.3",
"version": "1.5.4",
"description": "",
"license": "MIT",
"author": "Jared Lunde <[email protected]> (https://jaredlunde.com/)",
Expand Down
29 changes: 25 additions & 4 deletions types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
export { createFileTree, defaultComparator, isDir, isFile, isPrompt, FileTree, Dir, File, Prompt, } from "./file-tree";
export type { FileTreeNode, FileTreeData, FileTreeFactory } from "./file-tree";
export {
createFileTree,
defaultComparator,
isDir,
isFile,
isPrompt,
FileTree,
Dir,
File,
Prompt,
} from "./file-tree";
export type {
FileTreeNode,
FileTreeData,
FileTreeFactory,
GetNodes,
} from "./file-tree";
export { Node } from "./node";
export { SubjectMap, SubjectSet } from "./observable-data";
export * as pathFx from "./path-fx";
Expand All @@ -17,10 +32,16 @@ export { useFileTreeSnapshot } from "./use-file-tree-snapshot";
export { useTraits } from "./use-traits";
export type { TraitsProps, UseTraitsPlugin } from "./use-traits";
export { useRovingFocus } from "./use-roving-focus";
export type { RovingFocusProps, UseRovingFocusPlugin, } from "./use-roving-focus";
export type {
RovingFocusProps,
UseRovingFocusPlugin,
} from "./use-roving-focus";
export { useSelections } from "./use-selections";
export type { SelectionsProps, UseSelectionsPlugin } from "./use-selections";
export { useVirtualize } from "./use-virtualize";
export type { UseVirtualizeConfig, UseVirtualizeResult, } from "./use-virtualize";
export type {
UseVirtualizeConfig,
UseVirtualizeResult,
} from "./use-virtualize";
export { useVisibleNodes } from "./use-visible-nodes";
export { mergeProps, retryWithBackoff } from "./utils";
Loading

0 comments on commit 3b3296e

Please sign in to comment.