schema.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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. exports.ViewEncapsulation = exports.Style = exports.ChangeDetection = void 0;
  6. /**
  7. * Configures the change detection strategy for the component.
  8. */
  9. var ChangeDetection;
  10. (function (ChangeDetection) {
  11. ChangeDetection["Default"] = "Default";
  12. ChangeDetection["OnPush"] = "OnPush";
  13. })(ChangeDetection || (exports.ChangeDetection = ChangeDetection = {}));
  14. /**
  15. * Specify the type of stylesheet to be created for the component, or `none` to skip
  16. * creating a stylesheet.
  17. */
  18. var 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 = Style = {}));
  26. /**
  27. * Sets the view encapsulation mode for the component. This determines how the component's
  28. * styles are scoped and applied.
  29. */
  30. var ViewEncapsulation;
  31. (function (ViewEncapsulation) {
  32. ViewEncapsulation["Emulated"] = "Emulated";
  33. ViewEncapsulation["None"] = "None";
  34. ViewEncapsulation["ShadowDom"] = "ShadowDom";
  35. })(ViewEncapsulation || (exports.ViewEncapsulation = ViewEncapsulation = {}));