Compare commits

..

10 Commits
main ... Lm

Author SHA1 Message Date
Alexis Burnaz 0125e2ae69 Lm : plus de AJAX, plus de soucis de token, mais loader pas fou, du a l'app en elle meme 2025-12-22 17:20:33 +01:00
Alexis Burnaz d6f06dfd7b Lm : a jour 2025-12-22 16:05:14 +01:00
Alexis Burnaz 77bf98e6cd fix : recherche globale + tous les champs 2025-12-22 13:42:13 +01:00
Alexis Burnaz 0a536140ab fix : bouton desactivé pendant le téléchargement + plus de abort 2025-12-22 12:24:30 +01:00
Alexis Burnaz 5de492b308 fix : exports (csv, xls) fixed, clients expand, fixed 2025-12-22 11:46:51 +01:00
Alexis Burnaz 4f82b29f18 minor changes 2025-12-19 18:27:17 +01:00
Alexis Burnaz a929c0770c Ajout .gitignore et retrait node_modules/logs du suivi 2025-12-19 18:11:52 +01:00
Alexis Burnaz 4cc8167ad8 Hp quasiment terminé, version tres avancé, aucune erreur dans la console 2025-12-19 18:10:03 +01:00
Alexis Burnaz 5a0ff43300 Hp quasiment terminé, version tres avancé, aucune erreur dans la console 2025-12-19 18:08:26 +01:00
Alexis Burnaz 013cd0eb8d travail 2025-12-19 13:37:51 +01:00
218 changed files with 2870 additions and 2341 deletions

5
ecole/.env Normal file
View File

@ -0,0 +1,5 @@
DB_URL=http://127.0.0.1:8091/
DB_ADMIN=admin@axa.fr
DB_PASSWORD=DTadmin123TT
NODE_ENV=developpement
PORT=8082

33
ecole/.gitignore vendored Normal file
View File

@ -0,0 +1,33 @@
# Dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Classique
package-lock.json
# Logs
logs/
*.log
# Environment variables
.env
.env.local
.env.*.local
# OS files
.DS_Store
Thumbs.db
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Build outputs
dist/
build/

File diff suppressed because it is too large Load Diff

View File

@ -9,9 +9,7 @@
"test": "jest"
},
"pkg": {
"assets": [
"public/**"
]
"assets": ["public/**"]
},
"keywords": [],
"author": "cyril.ducaffy@axa.fr",

View File

@ -511,4 +511,50 @@ a.grille-garanties:hover{
@keyframes l13 {
100% { transform: rotate(1turn); }
}
/* Message d'erreur du loader */
#error-message {
display: none;
color: #ff4444;
font-weight: bold;
text-align: center;
margin-top: 20px;
white-space: pre-line;
font-size: 16px;
}
/* Message de timeout du loader */
#timeout-message {
display: none;
margin-top: 30px;
text-align: center;
color: #d0d0d0;
font-size: 14px;
max-width: 420px;
line-height: 1.6;
padding: 0 20px;
animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
/* Lien cliquable pour annuler le chargement */
#cancel-loading-link {
color: #66B2FF;
text-decoration: underline;
text-underline-offset: 3px;
text-decoration-thickness: 1px;
cursor: pointer;
transition: all 0.2s ease;
font-weight: 500;
}
#cancel-loading-link:hover {
color: #90CAF9;
text-decoration-thickness: 2px;
text-shadow: 0 0 10px rgba(102, 178, 255, 0.6);
}

Some files were not shown because too many files have changed in this diff Show More