Skip to content

Commit

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

### Bug Fixes

* fix selections sets instability ([#27](#27)) ([f2ea209](f2ea209))
  • Loading branch information
semantic-release-bot committed Jul 28, 2022
1 parent f2ea209 commit 5e333ca
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 43 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.5.5](https://github.com/jaredLunde/exploration/compare/v1.5.4...v1.5.5) (2022-07-28)


### Bug Fixes

* fix selections sets instability ([#27](https://github.com/jaredLunde/exploration/issues/27)) ([f2ea209](https://github.com/jaredLunde/exploration/commit/f2ea209de0121fa0ef181556da4f64dd3f0d5e3b))

## [1.5.4](https://github.com/jaredLunde/exploration/compare/v1.5.3...v1.5.4) (2022-07-27)

### 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.4",
"version": "1.5.5",
"description": "",
"license": "MIT",
"author": "Jared Lunde <[email protected]> (https://jaredlunde.com/)",
Expand Down
29 changes: 4 additions & 25 deletions types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,5 @@
export {
createFileTree,
defaultComparator,
isDir,
isFile,
isPrompt,
FileTree,
Dir,
File,
Prompt,
} from "./file-tree";
export type {
FileTreeNode,
FileTreeData,
FileTreeFactory,
GetNodes,
} 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 @@ -32,16 +17,10 @@ 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 5e333ca

Please sign in to comment.