schema.js 985 B

12345678910111213141516171819202122232425
  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 = void 0;
  6. /**
  7. * The type of stylesheet files to be created for components in the application.
  8. */
  9. var Style;
  10. (function (Style) {
  11. Style["Css"] = "css";
  12. Style["Less"] = "less";
  13. Style["Sass"] = "sass";
  14. Style["Scss"] = "scss";
  15. })(Style || (exports.Style = Style = {}));
  16. /**
  17. * Sets the view encapsulation mode for the application's components. This determines how
  18. * component styles are scoped and applied.
  19. */
  20. var ViewEncapsulation;
  21. (function (ViewEncapsulation) {
  22. ViewEncapsulation["Emulated"] = "Emulated";
  23. ViewEncapsulation["None"] = "None";
  24. ViewEncapsulation["ShadowDom"] = "ShadowDom";
  25. })(ViewEncapsulation || (exports.ViewEncapsulation = ViewEncapsulation = {}));