@igniteui/angular-schematics 14.1.1010 → 15.0.1100-beta.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igniteui/angular-schematics",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.1100-beta.0",
|
|
4
4
|
"description": "Ignite UI for Angular Schematics for ng new and ng generate",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@angular-devkit/core": "~14.0.0",
|
|
24
24
|
"@angular-devkit/schematics": "~14.0.0",
|
|
25
|
-
"@igniteui/angular-templates": "~
|
|
26
|
-
"@igniteui/cli-core": "~
|
|
25
|
+
"@igniteui/angular-templates": "~15.0.1100-beta.0",
|
|
26
|
+
"@igniteui/cli-core": "~11.0.0-beta.0",
|
|
27
27
|
"@schematics/angular": "~14.0.0",
|
|
28
28
|
"rxjs": "^6.6.3"
|
|
29
29
|
},
|
package/src/cli-config/index.js
CHANGED
|
@@ -57,8 +57,8 @@ Running 'ng update' will prevent potential version conflicts.\n`);
|
|
|
57
57
|
}
|
|
58
58
|
function addTypographyToProj() {
|
|
59
59
|
return (tree) => {
|
|
60
|
-
(0, cli_core_1.addClassToBody)(tree, "
|
|
61
|
-
(0, cli_core_1.addClassToBody)(tree, "
|
|
60
|
+
(0, cli_core_1.addClassToBody)(tree, "ig-typography");
|
|
61
|
+
(0, cli_core_1.addClassToBody)(tree, "ig-scrollbar");
|
|
62
62
|
};
|
|
63
63
|
}
|
|
64
64
|
function importBrowserAnimations() {
|
|
@@ -103,7 +103,7 @@ describe("cli-config schematic", () => {
|
|
|
103
103
|
const targetFile = "/src/index.html";
|
|
104
104
|
yield runner.runSchematicAsync("cli-config", {}, tree).toPromise();
|
|
105
105
|
const content = tree.readContent(targetFile);
|
|
106
|
-
expect(content.includes("<body class=\"
|
|
106
|
+
expect(content.includes("<body class=\"ig-typography ig-scrollbar\">")).toBeTruthy();
|
|
107
107
|
}));
|
|
108
108
|
it("should add Titillium and Material Icons stylesheets correctly", () => __awaiter(void 0, void 0, void 0, function* () {
|
|
109
109
|
const targetFile = "/src/index.html";
|