12345678910111213141516171819202122232425 |
- "use strict";
- // THIS FILE IS AUTOMATICALLY GENERATED. TO UPDATE THIS FILE YOU NEED TO CHANGE THE
- // CORRESPONDING JSON SCHEMA FILE, THEN RUN devkit-admin build (or bazel build ...).
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.ViewEncapsulation = exports.Style = void 0;
- /**
- * The type of stylesheet files to be created for components in the application.
- */
- var Style;
- (function (Style) {
- Style["Css"] = "css";
- Style["Less"] = "less";
- Style["Sass"] = "sass";
- Style["Scss"] = "scss";
- })(Style || (exports.Style = Style = {}));
- /**
- * Sets the view encapsulation mode for the application's components. This determines how
- * component styles are scoped and applied.
- */
- var ViewEncapsulation;
- (function (ViewEncapsulation) {
- ViewEncapsulation["Emulated"] = "Emulated";
- ViewEncapsulation["None"] = "None";
- ViewEncapsulation["ShadowDom"] = "ShadowDom";
- })(ViewEncapsulation || (exports.ViewEncapsulation = ViewEncapsulation = {}));
|