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:
2026-05-27 20:36:03 +02:00
parent 150b97cd2e
commit 654b297e2e
3131 changed files with 149304 additions and 104334 deletions
-21
View File
@@ -2,27 +2,6 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
## [0.1.6](https://github.com/istanbuljs/schema/compare/v0.1.5...v0.1.6) (2026-04-13)
### Bug Fixes
* Undo change to schema in 0.1.x series ([440f977](https://github.com/istanbuljs/schema/commit/440f977adc826fa51aa5eba06ee4d89065ca4261))
## [0.1.5](https://github.com/istanbuljs/schema/compare/v0.1.4...v0.1.5) (2026-04-13)
### Bug Fixes
* Re-add release-please ([7c25461](https://github.com/istanbuljs/schema/commit/7c25461ac00d69b843d6a3e112a279164fc972b9))
## [0.1.4](https://github.com/istanbuljs/schema/compare/v0.1.3...v0.1.4) (2026-04-13)
### Bug Fixes
* Remove development dependencies ([a24b4c1](https://github.com/istanbuljs/schema/commit/a24b4c1bccf65f63e7f1fe6bd82bed82e57abc80))
### [0.1.3](https://github.com/istanbuljs/schema/compare/v0.1.2...v0.1.3) (2021-02-13)
+3 -15
View File
@@ -1,5 +1,6 @@
# @istanbuljs/schema
[![Travis CI][travis-image]][travis-url]
[![NPM Version][npm-image]][npm-url]
[![NPM Downloads][downloads-image]][downloads-url]
[![MIT][license-image]](LICENSE)
@@ -14,21 +15,6 @@ const {nyc} = require('@istanbuljs/schema').defaults;
console.log(`Default exclude list:\n\t* ${nyc.exclude.join('\n\t* ')}`);
```
## Testing
- **Runtime support**: See `engines.node` in `package.json` (currently `>=8`).
- **Running tests**: Requires **Node.js >=22.3.0** (uses `node:test` snapshot testing via `t.assert.snapshot`).
```bash
npm test
```
To update snapshots:
```bash
npm run test:update-snapshots
```
## `@istanbuljs/schema` for enterprise
Available as part of the Tidelift Subscription.
@@ -37,6 +23,8 @@ The maintainers of `@istanbuljs/schema` and thousands of other packages are work
[npm-image]: https://img.shields.io/npm/v/@istanbuljs/schema.svg
[npm-url]: https://npmjs.org/package/@istanbuljs/schema
[travis-image]: https://travis-ci.org/istanbuljs/schema.svg?branch=master
[travis-url]: https://travis-ci.org/istanbuljs/schema
[downloads-image]: https://img.shields.io/npm/dm/@istanbuljs/schema.svg
[downloads-url]: https://npmjs.org/package/@istanbuljs/schema
[license-image]: https://img.shields.io/npm/l/@istanbuljs/schema.svg
+8 -4
View File
@@ -1,11 +1,13 @@
{
"name": "@istanbuljs/schema",
"version": "0.1.6",
"version": "0.1.3",
"description": "Schemas describing various structures used by nyc and istanbuljs",
"main": "index.js",
"scripts": {
"test": "nyc node --test test/test.js",
"test:update-snapshots": "nyc node --test --test-update-snapshots test/test.js"
"release": "standard-version --sign",
"pretest": "xo",
"test": "tap",
"snap": "npm test -- --snapshot"
},
"engines": {
"node": ">=8"
@@ -21,6 +23,8 @@
},
"homepage": "https://github.com/istanbuljs/schema#readme",
"devDependencies": {
"nyc": "^18.0.0"
"standard-version": "^7.0.0",
"tap": "^14.6.7",
"xo": "^0.25.3"
}
}