@angular/compiler 21.0.0-next.6 → 21.0.0-next.8
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 +251 -47
- package/fesm2022/compiler.mjs.map +1 -1
- package/package.json +1 -1
- package/types/compiler.d.ts +13 -4
package/package.json
CHANGED
package/types/compiler.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v21.0.0-next.
|
|
3
|
-
* (c) 2010-2025 Google LLC. https://angular.
|
|
2
|
+
* @license Angular v21.0.0-next.8
|
|
3
|
+
* (c) 2010-2025 Google LLC. https://angular.dev/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -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;
|
|
@@ -5230,6 +5231,8 @@ declare class Identifiers {
|
|
|
5230
5231
|
static domProperty: ExternalReference;
|
|
5231
5232
|
static ariaProperty: ExternalReference;
|
|
5232
5233
|
static property: ExternalReference;
|
|
5234
|
+
static control: ExternalReference;
|
|
5235
|
+
static controlCreate: ExternalReference;
|
|
5233
5236
|
static animationEnterListener: ExternalReference;
|
|
5234
5237
|
static animationLeaveListener: ExternalReference;
|
|
5235
5238
|
static animationEnter: ExternalReference;
|
|
@@ -5323,6 +5326,12 @@ declare class Identifiers {
|
|
|
5323
5326
|
static trustConstantHtml: ExternalReference;
|
|
5324
5327
|
static trustConstantResourceUrl: ExternalReference;
|
|
5325
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;
|
|
5326
5335
|
static InputSignalBrandWriteType: {
|
|
5327
5336
|
name: string;
|
|
5328
5337
|
moduleName: string;
|