@angular/compiler 21.0.0-next.7 → 21.0.0-next.9
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 +176 -52
- package/fesm2022/compiler.mjs.map +1 -1
- package/package.json +1 -1
- package/types/compiler.d.ts +10 -3
package/package.json
CHANGED
package/types/compiler.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v21.0.0-next.
|
|
2
|
+
* @license Angular v21.0.0-next.9
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.dev/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -3603,8 +3603,9 @@ declare class InteractionDeferredTrigger extends DeferredTrigger {
|
|
|
3603
3603
|
constructor(reference: string | null, nameSpan: ParseSourceSpan$1, sourceSpan: ParseSourceSpan$1, prefetchSpan: ParseSourceSpan$1 | null, onSourceSpan: ParseSourceSpan$1 | null, hydrateSpan: ParseSourceSpan$1 | null);
|
|
3604
3604
|
}
|
|
3605
3605
|
declare class ViewportDeferredTrigger extends DeferredTrigger {
|
|
3606
|
-
reference: string | null;
|
|
3607
|
-
|
|
3606
|
+
readonly reference: string | null;
|
|
3607
|
+
readonly options: LiteralMap | null;
|
|
3608
|
+
constructor(reference: string | null, options: LiteralMap | null, nameSpan: ParseSourceSpan$1, sourceSpan: ParseSourceSpan$1, prefetchSpan: ParseSourceSpan$1 | null, onSourceSpan: ParseSourceSpan$1 | null, hydrateSpan: ParseSourceSpan$1 | null);
|
|
3608
3609
|
}
|
|
3609
3610
|
declare class BlockNode {
|
|
3610
3611
|
nameSpan: ParseSourceSpan$1;
|
|
@@ -5325,6 +5326,12 @@ declare class Identifiers {
|
|
|
5325
5326
|
static trustConstantHtml: ExternalReference;
|
|
5326
5327
|
static trustConstantResourceUrl: ExternalReference;
|
|
5327
5328
|
static validateIframeAttribute: ExternalReference;
|
|
5329
|
+
static inputDecorator: ExternalReference;
|
|
5330
|
+
static outputDecorator: ExternalReference;
|
|
5331
|
+
static viewChildDecorator: ExternalReference;
|
|
5332
|
+
static viewChildrenDecorator: ExternalReference;
|
|
5333
|
+
static contentChildDecorator: ExternalReference;
|
|
5334
|
+
static contentChildrenDecorator: ExternalReference;
|
|
5328
5335
|
static InputSignalBrandWriteType: {
|
|
5329
5336
|
name: string;
|
|
5330
5337
|
moduleName: string;
|