schema.js 1.2 KB

123456789101112131415161718192021222324252627282930313233
  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 ...).
  4. Object.defineProperty(exports, "__esModule", { value: true });
  5. /**
  6. * The change detection strategy to use in the new component.
  7. */
  8. var 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. */
  16. var 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. */
  27. var 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 = {}));