| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- "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.io/license
- */
- Object.defineProperty(exports, "__esModule", { value: true });
- const schematics_1 = require("@angular-devkit/schematics");
- const schematics_2 = require("@angular/cdk/schematics");
- /**
- * Scaffolds a new navigation component.
- * Internally it bootstraps the base component schematic
- */
- function default_1(options) {
- return schematics_1.chain([
- schematics_2.buildComponent(Object.assign({}, options), {
- template: './__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html.template',
- stylesheet: './__path__/__name@dasherize@if-flat__/__name@dasherize__.component.__style__.template',
- }),
- options.skipImport ? schematics_1.noop() : addNavModulesToModule(options)
- ]);
- }
- exports.default = default_1;
- /**
- * Adds the required modules to the relative module.
- */
- function addNavModulesToModule(options) {
- return (host) => {
- const modulePath = schematics_2.findModuleFromOptions(host, options);
- schematics_2.addModuleImportToModule(host, modulePath, 'LayoutModule', '@angular/cdk/layout');
- schematics_2.addModuleImportToModule(host, modulePath, 'MatToolbarModule', '@angular/material/toolbar');
- schematics_2.addModuleImportToModule(host, modulePath, 'MatButtonModule', '@angular/material/button');
- schematics_2.addModuleImportToModule(host, modulePath, 'MatSidenavModule', '@angular/material/sidenav');
- schematics_2.addModuleImportToModule(host, modulePath, 'MatIconModule', '@angular/material/icon');
- schematics_2.addModuleImportToModule(host, modulePath, 'MatListModule', '@angular/material/list');
- return host;
- };
- }
- //# sourceMappingURL=index.js.map
|