Skip to content

Commit 4f630ea

Browse files
42b1662 refactor(devtools): removing unused styles and addressing PR comments (#58213)
1 parent b6cb67f commit 4f630ea

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Mon Dec 2 15:47:57 UTC 2024
2-
10b3dcca8bea1e05f35365d73e39f38daab36f1a
1+
Tue Dec 3 08:21:25 UTC 2024
2+
42b1662ae879992dd28acb89d071f1248fc4f1a1

fesm2022/compiler.mjs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v19.1.0-next.0+sha-10b3dcc
2+
* @license Angular v19.1.0-next.0+sha-42b1662
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -30883,7 +30883,7 @@ function publishFacade(global) {
3088330883
* @description
3088430884
* Entry point for all public APIs of the compiler package.
3088530885
*/
30886-
const VERSION = new Version('19.1.0-next.0+sha-10b3dcc');
30886+
const VERSION = new Version('19.1.0-next.0+sha-42b1662');
3088730887

3088830888
class CompilerConfig {
3088930889
defaultEncapsulation;
@@ -32735,7 +32735,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3273532735
function compileDeclareClassMetadata(metadata) {
3273632736
const definitionMap = new DefinitionMap();
3273732737
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
32738-
definitionMap.set('version', literal('19.1.0-next.0+sha-10b3dcc'));
32738+
definitionMap.set('version', literal('19.1.0-next.0+sha-42b1662'));
3273932739
definitionMap.set('ngImport', importExpr(Identifiers.core));
3274032740
definitionMap.set('type', metadata.type);
3274132741
definitionMap.set('decorators', metadata.decorators);
@@ -32753,7 +32753,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3275332753
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3275432754
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3275532755
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
32756-
definitionMap.set('version', literal('19.1.0-next.0+sha-10b3dcc'));
32756+
definitionMap.set('version', literal('19.1.0-next.0+sha-42b1662'));
3275732757
definitionMap.set('ngImport', importExpr(Identifiers.core));
3275832758
definitionMap.set('type', metadata.type);
3275932759
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -32848,7 +32848,7 @@ function createDirectiveDefinitionMap(meta) {
3284832848
const definitionMap = new DefinitionMap();
3284932849
const minVersion = getMinimumVersionForPartialOutput(meta);
3285032850
definitionMap.set('minVersion', literal(minVersion));
32851-
definitionMap.set('version', literal('19.1.0-next.0+sha-10b3dcc'));
32851+
definitionMap.set('version', literal('19.1.0-next.0+sha-42b1662'));
3285232852
// e.g. `type: MyDirective`
3285332853
definitionMap.set('type', meta.type.value);
3285432854
if (meta.isStandalone !== undefined) {
@@ -33267,7 +33267,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3326733267
function compileDeclareFactoryFunction(meta) {
3326833268
const definitionMap = new DefinitionMap();
3326933269
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33270-
definitionMap.set('version', literal('19.1.0-next.0+sha-10b3dcc'));
33270+
definitionMap.set('version', literal('19.1.0-next.0+sha-42b1662'));
3327133271
definitionMap.set('ngImport', importExpr(Identifiers.core));
3327233272
definitionMap.set('type', meta.type.value);
3327333273
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33302,7 +33302,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3330233302
function createInjectableDefinitionMap(meta) {
3330333303
const definitionMap = new DefinitionMap();
3330433304
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33305-
definitionMap.set('version', literal('19.1.0-next.0+sha-10b3dcc'));
33305+
definitionMap.set('version', literal('19.1.0-next.0+sha-42b1662'));
3330633306
definitionMap.set('ngImport', importExpr(Identifiers.core));
3330733307
definitionMap.set('type', meta.type.value);
3330833308
// Only generate providedIn property if it has a non-null value
@@ -33353,7 +33353,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3335333353
function createInjectorDefinitionMap(meta) {
3335433354
const definitionMap = new DefinitionMap();
3335533355
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33356-
definitionMap.set('version', literal('19.1.0-next.0+sha-10b3dcc'));
33356+
definitionMap.set('version', literal('19.1.0-next.0+sha-42b1662'));
3335733357
definitionMap.set('ngImport', importExpr(Identifiers.core));
3335833358
definitionMap.set('type', meta.type.value);
3335933359
definitionMap.set('providers', meta.providers);
@@ -33386,7 +33386,7 @@ function createNgModuleDefinitionMap(meta) {
3338633386
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3338733387
}
3338833388
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33389-
definitionMap.set('version', literal('19.1.0-next.0+sha-10b3dcc'));
33389+
definitionMap.set('version', literal('19.1.0-next.0+sha-42b1662'));
3339033390
definitionMap.set('ngImport', importExpr(Identifiers.core));
3339133391
definitionMap.set('type', meta.type.value);
3339233392
// We only generate the keys in the metadata if the arrays contain values.
@@ -33437,7 +33437,7 @@ function compileDeclarePipeFromMetadata(meta) {
3343733437
function createPipeDefinitionMap(meta) {
3343833438
const definitionMap = new DefinitionMap();
3343933439
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33440-
definitionMap.set('version', literal('19.1.0-next.0+sha-10b3dcc'));
33440+
definitionMap.set('version', literal('19.1.0-next.0+sha-42b1662'));
3344133441
definitionMap.set('ngImport', importExpr(Identifiers.core));
3344233442
// e.g. `type: MyPipe`
3344333443
definitionMap.set('type', meta.type.value);

fesm2022/compiler.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v19.1.0-next.0+sha-10b3dcc
2+
* @license Angular v19.1.0-next.0+sha-42b1662
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/compiler",
3-
"version": "19.1.0-next.0+sha-10b3dcc",
3+
"version": "19.1.0-next.0+sha-42b1662",
44
"description": "Angular - the compiler library",
55
"author": "angular",
66
"license": "MIT",
@@ -11,7 +11,7 @@
1111
"tslib": "^2.3.0"
1212
},
1313
"peerDependencies": {
14-
"@angular/core": "19.1.0-next.0+sha-10b3dcc"
14+
"@angular/core": "19.1.0-next.0+sha-42b1662"
1515
},
1616
"peerDependenciesMeta": {
1717
"@angular/core": {

0 commit comments

Comments
 (0)