Skip to content

Commit

Permalink
fix: search scroll & tab list 터치 스크롤 (#84)
Browse files Browse the repository at this point in the history
* FIX: 🐛  검색결과 창 scroll 추가

* FIX: 🐛  북마크 추가 모달에서 scroll 동작 안하던 것 수정

* FEAT: ✨  필터 icon 열렸을 때 닫혔을 때 변경

* CHORE: 🔧  todo 주석 추가

* FIX: 🐛  eslint, prettier 작업공간 세팅 추가

* FEAT: ✨  tab list 컴포넌트에 좌우 터치 스크롤 달기

* CHORE: 🔧  pnpm lock의 지속적인 변경을 막기 위한 node version 강제
  • Loading branch information
hoongding authored Sep 14, 2024
1 parent e77a852 commit 104872b
Show file tree
Hide file tree
Showing 14 changed files with 9,222 additions and 7,296 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"react/no-unknown-property": "off",
"react-hooks/rules-of-hooks": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-unused-vars": "error",
"padding-line-between-statements": [
"error",
{ "blankLine": "always", "prev": ["const", "let", "var"], "next": "*" },
Expand Down
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
engine-strict=true
pnpm.strict-peer-dependencies=true
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.18.0
7 changes: 6 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,10 @@
},
"editor.quickSuggestions": {
"strings": true
}
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
}
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@8.15.6",
"engines": {
"node": "18.18.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
Expand All @@ -17,7 +20,9 @@
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"@react-spring/web": "^9.7.4",
"@tanstack/react-query": "^5.29.2",
"@use-gesture/react": "^10.3.1",
"axios": "^1.6.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
Expand Down
Loading

0 comments on commit 104872b

Please sign in to comment.