Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
a141c47
feat: add @react-simplikit/mobile package with monorepo structure (#1)
kimyouknow Jan 8, 2026
bbd367d
feat(core): implement function for detecting device
Jan 8, 2026
87a26e1
feat(mobile): add isServer utility (#5)
kimyouknow Jan 13, 2026
ad8bb27
chore: add index.ts
Jan 13, 2026
549e74c
fix: remove utils folder from include property
Jan 13, 2026
0abc793
merge main
Jan 13, 2026
66c3614
chore: chage order of exported functions in index file
Jan 13, 2026
867be9d
fix: guard functions with isServer function
Jan 13, 2026
12d635d
chore: inclurde android test case in device utils
Jan 13, 2026
2d4a7b4
feat: implement getKeyboard function
Jan 9, 2026
b7cd8e4
fix: add restoreAllMocks in test code
Jan 13, 2026
644c020
feat(mobile): implement isKeyboardVisible function
Jan 13, 2026
58a8140
chore: remove unnecessary code
Jan 13, 2026
3b7f610
feat(mobile): useBodyScrollLock (#6)
kimyouknow Jan 14, 2026
fa5b713
feat: implement function for detecting device
zztnrudzz13 Jan 14, 2026
e3c129b
feat: implement getKeyboard function
Jan 9, 2026
2abe5a9
fix: add restoreAllMocks in test code
Jan 13, 2026
f134135
feat: implement getKeyboardHeight function
zztnrudzz13 Jan 14, 2026
6d31e5b
feat: implement subscribeKeyboardHeight and useKeyboardHeight function
Jan 9, 2026
7fef09e
fix: fix test code
Jan 14, 2026
0e6bf91
fix: handle ssr funciton call
Jan 14, 2026
4401ded
feat(mobile): useVisualViewport (#7)
kimyouknow Jan 14, 2026
d5c0cad
feat(examples): add example applications (#9)
kimyouknow Jan 14, 2026
e7bf31a
feat(mobile): useScrollDirection (#8)
kimyouknow Jan 14, 2026
246e424
fix: change return type into object
Jan 14, 2026
ba3a92b
Merge branch 'main' into feat/subscribe-keyboard-height
Jan 14, 2026
20c8e40
fix: apply throttle logic in the function, referencing useScrollDirec…
Jan 14, 2026
bb73799
Merge pull request #4 from toss/feat/subscribe-keyboard-height
zztnrudzz13 Jan 18, 2026
acc6d3e
feat(mobile): implement useAvoidKeyboard function
Jan 13, 2026
5cb9ab4
fix: only return style props in useAvoidKeyboard function
Jan 14, 2026
262b9a3
feat(mobile): implement useAvoidKeyboard function
zztnrudzz13 Jan 18, 2026
0975d0e
merge main
Jan 18, 2026
f812940
change folder name into keyboard
Jan 18, 2026
6c0e31b
feat(mobile): implement isKeyboardVisible function
zztnrudzz13 Jan 18, 2026
08ccba8
fix: fix useAvoidKeyboard test cases
Jan 20, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
!.yarn/sdks
!.yarn/versions

# large yarn cache files (exceed GitHub 100MB limit)
.yarn/cache/@next-swc-*.zip
.yarn/cache/next-npm-*.zip

# build
dist
esm
Expand All @@ -24,6 +28,15 @@ coverage
.vitepress/cache
.vitepress/dist

# next
.next

.env

.DS_Store

# claude
.claude
CLAUDE.md

docs/
6 changes: 1 addition & 5 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
lts/iron

# 'iron' is the 20.x node release line
# ESLint requires Node.js >=18.18.0, >=20.9.0, or >=21.1.0 — ensure 20.9.0+ if using iron
# See: https://eslint.org/docs/latest/use/getting-started#prerequisites
v22.18.0
Loading
Loading