change and add into components, widgets and pages

This commit is contained in:
LathanDevers
2026-07-30 14:08:49 +02:00
parent ec900efe3a
commit 057aa628a3
39 changed files with 1620 additions and 1062 deletions
+5 -2
View File
@@ -2,7 +2,10 @@
export type NodeStatus = 'Opérationnel' | 'Dégradé' | 'Hors Ligne';
// Statuts relatifs aux contrats d'infogérance
export type ContractStatus = 'Actif' | 'En déploiement' | 'Suspendu';
export type ContractStatus = 'Actif' | 'En Déploiement' | 'Annulé';
// Status relatifs aux tickets du service desk
export type TicketStatus = 'Ouvert' | 'En Analyse' | 'Résolu';
// Type unifié regroupant tous les statuts possibles sur la plateforme AEGIS
export type AegisStatus = NodeStatus | ContractStatus;
export type AegisStatus = NodeStatus | ContractStatus | TicketStatus;