forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #163 from angular/main
Create a new pull request by comparing changes across two branches
- Loading branch information
Showing
109 changed files
with
3,193 additions
and
1,492 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"branchName": "refs/heads/main", | ||
"sha": "8c844e03ebe99ac0fda6d1e2fa8d57d6031f1562" | ||
"sha": "9ddd673f70f415f59d953fd72f05ebd32f92a60b" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -126,7 +126,7 @@ | |
"rollup": "~2.79.0", | ||
"rollup-plugin-preserve-shebang": "^1.0.1", | ||
"rollup-plugin-sourcemaps": "^0.6.3", | ||
"rxjs": "^6.6.7", | ||
"rxjs": "^7.0.0", | ||
"selenium-webdriver": "3.5.0", | ||
"selenium-webdriver4": "npm:[email protected]", | ||
"semver-dsl": "^1.0.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
...s/compiler-cli/test/compliance/test_cases/r3_compiler_compliance/elements/iframe_attrs.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
consts: [["allow", "camera 'none'"]], | ||
template: function MyComponent_Template(rf, ctx) { | ||
if (rf & 1) { | ||
i0.ɵɵelement(0, "iframe", 0); | ||
} if (rf & 2) { | ||
i0.ɵɵattribute("fetchpriority", "low", i0.ɵɵvalidateIframeAttribute)("allowfullscreen", ctx.fullscreen, i0.ɵɵvalidateIframeAttribute); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...s/compiler-cli/test/compliance/test_cases/r3_compiler_compliance/elements/iframe_attrs.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import {Component} from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'my-component', | ||
template: ` | ||
<iframe allow="camera 'none'" [attr.fetchpriority]="'low'" [attr.allowfullscreen]="fullscreen"></iframe> | ||
` | ||
}) | ||
export class MyComponent { | ||
fullscreen = 'false'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
11 changes: 0 additions & 11 deletions
11
...ngs/attribute_bindings/chain_multiple_bindings_for_multiple_elements_template.pipeline.js
This file was deleted.
Oops, something went wrong.
File renamed without changes.
9 changes: 0 additions & 9 deletions
9
...dings/attribute_bindings/chain_multiple_bindings_with_child_elements_template.pipeline.js
This file was deleted.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
.../compliance/test_cases/r3_view_compiler_bindings/attribute_bindings/duplicate_bindings.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
consts: [["aria-label", "hello", "aria-label", "hi"], [2, "height", "0"], [1, "cls2"], [3, "tabindex"], [3, "click"]], | ||
template: function MyComponent_Template(rf, ctx) { | ||
if (rf & 1) { | ||
i0.ɵɵelement(0, "div", 0); | ||
i0.ɵɵelementStart(1, "div", 1); | ||
i0.ɵɵelement(2, "div", 2)(3, "div")(4, "div", 3)(5, "div")(6, "div"); | ||
i0.ɵɵelementStart(7, "div", 4); | ||
i0.ɵɵlistener("click", function MyComponent_Template_div_click_7_listener($event) { return $event.stopPropagation(); })("click", function MyComponent_Template_div_click_7_listener($event) { return $event.preventDefault(); }); | ||
i0.ɵɵelementEnd()(); | ||
} | ||
if (rf & 2) { | ||
i0.ɵɵadvance(3); | ||
i0.ɵɵattribute("aria-label", ctx.value1)("aria-label", ctx.value2); | ||
i0.ɵɵadvance(1); | ||
i0.ɵɵproperty("tabindex", ctx.value1)("tabindex", ctx.value2); | ||
i0.ɵɵadvance(1); | ||
i0.ɵɵclassMap(ctx.value2); | ||
i0.ɵɵadvance(1); | ||
i0.ɵɵstyleMap(ctx.value2); | ||
} | ||
} |
Oops, something went wrong.