-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(619) : Reword établissement en voeu
- Loading branch information
1 parent
4a5f9b3
commit 2e19ce7
Showing
32 changed files
with
342 additions
and
366 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...AmbitionVoeux/AmbitionVoeux.interface.tsx → ...Formation/Ambition/Ambition.interface.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import { type Formation } from "@/features/formation/domain/formation.interface"; | ||
import { type FormationFavorite } from "@/features/élève/domain/élève.interface"; | ||
|
||
export type AmbitionVoeuxProps = { | ||
export type AmbitionProps = { | ||
ambitionActuelle: FormationFavorite["niveauAmbition"] | undefined; | ||
formationId: Formation["id"]; | ||
}; | ||
|
||
export type useAmbitionVoeuxArgs = { | ||
export type useAmbitionArgs = { | ||
formationId: Formation["id"]; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 8 additions & 8 deletions
16
.../Voeux/AmbitionVoeux/useAmbitionVoeux.tsx → ...n/ChoixFormation/Ambition/useAmbition.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../FicheFormation/Voeux/Voeux.interface.tsx → ...oixFormation/ChoixFormation.interface.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { type Formation } from "@/features/formation/domain/formation.interface"; | ||
|
||
export type VoeuxProps = { | ||
export type ChoixFormationProps = { | ||
formation: Formation; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...features/formation/ui/FicheFormation/ChoixFormation/Commentaire/Commentaire.interface.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { type Formation } from "@/features/formation/domain/formation.interface"; | ||
|
||
export type CommentaireProps = { | ||
formationId: Formation["id"]; | ||
}; | ||
|
||
export type UseCommentaireArgs = { | ||
formationId: CommentaireProps["formationId"]; | ||
}; | ||
|
||
interface FormElements extends HTMLFormControlsCollection { | ||
commentaire: HTMLTextAreaElement; | ||
} | ||
export interface CommentaireFormElement extends HTMLFormElement { | ||
readonly elements: FormElements; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.