@angular-eslint/bundled-angular-compiler 14.0.5-alpha.7 → 14.1.1-alpha.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/dist/index.js +27 -13
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.2.
|
|
2
|
+
* @license Angular v14.2.2
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -14410,10 +14410,24 @@ function SECURITY_SCHEMA() {
|
|
|
14410
14410
|
registerContext(SecurityContext.STYLE, ['*|style']);
|
|
14411
14411
|
// NB: no SCRIPT contexts here, they are never allowed due to the parser stripping them.
|
|
14412
14412
|
registerContext(SecurityContext.URL, [
|
|
14413
|
-
'*|formAction',
|
|
14414
|
-
'
|
|
14415
|
-
'
|
|
14416
|
-
'
|
|
14413
|
+
'*|formAction',
|
|
14414
|
+
'area|href',
|
|
14415
|
+
'area|ping',
|
|
14416
|
+
'audio|src',
|
|
14417
|
+
'a|href',
|
|
14418
|
+
'a|ping',
|
|
14419
|
+
'blockquote|cite',
|
|
14420
|
+
'body|background',
|
|
14421
|
+
'del|cite',
|
|
14422
|
+
'form|action',
|
|
14423
|
+
'img|src',
|
|
14424
|
+
'input|src',
|
|
14425
|
+
'ins|cite',
|
|
14426
|
+
'q|cite',
|
|
14427
|
+
'source|src',
|
|
14428
|
+
'track|src',
|
|
14429
|
+
'video|poster',
|
|
14430
|
+
'video|src',
|
|
14417
14431
|
]);
|
|
14418
14432
|
registerContext(SecurityContext.RESOURCE_URL, [
|
|
14419
14433
|
'applet|code',
|
|
@@ -19732,7 +19746,7 @@ function publishFacade(global) {
|
|
|
19732
19746
|
* Use of this source code is governed by an MIT-style license that can be
|
|
19733
19747
|
* found in the LICENSE file at https://angular.io/license
|
|
19734
19748
|
*/
|
|
19735
|
-
const VERSION = new Version('14.2.
|
|
19749
|
+
const VERSION = new Version('14.2.2');
|
|
19736
19750
|
|
|
19737
19751
|
/**
|
|
19738
19752
|
* @license
|
|
@@ -21759,7 +21773,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$6 = '12.0.0';
|
|
|
21759
21773
|
function compileDeclareClassMetadata(metadata) {
|
|
21760
21774
|
const definitionMap = new DefinitionMap();
|
|
21761
21775
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$6));
|
|
21762
|
-
definitionMap.set('version', literal('14.2.
|
|
21776
|
+
definitionMap.set('version', literal('14.2.2'));
|
|
21763
21777
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
21764
21778
|
definitionMap.set('type', metadata.type);
|
|
21765
21779
|
definitionMap.set('decorators', metadata.decorators);
|
|
@@ -21876,7 +21890,7 @@ function compileDeclareDirectiveFromMetadata(meta) {
|
|
|
21876
21890
|
function createDirectiveDefinitionMap(meta) {
|
|
21877
21891
|
const definitionMap = new DefinitionMap();
|
|
21878
21892
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
|
|
21879
|
-
definitionMap.set('version', literal('14.2.
|
|
21893
|
+
definitionMap.set('version', literal('14.2.2'));
|
|
21880
21894
|
// e.g. `type: MyDirective`
|
|
21881
21895
|
definitionMap.set('type', meta.internalType);
|
|
21882
21896
|
if (meta.isStandalone) {
|
|
@@ -22087,7 +22101,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
|
|
|
22087
22101
|
function compileDeclareFactoryFunction(meta) {
|
|
22088
22102
|
const definitionMap = new DefinitionMap();
|
|
22089
22103
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
|
|
22090
|
-
definitionMap.set('version', literal('14.2.
|
|
22104
|
+
definitionMap.set('version', literal('14.2.2'));
|
|
22091
22105
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22092
22106
|
definitionMap.set('type', meta.internalType);
|
|
22093
22107
|
definitionMap.set('deps', compileDependencies(meta.deps));
|
|
@@ -22129,7 +22143,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
22129
22143
|
function createInjectableDefinitionMap(meta) {
|
|
22130
22144
|
const definitionMap = new DefinitionMap();
|
|
22131
22145
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
|
|
22132
|
-
definitionMap.set('version', literal('14.2.
|
|
22146
|
+
definitionMap.set('version', literal('14.2.2'));
|
|
22133
22147
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22134
22148
|
definitionMap.set('type', meta.internalType);
|
|
22135
22149
|
// Only generate providedIn property if it has a non-null value
|
|
@@ -22187,7 +22201,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
22187
22201
|
function createInjectorDefinitionMap(meta) {
|
|
22188
22202
|
const definitionMap = new DefinitionMap();
|
|
22189
22203
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
|
|
22190
|
-
definitionMap.set('version', literal('14.2.
|
|
22204
|
+
definitionMap.set('version', literal('14.2.2'));
|
|
22191
22205
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22192
22206
|
definitionMap.set('type', meta.internalType);
|
|
22193
22207
|
definitionMap.set('providers', meta.providers);
|
|
@@ -22224,7 +22238,7 @@ function compileDeclareNgModuleFromMetadata(meta) {
|
|
|
22224
22238
|
function createNgModuleDefinitionMap(meta) {
|
|
22225
22239
|
const definitionMap = new DefinitionMap();
|
|
22226
22240
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
|
|
22227
|
-
definitionMap.set('version', literal('14.2.
|
|
22241
|
+
definitionMap.set('version', literal('14.2.2'));
|
|
22228
22242
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22229
22243
|
definitionMap.set('type', meta.internalType);
|
|
22230
22244
|
// We only generate the keys in the metadata if the arrays contain values.
|
|
@@ -22282,7 +22296,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
22282
22296
|
function createPipeDefinitionMap(meta) {
|
|
22283
22297
|
const definitionMap = new DefinitionMap();
|
|
22284
22298
|
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
22285
|
-
definitionMap.set('version', literal('14.2.
|
|
22299
|
+
definitionMap.set('version', literal('14.2.2'));
|
|
22286
22300
|
definitionMap.set('ngImport', importExpr(Identifiers.core));
|
|
22287
22301
|
// e.g. `type: MyPipe`
|
|
22288
22302
|
definitionMap.set('type', meta.internalType);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-eslint/bundled-angular-compiler",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.1.1-alpha.0+e25ef92",
|
|
4
4
|
"description": "A CJS bundled version of @angular/compiler",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -15,5 +15,5 @@
|
|
|
15
15
|
"package.json",
|
|
16
16
|
"README.md"
|
|
17
17
|
],
|
|
18
|
-
"gitHead": "
|
|
18
|
+
"gitHead": "e25ef92c8c59a9c47b727f8e491dfb608cb71530"
|
|
19
19
|
}
|