Skip to content

Commit 9d99d54

Browse files
ed965bd docs: update two-way binding example in documentation (#58963)
1 parent 16f628f commit 9d99d54

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-
Thu Nov 28 16:58:35 UTC 2024
2-
357166e9a4125069cdf27c8d4d4018ceb73f4f14
1+
Fri Nov 29 14:01:56 UTC 2024
2+
ed965bdc0f295c00fdb17a546d59aae39f59a11b

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-357166e
2+
* @license Angular v19.1.0-next.0+sha-ed965bd
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -30894,7 +30894,7 @@ function publishFacade(global) {
3089430894
* @description
3089530895
* Entry point for all public APIs of the compiler package.
3089630896
*/
30897-
const VERSION = new Version('19.1.0-next.0+sha-357166e');
30897+
const VERSION = new Version('19.1.0-next.0+sha-ed965bd');
3089830898

3089930899
class CompilerConfig {
3090030900
defaultEncapsulation;
@@ -32746,7 +32746,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3274632746
function compileDeclareClassMetadata(metadata) {
3274732747
const definitionMap = new DefinitionMap();
3274832748
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
32749-
definitionMap.set('version', literal('19.1.0-next.0+sha-357166e'));
32749+
definitionMap.set('version', literal('19.1.0-next.0+sha-ed965bd'));
3275032750
definitionMap.set('ngImport', importExpr(Identifiers.core));
3275132751
definitionMap.set('type', metadata.type);
3275232752
definitionMap.set('decorators', metadata.decorators);
@@ -32764,7 +32764,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3276432764
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3276532765
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3276632766
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
32767-
definitionMap.set('version', literal('19.1.0-next.0+sha-357166e'));
32767+
definitionMap.set('version', literal('19.1.0-next.0+sha-ed965bd'));
3276832768
definitionMap.set('ngImport', importExpr(Identifiers.core));
3276932769
definitionMap.set('type', metadata.type);
3277032770
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -32859,7 +32859,7 @@ function createDirectiveDefinitionMap(meta) {
3285932859
const definitionMap = new DefinitionMap();
3286032860
const minVersion = getMinimumVersionForPartialOutput(meta);
3286132861
definitionMap.set('minVersion', literal(minVersion));
32862-
definitionMap.set('version', literal('19.1.0-next.0+sha-357166e'));
32862+
definitionMap.set('version', literal('19.1.0-next.0+sha-ed965bd'));
3286332863
// e.g. `type: MyDirective`
3286432864
definitionMap.set('type', meta.type.value);
3286532865
if (meta.isStandalone !== undefined) {
@@ -33278,7 +33278,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3327833278
function compileDeclareFactoryFunction(meta) {
3327933279
const definitionMap = new DefinitionMap();
3328033280
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33281-
definitionMap.set('version', literal('19.1.0-next.0+sha-357166e'));
33281+
definitionMap.set('version', literal('19.1.0-next.0+sha-ed965bd'));
3328233282
definitionMap.set('ngImport', importExpr(Identifiers.core));
3328333283
definitionMap.set('type', meta.type.value);
3328433284
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33313,7 +33313,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3331333313
function createInjectableDefinitionMap(meta) {
3331433314
const definitionMap = new DefinitionMap();
3331533315
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33316-
definitionMap.set('version', literal('19.1.0-next.0+sha-357166e'));
33316+
definitionMap.set('version', literal('19.1.0-next.0+sha-ed965bd'));
3331733317
definitionMap.set('ngImport', importExpr(Identifiers.core));
3331833318
definitionMap.set('type', meta.type.value);
3331933319
// Only generate providedIn property if it has a non-null value
@@ -33364,7 +33364,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3336433364
function createInjectorDefinitionMap(meta) {
3336533365
const definitionMap = new DefinitionMap();
3336633366
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33367-
definitionMap.set('version', literal('19.1.0-next.0+sha-357166e'));
33367+
definitionMap.set('version', literal('19.1.0-next.0+sha-ed965bd'));
3336833368
definitionMap.set('ngImport', importExpr(Identifiers.core));
3336933369
definitionMap.set('type', meta.type.value);
3337033370
definitionMap.set('providers', meta.providers);
@@ -33397,7 +33397,7 @@ function createNgModuleDefinitionMap(meta) {
3339733397
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3339833398
}
3339933399
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33400-
definitionMap.set('version', literal('19.1.0-next.0+sha-357166e'));
33400+
definitionMap.set('version', literal('19.1.0-next.0+sha-ed965bd'));
3340133401
definitionMap.set('ngImport', importExpr(Identifiers.core));
3340233402
definitionMap.set('type', meta.type.value);
3340333403
// We only generate the keys in the metadata if the arrays contain values.
@@ -33448,7 +33448,7 @@ function compileDeclarePipeFromMetadata(meta) {
3344833448
function createPipeDefinitionMap(meta) {
3344933449
const definitionMap = new DefinitionMap();
3345033450
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33451-
definitionMap.set('version', literal('19.1.0-next.0+sha-357166e'));
33451+
definitionMap.set('version', literal('19.1.0-next.0+sha-ed965bd'));
3345233452
definitionMap.set('ngImport', importExpr(Identifiers.core));
3345333453
// e.g. `type: MyPipe`
3345433454
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-357166e
2+
* @license Angular v19.1.0-next.0+sha-ed965bd
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-357166e",
3+
"version": "19.1.0-next.0+sha-ed965bd",
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-357166e"
14+
"@angular/core": "19.1.0-next.0+sha-ed965bd"
1515
},
1616
"peerDependenciesMeta": {
1717
"@angular/core": {

0 commit comments

Comments
 (0)