Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
97a16a7
feat: abstract onboarding wizard into reusable FormWizard component
SinhSinhAn Mar 31, 2026
97e3829
Merge remote-tracking branch 'origin/develop' into feature/588-abstra…
SinhSinhAn Apr 9, 2026
35bfb43
chore: run Prettier formatting
SinhSinhAn Apr 9, 2026
636f97e
Update src/components/getting-started/OnboardingForm.tsx
SinhSinhAn Apr 15, 2026
720e555
fix: address Isaac's PR review feedback on FormWizard
SinhSinhAn Apr 15, 2026
cf2bee6
chore: fix Prettier formatting in FormWizard
SinhSinhAn Apr 15, 2026
13d0d97
Update src/components/getting-started/OnboardingForm.tsx
SinhSinhAn Jun 20, 2026
92d74da
Merge branch 'develop' into feature/588-abstract-formwizard
Isoscelestial Jul 18, 2026
c18b03e
Merge branch 'develop' into feature/588-abstract-formwizard
Isoscelestial Jul 18, 2026
66c2cb2
refactor: format, fix imports from nebula library
Isoscelestial Jul 18, 2026
11aa180
feat: resolve trivial issues
Isoscelestial Jul 18, 2026
3fa6a0e
feat: split activeStep object into activeStep and previousStep numbers
Isoscelestial Jul 18, 2026
ef8e00a
feat: update Tanstack Form for form groups
Isoscelestial Jul 20, 2026
2b91602
feat: remove broken validation, update types, begin adding FormGroup,…
Isoscelestial Jul 20, 2026
322ba6c
feat: improved state for tracking current step, more data driven wiza…
Isoscelestial Jul 21, 2026
ab81c08
feat: stepper chaos, disabled prop for better support of conditionall…
Isoscelestial Jul 21, 2026
6853b52
feat: add RTL support and hideStepper, fix spamming target step, don'…
Isoscelestial Jul 21, 2026
b2a4c9d
feat: wizard context
Isoscelestial Jul 21, 2026
fb6da30
feat: Subscribe to store components, useIsMounted hook
Isoscelestial Jul 22, 2026
7801115
feat: add step validation and progression handling, reduce unnecessar…
Isoscelestial Jul 22, 2026
d50aa56
feat: fix onboarding form submission
Isoscelestial Jul 22, 2026
25084d7
feat: fake steps
Isoscelestial Jul 22, 2026
6c840e1
feat: improve onboarding form experience, fix crash if missing values,
Isoscelestial Jul 22, 2026
23b4b98
feat: generic and type safe FormWizardStep, improved JSDoc, add missi…
Isoscelestial Jul 22, 2026
ca446df
feat: update account settings to use same schemas as onboarding, use …
Isoscelestial Jul 22, 2026
05f4fd3
feat: improve accessibility, attempt to fix hydration issue
Isoscelestial Jul 22, 2026
6ce84eb
feat: forward FormWizard's ref to expose context through handle, add …
Isoscelestial Jul 23, 2026
bfca20e
feat: update create club page to use wizard
Isoscelestial Jul 23, 2026
1ab94c5
style: format
Isoscelestial Jul 23, 2026
9fd32ec
fix: patch skipping invalid step by retreating with earliestInvalidS…
Isoscelestial Jul 25, 2026
4fc26fa
feat: autoSelect on FormAutocompleteFreeSolo
Isoscelestial Jul 25, 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
52 changes: 26 additions & 26 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"@sentry/nextjs": "^10.53.1",
"@tanstack/match-sorter-utils": "^8.19.4",
"@tanstack/react-devtools": "^0.10.5",
"@tanstack/react-form": "^1.32.0",
"@tanstack/react-form-devtools": "^0.2.27",
"@tanstack/react-form": "^1.33.2",
"@tanstack/react-form-devtools": "^0.2.31",
"@tanstack/react-query": "^5.100.13",
"@tanstack/react-query-devtools": "^5.100.13",
"@tanstack/react-table": "^8.21.3",
Expand All @@ -54,6 +54,7 @@
"framer-motion": "^12.40.0",
"google-auth-library": "^10.6.2",
"googleapis": "^173.0.0",
"nebula-library": "file:src/nebula-library",
"next": "^16.2.6",
"postgres": "^3.4.9",
"react": "^19.2.6",
Expand All @@ -68,8 +69,7 @@
"superjson": "^2.2.6",
"ws": "^8.21.0",
"zod": "^4.4.3",
"zustand": "^5.0.13",
"nebula-library": "file:src/nebula-library"
"zustand": "^5.0.13"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
Expand Down
Loading
Loading