Skip to content

Commit 40a45cb

Browse files
committed
065e118 fix(devtools): remove property tab css that is hiding directive metadata (#59493)
1 parent a8d13ed commit 40a45cb

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 Jan 13 17:57:48 UTC 2025
2-
368d69e11554d6f16c75d604716bc43b12f6ef87
1+
Mon Jan 13 19:53:19 UTC 2025
2+
065e1187fce66b201732eadf8f6683a3a79664fa

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.2.0-next.0+sha-368d69e
2+
* @license Angular v19.2.0-next.0+sha-065e118
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -30986,7 +30986,7 @@ function publishFacade(global) {
3098630986
* @description
3098730987
* Entry point for all public APIs of the compiler package.
3098830988
*/
30989-
const VERSION = new Version('19.2.0-next.0+sha-368d69e');
30989+
const VERSION = new Version('19.2.0-next.0+sha-065e118');
3099030990

3099130991
class CompilerConfig {
3099230992
defaultEncapsulation;
@@ -32842,7 +32842,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3284232842
function compileDeclareClassMetadata(metadata) {
3284332843
const definitionMap = new DefinitionMap();
3284432844
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
32845-
definitionMap.set('version', literal('19.2.0-next.0+sha-368d69e'));
32845+
definitionMap.set('version', literal('19.2.0-next.0+sha-065e118'));
3284632846
definitionMap.set('ngImport', importExpr(Identifiers.core));
3284732847
definitionMap.set('type', metadata.type);
3284832848
definitionMap.set('decorators', metadata.decorators);
@@ -32860,7 +32860,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3286032860
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3286132861
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3286232862
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
32863-
definitionMap.set('version', literal('19.2.0-next.0+sha-368d69e'));
32863+
definitionMap.set('version', literal('19.2.0-next.0+sha-065e118'));
3286432864
definitionMap.set('ngImport', importExpr(Identifiers.core));
3286532865
definitionMap.set('type', metadata.type);
3286632866
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -32955,7 +32955,7 @@ function createDirectiveDefinitionMap(meta) {
3295532955
const definitionMap = new DefinitionMap();
3295632956
const minVersion = getMinimumVersionForPartialOutput(meta);
3295732957
definitionMap.set('minVersion', literal(minVersion));
32958-
definitionMap.set('version', literal('19.2.0-next.0+sha-368d69e'));
32958+
definitionMap.set('version', literal('19.2.0-next.0+sha-065e118'));
3295932959
// e.g. `type: MyDirective`
3296032960
definitionMap.set('type', meta.type.value);
3296132961
if (meta.isStandalone !== undefined) {
@@ -33374,7 +33374,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3337433374
function compileDeclareFactoryFunction(meta) {
3337533375
const definitionMap = new DefinitionMap();
3337633376
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33377-
definitionMap.set('version', literal('19.2.0-next.0+sha-368d69e'));
33377+
definitionMap.set('version', literal('19.2.0-next.0+sha-065e118'));
3337833378
definitionMap.set('ngImport', importExpr(Identifiers.core));
3337933379
definitionMap.set('type', meta.type.value);
3338033380
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33409,7 +33409,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3340933409
function createInjectableDefinitionMap(meta) {
3341033410
const definitionMap = new DefinitionMap();
3341133411
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33412-
definitionMap.set('version', literal('19.2.0-next.0+sha-368d69e'));
33412+
definitionMap.set('version', literal('19.2.0-next.0+sha-065e118'));
3341333413
definitionMap.set('ngImport', importExpr(Identifiers.core));
3341433414
definitionMap.set('type', meta.type.value);
3341533415
// Only generate providedIn property if it has a non-null value
@@ -33460,7 +33460,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3346033460
function createInjectorDefinitionMap(meta) {
3346133461
const definitionMap = new DefinitionMap();
3346233462
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33463-
definitionMap.set('version', literal('19.2.0-next.0+sha-368d69e'));
33463+
definitionMap.set('version', literal('19.2.0-next.0+sha-065e118'));
3346433464
definitionMap.set('ngImport', importExpr(Identifiers.core));
3346533465
definitionMap.set('type', meta.type.value);
3346633466
definitionMap.set('providers', meta.providers);
@@ -33493,7 +33493,7 @@ function createNgModuleDefinitionMap(meta) {
3349333493
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3349433494
}
3349533495
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33496-
definitionMap.set('version', literal('19.2.0-next.0+sha-368d69e'));
33496+
definitionMap.set('version', literal('19.2.0-next.0+sha-065e118'));
3349733497
definitionMap.set('ngImport', importExpr(Identifiers.core));
3349833498
definitionMap.set('type', meta.type.value);
3349933499
// We only generate the keys in the metadata if the arrays contain values.
@@ -33544,7 +33544,7 @@ function compileDeclarePipeFromMetadata(meta) {
3354433544
function createPipeDefinitionMap(meta) {
3354533545
const definitionMap = new DefinitionMap();
3354633546
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33547-
definitionMap.set('version', literal('19.2.0-next.0+sha-368d69e'));
33547+
definitionMap.set('version', literal('19.2.0-next.0+sha-065e118'));
3354833548
definitionMap.set('ngImport', importExpr(Identifiers.core));
3354933549
// e.g. `type: MyPipe`
3355033550
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.2.0-next.0+sha-368d69e
2+
* @license Angular v19.2.0-next.0+sha-065e118
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.2.0-next.0+sha-368d69e",
3+
"version": "19.2.0-next.0+sha-065e118",
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.2.0-next.0+sha-368d69e"
14+
"@angular/core": "19.2.0-next.0+sha-065e118"
1515
},
1616
"peerDependenciesMeta": {
1717
"@angular/core": {

0 commit comments

Comments
 (0)