@angular/material 19.0.2 → 19.1.0-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/style/_menu-common.scss +0 -1
- package/fesm2022/core.mjs +1 -1
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/menu.mjs +2 -2
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/sidenav.mjs +4 -4
- package/fesm2022/sidenav.mjs.map +1 -1
- package/package.json +7 -7
- package/schematics/ng-add/index.js +2 -2
- package/schematics/ng-add/index.mjs +2 -2
- package/schematics/ng-generate/theme-color/index_bundled.js +431 -128
- package/schematics/ng-generate/theme-color/index_bundled.js.map +2 -2
- package/schematics/ng-generate/theme-color/schema.json +6 -0
|
@@ -34,6 +34,12 @@
|
|
|
34
34
|
"type": "string",
|
|
35
35
|
"description": "Workspace-relative path to a directory where generated theme file will be created",
|
|
36
36
|
"x-prompt": "What is the directory you want to place the generated theme file in? (Enter the relative path such as 'src/app/styles/' or leave blank to generate at your project root)"
|
|
37
|
+
},
|
|
38
|
+
"isScss": {
|
|
39
|
+
"type": "boolean",
|
|
40
|
+
"default": true,
|
|
41
|
+
"description": "Whether to generate output file in scss or CSS",
|
|
42
|
+
"x-prompt": "Do you want to generated file to be a scss file? This is the recommended way of setting up theming in your application. If not, a CSS file will be generated with all the system variables defined. (Leave blank to generate a scss file)"
|
|
37
43
|
}
|
|
38
44
|
}
|
|
39
45
|
}
|