@angular/compiler 20.3.14 → 20.3.15
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 +110 -76
- package/fesm2022/compiler.mjs.map +1 -1
- package/index.d.ts +4 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v20.3.
|
|
2
|
+
* @license Angular v20.3.15
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.dev/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -51,7 +51,8 @@ declare enum SecurityContext {
|
|
|
51
51
|
STYLE = 2,
|
|
52
52
|
SCRIPT = 3,
|
|
53
53
|
URL = 4,
|
|
54
|
-
RESOURCE_URL = 5
|
|
54
|
+
RESOURCE_URL = 5,
|
|
55
|
+
ATTRIBUTE_NO_BINDING = 6
|
|
55
56
|
}
|
|
56
57
|
/**
|
|
57
58
|
* Injection flags for DI.
|
|
@@ -5310,13 +5311,13 @@ declare class Identifiers {
|
|
|
5310
5311
|
static getInheritedFactory: ExternalReference;
|
|
5311
5312
|
static sanitizeHtml: ExternalReference;
|
|
5312
5313
|
static sanitizeStyle: ExternalReference;
|
|
5314
|
+
static validateAttribute: ExternalReference;
|
|
5313
5315
|
static sanitizeResourceUrl: ExternalReference;
|
|
5314
5316
|
static sanitizeScript: ExternalReference;
|
|
5315
5317
|
static sanitizeUrl: ExternalReference;
|
|
5316
5318
|
static sanitizeUrlOrResourceUrl: ExternalReference;
|
|
5317
5319
|
static trustConstantHtml: ExternalReference;
|
|
5318
5320
|
static trustConstantResourceUrl: ExternalReference;
|
|
5319
|
-
static validateIframeAttribute: ExternalReference;
|
|
5320
5321
|
static inputDecorator: ExternalReference;
|
|
5321
5322
|
static outputDecorator: ExternalReference;
|
|
5322
5323
|
static viewChildDecorator: ExternalReference;
|