@schematics/angular 20.1.0 → 20.2.0-next.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.
@@ -124,6 +124,7 @@
124
124
  line-height: 1.4rem;
125
125
  letter-spacing: -0.00875rem;
126
126
  text-decoration: none;
127
+ white-space: nowrap;
127
128
  }
128
129
 
129
130
  .pill:hover {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schematics/angular",
3
- "version": "20.1.0",
3
+ "version": "20.2.0-next.0",
4
4
  "description": "Schematics specific to Angular",
5
5
  "homepage": "https://github.com/angular/angular-cli",
6
6
  "keywords": [
@@ -22,8 +22,8 @@
22
22
  },
23
23
  "schematics": "./collection.json",
24
24
  "dependencies": {
25
- "@angular-devkit/core": "20.1.0",
26
- "@angular-devkit/schematics": "20.1.0",
25
+ "@angular-devkit/core": "20.2.0-next.0",
26
+ "@angular-devkit/schematics": "20.2.0-next.0",
27
27
  "jsonc-parser": "3.3.1"
28
28
  },
29
29
  "repository": {
@@ -14,9 +14,9 @@ const dependencies = require('./latest-versions/package.json')['dependencies'];
14
14
  exports.latestVersions = {
15
15
  ...dependencies,
16
16
  // As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
17
- Angular: '^20.1.0',
18
- NgPackagr: '^20.1.0',
19
- DevkitBuildAngular: '^20.1.0',
20
- AngularBuild: '^20.1.0',
21
- AngularSSR: '^20.1.0',
17
+ Angular: '^20.2.0-next.0',
18
+ NgPackagr: '^20.2.0-next.0',
19
+ DevkitBuildAngular: '^20.2.0-next.0',
20
+ AngularBuild: '^20.2.0-next.0',
21
+ AngularSSR: '^20.2.0-next.0',
22
22
  };