Skip to content

Commit

Permalink
fix: missing exports
Browse files Browse the repository at this point in the history
  • Loading branch information
thijsdaniels committed Aug 14, 2024
1 parent a478131 commit fbc2c40
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .changeset/curvy-zoos-turn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@codedazur/react-essentials": patch
"@codedazur/react-pagination": patch
"@codedazur/essentials": patch
---

Missing index exports were added.
4 changes: 3 additions & 1 deletion packages/essentials/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@ export * from "./utilities/math/deg2rad";
export * from "./utilities/math/modulo";
export * from "./utilities/math/rad2deg";
export * from "./utilities/math/sequence";
export * from "./utilities/object/filterObject";
export * from "./utilities/object/mapObject";
export * from "./utilities/object/mutateObject";
export * from "./utilities/object/omit";
export * from "./utilities/object/pick";
export * from "./utilities/object/rekeyObject";
export * from "./utilities/object/revalueObject";
export * from "./utilities/object/whereDefined";
export * from "./utilities/string/camelCase";
export * from "./utilities/string/pascalCase";
export * from "./utilities/string/timecode";
export * from "./utilities/system/env";
export * from "./utilities/timing/Timer";
export * from "./utilities/timing/debounce";
export * from "./utilities/timing/sleep";
export * from "./utilities/timing/Timer";
1 change: 1 addition & 0 deletions packages/react-essentials/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export * from "./hooks/useClickOutside";
export * from "./hooks/useCursor";
export * from "./hooks/useDelayedValue";
export * from "./hooks/useDelta";
export * from "./hooks/useIntersection";
export * from "./hooks/useIsIntersecting";
Expand Down
1 change: 1 addition & 0 deletions packages/react-pagination/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from "./hooks/useLoadMore";
export * from "./hooks/usePagination";

0 comments on commit fbc2c40

Please sign in to comment.