654b297e2e
- 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>
31 lines
1.6 KiB
JavaScript
Executable File
31 lines
1.6 KiB
JavaScript
Executable File
"use strict";
|
|
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = default_1;
|
|
const utility_1 = require("@schematics/angular/utility");
|
|
/**
|
|
* Schematic factory entry-point for the `ng-add` schematic. The ng-add schematic will be
|
|
* automatically executed if developers run `ng add @angular/cdk`.
|
|
*
|
|
* By default, the CLI already installs the package that has been specified with `ng add`.
|
|
* We just store the version in the `package.json` in case the package manager didn't. Also
|
|
* this ensures that there will be no error that says that the CDK does not support `ng add`.
|
|
*/
|
|
function default_1() {
|
|
// The CLI inserts `@angular/cdk` into the `package.json` before this schematic runs. This
|
|
// means that we do not need to insert the CDK into `package.json` files again. In some cases
|
|
// though, it could happen that this schematic runs outside of the CLI `ng add` command, or
|
|
// the CDK is only listed as a dev dependency. If that is the case, we insert a version based
|
|
// on the current build version (substituted version placeholder).
|
|
// In order to align the CDK version with other Angular dependencies that are setup by
|
|
// `@schematics/angular`, we use tilde instead of caret. This is default for Angular
|
|
// dependencies in new CLI projects.
|
|
return (0, utility_1.addDependency)('@angular/cdk', `~20.2.12`, { existing: utility_1.ExistingBehavior.Skip });
|
|
}
|
|
//# sourceMappingURL=index.js.map
|