Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
2395192
add more profile options, begin ui migration to a more shadcn like ap…
InfinityBowman Jan 17, 2026
98d9e08
format
InfinityBowman Jan 17, 2026
4a1db3c
align shadcn-like components with the dialog pattern
InfinityBowman Jan 17, 2026
e280ed2
migrate collapsibles
InfinityBowman Jan 17, 2026
a759526
migrate switch and checkbox and menu
InfinityBowman Jan 18, 2026
209a74a
add mocks and fix lint
InfinityBowman Jan 18, 2026
0483d36
Apply Prettier formatting
actions-user Jan 18, 2026
4a4f1f9
update projectv2 mock
InfinityBowman Jan 18, 2026
392dbd0
Merge branch '273-detailed-user-profile-creation' of https://github.c…
InfinityBowman Jan 18, 2026
6868551
accessibility and small logic tweaks
InfinityBowman Jan 18, 2026
7df3f0c
migrate avatar component
InfinityBowman Jan 18, 2026
3c81531
Apply Prettier formatting
actions-user Jan 18, 2026
0e4e0bb
update select components
InfinityBowman Jan 18, 2026
932fdea
Merge branch '273-detailed-user-profile-creation' of https://github.c…
InfinityBowman Jan 18, 2026
20b01f3
fix checkbox disabled and getinitials edge case. add editable compone…
InfinityBowman Jan 18, 2026
377cb21
migrate editable usages
InfinityBowman Jan 18, 2026
5b4b3dc
update deps
InfinityBowman Jan 18, 2026
26ac198
migrate file upload
InfinityBowman Jan 18, 2026
7ba8b34
migrate progress component and fix some misaligned routes
InfinityBowman Jan 18, 2026
4ab0e8c
cleaner icon
InfinityBowman Jan 18, 2026
54d7c8b
migrate pin input
InfinityBowman Jan 18, 2026
692c5e9
fix merge cancel bug
InfinityBowman Jan 18, 2026
6bb8187
migrate qr and toast
InfinityBowman Jan 18, 2026
2a74077
bug in toast and editable
InfinityBowman Jan 18, 2026
78de32d
fix typos and do best practices for select
InfinityBowman Jan 18, 2026
89a139b
remove ui package
InfinityBowman Jan 18, 2026
bdc7911
add accessibility
InfinityBowman Jan 18, 2026
ce43844
Apply Prettier formatting
actions-user Jan 18, 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
Binary file modified .mcp/memory.db-wal
Binary file not shown.
15 changes: 15 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,21 @@ export default [
'no-restricted-imports': 'off',
},
},
{
// Web UI components can import from @ark-ui/solid directly (shadcn-style primitives)
files: ['packages/web/src/components/ui/**/*.{js,jsx,ts,tsx}'],
rules: {
'no-restricted-imports': 'off',
'corates/corates-ui-imports': 'off',
},
},
{
// Web lib/ui can import from @ark-ui/solid directly
files: ['packages/web/src/lib/ui/**/*.{js,jsx,ts,tsx}'],
rules: {
'no-restricted-imports': 'off',
},
},
{
// Test file configuration
files: [
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@
"eslint-plugin-solid": "^0.14.5",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-unicorn": "^62.0.0",
"prettier": "^3.7.4",
"prettier": "^3.8.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.7.4",
"wrangler": "^4.59.1"
"turbo": "^2.7.5",
"wrangler": "^4.59.2"
},
"engines": {
"node": ">=24.0.0",
Expand Down
Loading