Skip to content

Commit

Permalink
CHAL-33 #done - implement select component (#22)
Browse files Browse the repository at this point in the history
* implemented Select component

* added TSDoc comments

* completed documentation for Select component and corresponding subcomponents, utils, hooks, etc.

* finished TSDoc comments

* added tests for Combobox and WidthSetter

* minor update to combobox

* added tsx extension to format script

* added tests for Select component

* added descriptions for menu tests

* added tests for Select component

* added tests for scroll utils

* added more tests for Select component and tests for touchscreen menu utils

* added tests for Button and MoreInfo

* added tests for select menu
  • Loading branch information
dvorakjt committed Aug 8, 2024
1 parent d210e9c commit 3a45eb9
Show file tree
Hide file tree
Showing 78 changed files with 6,162 additions and 75 deletions.
32 changes: 18 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test": "jest --no-watch --runInBand",
"test:ci": "jest --ci --runInBand -u",
"lint": "next lint",
"format": "prettier --write \"**/*.+(js|ts|json)\"",
"format": "prettier --write \"**/*.+(js|ts|tsx|json)\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
Expand All @@ -30,6 +30,7 @@
"react-turnstile": "^1.1.3",
"server-only": "^0.0.1",
"undecorated-di": "^2.0.0",
"zip-state": "^1.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
Expand Down Expand Up @@ -63,7 +64,7 @@
"prettier": "^3.2.5",
"sass": "^1.72.0",
"storybook": "^8.1.9",
"supabase": "^1.183.5",
"supabase": "^1.187.10",
"typescript": "^5",
"uuid": "^10.0.0"
}
Expand Down
3 changes: 3 additions & 0 deletions public/static/images/components/more-info/question-mark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/static/images/components/select/caret-down.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/static/images/components/select/caret-up.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ exports[`Home renders homepage unchanged 1`] = `
<div>
<div
class="outer_container"
data-testid="page-container"
>
<div
class="inner_container"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ exports[`ChallengerWelcome renders challenger-welcome page unchanged 1`] = `
<div>
<div
class="outer_container"
data-testid="page-container"
>
<div
class="inner_container"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ exports[`Progress renders progress page unchanged 1`] = `
<div>
<div
class="outer_container"
data-testid="page-container"
>
<div
class="inner_container"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ exports[`Why8by8 renders why8by8 page unchanged 1`] = `
<div>
<div
class="outer_container"
data-testid="page-container"
>
<div
class="inner_container"
Expand Down
Loading

0 comments on commit 3a45eb9

Please sign in to comment.