@angular/compiler 19.2.15 → 19.2.17
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 v19.2.
|
|
2
|
+
* @license Angular v19.2.17
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
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.
|
|
@@ -4966,13 +4967,13 @@ declare class Identifiers {
|
|
|
4966
4967
|
static getInheritedFactory: ExternalReference;
|
|
4967
4968
|
static sanitizeHtml: ExternalReference;
|
|
4968
4969
|
static sanitizeStyle: ExternalReference;
|
|
4970
|
+
static validateAttribute: ExternalReference;
|
|
4969
4971
|
static sanitizeResourceUrl: ExternalReference;
|
|
4970
4972
|
static sanitizeScript: ExternalReference;
|
|
4971
4973
|
static sanitizeUrl: ExternalReference;
|
|
4972
4974
|
static sanitizeUrlOrResourceUrl: ExternalReference;
|
|
4973
4975
|
static trustConstantHtml: ExternalReference;
|
|
4974
4976
|
static trustConstantResourceUrl: ExternalReference;
|
|
4975
|
-
static validateIframeAttribute: ExternalReference;
|
|
4976
4977
|
static InputSignalBrandWriteType: {
|
|
4977
4978
|
name: string;
|
|
4978
4979
|
moduleName: string;
|