feat(planning): grille hebdomadaire complète avec API et filtres
- Connexion API via proxy Angular (résolution CORS, base path /api) - Import CSS ng-zorro global pour les modales et composants - Filtres Camion/Show câblés sur l'affichage de la grille - Camions affichés via TrucksService (linkés au show du même créneau) - Panneau de détails : spectacles + camions du jour sélectionné - Modale de création de spectacle stylisée avec fond et centrage - Positionnement précis des events à la minute dans leur créneau - Auto-scroll vers l'heure courante au chargement - Ligne "maintenant" sur la colonne du jour actuel - Régénération des services OpenAPI (nouveaux noms de types) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
-15
@@ -233,21 +233,6 @@ Exit the [alternative screen](https://terminalguide.namepad.de/mode/p47/), assum
|
||||
*/
|
||||
export const exitAlternativeScreen: string;
|
||||
|
||||
/**
|
||||
Begin [synchronized output](https://contour-terminal.org/vt-extensions/synchronized-output/) to reduce flicker during renders.
|
||||
*/
|
||||
export const beginSynchronizedOutput: string;
|
||||
|
||||
/**
|
||||
End [synchronized output](https://contour-terminal.org/vt-extensions/synchronized-output/).
|
||||
*/
|
||||
export const endSynchronizedOutput: string;
|
||||
|
||||
/**
|
||||
Wrap output in [synchronized output](https://contour-terminal.org/vt-extensions/synchronized-output/) sequences to reduce flicker during renders.
|
||||
*/
|
||||
export function synchronizedOutput(text: string): string;
|
||||
|
||||
/**
|
||||
Output a beeping sound.
|
||||
*/
|
||||
|
||||
-4
@@ -132,10 +132,6 @@ export const clearTerminal = isOldWindows()
|
||||
export const enterAlternativeScreen = ESC + '?1049h';
|
||||
export const exitAlternativeScreen = ESC + '?1049l';
|
||||
|
||||
export const beginSynchronizedOutput = ESC + '?2026h';
|
||||
export const endSynchronizedOutput = ESC + '?2026l';
|
||||
export const synchronizedOutput = text => beginSynchronizedOutput + text + endSynchronizedOutput;
|
||||
|
||||
export const beep = BEL;
|
||||
|
||||
export const link = (text, url) => {
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ansi-escapes",
|
||||
"version": "7.3.0",
|
||||
"version": "7.2.0",
|
||||
"description": "ANSI escape codes for manipulating the terminal",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/ansi-escapes",
|
||||
|
||||
-12
@@ -159,18 +159,6 @@ Enter the [alternative screen](https://terminalguide.namepad.de/mode/p47/).
|
||||
|
||||
Exit the [alternative screen](https://terminalguide.namepad.de/mode/p47/), assuming `enterAlternativeScreen` was called before.
|
||||
|
||||
### beginSynchronizedOutput
|
||||
|
||||
Begin [synchronized output](https://contour-terminal.org/vt-extensions/synchronized-output/) to reduce flicker during renders.
|
||||
|
||||
### endSynchronizedOutput
|
||||
|
||||
End [synchronized output](https://contour-terminal.org/vt-extensions/synchronized-output/).
|
||||
|
||||
### synchronizedOutput(text)
|
||||
|
||||
Wrap output in [synchronized output](https://contour-terminal.org/vt-extensions/synchronized-output/) sequences to reduce flicker during renders.
|
||||
|
||||
### beep
|
||||
|
||||
Output a beeping sound.
|
||||
|
||||
Reference in New Issue
Block a user