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:
+4
-13
@@ -1,9 +1,13 @@
|
||||
# fast-uri
|
||||
|
||||
<div align="center">
|
||||
|
||||
[](https://www.npmjs.com/package/fast-uri)
|
||||
[](https://github.com/fastify/fast-uri/actions/workflows/ci.yml)
|
||||
[](https://github.com/neostandard/neostandard)
|
||||
|
||||
</div>
|
||||
|
||||
Dependency-free RFC 3986 URI toolbox.
|
||||
|
||||
## Usage
|
||||
@@ -12,8 +16,6 @@ Dependency-free RFC 3986 URI toolbox.
|
||||
|
||||
All of the above functions can accept an additional options argument that is an object that can contain one or more of the following properties:
|
||||
|
||||
Malformed authorities and out-of-range ports are reported through the parsed component's `error` field. `normalize()` leaves malformed string inputs unchanged, and `equal()` returns `false` when either string input is malformed.
|
||||
|
||||
* `scheme` (string)
|
||||
Indicates the scheme that the URI should be treated as, overriding the URI's normal scheme parsing behavior.
|
||||
|
||||
@@ -68,17 +70,6 @@ uri.resolve("uri://a/b/c/d?q", "../../g")
|
||||
"uri://a/g"
|
||||
```
|
||||
|
||||
### Normalize
|
||||
|
||||
```js
|
||||
const uri = require('fast-uri')
|
||||
uri.normalize('http://example.com/a%2Fb')
|
||||
// Output
|
||||
"http://example.com/a%2Fb"
|
||||
```
|
||||
|
||||
Reserved path escapes such as `%2F` and `%2E` are preserved as path data during normalization and comparison.
|
||||
|
||||
### Equal
|
||||
|
||||
```js
|
||||
|
||||
Reference in New Issue
Block a user