UNPKG

1.22 kBJavaScriptView Raw
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 });
5/**
6 * The change detection strategy to use in the new component.
7 */
8var ChangeDetection;
9(function (ChangeDetection) {
10 ChangeDetection["Default"] = "Default";
11 ChangeDetection["OnPush"] = "OnPush";
12})(ChangeDetection = exports.ChangeDetection || (exports.ChangeDetection = {}));
13/**
14 * The file extension or preprocessor to use for style files.
15 */
16var Style;
17(function (Style) {
18 Style["Css"] = "css";
19 Style["Less"] = "less";
20 Style["Sass"] = "sass";
21 Style["Scss"] = "scss";
22 Style["Styl"] = "styl";
23})(Style = exports.Style || (exports.Style = {}));
24/**
25 * The view encapsulation strategy to use in the new component.
26 */
27var ViewEncapsulation;
28(function (ViewEncapsulation) {
29 ViewEncapsulation["Emulated"] = "Emulated";
30 ViewEncapsulation["Native"] = "Native";
31 ViewEncapsulation["None"] = "None";
32 ViewEncapsulation["ShadowDom"] = "ShadowDom";
33})(ViewEncapsulation = exports.ViewEncapsulation || (exports.ViewEncapsulation = {}));