schema.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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.PackageManager = void 0;
  6. /**
  7. * The package manager used to install dependencies.
  8. */
  9. var PackageManager;
  10. (function (PackageManager) {
  11. PackageManager["Bun"] = "bun";
  12. PackageManager["Cnpm"] = "cnpm";
  13. PackageManager["Npm"] = "npm";
  14. PackageManager["Pnpm"] = "pnpm";
  15. PackageManager["Yarn"] = "yarn";
  16. })(PackageManager || (exports.PackageManager = PackageManager = {}));
  17. /**
  18. * The type of stylesheet files to be created for components in the initial project.
  19. */
  20. var Style;
  21. (function (Style) {
  22. Style["Css"] = "css";
  23. Style["Less"] = "less";
  24. Style["Sass"] = "sass";
  25. Style["Scss"] = "scss";
  26. })(Style || (exports.Style = Style = {}));
  27. /**
  28. * Sets the view encapsulation mode for components in the initial project. This determines
  29. * how component styles are scoped and applied. Options include: `Emulated` (default, styles
  30. * are scoped to the component), `None` (styles are global), and `ShadowDom` (styles are
  31. * encapsulated using Shadow DOM).
  32. */
  33. var ViewEncapsulation;
  34. (function (ViewEncapsulation) {
  35. ViewEncapsulation["Emulated"] = "Emulated";
  36. ViewEncapsulation["None"] = "None";
  37. ViewEncapsulation["ShadowDom"] = "ShadowDom";
  38. })(ViewEncapsulation || (exports.ViewEncapsulation = ViewEncapsulation = {}));