source: trip-planner-front/node_modules/@schematics/angular/component/schema.js@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.3 KB
Line 
1"use strict";
2// THIS FILE IS AUTOMATICALLY GENERATED. TO UPDATE THIS FILE YOU NEED TO CHANGE THE
3// CORRESPONDING JSON SCHEMA FILE, THEN RUN devkit-admin build (or bazel build ...).
4Object.defineProperty(exports, "__esModule", { value: true });
5exports.ViewEncapsulation = exports.Style = exports.ChangeDetection = void 0;
6/**
7 * The change detection strategy to use in the new component.
8 */
9var ChangeDetection;
10(function (ChangeDetection) {
11 ChangeDetection["Default"] = "Default";
12 ChangeDetection["OnPush"] = "OnPush";
13})(ChangeDetection = exports.ChangeDetection || (exports.ChangeDetection = {}));
14/**
15 * The file extension or preprocessor to use for style files, or 'none' to skip generating
16 * the style file.
17 */
18var Style;
19(function (Style) {
20 Style["Css"] = "css";
21 Style["Less"] = "less";
22 Style["None"] = "none";
23 Style["Sass"] = "sass";
24 Style["Scss"] = "scss";
25})(Style = exports.Style || (exports.Style = {}));
26/**
27 * The view encapsulation strategy to use in the new component.
28 */
29var ViewEncapsulation;
30(function (ViewEncapsulation) {
31 ViewEncapsulation["Emulated"] = "Emulated";
32 ViewEncapsulation["None"] = "None";
33 ViewEncapsulation["ShadowDom"] = "ShadowDom";
34})(ViewEncapsulation = exports.ViewEncapsulation || (exports.ViewEncapsulation = {}));
Note: See TracBrowser for help on using the repository browser.