@angular/compiler 20.2.0-rc.1 → 21.0.0-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/compiler.mjs +44 -16
- package/fesm2022/compiler.mjs.map +1 -1
- package/index.d.ts +5 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular
|
|
2
|
+
* @license Angular v21.0.0-next.0
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -8,7 +8,8 @@ declare const emitDistinctChangesOnlyDefaultValue = true;
|
|
|
8
8
|
declare enum ViewEncapsulation$1 {
|
|
9
9
|
Emulated = 0,
|
|
10
10
|
None = 2,
|
|
11
|
-
ShadowDom = 3
|
|
11
|
+
ShadowDom = 3,
|
|
12
|
+
IsolatedShadowDom = 4
|
|
12
13
|
}
|
|
13
14
|
declare enum ChangeDetectionStrategy$1 {
|
|
14
15
|
OnPush = 0,
|
|
@@ -2603,7 +2604,8 @@ interface R3DeclareInjectableFacade {
|
|
|
2603
2604
|
declare enum ViewEncapsulation {
|
|
2604
2605
|
Emulated = 0,
|
|
2605
2606
|
None = 2,
|
|
2606
|
-
ShadowDom = 3
|
|
2607
|
+
ShadowDom = 3,
|
|
2608
|
+
IsolatedShadowDom = 4
|
|
2607
2609
|
}
|
|
2608
2610
|
type ChangeDetectionStrategy = number;
|
|
2609
2611
|
interface R3QueryMetadataFacade {
|