Skip to content
Open
Show file tree
Hide file tree
Changes from 28 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c5f7032
feat(asso): asso detail page
AlbanSdl Oct 3, 2025
9a81fe1
feat: add membership list
AlbanSdl Oct 3, 2025
b6aaa8c
feat(asso): add role reorder ui
AlbanSdl Oct 9, 2025
b0d7a9e
feat(asso): role names can be ui modified
AlbanSdl Oct 9, 2025
fb3de1f
fix(asso): dnd should consume pointer events on links
AlbanSdl Oct 9, 2025
d5e73eb
feat(asso): add button to create role
AlbanSdl Oct 9, 2025
c6c78e6
feat(asso): add icons
AlbanSdl Oct 9, 2025
5df208f
feat(asso): add user selector for future memberAdd ui
AlbanSdl Oct 9, 2025
cd1d7e3
feat(ui): add code of data modal
AlbanSdl Oct 10, 2025
221722c
feat: add style and required properties to modalform
AlbanSdl Oct 10, 2025
cb8e26c
feat: add labels for options in ModalForm
AlbanSdl Oct 10, 2025
7b57aaa
feat(asso): interface complete
AlbanSdl Oct 10, 2025
6a0fb63
fix: bug fix and split page to AssoRole component
AlbanSdl Oct 10, 2025
1cf7059
fix: sort role members
AlbanSdl Oct 15, 2025
38c2fbd
feat: update icon set and introduce lexical rte
AlbanSdl Oct 17, 2025
24ffee6
feat: add image upload on drop
AlbanSdl Oct 17, 2025
f736f1a
feat(media): add image wrapper to load private media
AlbanSdl Oct 17, 2025
88da667
feat: add style to rte, rte-dnd-zone and toolbar
AlbanSdl Oct 18, 2025
105648c
feat(rte): add placeholder config
AlbanSdl Oct 18, 2025
55d7cfe
feat(rte): add image upload from clipboard paste
AlbanSdl Oct 18, 2025
ca88b7c
feat(rte): add interface for last customization types
AlbanSdl Oct 18, 2025
9f5c452
fix(rte): color removing base format when applied
AlbanSdl Oct 18, 2025
fb15c88
fix(rte): add color node automerging
AlbanSdl Oct 18, 2025
41a6d76
fix(rte): add replacement for textnode
AlbanSdl Oct 18, 2025
b58d63e
fix(rte): move color property to $getState
AlbanSdl Oct 18, 2025
c771b37
fix(rte): add some style
AlbanSdl Oct 19, 2025
dfd0732
feat(rte): support for node bundles
AlbanSdl Oct 19, 2025
8c83616
feat(asso): add avatar uploader and complete asso edit form
AlbanSdl Oct 19, 2025
9ceedd8
fix(asso): escaping double quotes
AlbanSdl Oct 19, 2025
e074978
fix: je ne sais pas écrire
AlbanSdl Oct 19, 2025
f58a5d2
fix(rte): remove css selector for nested lists
AlbanSdl Oct 22, 2025
d0c389e
fix(rte): fix image shrinkage
AlbanSdl Oct 22, 2025
247d460
fix: exclude node key from export
AlbanSdl Oct 22, 2025
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
2 changes: 1 addition & 1 deletion .env.dist
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ NODE_ENV=development
NEXT_PUBLIC_API_URL=http://localhost:3000

# The version of the API, will be concatenated to the API base URL.
NEXT_PUBLIC_API_VERSION=v1
NEXT_PUBLIC_API_VERSION=1

# The timeout when doing API requests, in milliseconds.
NEXT_PUBLIC_API_REQUEST_TIMEOUT=10000
Expand Down
14 changes: 14 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@
"lint:fix": "next lint --fix"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@lexical/code": "^0.37.0",
"@lexical/link": "^0.37.0",
"@lexical/list": "^0.37.0",
"@lexical/react": "^0.37.0",
"@lexical/rich-text": "^0.37.0",
"@lexical/selection": "^0.37.0",
"@lexical/table": "^0.37.0",
"@lexical/utils": "^0.37.0",
"@reduxjs/toolkit": "^2.2.2",
"date-fns": "^3.6.0",
"eslint-config-next": "^14.1.4",
Expand All @@ -19,8 +31,10 @@
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-resources-to-backend": "^1.2.1",
"lexical": "^0.37.0",
"modern-normalize": "^2.0.0",
"next": "^14.1.4",
"obra-icons-react": "^1.23.1",
"react": "^18.3.1",
"react-i18next": "^14.1.2",
"react-redux": "^9.1.0",
Expand Down
Loading