Skip to content

Commit 00b188e

Browse files
committed
997836e refactor(core): specify reactive node kind for linked signal (#60451)
1 parent b080b33 commit 00b188e

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Mon Mar 24 07:02:19 UTC 2025
2-
dcfa8a04f56e6df6ca7107743890af4593019dc8
1+
Mon Mar 24 14:13:56 UTC 2025
2+
997836e85829642ad9bea0fd8cdeab488917b2ea

fesm2022/platform-browser-dynamic.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.3+sha-dcfa8a0
2+
* @license Angular v20.0.0-next.3+sha-997836e
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -17,7 +17,7 @@ import { platformBrowser } from '@angular/platform-browser';
1717
/**
1818
* @publicApi
1919
*/
20-
const VERSION = new Version('20.0.0-next.3+sha-dcfa8a0');
20+
const VERSION = new Version('20.0.0-next.3+sha-997836e');
2121

2222
const COMPILER_PROVIDERS = [
2323
{ provide: Compiler, useFactory: () => new Compiler() },
@@ -112,10 +112,10 @@ class ResourceLoaderImpl extends ResourceLoader {
112112
xhr.send();
113113
return promise;
114114
}
115-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-dcfa8a0", ngImport: i0, type: ResourceLoaderImpl, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
116-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-dcfa8a0", ngImport: i0, type: ResourceLoaderImpl });
115+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-997836e", ngImport: i0, type: ResourceLoaderImpl, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
116+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-997836e", ngImport: i0, type: ResourceLoaderImpl });
117117
}
118-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-dcfa8a0", ngImport: i0, type: ResourceLoaderImpl, decorators: [{
118+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-997836e", ngImport: i0, type: ResourceLoaderImpl, decorators: [{
119119
type: Injectable
120120
}] });
121121

fesm2022/platform-browser-dynamic.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.

fesm2022/testing.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.3+sha-dcfa8a0
2+
* @license Angular v20.0.0-next.3+sha-997836e
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -19,11 +19,11 @@ const platformBrowserDynamicTesting = createPlatformFactory(platformBrowserDynam
1919
* @publicApi
2020
*/
2121
class BrowserDynamicTestingModule {
22-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-dcfa8a0", ngImport: i0, type: BrowserDynamicTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
23-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.3+sha-dcfa8a0", ngImport: i0, type: BrowserDynamicTestingModule, exports: [BrowserTestingModule] });
24-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-dcfa8a0", ngImport: i0, type: BrowserDynamicTestingModule, imports: [BrowserTestingModule] });
22+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-997836e", ngImport: i0, type: BrowserDynamicTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
23+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.3+sha-997836e", ngImport: i0, type: BrowserDynamicTestingModule, exports: [BrowserTestingModule] });
24+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-997836e", ngImport: i0, type: BrowserDynamicTestingModule, imports: [BrowserTestingModule] });
2525
}
26-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-dcfa8a0", ngImport: i0, type: BrowserDynamicTestingModule, decorators: [{
26+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-997836e", ngImport: i0, type: BrowserDynamicTestingModule, decorators: [{
2727
type: NgModule,
2828
args: [{
2929
exports: [BrowserTestingModule],

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 v20.0.0-next.3+sha-dcfa8a0
2+
* @license Angular v20.0.0-next.3+sha-997836e
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/platform-browser-dynamic",
3-
"version": "20.0.0-next.3+sha-dcfa8a0",
3+
"version": "20.0.0-next.3+sha-997836e",
44
"description": "Angular - library for using Angular in a web browser with JIT compilation",
55
"author": "angular",
66
"license": "MIT",
@@ -11,10 +11,10 @@
1111
"tslib": "^2.3.0"
1212
},
1313
"peerDependencies": {
14-
"@angular/core": "20.0.0-next.3+sha-dcfa8a0",
15-
"@angular/common": "20.0.0-next.3+sha-dcfa8a0",
16-
"@angular/compiler": "20.0.0-next.3+sha-dcfa8a0",
17-
"@angular/platform-browser": "20.0.0-next.3+sha-dcfa8a0"
14+
"@angular/core": "20.0.0-next.3+sha-997836e",
15+
"@angular/common": "20.0.0-next.3+sha-997836e",
16+
"@angular/compiler": "20.0.0-next.3+sha-997836e",
17+
"@angular/platform-browser": "20.0.0-next.3+sha-997836e"
1818
},
1919
"repository": {
2020
"type": "git",

testing/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 v20.0.0-next.3+sha-dcfa8a0
2+
* @license Angular v20.0.0-next.3+sha-997836e
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

0 commit comments

Comments
 (0)